From 9436ad808f2bc520463e082a9d6bddf6fa430057 Mon Sep 17 00:00:00 2001 From: freearhey <7253922+freearhey@users.noreply.github.com> Date: Tue, 14 Apr 2026 22:46:47 +0300 Subject: [PATCH 01/92] Delete sites/kan.org.il --- sites/kan.org.il/__data__/content.json | 1 - sites/kan.org.il/kan.org.il.channels.xml | 6 --- sites/kan.org.il/kan.org.il.config.js | 52 ------------------------ sites/kan.org.il/kan.org.il.test.js | 47 --------------------- sites/kan.org.il/readme.md | 15 ------- 5 files changed, 121 deletions(-) delete mode 100644 sites/kan.org.il/__data__/content.json delete mode 100644 sites/kan.org.il/kan.org.il.channels.xml delete mode 100644 sites/kan.org.il/kan.org.il.config.js delete mode 100644 sites/kan.org.il/kan.org.il.test.js delete mode 100644 sites/kan.org.il/readme.md diff --git a/sites/kan.org.il/__data__/content.json b/sites/kan.org.il/__data__/content.json deleted file mode 100644 index 0037cfd42..000000000 --- a/sites/kan.org.il/__data__/content.json +++ /dev/null @@ -1 +0,0 @@ -[{"title":"ארץ מולדת - בין תורכיה לבריטניה","start_time":"2022-03-06T00:05:37","end_time":"2022-03-06T00:27:12","id":"2598","age_category_desc":"0","epg_name":"ארץ מולדת","title1":"ארץ מולדת - בין תורכיה לבריטניה","chapter_number":"9","live_desc":"קבוצת תלמידים מתארגנת בפרוץ מלחמת העולם הראשונה להגיש עזרה לישוב. באמצעות התלמידים לומד הצופה על בעיותיו של הישוב בתקופת המלחמה, והתלבטותו בין נאמנות לשלטון העות'מאני לבין תקוותיו מהבריטים הכובשים.","Station_Radio":"0","Station_Id":"20","stationUrlScheme":"kan11://plugin/?type=player&plugin_identifier=kan_player&ds=general-provider%3A%2F%2FfetchData%3Ftype%3DFEED_JSON%26url%3DaHR0cHM6Ly93d3cua2FuLm9yZy5pbC9hcHBLYW4vbGl2ZVN0YXRpb25zLmFzaHg%3D&id=4","program_code":"3671","picture_code":"https://kanweb.blob.core.windows.net/download/pictures/2021/1/20/imgid=45847_Z.jpeg","program_image":"","station_image":"Logo_Image_Logo20_img__8.jpg","program_id":"","timezone":"2"}] \ No newline at end of file diff --git a/sites/kan.org.il/kan.org.il.channels.xml b/sites/kan.org.il/kan.org.il.channels.xml deleted file mode 100644 index b566698d6..000000000 --- a/sites/kan.org.il/kan.org.il.channels.xml +++ /dev/null @@ -1,6 +0,0 @@ - - - כאן 11 - مكان - חינוכית - diff --git a/sites/kan.org.il/kan.org.il.config.js b/sites/kan.org.il/kan.org.il.config.js deleted file mode 100644 index 01aaec094..000000000 --- a/sites/kan.org.il/kan.org.il.config.js +++ /dev/null @@ -1,52 +0,0 @@ -const dayjs = require('dayjs') -const utc = require('dayjs/plugin/utc') -const timezone = require('dayjs/plugin/timezone') -const customParseFormat = require('dayjs/plugin/customParseFormat') - -dayjs.extend(utc) -dayjs.extend(timezone) -dayjs.extend(customParseFormat) - -module.exports = { - site: 'kan.org.il', - days: 2, - url: function ({ channel, date }) { - return `https://www.kan.org.il/tv-guide/tv_guidePrograms.ashx?stationID=${ - channel.site_id - }&day=${date.format('DD/MM/YYYY')}` - }, - parser: function ({ content }) { - let programs = [] - const items = parseItems(content) - items.forEach(item => { - programs.push({ - title: item.title, - description: item.live_desc, - image: item.picture_code, - start: parseStart(item), - stop: parseStop(item) - }) - }) - - return programs - } -} - -function parseStart(item) { - if (!item.start_time) return null - - return dayjs.tz(item.start_time, 'YYYY-MM-DDTHH:mm:ss', 'Asia/Jerusalem') -} - -function parseStop(item) { - if (!item.end_time) return null - - return dayjs.tz(item.end_time, 'YYYY-MM-DDTHH:mm:ss', 'Asia/Jerusalem') -} - -function parseItems(content) { - const data = JSON.parse(content) - if (!Array.isArray(data)) return [] - - return data -} diff --git a/sites/kan.org.il/kan.org.il.test.js b/sites/kan.org.il/kan.org.il.test.js deleted file mode 100644 index f20c02093..000000000 --- a/sites/kan.org.il/kan.org.il.test.js +++ /dev/null @@ -1,47 +0,0 @@ -const { parser, url } = require('./kan.org.il.config.js') -const fs = require('fs') -const path = require('path') -const dayjs = require('dayjs') -const utc = require('dayjs/plugin/utc') -const customParseFormat = require('dayjs/plugin/customParseFormat') -dayjs.extend(customParseFormat) -dayjs.extend(utc) - -const date = dayjs.utc('2022-03-06', 'YYYY-MM-DD').startOf('d') -const channel = { - site_id: '19', - xmltv_id: 'KANEducational.il' -} - -it('can generate valid url', () => { - expect(url({ channel, date })).toBe( - 'https://www.kan.org.il/tv-guide/tv_guidePrograms.ashx?stationID=19&day=06/03/2022' - ) -}) - -it('can parse response', () => { - const content = fs.readFileSync(path.resolve(__dirname, '__data__/content.json')) - const result = parser({ content }).map(p => { - p.start = p.start.toJSON() - p.stop = p.stop.toJSON() - return p - }) - - expect(result).toMatchObject([ - { - start: '2022-03-05T22:05:37.000Z', - stop: '2022-03-05T22:27:12.000Z', - title: 'ארץ מולדת - בין תורכיה לבריטניה', - description: - "קבוצת תלמידים מתארגנת בפרוץ מלחמת העולם הראשונה להגיש עזרה לישוב. באמצעות התלמידים לומד הצופה על בעיותיו של הישוב בתקופת המלחמה, והתלבטותו בין נאמנות לשלטון העות'מאני לבין תקוותיו מהבריטים הכובשים.", - image: 'https://kanweb.blob.core.windows.net/download/pictures/2021/1/20/imgid=45847_Z.jpeg' - } - ]) -}) - -it('can handle empty guide', () => { - const result = parser({ - content: '[]' - }) - expect(result).toMatchObject([]) -}) diff --git a/sites/kan.org.il/readme.md b/sites/kan.org.il/readme.md deleted file mode 100644 index 4c97afb02..000000000 --- a/sites/kan.org.il/readme.md +++ /dev/null @@ -1,15 +0,0 @@ -# kan.org.il - -https://kan.org.il/ _[Geo-blocked]_ - -### Download the guide - -```sh -npm run grab --- --sites=kan.org.il -``` - -### Test - -```sh -npm test --- kan.org.il -``` From 67c1a7e45e8eef50fee8ad3424abca63d72e4429 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Isma=C3=ABl=20Moret?= <30985701+BellezaEmporium@users.noreply.github.com> Date: Wed, 15 Apr 2026 10:46:12 +0200 Subject: [PATCH 02/92] 04/2026 Part 2 : Scrapers Part 1 --- sites/canalplus.com/canalplus.com.config.js | 273 +- sites/canalplus.com/canalplus.com.test.js | 8 +- .../canalplus.com_ad.channels.xml | 757 ++- .../canalplus.com_au.channels.xml | 170 + .../canalplus.com_bf.channels.xml | 59 +- .../canalplus.com_bi.channels.xml | 59 +- .../canalplus.com_bj.channels.xml | 59 +- .../canalplus.com_bl.channels.xml | 52 +- .../canalplus.com_cd.channels.xml | 59 +- .../canalplus.com_cf.channels.xml | 59 +- .../canalplus.com_cg.channels.xml | 59 +- .../canalplus.com_ch.channels.xml | 75 +- .../canalplus.com_ch_de.channels.xml | 22 + .../canalplus.com_ci.channels.xml | 59 +- .../canalplus.com_cm.channels.xml | 59 +- .../canalplus.com_cv.channels.xml | 59 +- .../canalplus.com_dj.channels.xml | 59 +- .../canalplus.com_et.channels.xml | 125 + .../canalplus.com_fr.channels.xml | 399 +- .../canalplus.com_ga.channels.xml | 59 +- .../canalplus.com_gf.channels.xml | 52 +- .../canalplus.com_gh.channels.xml | 59 +- .../canalplus.com_gm.channels.xml | 59 +- .../canalplus.com_gn.channels.xml | 59 +- .../canalplus.com_gp.channels.xml | 59 +- .../canalplus.com_gw.channels.xml | 59 +- .../canalplus.com_ht.channels.xml | 52 +- .../canalplus.com_km.channels.xml | 399 ++ .../canalplus.com_mf.channels.xml | 52 +- .../canalplus.com_mg.channels.xml | 615 +- .../canalplus.com_ml.channels.xml | 59 +- .../canalplus.com_mq.channels.xml | 52 +- .../canalplus.com_mr.channels.xml | 59 +- .../canalplus.com_mu.channels.xml | 25 +- .../canalplus.com_nc.channels.xml | 12 +- .../canalplus.com_ne.channels.xml | 59 +- .../canalplus.com_pf.channels.xml | 24 +- .../canalplus.com_pl.channels.xml | 71 +- .../canalplus.com_re.channels.xml | 27 +- .../canalplus.com_rw.channels.xml | 59 +- .../canalplus.com_sl.channels.xml | 59 +- .../canalplus.com_sn.channels.xml | 61 +- .../canalplus.com_td.channels.xml | 59 +- .../canalplus.com_tg.channels.xml | 59 +- .../canalplus.com_wf.channels.xml | 12 +- .../canalplus.com_yt.channels.xml | 25 +- sites/canalplus.com/readme.md | 86 +- .../chaines-tv.orange.fr.channels.xml | 770 +-- sites/distro.tv/distro.tv.config.js | 2 +- sites/gatotv.com/gatotv.com.channels.xml | 448 +- sites/i.mjh.nz/i.mjh.nz_plex.channels.xml | 3044 +++++----- sites/movistarplus.es/__data__/content.json | 5025 +++++++++++++++++ sites/movistarplus.es/__data__/ficha.json | 374 ++ sites/movistarplus.es/__data__/ficha2.json | 378 ++ .../movistarplus.es.channels.xml | 316 +- .../movistarplus.es/movistarplus.es.config.js | 169 +- sites/movistarplus.es/movistarplus.es.test.js | 39 +- .../programme-tv.net.channels.xml | 266 +- 58 files changed, 11124 insertions(+), 4510 deletions(-) create mode 100644 sites/canalplus.com/canalplus.com_au.channels.xml create mode 100644 sites/canalplus.com/canalplus.com_ch_de.channels.xml create mode 100644 sites/canalplus.com/canalplus.com_et.channels.xml create mode 100644 sites/canalplus.com/canalplus.com_km.channels.xml create mode 100644 sites/movistarplus.es/__data__/content.json create mode 100644 sites/movistarplus.es/__data__/ficha.json create mode 100644 sites/movistarplus.es/__data__/ficha2.json diff --git a/sites/canalplus.com/canalplus.com.config.js b/sites/canalplus.com/canalplus.com.config.js index d6d2679bc..f3a5cb18d 100644 --- a/sites/canalplus.com/canalplus.com.config.js +++ b/sites/canalplus.com/canalplus.com.config.js @@ -4,39 +4,122 @@ const utc = require('dayjs/plugin/utc') dayjs.extend(utc) +const paths = { + ad: { zone: 'cpfra', location: 'ad' }, + au: { zone: 'cpncl', location: 'au' }, + bf: { zone: 'cpafr', location: 'bf' }, + bi: { zone: 'cpafr', location: 'bi' }, + bj: { zone: 'cpafr', location: 'bj' }, + bl: { zone: 'cpant', location: 'bl' }, + cd: { zone: 'cpafr', location: 'cd' }, + cf: { zone: 'cpafr', location: 'cf' }, + cg: { zone: 'cpafr', location: 'cg' }, + ch: { zone: 'cpche', location: null }, + ch_de: { zone: 'cpchd', location: null }, + ci: { zone: 'cpafr', location: 'ci' }, + cm: { zone: 'cpafr', location: 'cm' }, + cv: { zone: 'cpafr', location: 'cv' }, + dj: { zone: 'cpafr', location: 'dj' }, + et: { zone: 'cpeth', location: 'et' }, + fr: { zone: null, location: null }, + ga: { zone: 'cpafr', location: 'ga' }, + gf: { zone: 'cpant', location: 'gf' }, + gh: { zone: 'cpafr', location: 'gh' }, + gm: { zone: 'cpafr', location: 'gm' }, + gn: { zone: 'cpafr', location: 'gn' }, + gp: { zone: 'cpafr', location: 'gp' }, + gw: { zone: 'cpafr', location: 'gw' }, + ht: { zone: 'cpant', location: 'ht' }, + km: { zone: 'cpafr', location: 'km' }, + mc: { zone: 'cpfra', location: 'mc' }, + mf: { zone: 'cpant', location: 'mf' }, + mg: { zone: 'cpmdg', location: 'mg' }, + ml: { zone: 'cpafr', location: 'ml' }, + mq: { zone: 'cpant', location: 'mq' }, + mr: { zone: 'cpafr', location: 'mr' }, + mu: { zone: 'cpmus', location: 'mu' }, + nc: { zone: 'cpncl', location: 'nc' }, + ne: { zone: 'cpafr', location: 'ne' }, + pf: { zone: 'cppyf', location: 'pf' }, + pl: { zone: null, location: null }, + re: { zone: 'cpreu', location: 're' }, + rw: { zone: 'cpafr', location: 'rw' }, + sl: { zone: 'cpafr', location: 'sl' }, + sn: { zone: 'cpafr', location: 'sn' }, + td: { zone: 'cpafr', location: 'td' }, + tg: { zone: 'cpafr', location: 'tg' }, + wf: { zone: 'cpncl', location: 'wf' }, + yt: { zone: 'cpreu', location: 'yt' }, +} + +const globalHeaders = { + 'User-Agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', + 'Accept': 'text/html,application/xhtml+xml,application/xml;q=0.9,image/avif,image/webp,image/apng,/;q=0.8', + 'Accept-Language': 'fr-FR,fr;q=0.6', + 'Accept-Encoding': 'gzip, deflate, br', + 'Pragma': 'no-cache', + 'Priority': 'u=0, i', + 'Sec-CH-UA': '"Not:A-Brand";v="99", "Brave";v="145", "Chromium";v="145"', + 'sec-ch-ua-mobile': '?0', + 'sec-ch-ua-platform': '"Windows"', + 'sec-fetch-dest': 'document', + 'sec-fetch-mode': 'navigate', + 'sec-fetch-site': 'none', + 'sec-fetch-user': '?1', + 'sec-gpc': '1', + 'upgrade-insecure-requests': '1' +} + +// Per-region token caching to avoid multiple concurrent calls and redundant token fetches +const tokenCache = {} +const tokenPending = {} + +// ARCOM (ex-CSA) internal ratings mapping (https://www.arcom.fr/se-documenter/ressources-pedagogiques/protection-des-mineurs) +// values are negative to be sorted before other ratings if any +const CSA_RATING_MAP = { '2': '-10', '3': '-12', '4': '-16', '5': '-18' } + module.exports = { site: 'canalplus.com', days: 2, url: async function ({ channel, date }) { const [region, site_id] = channel.site_id.split('#') + const currentRegion = region || 'fr' - const baseUrl = - region === 'pl' - ? 'https://www.canalplus.com/pl/program-tv/' - : `https://www.canalplus.com/${region}/programme-tv/` + if (!tokenCache[currentRegion]) { + // Prevents concurrent calls from same region + if (!tokenPending[currentRegion]) { + tokenPending[currentRegion] = parseToken(currentRegion).then(result => { + tokenCache[currentRegion] = result + if (Object.prototype.hasOwnProperty.call(tokenPending, currentRegion)) { + tokenPending[currentRegion] = undefined + } + return result + }) + } + await tokenPending[currentRegion] + } - const data = await axios - .get(baseUrl) - .then(r => r.data.toString()) - .catch(err => console.log(err)) - - const token = parseToken(data) - const path = region === 'pl' ? 'mycanalint' : 'mycanal' + const path = currentRegion === 'pl' ? 'mycanalint' : 'mycanal' const diff = date.diff(dayjs.utc().startOf('d'), 'd') + const token = tokenCache[currentRegion]?.token return `https://hodor.canalplus.pro/api/v2/${path}/channels/${token}/${site_id}/broadcasts/day/${diff}` }, + request: { + headers() { + return globalHeaders + } + }, async parser({ content }) { - let programs = [] const items = parseItems(content) - for (let item of items) { - const prev = programs[programs.length - 1] - const details = await loadProgramDetails(item) - const info = parseInfo(details) + + // Parallel loading of all program details + const detailsArray = await Promise.all(items.map(loadProgramDetails)) + + const programs = items.map((item, i) => { + const info = parseInfo(detailsArray[i]) const start = parseStart(item) - if (prev) prev.stop = start - const stop = start.add(1, 'h') - programs.push({ + return { title: item.title, description: parseDescription(info), image: parseImage(info), @@ -48,109 +131,83 @@ module.exports = { date: parseDate(info), rating: parseRating(info), start, - stop - }) + stop: null + } + }) + + // Sort programs by start time and set stop time of each program to the start time of the next one + for (let i = 0; i < programs.length - 1; i++) { + programs[i].stop = programs[i + 1].start + } + + // Last program: fallback +1h if there is no next program + const last = programs[programs.length - 1] + if (last && last.start) { + last.stop = last.start.add(1, 'h') } return programs }, async channels({ country }) { - const paths = { - ad: 'cpafr/ad', - bf: 'cpafr/bf', - bi: 'cpafr/bi', - bj: 'cpafr/bj', - bl: 'cpant/bl', - cd: 'cpafr/cd', - cf: 'cpafr/cf', - cg: 'cpafr/cg', - ch: 'cpche', - ci: 'cpafr/ci', - cm: 'cpafr/cm', - cv: 'cpafr/cv', - dj: 'cpafr/dj', - fr: 'cpfra', - ga: 'cpafr/ga', - gf: 'cpant/gf', - gh: 'cpafr/gh', - gm: 'cpafr/gm', - gn: 'cpafr/gn', - gp: 'cpafr/gp', - gw: 'cpafr/gw', - ht: 'cpant/ht', - mf: 'cpant/mf', - mg: 'cpafr/mg', - ml: 'cpafr/ml', - mq: 'cpant/mq', - mr: 'cpafr/mr', - mu: 'cpmus/mu', - nc: 'cpncl/nc', - ne: 'cpafr/ne', - pf: 'cppyf/pf', - pl: 'cppol', - re: 'cpreu/re', - rw: 'cpafr/rw', - sl: 'cpafr/sl', - sn: 'cpafr/sn', - td: 'cpafr/td', - tg: 'cpafr/tg', - wf: 'cpncl/wf', - yt: 'cpreu/yt' - } + const { zone, location } = paths[country] || {} + const pathSegment = location ? `${zone}/${location}` : zone || country + const url = `https://secure-webtv-static.canal-plus.com/metadata/${pathSegment}/all/v2.2/globalchannels.json` - let channels = [] - const path = paths[country] - const url = `https://secure-webtv-static.canal-plus.com/metadata/${path}/all/v2.2/globalchannels.json` const data = await axios .get(url) .then(r => r.data) .catch(console.log) - data.channels.forEach(channel => { - const site_id = country === 'fr' ? `#${channel.id}` : `${country}#${channel.id}` - - if (channel.name === '.') return - - channels.push({ + return data.channels + .filter(channel => channel.name !== '.') + .map(channel => ({ lang: 'fr', - site_id, + site_id: country === 'fr' ? `#${channel.id}` : `${country}#${channel.id}`, name: channel.name - }) - }) - - return channels + })) } } -function parseToken(data) { - const [, token] = data.match(/"token":"([^"]+)/) || [null, null] +async function parseToken(country) { + const { zone, location } = paths[country] || {} - return token + let url + if (country === 'fr') { + url = 'https://hodor.canalplus.pro/api/v2/mycanal/authenticate.json/webapp/6.0?experiments=beta-test-one-tv-guide:control' + } else if (country === 'pl') { + url = 'https://hodor.canalplus.pro/api/v2/mycanalint/authenticate.json/webapp/6.0?experiments=beta-test-one-tv-guide:control' + } else { + url = `https://hodor.canalplus.pro/api/v2/mycanal/authenticate.json/webapp/6.0?experiments=beta-test-one-tv-guide:control&offerZone=${zone}&offerLocation=${location}` + } + + const data = await axios + .get(url, { headers: globalHeaders, timeout: 5000 }) + .then(r => r.data) + .catch(console.error) + + return { country, token: data?.token } } function parseStart(item) { - return item && item.startTime ? dayjs(item.startTime) : null + return item?.startTime ? dayjs(item.startTime) : null } function parseImage(info) { - return info ? info.URLImage : null + return info?.URLImage ?? null } function parseDescription(info) { - return info ? info.summary : null + return info?.summary ?? null } function parseInfo(data) { - if (!data || !data.detail || !data.detail.informations) return null - - return data.detail.informations + return data?.detail?.informations ?? null } async function loadProgramDetails(item) { - if (!item.onClick || !item.onClick.URLPage) return {} - - return await axios - .get(item.onClick.URLPage) + if (!item?.onClick?.URLPage) return {} + return axios + .get(item.onClick.URLPage, { headers: globalHeaders }) .then(r => r.data) .catch(console.error) } @@ -158,40 +215,26 @@ async function loadProgramDetails(item) { function parseItems(content) { const data = JSON.parse(content) if (!data || !Array.isArray(data.timeSlices)) return [] - - return data.timeSlices.reduce((acc, curr) => { - acc = acc.concat(curr.contents) - return acc - }, []) + return data.timeSlices.flatMap(s => s.contents) } function parseCast(info, type) { - let people = [] - if (info && info.personnalities) { - const personnalities = info.personnalities.find(i => i.prefix == type) - if (!personnalities) return people - for (let person of personnalities.personnalitiesList) { - people.push(person.title) - } - } - return people + if (!info?.personnalities) return [] + const group = info.personnalities.find(i => i.prefix === type) + if (!group) return [] + return group.personnalitiesList.map(p => p.title) } function parseDate(info) { - return info && info.productionYear ? info.productionYear : null + return info?.productionYear ?? null } function parseRating(info) { - if (!info || !info.parentalRatings) return null - let rating = info.parentalRatings.find(i => i.authority === 'CSA') - if (!rating || Array.isArray(rating)) return null - if (rating.value === '1') return null - if (rating.value === '2') rating.value = '-10' - if (rating.value === '3') rating.value = '-12' - if (rating.value === '4') rating.value = '-16' - if (rating.value === '5') rating.value = '-18' + if (!info?.parentalRatings) return null + const rating = info.parentalRatings.find(i => i.authority === 'CSA') + if (!rating || Array.isArray(rating) || rating.value === '1') return null return { system: rating.authority, - value: rating.value + value: CSA_RATING_MAP[rating.value] ?? rating.value } -} +} \ No newline at end of file diff --git a/sites/canalplus.com/canalplus.com.test.js b/sites/canalplus.com/canalplus.com.test.js index 43c2fb0bb..9dc0bd535 100644 --- a/sites/canalplus.com/canalplus.com.test.js +++ b/sites/canalplus.com/canalplus.com.test.js @@ -16,9 +16,9 @@ const channel = { it('can generate valid url for today', done => { axios.get.mockImplementation(url => { - if (url === 'https://www.canalplus.com/bi/programme-tv/') { + if (url.includes('authenticate.json')) { return Promise.resolve({ - data: fs.readFileSync(path.resolve(__dirname, '__data__/programme-tv.html')) + data: { token: 'f000c6f4ebf44647682b3a0fa66d7d99' } }) } else { return Promise.resolve({ data: '' }) @@ -38,9 +38,9 @@ it('can generate valid url for today', done => { it('can generate valid url for tomorrow', done => { axios.get.mockImplementation(url => { - if (url === 'https://www.canalplus.com/bi/programme-tv/') { + if (url.includes('authenticate.json')) { return Promise.resolve({ - data: fs.readFileSync(path.resolve(__dirname, '__data__/programme-tv.html')) + data: { token: 'f000c6f4ebf44647682b3a0fa66d7d99' } }) } else { return Promise.resolve({ data: '' }) diff --git a/sites/canalplus.com/canalplus.com_ad.channels.xml b/sites/canalplus.com/canalplus.com_ad.channels.xml index c2b1191ce..e52aacba3 100644 --- a/sites/canalplus.com/canalplus.com_ad.channels.xml +++ b/sites/canalplus.com/canalplus.com_ad.channels.xml @@ -1,392 +1,371 @@ - 13EME RUE - GLOBAL AFRICA - AB1 - ZACU TV - AFRICA 24 INFINITY - ARTE France - BBC NEWS - AFRICA 24 SPORT - CRTV - W-SPORT - AFRICA 24 ENGLISH - LERAL TV - CANAL+ CINEMA OUEST - RTG2 - CANAL+ PREMIERE OUEST - KABACK TV - INFO TV - CAM10 - DBS - BOSOLO TV - RTCE - MALAIKA TV - HK6 - HERITAGE TV - E! - Bukedde TV - EURONEWS - FRANCE 3 - FRANCE 5 - SINEMA ZETU - CNEWS - LCI - France 2 INT - MANGAS - RTB ZENITH - HOPE TV - RTNK - MEZZO - HOREB TV - MTV France - TFX - KTN - ORTM1 - PLANETE+ - PLANETE+ AVENTURE - A+ BENIN - RTS - SYFY - TCHAD INFOS - SERIE CLUB - MTV LEBANON - PITCHOUN AFRICA - AFRIKINFO TV - EVANGILE TV - REFLET TV - TOUBA TV - TELEMUSIK SENEGAL - MOURCHID TV - TELE-ECOLE - AL MOURIDIYYAH TV - MALIKIA TV - CANAL EDUCATION - FULBE - TF1 - KAYES TV - TIJI - TMC - SEGOU TV - SUNNA TV SAVANA - GO TV - HUSTLER HD - TROPIC TV - TV5 MONDE (Afrique) - EDEN TV - XXL - TENERE - LABARI - GALAXIE TELE - FRANCE 24 - BALAFON TV - TAMBARIN HAUSA TV - DASH TV - BETV - HTV BURUNDI - TPMP - RTB - 2STV - ISIBO TV - CANAL+ SPORT 2 - CANAL+ CINEMA CENTRE - CHINGUIT TV - ELWATANIYA TV - PIWI+ - CANAL+ PREMIERE CENTRE - GAME ONE - USHUAÏA TV - EDUC TV - PLANETE+ CRIME - CANAL+ FAMILY CENTRE - TCHAD 24 - MTV HITS - TELETOON+ - CANAL+ SPORT 3 - DORCEL TV - HISTOIRE TV - RATELKI - AFRICABLE - AFRICA 24 - EQUINOXE TV - RTI 1 - CANAL 2 INTER - LIPTAKO TV - TRACE Urban Afrique - GABON 1ERE - 7TV - STV - VOX AFRICA - RTG - TELE CONGO - BENIN TV HD - RTNC - PRIVATE TV - WILDEARTH - TPT+ - TRACE AFRICA AFRIQUE - VOIR+ - CSTAR - CANAL EVENEMENT EASY - TOUMAI TV - TFM - TELE AFRICA - SENSATION TV - SARAOUNIA TV - RTL9 HD - ACTION HD - CANAL EVENEMENT AFRIQUE - NICKELODEON GLOBAL - NOVELAS TV HD (RDC) - RWANDA TV - MANDEKA HD - PULAAGU HD - LA GUINEE FE HD - BLOOMBERG ORIGINALS - EDUCA TV - M7 - RTB 3 - TV AL HOUDA - JES TV - SUNNA TV ZARMA - TAURARUWA - FOR YOU TV - MELODY D'AFRIQUE - TRACE MBOA - SUN+ TV - TV+ AFRIQUE - LPC - NOLLYWOOD TV - RTI2 - TV TOGO - B-ONE - TELE SAHEL - TV TCHAD - MAAJABU TV - AL JAZEERA - KTO - IQRAA - RTGA - CONGO 26 - ISHUSHO TV - MRTV - SHIF TV - GC7 - GC2 - GC6 - ESPERANCE TV - BUJA TV - AL JAZEERA ENG - BET ENG - UNIVERSAL - GC1 - SHADOW TV - CANAL+ ELLES - PARAMOUNT NETWORK - SS FOOTBALL PLUS HD - SS FOOTBALL HD - INFOSPORT+ - NHK WORLD TV - CGTN-FRANCAIS - SPORT EN FRANCE - PASSION BOLLYWOOD - C+ KIDS - CAVI MEDIAS - WEST AFRICA TV - FRANCE 24 EN - GTV - GULLI BIL ARABI - 2M - BNEWS - ANTENNE A - LMTV - CARREFOUR - BENIE TV - TV10 - BBLACK AFRICA - TELE FONTAINE VIE - CNN - TLC - CARTOON NETWORK - CARTOONITO - BOOMERANG - DISCOVERY CHANNEL - A+ - RTB ZENITH dupli - BF1 TV - RTB 3 dupli - TVCA - RTB dupli - TOZALI TV - LUMEN CHRISTI - PRC - JESUS 24 TV - SUNNA TV - CH3 - CH4 - PARLEMENT TV - NCA - DISCOVERY INVESTIGATION - LUTTE TV - PYRAMIDE TV - TV2 - BCN TV - BRIK TV - AL NASSR - GULLI AFRICA - NOVELAS TV - PACIS TV - MY MEDIA PRIME - SCIENCE ET VIE TV - ENGLISH CLUB TV - FASHION AFRICA TV - SEN TV - ASONGA TV - DIGITAL CONGO - TELE 50 - DRTV - TV MAURITANIE - IMPACT TV - ELECTRON TV - VISION 4 - BUSINESS 24 - CANAL+ SPORT 4 - CANAL+ SPORT 5 - ZEE MAGIC - ORTM2 - EVASION TV - RTD - CANAL+ FAMILY OUEST - ONE TV - SSM TV - MCR TV - OMEGA TV - AFRICANEWS - E-TELEVISION - ESPACE TV - GABON 24 - NYOTA - TELE 24 - TGB - JOLIBA - TIVI5 MONDE - CANAL 3 BENIN - NBA TV - BURKINA INFO - VOX TV - AUTOMOTO - TREK - J-ONE - BANTAMBA TV - TRACE MZIKI - CNBC AFRICA - WALF TV - LTM - MEDI1 TV - CH1 - IVOIRE TV Music - UNIVERS TV - MIRACLE TV+ - MANDE TV - NOLLYWOOD EPIC - CIS TV - ASFIYAHI - TF1 SERIES FILMS - MSI TV - TRACE GOSPEL - TRACE KITOKO - 3TV - CANAL+ SPORT 1 - CANAL+ ACTION CENTRE - MISHAPI - CANAL+ POP - LUX TV - KALAC TV - NIETA TV - CANAL+ ACTION OUEST - PENTHOUSE BLACK - SAVANE TV - MOLIERE TV - RTS 2 - CRTV NEWS - CHERIFLA TV - MUSEUM TV - CANAL 2 MOVIES - EMCI - CH2 - A+ IVOIRE Antenne - VISION 4 RCA - AREWA 24 - SAHARA TV - DORCEL TV AFRICA - SUNU YEUF - CUISINES - M6 INTERNATIONAL - TRACE TERANGA - NCI - RTNB - CRTV SPORT - GC4 - ITV - TM1 - TOUTE L HISTOIRE - PSTV - FARIN WATA - KC2 - TV1 - TV O - FLASH TV - ISANGO STAR TV - GENESIS TV - BTN TV - CARTOON NETWORK Africa SA - TNT Africa - ANIMAUX - CRIME DISTRICT - LA3 - LIFE TV - TV7 - CVK - CDIRECT - ALBAYANE - LCA - RENOUVEAU TV - RTDS - E! ENG - TELEMUNDO - AFRICA MAGIC EPIC - ZEE WORLD - NICKELODEON ENG - NICKELODEON JR ENG - AFRICA MAGIC SHOWCASE - MNET MOVIES 3 - MNET MOVIES 4 - DISCOVER CHANNEL ENG - SS EPL - SS LA LIGA - CANAL 3 BURKINA - VOIR+ COTE D IVOIRE - SUD 1ERE - 7INFO - GABON CULTURE - BLOOMBERG TV - LAMP FALL TV - ALAFIA TV - TVC - DOUNIA - BONFEREY - SUNNA TV - TVGE - CAPITAL SANTE TV - MIKUBA TV - LUDIKIDS OI - VIXEN - NICKELODEON JR - NATHAN+ - NOVELAS (Cameroun) - MADI TV - MABOKE TV - ECCLESIA TV - SOS DOCTEUR TV - CANAL+ DOCS + CANAL+FOOT + FRANCE 2 + CNN + CHAINE: 45 + BLOOMBERG TV + 2M MONDE + CNBC + TVE INTERNACIONAL + TEST05 + TEST06 + TEST07 + TEST08 + TEST09 + TEST10 + CANAL+SPORT360 + TEST11 + TEST12 + TEST13 + TEST15 + TEST16 + TEST17 + TEST03 + EUROSPORT 1 + KTO + RTL + USHUAIA TV + ARTE + DISCOVERY CHANNEL + CANAL+SPORT + CANAL+CINEMA.S + TEST04 + TV7 TUNISIE + AL JAZEERA ARABIC + ARIRANG TV + CANAL+KIDS + 8 MONT-BLANC + MEZZO LIVE + PLANETE+ + FRANCE 24 ARABE + CGTN DOCUMENTARY + CHAINE EVENEMENT + TEVA + PARIS PREMIERE + W9 + CANAL+ + FRANCE 24 + FRANCE 24 ENG + TF1 + M6 + OCS + EURONEWS + M6 MUSIC + SERIE CLUB + I24 NEWS + A LA UNE + TCM CINEMA + GOLF+ + BEIN SPORTS 1 + BEIN SPORTS 2 + CINE+ EMOTION + CINE+ FRISSON + EUROSPORT 2 + RMC LIFE + L'EQUIPE + MTV + CNEWS + CANAL+SERIES + J-ONE + PARAMOUNT NETWORK + 24H + CARTOON NETWORK + ANIMAUX + ACTION + RTL9 + ALGERIE 3 + CANAL ALGERIE + CSTAR + BEIN SPORTS 3 + NICKTOONS + TV5 MONDE + 6TER + CANAL J + TF1 SERIES FILMS + NOLLYWOOD TV + BOOMERANG + CINE+ CLASSIC + CINE+ FESTIVAL + CINE+ FAMILY + COMEDIE+ + DORCEL TV + DORCEL XXX + EQUIDIA + FRANCE 3 + FRANCE 4 + FRANCE 5 + EVENEMENT SPORT 4K HDR UHD + VIXEN + GULLI + HISTOIRE TV + INFOSPORT+ + LA CHAINE METEO + LCI + LCP + MCM + RFM TV + MEZZO + MULTISPORTS 1 + MULTISPORTS 2 + MULTISPORTS 3 + MULTISPORTS 4 + MULTISPORTS 5 + MULTISPORTS 6 + NRJ HITS + TFX + RMC STORY + CANAL+ + CANAL+SPORT + PINK X + PIWI+ + SEASONS + MELODY + TELETOON+ + TELETOON+1 + TIJI + TMC + TRACE URBAN + TV BREIZH + PLANETE+CRIME + PLANETE+AVENTURE + BBC NEWS + NICKELODEON + GAME ONE + NICKELODEON JUNIOR + RMC DECOUVERTE + BEIN SPORTS MAX 4 + BEIN SPORTS MAX 5 + BEIN SPORTS MAX 6 + BEIN SPORTS MAX 7 + CANAL+ + BEIN SPORTS MAX 8 + BEIN SPORTS MAX 9 + BEIN SPORTS MAX 10 + AB1 + AUTOMOTO LA CHAINE + MANGAS + XXL + TOUTE L'HISTOIRE + BET + ASTROCENTER TV + BFM TV + EUROSPORT 360 1 + EUROSPORT 360 2 + EUROSPORT 360 3 + EUROSPORT 360 4 + LL EVENT UHD + BFM BUSINESS + EUROSPORT 360 5 + EUROSPORT 360 6 + EUROSPORT 360 7 + EUROSPORT 360 8 + NHK WORLD-JAPAN + FRANCEINFO: + MAN X + AL JAZEERA ENG + MUSEUM + NICKELODEON+1 + CHASSE ET PECHE + CHAINE: 684 + POLAR+ + NOVELAS TV + WARNER TV + EURONEWS ALL + CANAL+ (CH) + EUROPE 2 POP TV + CHAINE: 724 + EVENEMENT SPORT 4K UHD + CANAL+ UHD + RMC SPORT 1 + RMC SPORT 2 + TEST14 + CANAL 9 + RTS 1 + RTS 2 + CANAL ALPHA NE + LA TELE + LEMAN BLEU + TELEBIELINGUE + RSI 1 + RSI 2 + SRF 1 + SRF 2 + 3 SAT + ARD DAS ERSTE + ORF 1 + TRACE LATINA + COMEDY CENTRAL + OLYMPIA TV + CANAL+PREMIER LEAGUE + MGG TV + CANAL+ (CH) + CANAL+ CINEMA.S (CH) + OCS (CH) + CINE+ FRISSON (CH) + CSTAR (CH) + A+ + A+ IVOIRE + NOLLYWOOD TV EPIC + EURONEWS ITALIE + EVENEMENT SPORT UHD HDR + CANAL+ SPORT (CH) + CANAL+ UHD (CH) + TEST01 + TEST02 + CARAC1 + CARAC3 + CARAC2 + BLUE ZOOM + CANAL+DOCS + CANAL+GRAND ECRAN + F3 PICARDIE + F3 FRANCHE COMTE + F3 AQUITAINE + F3 NORMANDIE B + F3 AUVERGNE + F3 BOURGOGNE + F3 ALPES + F3 NORD + F3 LIMOUSIN + F3 RHONE ALPES + F3 PROVENCE ALPES + F3 LANGUEDOCROUS + F3 LORRAINE + F3 PAYS DE LA LOIRE + F3 COTE D'AZUR + F3 CENTRE + F3 PARIS IDF + F3 POITOU CHARENT + F3 CHAMP ARDENNE + F3 BRETAGNE + F3 NORMANDIE H + F3 ALSACE + F3 MIDI PYRENEES + F3 CORSEVIASTELLA + CHAINE : 970 + CHAINE : 971 + CHAINE : 972 + CHAINE : 973 + CHAINE : 974 + CHAINE : 975 + F3 NOA + CANAL+ MODE EVENT + CANAL+FOOT + CANAL+SPORT360 + CANAL+SPORT 360 (CH) + MULTISPORTS 7 + CANAL+GRAND ECRAN (CH) + CHAINE: 1067 + CHAINE: 1068 + CHAINE: 1069 + CHAINE: 1070 + CHAINE: 1071 + CANAL+BOX OFFICE + CANAL+BOX OFFICE (CH) + TV MONACO + DAZN 1 + CANAL+BOX OFFICE UHD + SPORT EN FRANCE + UNIONTV + RAI 1 + RELIN1 + RELIN2 + RELIN3 + RELIN4 + RELIN5 + RELIN6 + RELIN7 + RELIN8 + FRANCE TV SERIES + FRANCE 2 UHD HDR + WARNER TV NEXT + CARTOONITO + TLC + DISCOVERY INVESTIGATION + CANAL+FOOT (CH) + LE FIGARO TV + CINE+ EMOTION (CH) + CINE+ FAMILY (CH) + EUROSPORT 360 9 + EUROSPORT 360 10 + EUROSPORT 360 11 + EUROSPORT 360 12 + EUROSPORT 360 13 + EUROSPORT 360 14 + EUROSPORT 360 15 + EUROSPORT 360 16 + EUROSPORT 360 17 + EUROSPORT 360 18 + EUROSPORT 360 19 + EUROSPORT 360 20 + EUROSPORT 360 21 + EUROSPORT 360 22 + EUROSPORT 360 23 + EUROSPORT 360 24 + EUROSPORT 360 25 + EUROSPORT 360 26 + EUROSPORT 360 27 + EUROSPORT 360 28 + EUROSPORT 360 29 + EUROSPORT 360 30 + EUROSPORT 360 31 + EUROSPORT 360 32 + CANAL+LIVE 1 + CANAL+LIVE 2 + CANAL+LIVE 3 + CANAL+LIVE 4 + CANAL+LIVE 5 + CANAL+LIVE 6 + CANAL+LIVE 7 + CANAL+LIVE 8 + CANAL+LIVE 9 + CANAL+LIVE 10 + CANAL+LIVE 11 + CANAL+LIVE 12 + CANAL+LIVE 13 + CANAL+LIVE 14 + CANAL+LIVE 15 + CANAL+LIVE 16 + CANAL+LIVE 17 + CANAL+LIVE 18 + CANAL+LIVE 19 + CANAL+ UHD HDR + DAZN 2 + DAZN 3 + DAZN 4 + DAZN 5 + FRANCE TV DOCS + CANAL+ + T18 + NOVO19 + CINE+ FESTIVAL (CH) + CNEWS PRIME + EUROPE 1 TV + LIGUE 1+ 3 + LIGUE 1+ 4 + LIGUE 1+ 5 + MIEUX + CHEVAL TV + SUNU YEUF + PULAAGU + MANDEKA + MABOKE TV + ECHOROUK NEWS + ECHOROUK TV + NESSMA TV + SAMIRA TV + EL HIWAR ETTOUNSI + SKYNEWS ARABIA + MBC 5 + MBC DRAMA + ROTANA CINEMA FR + ROTANA CINEMA + ROTANA KIDS + A+ BENIN + Chaine: 1199 + Chaine: 1200 + Chaine: 1201 + CGTN FRANCAIS + ARTE ALLEMAND diff --git a/sites/canalplus.com/canalplus.com_au.channels.xml b/sites/canalplus.com/canalplus.com_au.channels.xml new file mode 100644 index 000000000..c9841c039 --- /dev/null +++ b/sites/canalplus.com/canalplus.com_au.channels.xml @@ -0,0 +1,170 @@ + + + 13EME RUE + J-ONE + AFRICA 24 + ACTION + KTO + EVANGILE TV + ARTE France + BBC NEWS + W-SPORT + PARIS PREMIERE + NHK WORLD-JAPAN + CANAL EVENEMENT PACIFIQUE + CANAL+ HD + CANAL+ CINEMA(S) + PUNCH TV + CNN + CNEWS PRIME + EUROPE 1 TV + DAZN 3 + CANAL+ SPORT HD + DAZN 4 + CINE+ FESTIVAL + CINE+ EMOTION + CINE+ FAMILY + CINE+ FRISSON + OCS + DAZN 5 + M6 INTERNATIONAL + MANGAS + EMOTION'L + COMEDIE+ + FREQUENCE NOVELAS + E! ENTERTAINMENT + CINEWESTERN + CINE NANAR + VOIR+ + CANAL+ GRAND ECRAN HD + EUROSPORT 1 + EUROSPORT 2 + T18 + NOVO19 + FRANCE 3 + FRANCE 5 + MIEUX + CNEWS + INFOSPORT+ + LCI + L'EQUIPE + M6 HD + MCM + RFM TV + MEZZO + MTV France + TFX + PLANETE+ + PLANETE+ AVENTURE + RTL9 + SYFY + SEASONS + SERIE CLUB + BEIN SPORTS MAX 6 + BEIN SPORTS MAX 7 + BEIN SPORTS MAX 8 + BEIN SPORTS MAX 9 + BEIN SPORTS MAX 10 + NOUVELLE CALEDONIE 1ERE + WALLIS ET FUTUNA 1ERE + TEVA + TF1 HD + TIJI + TMC + TRACE URBAN + TV BREIZH + XXL + FRANCE 24 + BEIN SPORTS 1 HD + TPMP + GAME ONE + USHUAÏA TV + W9 + PLANETE+ CRIME + GULLI + MTV HITS + TELETOON+ + DORCEL TV + HISTOIRE TV + DISCOVERY CHANNEL + FRANCE 2 + FRANCE 4 + CSTAR + NICKELODEON + TV5 Pacifique + BEIN SPORTS 2 + CANAL+ BOX OFFICE + PARAMOUNT NETWORK + HUSTLER + CANAL+ SERIES + CALEDONIA + CINE+ CLASSIC + MBC SAT + BEIN SPORTS 3 + TCM CINEMA + CANAL+ KIDS HD + GOLF+ + RMC LIFE + CARTOON NETWORK + BOOMERANG + CANAL+ SPORT 360 + CANAL+ FOOT + NOVELAS TV + BEIN SPORTS MAX 4 + BEIN SPORTS MAX 5 + AUTOMOTO + TREK + MEZZO 24/24 + PRIVATE + SEASONS 24/24 + TF1 SERIES FILMS + 6TER + TEST DROM + EQUIDIA + TBV + MUSEUM TV + EMCI TV + WARNER TV + WARNER TV NEXT + FRANCE INFO: + TAHITI TV + OLYMPIA TV + CANAL+ PREMIER LEAGUE + EVENEMENT 4K + VIXEN + PACIFIC+ + NICKELODEON JR + BFM TV + BFM BUSINESS + RMC STORY + SPORT EN FRANCE + EUROPE 2 POP TV + CANAL+ DOCS + ABC AUSTRALIA + HISTOIRE TV 24/24 + RFM TV 24/24 + CHEVAL TV + MEZZO LIVE + RMC DECOUVERTE + CARTOONITO + TLC + DISCOVERY INVESTIGATION + CANAL+LIVE 1 + CANAL+LIVE 2 + CANAL+LIVE 3 + CANAL+LIVE 4 + CANAL+LIVE 5 + CANAL+LIVE 6 + CANAL+LIVE 7 + CANAL+LIVE 8 + CANAL+LIVE 9 + CANAL+LIVE 10 + CANAL+LIVE 11 + CANAL+LIVE 12 + CANAL+LIVE 13 + CANAL+LIVE 14 + CANAL+LIVE 15 + CANAL+LIVE 16 + CANAL+LIVE 17 + CANAL+LIVE 18 + diff --git a/sites/canalplus.com/canalplus.com_bf.channels.xml b/sites/canalplus.com/canalplus.com_bf.channels.xml index fc9fc3e3e..d60f8f98a 100644 --- a/sites/canalplus.com/canalplus.com_bf.channels.xml +++ b/sites/canalplus.com/canalplus.com_bf.channels.xml @@ -22,7 +22,6 @@ BOSOLO TV RTCE MALAIKA TV - HK6 HERITAGE TV E! Bukedde TV @@ -35,8 +34,6 @@ France 2 INT MANGAS RTB ZENITH - HOPE TV - RTNK MEZZO HOREB TV MTV France @@ -55,13 +52,12 @@ AFRIKINFO TV EVANGILE TV REFLET TV + TRACE CHRISTMAS TOUBA TV TELEMUSIK SENEGAL MOURCHID TV - TELE-ECOLE AL MOURIDIYYAH TV MALIKIA TV - CANAL EDUCATION FULBE TF1 KAYES TV @@ -69,6 +65,7 @@ TMC SEGOU TV SUNNA TV SAVANA + CANAL+ CAN GO TV HUSTLER HD TROPIC TV @@ -80,11 +77,9 @@ GALAXIE TELE FRANCE 24 BALAFON TV - TAMBARIN HAUSA TV DASH TV BETV HTV BURUNDI - TPMP RTB 2STV ISIBO TV @@ -121,8 +116,8 @@ TELE CONGO BENIN TV HD RTNC + CANAL+ CAN IVOIRE PRIVATE TV - WILDEARTH TPT+ TRACE AFRICA AFRIQUE VOIR+ @@ -147,7 +142,6 @@ M7 RTB 3 TV AL HOUDA - JES TV SUNNA TV ZARMA TAURARUWA FOR YOU TV @@ -155,7 +149,6 @@ TRACE MBOA SUN+ TV TV+ AFRIQUE - LPC NOLLYWOOD TV RTI2 TV TOGO @@ -170,18 +163,18 @@ CONGO 26 ISHUSHO TV MRTV - SHIF TV + CHIF TV GC7 GC2 GC6 ESPERANCE TV BUJA TV AL JAZEERA ENG - BET ENG + BET (ENG) UNIVERSAL GC1 SHADOW TV - CANAL+ ELLES + C+ MAGIC PARAMOUNT NETWORK SS FOOTBALL PLUS HD SS FOOTBALL HD @@ -206,7 +199,6 @@ BBLACK AFRICA TELE FONTAINE VIE CNN - TLC CARTOON NETWORK CARTOONITO BOOMERANG @@ -217,11 +209,9 @@ RTB 3 dupli TVCA RTB dupli - TOZALI TV LUMEN CHRISTI PRC JESUS 24 TV - SUNNA TV CH3 CH4 PARLEMENT TV @@ -233,17 +223,30 @@ BCN TV BRIK TV AL NASSR + BENIN TV ALAFIA + ACTIVATION NETFLIX + DNTV + AFRICA MAGIC HAUSA + AFRICA MAGIC YORUBA + MAISHA MAGIC EAST + MAISHA MAGIC PLUS + TEST AFRIQUE + MIEUX + EUROPE 2 POP TV GULLI AFRICA NOVELAS TV + TRACE IVOIRE PACIS TV MY MEDIA PRIME SCIENCE ET VIE TV ENGLISH CLUB TV + ZEE ALWAN FASHION AFRICA TV SEN TV ASONGA TV DIGITAL CONGO TELE 50 + SS WWE DRTV TV MAURITANIE IMPACT TV @@ -252,15 +255,24 @@ BUSINESS 24 CANAL+ SPORT 4 CANAL+ SPORT 5 + VOIR+ RDC ZEE MAGIC ORTM2 EVASION TV RTD + GOLF+ HD + LOVE NATURE CANAL+ FAMILY OUEST ONE TV + CNEWS PRIME + EUROPE 1 TV + AES TV HD + MAISHA MAGIC BONGO + NATIONAL GEOGRAPHIC ENG + STUDIO UNIVERSAL SSM TV MCR TV - OMEGA TV + SUPERSPORT ACTION AFRICANEWS E-TELEVISION ESPACE TV @@ -278,12 +290,11 @@ TREK J-ONE BANTAMBA TV - TRACE MZIKI CNBC AFRICA WALF TV LTM MEDI1 TV - CH1 + CNEWS PRIME IVOIRE TV Music UNIVERS TV MIRACLE TV+ @@ -313,7 +324,7 @@ MUSEUM TV CANAL 2 MOVIES EMCI - CH2 + EUROPE 1 TV A+ IVOIRE Antenne VISION 4 RCA AREWA 24 @@ -331,13 +342,11 @@ TM1 TOUTE L HISTOIRE PSTV - FARIN WATA KC2 TV1 TV O FLASH TV ISANGO STAR TV - GENESIS TV BTN TV CARTOON NETWORK Africa SA TNT Africa @@ -352,7 +361,7 @@ LCA RENOUVEAU TV RTDS - E! ENG + BRAVO ENG TELEMUNDO AFRICA MAGIC EPIC ZEE WORLD @@ -361,7 +370,7 @@ AFRICA MAGIC SHOWCASE MNET MOVIES 3 MNET MOVIES 4 - DISCOVER CHANNEL ENG + DISCOVERY CHANNEL ENG SS EPL SS LA LIGA CANAL 3 BURKINA @@ -375,9 +384,7 @@ TVC DOUNIA BONFEREY - SUNNA TV TVGE - CAPITAL SANTE TV MIKUBA TV LUDIKIDS OI VIXEN diff --git a/sites/canalplus.com/canalplus.com_bi.channels.xml b/sites/canalplus.com/canalplus.com_bi.channels.xml index fbfe4aad4..f9e289012 100644 --- a/sites/canalplus.com/canalplus.com_bi.channels.xml +++ b/sites/canalplus.com/canalplus.com_bi.channels.xml @@ -22,7 +22,6 @@ BOSOLO TV RTCE MALAIKA TV - HK6 HERITAGE TV E! Bukedde TV @@ -35,8 +34,6 @@ France 2 INT MANGAS RTB ZENITH - HOPE TV - RTNK MEZZO HOREB TV MTV France @@ -55,13 +52,12 @@ AFRIKINFO TV EVANGILE TV REFLET TV + TRACE CHRISTMAS TOUBA TV TELEMUSIK SENEGAL MOURCHID TV - TELE-ECOLE AL MOURIDIYYAH TV MALIKIA TV - CANAL EDUCATION FULBE TF1 KAYES TV @@ -69,6 +65,7 @@ TMC SEGOU TV SUNNA TV SAVANA + CANAL+ CAN GO TV HUSTLER HD TROPIC TV @@ -80,11 +77,9 @@ GALAXIE TELE FRANCE 24 BALAFON TV - TAMBARIN HAUSA TV DASH TV BETV HTV BURUNDI - TPMP RTB 2STV ISIBO TV @@ -121,8 +116,8 @@ TELE CONGO BENIN TV HD RTNC + CANAL+ CAN IVOIRE PRIVATE TV - WILDEARTH TPT+ TRACE AFRICA AFRIQUE VOIR+ @@ -147,7 +142,6 @@ M7 RTB 3 TV AL HOUDA - JES TV SUNNA TV ZARMA TAURARUWA FOR YOU TV @@ -155,7 +149,6 @@ TRACE MBOA SUN+ TV TV+ AFRIQUE - LPC NOLLYWOOD TV RTI2 TV TOGO @@ -170,18 +163,18 @@ CONGO 26 ISHUSHO TV MRTV - SHIF TV + CHIF TV GC7 GC2 GC6 ESPERANCE TV BUJA TV AL JAZEERA ENG - BET ENG + BET (ENG) UNIVERSAL GC1 SHADOW TV - CANAL+ ELLES + C+ MAGIC PARAMOUNT NETWORK SS FOOTBALL PLUS HD SS FOOTBALL HD @@ -206,7 +199,6 @@ BBLACK AFRICA TELE FONTAINE VIE CNN - TLC CARTOON NETWORK CARTOONITO BOOMERANG @@ -217,11 +209,9 @@ RTB 3 dupli TVCA RTB dupli - TOZALI TV LUMEN CHRISTI PRC JESUS 24 TV - SUNNA TV CH3 CH4 PARLEMENT TV @@ -233,17 +223,30 @@ BCN TV BRIK TV AL NASSR + BENIN TV ALAFIA + ACTIVATION NETFLIX + DNTV + AFRICA MAGIC HAUSA + AFRICA MAGIC YORUBA + MAISHA MAGIC EAST + MAISHA MAGIC PLUS + TEST AFRIQUE + MIEUX + EUROPE 2 POP TV GULLI AFRICA NOVELAS TV + TRACE IVOIRE PACIS TV MY MEDIA PRIME SCIENCE ET VIE TV ENGLISH CLUB TV + ZEE ALWAN FASHION AFRICA TV SEN TV ASONGA TV DIGITAL CONGO TELE 50 + SS WWE DRTV TV MAURITANIE IMPACT TV @@ -252,15 +255,24 @@ BUSINESS 24 CANAL+ SPORT 4 CANAL+ SPORT 5 + VOIR+ RDC ZEE MAGIC ORTM2 EVASION TV RTD + GOLF+ HD + LOVE NATURE CANAL+ FAMILY OUEST ONE TV + CNEWS PRIME + EUROPE 1 TV + AES TV HD + MAISHA MAGIC BONGO + NATIONAL GEOGRAPHIC ENG + STUDIO UNIVERSAL SSM TV MCR TV - OMEGA TV + SUPERSPORT ACTION AFRICANEWS E-TELEVISION ESPACE TV @@ -278,12 +290,11 @@ TREK J-ONE BANTAMBA TV - TRACE MZIKI CNBC AFRICA WALF TV LTM MEDI1 TV - CH1 + CNEWS PRIME IVOIRE TV Music UNIVERS TV MIRACLE TV+ @@ -313,7 +324,7 @@ MUSEUM TV CANAL 2 MOVIES EMCI - CH2 + EUROPE 1 TV A+ IVOIRE Antenne VISION 4 RCA AREWA 24 @@ -331,13 +342,11 @@ TM1 TOUTE L HISTOIRE PSTV - FARIN WATA KC2 TV1 TV O FLASH TV ISANGO STAR TV - GENESIS TV BTN TV CARTOON NETWORK Africa SA TNT Africa @@ -352,7 +361,7 @@ LCA RENOUVEAU TV RTDS - E! ENG + BRAVO ENG TELEMUNDO AFRICA MAGIC EPIC ZEE WORLD @@ -361,7 +370,7 @@ AFRICA MAGIC SHOWCASE MNET MOVIES 3 MNET MOVIES 4 - DISCOVER CHANNEL ENG + DISCOVERY CHANNEL ENG SS EPL SS LA LIGA CANAL 3 BURKINA @@ -375,9 +384,7 @@ TVC DOUNIA BONFEREY - SUNNA TV TVGE - CAPITAL SANTE TV MIKUBA TV LUDIKIDS OI VIXEN diff --git a/sites/canalplus.com/canalplus.com_bj.channels.xml b/sites/canalplus.com/canalplus.com_bj.channels.xml index 830da66fc..475cd591c 100644 --- a/sites/canalplus.com/canalplus.com_bj.channels.xml +++ b/sites/canalplus.com/canalplus.com_bj.channels.xml @@ -22,7 +22,6 @@ BOSOLO TV RTCE MALAIKA TV - HK6 HERITAGE TV E! Bukedde TV @@ -35,8 +34,6 @@ France 2 INT MANGAS RTB ZENITH - HOPE TV - RTNK MEZZO HOREB TV MTV France @@ -55,13 +52,12 @@ AFRIKINFO TV EVANGILE TV REFLET TV + TRACE CHRISTMAS TOUBA TV TELEMUSIK SENEGAL MOURCHID TV - TELE-ECOLE AL MOURIDIYYAH TV MALIKIA TV - CANAL EDUCATION FULBE TF1 KAYES TV @@ -69,6 +65,7 @@ TMC SEGOU TV SUNNA TV SAVANA + CANAL+ CAN GO TV HUSTLER HD TROPIC TV @@ -80,11 +77,9 @@ GALAXIE TELE FRANCE 24 BALAFON TV - TAMBARIN HAUSA TV DASH TV BETV HTV BURUNDI - TPMP RTB 2STV ISIBO TV @@ -121,8 +116,8 @@ TELE CONGO BENIN TV HD RTNC + CANAL+ CAN IVOIRE PRIVATE TV - WILDEARTH TPT+ TRACE AFRICA AFRIQUE VOIR+ @@ -147,7 +142,6 @@ M7 RTB 3 TV AL HOUDA - JES TV SUNNA TV ZARMA TAURARUWA FOR YOU TV @@ -155,7 +149,6 @@ TRACE MBOA SUN+ TV TV+ AFRIQUE - LPC NOLLYWOOD TV RTI2 TV TOGO @@ -170,18 +163,18 @@ CONGO 26 ISHUSHO TV MRTV - SHIF TV + CHIF TV GC7 GC2 GC6 ESPERANCE TV BUJA TV AL JAZEERA ENG - BET ENG + BET (ENG) UNIVERSAL GC1 SHADOW TV - CANAL+ ELLES + C+ MAGIC PARAMOUNT NETWORK SS FOOTBALL PLUS HD SS FOOTBALL HD @@ -206,7 +199,6 @@ BBLACK AFRICA TELE FONTAINE VIE CNN - TLC CARTOON NETWORK CARTOONITO BOOMERANG @@ -217,11 +209,9 @@ RTB 3 dupli TVCA RTB dupli - TOZALI TV LUMEN CHRISTI PRC JESUS 24 TV - SUNNA TV CH3 CH4 PARLEMENT TV @@ -233,17 +223,30 @@ BCN TV BRIK TV AL NASSR + BENIN TV ALAFIA + ACTIVATION NETFLIX + DNTV + AFRICA MAGIC HAUSA + AFRICA MAGIC YORUBA + MAISHA MAGIC EAST + MAISHA MAGIC PLUS + TEST AFRIQUE + MIEUX + EUROPE 2 POP TV GULLI AFRICA NOVELAS TV + TRACE IVOIRE PACIS TV MY MEDIA PRIME SCIENCE ET VIE TV ENGLISH CLUB TV + ZEE ALWAN FASHION AFRICA TV SEN TV ASONGA TV DIGITAL CONGO TELE 50 + SS WWE DRTV TV MAURITANIE IMPACT TV @@ -252,15 +255,24 @@ BUSINESS 24 CANAL+ SPORT 4 CANAL+ SPORT 5 + VOIR+ RDC ZEE MAGIC ORTM2 EVASION TV RTD + GOLF+ HD + LOVE NATURE CANAL+ FAMILY OUEST ONE TV + CNEWS PRIME + EUROPE 1 TV + AES TV HD + MAISHA MAGIC BONGO + NATIONAL GEOGRAPHIC ENG + STUDIO UNIVERSAL SSM TV MCR TV - OMEGA TV + SUPERSPORT ACTION AFRICANEWS E-TELEVISION ESPACE TV @@ -278,12 +290,11 @@ TREK J-ONE BANTAMBA TV - TRACE MZIKI CNBC AFRICA WALF TV LTM MEDI1 TV - CH1 + CNEWS PRIME IVOIRE TV Music UNIVERS TV MIRACLE TV+ @@ -313,7 +324,7 @@ MUSEUM TV CANAL 2 MOVIES EMCI - CH2 + EUROPE 1 TV A+ IVOIRE Antenne VISION 4 RCA AREWA 24 @@ -331,13 +342,11 @@ TM1 TOUTE L HISTOIRE PSTV - FARIN WATA KC2 TV1 TV O FLASH TV ISANGO STAR TV - GENESIS TV BTN TV CARTOON NETWORK Africa SA TNT Africa @@ -352,7 +361,7 @@ LCA RENOUVEAU TV RTDS - E! ENG + BRAVO ENG TELEMUNDO AFRICA MAGIC EPIC ZEE WORLD @@ -361,7 +370,7 @@ AFRICA MAGIC SHOWCASE MNET MOVIES 3 MNET MOVIES 4 - DISCOVER CHANNEL ENG + DISCOVERY CHANNEL ENG SS EPL SS LA LIGA CANAL 3 BURKINA @@ -375,9 +384,7 @@ TVC DOUNIA BONFEREY - SUNNA TV TVGE - CAPITAL SANTE TV MIKUBA TV LUDIKIDS OI VIXEN diff --git a/sites/canalplus.com/canalplus.com_bl.channels.xml b/sites/canalplus.com/canalplus.com_bl.channels.xml index de2e6c590..3e1edc708 100644 --- a/sites/canalplus.com/canalplus.com_bl.channels.xml +++ b/sites/canalplus.com/canalplus.com_bl.channels.xml @@ -10,34 +10,39 @@ PUNCH TV CANAL J CANAL+ HD - CANAL+ CINEMA(S) - DAZN 1 - DAZN 2 + CANAL+ CINEMA(S) HD + CNEWS PRIME + EUROPE 1 TV DAZN 3 DAZN 4 DAZN 5 CNN - CANAL+ SPORT HD + CANAL+SPORT HD EMCI - CINE+ FESTIVAL - CINE+ EMOTION - CINE+ FAMILY - CINE+ FRISSON HD + CINE+FESTIVAL + CINE+EMOTION + CINE+FAMILY + CINE+FRISSON HD OCS HD EVANGILE TV MANGAS + T18 COMEDIE+ + NOVO19 E! ENTERTAINMENT - EQUIDIA LIVE + EQUIDIA HD ESPN + MIEUX + EUROPE 2 POP TV EUROSPORT 1 HD EUROSPORT 2 HD + RADIO TELE ECLAIR FRANCE 3 FRANCE 5 CNEWS INFOSPORT+ LCI - LCP ASSEMBLEE NATIONALE + LCP L'EQUIPE M6 HD MTV France @@ -61,10 +66,9 @@ XXL FRANCE 24 BEIN SPORTS 1 HD - TPMP PIWI+ GAME ONE - USHUAÏA TV + USHUAIA TVHD W9 PLANETE+ CRIME GULLI @@ -78,7 +82,6 @@ FRANCE 2 FRANCE 4 KMT - NRJ 12 CSTAR NICKELODEON TV GLOBO @@ -96,25 +99,25 @@ HUSTLER TV Métropole CANAL+ SERIES HD - CINE + CLASSIC + CINE+CLASSIC BEIN SPORTS 3 HD - CANAL+ SPORT AYITI 1 - HAITI SPORT 2 + C+SPORT AYITI 1 HD + C+SPORT AYITI 2 HBO HBO Family HBO XTREME ENGLISH CLUB TV - CANAL+ KIDS HD + CANAL+KIDS HD GOLF+ A+ NOLLYWOOD TV france CANAL SONY TV CARAIBES - CHERIE 25 + RMC LIFE CARTOON NETWORK BOOMERANG - CANAL+ SPORT 360 - CANAL+ FOOT + CANAL+SPORT360 HD + CANAL+FOOT HD NOVELAS TV BBLACK CARIBBEAN BEIN SPORTS MAX 4 @@ -145,7 +148,7 @@ TELEMUNDO TOUTE L HISTOIRE OLYMPIA TV - CANAL+ PREMIER LEAGUE + CANAL+PREMIER LEAGUE EVENEMENT 4K ZITATA TV LUDIKIDS OI @@ -153,7 +156,7 @@ TELE SOLEIL GRAPHE TV NICKELODEON JR - STUDIOCANAL + STUDIOCANAL TV NATHAN+ TROTTERS TV FUSION TV @@ -161,11 +164,10 @@ BFM TV BFM BUSINESS RMC STORY - CANAL+ AYITI + CANAL+AYITI HD CANAL EVENEMENT CARA SPORT EN FRANCE - CANAL+ DOCS - TRAVEL XP + CANAL+DOCS CHEVAL TV MEZZO LIVE RMC DECOUVERTE diff --git a/sites/canalplus.com/canalplus.com_cd.channels.xml b/sites/canalplus.com/canalplus.com_cd.channels.xml index 040f18051..483934bed 100644 --- a/sites/canalplus.com/canalplus.com_cd.channels.xml +++ b/sites/canalplus.com/canalplus.com_cd.channels.xml @@ -22,7 +22,6 @@ BOSOLO TV RTCE MALAIKA TV - HK6 HERITAGE TV E! Bukedde TV @@ -35,8 +34,6 @@ France 2 INT MANGAS RTB ZENITH - HOPE TV - RTNK MEZZO HOREB TV MTV France @@ -55,13 +52,12 @@ AFRIKINFO TV EVANGILE TV REFLET TV + TRACE CHRISTMAS TOUBA TV TELEMUSIK SENEGAL MOURCHID TV - TELE-ECOLE AL MOURIDIYYAH TV MALIKIA TV - CANAL EDUCATION FULBE TF1 KAYES TV @@ -69,6 +65,7 @@ TMC SEGOU TV SUNNA TV SAVANA + CANAL+ CAN GO TV HUSTLER HD TROPIC TV @@ -80,11 +77,9 @@ GALAXIE TELE FRANCE 24 BALAFON TV - TAMBARIN HAUSA TV DASH TV BETV HTV BURUNDI - TPMP RTB 2STV ISIBO TV @@ -121,8 +116,8 @@ TELE CONGO BENIN TV HD RTNC + CANAL+ CAN IVOIRE PRIVATE TV - WILDEARTH TPT+ TRACE AFRICA AFRIQUE VOIR+ @@ -147,7 +142,6 @@ M7 RTB 3 TV AL HOUDA - JES TV SUNNA TV ZARMA TAURARUWA FOR YOU TV @@ -155,7 +149,6 @@ TRACE MBOA SUN+ TV TV+ AFRIQUE - LPC NOLLYWOOD TV RTI2 TV TOGO @@ -170,18 +163,18 @@ CONGO 26 ISHUSHO TV MRTV - SHIF TV + CHIF TV GC7 GC2 GC6 ESPERANCE TV BUJA TV AL JAZEERA ENG - BET ENG + BET (ENG) UNIVERSAL GC1 SHADOW TV - CANAL+ ELLES + C+ MAGIC PARAMOUNT NETWORK SS FOOTBALL PLUS HD SS FOOTBALL HD @@ -206,7 +199,6 @@ BBLACK AFRICA TELE FONTAINE VIE CNN - TLC CARTOON NETWORK CARTOONITO BOOMERANG @@ -217,11 +209,9 @@ RTB 3 dupli TVCA RTB dupli - TOZALI TV LUMEN CHRISTI PRC JESUS 24 TV - SUNNA TV CH3 CH4 PARLEMENT TV @@ -233,17 +223,30 @@ BCN TV BRIK TV AL NASSR + BENIN TV ALAFIA + ACTIVATION NETFLIX + DNTV + AFRICA MAGIC HAUSA + AFRICA MAGIC YORUBA + MAISHA MAGIC EAST + MAISHA MAGIC PLUS + TEST AFRIQUE + MIEUX + EUROPE 2 POP TV GULLI AFRICA NOVELAS TV + TRACE IVOIRE PACIS TV MY MEDIA PRIME SCIENCE ET VIE TV ENGLISH CLUB TV + ZEE ALWAN FASHION AFRICA TV SEN TV ASONGA TV DIGITAL CONGO TELE 50 + SS WWE DRTV TV MAURITANIE IMPACT TV @@ -252,15 +255,24 @@ BUSINESS 24 CANAL+ SPORT 4 CANAL+ SPORT 5 + VOIR+ RDC ZEE MAGIC ORTM2 EVASION TV RTD + GOLF+ HD + LOVE NATURE CANAL+ FAMILY OUEST ONE TV + CNEWS PRIME + EUROPE 1 TV + AES TV HD + MAISHA MAGIC BONGO + NATIONAL GEOGRAPHIC ENG + STUDIO UNIVERSAL SSM TV MCR TV - OMEGA TV + SUPERSPORT ACTION AFRICANEWS E-TELEVISION ESPACE TV @@ -278,12 +290,11 @@ TREK J-ONE BANTAMBA TV - TRACE MZIKI CNBC AFRICA WALF TV LTM MEDI1 TV - CH1 + CNEWS PRIME IVOIRE TV Music UNIVERS TV MIRACLE TV+ @@ -313,7 +324,7 @@ MUSEUM TV CANAL 2 MOVIES EMCI - CH2 + EUROPE 1 TV A+ IVOIRE Antenne VISION 4 RCA AREWA 24 @@ -331,13 +342,11 @@ TM1 TOUTE L HISTOIRE PSTV - FARIN WATA KC2 TV1 TV O FLASH TV ISANGO STAR TV - GENESIS TV BTN TV CARTOON NETWORK Africa SA TNT Africa @@ -352,7 +361,7 @@ LCA RENOUVEAU TV RTDS - E! ENG + BRAVO ENG TELEMUNDO AFRICA MAGIC EPIC ZEE WORLD @@ -361,7 +370,7 @@ AFRICA MAGIC SHOWCASE MNET MOVIES 3 MNET MOVIES 4 - DISCOVER CHANNEL ENG + DISCOVERY CHANNEL ENG SS EPL SS LA LIGA CANAL 3 BURKINA @@ -375,9 +384,7 @@ TVC DOUNIA BONFEREY - SUNNA TV TVGE - CAPITAL SANTE TV MIKUBA TV LUDIKIDS OI VIXEN diff --git a/sites/canalplus.com/canalplus.com_cf.channels.xml b/sites/canalplus.com/canalplus.com_cf.channels.xml index c85d338bd..90e97f454 100644 --- a/sites/canalplus.com/canalplus.com_cf.channels.xml +++ b/sites/canalplus.com/canalplus.com_cf.channels.xml @@ -22,7 +22,6 @@ BOSOLO TV RTCE MALAIKA TV - HK6 HERITAGE TV E! Bukedde TV @@ -35,8 +34,6 @@ France 2 INT MANGAS RTB ZENITH - HOPE TV - RTNK MEZZO HOREB TV MTV France @@ -55,13 +52,12 @@ AFRIKINFO TV EVANGILE TV REFLET TV + TRACE CHRISTMAS TOUBA TV TELEMUSIK SENEGAL MOURCHID TV - TELE-ECOLE AL MOURIDIYYAH TV MALIKIA TV - CANAL EDUCATION FULBE TF1 KAYES TV @@ -69,6 +65,7 @@ TMC SEGOU TV SUNNA TV SAVANA + CANAL+ CAN GO TV HUSTLER HD TROPIC TV @@ -80,11 +77,9 @@ GALAXIE TELE FRANCE 24 BALAFON TV - TAMBARIN HAUSA TV DASH TV BETV HTV BURUNDI - TPMP RTB 2STV ISIBO TV @@ -121,8 +116,8 @@ TELE CONGO BENIN TV HD RTNC + CANAL+ CAN IVOIRE PRIVATE TV - WILDEARTH TPT+ TRACE AFRICA AFRIQUE VOIR+ @@ -147,7 +142,6 @@ M7 RTB 3 TV AL HOUDA - JES TV SUNNA TV ZARMA TAURARUWA FOR YOU TV @@ -155,7 +149,6 @@ TRACE MBOA SUN+ TV TV+ AFRIQUE - LPC NOLLYWOOD TV RTI2 TV TOGO @@ -170,18 +163,18 @@ CONGO 26 ISHUSHO TV MRTV - SHIF TV + CHIF TV GC7 GC2 GC6 ESPERANCE TV BUJA TV AL JAZEERA ENG - BET ENG + BET (ENG) UNIVERSAL GC1 SHADOW TV - CANAL+ ELLES + C+ MAGIC PARAMOUNT NETWORK SS FOOTBALL PLUS HD SS FOOTBALL HD @@ -206,7 +199,6 @@ BBLACK AFRICA TELE FONTAINE VIE CNN - TLC CARTOON NETWORK CARTOONITO BOOMERANG @@ -217,11 +209,9 @@ RTB 3 dupli TVCA RTB dupli - TOZALI TV LUMEN CHRISTI PRC JESUS 24 TV - SUNNA TV CH3 CH4 PARLEMENT TV @@ -233,17 +223,30 @@ BCN TV BRIK TV AL NASSR + BENIN TV ALAFIA + ACTIVATION NETFLIX + DNTV + AFRICA MAGIC HAUSA + AFRICA MAGIC YORUBA + MAISHA MAGIC EAST + MAISHA MAGIC PLUS + TEST AFRIQUE + MIEUX + EUROPE 2 POP TV GULLI AFRICA NOVELAS TV + TRACE IVOIRE PACIS TV MY MEDIA PRIME SCIENCE ET VIE TV ENGLISH CLUB TV + ZEE ALWAN FASHION AFRICA TV SEN TV ASONGA TV DIGITAL CONGO TELE 50 + SS WWE DRTV TV MAURITANIE IMPACT TV @@ -252,15 +255,24 @@ BUSINESS 24 CANAL+ SPORT 4 CANAL+ SPORT 5 + VOIR+ RDC ZEE MAGIC ORTM2 EVASION TV RTD + GOLF+ HD + LOVE NATURE CANAL+ FAMILY OUEST ONE TV + CNEWS PRIME + EUROPE 1 TV + AES TV HD + MAISHA MAGIC BONGO + NATIONAL GEOGRAPHIC ENG + STUDIO UNIVERSAL SSM TV MCR TV - OMEGA TV + SUPERSPORT ACTION AFRICANEWS E-TELEVISION ESPACE TV @@ -278,12 +290,11 @@ TREK J-ONE BANTAMBA TV - TRACE MZIKI CNBC AFRICA WALF TV LTM MEDI1 TV - CH1 + CNEWS PRIME IVOIRE TV Music UNIVERS TV MIRACLE TV+ @@ -313,7 +324,7 @@ MUSEUM TV CANAL 2 MOVIES EMCI - CH2 + EUROPE 1 TV A+ IVOIRE Antenne VISION 4 RCA AREWA 24 @@ -331,13 +342,11 @@ TM1 TOUTE L HISTOIRE PSTV - FARIN WATA KC2 TV1 TV O FLASH TV ISANGO STAR TV - GENESIS TV BTN TV CARTOON NETWORK Africa SA TNT Africa @@ -352,7 +361,7 @@ LCA RENOUVEAU TV RTDS - E! ENG + BRAVO ENG TELEMUNDO AFRICA MAGIC EPIC ZEE WORLD @@ -361,7 +370,7 @@ AFRICA MAGIC SHOWCASE MNET MOVIES 3 MNET MOVIES 4 - DISCOVER CHANNEL ENG + DISCOVERY CHANNEL ENG SS EPL SS LA LIGA CANAL 3 BURKINA @@ -375,9 +384,7 @@ TVC DOUNIA BONFEREY - SUNNA TV TVGE - CAPITAL SANTE TV MIKUBA TV LUDIKIDS OI VIXEN diff --git a/sites/canalplus.com/canalplus.com_cg.channels.xml b/sites/canalplus.com/canalplus.com_cg.channels.xml index 3997dba4d..ac208819c 100644 --- a/sites/canalplus.com/canalplus.com_cg.channels.xml +++ b/sites/canalplus.com/canalplus.com_cg.channels.xml @@ -22,7 +22,6 @@ BOSOLO TV RTCE MALAIKA TV - HK6 HERITAGE TV E! Bukedde TV @@ -35,8 +34,6 @@ France 2 INT MANGAS RTB ZENITH - HOPE TV - RTNK MEZZO HOREB TV MTV France @@ -55,13 +52,12 @@ AFRIKINFO TV EVANGILE TV REFLET TV + TRACE CHRISTMAS TOUBA TV TELEMUSIK SENEGAL MOURCHID TV - TELE-ECOLE AL MOURIDIYYAH TV MALIKIA TV - CANAL EDUCATION FULBE TF1 KAYES TV @@ -69,6 +65,7 @@ TMC SEGOU TV SUNNA TV SAVANA + CANAL+ CAN GO TV HUSTLER HD TROPIC TV @@ -80,11 +77,9 @@ GALAXIE TELE FRANCE 24 BALAFON TV - TAMBARIN HAUSA TV DASH TV BETV HTV BURUNDI - TPMP RTB 2STV ISIBO TV @@ -121,8 +116,8 @@ TELE CONGO BENIN TV HD RTNC + CANAL+ CAN IVOIRE PRIVATE TV - WILDEARTH TPT+ TRACE AFRICA AFRIQUE VOIR+ @@ -147,7 +142,6 @@ M7 RTB 3 TV AL HOUDA - JES TV SUNNA TV ZARMA TAURARUWA FOR YOU TV @@ -155,7 +149,6 @@ TRACE MBOA SUN+ TV TV+ AFRIQUE - LPC NOLLYWOOD TV RTI2 TV TOGO @@ -170,18 +163,18 @@ CONGO 26 ISHUSHO TV MRTV - SHIF TV + CHIF TV GC7 GC2 GC6 ESPERANCE TV BUJA TV AL JAZEERA ENG - BET ENG + BET (ENG) UNIVERSAL GC1 SHADOW TV - CANAL+ ELLES + C+ MAGIC PARAMOUNT NETWORK SS FOOTBALL PLUS HD SS FOOTBALL HD @@ -206,7 +199,6 @@ BBLACK AFRICA TELE FONTAINE VIE CNN - TLC CARTOON NETWORK CARTOONITO BOOMERANG @@ -217,11 +209,9 @@ RTB 3 dupli TVCA RTB dupli - TOZALI TV LUMEN CHRISTI PRC JESUS 24 TV - SUNNA TV CH3 CH4 PARLEMENT TV @@ -233,17 +223,30 @@ BCN TV BRIK TV AL NASSR + BENIN TV ALAFIA + ACTIVATION NETFLIX + DNTV + AFRICA MAGIC HAUSA + AFRICA MAGIC YORUBA + MAISHA MAGIC EAST + MAISHA MAGIC PLUS + TEST AFRIQUE + MIEUX + EUROPE 2 POP TV GULLI AFRICA NOVELAS TV + TRACE IVOIRE PACIS TV MY MEDIA PRIME SCIENCE ET VIE TV ENGLISH CLUB TV + ZEE ALWAN FASHION AFRICA TV SEN TV ASONGA TV DIGITAL CONGO TELE 50 + SS WWE DRTV TV MAURITANIE IMPACT TV @@ -252,15 +255,24 @@ BUSINESS 24 CANAL+ SPORT 4 CANAL+ SPORT 5 + VOIR+ RDC ZEE MAGIC ORTM2 EVASION TV RTD + GOLF+ HD + LOVE NATURE CANAL+ FAMILY OUEST ONE TV + CNEWS PRIME + EUROPE 1 TV + AES TV HD + MAISHA MAGIC BONGO + NATIONAL GEOGRAPHIC ENG + STUDIO UNIVERSAL SSM TV MCR TV - OMEGA TV + SUPERSPORT ACTION AFRICANEWS E-TELEVISION ESPACE TV @@ -278,12 +290,11 @@ TREK J-ONE BANTAMBA TV - TRACE MZIKI CNBC AFRICA WALF TV LTM MEDI1 TV - CH1 + CNEWS PRIME IVOIRE TV Music UNIVERS TV MIRACLE TV+ @@ -313,7 +324,7 @@ MUSEUM TV CANAL 2 MOVIES EMCI - CH2 + EUROPE 1 TV A+ IVOIRE Antenne VISION 4 RCA AREWA 24 @@ -331,13 +342,11 @@ TM1 TOUTE L HISTOIRE PSTV - FARIN WATA KC2 TV1 TV O FLASH TV ISANGO STAR TV - GENESIS TV BTN TV CARTOON NETWORK Africa SA TNT Africa @@ -352,7 +361,7 @@ LCA RENOUVEAU TV RTDS - E! ENG + BRAVO ENG TELEMUNDO AFRICA MAGIC EPIC ZEE WORLD @@ -361,7 +370,7 @@ AFRICA MAGIC SHOWCASE MNET MOVIES 3 MNET MOVIES 4 - DISCOVER CHANNEL ENG + DISCOVERY CHANNEL ENG SS EPL SS LA LIGA CANAL 3 BURKINA @@ -375,9 +384,7 @@ TVC DOUNIA BONFEREY - SUNNA TV TVGE - CAPITAL SANTE TV MIKUBA TV LUDIKIDS OI VIXEN diff --git a/sites/canalplus.com/canalplus.com_ch.channels.xml b/sites/canalplus.com/canalplus.com_ch.channels.xml index 2eba9db62..33a0ced81 100644 --- a/sites/canalplus.com/canalplus.com_ch.channels.xml +++ b/sites/canalplus.com/canalplus.com_ch.channels.xml @@ -3,7 +3,9 @@ CANAL+FOOT FRANCE 2 CNN + CHAINE: 45 BLOOMBERG TV + 2M MONDE CNBC TVE INTERNACIONAL TEST05 @@ -29,21 +31,20 @@ CANAL+SPORT CANAL+CINEMA.S TEST04 + TV7 TUNISIE AL JAZEERA ARABIC ARIRANG TV CANAL+KIDS 8 MONT-BLANC MEZZO LIVE PLANETE+ - CHAINE JEUNESSE 2 - CHAINE JEUNESSE 1 + FRANCE 24 ARABE + CGTN DOCUMENTARY CHAINE EVENEMENT - CHAINE DECOUVERTE 2 TEVA PARIS PREMIERE W9 CANAL+ - CHAINE DECOUVERTE 1 FRANCE 24 FRANCE 24 ENG TF1 @@ -61,19 +62,20 @@ CINE+ EMOTION CINE+ FRISSON EUROSPORT 2 - CHERIE 25 - TPMP + RMC LIFE L'EQUIPE MTV CNEWS CANAL+SERIES J-ONE PARAMOUNT NETWORK - CANAL 24 HORAS + 24H CARTOON NETWORK ANIMAUX ACTION RTL9 + ALGERIE 3 + CANAL ALGERIE CSTAR BEIN SPORTS 3 NICKTOONS @@ -81,12 +83,12 @@ 6TER CANAL J TF1 SERIES FILMS + NOLLYWOOD TV BOOMERANG CINE+ CLASSIC CINE+ FESTIVAL CINE+ FAMILY COMEDIE+ - CHAINE JEUNESSE 3 DORCEL TV DORCEL XXX EQUIDIA @@ -165,17 +167,18 @@ MUSEUM NICKELODEON+1 CHASSE ET PECHE + CHAINE: 684 POLAR+ NOVELAS TV WARNER TV EURONEWS ALL CANAL+ (CH) - CSTAR HITS FRANCE + EUROPE 2 POP TV + CHAINE: 724 EVENEMENT SPORT 4K UHD CANAL+ UHD RMC SPORT 1 RMC SPORT 2 - CL4 TEST14 CANAL 9 RTS 1 @@ -190,7 +193,6 @@ SRF 2 3 SAT ARD DAS ERSTE - RAI UNO (CH) ORF 1 TRACE LATINA COMEDY CENTRAL @@ -201,8 +203,10 @@ CANAL+ CINEMA.S (CH) OCS (CH) CINE+ FRISSON (CH) - TPMP (CH) CSTAR (CH) + A+ + A+ IVOIRE + NOLLYWOOD TV EPIC EURONEWS ITALIE EVENEMENT SPORT UHD HDR CANAL+ SPORT (CH) @@ -218,24 +222,24 @@ F3 PICARDIE F3 FRANCHE COMTE F3 AQUITAINE - F3 BNORMANDIE + F3 NORMANDIE B F3 AUVERGNE F3 BOURGOGNE F3 ALPES - F3 NORD PDC + F3 NORD F3 LIMOUSIN F3 RHONE ALPES - F3 PROV ALPES - F3 LANGUEDOCROU + F3 PROVENCE ALPES + F3 LANGUEDOCROUS F3 LORRAINE F3 PAYS DE LA LOIRE F3 COTE D'AZUR F3 CENTRE F3 PARIS IDF - F3 POITOUCHAR + F3 POITOU CHARENT F3 CHAMP ARDENNE F3 BRETAGNE - F3 HNORMANDIE + F3 NORMANDIE H F3 ALSACE F3 MIDI PYRENEES F3 CORSEVIASTELLA @@ -245,7 +249,8 @@ CHAINE : 973 CHAINE : 974 CHAINE : 975 - NOA + F3 NOA + CANAL+ MODE EVENT CANAL+FOOT CANAL+SPORT360 CANAL+SPORT 360 (CH) @@ -335,10 +340,32 @@ T18 NOVO19 CINE+ FESTIVAL (CH) - Chaine: 1172 - Chaine: 1173 - Chaine: 1174 - Chaine: 1179 - Chaine: 1180 + CNEWS PRIME + EUROPE 1 TV + LIGUE 1+ 3 + LIGUE 1+ 4 + LIGUE 1+ 5 + MIEUX + CHEVAL TV + SUNU YEUF + PULAAGU + MANDEKA + MABOKE TV + ECHOROUK NEWS + ECHOROUK TV + NESSMA TV + SAMIRA TV + EL HIWAR ETTOUNSI + SKYNEWS ARABIA + MBC 5 + MBC DRAMA + ROTANA CINEMA FR + ROTANA CINEMA + ROTANA KIDS + A+ BENIN + Chaine: 1199 + Chaine: 1200 + Chaine: 1201 + CGTN FRANCAIS ARTE ALLEMAND diff --git a/sites/canalplus.com/canalplus.com_ch_de.channels.xml b/sites/canalplus.com/canalplus.com_ch_de.channels.xml new file mode 100644 index 000000000..b2290a265 --- /dev/null +++ b/sites/canalplus.com/canalplus.com_ch_de.channels.xml @@ -0,0 +1,22 @@ + + + TV5MONDEEurope + ArteHD + DasErsteHD + HistoryChannelHD + NATIONAL GEOGRAPHIC WILD + CrimeInvestigation + 3satHD + ORFEinsHD + SPORT DIGITAL FUSSBALL + 13thStreetHD + SyfyHD + KinoweltTV + Euronews + UniversalTVHD + NationalGeographicHD + SPORT DIGITAL +1 + CANAL+ PREMIER LEAGUE + CANAL+ SPORT EVENT 1 + CANAL+ SPORT EVENT 2 + diff --git a/sites/canalplus.com/canalplus.com_ci.channels.xml b/sites/canalplus.com/canalplus.com_ci.channels.xml index d59bebda3..ee9cfa3ec 100644 --- a/sites/canalplus.com/canalplus.com_ci.channels.xml +++ b/sites/canalplus.com/canalplus.com_ci.channels.xml @@ -22,7 +22,6 @@ BOSOLO TV RTCE MALAIKA TV - HK6 HERITAGE TV E! Bukedde TV @@ -35,8 +34,6 @@ France 2 INT MANGAS RTB ZENITH - HOPE TV - RTNK MEZZO HOREB TV MTV France @@ -55,13 +52,12 @@ AFRIKINFO TV EVANGILE TV REFLET TV + TRACE CHRISTMAS TOUBA TV TELEMUSIK SENEGAL MOURCHID TV - TELE-ECOLE AL MOURIDIYYAH TV MALIKIA TV - CANAL EDUCATION FULBE TF1 KAYES TV @@ -69,6 +65,7 @@ TMC SEGOU TV SUNNA TV SAVANA + CANAL+ CAN GO TV HUSTLER HD TROPIC TV @@ -80,11 +77,9 @@ GALAXIE TELE FRANCE 24 BALAFON TV - TAMBARIN HAUSA TV DASH TV BETV HTV BURUNDI - TPMP RTB 2STV ISIBO TV @@ -121,8 +116,8 @@ TELE CONGO BENIN TV HD RTNC + CANAL+ CAN IVOIRE PRIVATE TV - WILDEARTH TPT+ TRACE AFRICA AFRIQUE VOIR+ @@ -147,7 +142,6 @@ M7 RTB 3 TV AL HOUDA - JES TV SUNNA TV ZARMA TAURARUWA FOR YOU TV @@ -155,7 +149,6 @@ TRACE MBOA SUN+ TV TV+ AFRIQUE - LPC NOLLYWOOD TV RTI2 TV TOGO @@ -170,18 +163,18 @@ CONGO 26 ISHUSHO TV MRTV - SHIF TV + CHIF TV GC7 GC2 GC6 ESPERANCE TV BUJA TV AL JAZEERA ENG - BET ENG + BET (ENG) UNIVERSAL GC1 SHADOW TV - CANAL+ ELLES + C+ MAGIC PARAMOUNT NETWORK SS FOOTBALL PLUS HD SS FOOTBALL HD @@ -206,7 +199,6 @@ BBLACK AFRICA TELE FONTAINE VIE CNN - TLC CARTOON NETWORK CARTOONITO BOOMERANG @@ -217,11 +209,9 @@ RTB 3 dupli TVCA RTB dupli - TOZALI TV LUMEN CHRISTI PRC JESUS 24 TV - SUNNA TV CH3 CH4 PARLEMENT TV @@ -233,17 +223,30 @@ BCN TV BRIK TV AL NASSR + BENIN TV ALAFIA + ACTIVATION NETFLIX + DNTV + AFRICA MAGIC HAUSA + AFRICA MAGIC YORUBA + MAISHA MAGIC EAST + MAISHA MAGIC PLUS + TEST AFRIQUE + MIEUX + EUROPE 2 POP TV GULLI AFRICA NOVELAS TV + TRACE IVOIRE PACIS TV MY MEDIA PRIME SCIENCE ET VIE TV ENGLISH CLUB TV + ZEE ALWAN FASHION AFRICA TV SEN TV ASONGA TV DIGITAL CONGO TELE 50 + SS WWE DRTV TV MAURITANIE IMPACT TV @@ -252,15 +255,24 @@ BUSINESS 24 CANAL+ SPORT 4 CANAL+ SPORT 5 + VOIR+ RDC ZEE MAGIC ORTM2 EVASION TV RTD + GOLF+ HD + LOVE NATURE CANAL+ FAMILY OUEST ONE TV + CNEWS PRIME + EUROPE 1 TV + AES TV HD + MAISHA MAGIC BONGO + NATIONAL GEOGRAPHIC ENG + STUDIO UNIVERSAL SSM TV MCR TV - OMEGA TV + SUPERSPORT ACTION AFRICANEWS E-TELEVISION ESPACE TV @@ -278,12 +290,11 @@ TREK J-ONE BANTAMBA TV - TRACE MZIKI CNBC AFRICA WALF TV LTM MEDI1 TV - CH1 + CNEWS PRIME IVOIRE TV Music UNIVERS TV MIRACLE TV+ @@ -313,7 +324,7 @@ MUSEUM TV CANAL 2 MOVIES EMCI - CH2 + EUROPE 1 TV A+ IVOIRE Antenne VISION 4 RCA AREWA 24 @@ -331,13 +342,11 @@ TM1 TOUTE L HISTOIRE PSTV - FARIN WATA KC2 TV1 TV O FLASH TV ISANGO STAR TV - GENESIS TV BTN TV CARTOON NETWORK Africa SA TNT Africa @@ -352,7 +361,7 @@ LCA RENOUVEAU TV RTDS - E! ENG + BRAVO ENG TELEMUNDO AFRICA MAGIC EPIC ZEE WORLD @@ -361,7 +370,7 @@ AFRICA MAGIC SHOWCASE MNET MOVIES 3 MNET MOVIES 4 - DISCOVER CHANNEL ENG + DISCOVERY CHANNEL ENG SS EPL SS LA LIGA CANAL 3 BURKINA @@ -375,9 +384,7 @@ TVC DOUNIA BONFEREY - SUNNA TV TVGE - CAPITAL SANTE TV MIKUBA TV LUDIKIDS OI VIXEN diff --git a/sites/canalplus.com/canalplus.com_cm.channels.xml b/sites/canalplus.com/canalplus.com_cm.channels.xml index f63298c89..333fd0738 100644 --- a/sites/canalplus.com/canalplus.com_cm.channels.xml +++ b/sites/canalplus.com/canalplus.com_cm.channels.xml @@ -22,7 +22,6 @@ BOSOLO TV RTCE MALAIKA TV - HK6 HERITAGE TV E! Bukedde TV @@ -35,8 +34,6 @@ France 2 INT MANGAS RTB ZENITH - HOPE TV - RTNK MEZZO HOREB TV MTV France @@ -55,13 +52,12 @@ AFRIKINFO TV EVANGILE TV REFLET TV + TRACE CHRISTMAS TOUBA TV TELEMUSIK SENEGAL MOURCHID TV - TELE-ECOLE AL MOURIDIYYAH TV MALIKIA TV - CANAL EDUCATION FULBE TF1 KAYES TV @@ -69,6 +65,7 @@ TMC SEGOU TV SUNNA TV SAVANA + CANAL+ CAN GO TV HUSTLER HD TROPIC TV @@ -80,11 +77,9 @@ GALAXIE TELE FRANCE 24 BALAFON TV - TAMBARIN HAUSA TV DASH TV BETV HTV BURUNDI - TPMP RTB 2STV ISIBO TV @@ -121,8 +116,8 @@ TELE CONGO BENIN TV HD RTNC + CANAL+ CAN IVOIRE PRIVATE TV - WILDEARTH TPT+ TRACE AFRICA AFRIQUE VOIR+ @@ -147,7 +142,6 @@ M7 RTB 3 TV AL HOUDA - JES TV SUNNA TV ZARMA TAURARUWA FOR YOU TV @@ -155,7 +149,6 @@ TRACE MBOA SUN+ TV TV+ AFRIQUE - LPC NOLLYWOOD TV RTI2 TV TOGO @@ -170,18 +163,18 @@ CONGO 26 ISHUSHO TV MRTV - SHIF TV + CHIF TV GC7 GC2 GC6 ESPERANCE TV BUJA TV AL JAZEERA ENG - BET ENG + BET (ENG) UNIVERSAL GC1 SHADOW TV - CANAL+ ELLES + C+ MAGIC PARAMOUNT NETWORK SS FOOTBALL PLUS HD SS FOOTBALL HD @@ -206,7 +199,6 @@ BBLACK AFRICA TELE FONTAINE VIE CNN - TLC CARTOON NETWORK CARTOONITO BOOMERANG @@ -217,11 +209,9 @@ RTB 3 dupli TVCA RTB dupli - TOZALI TV LUMEN CHRISTI PRC JESUS 24 TV - SUNNA TV CH3 CH4 PARLEMENT TV @@ -233,17 +223,30 @@ BCN TV BRIK TV AL NASSR + BENIN TV ALAFIA + ACTIVATION NETFLIX + DNTV + AFRICA MAGIC HAUSA + AFRICA MAGIC YORUBA + MAISHA MAGIC EAST + MAISHA MAGIC PLUS + TEST AFRIQUE + MIEUX + EUROPE 2 POP TV GULLI AFRICA NOVELAS TV + TRACE IVOIRE PACIS TV MY MEDIA PRIME SCIENCE ET VIE TV ENGLISH CLUB TV + ZEE ALWAN FASHION AFRICA TV SEN TV ASONGA TV DIGITAL CONGO TELE 50 + SS WWE DRTV TV MAURITANIE IMPACT TV @@ -252,15 +255,24 @@ BUSINESS 24 CANAL+ SPORT 4 CANAL+ SPORT 5 + VOIR+ RDC ZEE MAGIC ORTM2 EVASION TV RTD + GOLF+ HD + LOVE NATURE CANAL+ FAMILY OUEST ONE TV + CNEWS PRIME + EUROPE 1 TV + AES TV HD + MAISHA MAGIC BONGO + NATIONAL GEOGRAPHIC ENG + STUDIO UNIVERSAL SSM TV MCR TV - OMEGA TV + SUPERSPORT ACTION AFRICANEWS E-TELEVISION ESPACE TV @@ -278,12 +290,11 @@ TREK J-ONE BANTAMBA TV - TRACE MZIKI CNBC AFRICA WALF TV LTM MEDI1 TV - CH1 + CNEWS PRIME IVOIRE TV Music UNIVERS TV MIRACLE TV+ @@ -313,7 +324,7 @@ MUSEUM TV CANAL 2 MOVIES EMCI - CH2 + EUROPE 1 TV A+ IVOIRE Antenne VISION 4 RCA AREWA 24 @@ -331,13 +342,11 @@ TM1 TOUTE L HISTOIRE PSTV - FARIN WATA KC2 TV1 TV O FLASH TV ISANGO STAR TV - GENESIS TV BTN TV CARTOON NETWORK Africa SA TNT Africa @@ -352,7 +361,7 @@ LCA RENOUVEAU TV RTDS - E! ENG + BRAVO ENG TELEMUNDO AFRICA MAGIC EPIC ZEE WORLD @@ -361,7 +370,7 @@ AFRICA MAGIC SHOWCASE MNET MOVIES 3 MNET MOVIES 4 - DISCOVER CHANNEL ENG + DISCOVERY CHANNEL ENG SS EPL SS LA LIGA CANAL 3 BURKINA @@ -375,9 +384,7 @@ TVC DOUNIA BONFEREY - SUNNA TV TVGE - CAPITAL SANTE TV MIKUBA TV LUDIKIDS OI VIXEN diff --git a/sites/canalplus.com/canalplus.com_cv.channels.xml b/sites/canalplus.com/canalplus.com_cv.channels.xml index 62ce36731..865f63dbf 100644 --- a/sites/canalplus.com/canalplus.com_cv.channels.xml +++ b/sites/canalplus.com/canalplus.com_cv.channels.xml @@ -22,7 +22,6 @@ BOSOLO TV RTCE MALAIKA TV - HK6 HERITAGE TV E! Bukedde TV @@ -35,8 +34,6 @@ France 2 INT MANGAS RTB ZENITH - HOPE TV - RTNK MEZZO HOREB TV MTV France @@ -55,13 +52,12 @@ AFRIKINFO TV EVANGILE TV REFLET TV + TRACE CHRISTMAS TOUBA TV TELEMUSIK SENEGAL MOURCHID TV - TELE-ECOLE AL MOURIDIYYAH TV MALIKIA TV - CANAL EDUCATION FULBE TF1 KAYES TV @@ -69,6 +65,7 @@ TMC SEGOU TV SUNNA TV SAVANA + CANAL+ CAN GO TV HUSTLER HD TROPIC TV @@ -80,11 +77,9 @@ GALAXIE TELE FRANCE 24 BALAFON TV - TAMBARIN HAUSA TV DASH TV BETV HTV BURUNDI - TPMP RTB 2STV ISIBO TV @@ -121,8 +116,8 @@ TELE CONGO BENIN TV HD RTNC + CANAL+ CAN IVOIRE PRIVATE TV - WILDEARTH TPT+ TRACE AFRICA AFRIQUE VOIR+ @@ -147,7 +142,6 @@ M7 RTB 3 TV AL HOUDA - JES TV SUNNA TV ZARMA TAURARUWA FOR YOU TV @@ -155,7 +149,6 @@ TRACE MBOA SUN+ TV TV+ AFRIQUE - LPC NOLLYWOOD TV RTI2 TV TOGO @@ -170,18 +163,18 @@ CONGO 26 ISHUSHO TV MRTV - SHIF TV + CHIF TV GC7 GC2 GC6 ESPERANCE TV BUJA TV AL JAZEERA ENG - BET ENG + BET (ENG) UNIVERSAL GC1 SHADOW TV - CANAL+ ELLES + C+ MAGIC PARAMOUNT NETWORK SS FOOTBALL PLUS HD SS FOOTBALL HD @@ -206,7 +199,6 @@ BBLACK AFRICA TELE FONTAINE VIE CNN - TLC CARTOON NETWORK CARTOONITO BOOMERANG @@ -217,11 +209,9 @@ RTB 3 dupli TVCA RTB dupli - TOZALI TV LUMEN CHRISTI PRC JESUS 24 TV - SUNNA TV CH3 CH4 PARLEMENT TV @@ -233,17 +223,30 @@ BCN TV BRIK TV AL NASSR + BENIN TV ALAFIA + ACTIVATION NETFLIX + DNTV + AFRICA MAGIC HAUSA + AFRICA MAGIC YORUBA + MAISHA MAGIC EAST + MAISHA MAGIC PLUS + TEST AFRIQUE + MIEUX + EUROPE 2 POP TV GULLI AFRICA NOVELAS TV + TRACE IVOIRE PACIS TV MY MEDIA PRIME SCIENCE ET VIE TV ENGLISH CLUB TV + ZEE ALWAN FASHION AFRICA TV SEN TV ASONGA TV DIGITAL CONGO TELE 50 + SS WWE DRTV TV MAURITANIE IMPACT TV @@ -252,15 +255,24 @@ BUSINESS 24 CANAL+ SPORT 4 CANAL+ SPORT 5 + VOIR+ RDC ZEE MAGIC ORTM2 EVASION TV RTD + GOLF+ HD + LOVE NATURE CANAL+ FAMILY OUEST ONE TV + CNEWS PRIME + EUROPE 1 TV + AES TV HD + MAISHA MAGIC BONGO + NATIONAL GEOGRAPHIC ENG + STUDIO UNIVERSAL SSM TV MCR TV - OMEGA TV + SUPERSPORT ACTION AFRICANEWS E-TELEVISION ESPACE TV @@ -278,12 +290,11 @@ TREK J-ONE BANTAMBA TV - TRACE MZIKI CNBC AFRICA WALF TV LTM MEDI1 TV - CH1 + CNEWS PRIME IVOIRE TV Music UNIVERS TV MIRACLE TV+ @@ -313,7 +324,7 @@ MUSEUM TV CANAL 2 MOVIES EMCI - CH2 + EUROPE 1 TV A+ IVOIRE Antenne VISION 4 RCA AREWA 24 @@ -331,13 +342,11 @@ TM1 TOUTE L HISTOIRE PSTV - FARIN WATA KC2 TV1 TV O FLASH TV ISANGO STAR TV - GENESIS TV BTN TV CARTOON NETWORK Africa SA TNT Africa @@ -352,7 +361,7 @@ LCA RENOUVEAU TV RTDS - E! ENG + BRAVO ENG TELEMUNDO AFRICA MAGIC EPIC ZEE WORLD @@ -361,7 +370,7 @@ AFRICA MAGIC SHOWCASE MNET MOVIES 3 MNET MOVIES 4 - DISCOVER CHANNEL ENG + DISCOVERY CHANNEL ENG SS EPL SS LA LIGA CANAL 3 BURKINA @@ -375,9 +384,7 @@ TVC DOUNIA BONFEREY - SUNNA TV TVGE - CAPITAL SANTE TV MIKUBA TV LUDIKIDS OI VIXEN diff --git a/sites/canalplus.com/canalplus.com_dj.channels.xml b/sites/canalplus.com/canalplus.com_dj.channels.xml index c27be5ef1..2d523a399 100644 --- a/sites/canalplus.com/canalplus.com_dj.channels.xml +++ b/sites/canalplus.com/canalplus.com_dj.channels.xml @@ -22,7 +22,6 @@ BOSOLO TV RTCE MALAIKA TV - HK6 HERITAGE TV E! Bukedde TV @@ -35,8 +34,6 @@ France 2 INT MANGAS RTB ZENITH - HOPE TV - RTNK MEZZO HOREB TV MTV France @@ -55,13 +52,12 @@ AFRIKINFO TV EVANGILE TV REFLET TV + TRACE CHRISTMAS TOUBA TV TELEMUSIK SENEGAL MOURCHID TV - TELE-ECOLE AL MOURIDIYYAH TV MALIKIA TV - CANAL EDUCATION FULBE TF1 KAYES TV @@ -69,6 +65,7 @@ TMC SEGOU TV SUNNA TV SAVANA + CANAL+ CAN GO TV HUSTLER HD TROPIC TV @@ -80,11 +77,9 @@ GALAXIE TELE FRANCE 24 BALAFON TV - TAMBARIN HAUSA TV DASH TV BETV HTV BURUNDI - TPMP RTB 2STV ISIBO TV @@ -121,8 +116,8 @@ TELE CONGO BENIN TV HD RTNC + CANAL+ CAN IVOIRE PRIVATE TV - WILDEARTH TPT+ TRACE AFRICA AFRIQUE VOIR+ @@ -147,7 +142,6 @@ M7 RTB 3 TV AL HOUDA - JES TV SUNNA TV ZARMA TAURARUWA FOR YOU TV @@ -155,7 +149,6 @@ TRACE MBOA SUN+ TV TV+ AFRIQUE - LPC NOLLYWOOD TV RTI2 TV TOGO @@ -170,18 +163,18 @@ CONGO 26 ISHUSHO TV MRTV - SHIF TV + CHIF TV GC7 GC2 GC6 ESPERANCE TV BUJA TV AL JAZEERA ENG - BET ENG + BET (ENG) UNIVERSAL GC1 SHADOW TV - CANAL+ ELLES + C+ MAGIC PARAMOUNT NETWORK SS FOOTBALL PLUS HD SS FOOTBALL HD @@ -206,7 +199,6 @@ BBLACK AFRICA TELE FONTAINE VIE CNN - TLC CARTOON NETWORK CARTOONITO BOOMERANG @@ -217,11 +209,9 @@ RTB 3 dupli TVCA RTB dupli - TOZALI TV LUMEN CHRISTI PRC JESUS 24 TV - SUNNA TV CH3 CH4 PARLEMENT TV @@ -233,17 +223,30 @@ BCN TV BRIK TV AL NASSR + BENIN TV ALAFIA + ACTIVATION NETFLIX + DNTV + AFRICA MAGIC HAUSA + AFRICA MAGIC YORUBA + MAISHA MAGIC EAST + MAISHA MAGIC PLUS + TEST AFRIQUE + MIEUX + EUROPE 2 POP TV GULLI AFRICA NOVELAS TV + TRACE IVOIRE PACIS TV MY MEDIA PRIME SCIENCE ET VIE TV ENGLISH CLUB TV + ZEE ALWAN FASHION AFRICA TV SEN TV ASONGA TV DIGITAL CONGO TELE 50 + SS WWE DRTV TV MAURITANIE IMPACT TV @@ -252,15 +255,24 @@ BUSINESS 24 CANAL+ SPORT 4 CANAL+ SPORT 5 + VOIR+ RDC ZEE MAGIC ORTM2 EVASION TV RTD + GOLF+ HD + LOVE NATURE CANAL+ FAMILY OUEST ONE TV + CNEWS PRIME + EUROPE 1 TV + AES TV HD + MAISHA MAGIC BONGO + NATIONAL GEOGRAPHIC ENG + STUDIO UNIVERSAL SSM TV MCR TV - OMEGA TV + SUPERSPORT ACTION AFRICANEWS E-TELEVISION ESPACE TV @@ -278,12 +290,11 @@ TREK J-ONE BANTAMBA TV - TRACE MZIKI CNBC AFRICA WALF TV LTM MEDI1 TV - CH1 + CNEWS PRIME IVOIRE TV Music UNIVERS TV MIRACLE TV+ @@ -313,7 +324,7 @@ MUSEUM TV CANAL 2 MOVIES EMCI - CH2 + EUROPE 1 TV A+ IVOIRE Antenne VISION 4 RCA AREWA 24 @@ -331,13 +342,11 @@ TM1 TOUTE L HISTOIRE PSTV - FARIN WATA KC2 TV1 TV O FLASH TV ISANGO STAR TV - GENESIS TV BTN TV CARTOON NETWORK Africa SA TNT Africa @@ -352,7 +361,7 @@ LCA RENOUVEAU TV RTDS - E! ENG + BRAVO ENG TELEMUNDO AFRICA MAGIC EPIC ZEE WORLD @@ -361,7 +370,7 @@ AFRICA MAGIC SHOWCASE MNET MOVIES 3 MNET MOVIES 4 - DISCOVER CHANNEL ENG + DISCOVERY CHANNEL ENG SS EPL SS LA LIGA CANAL 3 BURKINA @@ -375,9 +384,7 @@ TVC DOUNIA BONFEREY - SUNNA TV TVGE - CAPITAL SANTE TV MIKUBA TV LUDIKIDS OI VIXEN diff --git a/sites/canalplus.com/canalplus.com_et.channels.xml b/sites/canalplus.com/canalplus.com_et.channels.xml new file mode 100644 index 000000000..6c2dc476e --- /dev/null +++ b/sites/canalplus.com/canalplus.com_et.channels.xml @@ -0,0 +1,125 @@ + + + MCM TOP + CANAL+ DHANGAA HD + CANAL+ JAAMBOO HD + CANAL+ XOBBEE HD + GAMETOON + TV5 MONDE + PRIME MEDIA + AFAR TV + MARSIL TV + GMM TV + CATHOLIC TV ETHIOPIA + FRANCE 24 FR + AFRICA 24 ENGLISH + ARTS TV + WOLAITA TV + HORN CABLE TV + YA TV + MINBER TV + CANAL+ MENU + ABBAY TV + INPLUS + NOLLYWOOD TV + C+DISKOOVER + MTV HITS + NESIHA + BLOOMBERG TELEVISION + BBC NEWS + ENGLISH CLUB + CARTOON NETWORK + MTV AFRICAN ENG + NBA TV + TNT AFRICA + FASHION AFRICA TV + CANAL+ SPORT HD + TV 9 ETHIO + OBN GAAMMEE + OBN + E! + A+ KIDS + CANAL+ CINEMA 1 HD + CANAL+ NOVELA HD + CANAL+ NOOVEELAA HD + CANAL+ JUMBO HD + CANAL+ DISCOVER HD + CANAL+ GEBETA HD + CANAL+ CINEMA 2 HD + C+ DIK DIK + ESAT + STAR LIFE + MOTORVISION + FIGHT BOX + BETHEL TV + MTV BASE + CARTOONITO + TOONAMI + DREAMWORKS + HISTORY + TRAVEL XP + HARARI TV + SKY NEWS INTL + CNN + EBS HD + FANA TV + KANA + ETV NEWS + ETV ENTERTAINEMENT + ETV LANGUAGES + WALTA TV + NAHOO TV + SRTV + ADDIS MEDIA NETWORK + ASHAM TV + BALAGERU TV + DIRE TV + AMHARA TV + KIX + OBS + SMN TV + EOTC + ELSHADDAI TV NETWORK + LUDIKIDS + FRANCE 24 ENG + DEUTSCHE WELLE + BLOOMBERG ORIGINALS + JIMJAM + FILMBOX + FILMBOX FAMILY + FILMBOX ACTION + CANAL+ ACTION HD + W-SPORT + WILD EARTH + CBS REALITY + TRACE MUZIKA + MEZZO LIVE + TRACE URBAN + AL JAZEERA + ETV YELIJOCH ALEM HD + NBC ETHIOPIA HD + AFRO NEWS HD + BISRAT TV + GOHE TV + HAGERIE TV + K TV + A PLUS TV + ETV AFAN OROMO + TIGRAI TV + OBN HORN OF AFRICA + TIGRAI BROADCASTING SERVICE + BENISHANGUL-GUMUZ TV + KAFFA TV + KEMBATA TV + HADIYA TV + EOTC MK + AFRICA TV 1 + JEILU TV + BILAL TV + HEWYET TV + JESUS TV + RTD + .. + ... + .... + diff --git a/sites/canalplus.com/canalplus.com_fr.channels.xml b/sites/canalplus.com/canalplus.com_fr.channels.xml index 60c686baf..33658819c 100644 --- a/sites/canalplus.com/canalplus.com_fr.channels.xml +++ b/sites/canalplus.com/canalplus.com_fr.channels.xml @@ -1,10 +1,11 @@ - CANAL+FOOT - FRANCE 2 + AL JAZEERA ENG + BBC NEWS + NHK WORLD-JAPAN CNN - BLOOMBERG TV - CNBC + CHAINE: 45 + 2M MONDE TVE INTERNACIONAL TEST05 TEST06 @@ -12,7 +13,6 @@ TEST08 TEST09 TEST10 - CANAL+SPORT360 TEST11 TEST12 TEST13 @@ -20,232 +20,70 @@ TEST16 TEST17 TEST03 - EUROSPORT 1 KTO RTL - USHUAIA TV - ARTE DISCOVERY CHANNEL - CANAL+SPORT CANAL+CINEMA.S TEST04 + TV7 TUNISIE AL JAZEERA ARABIC - ARIRANG TV - CANAL+KIDS 8 MONT-BLANC - MEZZO LIVE - PLANETE+ - CHAINE JEUNESSE 2 - CHAINE JEUNESSE 1 + FRANCE 24 ARABE + CGTN DOCUMENTARY CHAINE EVENEMENT - CHAINE DECOUVERTE 2 - TEVA - PARIS PREMIERE - W9 - CANAL+ - CHAINE DECOUVERTE 1 - FRANCE 24 - FRANCE 24 ENG - TF1 - M6 - OCS - EURONEWS - M6 MUSIC - SERIE CLUB - I24 NEWS A LA UNE TCM CINEMA - GOLF+ - BEIN SPORTS 1 - BEIN SPORTS 2 - CINE+ EMOTION - CINE+ FRISSON - EUROSPORT 2 - CHERIE 25 - TPMP - L'EQUIPE - MTV - CNEWS - CANAL+SERIES - J-ONE - PARAMOUNT NETWORK - CANAL 24 HORAS + RMC LIFE + 24H CARTOON NETWORK - ANIMAUX - ACTION - RTL9 - CSTAR - BEIN SPORTS 3 - NICKTOONS - TV5 MONDE - 6TER - CANAL J - TF1 SERIES FILMS + ALGERIE 3 + CANAL ALGERIE + NOLLYWOOD TV BOOMERANG - CINE+ CLASSIC - CINE+ FESTIVAL CINE+ FAMILY - COMEDIE+ - CHAINE JEUNESSE 3 - DORCEL TV - DORCEL XXX - EQUIDIA - FRANCE 3 - FRANCE 4 - FRANCE 5 EVENEMENT SPORT 4K HDR UHD - VIXEN - GULLI - HISTOIRE TV - INFOSPORT+ - LA CHAINE METEO - LCI - LCP - MCM - RFM TV - MEZZO - MULTISPORTS 1 - MULTISPORTS 2 - MULTISPORTS 3 - MULTISPORTS 4 - MULTISPORTS 5 - MULTISPORTS 6 - NRJ HITS - TFX - RMC STORY CANAL+ CANAL+SPORT - PINK X - PIWI+ - SEASONS - MELODY - TELETOON+ - TELETOON+1 - TIJI - TMC - TRACE URBAN - TV BREIZH - PLANETE+CRIME - PLANETE+AVENTURE - BBC NEWS - NICKELODEON - GAME ONE - NICKELODEON JUNIOR - RMC DECOUVERTE - BEIN SPORTS MAX 4 - BEIN SPORTS MAX 5 - BEIN SPORTS MAX 6 - BEIN SPORTS MAX 7 CANAL+ - BEIN SPORTS MAX 8 - BEIN SPORTS MAX 9 - BEIN SPORTS MAX 10 - AB1 - AUTOMOTO LA CHAINE - MANGAS - XXL - TOUTE L'HISTOIRE - BET - ASTROCENTER TV - BFM TV - EUROSPORT 360 1 - EUROSPORT 360 2 - EUROSPORT 360 3 - EUROSPORT 360 4 LL EVENT UHD - BFM BUSINESS - EUROSPORT 360 5 - EUROSPORT 360 6 - EUROSPORT 360 7 - EUROSPORT 360 8 - NHK WORLD-JAPAN - FRANCEINFO: - MAN X - AL JAZEERA ENG MUSEUM NICKELODEON+1 - CHASSE ET PECHE - POLAR+ - NOVELAS TV + CHAINE: 684 WARNER TV EURONEWS ALL CANAL+ (CH) - CSTAR HITS FRANCE + CHAINE: 724 EVENEMENT SPORT 4K UHD CANAL+ UHD - RMC SPORT 1 - RMC SPORT 2 - CL4 TEST14 CANAL 9 RTS 1 RTS 2 - CANAL ALPHA NE - LA TELE - LEMAN BLEU - TELEBIELINGUE RSI 1 RSI 2 - SRF 1 SRF 2 3 SAT - ARD DAS ERSTE - RAI UNO (CH) - ORF 1 - TRACE LATINA - COMEDY CENTRAL - OLYMPIA TV - CANAL+PREMIER LEAGUE - MGG TV CANAL+ (CH) CANAL+ CINEMA.S (CH) OCS (CH) CINE+ FRISSON (CH) - TPMP (CH) CSTAR (CH) + A+ + A+ IVOIRE + NOLLYWOOD TV EPIC EURONEWS ITALIE EVENEMENT SPORT UHD HDR CANAL+ SPORT (CH) CANAL+ UHD (CH) TEST01 TEST02 - CARAC1 - CARAC3 - CARAC2 - BLUE ZOOM - CANAL+DOCS - CANAL+GRAND ECRAN - F3 PICARDIE - F3 FRANCHE COMTE - F3 AQUITAINE - F3 BNORMANDIE - F3 AUVERGNE - F3 BOURGOGNE - F3 ALPES - F3 NORD PDC - F3 LIMOUSIN - F3 RHONE ALPES - F3 PROV ALPES - F3 LANGUEDOCROU - F3 LORRAINE - F3 PAYS DE LA LOIRE - F3 COTE D'AZUR - F3 CENTRE - F3 PARIS IDF - F3 POITOUCHAR - F3 CHAMP ARDENNE - F3 BRETAGNE - F3 HNORMANDIE - F3 ALSACE - F3 MIDI PYRENEES - F3 CORSEVIASTELLA CHAINE : 970 CHAINE : 971 CHAINE : 972 CHAINE : 973 CHAINE : 974 CHAINE : 975 - NOA + CANAL+ MODE EVENT CANAL+FOOT CANAL+SPORT360 CANAL+SPORT 360 (CH) @@ -335,10 +173,199 @@ T18 NOVO19 CINE+ FESTIVAL (CH) - Chaine: 1172 - Chaine: 1173 - Chaine: 1174 - Chaine: 1179 - Chaine: 1180 + CNEWS PRIME + EUROPE 1 TV + LIGUE 1+ 3 + LIGUE 1+ 4 + LIGUE 1+ 5 + MIEUX + CHEVAL TV + SUNU YEUF + PULAAGU + MANDEKA + MABOKE TV + ECHOROUK NEWS + ECHOROUK TV + NESSMA TV + SAMIRA TV + EL HIWAR ETTOUNSI + SKYNEWS ARABIA + MBC 5 + MBC DRAMA + ROTANA CINEMA FR + ROTANA CINEMA + ROTANA KIDS + A+ BENIN + Chaine: 1199 + Chaine: 1200 + Chaine: 1201 + CGTN FRANCAIS ARTE ALLEMAND + 6TER + AB1 + ACTION + ANIMAUX + ARIRANG TV + ARTE + ASTROCENTER TV + AUTOMOTO LA CHAINE + BEIN SPORTS 1 + BEIN SPORTS 2 + BEIN SPORTS 3 + BEIN SPORTS MAX 4 + BEIN SPORTS MAX 5 + BEIN SPORTS MAX 6 + BEIN SPORTS MAX 7 + BEIN SPORTS MAX 8 + BEIN SPORTS MAX 9 + BEIN SPORTS MAX 10 + BET + BFM BUSINESS + BFM TV + BLOOMBERG TV + BLUE ZOOM + CANAL ALPHA NE + CANAL J + CANAL+ + CANAL+DOCS + CANAL+FOOT + CANAL+GRAND ECRAN + CANAL+KIDS + CANAL+PREMIER LEAGUE + CANAL+SERIES + CANAL+SPORT360 + CANAL+SPORT + CHASSE ET PECHE + CINE+ CLASSIC + CINE+ FESTIVAL + CINE+ EMOTION + CINE+ FRISSON + OCS + CNBC + CNEWS + COMEDIE+ + COMEDY CENTRAL + CSTAR + EUROPE 2 POP TV + ARD DAS ERSTE + DORCEL TV + DORCEL XXX + EQUIDIA + EURONEWS + EUROSPORT 1 + EUROSPORT 2 + EUROSPORT 360 1 + EUROSPORT 360 2 + EUROSPORT 360 3 + EUROSPORT 360 4 + EUROSPORT 360 5 + EUROSPORT 360 6 + EUROSPORT 360 7 + EUROSPORT 360 8 + FRANCE 2 + F3 ALPES + F3 ALSACE + F3 AQUITAINE + F3 AUVERGNE + F3 NORMANDIE B + F3 BOURGOGNE + F3 BRETAGNE + F3 CENTRE + F3 CHAMP ARDENNE + F3 CORSEVIASTELLA + F3 COTE D'AZUR + F3 FRANCHE COMTE + F3 NORMANDIE H + F3 LANGUEDOCROUS + F3 LIMOUSIN + F3 LORRAINE + F3 MIDI PYRENEES + F3 NORD + F3 NOA + F3 PARIS IDF + F3 PAYS DE LA LOIRE + F3 PICARDIE + F3 POITOU CHARENT + F3 PROVENCE ALPES + F3 RHONE ALPES + FRANCE 3 + FRANCE 4 + FRANCE 5 + FRANCE 24 ENG + FRANCE 24 + FRANCEINFO: + GAME ONE + GOLF+ + GULLI + HISTOIRE TV + I24 NEWS + INFOSPORT+ + J-ONE + LA CHAINE METEO + LA TELE + LCI + LCP + LEMAN BLEU + L'EQUIPE + CARAC3 + M6 + M6 MUSIC + MANGAS + MAN X + MCM + MELODY + MEZZO + MEZZO LIVE + MGG TV + MTV + MULTISPORTS 1 + MULTISPORTS 2 + MULTISPORTS 3 + MULTISPORTS 4 + MULTISPORTS 5 + MULTISPORTS 6 + NICKELODEON + NICKELODEON JUNIOR + NICKTOONS + NOVELAS TV + NRJ HITS + OLYMPIA TV + CARAC2 + ORF 1 + PARAMOUNT NETWORK + PARIS PREMIERE + PINK X + PIWI+ + PLANETE+ + PLANETE+AVENTURE + PLANETE+CRIME + POLAR+ + RFM TV + RMC DECOUVERTE + RMC SPORT 1 + RMC SPORT 2 + RMC STORY + CARAC1 + RTL9 + SEASONS + SERIE CLUB + SRF 1 + TELEBIELINGUE + TELETOON+1 + TELETOON+ + TEVA + TF1 + TF1 SERIES FILMS + TFX + TIJI + TMC + TOUTE L'HISTOIRE + TRACE LATINA + TRACE URBAN + TV5 MONDE + TV BREIZH + USHUAIA TV + VIXEN + W9 + XXL diff --git a/sites/canalplus.com/canalplus.com_ga.channels.xml b/sites/canalplus.com/canalplus.com_ga.channels.xml index 09daf682e..60431bf8a 100644 --- a/sites/canalplus.com/canalplus.com_ga.channels.xml +++ b/sites/canalplus.com/canalplus.com_ga.channels.xml @@ -22,7 +22,6 @@ BOSOLO TV RTCE MALAIKA TV - HK6 HERITAGE TV E! Bukedde TV @@ -35,8 +34,6 @@ France 2 INT MANGAS RTB ZENITH - HOPE TV - RTNK MEZZO HOREB TV MTV France @@ -55,13 +52,12 @@ AFRIKINFO TV EVANGILE TV REFLET TV + TRACE CHRISTMAS TOUBA TV TELEMUSIK SENEGAL MOURCHID TV - TELE-ECOLE AL MOURIDIYYAH TV MALIKIA TV - CANAL EDUCATION FULBE TF1 KAYES TV @@ -69,6 +65,7 @@ TMC SEGOU TV SUNNA TV SAVANA + CANAL+ CAN GO TV HUSTLER HD TROPIC TV @@ -80,11 +77,9 @@ GALAXIE TELE FRANCE 24 BALAFON TV - TAMBARIN HAUSA TV DASH TV BETV HTV BURUNDI - TPMP RTB 2STV ISIBO TV @@ -121,8 +116,8 @@ TELE CONGO BENIN TV HD RTNC + CANAL+ CAN IVOIRE PRIVATE TV - WILDEARTH TPT+ TRACE AFRICA AFRIQUE VOIR+ @@ -147,7 +142,6 @@ M7 RTB 3 TV AL HOUDA - JES TV SUNNA TV ZARMA TAURARUWA FOR YOU TV @@ -155,7 +149,6 @@ TRACE MBOA SUN+ TV TV+ AFRIQUE - LPC NOLLYWOOD TV RTI2 TV TOGO @@ -170,18 +163,18 @@ CONGO 26 ISHUSHO TV MRTV - SHIF TV + CHIF TV GC7 GC2 GC6 ESPERANCE TV BUJA TV AL JAZEERA ENG - BET ENG + BET (ENG) UNIVERSAL GC1 SHADOW TV - CANAL+ ELLES + C+ MAGIC PARAMOUNT NETWORK SS FOOTBALL PLUS HD SS FOOTBALL HD @@ -206,7 +199,6 @@ BBLACK AFRICA TELE FONTAINE VIE CNN - TLC CARTOON NETWORK CARTOONITO BOOMERANG @@ -217,11 +209,9 @@ RTB 3 dupli TVCA RTB dupli - TOZALI TV LUMEN CHRISTI PRC JESUS 24 TV - SUNNA TV CH3 CH4 PARLEMENT TV @@ -233,17 +223,30 @@ BCN TV BRIK TV AL NASSR + BENIN TV ALAFIA + ACTIVATION NETFLIX + DNTV + AFRICA MAGIC HAUSA + AFRICA MAGIC YORUBA + MAISHA MAGIC EAST + MAISHA MAGIC PLUS + TEST AFRIQUE + MIEUX + EUROPE 2 POP TV GULLI AFRICA NOVELAS TV + TRACE IVOIRE PACIS TV MY MEDIA PRIME SCIENCE ET VIE TV ENGLISH CLUB TV + ZEE ALWAN FASHION AFRICA TV SEN TV ASONGA TV DIGITAL CONGO TELE 50 + SS WWE DRTV TV MAURITANIE IMPACT TV @@ -252,15 +255,24 @@ BUSINESS 24 CANAL+ SPORT 4 CANAL+ SPORT 5 + VOIR+ RDC ZEE MAGIC ORTM2 EVASION TV RTD + GOLF+ HD + LOVE NATURE CANAL+ FAMILY OUEST ONE TV + CNEWS PRIME + EUROPE 1 TV + AES TV HD + MAISHA MAGIC BONGO + NATIONAL GEOGRAPHIC ENG + STUDIO UNIVERSAL SSM TV MCR TV - OMEGA TV + SUPERSPORT ACTION AFRICANEWS E-TELEVISION ESPACE TV @@ -278,12 +290,11 @@ TREK J-ONE BANTAMBA TV - TRACE MZIKI CNBC AFRICA WALF TV LTM MEDI1 TV - CH1 + CNEWS PRIME IVOIRE TV Music UNIVERS TV MIRACLE TV+ @@ -313,7 +324,7 @@ MUSEUM TV CANAL 2 MOVIES EMCI - CH2 + EUROPE 1 TV A+ IVOIRE Antenne VISION 4 RCA AREWA 24 @@ -331,13 +342,11 @@ TM1 TOUTE L HISTOIRE PSTV - FARIN WATA KC2 TV1 TV O FLASH TV ISANGO STAR TV - GENESIS TV BTN TV CARTOON NETWORK Africa SA TNT Africa @@ -352,7 +361,7 @@ LCA RENOUVEAU TV RTDS - E! ENG + BRAVO ENG TELEMUNDO AFRICA MAGIC EPIC ZEE WORLD @@ -361,7 +370,7 @@ AFRICA MAGIC SHOWCASE MNET MOVIES 3 MNET MOVIES 4 - DISCOVER CHANNEL ENG + DISCOVERY CHANNEL ENG SS EPL SS LA LIGA CANAL 3 BURKINA @@ -375,9 +384,7 @@ TVC DOUNIA BONFEREY - SUNNA TV TVGE - CAPITAL SANTE TV MIKUBA TV LUDIKIDS OI VIXEN diff --git a/sites/canalplus.com/canalplus.com_gf.channels.xml b/sites/canalplus.com/canalplus.com_gf.channels.xml index cd650dd5a..d45e43789 100644 --- a/sites/canalplus.com/canalplus.com_gf.channels.xml +++ b/sites/canalplus.com/canalplus.com_gf.channels.xml @@ -10,34 +10,39 @@ PUNCH TV CANAL J CANAL+ HD - CANAL+ CINEMA(S) - DAZN 1 - DAZN 2 + CANAL+ CINEMA(S) HD + CNEWS PRIME + EUROPE 1 TV DAZN 3 DAZN 4 DAZN 5 CNN - CANAL+ SPORT HD + CANAL+SPORT HD EMCI - CINE+ FESTIVAL - CINE+ EMOTION - CINE+ FAMILY - CINE+ FRISSON HD + CINE+FESTIVAL + CINE+EMOTION + CINE+FAMILY + CINE+FRISSON HD OCS HD EVANGILE TV MANGAS + T18 COMEDIE+ + NOVO19 E! ENTERTAINMENT - EQUIDIA LIVE + EQUIDIA HD ESPN + MIEUX + EUROPE 2 POP TV EUROSPORT 1 HD EUROSPORT 2 HD + RADIO TELE ECLAIR FRANCE 3 FRANCE 5 CNEWS INFOSPORT+ LCI - LCP ASSEMBLEE NATIONALE + LCP L'EQUIPE M6 HD MTV France @@ -61,10 +66,9 @@ XXL FRANCE 24 BEIN SPORTS 1 HD - TPMP PIWI+ GAME ONE - USHUAÏA TV + USHUAIA TVHD W9 PLANETE+ CRIME GULLI @@ -78,7 +82,6 @@ FRANCE 2 FRANCE 4 KMT - NRJ 12 CSTAR NICKELODEON TV GLOBO @@ -96,25 +99,25 @@ HUSTLER TV Métropole CANAL+ SERIES HD - CINE + CLASSIC + CINE+CLASSIC BEIN SPORTS 3 HD - CANAL+ SPORT AYITI 1 - HAITI SPORT 2 + C+SPORT AYITI 1 HD + C+SPORT AYITI 2 HBO HBO Family HBO XTREME ENGLISH CLUB TV - CANAL+ KIDS HD + CANAL+KIDS HD GOLF+ A+ NOLLYWOOD TV france CANAL SONY TV CARAIBES - CHERIE 25 + RMC LIFE CARTOON NETWORK BOOMERANG - CANAL+ SPORT 360 - CANAL+ FOOT + CANAL+SPORT360 HD + CANAL+FOOT HD NOVELAS TV BBLACK CARIBBEAN BEIN SPORTS MAX 4 @@ -145,7 +148,7 @@ TELEMUNDO TOUTE L HISTOIRE OLYMPIA TV - CANAL+ PREMIER LEAGUE + CANAL+PREMIER LEAGUE EVENEMENT 4K ZITATA TV LUDIKIDS OI @@ -153,7 +156,7 @@ TELE SOLEIL GRAPHE TV NICKELODEON JR - STUDIOCANAL + STUDIOCANAL TV NATHAN+ TROTTERS TV FUSION TV @@ -161,11 +164,10 @@ BFM TV BFM BUSINESS RMC STORY - CANAL+ AYITI + CANAL+AYITI HD CANAL EVENEMENT CARA SPORT EN FRANCE - CANAL+ DOCS - TRAVEL XP + CANAL+DOCS CHEVAL TV MEZZO LIVE RMC DECOUVERTE diff --git a/sites/canalplus.com/canalplus.com_gh.channels.xml b/sites/canalplus.com/canalplus.com_gh.channels.xml index ac8e78f07..7dd4e4537 100644 --- a/sites/canalplus.com/canalplus.com_gh.channels.xml +++ b/sites/canalplus.com/canalplus.com_gh.channels.xml @@ -22,7 +22,6 @@ BOSOLO TV RTCE MALAIKA TV - HK6 HERITAGE TV E! Bukedde TV @@ -35,8 +34,6 @@ France 2 INT MANGAS RTB ZENITH - HOPE TV - RTNK MEZZO HOREB TV MTV France @@ -55,13 +52,12 @@ AFRIKINFO TV EVANGILE TV REFLET TV + TRACE CHRISTMAS TOUBA TV TELEMUSIK SENEGAL MOURCHID TV - TELE-ECOLE AL MOURIDIYYAH TV MALIKIA TV - CANAL EDUCATION FULBE TF1 KAYES TV @@ -69,6 +65,7 @@ TMC SEGOU TV SUNNA TV SAVANA + CANAL+ CAN GO TV HUSTLER HD TROPIC TV @@ -80,11 +77,9 @@ GALAXIE TELE FRANCE 24 BALAFON TV - TAMBARIN HAUSA TV DASH TV BETV HTV BURUNDI - TPMP RTB 2STV ISIBO TV @@ -121,8 +116,8 @@ TELE CONGO BENIN TV HD RTNC + CANAL+ CAN IVOIRE PRIVATE TV - WILDEARTH TPT+ TRACE AFRICA AFRIQUE VOIR+ @@ -147,7 +142,6 @@ M7 RTB 3 TV AL HOUDA - JES TV SUNNA TV ZARMA TAURARUWA FOR YOU TV @@ -155,7 +149,6 @@ TRACE MBOA SUN+ TV TV+ AFRIQUE - LPC NOLLYWOOD TV RTI2 TV TOGO @@ -170,18 +163,18 @@ CONGO 26 ISHUSHO TV MRTV - SHIF TV + CHIF TV GC7 GC2 GC6 ESPERANCE TV BUJA TV AL JAZEERA ENG - BET ENG + BET (ENG) UNIVERSAL GC1 SHADOW TV - CANAL+ ELLES + C+ MAGIC PARAMOUNT NETWORK SS FOOTBALL PLUS HD SS FOOTBALL HD @@ -206,7 +199,6 @@ BBLACK AFRICA TELE FONTAINE VIE CNN - TLC CARTOON NETWORK CARTOONITO BOOMERANG @@ -217,11 +209,9 @@ RTB 3 dupli TVCA RTB dupli - TOZALI TV LUMEN CHRISTI PRC JESUS 24 TV - SUNNA TV CH3 CH4 PARLEMENT TV @@ -233,17 +223,30 @@ BCN TV BRIK TV AL NASSR + BENIN TV ALAFIA + ACTIVATION NETFLIX + DNTV + AFRICA MAGIC HAUSA + AFRICA MAGIC YORUBA + MAISHA MAGIC EAST + MAISHA MAGIC PLUS + TEST AFRIQUE + MIEUX + EUROPE 2 POP TV GULLI AFRICA NOVELAS TV + TRACE IVOIRE PACIS TV MY MEDIA PRIME SCIENCE ET VIE TV ENGLISH CLUB TV + ZEE ALWAN FASHION AFRICA TV SEN TV ASONGA TV DIGITAL CONGO TELE 50 + SS WWE DRTV TV MAURITANIE IMPACT TV @@ -252,15 +255,24 @@ BUSINESS 24 CANAL+ SPORT 4 CANAL+ SPORT 5 + VOIR+ RDC ZEE MAGIC ORTM2 EVASION TV RTD + GOLF+ HD + LOVE NATURE CANAL+ FAMILY OUEST ONE TV + CNEWS PRIME + EUROPE 1 TV + AES TV HD + MAISHA MAGIC BONGO + NATIONAL GEOGRAPHIC ENG + STUDIO UNIVERSAL SSM TV MCR TV - OMEGA TV + SUPERSPORT ACTION AFRICANEWS E-TELEVISION ESPACE TV @@ -278,12 +290,11 @@ TREK J-ONE BANTAMBA TV - TRACE MZIKI CNBC AFRICA WALF TV LTM MEDI1 TV - CH1 + CNEWS PRIME IVOIRE TV Music UNIVERS TV MIRACLE TV+ @@ -313,7 +324,7 @@ MUSEUM TV CANAL 2 MOVIES EMCI - CH2 + EUROPE 1 TV A+ IVOIRE Antenne VISION 4 RCA AREWA 24 @@ -331,13 +342,11 @@ TM1 TOUTE L HISTOIRE PSTV - FARIN WATA KC2 TV1 TV O FLASH TV ISANGO STAR TV - GENESIS TV BTN TV CARTOON NETWORK Africa SA TNT Africa @@ -352,7 +361,7 @@ LCA RENOUVEAU TV RTDS - E! ENG + BRAVO ENG TELEMUNDO AFRICA MAGIC EPIC ZEE WORLD @@ -361,7 +370,7 @@ AFRICA MAGIC SHOWCASE MNET MOVIES 3 MNET MOVIES 4 - DISCOVER CHANNEL ENG + DISCOVERY CHANNEL ENG SS EPL SS LA LIGA CANAL 3 BURKINA @@ -375,9 +384,7 @@ TVC DOUNIA BONFEREY - SUNNA TV TVGE - CAPITAL SANTE TV MIKUBA TV LUDIKIDS OI VIXEN diff --git a/sites/canalplus.com/canalplus.com_gm.channels.xml b/sites/canalplus.com/canalplus.com_gm.channels.xml index 13dbd94f5..c92db80a6 100644 --- a/sites/canalplus.com/canalplus.com_gm.channels.xml +++ b/sites/canalplus.com/canalplus.com_gm.channels.xml @@ -22,7 +22,6 @@ BOSOLO TV RTCE MALAIKA TV - HK6 HERITAGE TV E! Bukedde TV @@ -35,8 +34,6 @@ France 2 INT MANGAS RTB ZENITH - HOPE TV - RTNK MEZZO HOREB TV MTV France @@ -55,13 +52,12 @@ AFRIKINFO TV EVANGILE TV REFLET TV + TRACE CHRISTMAS TOUBA TV TELEMUSIK SENEGAL MOURCHID TV - TELE-ECOLE AL MOURIDIYYAH TV MALIKIA TV - CANAL EDUCATION FULBE TF1 KAYES TV @@ -69,6 +65,7 @@ TMC SEGOU TV SUNNA TV SAVANA + CANAL+ CAN GO TV HUSTLER HD TROPIC TV @@ -80,11 +77,9 @@ GALAXIE TELE FRANCE 24 BALAFON TV - TAMBARIN HAUSA TV DASH TV BETV HTV BURUNDI - TPMP RTB 2STV ISIBO TV @@ -121,8 +116,8 @@ TELE CONGO BENIN TV HD RTNC + CANAL+ CAN IVOIRE PRIVATE TV - WILDEARTH TPT+ TRACE AFRICA AFRIQUE VOIR+ @@ -147,7 +142,6 @@ M7 RTB 3 TV AL HOUDA - JES TV SUNNA TV ZARMA TAURARUWA FOR YOU TV @@ -155,7 +149,6 @@ TRACE MBOA SUN+ TV TV+ AFRIQUE - LPC NOLLYWOOD TV RTI2 TV TOGO @@ -170,18 +163,18 @@ CONGO 26 ISHUSHO TV MRTV - SHIF TV + CHIF TV GC7 GC2 GC6 ESPERANCE TV BUJA TV AL JAZEERA ENG - BET ENG + BET (ENG) UNIVERSAL GC1 SHADOW TV - CANAL+ ELLES + C+ MAGIC PARAMOUNT NETWORK SS FOOTBALL PLUS HD SS FOOTBALL HD @@ -206,7 +199,6 @@ BBLACK AFRICA TELE FONTAINE VIE CNN - TLC CARTOON NETWORK CARTOONITO BOOMERANG @@ -217,11 +209,9 @@ RTB 3 dupli TVCA RTB dupli - TOZALI TV LUMEN CHRISTI PRC JESUS 24 TV - SUNNA TV CH3 CH4 PARLEMENT TV @@ -233,17 +223,30 @@ BCN TV BRIK TV AL NASSR + BENIN TV ALAFIA + ACTIVATION NETFLIX + DNTV + AFRICA MAGIC HAUSA + AFRICA MAGIC YORUBA + MAISHA MAGIC EAST + MAISHA MAGIC PLUS + TEST AFRIQUE + MIEUX + EUROPE 2 POP TV GULLI AFRICA NOVELAS TV + TRACE IVOIRE PACIS TV MY MEDIA PRIME SCIENCE ET VIE TV ENGLISH CLUB TV + ZEE ALWAN FASHION AFRICA TV SEN TV ASONGA TV DIGITAL CONGO TELE 50 + SS WWE DRTV TV MAURITANIE IMPACT TV @@ -252,15 +255,24 @@ BUSINESS 24 CANAL+ SPORT 4 CANAL+ SPORT 5 + VOIR+ RDC ZEE MAGIC ORTM2 EVASION TV RTD + GOLF+ HD + LOVE NATURE CANAL+ FAMILY OUEST ONE TV + CNEWS PRIME + EUROPE 1 TV + AES TV HD + MAISHA MAGIC BONGO + NATIONAL GEOGRAPHIC ENG + STUDIO UNIVERSAL SSM TV MCR TV - OMEGA TV + SUPERSPORT ACTION AFRICANEWS E-TELEVISION ESPACE TV @@ -278,12 +290,11 @@ TREK J-ONE BANTAMBA TV - TRACE MZIKI CNBC AFRICA WALF TV LTM MEDI1 TV - CH1 + CNEWS PRIME IVOIRE TV Music UNIVERS TV MIRACLE TV+ @@ -313,7 +324,7 @@ MUSEUM TV CANAL 2 MOVIES EMCI - CH2 + EUROPE 1 TV A+ IVOIRE Antenne VISION 4 RCA AREWA 24 @@ -331,13 +342,11 @@ TM1 TOUTE L HISTOIRE PSTV - FARIN WATA KC2 TV1 TV O FLASH TV ISANGO STAR TV - GENESIS TV BTN TV CARTOON NETWORK Africa SA TNT Africa @@ -352,7 +361,7 @@ LCA RENOUVEAU TV RTDS - E! ENG + BRAVO ENG TELEMUNDO AFRICA MAGIC EPIC ZEE WORLD @@ -361,7 +370,7 @@ AFRICA MAGIC SHOWCASE MNET MOVIES 3 MNET MOVIES 4 - DISCOVER CHANNEL ENG + DISCOVERY CHANNEL ENG SS EPL SS LA LIGA CANAL 3 BURKINA @@ -375,9 +384,7 @@ TVC DOUNIA BONFEREY - SUNNA TV TVGE - CAPITAL SANTE TV MIKUBA TV LUDIKIDS OI VIXEN diff --git a/sites/canalplus.com/canalplus.com_gn.channels.xml b/sites/canalplus.com/canalplus.com_gn.channels.xml index c1a45e448..cc6757c82 100644 --- a/sites/canalplus.com/canalplus.com_gn.channels.xml +++ b/sites/canalplus.com/canalplus.com_gn.channels.xml @@ -22,7 +22,6 @@ BOSOLO TV RTCE MALAIKA TV - HK6 HERITAGE TV E! Bukedde TV @@ -35,8 +34,6 @@ France 2 INT MANGAS RTB ZENITH - HOPE TV - RTNK MEZZO HOREB TV MTV France @@ -55,13 +52,12 @@ AFRIKINFO TV EVANGILE TV REFLET TV + TRACE CHRISTMAS TOUBA TV TELEMUSIK SENEGAL MOURCHID TV - TELE-ECOLE AL MOURIDIYYAH TV MALIKIA TV - CANAL EDUCATION FULBE TF1 KAYES TV @@ -69,6 +65,7 @@ TMC SEGOU TV SUNNA TV SAVANA + CANAL+ CAN GO TV HUSTLER HD TROPIC TV @@ -80,11 +77,9 @@ GALAXIE TELE FRANCE 24 BALAFON TV - TAMBARIN HAUSA TV DASH TV BETV HTV BURUNDI - TPMP RTB 2STV ISIBO TV @@ -121,8 +116,8 @@ TELE CONGO BENIN TV HD RTNC + CANAL+ CAN IVOIRE PRIVATE TV - WILDEARTH TPT+ TRACE AFRICA AFRIQUE VOIR+ @@ -147,7 +142,6 @@ M7 RTB 3 TV AL HOUDA - JES TV SUNNA TV ZARMA TAURARUWA FOR YOU TV @@ -155,7 +149,6 @@ TRACE MBOA SUN+ TV TV+ AFRIQUE - LPC NOLLYWOOD TV RTI2 TV TOGO @@ -170,18 +163,18 @@ CONGO 26 ISHUSHO TV MRTV - SHIF TV + CHIF TV GC7 GC2 GC6 ESPERANCE TV BUJA TV AL JAZEERA ENG - BET ENG + BET (ENG) UNIVERSAL GC1 SHADOW TV - CANAL+ ELLES + C+ MAGIC PARAMOUNT NETWORK SS FOOTBALL PLUS HD SS FOOTBALL HD @@ -206,7 +199,6 @@ BBLACK AFRICA TELE FONTAINE VIE CNN - TLC CARTOON NETWORK CARTOONITO BOOMERANG @@ -217,11 +209,9 @@ RTB 3 dupli TVCA RTB dupli - TOZALI TV LUMEN CHRISTI PRC JESUS 24 TV - SUNNA TV CH3 CH4 PARLEMENT TV @@ -233,17 +223,30 @@ BCN TV BRIK TV AL NASSR + BENIN TV ALAFIA + ACTIVATION NETFLIX + DNTV + AFRICA MAGIC HAUSA + AFRICA MAGIC YORUBA + MAISHA MAGIC EAST + MAISHA MAGIC PLUS + TEST AFRIQUE + MIEUX + EUROPE 2 POP TV GULLI AFRICA NOVELAS TV + TRACE IVOIRE PACIS TV MY MEDIA PRIME SCIENCE ET VIE TV ENGLISH CLUB TV + ZEE ALWAN FASHION AFRICA TV SEN TV ASONGA TV DIGITAL CONGO TELE 50 + SS WWE DRTV TV MAURITANIE IMPACT TV @@ -252,15 +255,24 @@ BUSINESS 24 CANAL+ SPORT 4 CANAL+ SPORT 5 + VOIR+ RDC ZEE MAGIC ORTM2 EVASION TV RTD + GOLF+ HD + LOVE NATURE CANAL+ FAMILY OUEST ONE TV + CNEWS PRIME + EUROPE 1 TV + AES TV HD + MAISHA MAGIC BONGO + NATIONAL GEOGRAPHIC ENG + STUDIO UNIVERSAL SSM TV MCR TV - OMEGA TV + SUPERSPORT ACTION AFRICANEWS E-TELEVISION ESPACE TV @@ -278,12 +290,11 @@ TREK J-ONE BANTAMBA TV - TRACE MZIKI CNBC AFRICA WALF TV LTM MEDI1 TV - CH1 + CNEWS PRIME IVOIRE TV Music UNIVERS TV MIRACLE TV+ @@ -313,7 +324,7 @@ MUSEUM TV CANAL 2 MOVIES EMCI - CH2 + EUROPE 1 TV A+ IVOIRE Antenne VISION 4 RCA AREWA 24 @@ -331,13 +342,11 @@ TM1 TOUTE L HISTOIRE PSTV - FARIN WATA KC2 TV1 TV O FLASH TV ISANGO STAR TV - GENESIS TV BTN TV CARTOON NETWORK Africa SA TNT Africa @@ -352,7 +361,7 @@ LCA RENOUVEAU TV RTDS - E! ENG + BRAVO ENG TELEMUNDO AFRICA MAGIC EPIC ZEE WORLD @@ -361,7 +370,7 @@ AFRICA MAGIC SHOWCASE MNET MOVIES 3 MNET MOVIES 4 - DISCOVER CHANNEL ENG + DISCOVERY CHANNEL ENG SS EPL SS LA LIGA CANAL 3 BURKINA @@ -375,9 +384,7 @@ TVC DOUNIA BONFEREY - SUNNA TV TVGE - CAPITAL SANTE TV MIKUBA TV LUDIKIDS OI VIXEN diff --git a/sites/canalplus.com/canalplus.com_gp.channels.xml b/sites/canalplus.com/canalplus.com_gp.channels.xml index 460bc2ca0..befbc24da 100644 --- a/sites/canalplus.com/canalplus.com_gp.channels.xml +++ b/sites/canalplus.com/canalplus.com_gp.channels.xml @@ -22,7 +22,6 @@ BOSOLO TV RTCE MALAIKA TV - HK6 HERITAGE TV E! Bukedde TV @@ -35,8 +34,6 @@ France 2 INT MANGAS RTB ZENITH - HOPE TV - RTNK MEZZO HOREB TV MTV France @@ -55,13 +52,12 @@ AFRIKINFO TV EVANGILE TV REFLET TV + TRACE CHRISTMAS TOUBA TV TELEMUSIK SENEGAL MOURCHID TV - TELE-ECOLE AL MOURIDIYYAH TV MALIKIA TV - CANAL EDUCATION FULBE TF1 KAYES TV @@ -69,6 +65,7 @@ TMC SEGOU TV SUNNA TV SAVANA + CANAL+ CAN GO TV HUSTLER HD TROPIC TV @@ -80,11 +77,9 @@ GALAXIE TELE FRANCE 24 BALAFON TV - TAMBARIN HAUSA TV DASH TV BETV HTV BURUNDI - TPMP RTB 2STV ISIBO TV @@ -121,8 +116,8 @@ TELE CONGO BENIN TV HD RTNC + CANAL+ CAN IVOIRE PRIVATE TV - WILDEARTH TPT+ TRACE AFRICA AFRIQUE VOIR+ @@ -147,7 +142,6 @@ M7 RTB 3 TV AL HOUDA - JES TV SUNNA TV ZARMA TAURARUWA FOR YOU TV @@ -155,7 +149,6 @@ TRACE MBOA SUN+ TV TV+ AFRIQUE - LPC NOLLYWOOD TV RTI2 TV TOGO @@ -170,18 +163,18 @@ CONGO 26 ISHUSHO TV MRTV - SHIF TV + CHIF TV GC7 GC2 GC6 ESPERANCE TV BUJA TV AL JAZEERA ENG - BET ENG + BET (ENG) UNIVERSAL GC1 SHADOW TV - CANAL+ ELLES + C+ MAGIC PARAMOUNT NETWORK SS FOOTBALL PLUS HD SS FOOTBALL HD @@ -206,7 +199,6 @@ BBLACK AFRICA TELE FONTAINE VIE CNN - TLC CARTOON NETWORK CARTOONITO BOOMERANG @@ -217,11 +209,9 @@ RTB 3 dupli TVCA RTB dupli - TOZALI TV LUMEN CHRISTI PRC JESUS 24 TV - SUNNA TV CH3 CH4 PARLEMENT TV @@ -233,17 +223,30 @@ BCN TV BRIK TV AL NASSR + BENIN TV ALAFIA + ACTIVATION NETFLIX + DNTV + AFRICA MAGIC HAUSA + AFRICA MAGIC YORUBA + MAISHA MAGIC EAST + MAISHA MAGIC PLUS + TEST AFRIQUE + MIEUX + EUROPE 2 POP TV GULLI AFRICA NOVELAS TV + TRACE IVOIRE PACIS TV MY MEDIA PRIME SCIENCE ET VIE TV ENGLISH CLUB TV + ZEE ALWAN FASHION AFRICA TV SEN TV ASONGA TV DIGITAL CONGO TELE 50 + SS WWE DRTV TV MAURITANIE IMPACT TV @@ -252,15 +255,24 @@ BUSINESS 24 CANAL+ SPORT 4 CANAL+ SPORT 5 + VOIR+ RDC ZEE MAGIC ORTM2 EVASION TV RTD + GOLF+ HD + LOVE NATURE CANAL+ FAMILY OUEST ONE TV + CNEWS PRIME + EUROPE 1 TV + AES TV HD + MAISHA MAGIC BONGO + NATIONAL GEOGRAPHIC ENG + STUDIO UNIVERSAL SSM TV MCR TV - OMEGA TV + SUPERSPORT ACTION AFRICANEWS E-TELEVISION ESPACE TV @@ -278,12 +290,11 @@ TREK J-ONE BANTAMBA TV - TRACE MZIKI CNBC AFRICA WALF TV LTM MEDI1 TV - CH1 + CNEWS PRIME IVOIRE TV Music UNIVERS TV MIRACLE TV+ @@ -313,7 +324,7 @@ MUSEUM TV CANAL 2 MOVIES EMCI - CH2 + EUROPE 1 TV A+ IVOIRE Antenne VISION 4 RCA AREWA 24 @@ -331,13 +342,11 @@ TM1 TOUTE L HISTOIRE PSTV - FARIN WATA KC2 TV1 TV O FLASH TV ISANGO STAR TV - GENESIS TV BTN TV CARTOON NETWORK Africa SA TNT Africa @@ -352,7 +361,7 @@ LCA RENOUVEAU TV RTDS - E! ENG + BRAVO ENG TELEMUNDO AFRICA MAGIC EPIC ZEE WORLD @@ -361,7 +370,7 @@ AFRICA MAGIC SHOWCASE MNET MOVIES 3 MNET MOVIES 4 - DISCOVER CHANNEL ENG + DISCOVERY CHANNEL ENG SS EPL SS LA LIGA CANAL 3 BURKINA @@ -375,9 +384,7 @@ TVC DOUNIA BONFEREY - SUNNA TV TVGE - CAPITAL SANTE TV MIKUBA TV LUDIKIDS OI VIXEN diff --git a/sites/canalplus.com/canalplus.com_gw.channels.xml b/sites/canalplus.com/canalplus.com_gw.channels.xml index 431a341c8..285245493 100644 --- a/sites/canalplus.com/canalplus.com_gw.channels.xml +++ b/sites/canalplus.com/canalplus.com_gw.channels.xml @@ -22,7 +22,6 @@ BOSOLO TV RTCE MALAIKA TV - HK6 HERITAGE TV E! Bukedde TV @@ -35,8 +34,6 @@ France 2 INT MANGAS RTB ZENITH - HOPE TV - RTNK MEZZO HOREB TV MTV France @@ -55,13 +52,12 @@ AFRIKINFO TV EVANGILE TV REFLET TV + TRACE CHRISTMAS TOUBA TV TELEMUSIK SENEGAL MOURCHID TV - TELE-ECOLE AL MOURIDIYYAH TV MALIKIA TV - CANAL EDUCATION FULBE TF1 KAYES TV @@ -69,6 +65,7 @@ TMC SEGOU TV SUNNA TV SAVANA + CANAL+ CAN GO TV HUSTLER HD TROPIC TV @@ -80,11 +77,9 @@ GALAXIE TELE FRANCE 24 BALAFON TV - TAMBARIN HAUSA TV DASH TV BETV HTV BURUNDI - TPMP RTB 2STV ISIBO TV @@ -121,8 +116,8 @@ TELE CONGO BENIN TV HD RTNC + CANAL+ CAN IVOIRE PRIVATE TV - WILDEARTH TPT+ TRACE AFRICA AFRIQUE VOIR+ @@ -147,7 +142,6 @@ M7 RTB 3 TV AL HOUDA - JES TV SUNNA TV ZARMA TAURARUWA FOR YOU TV @@ -155,7 +149,6 @@ TRACE MBOA SUN+ TV TV+ AFRIQUE - LPC NOLLYWOOD TV RTI2 TV TOGO @@ -170,18 +163,18 @@ CONGO 26 ISHUSHO TV MRTV - SHIF TV + CHIF TV GC7 GC2 GC6 ESPERANCE TV BUJA TV AL JAZEERA ENG - BET ENG + BET (ENG) UNIVERSAL GC1 SHADOW TV - CANAL+ ELLES + C+ MAGIC PARAMOUNT NETWORK SS FOOTBALL PLUS HD SS FOOTBALL HD @@ -206,7 +199,6 @@ BBLACK AFRICA TELE FONTAINE VIE CNN - TLC CARTOON NETWORK CARTOONITO BOOMERANG @@ -217,11 +209,9 @@ RTB 3 dupli TVCA RTB dupli - TOZALI TV LUMEN CHRISTI PRC JESUS 24 TV - SUNNA TV CH3 CH4 PARLEMENT TV @@ -233,17 +223,30 @@ BCN TV BRIK TV AL NASSR + BENIN TV ALAFIA + ACTIVATION NETFLIX + DNTV + AFRICA MAGIC HAUSA + AFRICA MAGIC YORUBA + MAISHA MAGIC EAST + MAISHA MAGIC PLUS + TEST AFRIQUE + MIEUX + EUROPE 2 POP TV GULLI AFRICA NOVELAS TV + TRACE IVOIRE PACIS TV MY MEDIA PRIME SCIENCE ET VIE TV ENGLISH CLUB TV + ZEE ALWAN FASHION AFRICA TV SEN TV ASONGA TV DIGITAL CONGO TELE 50 + SS WWE DRTV TV MAURITANIE IMPACT TV @@ -252,15 +255,24 @@ BUSINESS 24 CANAL+ SPORT 4 CANAL+ SPORT 5 + VOIR+ RDC ZEE MAGIC ORTM2 EVASION TV RTD + GOLF+ HD + LOVE NATURE CANAL+ FAMILY OUEST ONE TV + CNEWS PRIME + EUROPE 1 TV + AES TV HD + MAISHA MAGIC BONGO + NATIONAL GEOGRAPHIC ENG + STUDIO UNIVERSAL SSM TV MCR TV - OMEGA TV + SUPERSPORT ACTION AFRICANEWS E-TELEVISION ESPACE TV @@ -278,12 +290,11 @@ TREK J-ONE BANTAMBA TV - TRACE MZIKI CNBC AFRICA WALF TV LTM MEDI1 TV - CH1 + CNEWS PRIME IVOIRE TV Music UNIVERS TV MIRACLE TV+ @@ -313,7 +324,7 @@ MUSEUM TV CANAL 2 MOVIES EMCI - CH2 + EUROPE 1 TV A+ IVOIRE Antenne VISION 4 RCA AREWA 24 @@ -331,13 +342,11 @@ TM1 TOUTE L HISTOIRE PSTV - FARIN WATA KC2 TV1 TV O FLASH TV ISANGO STAR TV - GENESIS TV BTN TV CARTOON NETWORK Africa SA TNT Africa @@ -352,7 +361,7 @@ LCA RENOUVEAU TV RTDS - E! ENG + BRAVO ENG TELEMUNDO AFRICA MAGIC EPIC ZEE WORLD @@ -361,7 +370,7 @@ AFRICA MAGIC SHOWCASE MNET MOVIES 3 MNET MOVIES 4 - DISCOVER CHANNEL ENG + DISCOVERY CHANNEL ENG SS EPL SS LA LIGA CANAL 3 BURKINA @@ -375,9 +384,7 @@ TVC DOUNIA BONFEREY - SUNNA TV TVGE - CAPITAL SANTE TV MIKUBA TV LUDIKIDS OI VIXEN diff --git a/sites/canalplus.com/canalplus.com_ht.channels.xml b/sites/canalplus.com/canalplus.com_ht.channels.xml index a6e50bdb4..86b3eda95 100644 --- a/sites/canalplus.com/canalplus.com_ht.channels.xml +++ b/sites/canalplus.com/canalplus.com_ht.channels.xml @@ -10,34 +10,39 @@ PUNCH TV CANAL J CANAL+ HD - CANAL+ CINEMA(S) - DAZN 1 - DAZN 2 + CANAL+ CINEMA(S) HD + CNEWS PRIME + EUROPE 1 TV DAZN 3 DAZN 4 DAZN 5 CNN - CANAL+ SPORT HD + CANAL+SPORT HD EMCI - CINE+ FESTIVAL - CINE+ EMOTION - CINE+ FAMILY - CINE+ FRISSON HD + CINE+FESTIVAL + CINE+EMOTION + CINE+FAMILY + CINE+FRISSON HD OCS HD EVANGILE TV MANGAS + T18 COMEDIE+ + NOVO19 E! ENTERTAINMENT - EQUIDIA LIVE + EQUIDIA HD ESPN + MIEUX + EUROPE 2 POP TV EUROSPORT 1 HD EUROSPORT 2 HD + RADIO TELE ECLAIR FRANCE 3 FRANCE 5 CNEWS INFOSPORT+ LCI - LCP ASSEMBLEE NATIONALE + LCP L'EQUIPE M6 HD MTV France @@ -61,10 +66,9 @@ XXL FRANCE 24 BEIN SPORTS 1 HD - TPMP PIWI+ GAME ONE - USHUAÏA TV + USHUAIA TVHD W9 PLANETE+ CRIME GULLI @@ -78,7 +82,6 @@ FRANCE 2 FRANCE 4 KMT - NRJ 12 CSTAR NICKELODEON TV GLOBO @@ -96,25 +99,25 @@ HUSTLER TV Métropole CANAL+ SERIES HD - CINE + CLASSIC + CINE+CLASSIC BEIN SPORTS 3 HD - CANAL+ SPORT AYITI 1 - HAITI SPORT 2 + C+SPORT AYITI 1 HD + C+SPORT AYITI 2 HBO HBO Family HBO XTREME ENGLISH CLUB TV - CANAL+ KIDS HD + CANAL+KIDS HD GOLF+ A+ NOLLYWOOD TV france CANAL SONY TV CARAIBES - CHERIE 25 + RMC LIFE CARTOON NETWORK BOOMERANG - CANAL+ SPORT 360 - CANAL+ FOOT + CANAL+SPORT360 HD + CANAL+FOOT HD NOVELAS TV BBLACK CARIBBEAN BEIN SPORTS MAX 4 @@ -145,7 +148,7 @@ TELEMUNDO TOUTE L HISTOIRE OLYMPIA TV - CANAL+ PREMIER LEAGUE + CANAL+PREMIER LEAGUE EVENEMENT 4K ZITATA TV LUDIKIDS OI @@ -153,7 +156,7 @@ TELE SOLEIL GRAPHE TV NICKELODEON JR - STUDIOCANAL + STUDIOCANAL TV NATHAN+ TROTTERS TV FUSION TV @@ -161,11 +164,10 @@ BFM TV BFM BUSINESS RMC STORY - CANAL+ AYITI + CANAL+AYITI HD CANAL EVENEMENT CARA SPORT EN FRANCE - CANAL+ DOCS - TRAVEL XP + CANAL+DOCS CHEVAL TV MEZZO LIVE RMC DECOUVERTE diff --git a/sites/canalplus.com/canalplus.com_km.channels.xml b/sites/canalplus.com/canalplus.com_km.channels.xml new file mode 100644 index 000000000..c07f5d529 --- /dev/null +++ b/sites/canalplus.com/canalplus.com_km.channels.xml @@ -0,0 +1,399 @@ + + + 13EME RUE + GLOBAL AFRICA + AB1 + ZACU TV + AFRICA 24 INFINITY + ARTE France + BBC NEWS + AFRICA 24 SPORT + CRTV + W-SPORT + AFRICA 24 ENGLISH + LERAL TV + CANAL+ CINEMA OUEST + RTG2 + CANAL+ PREMIERE OUEST + KABACK TV + INFO TV + CAM10 + DBS + BOSOLO TV + RTCE + MALAIKA TV + HERITAGE TV + E! + Bukedde TV + EURONEWS + FRANCE 3 + FRANCE 5 + SINEMA ZETU + CNEWS + LCI + France 2 INT + MANGAS + RTB ZENITH + MEZZO + HOREB TV + MTV France + TFX + KTN + ORTM1 + PLANETE+ + PLANETE+ AVENTURE + A+ BENIN + RTS + SYFY + TCHAD INFOS + SERIE CLUB + MTV LEBANON + PITCHOUN AFRICA + AFRIKINFO TV + EVANGILE TV + REFLET TV + TRACE CHRISTMAS + TOUBA TV + TELEMUSIK SENEGAL + MOURCHID TV + AL MOURIDIYYAH TV + MALIKIA TV + FULBE + TF1 + KAYES TV + TIJI + TMC + SEGOU TV + SUNNA TV SAVANA + CANAL+ CAN + GO TV + HUSTLER HD + TROPIC TV + TV5 MONDE (Afrique) + EDEN TV + XXL + TENERE + LABARI + GALAXIE TELE + FRANCE 24 + BALAFON TV + DASH TV + BETV + HTV BURUNDI + RTB + 2STV + ISIBO TV + CANAL+ SPORT 2 + CANAL+ CINEMA CENTRE + CHINGUIT TV + ELWATANIYA TV + PIWI+ + CANAL+ PREMIERE CENTRE + GAME ONE + USHUAÏA TV + EDUC TV + PLANETE+ CRIME + CANAL+ FAMILY CENTRE + TCHAD 24 + MTV HITS + TELETOON+ + CANAL+ SPORT 3 + DORCEL TV + HISTOIRE TV + RATELKI + AFRICABLE + AFRICA 24 + EQUINOXE TV + RTI 1 + CANAL 2 INTER + LIPTAKO TV + TRACE Urban Afrique + GABON 1ERE + 7TV + STV + VOX AFRICA + RTG + TELE CONGO + BENIN TV HD + RTNC + CANAL+ CAN IVOIRE + PRIVATE TV + TPT+ + TRACE AFRICA AFRIQUE + VOIR+ + CSTAR + CANAL EVENEMENT EASY + TOUMAI TV + TFM + TELE AFRICA + SENSATION TV + SARAOUNIA TV + RTL9 HD + ACTION HD + CANAL EVENEMENT AFRIQUE + NICKELODEON GLOBAL + NOVELAS TV HD (RDC) + RWANDA TV + MANDEKA HD + PULAAGU HD + LA GUINEE FE HD + BLOOMBERG ORIGINALS + EDUCA TV + M7 + RTB 3 + TV AL HOUDA + SUNNA TV ZARMA + TAURARUWA + FOR YOU TV + MELODY D'AFRIQUE + TRACE MBOA + SUN+ TV + TV+ AFRIQUE + NOLLYWOOD TV + RTI2 + TV TOGO + B-ONE + TELE SAHEL + TV TCHAD + MAAJABU TV + AL JAZEERA + KTO + IQRAA + RTGA + CONGO 26 + ISHUSHO TV + MRTV + CHIF TV + GC7 + GC2 + GC6 + ESPERANCE TV + BUJA TV + AL JAZEERA ENG + BET (ENG) + UNIVERSAL + GC1 + SHADOW TV + C+ MAGIC + PARAMOUNT NETWORK + SS FOOTBALL PLUS HD + SS FOOTBALL HD + INFOSPORT+ + NHK WORLD TV + CGTN-FRANCAIS + SPORT EN FRANCE + PASSION BOLLYWOOD + C+ KIDS + CAVI MEDIAS + WEST AFRICA TV + FRANCE 24 EN + GTV + GULLI BIL ARABI + 2M + BNEWS + ANTENNE A + LMTV + CARREFOUR + BENIE TV + TV10 + BBLACK AFRICA + TELE FONTAINE VIE + CNN + CARTOON NETWORK + CARTOONITO + BOOMERANG + DISCOVERY CHANNEL + A+ + RTB ZENITH dupli + BF1 TV + RTB 3 dupli + TVCA + RTB dupli + LUMEN CHRISTI + PRC + JESUS 24 TV + CH3 + CH4 + PARLEMENT TV + NCA + DISCOVERY INVESTIGATION + LUTTE TV + PYRAMIDE TV + TV2 + BCN TV + BRIK TV + AL NASSR + BENIN TV ALAFIA + ACTIVATION NETFLIX + DNTV + AFRICA MAGIC HAUSA + AFRICA MAGIC YORUBA + MAISHA MAGIC EAST + MAISHA MAGIC PLUS + TEST AFRIQUE + MIEUX + EUROPE 2 POP TV + GULLI AFRICA + NOVELAS TV + TRACE IVOIRE + PACIS TV + MY MEDIA PRIME + SCIENCE ET VIE TV + ENGLISH CLUB TV + ZEE ALWAN + FASHION AFRICA TV + SEN TV + ASONGA TV + DIGITAL CONGO + TELE 50 + SS WWE + DRTV + TV MAURITANIE + IMPACT TV + ELECTRON TV + VISION 4 + BUSINESS 24 + CANAL+ SPORT 4 + CANAL+ SPORT 5 + VOIR+ RDC + ZEE MAGIC + ORTM2 + EVASION TV + RTD + GOLF+ HD + LOVE NATURE + CANAL+ FAMILY OUEST + ONE TV + CNEWS PRIME + EUROPE 1 TV + AES TV HD + MAISHA MAGIC BONGO + NATIONAL GEOGRAPHIC ENG + STUDIO UNIVERSAL + SSM TV + MCR TV + SUPERSPORT ACTION + AFRICANEWS + E-TELEVISION + ESPACE TV + GABON 24 + NYOTA + TELE 24 + TGB + JOLIBA + TIVI5 MONDE + CANAL 3 BENIN + NBA TV + BURKINA INFO + VOX TV + AUTOMOTO + TREK + J-ONE + BANTAMBA TV + CNBC AFRICA + WALF TV + LTM + MEDI1 TV + CNEWS PRIME + IVOIRE TV Music + UNIVERS TV + MIRACLE TV+ + MANDE TV + NOLLYWOOD EPIC + CIS TV + ASFIYAHI + TF1 SERIES FILMS + MSI TV + TRACE GOSPEL + TRACE KITOKO + 3TV + CANAL+ SPORT 1 + CANAL+ ACTION CENTRE + MISHAPI + CANAL+ POP + LUX TV + KALAC TV + NIETA TV + CANAL+ ACTION OUEST + PENTHOUSE BLACK + SAVANE TV + MOLIERE TV + RTS 2 + CRTV NEWS + CHERIFLA TV + MUSEUM TV + CANAL 2 MOVIES + EMCI + EUROPE 1 TV + A+ IVOIRE Antenne + VISION 4 RCA + AREWA 24 + SAHARA TV + DORCEL TV AFRICA + SUNU YEUF + CUISINES + M6 INTERNATIONAL + TRACE TERANGA + NCI + RTNB + CRTV SPORT + GC4 + ITV + TM1 + TOUTE L HISTOIRE + PSTV + KC2 + TV1 + TV O + FLASH TV + ISANGO STAR TV + BTN TV + CARTOON NETWORK Africa SA + TNT Africa + ANIMAUX + CRIME DISTRICT + LA3 + LIFE TV + TV7 + CVK + CDIRECT + ALBAYANE + LCA + RENOUVEAU TV + RTDS + BRAVO ENG + TELEMUNDO + AFRICA MAGIC EPIC + ZEE WORLD + NICKELODEON ENG + NICKELODEON JR ENG + AFRICA MAGIC SHOWCASE + MNET MOVIES 3 + MNET MOVIES 4 + DISCOVERY CHANNEL ENG + SS EPL + SS LA LIGA + CANAL 3 BURKINA + VOIR+ COTE D IVOIRE + SUD 1ERE + 7INFO + GABON CULTURE + BLOOMBERG TV + LAMP FALL TV + ALAFIA TV + TVC + DOUNIA + BONFEREY + TVGE + MIKUBA TV + LUDIKIDS OI + VIXEN + NICKELODEON JR + NATHAN+ + NOVELAS (Cameroun) + MADI TV + MABOKE TV + ECCLESIA TV + SOS DOCTEUR TV + CANAL+ DOCS + diff --git a/sites/canalplus.com/canalplus.com_mf.channels.xml b/sites/canalplus.com/canalplus.com_mf.channels.xml index 679b998c8..615f9fca9 100644 --- a/sites/canalplus.com/canalplus.com_mf.channels.xml +++ b/sites/canalplus.com/canalplus.com_mf.channels.xml @@ -10,34 +10,39 @@ PUNCH TV CANAL J CANAL+ HD - CANAL+ CINEMA(S) - DAZN 1 - DAZN 2 + CANAL+ CINEMA(S) HD + CNEWS PRIME + EUROPE 1 TV DAZN 3 DAZN 4 DAZN 5 CNN - CANAL+ SPORT HD + CANAL+SPORT HD EMCI - CINE+ FESTIVAL - CINE+ EMOTION - CINE+ FAMILY - CINE+ FRISSON HD + CINE+FESTIVAL + CINE+EMOTION + CINE+FAMILY + CINE+FRISSON HD OCS HD EVANGILE TV MANGAS + T18 COMEDIE+ + NOVO19 E! ENTERTAINMENT - EQUIDIA LIVE + EQUIDIA HD ESPN + MIEUX + EUROPE 2 POP TV EUROSPORT 1 HD EUROSPORT 2 HD + RADIO TELE ECLAIR FRANCE 3 FRANCE 5 CNEWS INFOSPORT+ LCI - LCP ASSEMBLEE NATIONALE + LCP L'EQUIPE M6 HD MTV France @@ -61,10 +66,9 @@ XXL FRANCE 24 BEIN SPORTS 1 HD - TPMP PIWI+ GAME ONE - USHUAÏA TV + USHUAIA TVHD W9 PLANETE+ CRIME GULLI @@ -78,7 +82,6 @@ FRANCE 2 FRANCE 4 KMT - NRJ 12 CSTAR NICKELODEON TV GLOBO @@ -96,25 +99,25 @@ HUSTLER TV Métropole CANAL+ SERIES HD - CINE + CLASSIC + CINE+CLASSIC BEIN SPORTS 3 HD - CANAL+ SPORT AYITI 1 - HAITI SPORT 2 + C+SPORT AYITI 1 HD + C+SPORT AYITI 2 HBO HBO Family HBO XTREME ENGLISH CLUB TV - CANAL+ KIDS HD + CANAL+KIDS HD GOLF+ A+ NOLLYWOOD TV france CANAL SONY TV CARAIBES - CHERIE 25 + RMC LIFE CARTOON NETWORK BOOMERANG - CANAL+ SPORT 360 - CANAL+ FOOT + CANAL+SPORT360 HD + CANAL+FOOT HD NOVELAS TV BBLACK CARIBBEAN BEIN SPORTS MAX 4 @@ -145,7 +148,7 @@ TELEMUNDO TOUTE L HISTOIRE OLYMPIA TV - CANAL+ PREMIER LEAGUE + CANAL+PREMIER LEAGUE EVENEMENT 4K ZITATA TV LUDIKIDS OI @@ -153,7 +156,7 @@ TELE SOLEIL GRAPHE TV NICKELODEON JR - STUDIOCANAL + STUDIOCANAL TV NATHAN+ TROTTERS TV FUSION TV @@ -161,11 +164,10 @@ BFM TV BFM BUSINESS RMC STORY - CANAL+ AYITI + CANAL+AYITI HD CANAL EVENEMENT CARA SPORT EN FRANCE - CANAL+ DOCS - TRAVEL XP + CANAL+DOCS CHEVAL TV MEZZO LIVE RMC DECOUVERTE diff --git a/sites/canalplus.com/canalplus.com_mg.channels.xml b/sites/canalplus.com/canalplus.com_mg.channels.xml index cff465c88..645fe2c6f 100644 --- a/sites/canalplus.com/canalplus.com_mg.channels.xml +++ b/sites/canalplus.com/canalplus.com_mg.channels.xml @@ -1,392 +1,229 @@ - 13EME RUE - GLOBAL AFRICA - AB1 - ZACU TV - AFRICA 24 INFINITY - ARTE France - BBC NEWS - AFRICA 24 SPORT - CRTV - W-SPORT - AFRICA 24 ENGLISH - LERAL TV - CANAL+ CINEMA OUEST - RTG2 - CANAL+ PREMIERE OUEST - KABACK TV - INFO TV - CAM10 - DBS - BOSOLO TV - RTCE - MALAIKA TV - HK6 - HERITAGE TV - E! - Bukedde TV - EURONEWS - FRANCE 3 - FRANCE 5 - SINEMA ZETU - CNEWS - LCI - France 2 INT - MANGAS - RTB ZENITH - HOPE TV - RTNK - MEZZO - HOREB TV - MTV France - TFX - KTN - ORTM1 - PLANETE+ - PLANETE+ AVENTURE - A+ BENIN - RTS - SYFY - TCHAD INFOS - SERIE CLUB - MTV LEBANON - PITCHOUN AFRICA - AFRIKINFO TV - EVANGILE TV - REFLET TV - TOUBA TV - TELEMUSIK SENEGAL - MOURCHID TV - TELE-ECOLE - AL MOURIDIYYAH TV - MALIKIA TV - CANAL EDUCATION - FULBE - TF1 - KAYES TV - TIJI - TMC - SEGOU TV - SUNNA TV SAVANA - GO TV - HUSTLER HD - TROPIC TV - TV5 MONDE (Afrique) - EDEN TV - XXL - TENERE - LABARI - GALAXIE TELE - FRANCE 24 - BALAFON TV - TAMBARIN HAUSA TV - DASH TV - BETV - HTV BURUNDI - TPMP - RTB - 2STV - ISIBO TV - CANAL+ SPORT 2 - CANAL+ CINEMA CENTRE - CHINGUIT TV - ELWATANIYA TV - PIWI+ - CANAL+ PREMIERE CENTRE - GAME ONE - USHUAÏA TV - EDUC TV - PLANETE+ CRIME - CANAL+ FAMILY CENTRE - TCHAD 24 - MTV HITS - TELETOON+ - CANAL+ SPORT 3 - DORCEL TV - HISTOIRE TV - RATELKI - AFRICABLE - AFRICA 24 - EQUINOXE TV - RTI 1 - CANAL 2 INTER - LIPTAKO TV - TRACE Urban Afrique - GABON 1ERE - 7TV - STV - VOX AFRICA - RTG - TELE CONGO - BENIN TV HD - RTNC - PRIVATE TV - WILDEARTH - TPT+ - TRACE AFRICA AFRIQUE - VOIR+ - CSTAR - CANAL EVENEMENT EASY - TOUMAI TV - TFM - TELE AFRICA - SENSATION TV - SARAOUNIA TV - RTL9 HD - ACTION HD - CANAL EVENEMENT AFRIQUE - NICKELODEON GLOBAL - NOVELAS TV HD (RDC) - RWANDA TV - MANDEKA HD - PULAAGU HD - LA GUINEE FE HD - BLOOMBERG ORIGINALS - EDUCA TV - M7 - RTB 3 - TV AL HOUDA - JES TV - SUNNA TV ZARMA - TAURARUWA - FOR YOU TV - MELODY D'AFRIQUE - TRACE MBOA - SUN+ TV - TV+ AFRIQUE - LPC - NOLLYWOOD TV - RTI2 - TV TOGO - B-ONE - TELE SAHEL - TV TCHAD - MAAJABU TV - AL JAZEERA - KTO - IQRAA - RTGA - CONGO 26 - ISHUSHO TV - MRTV - SHIF TV - GC7 - GC2 - GC6 - ESPERANCE TV - BUJA TV - AL JAZEERA ENG - BET ENG - UNIVERSAL - GC1 - SHADOW TV - CANAL+ ELLES - PARAMOUNT NETWORK - SS FOOTBALL PLUS HD - SS FOOTBALL HD - INFOSPORT+ - NHK WORLD TV - CGTN-FRANCAIS - SPORT EN FRANCE - PASSION BOLLYWOOD - C+ KIDS - CAVI MEDIAS - WEST AFRICA TV - FRANCE 24 EN - GTV - GULLI BIL ARABI - 2M - BNEWS - ANTENNE A - LMTV - CARREFOUR - BENIE TV - TV10 - BBLACK AFRICA - TELE FONTAINE VIE - CNN - TLC - CARTOON NETWORK - CARTOONITO - BOOMERANG - DISCOVERY CHANNEL - A+ - RTB ZENITH dupli - BF1 TV - RTB 3 dupli - TVCA - RTB dupli - TOZALI TV - LUMEN CHRISTI - PRC - JESUS 24 TV - SUNNA TV - CH3 - CH4 - PARLEMENT TV - NCA - DISCOVERY INVESTIGATION - LUTTE TV - PYRAMIDE TV - TV2 - BCN TV - BRIK TV - AL NASSR - GULLI AFRICA - NOVELAS TV - PACIS TV - MY MEDIA PRIME - SCIENCE ET VIE TV - ENGLISH CLUB TV - FASHION AFRICA TV - SEN TV - ASONGA TV - DIGITAL CONGO - TELE 50 - DRTV - TV MAURITANIE - IMPACT TV - ELECTRON TV - VISION 4 - BUSINESS 24 - CANAL+ SPORT 4 - CANAL+ SPORT 5 - ZEE MAGIC - ORTM2 - EVASION TV - RTD - CANAL+ FAMILY OUEST - ONE TV - SSM TV - MCR TV - OMEGA TV - AFRICANEWS - E-TELEVISION - ESPACE TV - GABON 24 - NYOTA - TELE 24 - TGB - JOLIBA - TIVI5 MONDE - CANAL 3 BENIN - NBA TV - BURKINA INFO - VOX TV - AUTOMOTO - TREK - J-ONE - BANTAMBA TV - TRACE MZIKI - CNBC AFRICA - WALF TV - LTM - MEDI1 TV - CH1 - IVOIRE TV Music - UNIVERS TV - MIRACLE TV+ - MANDE TV - NOLLYWOOD EPIC - CIS TV - ASFIYAHI - TF1 SERIES FILMS - MSI TV - TRACE GOSPEL - TRACE KITOKO - 3TV - CANAL+ SPORT 1 - CANAL+ ACTION CENTRE - MISHAPI - CANAL+ POP - LUX TV - KALAC TV - NIETA TV - CANAL+ ACTION OUEST - PENTHOUSE BLACK - SAVANE TV - MOLIERE TV - RTS 2 - CRTV NEWS - CHERIFLA TV - MUSEUM TV - CANAL 2 MOVIES - EMCI - CH2 - A+ IVOIRE Antenne - VISION 4 RCA - AREWA 24 - SAHARA TV - DORCEL TV AFRICA - SUNU YEUF - CUISINES - M6 INTERNATIONAL - TRACE TERANGA - NCI - RTNB - CRTV SPORT - GC4 - ITV - TM1 - TOUTE L HISTOIRE - PSTV - FARIN WATA - KC2 - TV1 - TV O - FLASH TV - ISANGO STAR TV - GENESIS TV - BTN TV - CARTOON NETWORK Africa SA - TNT Africa - ANIMAUX - CRIME DISTRICT - LA3 - LIFE TV - TV7 - CVK - CDIRECT - ALBAYANE - LCA - RENOUVEAU TV - RTDS - E! ENG - TELEMUNDO - AFRICA MAGIC EPIC - ZEE WORLD - NICKELODEON ENG - NICKELODEON JR ENG - AFRICA MAGIC SHOWCASE - MNET MOVIES 3 - MNET MOVIES 4 - DISCOVER CHANNEL ENG - SS EPL - SS LA LIGA - CANAL 3 BURKINA - VOIR+ COTE D IVOIRE - SUD 1ERE - 7INFO - GABON CULTURE - BLOOMBERG TV - LAMP FALL TV - ALAFIA TV - TVC - DOUNIA - BONFEREY - SUNNA TV - TVGE - CAPITAL SANTE TV - MIKUBA TV - LUDIKIDS OI - VIXEN - NICKELODEON JR - NATHAN+ - NOVELAS (Cameroun) - MADI TV - MABOKE TV - ECCLESIA TV - SOS DOCTEUR TV - CANAL+ DOCS + MBC 1 + 13EME RUE + MBC 2 + ACTION + ANTENNE REUNION + MBC 3 + ARTE France + BBC NEWS + W-SPORT + MBC 4 + CANAL J + MBC 5 + MBC 11 + CANAL+ CINEMA(S) + MBC HD + PUNCH TV + CANAL+ + SPORT EN FRANCE + CANAL+ SPORT HD + CNN + CINE+ FESTIVAL + CINE+ EMOTION + CINE+ FAMILY + CINE+ FRISSON + OCS HD + EUROPE 1 TV + COMEDIE+ + E! ENTERTAINMENT + EQUIDIA + SS EPL + SS LA LIGA + SS FOOTBALL HD + EUROSPORT 1 HD + EUROSPORT 2 + SS FOOTBALL PLUS HD + AL JAZEERA ENG + FRANCE 3 + FRANCE 5 + BET (ENG) + CNEWS + TELEMUNDO DSTV + INFOSPORT+ + UNIVERSAL + MNET MOVIES 3 + MNET MOVIES 4 + LCI + LCP ASSEMBLEE NATIONALE + L'EQUIPE + M6 HD + DISCOVERY CHANNEL DSTV + ZEE WORLD DSTV + NICKELODEON DSTV + RFM TV + NICKELODEON JR (DSTV) + MEZZO + BRAVO + MTV France + AFR MAGIC EPIC + TFX + AFR MAGIC SHOW DSTV + GASYSPORT TV + PARIS PREMIERE + BEIN SPORTS MAX 6 + PLANETE+ + PLANETE+ AVENTURE + BEIN SPORTS MAX 7 + BEIN SPORTS MAX 8 + RTL9 + SYFY + SEASONS + SERIE CLUB + BEIN SPORTS MAX 9 + BEIN SPORTS MAX 10 + CANAL+ FAMILY + CANAL+ POP + CANAL+ MAGIC + MANGAS + PASSION BOLLYWOOD + REUNION 1ERE + TVM 2 + MALAGASY TV + KULTURA TV + REAL TV + MADI TV + TEVA + TF1 + T18 + MIEUX + TMC + CANAL+ CAN HD + EUROPE 2 POP TV + ACTIVATION NETFLIX + TRACE URBAN + SS WWE HD + TV BREIZH + TV5 MONDE (Afrique) + NATIONAL GEOGRAPHIC ENG + TV5 MONDE FR + STUDIO UNIVERSAL + XXL + FRANCE 24 + BEIN SPORTS 1 HD + ZEE CINEMA HD + ZING + ZEE TV + CANAL+ SPORT 2 HD + PIWI+ + GAME ONE + USHUAÏA TV + W9 + PLANETE+ CRIME + GULLI + MTV HITS + TELETOON+ + CANAL+ SPORT 3 HD + KANALAUSTRAL.TV + DORCEL HD + HISTOIRE + CANAL EVENEMENT INDO + AFRICA 24 + DISCOVERY CHANNEL + FRANCE 2 + TVMalgache + ORTComores + FRANCE 4 + TELE KREOL + MAYOTTE 1ERE + STARPLUS + TRACE AFRICA + CSTAR + COLORS + NICKELODEON + BEIN SPORTS 2 HD + CANAL+ BOX OFFICE + KTO + IQRAA + PENTHOUSE BLACK + STARGOLD + VOIR+ OCEAN INDIEN + PARAMOUNT NETWORK + HUSTLER + INFOSPORT+ AFR + CGTN-FRANCAIS + CANAL+ SERIES + CINE+ CLASSIC + TV PLUS + KOLO TV + VIVA + MTV India + MBC SAT + BEIN SPORTS 3 HD + ENGLISH CLUB TV + CANAL+ SPORT 4 + CANAL+ SPORT 5 HD + CANAL+ KIDS HD + RECORD + GOLF+ HD + A+ + NOLLYWOOD TV france + RMC LIFE + CARTOON NETWORK + BOOMERANG + CANAL+ SPORT 360 HD + CANAL+ FOOT + NOVELAS TV + BEIN SPORTS MAX 4 + BEIN SPORTS MAX 5 + SONY MAX + AUTOMOTO + TREK + PRIVATE + TF1 SERIES FILMS + 6TER + CANAL+ SPORT 1 HD + TEST DROM + TEST + C+ ACTION CENTRE + MUSEUM TV + MBS + DREAMIN + WARNER TV + WARNER TV NEXT + FRANCE INFO: + CUISINES + RTA + OLYMPIA TV + CANAL+ PREMIER LEAGUE + EVENEMENT 4K + NOVEGASY + TRACE VANILLA + LUDIKIDS OI + ZEE THIRAI + VIXEN + NICKELODEON JR + UTSAV BHARAT + NATHAN+ + BFM TV + BFM BUSINESS + RMC STORY + KWEZI + CANAL+ DOCS + CHEVAL TV + MEZZO LIVE + RMC DECOUVERTE + CARTOONITO + TLC + DISCOVERY INVESTIGATION + CANAL+LIVE 1 + CANAL+LIVE 2 + CANAL+LIVE 3 + CANAL+LIVE 4 + CANAL+LIVE 5 + CANAL+LIVE 6 + CANAL+LIVE 7 + CANAL+LIVE 8 + CANAL+LIVE 9 + CANAL+LIVE 10 + CANAL+LIVE 11 + CANAL+LIVE 12 + CANAL+LIVE 13 + CANAL+LIVE 14 + CANAL+LIVE 15 + CANAL+LIVE 16 + CANAL+LIVE 17 + CANAL+LIVE 18 + TCM CINEMA diff --git a/sites/canalplus.com/canalplus.com_ml.channels.xml b/sites/canalplus.com/canalplus.com_ml.channels.xml index 57433fd1a..7a5fab776 100644 --- a/sites/canalplus.com/canalplus.com_ml.channels.xml +++ b/sites/canalplus.com/canalplus.com_ml.channels.xml @@ -22,7 +22,6 @@ BOSOLO TV RTCE MALAIKA TV - HK6 HERITAGE TV E! Bukedde TV @@ -35,8 +34,6 @@ France 2 INT MANGAS RTB ZENITH - HOPE TV - RTNK MEZZO HOREB TV MTV France @@ -55,13 +52,12 @@ AFRIKINFO TV EVANGILE TV REFLET TV + TRACE CHRISTMAS TOUBA TV TELEMUSIK SENEGAL MOURCHID TV - TELE-ECOLE AL MOURIDIYYAH TV MALIKIA TV - CANAL EDUCATION FULBE TF1 KAYES TV @@ -69,6 +65,7 @@ TMC SEGOU TV SUNNA TV SAVANA + CANAL+ CAN GO TV HUSTLER HD TROPIC TV @@ -80,11 +77,9 @@ GALAXIE TELE FRANCE 24 BALAFON TV - TAMBARIN HAUSA TV DASH TV BETV HTV BURUNDI - TPMP RTB 2STV ISIBO TV @@ -121,8 +116,8 @@ TELE CONGO BENIN TV HD RTNC + CANAL+ CAN IVOIRE PRIVATE TV - WILDEARTH TPT+ TRACE AFRICA AFRIQUE VOIR+ @@ -147,7 +142,6 @@ M7 RTB 3 TV AL HOUDA - JES TV SUNNA TV ZARMA TAURARUWA FOR YOU TV @@ -155,7 +149,6 @@ TRACE MBOA SUN+ TV TV+ AFRIQUE - LPC NOLLYWOOD TV RTI2 TV TOGO @@ -170,18 +163,18 @@ CONGO 26 ISHUSHO TV MRTV - SHIF TV + CHIF TV GC7 GC2 GC6 ESPERANCE TV BUJA TV AL JAZEERA ENG - BET ENG + BET (ENG) UNIVERSAL GC1 SHADOW TV - CANAL+ ELLES + C+ MAGIC PARAMOUNT NETWORK SS FOOTBALL PLUS HD SS FOOTBALL HD @@ -206,7 +199,6 @@ BBLACK AFRICA TELE FONTAINE VIE CNN - TLC CARTOON NETWORK CARTOONITO BOOMERANG @@ -217,11 +209,9 @@ RTB 3 dupli TVCA RTB dupli - TOZALI TV LUMEN CHRISTI PRC JESUS 24 TV - SUNNA TV CH3 CH4 PARLEMENT TV @@ -233,17 +223,30 @@ BCN TV BRIK TV AL NASSR + BENIN TV ALAFIA + ACTIVATION NETFLIX + DNTV + AFRICA MAGIC HAUSA + AFRICA MAGIC YORUBA + MAISHA MAGIC EAST + MAISHA MAGIC PLUS + TEST AFRIQUE + MIEUX + EUROPE 2 POP TV GULLI AFRICA NOVELAS TV + TRACE IVOIRE PACIS TV MY MEDIA PRIME SCIENCE ET VIE TV ENGLISH CLUB TV + ZEE ALWAN FASHION AFRICA TV SEN TV ASONGA TV DIGITAL CONGO TELE 50 + SS WWE DRTV TV MAURITANIE IMPACT TV @@ -252,15 +255,24 @@ BUSINESS 24 CANAL+ SPORT 4 CANAL+ SPORT 5 + VOIR+ RDC ZEE MAGIC ORTM2 EVASION TV RTD + GOLF+ HD + LOVE NATURE CANAL+ FAMILY OUEST ONE TV + CNEWS PRIME + EUROPE 1 TV + AES TV HD + MAISHA MAGIC BONGO + NATIONAL GEOGRAPHIC ENG + STUDIO UNIVERSAL SSM TV MCR TV - OMEGA TV + SUPERSPORT ACTION AFRICANEWS E-TELEVISION ESPACE TV @@ -278,12 +290,11 @@ TREK J-ONE BANTAMBA TV - TRACE MZIKI CNBC AFRICA WALF TV LTM MEDI1 TV - CH1 + CNEWS PRIME IVOIRE TV Music UNIVERS TV MIRACLE TV+ @@ -313,7 +324,7 @@ MUSEUM TV CANAL 2 MOVIES EMCI - CH2 + EUROPE 1 TV A+ IVOIRE Antenne VISION 4 RCA AREWA 24 @@ -331,13 +342,11 @@ TM1 TOUTE L HISTOIRE PSTV - FARIN WATA KC2 TV1 TV O FLASH TV ISANGO STAR TV - GENESIS TV BTN TV CARTOON NETWORK Africa SA TNT Africa @@ -352,7 +361,7 @@ LCA RENOUVEAU TV RTDS - E! ENG + BRAVO ENG TELEMUNDO AFRICA MAGIC EPIC ZEE WORLD @@ -361,7 +370,7 @@ AFRICA MAGIC SHOWCASE MNET MOVIES 3 MNET MOVIES 4 - DISCOVER CHANNEL ENG + DISCOVERY CHANNEL ENG SS EPL SS LA LIGA CANAL 3 BURKINA @@ -375,9 +384,7 @@ TVC DOUNIA BONFEREY - SUNNA TV TVGE - CAPITAL SANTE TV MIKUBA TV LUDIKIDS OI VIXEN diff --git a/sites/canalplus.com/canalplus.com_mq.channels.xml b/sites/canalplus.com/canalplus.com_mq.channels.xml index 8ea8f0144..f352fbd4a 100644 --- a/sites/canalplus.com/canalplus.com_mq.channels.xml +++ b/sites/canalplus.com/canalplus.com_mq.channels.xml @@ -10,34 +10,39 @@ PUNCH TV CANAL J CANAL+ HD - CANAL+ CINEMA(S) - DAZN 1 - DAZN 2 + CANAL+ CINEMA(S) HD + CNEWS PRIME + EUROPE 1 TV DAZN 3 DAZN 4 DAZN 5 CNN - CANAL+ SPORT HD + CANAL+SPORT HD EMCI - CINE+ FESTIVAL - CINE+ EMOTION - CINE+ FAMILY - CINE+ FRISSON HD + CINE+FESTIVAL + CINE+EMOTION + CINE+FAMILY + CINE+FRISSON HD OCS HD EVANGILE TV MANGAS + T18 COMEDIE+ + NOVO19 E! ENTERTAINMENT - EQUIDIA LIVE + EQUIDIA HD ESPN + MIEUX + EUROPE 2 POP TV EUROSPORT 1 HD EUROSPORT 2 HD + RADIO TELE ECLAIR FRANCE 3 FRANCE 5 CNEWS INFOSPORT+ LCI - LCP ASSEMBLEE NATIONALE + LCP L'EQUIPE M6 HD MTV France @@ -61,10 +66,9 @@ XXL FRANCE 24 BEIN SPORTS 1 HD - TPMP PIWI+ GAME ONE - USHUAÏA TV + USHUAIA TVHD W9 PLANETE+ CRIME GULLI @@ -78,7 +82,6 @@ FRANCE 2 FRANCE 4 KMT - NRJ 12 CSTAR NICKELODEON TV GLOBO @@ -96,25 +99,25 @@ HUSTLER TV Métropole CANAL+ SERIES HD - CINE + CLASSIC + CINE+CLASSIC BEIN SPORTS 3 HD - CANAL+ SPORT AYITI 1 - HAITI SPORT 2 + C+SPORT AYITI 1 HD + C+SPORT AYITI 2 HBO HBO Family HBO XTREME ENGLISH CLUB TV - CANAL+ KIDS HD + CANAL+KIDS HD GOLF+ A+ NOLLYWOOD TV france CANAL SONY TV CARAIBES - CHERIE 25 + RMC LIFE CARTOON NETWORK BOOMERANG - CANAL+ SPORT 360 - CANAL+ FOOT + CANAL+SPORT360 HD + CANAL+FOOT HD NOVELAS TV BBLACK CARIBBEAN BEIN SPORTS MAX 4 @@ -145,7 +148,7 @@ TELEMUNDO TOUTE L HISTOIRE OLYMPIA TV - CANAL+ PREMIER LEAGUE + CANAL+PREMIER LEAGUE EVENEMENT 4K ZITATA TV LUDIKIDS OI @@ -153,7 +156,7 @@ TELE SOLEIL GRAPHE TV NICKELODEON JR - STUDIOCANAL + STUDIOCANAL TV NATHAN+ TROTTERS TV FUSION TV @@ -161,11 +164,10 @@ BFM TV BFM BUSINESS RMC STORY - CANAL+ AYITI + CANAL+AYITI HD CANAL EVENEMENT CARA SPORT EN FRANCE - CANAL+ DOCS - TRAVEL XP + CANAL+DOCS CHEVAL TV MEZZO LIVE RMC DECOUVERTE diff --git a/sites/canalplus.com/canalplus.com_mr.channels.xml b/sites/canalplus.com/canalplus.com_mr.channels.xml index ac35c9925..f32be43b2 100644 --- a/sites/canalplus.com/canalplus.com_mr.channels.xml +++ b/sites/canalplus.com/canalplus.com_mr.channels.xml @@ -22,7 +22,6 @@ BOSOLO TV RTCE MALAIKA TV - HK6 HERITAGE TV E! Bukedde TV @@ -35,8 +34,6 @@ France 2 INT MANGAS RTB ZENITH - HOPE TV - RTNK MEZZO HOREB TV MTV France @@ -55,13 +52,12 @@ AFRIKINFO TV EVANGILE TV REFLET TV + TRACE CHRISTMAS TOUBA TV TELEMUSIK SENEGAL MOURCHID TV - TELE-ECOLE AL MOURIDIYYAH TV MALIKIA TV - CANAL EDUCATION FULBE TF1 KAYES TV @@ -69,6 +65,7 @@ TMC SEGOU TV SUNNA TV SAVANA + CANAL+ CAN GO TV HUSTLER HD TROPIC TV @@ -80,11 +77,9 @@ GALAXIE TELE FRANCE 24 BALAFON TV - TAMBARIN HAUSA TV DASH TV BETV HTV BURUNDI - TPMP RTB 2STV ISIBO TV @@ -121,8 +116,8 @@ TELE CONGO BENIN TV HD RTNC + CANAL+ CAN IVOIRE PRIVATE TV - WILDEARTH TPT+ TRACE AFRICA AFRIQUE VOIR+ @@ -147,7 +142,6 @@ M7 RTB 3 TV AL HOUDA - JES TV SUNNA TV ZARMA TAURARUWA FOR YOU TV @@ -155,7 +149,6 @@ TRACE MBOA SUN+ TV TV+ AFRIQUE - LPC NOLLYWOOD TV RTI2 TV TOGO @@ -170,18 +163,18 @@ CONGO 26 ISHUSHO TV MRTV - SHIF TV + CHIF TV GC7 GC2 GC6 ESPERANCE TV BUJA TV AL JAZEERA ENG - BET ENG + BET (ENG) UNIVERSAL GC1 SHADOW TV - CANAL+ ELLES + C+ MAGIC PARAMOUNT NETWORK SS FOOTBALL PLUS HD SS FOOTBALL HD @@ -206,7 +199,6 @@ BBLACK AFRICA TELE FONTAINE VIE CNN - TLC CARTOON NETWORK CARTOONITO BOOMERANG @@ -217,11 +209,9 @@ RTB 3 dupli TVCA RTB dupli - TOZALI TV LUMEN CHRISTI PRC JESUS 24 TV - SUNNA TV CH3 CH4 PARLEMENT TV @@ -233,17 +223,30 @@ BCN TV BRIK TV AL NASSR + BENIN TV ALAFIA + ACTIVATION NETFLIX + DNTV + AFRICA MAGIC HAUSA + AFRICA MAGIC YORUBA + MAISHA MAGIC EAST + MAISHA MAGIC PLUS + TEST AFRIQUE + MIEUX + EUROPE 2 POP TV GULLI AFRICA NOVELAS TV + TRACE IVOIRE PACIS TV MY MEDIA PRIME SCIENCE ET VIE TV ENGLISH CLUB TV + ZEE ALWAN FASHION AFRICA TV SEN TV ASONGA TV DIGITAL CONGO TELE 50 + SS WWE DRTV TV MAURITANIE IMPACT TV @@ -252,15 +255,24 @@ BUSINESS 24 CANAL+ SPORT 4 CANAL+ SPORT 5 + VOIR+ RDC ZEE MAGIC ORTM2 EVASION TV RTD + GOLF+ HD + LOVE NATURE CANAL+ FAMILY OUEST ONE TV + CNEWS PRIME + EUROPE 1 TV + AES TV HD + MAISHA MAGIC BONGO + NATIONAL GEOGRAPHIC ENG + STUDIO UNIVERSAL SSM TV MCR TV - OMEGA TV + SUPERSPORT ACTION AFRICANEWS E-TELEVISION ESPACE TV @@ -278,12 +290,11 @@ TREK J-ONE BANTAMBA TV - TRACE MZIKI CNBC AFRICA WALF TV LTM MEDI1 TV - CH1 + CNEWS PRIME IVOIRE TV Music UNIVERS TV MIRACLE TV+ @@ -313,7 +324,7 @@ MUSEUM TV CANAL 2 MOVIES EMCI - CH2 + EUROPE 1 TV A+ IVOIRE Antenne VISION 4 RCA AREWA 24 @@ -331,13 +342,11 @@ TM1 TOUTE L HISTOIRE PSTV - FARIN WATA KC2 TV1 TV O FLASH TV ISANGO STAR TV - GENESIS TV BTN TV CARTOON NETWORK Africa SA TNT Africa @@ -352,7 +361,7 @@ LCA RENOUVEAU TV RTDS - E! ENG + BRAVO ENG TELEMUNDO AFRICA MAGIC EPIC ZEE WORLD @@ -361,7 +370,7 @@ AFRICA MAGIC SHOWCASE MNET MOVIES 3 MNET MOVIES 4 - DISCOVER CHANNEL ENG + DISCOVERY CHANNEL ENG SS EPL SS LA LIGA CANAL 3 BURKINA @@ -375,9 +384,7 @@ TVC DOUNIA BONFEREY - SUNNA TV TVGE - CAPITAL SANTE TV MIKUBA TV LUDIKIDS OI VIXEN diff --git a/sites/canalplus.com/canalplus.com_mu.channels.xml b/sites/canalplus.com/canalplus.com_mu.channels.xml index c490d6a20..8bbef5c5b 100644 --- a/sites/canalplus.com/canalplus.com_mu.channels.xml +++ b/sites/canalplus.com/canalplus.com_mu.channels.xml @@ -25,12 +25,8 @@ CINE+ FAMILY CINE+ FRISSON OCS HD - CH1 - CH2 - CH3 - CH4 + EUROPE 1 TV COMEDIE+ - CH5 E! ENTERTAINMENT EQUIDIA SS EPL @@ -42,7 +38,7 @@ AL JAZEERA ENG FRANCE 3 FRANCE 5 - BET ENG + BET (ENG) CNEWS TELEMUNDO DSTV INFOSPORT+ @@ -59,7 +55,7 @@ RFM TV NICKELODEON JR (DSTV) MEZZO - E! Entertainment DSTV + BRAVO MTV France AFR MAGIC EPIC TFX @@ -79,22 +75,30 @@ BEIN SPORTS MAX 10 CANAL+ FAMILY CANAL+ POP - CANAL+ ELLES + CANAL+ MAGIC MANGAS PASSION BOLLYWOOD REUNION 1ERE TVM 2 MALAGASY TV - FREE TV + KULTURA TV REAL TV MADI TV TEVA TF1 + T18 + MIEUX TMC + CANAL+ CAN HD + EUROPE 2 POP TV + ACTIVATION NETFLIX TRACE URBAN + SS WWE HD TV BREIZH TV5 MONDE (Afrique) + NATIONAL GEOGRAPHIC ENG TV5 MONDE FR + STUDIO UNIVERSAL XXL FRANCE 24 BEIN SPORTS 1 HD @@ -155,7 +159,7 @@ GOLF+ HD A+ NOLLYWOOD TV france - CHERIE 25 + RMC LIFE CARTOON NETWORK BOOMERANG CANAL+ SPORT 360 HD @@ -174,6 +178,7 @@ TEST C+ ACTION CENTRE MUSEUM TV + MBS DREAMIN WARNER TV WARNER TV NEXT diff --git a/sites/canalplus.com/canalplus.com_nc.channels.xml b/sites/canalplus.com/canalplus.com_nc.channels.xml index e91062d26..4265ac83b 100644 --- a/sites/canalplus.com/canalplus.com_nc.channels.xml +++ b/sites/canalplus.com/canalplus.com_nc.channels.xml @@ -16,8 +16,8 @@ CANAL+ CINEMA(S) PUNCH TV CNN - DAZN 1 - DAZN 2 + CNEWS PRIME + EUROPE 1 TV DAZN 3 CANAL+ SPORT HD DAZN 4 @@ -36,10 +36,14 @@ CINEWESTERN CINE NANAR VOIR+ + CANAL+ GRAND ECRAN HD EUROSPORT 1 EUROSPORT 2 + T18 + NOVO19 FRANCE 3 FRANCE 5 + MIEUX CNEWS INFOSPORT+ LCI @@ -100,7 +104,7 @@ TCM CINEMA CANAL+ KIDS HD GOLF+ - CHERIE 25 + RMC LIFE CARTOON NETWORK BOOMERANG CANAL+ SPORT 360 @@ -134,7 +138,7 @@ BFM BUSINESS RMC STORY SPORT EN FRANCE - CSTAR HITS + EUROPE 2 POP TV CANAL+ DOCS ABC AUSTRALIA HISTOIRE TV 24/24 diff --git a/sites/canalplus.com/canalplus.com_ne.channels.xml b/sites/canalplus.com/canalplus.com_ne.channels.xml index d94740352..5837c0e61 100644 --- a/sites/canalplus.com/canalplus.com_ne.channels.xml +++ b/sites/canalplus.com/canalplus.com_ne.channels.xml @@ -22,7 +22,6 @@ BOSOLO TV RTCE MALAIKA TV - HK6 HERITAGE TV E! Bukedde TV @@ -35,8 +34,6 @@ France 2 INT MANGAS RTB ZENITH - HOPE TV - RTNK MEZZO HOREB TV MTV France @@ -55,13 +52,12 @@ AFRIKINFO TV EVANGILE TV REFLET TV + TRACE CHRISTMAS TOUBA TV TELEMUSIK SENEGAL MOURCHID TV - TELE-ECOLE AL MOURIDIYYAH TV MALIKIA TV - CANAL EDUCATION FULBE TF1 KAYES TV @@ -69,6 +65,7 @@ TMC SEGOU TV SUNNA TV SAVANA + CANAL+ CAN GO TV HUSTLER HD TROPIC TV @@ -80,11 +77,9 @@ GALAXIE TELE FRANCE 24 BALAFON TV - TAMBARIN HAUSA TV DASH TV BETV HTV BURUNDI - TPMP RTB 2STV ISIBO TV @@ -121,8 +116,8 @@ TELE CONGO BENIN TV HD RTNC + CANAL+ CAN IVOIRE PRIVATE TV - WILDEARTH TPT+ TRACE AFRICA AFRIQUE VOIR+ @@ -147,7 +142,6 @@ M7 RTB 3 TV AL HOUDA - JES TV SUNNA TV ZARMA TAURARUWA FOR YOU TV @@ -155,7 +149,6 @@ TRACE MBOA SUN+ TV TV+ AFRIQUE - LPC NOLLYWOOD TV RTI2 TV TOGO @@ -170,18 +163,18 @@ CONGO 26 ISHUSHO TV MRTV - SHIF TV + CHIF TV GC7 GC2 GC6 ESPERANCE TV BUJA TV AL JAZEERA ENG - BET ENG + BET (ENG) UNIVERSAL GC1 SHADOW TV - CANAL+ ELLES + C+ MAGIC PARAMOUNT NETWORK SS FOOTBALL PLUS HD SS FOOTBALL HD @@ -206,7 +199,6 @@ BBLACK AFRICA TELE FONTAINE VIE CNN - TLC CARTOON NETWORK CARTOONITO BOOMERANG @@ -217,11 +209,9 @@ RTB 3 dupli TVCA RTB dupli - TOZALI TV LUMEN CHRISTI PRC JESUS 24 TV - SUNNA TV CH3 CH4 PARLEMENT TV @@ -233,17 +223,30 @@ BCN TV BRIK TV AL NASSR + BENIN TV ALAFIA + ACTIVATION NETFLIX + DNTV + AFRICA MAGIC HAUSA + AFRICA MAGIC YORUBA + MAISHA MAGIC EAST + MAISHA MAGIC PLUS + TEST AFRIQUE + MIEUX + EUROPE 2 POP TV GULLI AFRICA NOVELAS TV + TRACE IVOIRE PACIS TV MY MEDIA PRIME SCIENCE ET VIE TV ENGLISH CLUB TV + ZEE ALWAN FASHION AFRICA TV SEN TV ASONGA TV DIGITAL CONGO TELE 50 + SS WWE DRTV TV MAURITANIE IMPACT TV @@ -252,15 +255,24 @@ BUSINESS 24 CANAL+ SPORT 4 CANAL+ SPORT 5 + VOIR+ RDC ZEE MAGIC ORTM2 EVASION TV RTD + GOLF+ HD + LOVE NATURE CANAL+ FAMILY OUEST ONE TV + CNEWS PRIME + EUROPE 1 TV + AES TV HD + MAISHA MAGIC BONGO + NATIONAL GEOGRAPHIC ENG + STUDIO UNIVERSAL SSM TV MCR TV - OMEGA TV + SUPERSPORT ACTION AFRICANEWS E-TELEVISION ESPACE TV @@ -278,12 +290,11 @@ TREK J-ONE BANTAMBA TV - TRACE MZIKI CNBC AFRICA WALF TV LTM MEDI1 TV - CH1 + CNEWS PRIME IVOIRE TV Music UNIVERS TV MIRACLE TV+ @@ -313,7 +324,7 @@ MUSEUM TV CANAL 2 MOVIES EMCI - CH2 + EUROPE 1 TV A+ IVOIRE Antenne VISION 4 RCA AREWA 24 @@ -331,13 +342,11 @@ TM1 TOUTE L HISTOIRE PSTV - FARIN WATA KC2 TV1 TV O FLASH TV ISANGO STAR TV - GENESIS TV BTN TV CARTOON NETWORK Africa SA TNT Africa @@ -352,7 +361,7 @@ LCA RENOUVEAU TV RTDS - E! ENG + BRAVO ENG TELEMUNDO AFRICA MAGIC EPIC ZEE WORLD @@ -361,7 +370,7 @@ AFRICA MAGIC SHOWCASE MNET MOVIES 3 MNET MOVIES 4 - DISCOVER CHANNEL ENG + DISCOVERY CHANNEL ENG SS EPL SS LA LIGA CANAL 3 BURKINA @@ -375,9 +384,7 @@ TVC DOUNIA BONFEREY - SUNNA TV TVGE - CAPITAL SANTE TV MIKUBA TV LUDIKIDS OI VIXEN diff --git a/sites/canalplus.com/canalplus.com_pf.channels.xml b/sites/canalplus.com/canalplus.com_pf.channels.xml index 65b3abf7e..5532f0887 100644 --- a/sites/canalplus.com/canalplus.com_pf.channels.xml +++ b/sites/canalplus.com/canalplus.com_pf.channels.xml @@ -27,7 +27,6 @@ BEIN SPORTS 3 PLANETE+ OCS HD - C8 COMEDIE+ LCP DORCEL TV @@ -46,8 +45,7 @@ USHUAÏA TV TiJi PIWI+ - C Star hits en Fr - NRJ 12 + EUROPE 2 POP TV RMC STORY Seasons Histoire TV @@ -74,11 +72,7 @@ CANAL EVENEMENT CNN SPORT EN FRANCE - DAZN 1 - DAZN 2 - DAZN 3 - DAZN 4 - DAZN 5 + EUROPE 1 TV EVANGILE TV RTL9 MANGAS @@ -92,11 +86,21 @@ BEIN SPORTS MAX 8 BEIN SPORTS MAX 9 BEIN SPORTS MAX 10 + CANAL+ GRAND ECRAN HD + T18 + NOVO19 + L'EQUIPE + MIEUX + COMEDY CENTRAL + MTV + LOVE NATURE + DOG & CAT TV + NICKELODEON JUNIOR + NICKELODEON DISCOVERY CHANNEL CANAL+ BOX OFFICE - CANAL+ SERIES TCM CINEMA - CHERIE 25 + RMC LIFE CARTOON NETWORK BOOMERANG PLANETE+ CRIME diff --git a/sites/canalplus.com/canalplus.com_pl.channels.xml b/sites/canalplus.com/canalplus.com_pl.channels.xml index 79289d828..4e3ead333 100644 --- a/sites/canalplus.com/canalplus.com_pl.channels.xml +++ b/sites/canalplus.com/canalplus.com_pl.channels.xml @@ -2,6 +2,7 @@ WP BABY TV + Dorcel TV TVP 1 4FUN DISCOVERY LIFE HD @@ -22,7 +23,7 @@ EUROSPORT 2 HD KINO POLSKA AMC HD - MTV ROCKS + MTV 90s MTV POLSKA polsat 2 TVPULSE HD @@ -32,8 +33,9 @@ TVN STYLE HD TVN TURBO HD TVP 2 + TVP KULTURA TVP Sport HD - NickMusic + MTV MUSIC HGTV TVN 24 BiS HD TVP INFO @@ -43,6 +45,8 @@ HBO 2 HD FILMBOX PREMIUM HD FILMBOX EXTRA + TVP POLONIA + TVP HD DISNEY CHANNEL HD POLSAT JIM JAM NICK. @@ -62,27 +66,35 @@ Warner TV TRAVEL CHANNEL HD TV4 + TVP HISTORIA FILMBOX FAMILY - MTV LIVE + MTV LIVE HD TVN 7 HD TVN ESKA TV EXTRA ID INVESTIGATION BBC News + TVS NAT GEO WILD HD ANIMAL PLANET HD DISNEY XD + Blue Hustler + Private TV BBC FIRST HD FX - MTV 00 + MTV 00s TVP SERIALE POLSAT COMEDY CENTRAL EXTRA HD BBC EARTH POLSAT CAFE HD + POLSAT FILM HD POLSAT POLSAT PLAY HD + TV 6 HD ROMANCE TV HD PARAMOUNT CHANNEL HD + SUPER POLSAT HD + HUSTLER HD TTV NICK JR. NICKTOONS HD @@ -90,6 +102,7 @@ POLSAT CRIME & INVESTIGATION HISTORY HD SUNDANCE TV HD + Redlight HD 4FUN HITS GOLD MINIMINI+ HD PLANETE+ HD @@ -105,7 +118,8 @@ ALE KINO+ HD ELEVEN SPORTS 2 HD CANAL+ SPORT 5 - Autopromocja + CANAL+ FAMILY HD + TVP ROZRYWKA polotv PULS 2 NAT GEO PEOPLE HD @@ -113,19 +127,26 @@ KINO POLSKA MUZYKA Film Cafe 4FUN DANCE - CBS REALITY + Program 12 + POLSAT Seriale SCI FI 13 ULICA HD MOTOWIZJA HD STOPKLATKA TV (new) + FOKUS TV DISCO POLO MUSIC + TVC VOX MUSIC TV + TVP ABC POWER TV ADVENTURE HD TV REPUBLIKA + POLSAT MUSIC HD HISTORY 2 HD CANAL+ EXTRA 17 FX COMEDY + Active Family + TVN FABUŁA HD CANAL+ SERIALE HD CANAL+ SPORT 2 CANAL+ DOKUMENT HD @@ -139,6 +160,7 @@ ELEVEN SPORTS 3 HD eskarock ESKA TV + NOWA TV FOOD NETWORK DEUTSCHE WELLE NUTA TV @@ -153,26 +175,31 @@ POLSAT SPORT PREMIUM 4 POLSAT SPORT PREMIUM 5 POLSAT SPORT PREMIUM 6 + HOME TV CANAL+ PREMIUM CANAL+ PREMIUM CANAL+ SPORT 3 CANAL+ SPORT 4 + StudioMed TV Eleven Sports 1 4K - CLUB MTV + GOLF CHANNEL HD + MTV DANCE MTV HITS - VH1 CLASSIC + Program 13 BIZNES24 EURONEWS HD CNBC + TVP DOKUMENT WPOLSCE 24 NOVELAS+ VIVID RED Sejm RP + Antena CANAL+ CANAL+ Sport (EPL) CANAL+ SPORT2 CANAL+ EXTRA 18 - CANAL+ EXTRA 15 + Canal+ Now TeenNick polsat games BLOOMBERG @@ -206,7 +233,9 @@ TVP 3 Kielce TVP 3 Olsztyn TVP 3 Opole + Current Time TV CANAL+ LIVE 5 + NUTA GOLD Alfa TVP TVP World TVP Historia 2 @@ -214,8 +243,12 @@ TVP ABC 2 TVP Nauka TVP Kobieta + CTV - DLA CIEBIE + TVC SUPER + SZLAGIER TV VIASAT TRUE CRIME CANAL+ 360 HD + Love Nature 4K CANAL+ EXTRA 2 HD CANAL+ EXTRA 3 HD CANAL+ EXTRA 4 HD @@ -223,14 +256,24 @@ CANAL+ EXTRA 6 HD CANAL+ EXTRA 7 HD CANAL+ EXTRA 1 HD + WYDARZENIA 24 + POLSAT DOKU HD + POLSAT RODZINA HD CANAL+ LIVE 6 STREFA ABONENTA wPolsce24 - Polsat - PulsPL - TV4PL - ZoomTV - Stopklatka TV + Program 7 + Program 8 + Program 9 + Program 10 + STOPKLATKA TV + Polsat + PULS + TV4 + Zoom TV + Stopklatka TV + Kabaret TV + Kanal Zero CANAL+ LIVE 1 CANAL+ LIVE 2 CANAL+ LIVE 3 diff --git a/sites/canalplus.com/canalplus.com_re.channels.xml b/sites/canalplus.com/canalplus.com_re.channels.xml index 3aaef7c43..24dae4526 100644 --- a/sites/canalplus.com/canalplus.com_re.channels.xml +++ b/sites/canalplus.com/canalplus.com_re.channels.xml @@ -4,7 +4,6 @@ 13EME RUE MBC 2 ACTION - ANTENNE REUNION MBC 3 ARTE France BBC NEWS @@ -25,12 +24,8 @@ CINE+ FAMILY CINE+ FRISSON OCS HD - CH1 - CH2 - CH3 - CH4 + EUROPE 1 TV COMEDIE+ - CH5 E! ENTERTAINMENT EQUIDIA SS EPL @@ -42,7 +37,7 @@ AL JAZEERA ENG FRANCE 3 FRANCE 5 - BET ENG + BET (ENG) CNEWS TELEMUNDO DSTV INFOSPORT+ @@ -59,7 +54,7 @@ RFM TV NICKELODEON JR (DSTV) MEZZO - E! Entertainment DSTV + BRAVO MTV France AFR MAGIC EPIC TFX @@ -79,22 +74,30 @@ BEIN SPORTS MAX 10 CANAL+ FAMILY CANAL+ POP - CANAL+ ELLES + CANAL+ MAGIC MANGAS PASSION BOLLYWOOD REUNION 1ERE TVM 2 MALAGASY TV - FREE TV + KULTURA TV REAL TV MADI TV TEVA TF1 + T18 + MIEUX TMC + CANAL+ CAN HD + EUROPE 2 POP TV + ACTIVATION NETFLIX TRACE URBAN + SS WWE HD TV BREIZH TV5 MONDE (Afrique) + NATIONAL GEOGRAPHIC ENG TV5 MONDE FR + STUDIO UNIVERSAL XXL FRANCE 24 BEIN SPORTS 1 HD @@ -155,7 +158,7 @@ GOLF+ HD A+ NOLLYWOOD TV france - CHERIE 25 + RMC LIFE CARTOON NETWORK BOOMERANG CANAL+ SPORT 360 HD @@ -174,6 +177,7 @@ TEST C+ ACTION CENTRE MUSEUM TV + MBS DREAMIN WARNER TV WARNER TV NEXT @@ -221,4 +225,5 @@ CANAL+LIVE 17 CANAL+LIVE 18 TCM CINEMA + ANTENNE REUNION diff --git a/sites/canalplus.com/canalplus.com_rw.channels.xml b/sites/canalplus.com/canalplus.com_rw.channels.xml index 92de1d7bf..580ec7b85 100644 --- a/sites/canalplus.com/canalplus.com_rw.channels.xml +++ b/sites/canalplus.com/canalplus.com_rw.channels.xml @@ -22,7 +22,6 @@ BOSOLO TV RTCE MALAIKA TV - HK6 HERITAGE TV E! Bukedde TV @@ -35,8 +34,6 @@ France 2 INT MANGAS RTB ZENITH - HOPE TV - RTNK MEZZO HOREB TV MTV France @@ -55,13 +52,12 @@ AFRIKINFO TV EVANGILE TV REFLET TV + TRACE CHRISTMAS TOUBA TV TELEMUSIK SENEGAL MOURCHID TV - TELE-ECOLE AL MOURIDIYYAH TV MALIKIA TV - CANAL EDUCATION FULBE TF1 KAYES TV @@ -69,6 +65,7 @@ TMC SEGOU TV SUNNA TV SAVANA + CANAL+ CAN GO TV HUSTLER HD TROPIC TV @@ -80,11 +77,9 @@ GALAXIE TELE FRANCE 24 BALAFON TV - TAMBARIN HAUSA TV DASH TV BETV HTV BURUNDI - TPMP RTB 2STV ISIBO TV @@ -121,8 +116,8 @@ TELE CONGO BENIN TV HD RTNC + CANAL+ CAN IVOIRE PRIVATE TV - WILDEARTH TPT+ TRACE AFRICA AFRIQUE VOIR+ @@ -147,7 +142,6 @@ M7 RTB 3 TV AL HOUDA - JES TV SUNNA TV ZARMA TAURARUWA FOR YOU TV @@ -155,7 +149,6 @@ TRACE MBOA SUN+ TV TV+ AFRIQUE - LPC NOLLYWOOD TV RTI2 TV TOGO @@ -170,18 +163,18 @@ CONGO 26 ISHUSHO TV MRTV - SHIF TV + CHIF TV GC7 GC2 GC6 ESPERANCE TV BUJA TV AL JAZEERA ENG - BET ENG + BET (ENG) UNIVERSAL GC1 SHADOW TV - CANAL+ ELLES + C+ MAGIC PARAMOUNT NETWORK SS FOOTBALL PLUS HD SS FOOTBALL HD @@ -206,7 +199,6 @@ BBLACK AFRICA TELE FONTAINE VIE CNN - TLC CARTOON NETWORK CARTOONITO BOOMERANG @@ -217,11 +209,9 @@ RTB 3 dupli TVCA RTB dupli - TOZALI TV LUMEN CHRISTI PRC JESUS 24 TV - SUNNA TV CH3 CH4 PARLEMENT TV @@ -233,17 +223,30 @@ BCN TV BRIK TV AL NASSR + BENIN TV ALAFIA + ACTIVATION NETFLIX + DNTV + AFRICA MAGIC HAUSA + AFRICA MAGIC YORUBA + MAISHA MAGIC EAST + MAISHA MAGIC PLUS + TEST AFRIQUE + MIEUX + EUROPE 2 POP TV GULLI AFRICA NOVELAS TV + TRACE IVOIRE PACIS TV MY MEDIA PRIME SCIENCE ET VIE TV ENGLISH CLUB TV + ZEE ALWAN FASHION AFRICA TV SEN TV ASONGA TV DIGITAL CONGO TELE 50 + SS WWE DRTV TV MAURITANIE IMPACT TV @@ -252,15 +255,24 @@ BUSINESS 24 CANAL+ SPORT 4 CANAL+ SPORT 5 + VOIR+ RDC ZEE MAGIC ORTM2 EVASION TV RTD + GOLF+ HD + LOVE NATURE CANAL+ FAMILY OUEST ONE TV + CNEWS PRIME + EUROPE 1 TV + AES TV HD + MAISHA MAGIC BONGO + NATIONAL GEOGRAPHIC ENG + STUDIO UNIVERSAL SSM TV MCR TV - OMEGA TV + SUPERSPORT ACTION AFRICANEWS E-TELEVISION ESPACE TV @@ -278,12 +290,11 @@ TREK J-ONE BANTAMBA TV - TRACE MZIKI CNBC AFRICA WALF TV LTM MEDI1 TV - CH1 + CNEWS PRIME IVOIRE TV Music UNIVERS TV MIRACLE TV+ @@ -313,7 +324,7 @@ MUSEUM TV CANAL 2 MOVIES EMCI - CH2 + EUROPE 1 TV A+ IVOIRE Antenne VISION 4 RCA AREWA 24 @@ -331,13 +342,11 @@ TM1 TOUTE L HISTOIRE PSTV - FARIN WATA KC2 TV1 TV O FLASH TV ISANGO STAR TV - GENESIS TV BTN TV CARTOON NETWORK Africa SA TNT Africa @@ -352,7 +361,7 @@ LCA RENOUVEAU TV RTDS - E! ENG + BRAVO ENG TELEMUNDO AFRICA MAGIC EPIC ZEE WORLD @@ -361,7 +370,7 @@ AFRICA MAGIC SHOWCASE MNET MOVIES 3 MNET MOVIES 4 - DISCOVER CHANNEL ENG + DISCOVERY CHANNEL ENG SS EPL SS LA LIGA CANAL 3 BURKINA @@ -375,9 +384,7 @@ TVC DOUNIA BONFEREY - SUNNA TV TVGE - CAPITAL SANTE TV MIKUBA TV LUDIKIDS OI VIXEN diff --git a/sites/canalplus.com/canalplus.com_sl.channels.xml b/sites/canalplus.com/canalplus.com_sl.channels.xml index 666af5c7d..1318dc4e3 100644 --- a/sites/canalplus.com/canalplus.com_sl.channels.xml +++ b/sites/canalplus.com/canalplus.com_sl.channels.xml @@ -22,7 +22,6 @@ BOSOLO TV RTCE MALAIKA TV - HK6 HERITAGE TV E! Bukedde TV @@ -35,8 +34,6 @@ France 2 INT MANGAS RTB ZENITH - HOPE TV - RTNK MEZZO HOREB TV MTV France @@ -55,13 +52,12 @@ AFRIKINFO TV EVANGILE TV REFLET TV + TRACE CHRISTMAS TOUBA TV TELEMUSIK SENEGAL MOURCHID TV - TELE-ECOLE AL MOURIDIYYAH TV MALIKIA TV - CANAL EDUCATION FULBE TF1 KAYES TV @@ -69,6 +65,7 @@ TMC SEGOU TV SUNNA TV SAVANA + CANAL+ CAN GO TV HUSTLER HD TROPIC TV @@ -80,11 +77,9 @@ GALAXIE TELE FRANCE 24 BALAFON TV - TAMBARIN HAUSA TV DASH TV BETV HTV BURUNDI - TPMP RTB 2STV ISIBO TV @@ -121,8 +116,8 @@ TELE CONGO BENIN TV HD RTNC + CANAL+ CAN IVOIRE PRIVATE TV - WILDEARTH TPT+ TRACE AFRICA AFRIQUE VOIR+ @@ -147,7 +142,6 @@ M7 RTB 3 TV AL HOUDA - JES TV SUNNA TV ZARMA TAURARUWA FOR YOU TV @@ -155,7 +149,6 @@ TRACE MBOA SUN+ TV TV+ AFRIQUE - LPC NOLLYWOOD TV RTI2 TV TOGO @@ -170,18 +163,18 @@ CONGO 26 ISHUSHO TV MRTV - SHIF TV + CHIF TV GC7 GC2 GC6 ESPERANCE TV BUJA TV AL JAZEERA ENG - BET ENG + BET (ENG) UNIVERSAL GC1 SHADOW TV - CANAL+ ELLES + C+ MAGIC PARAMOUNT NETWORK SS FOOTBALL PLUS HD SS FOOTBALL HD @@ -206,7 +199,6 @@ BBLACK AFRICA TELE FONTAINE VIE CNN - TLC CARTOON NETWORK CARTOONITO BOOMERANG @@ -217,11 +209,9 @@ RTB 3 dupli TVCA RTB dupli - TOZALI TV LUMEN CHRISTI PRC JESUS 24 TV - SUNNA TV CH3 CH4 PARLEMENT TV @@ -233,17 +223,30 @@ BCN TV BRIK TV AL NASSR + BENIN TV ALAFIA + ACTIVATION NETFLIX + DNTV + AFRICA MAGIC HAUSA + AFRICA MAGIC YORUBA + MAISHA MAGIC EAST + MAISHA MAGIC PLUS + TEST AFRIQUE + MIEUX + EUROPE 2 POP TV GULLI AFRICA NOVELAS TV + TRACE IVOIRE PACIS TV MY MEDIA PRIME SCIENCE ET VIE TV ENGLISH CLUB TV + ZEE ALWAN FASHION AFRICA TV SEN TV ASONGA TV DIGITAL CONGO TELE 50 + SS WWE DRTV TV MAURITANIE IMPACT TV @@ -252,15 +255,24 @@ BUSINESS 24 CANAL+ SPORT 4 CANAL+ SPORT 5 + VOIR+ RDC ZEE MAGIC ORTM2 EVASION TV RTD + GOLF+ HD + LOVE NATURE CANAL+ FAMILY OUEST ONE TV + CNEWS PRIME + EUROPE 1 TV + AES TV HD + MAISHA MAGIC BONGO + NATIONAL GEOGRAPHIC ENG + STUDIO UNIVERSAL SSM TV MCR TV - OMEGA TV + SUPERSPORT ACTION AFRICANEWS E-TELEVISION ESPACE TV @@ -278,12 +290,11 @@ TREK J-ONE BANTAMBA TV - TRACE MZIKI CNBC AFRICA WALF TV LTM MEDI1 TV - CH1 + CNEWS PRIME IVOIRE TV Music UNIVERS TV MIRACLE TV+ @@ -313,7 +324,7 @@ MUSEUM TV CANAL 2 MOVIES EMCI - CH2 + EUROPE 1 TV A+ IVOIRE Antenne VISION 4 RCA AREWA 24 @@ -331,13 +342,11 @@ TM1 TOUTE L HISTOIRE PSTV - FARIN WATA KC2 TV1 TV O FLASH TV ISANGO STAR TV - GENESIS TV BTN TV CARTOON NETWORK Africa SA TNT Africa @@ -352,7 +361,7 @@ LCA RENOUVEAU TV RTDS - E! ENG + BRAVO ENG TELEMUNDO AFRICA MAGIC EPIC ZEE WORLD @@ -361,7 +370,7 @@ AFRICA MAGIC SHOWCASE MNET MOVIES 3 MNET MOVIES 4 - DISCOVER CHANNEL ENG + DISCOVERY CHANNEL ENG SS EPL SS LA LIGA CANAL 3 BURKINA @@ -375,9 +384,7 @@ TVC DOUNIA BONFEREY - SUNNA TV TVGE - CAPITAL SANTE TV MIKUBA TV LUDIKIDS OI VIXEN diff --git a/sites/canalplus.com/canalplus.com_sn.channels.xml b/sites/canalplus.com/canalplus.com_sn.channels.xml index 029c8a124..b709453d3 100644 --- a/sites/canalplus.com/canalplus.com_sn.channels.xml +++ b/sites/canalplus.com/canalplus.com_sn.channels.xml @@ -22,7 +22,6 @@ BOSOLO TV RTCE MALAIKA TV - HK6 HERITAGE TV E! Bukedde TV @@ -35,8 +34,6 @@ France 2 INT MANGAS RTB ZENITH - HOPE TV - RTNK MEZZO HOREB TV MTV France @@ -55,13 +52,12 @@ AFRIKINFO TV EVANGILE TV REFLET TV + TRACE CHRISTMAS TOUBA TV TELEMUSIK SENEGAL MOURCHID TV - TELE-ECOLE AL MOURIDIYYAH TV MALIKIA TV - CANAL EDUCATION FULBE TF1 KAYES TV @@ -69,6 +65,7 @@ TMC SEGOU TV SUNNA TV SAVANA + CANAL+ CAN GO TV HUSTLER HD TROPIC TV @@ -80,13 +77,10 @@ GALAXIE TELE FRANCE 24 BALAFON TV - TAMBARIN HAUSA TV DASH TV BETV HTV BURUNDI - TPMP RTB - 2STV ISIBO TV CANAL+ SPORT 2 CANAL+ CINEMA CENTRE @@ -121,8 +115,8 @@ TELE CONGO BENIN TV HD RTNC + CANAL+ CAN IVOIRE PRIVATE TV - WILDEARTH TPT+ TRACE AFRICA AFRIQUE VOIR+ @@ -147,7 +141,6 @@ M7 RTB 3 TV AL HOUDA - JES TV SUNNA TV ZARMA TAURARUWA FOR YOU TV @@ -155,7 +148,6 @@ TRACE MBOA SUN+ TV TV+ AFRIQUE - LPC NOLLYWOOD TV RTI2 TV TOGO @@ -170,18 +162,18 @@ CONGO 26 ISHUSHO TV MRTV - SHIF TV + CHIF TV GC7 GC2 GC6 ESPERANCE TV BUJA TV AL JAZEERA ENG - BET ENG + BET (ENG) UNIVERSAL GC1 SHADOW TV - CANAL+ ELLES + C+ MAGIC PARAMOUNT NETWORK SS FOOTBALL PLUS HD SS FOOTBALL HD @@ -206,7 +198,6 @@ BBLACK AFRICA TELE FONTAINE VIE CNN - TLC CARTOON NETWORK CARTOONITO BOOMERANG @@ -217,11 +208,9 @@ RTB 3 dupli TVCA RTB dupli - TOZALI TV LUMEN CHRISTI PRC JESUS 24 TV - SUNNA TV CH3 CH4 PARLEMENT TV @@ -233,17 +222,30 @@ BCN TV BRIK TV AL NASSR + BENIN TV ALAFIA + ACTIVATION NETFLIX + DNTV + AFRICA MAGIC HAUSA + AFRICA MAGIC YORUBA + MAISHA MAGIC EAST + MAISHA MAGIC PLUS + TEST AFRIQUE + MIEUX + EUROPE 2 POP TV GULLI AFRICA NOVELAS TV + TRACE IVOIRE PACIS TV MY MEDIA PRIME SCIENCE ET VIE TV ENGLISH CLUB TV + ZEE ALWAN FASHION AFRICA TV SEN TV ASONGA TV DIGITAL CONGO TELE 50 + SS WWE DRTV TV MAURITANIE IMPACT TV @@ -252,15 +254,24 @@ BUSINESS 24 CANAL+ SPORT 4 CANAL+ SPORT 5 + VOIR+ RDC ZEE MAGIC ORTM2 EVASION TV RTD + GOLF+ HD + LOVE NATURE CANAL+ FAMILY OUEST ONE TV + CNEWS PRIME + EUROPE 1 TV + AES TV HD + MAISHA MAGIC BONGO + NATIONAL GEOGRAPHIC ENG + STUDIO UNIVERSAL SSM TV MCR TV - OMEGA TV + SUPERSPORT ACTION AFRICANEWS E-TELEVISION ESPACE TV @@ -278,12 +289,11 @@ TREK J-ONE BANTAMBA TV - TRACE MZIKI CNBC AFRICA WALF TV LTM MEDI1 TV - CH1 + CNEWS PRIME IVOIRE TV Music UNIVERS TV MIRACLE TV+ @@ -313,7 +323,7 @@ MUSEUM TV CANAL 2 MOVIES EMCI - CH2 + EUROPE 1 TV A+ IVOIRE Antenne VISION 4 RCA AREWA 24 @@ -331,13 +341,11 @@ TM1 TOUTE L HISTOIRE PSTV - FARIN WATA KC2 TV1 TV O FLASH TV ISANGO STAR TV - GENESIS TV BTN TV CARTOON NETWORK Africa SA TNT Africa @@ -352,7 +360,7 @@ LCA RENOUVEAU TV RTDS - E! ENG + BRAVO ENG TELEMUNDO AFRICA MAGIC EPIC ZEE WORLD @@ -361,7 +369,7 @@ AFRICA MAGIC SHOWCASE MNET MOVIES 3 MNET MOVIES 4 - DISCOVER CHANNEL ENG + DISCOVERY CHANNEL ENG SS EPL SS LA LIGA CANAL 3 BURKINA @@ -375,9 +383,7 @@ TVC DOUNIA BONFEREY - SUNNA TV TVGE - CAPITAL SANTE TV MIKUBA TV LUDIKIDS OI VIXEN @@ -389,4 +395,5 @@ ECCLESIA TV SOS DOCTEUR TV CANAL+ DOCS + 2STV diff --git a/sites/canalplus.com/canalplus.com_td.channels.xml b/sites/canalplus.com/canalplus.com_td.channels.xml index 1f75ec53d..9e4d672f1 100644 --- a/sites/canalplus.com/canalplus.com_td.channels.xml +++ b/sites/canalplus.com/canalplus.com_td.channels.xml @@ -22,7 +22,6 @@ BOSOLO TV RTCE MALAIKA TV - HK6 HERITAGE TV E! Bukedde TV @@ -35,8 +34,6 @@ France 2 INT MANGAS RTB ZENITH - HOPE TV - RTNK MEZZO HOREB TV MTV France @@ -55,13 +52,12 @@ AFRIKINFO TV EVANGILE TV REFLET TV + TRACE CHRISTMAS TOUBA TV TELEMUSIK SENEGAL MOURCHID TV - TELE-ECOLE AL MOURIDIYYAH TV MALIKIA TV - CANAL EDUCATION FULBE TF1 KAYES TV @@ -69,6 +65,7 @@ TMC SEGOU TV SUNNA TV SAVANA + CANAL+ CAN GO TV HUSTLER HD TROPIC TV @@ -80,11 +77,9 @@ GALAXIE TELE FRANCE 24 BALAFON TV - TAMBARIN HAUSA TV DASH TV BETV HTV BURUNDI - TPMP RTB 2STV ISIBO TV @@ -121,8 +116,8 @@ TELE CONGO BENIN TV HD RTNC + CANAL+ CAN IVOIRE PRIVATE TV - WILDEARTH TPT+ TRACE AFRICA AFRIQUE VOIR+ @@ -147,7 +142,6 @@ M7 RTB 3 TV AL HOUDA - JES TV SUNNA TV ZARMA TAURARUWA FOR YOU TV @@ -155,7 +149,6 @@ TRACE MBOA SUN+ TV TV+ AFRIQUE - LPC NOLLYWOOD TV RTI2 TV TOGO @@ -170,18 +163,18 @@ CONGO 26 ISHUSHO TV MRTV - SHIF TV + CHIF TV GC7 GC2 GC6 ESPERANCE TV BUJA TV AL JAZEERA ENG - BET ENG + BET (ENG) UNIVERSAL GC1 SHADOW TV - CANAL+ ELLES + C+ MAGIC PARAMOUNT NETWORK SS FOOTBALL PLUS HD SS FOOTBALL HD @@ -206,7 +199,6 @@ BBLACK AFRICA TELE FONTAINE VIE CNN - TLC CARTOON NETWORK CARTOONITO BOOMERANG @@ -217,11 +209,9 @@ RTB 3 dupli TVCA RTB dupli - TOZALI TV LUMEN CHRISTI PRC JESUS 24 TV - SUNNA TV CH3 CH4 PARLEMENT TV @@ -233,17 +223,30 @@ BCN TV BRIK TV AL NASSR + BENIN TV ALAFIA + ACTIVATION NETFLIX + DNTV + AFRICA MAGIC HAUSA + AFRICA MAGIC YORUBA + MAISHA MAGIC EAST + MAISHA MAGIC PLUS + TEST AFRIQUE + MIEUX + EUROPE 2 POP TV GULLI AFRICA NOVELAS TV + TRACE IVOIRE PACIS TV MY MEDIA PRIME SCIENCE ET VIE TV ENGLISH CLUB TV + ZEE ALWAN FASHION AFRICA TV SEN TV ASONGA TV DIGITAL CONGO TELE 50 + SS WWE DRTV TV MAURITANIE IMPACT TV @@ -252,15 +255,24 @@ BUSINESS 24 CANAL+ SPORT 4 CANAL+ SPORT 5 + VOIR+ RDC ZEE MAGIC ORTM2 EVASION TV RTD + GOLF+ HD + LOVE NATURE CANAL+ FAMILY OUEST ONE TV + CNEWS PRIME + EUROPE 1 TV + AES TV HD + MAISHA MAGIC BONGO + NATIONAL GEOGRAPHIC ENG + STUDIO UNIVERSAL SSM TV MCR TV - OMEGA TV + SUPERSPORT ACTION AFRICANEWS E-TELEVISION ESPACE TV @@ -278,12 +290,11 @@ TREK J-ONE BANTAMBA TV - TRACE MZIKI CNBC AFRICA WALF TV LTM MEDI1 TV - CH1 + CNEWS PRIME IVOIRE TV Music UNIVERS TV MIRACLE TV+ @@ -313,7 +324,7 @@ MUSEUM TV CANAL 2 MOVIES EMCI - CH2 + EUROPE 1 TV A+ IVOIRE Antenne VISION 4 RCA AREWA 24 @@ -331,13 +342,11 @@ TM1 TOUTE L HISTOIRE PSTV - FARIN WATA KC2 TV1 TV O FLASH TV ISANGO STAR TV - GENESIS TV BTN TV CARTOON NETWORK Africa SA TNT Africa @@ -352,7 +361,7 @@ LCA RENOUVEAU TV RTDS - E! ENG + BRAVO ENG TELEMUNDO AFRICA MAGIC EPIC ZEE WORLD @@ -361,7 +370,7 @@ AFRICA MAGIC SHOWCASE MNET MOVIES 3 MNET MOVIES 4 - DISCOVER CHANNEL ENG + DISCOVERY CHANNEL ENG SS EPL SS LA LIGA CANAL 3 BURKINA @@ -375,9 +384,7 @@ TVC DOUNIA BONFEREY - SUNNA TV TVGE - CAPITAL SANTE TV MIKUBA TV LUDIKIDS OI VIXEN diff --git a/sites/canalplus.com/canalplus.com_tg.channels.xml b/sites/canalplus.com/canalplus.com_tg.channels.xml index 1051587d7..693b0fe3f 100644 --- a/sites/canalplus.com/canalplus.com_tg.channels.xml +++ b/sites/canalplus.com/canalplus.com_tg.channels.xml @@ -22,7 +22,6 @@ BOSOLO TV RTCE MALAIKA TV - HK6 HERITAGE TV E! Bukedde TV @@ -35,8 +34,6 @@ France 2 INT MANGAS RTB ZENITH - HOPE TV - RTNK MEZZO HOREB TV MTV France @@ -55,13 +52,12 @@ AFRIKINFO TV EVANGILE TV REFLET TV + TRACE CHRISTMAS TOUBA TV TELEMUSIK SENEGAL MOURCHID TV - TELE-ECOLE AL MOURIDIYYAH TV MALIKIA TV - CANAL EDUCATION FULBE TF1 KAYES TV @@ -69,6 +65,7 @@ TMC SEGOU TV SUNNA TV SAVANA + CANAL+ CAN GO TV HUSTLER HD TROPIC TV @@ -80,11 +77,9 @@ GALAXIE TELE FRANCE 24 BALAFON TV - TAMBARIN HAUSA TV DASH TV BETV HTV BURUNDI - TPMP RTB 2STV ISIBO TV @@ -121,8 +116,8 @@ TELE CONGO BENIN TV HD RTNC + CANAL+ CAN IVOIRE PRIVATE TV - WILDEARTH TPT+ TRACE AFRICA AFRIQUE VOIR+ @@ -147,7 +142,6 @@ M7 RTB 3 TV AL HOUDA - JES TV SUNNA TV ZARMA TAURARUWA FOR YOU TV @@ -155,7 +149,6 @@ TRACE MBOA SUN+ TV TV+ AFRIQUE - LPC NOLLYWOOD TV RTI2 TV TOGO @@ -170,18 +163,18 @@ CONGO 26 ISHUSHO TV MRTV - SHIF TV + CHIF TV GC7 GC2 GC6 ESPERANCE TV BUJA TV AL JAZEERA ENG - BET ENG + BET (ENG) UNIVERSAL GC1 SHADOW TV - CANAL+ ELLES + C+ MAGIC PARAMOUNT NETWORK SS FOOTBALL PLUS HD SS FOOTBALL HD @@ -206,7 +199,6 @@ BBLACK AFRICA TELE FONTAINE VIE CNN - TLC CARTOON NETWORK CARTOONITO BOOMERANG @@ -217,11 +209,9 @@ RTB 3 dupli TVCA RTB dupli - TOZALI TV LUMEN CHRISTI PRC JESUS 24 TV - SUNNA TV CH3 CH4 PARLEMENT TV @@ -233,17 +223,30 @@ BCN TV BRIK TV AL NASSR + BENIN TV ALAFIA + ACTIVATION NETFLIX + DNTV + AFRICA MAGIC HAUSA + AFRICA MAGIC YORUBA + MAISHA MAGIC EAST + MAISHA MAGIC PLUS + TEST AFRIQUE + MIEUX + EUROPE 2 POP TV GULLI AFRICA NOVELAS TV + TRACE IVOIRE PACIS TV MY MEDIA PRIME SCIENCE ET VIE TV ENGLISH CLUB TV + ZEE ALWAN FASHION AFRICA TV SEN TV ASONGA TV DIGITAL CONGO TELE 50 + SS WWE DRTV TV MAURITANIE IMPACT TV @@ -252,15 +255,24 @@ BUSINESS 24 CANAL+ SPORT 4 CANAL+ SPORT 5 + VOIR+ RDC ZEE MAGIC ORTM2 EVASION TV RTD + GOLF+ HD + LOVE NATURE CANAL+ FAMILY OUEST ONE TV + CNEWS PRIME + EUROPE 1 TV + AES TV HD + MAISHA MAGIC BONGO + NATIONAL GEOGRAPHIC ENG + STUDIO UNIVERSAL SSM TV MCR TV - OMEGA TV + SUPERSPORT ACTION AFRICANEWS E-TELEVISION ESPACE TV @@ -278,12 +290,11 @@ TREK J-ONE BANTAMBA TV - TRACE MZIKI CNBC AFRICA WALF TV LTM MEDI1 TV - CH1 + CNEWS PRIME IVOIRE TV Music UNIVERS TV MIRACLE TV+ @@ -313,7 +324,7 @@ MUSEUM TV CANAL 2 MOVIES EMCI - CH2 + EUROPE 1 TV A+ IVOIRE Antenne VISION 4 RCA AREWA 24 @@ -331,13 +342,11 @@ TM1 TOUTE L HISTOIRE PSTV - FARIN WATA KC2 TV1 TV O FLASH TV ISANGO STAR TV - GENESIS TV BTN TV CARTOON NETWORK Africa SA TNT Africa @@ -352,7 +361,7 @@ LCA RENOUVEAU TV RTDS - E! ENG + BRAVO ENG TELEMUNDO AFRICA MAGIC EPIC ZEE WORLD @@ -361,7 +370,7 @@ AFRICA MAGIC SHOWCASE MNET MOVIES 3 MNET MOVIES 4 - DISCOVER CHANNEL ENG + DISCOVERY CHANNEL ENG SS EPL SS LA LIGA CANAL 3 BURKINA @@ -375,9 +384,7 @@ TVC DOUNIA BONFEREY - SUNNA TV TVGE - CAPITAL SANTE TV MIKUBA TV LUDIKIDS OI VIXEN diff --git a/sites/canalplus.com/canalplus.com_wf.channels.xml b/sites/canalplus.com/canalplus.com_wf.channels.xml index 1d8574e10..331766fed 100644 --- a/sites/canalplus.com/canalplus.com_wf.channels.xml +++ b/sites/canalplus.com/canalplus.com_wf.channels.xml @@ -16,8 +16,8 @@ CANAL+ CINEMA(S) PUNCH TV CNN - DAZN 1 - DAZN 2 + CNEWS PRIME + EUROPE 1 TV DAZN 3 CANAL+ SPORT HD DAZN 4 @@ -36,10 +36,14 @@ CINEWESTERN CINE NANAR VOIR+ + CANAL+ GRAND ECRAN HD EUROSPORT 1 EUROSPORT 2 + T18 + NOVO19 FRANCE 3 FRANCE 5 + MIEUX CNEWS INFOSPORT+ LCI @@ -100,7 +104,7 @@ TCM CINEMA CANAL+ KIDS HD GOLF+ - CHERIE 25 + RMC LIFE CARTOON NETWORK BOOMERANG CANAL+ SPORT 360 @@ -134,7 +138,7 @@ BFM BUSINESS RMC STORY SPORT EN FRANCE - CSTAR HITS + EUROPE 2 POP TV CANAL+ DOCS ABC AUSTRALIA HISTOIRE TV 24/24 diff --git a/sites/canalplus.com/canalplus.com_yt.channels.xml b/sites/canalplus.com/canalplus.com_yt.channels.xml index b6d15f987..d6d982569 100644 --- a/sites/canalplus.com/canalplus.com_yt.channels.xml +++ b/sites/canalplus.com/canalplus.com_yt.channels.xml @@ -25,12 +25,8 @@ CINE+ FAMILY CINE+ FRISSON OCS HD - CH1 - CH2 - CH3 - CH4 + EUROPE 1 TV COMEDIE+ - CH5 E! ENTERTAINMENT EQUIDIA SS EPL @@ -42,7 +38,7 @@ AL JAZEERA ENG FRANCE 3 FRANCE 5 - BET ENG + BET (ENG) CNEWS TELEMUNDO DSTV INFOSPORT+ @@ -59,7 +55,7 @@ RFM TV NICKELODEON JR (DSTV) MEZZO - E! Entertainment DSTV + BRAVO MTV France AFR MAGIC EPIC TFX @@ -79,22 +75,30 @@ BEIN SPORTS MAX 10 CANAL+ FAMILY CANAL+ POP - CANAL+ ELLES + CANAL+ MAGIC MANGAS PASSION BOLLYWOOD REUNION 1ERE TVM 2 MALAGASY TV - FREE TV + KULTURA TV REAL TV MADI TV TEVA TF1 + T18 + MIEUX TMC + CANAL+ CAN HD + EUROPE 2 POP TV + ACTIVATION NETFLIX TRACE URBAN + SS WWE HD TV BREIZH TV5 MONDE (Afrique) + NATIONAL GEOGRAPHIC ENG TV5 MONDE FR + STUDIO UNIVERSAL XXL FRANCE 24 BEIN SPORTS 1 HD @@ -155,7 +159,7 @@ GOLF+ HD A+ NOLLYWOOD TV france - CHERIE 25 + RMC LIFE CARTOON NETWORK BOOMERANG CANAL+ SPORT 360 HD @@ -174,6 +178,7 @@ TEST C+ ACTION CENTRE MUSEUM TV + MBS DREAMIN WARNER TV WARNER TV NEXT diff --git a/sites/canalplus.com/readme.md b/sites/canalplus.com/readme.md index 8d3e72892..b0e0f9cf2 100644 --- a/sites/canalplus.com/readme.md +++ b/sites/canalplus.com/readme.md @@ -1,47 +1,49 @@ # canalplus.com -| Country | Code | URL | -| ------------------------ | ---- | ------------------------------------------ | -| Andorra | `ad` | https://www.canalplus.com/ad/programme-tv/ | -| Benign | `bj` | https://www.canalplus.com/bj/programme-tv/ | -| Burkina Faso | `bf` | https://www.canalplus.com/bf/programme-tv/ | -| Burundi | `bi` | https://www.canalplus.com/bi/programme-tv/ | -| Cabo Verde | `cv` | https://www.canalplus.com/cv/programme-tv/ | -| Cameroon | `cm` | https://www.canalplus.com/cm/programme-tv/ | -| Central African Republic | `cf` | https://www.canalplus.com/cf/programme-tv/ | -| Chad | `td` | https://www.canalplus.com/td/programme-tv/ | -| Congo | `cg` | https://www.canalplus.com/cg/programme-tv/ | -| Djibouti | `dj` | https://www.canalplus.com/dj/programme-tv/ | -| DRC | `cd` | https://www.canalplus.com/cd/programme-tv/ | -| Equatorial Guinea | `gp` | https://www.canalplus.com/gp/programme-tv/ | -| France | `fr` | https://www.canalplus.com/programme-tv/ | -| French Guiana | `gf` | https://www.canalplus.com/gf/programme-tv/ | -| French Polynesia | `pf` | https://www.canalplus.com/pf/programme-tv/ | -| Gabon | `ga` | https://www.canalplus.com/ga/programme-tv/ | -| Gambia | `gm` | https://www.canalplus.com/gm/programme-tv/ | -| Ghana | `gh` | https://www.canalplus.com/gh/programme-tv/ | -| Guinea-Bissau | `gw` | https://www.canalplus.com/gw/programme-tv/ | -| Guinea | `gn` | https://www.canalplus.com/gn/programme-tv/ | -| Haiti | `ht` | https://www.canalplus.com/ht/programme-tv/ | -| Ivory Coast | `ci` | https://www.canalplus.com/ci/programme-tv/ | -| Madagascar | `mg` | https://www.canalplus.com/mg/programme-tv/ | -| Mali | `ml` | https://www.canalplus.com/ml/programme-tv/ | -| Martinique | `mq` | https://www.canalplus.com/mq/programme-tv/ | -| Mauritania | `mr` | https://www.canalplus.com/mr/programme-tv/ | -| Mauritius | `mu` | https://www.canalplus.com/mu/programme-tv/ | -| Mayotte | `yt` | https://www.canalplus.com/yt/programme-tv/ | -| New Caledonia | `nc` | https://www.canalplus.com/nc/programme-tv/ | -| Niger | `ne` | https://www.canalplus.com/ne/programme-tv/ | -| Poland | `pl` | https://www.canalplus.com/pl/programme-tv/ | -| Rwanda | `rw` | https://www.canalplus.com/rw/programme-tv/ | -| Réunion | `re` | https://www.canalplus.com/re/programme-tv/ | -| Saint Barthélemy | `bl` | https://www.canalplus.com/bl/programme-tv/ | -| Saint-Martin | `mf` | https://www.canalplus.com/mf/programme-tv/ | -| Senegal | `sn` | https://www.canalplus.com/sn/programme-tv/ | -| Sierra Leone | `sl` | https://www.canalplus.com/sl/programme-tv/ | -| Switzerland | `ch` | https://www.canalplus.com/ch/programme-tv/ | -| Togo | `tg` | https://www.canalplus.com/tg/programme-tv/ | -| Wallis and Futuna | `wf` | https://www.canalplus.com/wf/programme-tv/ | +| Country | Code | URL | +| ------------------------ | -------- | ------------------------------------------ | +| Andorra | `ad` | https://www.canalplus.com/ad/programme-tv/ | +| Benin | `bj` | https://www.canalplus.com/bj/programme-tv/ | +| Burkina Faso | `bf` | https://www.canalplus.com/bf/programme-tv/ | +| Burundi | `bi` | https://www.canalplus.com/bi/programme-tv/ | +| Cabo Verde | `cv` | https://www.canalplus.com/cv/programme-tv/ | +| Cameroon | `cm` | https://www.canalplus.com/cm/programme-tv/ | +| Central African Republic | `cf` | https://www.canalplus.com/cf/programme-tv/ | +| Chad | `td` | https://www.canalplus.com/td/programme-tv/ | +| Congo | `cg` | https://www.canalplus.com/cg/programme-tv/ | +| Djibouti | `dj` | https://www.canalplus.com/dj/programme-tv/ | +| DRC | `cd` | https://www.canalplus.com/cd/programme-tv/ | +| Equatorial Guinea | `gp` | https://www.canalplus.com/gp/programme-tv/ | +| France | `fr` | https://www.canalplus.com/programme-tv/ | +| French Guiana | `gf` | https://www.canalplus.com/gf/programme-tv/ | +| French Polynesia | `pf` | https://www.canalplus.com/pf/programme-tv/ | +| Gabon | `ga` | https://www.canalplus.com/ga/programme-tv/ | +| Gambia | `gm` | https://www.canalplus.com/gm/programme-tv/ | +| Ghana | `gh` | https://www.canalplus.com/gh/programme-tv/ | +| Guinea-Bissau | `gw` | https://www.canalplus.com/gw/programme-tv/ | +| Guinea | `gn` | https://www.canalplus.com/gn/programme-tv/ | +| Haiti | `ht` | https://www.canalplus.com/ht/programme-tv/ | +| Ivory Coast | `ci` | https://www.canalplus.com/ci/programme-tv/ | +| Italy | `it` | | +| Madagascar | `mg` | https://www.canalplus.com/mg/programme-tv/ | +| Madagascar (alternative) | `mg_alt` | https://www.canalplus.com/mg/programme-tv/ | +| Mali | `ml` | https://www.canalplus.com/ml/programme-tv/ | +| Martinique | `mq` | https://www.canalplus.com/mq/programme-tv/ | +| Mauritania | `mr` | https://www.canalplus.com/mr/programme-tv/ | +| Mauritius | `mu` | https://www.canalplus.com/mu/programme-tv/ | +| Mayotte | `yt` | https://www.canalplus.com/yt/programme-tv/ | +| New Caledonia | `nc` | https://www.canalplus.com/nc/programme-tv/ | +| Niger | `ne` | https://www.canalplus.com/ne/programme-tv/ | +| Poland | `pl` | https://www.canalplus.com/pl/program-tv/ | +| Rwanda | `rw` | https://www.canalplus.com/rw/programme-tv/ | +| Réunion | `re` | https://www.canalplus.com/re/programme-tv/ | +| Saint Barthélemy | `bl` | https://www.canalplus.com/bl/programme-tv/ | +| Saint-Martin | `mf` | https://www.canalplus.com/mf/programme-tv/ | +| Senegal | `sn` | https://www.canalplus.com/sn/programme-tv/ | +| Sierra Leone | `sl` | https://www.canalplus.com/sl/programme-tv/ | +| Switzerland | `ch` | https://www.canalplus.com/ch/programme-tv/ | +| Togo | `tg` | https://www.canalplus.com/tg/programme-tv/ | +| Wallis and Futuna | `wf` | https://www.canalplus.com/wf/programme-tv/ | ### Download the guide diff --git a/sites/chaines-tv.orange.fr/chaines-tv.orange.fr.channels.xml b/sites/chaines-tv.orange.fr/chaines-tv.orange.fr.channels.xml index 9c6e18e3c..962f81f87 100644 --- a/sites/chaines-tv.orange.fr/chaines-tv.orange.fr.channels.xml +++ b/sites/chaines-tv.orange.fr/chaines-tv.orange.fr.channels.xml @@ -1,376 +1,400 @@ - 13EME RUE - FRANCE 2 - AB1 - MANGAS - TOUTE L'HISTOIRE - ACTION - ANIMAUX - AUTOMOTO, la chaine - BBC NEWS - CANAL J - CANAL+CINEMA(S) - CANAL+ - CANAL+SPORT - CHASSE PECHE - FRANCE 5 - SERIE CLUB - CNBC - CNN INTERNATIONAL - COMEDIE+ - DEMAIN - DISNEY CHANNEL - DEUTSCHE WELLE - SCIENCE & VIE TV - EQUIDIA - FRANCE 4 - FRANCE 3 - GAME ONE - HISTOIRE TV - KTO - ARTE - LCI - RTL9 - M6 - W9 - MCM - MEZZO - MTV - EURONEWS Français - PARIS PREMIERE - PLANETE+ - RAI 2 - RAI 3 - RAI 1 - RTP Mundo - TCM CINEMA - TEVA - TF1 - TMC - TELETOON+ - TV5MONDE - TVE INTERNACIONAL - TV BREIZH - CNEWS - TIJI - LCP/PS - RFM TV - MELODY - OCS - CINÉ+émotion - CINÉ+frisson - CINÉ+festival - CINÉ+classic - TELETOON +1 - FRANCE 3 CORSE VIA STELLA - BOOMERANG - TRACE URBAN - 2M MONDE - PIWI+ - CINÉ+family - PLANETE+AVENTURE - E! - BLOOMBERG EUROPE - TFX - USHUAIA TV - M6MUSIC - CSTAR - NICKELODEON - SYFY - BFM TV - GULLI - NATIONAL GEOGRAPHIC - AL JAZEERA Anglais - FRANCE 24 Français - LUXE TV - NRJ HITS - PLANETE+CRIME - FRANCE 24 Anglais - KANAL AUSTRAL.TV - TRACE CARIBBEAN - I24NEWS - RAI ITALIA - MY ZEN TV - NHK WORLD - JAPAN - NICKELODEON JUNIOR - MEZZO LIVE - BOOMERANG +1 - LCP 100% - VOXAFRICA - LUCKY JACK - MUSEUM TV - BFM BUSINESS - TELE KREOL - RAI NEWS 24 - GAME ONE +1 - TRACE AFRICA - EUROCHANNEL - BEIN SPORTS 1 - BEIN SPORTS 2 - BEIN SPORTS 3 - BEIN SPORTS MAX 4 - BEIN SPORTS MAX 5 - BEIN SPORTS MAX 6 - BEIN SPORTS MAX 7 - BEIN SPORTS MAX 8 - BEIN SPORTS MAX 9 - BEIN SPORTS MAX 10 - STINGRAY CLASSICA - TLC - CHERIE 25 - RMC DECOUVERTE - LA CHAINE L'EQUIPE - RMC STORY - 6TER - TF1 SERIES FILMS - MEN'S UP TV - NOLLYWOOD TV - ETV: Télévision Caraïbéenne - PARAMOUNT NETWORK - J-ONE - NICKTOONS - NOVELAS TV - FRANCE 3 ALPES - FRANCE 3 ALSACE - FRANCE 3 AQUITAINE - FRANCE 3 AUVERGNE - FRANCE 3 NORMANDIE CAEN - FRANCE 3 BOURGOGNE - FRANCE 3 BRETAGNE - FRANCE 3 CENTRE - FRANCE 3 CHAMPAGNE ARDENNE - FRANCE 3 COTE D'AZUR - FRANCE 3 FRANCHE COMTE - FRANCE 3 NORMANDIE ROUEN - FRANCE 3 LANGUEDOC - FRANCE 3 LIMOUSIN - FRANCE 3 LORRAINE - FRANCE 3 MIDI-PYRENEES - FRANCE 3 NORD P. CALAIS - FRANCE 3 PARIS IDF - FRANCE 3 PAYS DE LA LOIRE - FRANCE 3 PICARDIE - FRANCE 3 POITOU CHARENTES - FRANCE 3 PROVENCE ALPES - FRANCE 3 RHONE ALPES - BET - CLUBBING TV - FASHIONTV PARIS - MTV HITS - PUBLIC SENAT 24/24 - TRACE GOSPEL - CRIME DISTRICT - WARNER TV NEXT - NICKELODEON +1 - PARAMOUNT NETWORK DECALE - FRANCEINFO: - BOOMERANG (VO) - TCM CINEMA (VO) - DISCOVERY INVESTIGATION - MELODY D'AFRIQUE - POLAR+ - WARNER TV - MGG TV - CSTAR HITS FRANCE - TF1 4K - SKYNEWS - TRACE LATINA - COMEDY CENTRAL - TV PITCHOUN - SPORT EN FRANCE - SUNU YEUF - NCI - TECH&CO - OLYMPIA TV - TRACE VANILLA - TOP SANTE TV - MARMITON TV - CANAL+DOCS - CANAL+kids - CANAL+GRAND ECRAN - MAISON ET TRAVAUX TV - FRANCE 24 Arabe - CANAL+FOOT - CANAL+SPORT360 - L'ESPRIT SORCIER TV - FRANCE 24 Espagnol - DREAMWORKS - JOURNAL DU GOLF TV - ASHARQ NEWS - CARTOONITO - SQOOL TV - LE FIGARO TV - CANAL+BOX OFFICE - TVMONACO - AL JAZEERA Arabic - NOVO19 - T18 - TV PITCHOUN KIDS MUSIC - LIGUE 1+ - LIGUE 1+ 2 - LIGUE 1+ 3 - LIGUE 1+ 4 - LIGUE 1+ 5 - LIGUE 1+ 6 - LIGUE 1+ 7 - LIGUE 1+ 8 - LIGUE 1+ 9 - MIEUX - IMEARTH - ASTRO CENTER - SOUVENIRS FROM EARTH - BSMART 4CHANGE - AFRICA 24 - MEDI 1 TV - TRT WORLD - FRANCE 3 NoA - BFM LYON - BFM MARSEILLE PROVENCE - 8 MONT-BLANC - ANGERS TELE - LE FIGARO TV IDF - LMTV SARTHE - MATÉLÉ - TELEGRENOBLE - 20 MINUTES TV IDF - VOSGES TV - MOSELLE TV - TVR RENNES 35 - TV BRETAGNE OUEST - TELENANTES - TV7 BORDEAUX - WEO La Voix du Nord - KANALDUDE - ALPE D'HUEZ TELEVISION - VAL DE LOIRE TV - TV VENDEE - TEBESUD - BIPTV - CANNES LERINS TV - TVPI - TELE BOCAL - TV78 - CANAL 32 - TV Troyes et Aube - PUISSANCE TELEVISION - ILTV - BRIONNAIS TV - MARITIMA TV - TLC Cholet - MAURIENNE TV - MOSAIK CRISTAL - TELEPAESE - TELEVISION LOIRE 7 - TV8 MOSELLE-EST - BFM NICE COTE D'AZUR - CANAL 10 Guadeloupe - TAHITI NUI TELEVISION - TELE ANTILLES - MADRAS FM TV - KOUROU TELEVISION - KMT - IO TV - ZITATA TV - MYTV CARAIBES - FUSION TV - FOOD NETWORK - TRAVEL CHANNEL - ARTE Allemand - ANTENA 3 - STAR TVE - A3 SERIES - CANAL 24 HORAS - ALL FLAMENCO - TV3 CATALUNYA - ETB BASQUE - TV DE GALICIA - REAL MADRID TV - RTP 3 - RECORD NEWS - TVI INTERNACIONAL - SIC NOTICIAS - SIC INTERNACIONAL - TV RECORD - V+ TVI - ALMA LUSA - A BOLA TV - CORREIO DA MANHA TV - TGCOM24 - RAI STORIA - RAI SCUOLA - MEDIASET ITALIA - ARMENIA 1 - TVRI - HABERTURK - TV5 TURKEY - AL MAGHRIBIA - ATHAQAFIA - ARRYADIA - TAMAZIGHT - BEUR FM TV - AL ARABIYA - DUBAI TV - ALARABY TELEVISION - AL AOULA - CANAL ALGERIE - MBC - ROTANA CLASSIC - ROTANA CLIP - ENNAHAR TV - ECHOROUK TV - NESSMA EL JADIDA - EL HIWAR ETTOUNSI - AL RESALAH - IQRAA - IQRAA INTERNATIONAL - SAMIRA TV - ROTANA MUSICA - ECHOROUK NEWS - ROTANA KHALIJIA - ROTANA CINEMA - ROTANA COMEDY - ROTANA DRAMA - EL BILAD TV - PANORAMA DRAMA - MBC 5 - AL RAWDA - LBC SAT - NTD TV - MANDARIN TV - CGTN Français - CCTV 4 - PHOENIX CNE - PHOENIX INFONEWS - CHINA MOVIE CHANNEL - CCTV DIVERTISSEMENT - ZHEJIANG INTERNATIONAL TV - SHANGHAI DRAGON TV - BEIJING TV - HUNAN WORLD TV - JIANGSU INTERNATIONAL TV - GRT GBA Satellite TV - GREAT WALL ELITE - KBS WORLD - ARIRANG TV - HLIVE - EQUINOXE TELEVISION - ESPACE TV - RTS - 2STV - ORTM - RTI1 - CRTV - RTNC - TELE CONGO - BENIN TV - A+ - CANAL 2 INT. - TVT - RTG - TFM - SEN TV - NOLLYWOOD TV EPIC - MABOKE TV - PULAAGU - TRACE TERANGA + AL JAZEERA Anglais + BBC NEWS + BLOOMBERG EUROPE + CNBC + CNN INTERNATIONAL + LUXE TV + NHK WORLD - JAPAN + TVE INTERNACIONAL + RMC LIFE + FRANCE 3 CENTRE + FRANCE 3 COTE D'AZUR + FRANCE 3 LANGUEDOC + FRANCE 3 NORD P. CALAIS + FRANCE 3 PARIS IDF + FRANCE 3 PAYS DE LA LOIRE + ISRAEL+ + BOOMERANG (VO) + TCM CINEMA (VO) + FRANCE 24 Arabe + CHEVAL TV + FRANCE 24 Espagnol + LE FIGARO TV + BFM2 + NOVO19 + LIGUE 1+ + LIGUE 1+ 2 + LIGUE 1+ 3 + LIGUE 1+ 4 + LIGUE 1+ 5 + LIGUE 1+ 6 + LIGUE 1+ 7 + LIGUE 1+ 8 + LIGUE 1+ 9 + MIEUX + STAR ACADEMY + AFTER FOOT TV + LA CHAINE METEO + NA TV + TV VENDEE + TEBESUD + BIPTV + CANNES LERINS TV + TVPI + TELE BOCAL + TV78 + CANAL 32 - TV Troyes et Aube + PUISSANCE TELEVISION + ILTV + BRIONNAIS TV + MARITIMA TV + TLC Cholet + 7ALIMOGES + MAURIENNE TV + MOSAIK CRISTAL + TELEPAESE + TELEVISION LOIRE 7 + TV8 MOSELLE-EST + BFM NICE COTE D'AZUR + WEO Picardie + BFM TOULON VAR + BFM DICI ALPES DU SUD + BFM DICI HAUTE-PROVENCE + BFM GRAND LILLE + BFM GRAND LITTORAL + BFM ALSACE + BFM NORMANDIE + ARTE Allemand + RTP NOTICIAS + LBC SAT + Al JADEED + MURR TV + OTV + NBN + MAZZIKA + BERBERE TELEVISION + BERBERE JEUNESSE + BERBERE MUSIC + GLOBAL AFRICA TELESUD + 2M MONDE + 2STV + 6TER + 13EME RUE + 20 MINUTES TV IDF + CANAL 24 HORAS + AB1 + A BOLA TV + ACTION + AFRICA 24 + AL AOULA + AL ARABIYA + ALARABY TELEVISION + AL JAZEERA Arabic + ALL FLAMENCO + AL MAGHRIBIA + ALMA LUSA + ALPE D'HUEZ TELEVISION + AL RAWDA + AL RESALAH + ANGERS TELE + ANIMAUX + ANTENA 3 + A+ + ARIRANG TV + ARMENIA 1 + ARRYADIA + ARTE + ASHARQ NEWS + ASTROCENTER + ATHAQAFIA + A3 SERIES + AUTOMOTO, la chaine + BEIJING TV + BEIN SPORTS 1 + BEIN SPORTS 2 + BEIN SPORTS 3 + BEIN SPORTS MAX 4 + BEIN SPORTS MAX 5 + BEIN SPORTS MAX 6 + BEIN SPORTS MAX 7 + BEIN SPORTS MAX 8 + BEIN SPORTS MAX 9 + BEIN SPORTS MAX 10 + BET + BEUR FM TV + BFM BUSINESS + BFM LYON + BFM MARSEILLE PROVENCE + BFM TV + BOOMERANG +1 + BOOMERANG + BSMART 4CHANGE + CANAL 2 INT. + CANAL 10 Guadeloupe + CANAL J + CANAL+ + CANAL+BOX OFFICE + CANAL+CINEMA(S) + CANAL+DOCS + CANAL+FOOT + CANAL+GRAND ECRAN + CANAL+kids + CANAL+SPORT360 + CANAL+SPORT + CARTOONITO + CCTV 4 + CCTV DIVERTISSEMENT + CGTN Français + CHASSE PECHE + CHINA MOVIE CHANNEL + CINÉ+classic + CINÉ+émotion + CINÉ+family + CINÉ+festival + CINÉ+frisson + OCS + CLUBBING TV + CNEWS + COMEDIE+ + COMEDY CENTRAL + CRIME DISTRICT + CRTV + CSTAR + EUROPE 2 POP TV + DEMAIN + DISCOVERY INVESTIGATION + DISNEY CHANNEL + SHANGHAI DRAGON TV + DREAMWORKS + DUBAI TV + DEUTSCHE WELLE + E! + ECHOROUK NEWS + ECHOROUK TV + EL BILAD TV + EL HIWAR ETTOUNSI + ENNAHAR TV + EQUIDIA + EQUINOXE TELEVISION + ESPACE TV + ETB BASQUE + EUROCHANNEL + EURONEWS Français + FASHIONTV PARIS + FOOD NETWORK + FRANCE 2 + FRANCE 3 ALPES + FRANCE 3 ALSACE + FRANCE 3 AQUITAINE + FRANCE 3 AUVERGNE + FRANCE 3 BOURGOGNE + FRANCE 3 BRETAGNE + FRANCE 3 CHAMPAGNE ARDENNE + FRANCE 3 CORSE VIA STELLA + FRANCE 3 FRANCHE COMTE + FRANCE 3 LIMOUSIN + FRANCE 3 LORRAINE + FRANCE 3 MIDI-PYRENEES + FRANCE 3 NoA + FRANCE 3 NORMANDIE CAEN + FRANCE 3 NORMANDIE ROUEN + FRANCE 3 PICARDIE + FRANCE 3 POITOU CHARENTES + FRANCE 3 PROVENCE ALPES + FRANCE 3 RHONE ALPES + FRANCE 3 + FRANCE 4 + FRANCE 5 + FRANCE 24 Anglais + FRANCE 24 Français + FRANCEINFO: + FUSION TV + GAME ONE +1 + GAME ONE + GREAT WALL ELITE + GRT GBA Satellite TV + GULLI + HABERTURK + HISTOIRE TV + HLIVE + HUNAN WORLD TV + I24NEWS + IMEARTH + IO TV + IQRAA INTERNATIONAL + IQRAA + JIANGSU INTERNATIONAL TV + J-ONE + JOURNAL DU GOLF TV + KANAL AUSTRAL.TV + KANALDUDE + KBS WORLD + KMT + KTO + KOUROU TELEVISION + LCI + LCP/PS + LCP 100% + LE FIGARO TV IDF + LA CHAINE L'EQUIPE + L'ESPRIT SORCIER TV + LMTV SARTHE + LUCKY JACK + M6 + M6MUSIC + MABOKE TV + MADRAS FM TV + MAISON ET TRAVAUX TV + MANDARIN TV + MANGAS + MARMITON TV + MATÉLÉ + MBC + MBC 5 + MCM + MEDI 1 TV + MEDIASET ITALIA + MELODY + MELODY D'AFRIQUE + MEN'S UP TV + MEZZO + MEZZO LIVE + MGG TV + MOSELLE TV + MTV + MTV HITS + MUSEUM TV + MYTV CARAIBES + MY ZEN TV + NATIONAL GEOGRAPHIC + NCI + NESSMA EL JADIDA + NICKELODEON +1 + NICKELODEON + NICKELODEON JUNIOR + NICKTOONS + NOLLYWOOD TV + NOLLYWOOD TV EPIC + NOVELAS TV + NRJ HITS + NTD TV + OLYMPIA TV + BENIN TV + ORTM + PARAMOUNT NETWORK + PARAMOUNT NETWORK DECALE + PARIS PREMIERE + PHOENIX CNE + PHOENIX INFONEWS + PIWI+ + PLANETE+ + PLANETE+AVENTURE + PLANETE+CRIME + POLAR+ + PUBLIC SENAT 24/24 + PULAAGU + ETV: Télévision Caraïbéenne + RAI 1 + RAI 2 + RAI 3 + RAI ITALIA + RAI SCUOLA + RAI STORIA + REAL MADRID TV + RECORD NEWS + TV RECORD + RFM TV + RMC DECOUVERTE + RMC STORY + ROTANA CINEMA + ROTANA CLASSIC + ROTANA CLIP + ROTANA COMEDY + ROTANA DRAMA + ROTANA KHALIJIA + ROTANA MOUSICA + RTG + RTI1 + RTL9 + MANDEKA + RTS + SAMIRA TV + SCIENCE & VIE TV + SEN TV + SERIE CLUB + SIC INTERNACIONAL + SIC NOTICIAS + SKYNEWS + SOUVENIRS FROM EARTH + SPORT EN FRANCE + SQOOL TV + STINGRAY CLASSICA + SUNU YEUF + SYFY + T18 + TAMAZIGHT TV + TCM CINEMA + TEBEO + TECH&CO + TELE ANTILLES + TELE CONGO + TELEGRENOBLE + TELE KREOL + TELENANTES + TELETOON +1 + TELETOON+ + TV DE GALICIA + TRACE TERANGA + TEVA + TF1 + TF1 SERIES FILMS + TFM + TFX + TIJI + TLC + TMC + TAHITI NUI TELEVISION + TOP SANTE TV + TOUTE L'HISTOIRE + TRACE AFRICA + TRACE CARIBBEAN + TRACE GOSPEL + TRACE LATINA + TRACE URBAN + TRACE VANILLA + TRAVEL CHANNEL + TRT WORLD + CANAL ALGERIE + TV3 CATALUNYA + TV5 TURKEY + TV5MONDE + TV7 BORDEAUX + 8 MONT-BLANC + TV BREIZH + CORREIO DA MANHA TV + STAR TVE + V+ TVI + TVI INTERNACIONAL + TVMONACO + PANORAMA DRAMA + TV PITCHOUN + TV PITCHOUN KIDS MUSIC + TVR RENNES 35 + TVRI + TVT + VAL DE LOIRE TV + USHUAIA TV + VOSGES TV + VOXAFRICA + W9 + WARNER TV + WARNER TV NEXT + WEO La Voix du Nord + ZHEJIANG INTERNATIONAL TV + ZITATA TV + RAI NEWS 24 + TGCOM24 + RTPI diff --git a/sites/distro.tv/distro.tv.config.js b/sites/distro.tv/distro.tv.config.js index 99919cf60..fe48657b9 100644 --- a/sites/distro.tv/distro.tv.config.js +++ b/sites/distro.tv/distro.tv.config.js @@ -35,7 +35,7 @@ module.exports = { }, parser({ content, channel }) { if (!content || !channel) return [] - let programs = [] + let programs try { const data = JSON.parse(content) if (!data.epg || !data.epg[channel.site_id] || !Array.isArray(data.epg[channel.site_id].slots)) { diff --git a/sites/gatotv.com/gatotv.com.channels.xml b/sites/gatotv.com/gatotv.com.channels.xml index aa23b1014..83b79c81c 100644 --- a/sites/gatotv.com/gatotv.com.channels.xml +++ b/sites/gatotv.com/gatotv.com.channels.xml @@ -1,254 +1,304 @@ - 1 Colombia - 2 de El Salvador - 2 de Nicaragua - 2 de Panamá - 2 de República Dominicana - 3 de Guatemala - 4 de Costa Rica - 4 de El Salvador - 4 de Monterrey - 4 de Panamá - 4 de Guadalajara - Telemicro - 5 de Honduras 5 de México - 6 de Costa Rica - 6 de El Salvador - WIPR - 7 de Costa Rica - 7 de Guatemala - Tele Isla - 7 de República Dominicana 9 de Honduras 9 de México - 9 de República Dominicana - 11 de Costa Rica - 11 de Guatemala - 11 de México - 12 de El Salvador - 13 de Argentina - 13 de Chile - 13 de Colombia 13 de Costa Rica 13 de Guatemala - 13 de Nicaragua - Telemetro - 13 de Paraguay - 13 de Puerto Rico - 13 de República Dominicana 14 de México - 15 de República Dominicana - 12 de El Salvador - 22 de México - 24 Horas Chile - 24 Horas - 29 de República Dominicana - 37 de República Dominicana - M+ #Vamos - A&E PAN - a+ - A&E Chile - A&E México - ADN 40 - Adrenalina Sports Network - Afizzionados - Agrotendencia TV - AMC Break + ADN Noticias AMC Colombia - AMC Crime - AMC España AMC México - América Televisión Perú - América TeVé - America TV Argentina + AMC Series Argentina + AMC Series Costa Rica + AMC Series El Salvador + AMC Series Guatemala + AMC Series Honduras + AMC Series México + AMC Series Nicaragua + AMC Series Panamá + AMC Series Paraguay + AMC Series República Dominicana + AMC Series Uruguay Animal Planet México Animal Planet Panregional Animal Planet Sur - Antena 3 Internacional + AXN Venezuela + Azteca Uno -1 h + Azteca Uno -2 h + Baby TV Latam. + Barça TV + Bloomberg + Capital Colombia + Cartoonito Panregional + Cartoonito Sur + Cinelatino USA + Cinema + City TV + Claro TV + Clic + Comedy Central Centro + Comedy Central México + las Estrellas - 1 Hora + las Estrellas -2 Horas + DW + Discovery Home & Health Colombia + Discovery Kids LATAM + Discovery Turbo LATAM. + DW Latam. + E! Entertainment Television Chile + E! Entertainment Television Panregional + El Financiero TV + El Heraldo TV + Elgourmet + TBN + ESPN 2 Sur + ESPN 2 Venezuela + ESPN 3 Norte + ESPN 4 C. A. y R. D. + ESPN 4 México + ESPN 4 Sur + ESPN 5 C. A. y R. D. + ESPN 5 Sur + ESPN 6 C. A. y R. D. + ESPN 6 Sur + ESPN 7 Bolivia + ESPN 7 Chile + ESPN 7 Colombia + ESPN 7 Ecuador + ESPN 7 Paraguay + ESPN 7 Perú + ESPN 7 Sudamérica + ESPN 7 Uruguay + ESPN 7 Venezuela + ESPN Premium Chile + ESPN Sur + Euronews + EWTN en Español + Exa TV + Film & Arts + Fox Sports 2 Cono Norte + Fox Sports 3 Cono Norte + Fox Sports Cono Norte + Fox Sports Cono Sur + FX Centro + Galicia TV + Gol Play España + Golden Edge + Golden México + Golden MPX + HBO Chile + Hollywood España + La Red Chile + MTV Centro + MTV México + National Geographic Centro + Nick Jr. Latinoamérica + Nickelodeon Centro + Nickelodeon México + RAI International + RCN Colombia + RCN Internacional + Región+ + Sony Centro + Sony Chile + Sony Movies LATAM + Space Chile + Star Channel Argentina + Star Channel Centro + Star TVE + Starz Encore Español + Sun Channel + TC Televisión + Telehit Música Plus + Telemundo PAN + Telemundo Puerto Rico + TN23 + TNT Centroamérica y Caribe + TNT Novelas GT + TNT Novelas LATAM + TNT Series Lat. + Tr3s + TUDN Centroamérica + TV Agro C. A. + Ultra Cine + Ultra Docu + Ultra Fiesta + Ultra Film + Ultra Kidz + Ultra Tainment + Univision Latinoamérica + Canal USA Network LATAM + Ve Plus LATAM + Warner TV Chile + Warner TV España + Warner TV México + Warner TV Sur + ZooMoo Latinoamérica + 24 Horas Chile + 24 Horas + M+ Acción + Adrenalina Sports Network + A&E Chile + A&E México + A&E PAN + Agrotendencia TV + AMC Break + AMC Crime + AMC España + América Televisión Perú + América TeVé + America TV Argentina Antena 3 de España - Canal Antigua + Antena 3 Internacional + 7 de República Dominicana + a+ Aprende Atreseries España Atreseries Internacional ATV - AXN Andes AXN ES + AXN Andes AXN México AXN Sur - AXN Venezuela AYM Sports + TV Azteca Corazón + TV Azteca Mundo Azteca 7 Azteca Guate Azteca Uno - Azteca Uno -1 h - Azteca Uno -2 h - Baby TV Latam. BabyFirst TV Bandamax BBC World News - Be Mad beIN Sports en Español + Be Mad BET Jams BitMe - Bloomberg - Boing España + 9 Noticias Paraguay Cablenoticias Calle 13 - 9 Noticias Paraguay + 1 Colombia + 2 de Nicaragua + 2 de El Salvador + 3 de Guatemala + 4 de Costa Rica + 4 de El Salvador + 5 de Honduras + 6 de Costa Rica + 6 de El Salvador + Multimedios Costa Rica + 11 de Costa Rica + 12 de El Salvador + 13 de Chile + Canal Antigua Cocina - Capital Colombia - Caracol Colombia + Canal Congreso Colombia + Institucional Colombia + Sur + Sur Andalucía + Tro Caracol Internacional + Caracol Colombia + Cartoonito México + Cartoon Network Pacífico + Cartoon Network México Cartoon Network Atlántico Norte Cartoon Network Atlántico Sur - Cartoon Network México - Cartoon Network Pacífico - Cartoonito México - Cartoonito Panregional - Cartoonito Sur - Castilla-La Mancha Media + 37 de República Dominicana CDN Deportes Chilevisión (CHV) - Cine Estelar - Cine Mexicano - Cine Nostalgia - Cine Sony Cinecanal México Cinecanal Pacífico Cinecanal Sur CineClick + Cine Estelar Cinelatino - Cinelatino USA - Cinema - Cinema + Cinema Platino + Cinema + Cinemax Chile Cinemax México Cinemax Panregional - City TV + Cine Mexicano + Cine Nostalgia + Cine Sony Clan TVE - Claro TV - Classica - Clic + Castilla-La Mancha Media CNN Chile CNN en Español CNN Internacional - Comedy Central Centro + 9 de República Dominicana + M+ Comedia Comedy Central España - Comedy Central México Concert Channel - Canal Congreso Colombia Cosmopolitan España Cuatro de España - las Estrellas - 1 Hora - las Estrellas -2 Horas - 2 de México - De Película De Película Clásico - De Película MPX - Decasa - DW + De Película DHE - Discovery Channel Chile + 15 de República Dominicana Discovery Channel España + Discovery Channel Chile Discovery Channel México Discovery en Español Discovery Familia - Discovery Home & Health Colombia Discovery H&H MX Discovery Kids Chile - Discovery Kids LATAM Discovery Kids MX Discovery Science LATAM Discovery Theater LATAM. - Discovery Turbo LATAM. Discovery World Lat. Disney Channel Centro - Disney Channel España Disney Channel México Disney Channel Sur - Disney Junior España Disney Junior Norte Disney Junior Sur + Disney Junior España Distrito Comedia Divinity - DW Latam. - E! Entertainment Television Chile - E! Entertainment Television Panregional Ecuador TV Ecuavisa Ecuador Ecuavisa Internacional Efekto TV - El Financiero TV - El Heraldo TV - Elgourmet + 13 de Argentina Energy - TBN ESNE TV ESPN 2 Colombia ESPN 2 México ESPN 2 Norte - ESPN 2 Sur - ESPN 2 Venezuela - ESPN 3 Norte ESPN 3 Sur - ESPN 4 Chile ESPN 4 Norte + ESPN Deportes ESPN Chile ESPN Colombia - ESPN Deportes - ESPN Extra Latinoamérica ESPN México ESPN Norte - ESPN Sur Estrella TV ETB 1 ETB 2 Eurochannel - Euronews Europa Europa Eurosport 1 España Eurosport 2 España - EWTN en Español Excelsior TV 42 de Costa Rica - Film & Arts Foro TV Fox Deportes - Fox España Fox News - Fox Sports 2 Cono Norte - Fox Sports 2 Cono Sur - Fox Sports 3 Cono Norte - Fox Sports 3 Cono Sur - Fox Sports Cono Norte - Frecuencia Latina FUTV - FX Centro FX Chile FX México - Galicia TV Gamavisión - Glitz - Gol Play España - Gol TV USA - Golden Edge - Golden México - Golden MPX Golden Panregional Golden Plus - Golden Premier Golden Premier 2 + Golden Premier Golf Channel Latinoamérica - GolTV Lat. + Gol TV USA Guatevisión HBO 2 LATAM - HBO Chile HBO Family LATAM - HBO Latino Este HBO Latinoamérica + HBO Latino Este HBO Mundi HBO Plus HBO Pop @@ -258,89 +308,65 @@ History 2 México History 2 Panregional History Chile - History en Español History MX + History en Español History Panregional HITN HLN ¡Hola! TV - Hollywood España HTV - I.Sat Iberalia TV Ingenio TV México - Institucional Colombia Inti Network ID México ID Panregional - Justicia TV La 1 La 2 - La Red Chile + M+ LaLiga + laOtra La Red TV Guatemala + 2 de México + Las Estrellas LATAM La Sexta La Tele Paraguay - laOtra - Las Estrellas LATAM + Frecuencia Latina Lifetime México Lifetime PAN - M+ Acción María Visión - Más Chic Lat. MC Mega Chile Mega España Meganoticias MX + 12 de El Salvador Mexiquense TV Milenio - M+ Comedia - M+ LaLiga - MTV 00s - MTV 80S - MTV Centro MTV España - MTV Hits - MTV Live HD - MTV México MTV Sur - Much Music - Multimedios Costa Rica Multimedios Plus - National Geographic Centro National Geographic España National Geographic México + Universo Neox NFL Network NHK World - Nick Jr. España - Nick Jr. Latinoamérica - Nickelodeon Centro Nickelodeon España - Nickelodeon México + Nick Jr. España NickMusic - Noticias PY Nova + Noticias PY NTN24 Odisea Pakapaka Panamericana Televisión Pánico Paraguay TV - Paramount Channel ES - Paramount Channel Lat. - Paramount Channel México Paravisión Pasiones Estados Unidos Pasiones Latinoamérica Perú Mágico - Punto 2 PX Sports - RAI International - RCN Colombia RCN Novelas - RCN Internacional Real Madrid TV - Región+ RTS Semillitas Señal Colombia @@ -349,35 +375,25 @@ Sky Sports 16 Sky Sports 24 SNT - Sony Centro - Sony Chile Sony México Sorpresa - Space Chile Space México Space Panregional Space Sur - Star Channel Argentina - Star Channel Centro Star Channel México - Star TVE - Starz Encore Español Studio Universal México Studio Universal Panregional - Sun Channel Sundance TV España - Sur - Sur Andalucía Sur TV Itapúa Paraguay Syfy España - TC Televisión TCM España TCM Panregional - TeenNick Teleamazonas + 2 de República Dominicana Teleantioquia Telecafé Telecaribe + 13 de República Dominicana Telecentro TV Telecinco Teledeporte @@ -387,63 +403,49 @@ Telefuturo Telehit Telehit Música - Telehit Música Plus + Tele Isla Teleislas TeleMadrid + Telemicro Telemundo México - Telemundo PAN - Telemundo Puerto Rico Telenostalgia + 11 de Guatemala Telepacífico 11 de República Dominicana + 7 de Costa Rica Teleunion + 29 de República Dominicana + 4 de Guadalajara + 7 de Guatemala TV Canaria - Televisión Pública Argentina + Television Dominicana Tigo Sports Costa Rica - Tigo Sports El Salvador Tigo Sports Guatemala + Tigo Sports El Salvador TLC MX TLC Panregional TLNovelas LATAM TLNovelas México - TN23 - TNT Centroamérica y Caribe - TNT México - TNT Novelas GT - TNT Novelas LATAM TNT Pacífico - TNT Series Lat. - TNT Sports - TNT Sports 2 Chile - TNT Sports 3 Chile + TNT México TNT Sur Tooncast - Tr3s - Tro - truTV Lat. + 13 de Colombia + 13 de Paraguay Telesistema Informativo (TSI) - TUDN Centroamérica - TUDN USA TUDN México + TUDN USA TV5Monde - TV Agro C. A. - TV Azteca Corazón - TV Azteca Mundo - TV Chile - Television Dominicana - TV Globo Internacional TVC Deportes + TV Chile TVE Internacional + TV Globo Internacional 9 de Panamá TVN Chile + 2 de Panamá + Televisión Pública Argentina TVUNAM TyC Sports - Ultra Cine - Ultra Docu - Ultra Fiesta - Ultra Film - Ultra Kidz - Ultra Tainment Unicable MX Unicanal Universal Cinema @@ -453,26 +455,26 @@ Universal Reality Universal TV México Universal TV Panregional - Universo - Univision Latinoamérica Univision TLNovelas + M+ #Vamos Ve Plus Estados Unidos - Ve Plus LATAM - VH1 Lat. Vía X Vibra TV Video Rola ViendoMovies + 13 de Nicaragua VTV Honduras - WAPA 2 Deportes WAPA-TV - Warner TV Chile - Warner TV México + WAPA 2 Deportes Warner TV Panregional - Warner TV Sur Willax TV + WIPR + Punto 2 WOBI + 13 de Puerto Rico + 4 de Monterrey + 22 de México + 11 de México Zona Latina ZOOM Colombia - ZooMoo Latinoamérica diff --git a/sites/i.mjh.nz/i.mjh.nz_plex.channels.xml b/sites/i.mjh.nz/i.mjh.nz_plex.channels.xml index 11ddce28c..49bf24254 100644 --- a/sites/i.mjh.nz/i.mjh.nz_plex.channels.xml +++ b/sites/i.mjh.nz/i.mjh.nz_plex.channels.xml @@ -1,113 +1,29 @@ - The Reuters 60 - Glewed TV - Toon Goggles - Maverick Black Cinema - SportsGrid Always Funny - Choppertown - Revry - The Boat Show - Nosey - Judge Nosey - People are Awesome - WeatherSpy The World Poker Tour - Cooking Panda - Wonder - History Hit - RACER International pocket.watch Game-On - Ryan and Friends - The Pet Collective - FailArmy - Yahoo Finance - The Design Network - GUSTOTV - SKWAD - TG Junior - Newsmax2 - Stingray Karaoke - Humor Mill - Waypoint TV - Hard Knocks - GoUSA TV - NHRA TV Poker Night TV - Qwest TV - Johnny Carson TV - The Carol Burnett Show - WildEarth - Made In Hollywood - USA TODAY - AfroLandTV - Racing America - Stingray Hot Country Remember the ‘80s - Stingray Greatest Hits - Classic Rock - Stingray Soul Storm - Hit List - Bloomberg TV - Bloomberg Originals - Trailers From Hell - TED - Sonic TV - Shemaroo Bollywood - Today's K-Pop - Hip-Hop/R&amp;B - Y2K - Euro Hits - Easy Listening - Smooth Jazz - Pop Adult - Éxitos del Momento - Alternative - Nothin' But 90s - Flashback 70s - The Spa - Stingray Naturescape - Stingray DJAZZ - FUEL TV - Brat TV PickleTV 123GO! CombaTV - GLORY Kickboxing Ideas En 5 Minutos - PokerGO - CBC News Beyond Paranormal - Novelisima - True Crime Now - Ghost Hunters Channel Travel Escapes - Beyond Belief Cheaters - Highway to Heaven Arthur Made It Myself TV C4 en Alerta - Tastemade - Mythbusters Movieitaly Channel - Antiques Road Trip - Cricket Gold - Mr. Bean TRACE UK Action Hollywood Movies - GB News - NewsWorld RCM UFC Corner Gas - Z Nation Dr. Phil - Homes Under the Hammer Four in a Bed Drool - Hunter 21 Jump Street PLL Network Western Bound @@ -115,22 +31,15 @@ Lucha Plus Bondi Vet Life Down Under - The Bold and the Beautiful PeliMex - Unbeaten NEW KFOOD - World Billiards TV TV5MONDE Voyage TV5MONDE Chefs Crime Beat TV Bassmaster Dude Perfect FilmRise Creators - Forensic Files - Mutant X - Andromeda The Hotel Inspector - Hell's Kitchen River Monsters Come Dine With Me Relic Hunter @@ -139,266 +48,98 @@ Metal.Rocks Beyblade Legacy - Motorvision TV - FTF Sports - Wired2Fish - Documentary+ - SLOPES + AddictaTV Eddie's Wonderland - COPS - Ninja Kidz TV - Women's Sports Network MagellanTV Wildest - Degrassi Smurf TV Pitufo TV - PFL MMA - Strongman Champions - Pac-12 Insider Mythical 24/7 History &amp; Warfare Stingray Holidayscapes The World Poker Tour Kidz Bop TV - Popular Science Surf Cinema Jade Fever Life+Style Bon Voyage Go Xplorer Ice Pilots NWT - Mr. Bean Live Action - American Crime Channel Sparkle Movies - Light &amp; Love - Animation+ - FRANCE 24 Homeful K-Baseball TV Million Dollar Dream Home - Asian Drama - ITV Deportes Bizaar Mayday: Air Disaster Cesar's Pack Leader TV More U - Nosey Escándalos - Camp Spoopy Music Legends - Lone Star Sports Illustrated TV - Euronews Portuguese - Euronews Deutsch - Euronews Français - Euronews Italiano - Billiard TV - SPEEDVISION - JAIL - FashionTV The Osbournes - WipeoutXtra The Biggest Loser - Adventure Earth Operation Repo Hot Ones Highway Thru Hell The Wicked Tuna Channel - MOVIESPHERE Death Valley Days Unspeakable Untold Stories of the ER - Iron Chef Sheriffs: El Dorado County Tennis+ Bowling TV Breaking Sports News - Euronews - Euronews Español - TRACE Latina - Grjngo - Western Movies - Real Wild Real Crime - PursuitUP 5-Minute Crafts Fifth Gear (UK) PBS History Hardcore Pawn OUTflix Proud PBS Science - Deal Or No Deal The Emeril Lagasse Channel Cirque du Soleil Creator Television - PGA TOUR Gone Fishing Stars Central Real Crime Uncovered INTER 24/7 - Powernation - True History - XFC TV - Watch it SCREAM - Galxy TV - El Conflicto TV The Ed Sullivan Show - Fear Factor Startalk TV FIFA+ - beIN SPORTS XTRA The Martha Stewart Channel - Most Haunted All My Children Dungeon TV - TRACE Urban CraftsyTV Dick Van Dyke Robot Wars by Mech+ Women Behind Bars - Go Wild Crime Scene TV Sonic The Hedgehog - Teletubbies Strawberry Shortcake - Monster Jam - CINEPRIDE - ACL Cornhole TV Great British Menu - Just For Laughs Gags - Kidoodle TV - Undercover Boss Baby Einstein - TNA Wrestling Channel - Fight Network - Watch it Kid - FrightFlix The Kids in the Hall - POP - TRACE Brazuca World Surf League 24/7 Inside Outside - The Reuters 60 - Glewed TV - AsianCrush - Wu Tang Collection - Game Show Central - Toon Goggles - RetroCrush - Midnight Pulp - Maverick Black Cinema Always Funny - Choppertown - Revry - Comedy Dynamics - The Boat Show - The Bob Ross Channel - Gravitas Movies - Dove - So... Real - Nosey - Judge Nosey - People are Awesome - WeatherSpy - Cheddar The World Poker Tour - Cooking Panda - Wonder - History Hit pocket.watch Game-On - Ryan and Friends - The Pet Collective - FailArmy - Yahoo Finance - RACER Select - The Design Network - Judge Faith - SKWAD - TG Junior - Newsmax2 - News 12 New York - Stingray Karaoke - NBC News NOW GOLFPASS - Dateline - Humor Mill - Waypoint TV - 24 Hour Free Movies - Hard Knocks - Qello Concerts - GoUSA TV - NHRA TV Poker Night TV - Qwest TV - Johnny Carson TV - The Carol Burnett Show Shout! TV - NEW K-POP - Rakuten Viki - NEW K.MOVIES - MST3K - WildEarth - BABY SHARK TV - Stingray Naturescape - Made In Hollywood - USA TODAY - AfroLandTV - Tribeca Channel - Racing America - Stingray Hot Country Remember the ‘80s - Stingray Greatest Hits - Classic Rock - Stingray Soul Storm - Hit List - Trailers From Hell - Wanted: Dead or Alive - Swerve Combat - Journy - TED - Sonic TV - Shemaroo Bollywood - Stingray Classica Stream - This Old House - Today's K-Pop - Hip-Hop/R&amp;B - Y2K - Euro Hits - Easy Listening - Smooth Jazz - Pop Adult - Éxitos del Momento - Alternative - Nothin' But 90s - Flashback 70s - The Spa Movie Music by Stingray - Stingray DJAZZ - FUEL TV - Brat TV Gardening with Monty Don - Midsomer Murders - The Price is Right - Baywatch PickleTV 123GO! CombaTV - GLORY Kickboxing - beIN Sports Xtra en Español Ideas En 5 Minutos - PokerGO OUTFLIX MOVIES - Nolly Africa HD Family Feud Classic Supermarket Sweep GameTVGO Beyond Paranormal - Novelisima Aliwko - True Crime Now - Ghost Hunters Channel Travel Escapes - Beyond Belief Cheaters - Highway to Heaven - The Rifleman Arthur Radio-Canada INFO CBC Comedy @@ -407,20 +148,14 @@ Non-Stop '90s Movieitaly Channel FilmRise Horror - FilmRise Action - FilmRise Free Movies FilmRise Canadien Fresh Movies - Cricket Gold FilmRise Made In Canada - FilmRise Classic TV Survivorman on Plex CBS News Canada Rig TV - Three's Company The Price is Right Drew Carey Let's Make a Deal - Mr. Bean Project Runway Primetime Soaps Hit Sitcoms @@ -429,29 +164,22 @@ Action Hollywood Movies RCM UFC - Z Nation Continuum Dr. Phil Four in a Bed Drool - Hunter 21 Jump Street - Willow Sports PLL Network Western Bound Lucha Plus Game &amp; Fish TV Life Down Under Bloodline Detectives Hosted by Nancy Grace - The New Detectives - The Bold and the Beautiful PeliMex MI-5 Un Si Grand Soleil - Andromeda The Outer Limits NEW KFOOD - World Billiards TV ROMCOM K-Drama Crime Beat TV Bassmaster @@ -460,9 +188,7 @@ The Hotel Inspector Ninja Warrior River Monsters - The Graham Norton Show Come Dine With Me - FilmRise True Crime The Wiggles Preston &amp; Brianna That Girl @@ -477,30 +203,17 @@ CBC News Calgary Bondi Rescue SLVR Sports and Entertainment (SLVR) + Caracol Mix Legacy - Motorvision TV - FTF Sports - Wired2Fish - Complex TV - Documentary+ - SLOPES + Speed Sport 1 + AddictaTV Eddie's Wonderland - COPS - Ninja Kidz TV - Women's Sports Network Cosmic Frontiers - Degrassi Real Crime Pitufo TV Screambox TV - PFL MMA Transformers Power Rangers - Strongman Champions - Homeful - Total Crime - Pac-12 Insider - HauntTV Mythical 24/7 MagellanTV Wildest History &amp; Warfare @@ -508,7 +221,6 @@ Stingray Holidayscapes The World Poker Tour Kidz Bop TV - Popular Science Surf Cinema Super Channel Hearties Super Channel Uncovered @@ -518,339 +230,136 @@ Ice Pilots NWT Ça c’est drôle Noovo Cinéma - Mr. Bean Live Action - Tiny House Nation Modern Marvels Flipping Nation Ax Men CTV Gets Real - Spark TV Light &amp; Love - Animation+ The Outpost Triton Poker - FRANCE 24 - Cowboy+ Sports K-Baseball TV - PBS Travel Million Dollar Dream Home - Asian Drama Stargate by MGM Hong Kong Fight Club - The Weather Network Wedotv Amor Piel Salvaje - XITE Classic Country - ITV Deportes Bizaar - The Addams Family Western Bound Español Victory+ Noovo Crime - Nashville More U - Nosey Escándalos - Camp Spoopy Music Legends - Lone Star Sports Illustrated TV - Unidentified - Euronews Portuguese - Euronews Deutsch - Euronews Italiano - Anger Management - BBC Home &amp; Garden - Top Gear - Impossible - Quiz Show - Billiard TV - PBS Antiques Roadshow - Antiques Road Trip - Trailer Park Boys: The SwearNet Show - SPEEDVISION - CBC News - JAIL Noticias Telemundo AHORA - Telemundo al Dia - FashionTV - SportsGrid The Osbournes - WipeoutXtra - McLeods Daughters The Biggest Loser - Adventure Earth Operation Repo - The FBI Files Hot Ones - Bloomberg Originals - Bloomberg TV The Wicked Tuna Channel - FilmRise Western FilmRise Sci-Fi ZenLIFE by Stingray - The Conners - Nash Bridges Death Valley Days Unspeakable Untold Stories of the ER - TSN The Ocho Corner Gas CTV News CTV @Home CTV Gridlock CTV Laughs The Mightiest by CTV - Iron Chef Sheriffs: El Dorado County Tennis+ - Amasian TV In The Heat Of The Night by MGM American Gladiators by MGM - Pink Panther Paternity Court Bowling TV Circle Country - Euronews Español - Classic Doctor Who - TRACE Latina - Grjngo - Western Movies - Real Wild - PursuitUP 5-Minute Crafts Fifth Gear (UK) American Pickers Channel BBC Sci-Fi - BBC Travel BBC Comedy - Hell's Kitchen Hardcore Pawn - Tastemade - Deal Or No Deal - Weeds &amp; Nurse Jackie My Little Pony - Duck Dynasty Intervention Evolution Earth The Emeril Lagasse Channel Cirque du Soleil Creator Television Murdoch Mysteries - PGA TOUR Gone Fishing - XITE Siempre Latino - XITE Rap Game - XITE R&amp;B Feels - XITE Reggae Vibes CTV Movies CTV Crime Real Crime Uncovered - XITE Celebrates - XITE Hip-Hop Evolution XITE Christian Hits XITE Gospel INTER 24/7 FilmRise Black TV - Powernation - MHz Now - True History - XFC TV - Watch it SCREAM - Galxy TV - El Conflicto TV - BlackPix - Antiques Roadshow UK - BBC Food - Unbeaten - Farscape - Don't Tell The Bride The Ed Sullivan Show - Fear Factor Property Brothers Channel BBC Game Shows Startalk TV Dance Moms The Martha Stewart Channel - Heartland - Anime 24/7 - XITE Hits - XITE 60s &amp; 70s Groove XITE 80s Flashback - Most Haunted All My Children Dungeon TV - TRACE Urban - Scream Factory TV CraftsyTV Dick Van Dyke Dr. G: Medical Examiner - Unsolved Mysteries - Forensic Files American Crimes Robot Wars by Mech+ Women Behind Bars - Go Wild Crime Scene TV Sonic The Hedgehog - Teletubbies Strawberry Shortcake - Monster Jam - MOVIESPHERE - Dog the Bounty Hunter Little Women: LA ONE Championship TV Teen Wolf by MGM - XITE 90s Throwback - XITE Nuevo Latino - CINEPRIDE Powder TV - ACL Cornhole TV Great British Menu TVB Pearl Drama DP World Tour - Kidoodle TV Baby Einstein - TNA Wrestling Channel - Fight Network - Are We There Yet? - Watch it Kid - FrightFlix Silent Witness|New Tricks FIFA+ XITE Country Today - TRACE Brazuca - Get.Factual - XITE Just Chill - XITE Rock x Metal XITE R&amp;B Classic Jams Historias de Corazón World Surf League 24/7 - The Reuters 60 - Glewed TV - Toon Goggles - Maverick Black Cinema - SportsGrid Always Funny - Choppertown - Revry - Comedy Dynamics - The Boat Show - Nosey - Judge Nosey - People are Awesome - WeatherSpy The World Poker Tour - Cooking Panda - Wonder - History Hit - RACER International pocket.watch Game-On - Ryan and Friends - The Pet Collective - FailArmy - Yahoo Finance - The Design Network - GUSTOTV - SKWAD - TG Junior - Newsmax2 - Humor Mill - Waypoint TV - Hard Knocks - GoUSA TV - NHRA TV Poker Night TV - Qwest TV - Johnny Carson TV - The Carol Burnett Show - NEW K-POP - Rakuten Viki - WildEarth - BABY SHARK TV - Made In Hollywood - USA TODAY - AfroLandTV - Racing America - Stingray Hot Country Remember the ‘80s - Stingray Greatest Hits - Classic Rock - Stingray Soul Storm - Hit List - Bloomberg TV - Bloomberg Originals - Trailers From Hell Wellbeing TV - TED - Sonic TV - Shemaroo Bollywood - Qello Concerts - Stingray Classica Stream - Stingray Karaoke - This Old House - Today's K-Pop - Hip-Hop/R&amp;B - Y2K - Euro Hits - Easy Listening - Smooth Jazz - Pop Adult - Éxitos del Momento - Alternative - Nothin' But 90s - Flashback 70s - The Spa - Stingray Naturescape Movie Music by Stingray - FUEL TV - Brat TV PickleTV 123GO! CombaTV - GLORY Kickboxing Ideas En 5 Minutos - PokerGO Yu-Gi-Oh! - Nolly Africa HD - CBC News Beyond Paranormal - Novelisima Beyblade - Iron Chef - True Crime Now - Ghost Hunters Channel Travel Escapes Popflix - Beyond Belief Cheaters - Highway to Heaven - The Rifleman Arthur Made It Myself TV C4 en Alerta - Mythbusters Movieitaly Channel - Cricket Gold - FilmRise Free Movies FilmRise Free Series CBS News United Kingdom Survivorman on Plex - FilmRise Anime Escape to the Country - Mr. Bean TRACE UK Action Hollywood Movies - GB News - NewsWorld RCM - MYSTERY TV - INSIDE CRIME WORLD WAR TV HISTORY HUNTERS DEAL MASTERS UFC Corner Gas - Z Nation Dr. Phil - Homes Under the Hammer Drool - Hunter 21 Jump Street PLL Network Western Bound @@ -858,26 +367,17 @@ Lucha Plus GFN Soccer TV Life Down Under - The Bold and the Beautiful PeliMex - Unbeaten - Antiques Road Trip - TV5MONDE Info NEW KFOOD - World Billiards TV TV5MONDE Voyage TV5MONDE Chefs Crime Beat TV Bassmaster Dude Perfect FilmRise Creators - Mutant X - Andromeda The Hotel Inspector - Hell's Kitchen Ninja Warrior River Monsters - The Graham Norton Show Relic Hunter The Wiggles Preston &amp; Brianna @@ -888,25 +388,13 @@ CNN Headlines International Legacy Eurovision Sport - Motorvision TV - FTF Sports - MOVIESPHERE - Wired2Fish - Documentary+ - SLOPES + AddictaTV Eddie's Wonderland - COPS - Ninja Kidz TV - Women's Sports Network Cosmic Frontiers - Degrassi Real Crime Smurf TV Pitufo TV wedo movies - PFL MMA - Strongman Champions - Pac-12 Insider Mythical 24/7 MagellanTV Wildest History &amp; Warfare @@ -914,62 +402,32 @@ The World Poker Tour Icon Film Channel Classics Kidz Bop TV - Popular Science Surf Cinema - GREAT! movies - POP - Tiny Pop - POP UP Life+Style Bon Voyage Go Xplorer Ice Pilots NWT - Mr. Bean Live Action Pointless - American Crime Channel Sparkle Movies - Light &amp; Love - Animation+ - FRANCE 24 Homeful - HauntTV Love Pets K-Baseball TV Million Dollar Dream Home - Asian Drama - ITV Deportes Bizaar Mayday: Air Disaster Demand Drama So... Real Cesar's Pack Leader TV More U - Nosey Escándalos - Camp Spoopy Music Legends - Lone Star Sports Illustrated TV - Euronews Portuguese - Euronews Deutsch - Euronews Français - Euronews Italiano - Anger Management - Billiard TV - SPEEDVISION - MyTime Movie Network - JAIL - FashionTV The Osbournes - WipeoutXtra - McLeods Daughters The Biggest Loser - Adventure Earth Operation Repo - wedo big stories Hot Ones Highway Thru Hell The Wicked Tuna Channel Crime &amp; Justice - GREAT! romance Death Valley Days Unspeakable Untold Stories of the ER @@ -978,7 +436,6 @@ Tennis+ Bloodline Detectives Evidence of Evil - True Crime UK Who Wants to Be a Millionaire Sony One | Comedy Hits Sony One | Thriller TV @@ -987,179 +444,64 @@ Sony One | Comedy TV Medical Detectives Bowling TV - Euronews - Euronews Español - TRACE Latina - Grjngo - Western Movies - Real Wild - PursuitUP 5-Minute Crafts Fifth Gear (UK) The Talk Show Channel PBS History Hardcore Pawn OUTflix Proud - Tastemade PBS Science - FIFA+ - Great! Mystery - Deal Or No Deal The Emeril Lagasse Channel Cirque du Soleil Creator Television - PGA TOUR Gone Fishing Stars Central Real Crime Uncovered - XITE Hits INTER 24/7 - Powernation soap - True History - XFC TV - Watch it SCREAM - Galxy TV - El Conflicto TV - Farscape The Ed Sullivan Show - Fear Factor Startalk TV The Martha Stewart Channel Inside Outside Sony One | Action Hits - Most Haunted All My Children Dungeon TV - TRACE Urban CraftsyTV Dick Van Dyke Dr. G: Medical Examiner - Unsolved Mysteries Robot Wars by Mech+ Women Behind Bars - Go Wild Crime Scene TV Sonic The Hedgehog - Teletubbies Strawberry Shortcake - Monster Jam - CINEPRIDE - ACL Cornhole TV Great British Menu - Just For Laughs Gags Rookie Blue - Kidoodle TV Baby Einstein - TNA Wrestling Channel - Fight Network - Are We There Yet? - Watch it Kid - FrightFlix The Kids in the Hall - TRACE Brazuca - Get.Factual World Surf League 24/7 - The Reuters 60 - Glewed TV - Kidoodle TV - Toon Goggles - Maverick Black Cinema - SportsGrid Always Funny - Choppertown - Revry - The Boat Show - The Bob Ross Channel - Nosey - Judge Nosey - People are Awesome - WeatherSpy The World Poker Tour - Cooking Panda - Wonder - History Hit - RACER International - The Pet Collective - FailArmy - Yahoo Finance - The Design Network - GUSTOTV - SKWAD - TG Junior - Newsmax2 - Humor Mill - Waypoint TV - Hard Knocks - GoUSA TV - NHRA TV Poker Night TV - Qwest TV - Johnny Carson TV - The Carol Burnett Show - WildEarth - Made In Hollywood - USA TODAY - AfroLandTV - Racing America - Stingray Hot Country Remember the ‘80s - Stingray Greatest Hits - Classic Rock - Stingray Soul Storm - Hit List - Trailers From Hell - TED - Sonic TV - Shemaroo Bollywood - Today's K-Pop - Hip-Hop/R&amp;B - Y2K - Euro Hits - Easy Listening - Smooth Jazz - Pop Adult - Éxitos del Momento - Alternative - Nothin' But 90s - Flashback 70s - The Spa - FUEL TV - Brat TV PickleTV 123GO! CombaTV - GLORY Kickboxing Ideas En 5 Minutos - PokerGO Beyond Paranormal - Novelisima - True Crime Now - Ghost Hunters Channel Travel Escapes - Beyond Belief Cheaters - Highway to Heaven Arthur Made It Myself TV C4 en Alerta - Tastemade - Mythbusters Movieitaly Channel - Antiques Road Trip - Cricket Gold TRACE UK Action Hollywood Movies - GB News - NewsWorld RCM UFC Corner Gas - Z Nation Dr. Phil - Homes Under the Hammer Four in a Bed Drool - Hunter 21 Jump Street PLL Network Western Bound @@ -1167,22 +509,15 @@ Lucha Plus Bondi Vet Life Down Under - The Bold and the Beautiful PeliMex - Unbeaten NEW KFOOD - World Billiards TV TV5MONDE Voyage TV5MONDE Chefs Crime Beat TV Bassmaster Dude Perfect FilmRise Creators - Forensic Files - Mutant X - Andromeda River Monsters - The Graham Norton Show Come Dine With Me Relic Hunter The Wiggles @@ -1190,61 +525,32 @@ Metal.Rocks Beyblade Legacy - Motorvision TV - FTF Sports - Wired2Fish - Documentary+ - SLOPES + AddictaTV Eddie's Wonderland - COPS - Ninja Kidz TV - Women's Sports Network MagellanTV Wildest - Degrassi Smurf TV Pitufo TV - PFL MMA - Strongman Champions - Pac-12 Insider Mythical 24/7 History &amp; Warfare Stingray Holidayscapes The World Poker Tour Kidz Bop TV - Popular Science Surf Cinema Jade Fever Life+Style Bon Voyage Go Xplorer Ice Pilots NWT - American Crime Channel - Animation+ - FRANCE 24 Homeful K-Baseball TV Million Dollar Dream Home - Asian Drama - ITV Deportes Bizaar Mayday: Air Disaster Cesar's Pack Leader TV More U - Nosey Escándalos - Camp Spoopy Music Legends - Lone Star Sports Illustrated TV - Euronews Portuguese - Euronews Deutsch - Euronews Français - Euronews Italiano - Billiard TV - SPEEDVISION - JAIL - FashionTV The Osbournes - WipeoutXtra The Biggest Loser Adventure Earth Operation Repo @@ -1254,210 +560,54 @@ Death Valley Days Unspeakable Untold Stories of the ER - Iron Chef Sheriffs: El Dorado County Tennis+ Bowling TV Breaking Sports News - Euronews - Euronews Español - TRACE Latina - Grjngo - Western Movies - Real Wild Real Crime - PursuitUP 5-Minute Crafts Fifth Gear (UK) PBS History Hardcore Pawn PBS Science - Deal Or No Deal The Emeril Lagasse Channel Cirque du Soleil Creator Television - PGA TOUR Gone Fishing Stars Central Real Crime Uncovered INTER 24/7 - Powernation - True History - XFC TV - Watch it SCREAM - Galxy TV - El Conflicto TV - Don't Tell The Bride The Ed Sullivan Show - Fear Factor Startalk TV FIFA+ The Martha Stewart Channel - Most Haunted All My Children Dungeon TV - TRACE Urban CraftsyTV Dick Van Dyke Robot Wars by Mech+ Women Behind Bars - Go Wild Crime Scene TV - Monster Jam - CINEPRIDE - ACL Cornhole TV Great British Menu - Just For Laughs Gags - Undercover Boss Baby Einstein - TNA Wrestling Channel - Fight Network - Watch it Kid - FrightFlix The Kids in the Hall - TRACE Brazuca World Surf League 24/7 Inside Outside - The Reuters 60 - Glewed TV - AsianCrush - Wu Tang Collection - Game Show Central - FailArmy - KidsFlix - Dark Matter TV - Law &amp; Crime - RetroCrush - Midnight Pulp - Maverick Black Cinema - Tastemade - SportsGrid Always Funny - Choppertown - Comedy Dynamics - The Boat Show - The Bob Ross Channel - Gravitas Movies - Dove - So... Real - Nosey - Judge Nosey - People are Awesome - WeatherSpy - Cheddar - ACCDN - Hi-YAH! Xtreme Outdoor by HISTORY - A&amp;E Crime 360 - Home.Made.Nation - Wonder - History Hit pocket.watch Game-On - Ryan and Friends - Toon Goggles - Electric Now - The Pet Collective - SKWAD - TG Junior - Yahoo Finance - RACER Select - The Design Network - Judge Faith - Journy MagellanTV Wildest - Runtime Español Canela.TV Pasión Latina - Stadium - GUSTOTV - MOVIESPHERE - Newsmax2 - News 12 New York - Stingray Karaoke - Scripps News - Stories by AMC - AMC Thrillers - IFC Films Picks - Slightly Off IFC - Fubo Sports Network - The Walking Dead Universe - All Reality We TV - NBC News NOW GOLFPASS - Dateline - SNL Vault - TODAY All Day - NBC Sports NOW - Humor Mill - Waypoint TV - 24 Hour Free Movies - Hard Knocks - The Grio - Qello Concerts - GoTraveler - beIN SPORTS XTRA - NHRA TV Poker Night TV - Qwest TV - Johnny Carson TV - The Carol Burnett Show Shout! TV - NEW K-POP - Rakuten Viki - NEW K.MOVIES - MST3K - WildEarth - BABY SHARK TV - Stingray Naturescape - Made In Hollywood - All Weddings We TV - USA TODAY - AfroLandTV - Tribeca Channel - Racing America - Stingray Hot Country Remember the ‘80s - Stingray Greatest Hits - Classic Rock - Stingray Soul Storm - Hit List - True Crime Now - Portlandia - Trailers From Hell - Wanted: Dead or Alive - Caught in Providence - NFL Channel - Swerve Combat - Overtime - TED - Grit Xtra Ion Mystery - Sonic TV - VICE - Shemaroo Bollywood - ALF - AMC en Español - Stingray Classica Stream - FUEL TV - This Old House - Today's K-Pop - Hip-Hop/R&amp;B - Y2K - Euro Hits - Easy Listening - Smooth Jazz - Pop Adult - Éxitos del Momento - Alternative - Nothin' But 90s - Documentary+ - Flashback 70s - The Spa Movie Music by Stingray - Stingray DJAZZ MSG SportsZone Perform by Lifetime Lifetime Movie Favorites Torque Presented By History - Tiny House Nation Ax Men by History Crime ThrillHer Modern Marvels by History @@ -1465,14 +615,8 @@ UnXplained Zone Crimes Cults Killers Ice Road Truckers - Brat TV Gardening with Monty Don Alien Nation by DUST - Midsomer Murders - ANIME x HIDIVE - TMZ - The Price is Right - Baywatch PickleTV Dance Moms by Lifetime Military Heroes Presented By History @@ -1481,40 +625,26 @@ CombaTV Duck Dynasty by A&amp;E Cold Case Files by A&amp;E - GLORY Kickboxing - Love Pets DREAD TV - beIN Sports Xtra en Español Ideas En 5 Minutos - PokerGO OUTFLIX MOVIES - Nolly Africa HD Family Feud Classic Places &amp; Spaces - The Jamie Oliver Channel Supermarket Sweep - CBC News GameTVGO Beyond Paranormal - Novelisima Aliwko - Misterios sin Resolver Canela.TV Narco-Drama Cine de Horror Cine en Español FanDuel TV Extra - Ghost Hunters Channel Travel Escapes SPIN REELZ Famous &amp; Infamous Saborear TV Oro TV - Beyond Belief Cheaters - Highway to Heaven - The Rifleman Cine EstrellaTV - Estrella Games Canela.TV Hollywood y Más Canela.TV Deportes Canela.TV Clásicos @@ -1523,14 +653,12 @@ C4 en Alerta Non-Stop '90s Movieitaly Channel - Cricket Gold Paranormal Files Combat War Channel EarthXtra Zona Investigación ÚN TV Emoción Atres - PBS Retro 80's Sitcom Flashback How To Welcome Home @@ -1543,20 +671,14 @@ Bizarre Foods with Andrew Zimmern Crime Scenes At the Movies - BUZZR Rig TV Family Feud - Mr. Bean Ghosts Are Real Paws &amp; Claws - Designated Survivor The World Poker Tour - CNN Originals The Jim Rome Show - CNN Headlines Primetime Soaps Hit Sitcoms - MythBusters Horror Stories No Reservations Nip/Tuck @@ -1565,7 +687,6 @@ UFC Naturaleza Salvaje Corner Gas - Z Nation Continuum The Sherlock Holmes Channel WAPA+ @@ -1573,40 +694,27 @@ Four in a Bed Drool FilmRise Horror - FilmRise Free Movies - FilmRise Action - FilmRise Classic TV Horror by ALTER - Hunter 21 Jump Street - Willow Sports PLL Network Lucha Plus Game &amp; Fish TV - Shades of Black Storage Wars by A&amp;E Modern Innovations by History Chaos on Cam by A&amp;E Classic Car Auctions Bloodline Detectives Hosted by Nancy Grace - The New Detectives FilmRise Music - The Bold and the Beautiful Live PD Presents - Cine Romántico Gata Salvaje PeliMex Shout! Movies MI-5 - RCN Noticias Yahoo! Sports Network MotoGP Channel NEW KFOOD - World Billiards TV ROMCOM K-Drama - Revry Crime Beat TV - Revry Latinx Bassmaster Dude Perfect MrBeast @@ -1614,15 +722,12 @@ FilmRise Creators FilmRise Drama Murdoch Mysteries - The Graham Norton Show Novelas de Siempre Come Dine With Me The Wiggles Preston &amp; Brianna That Girl Metal.Rocks - Bloomberg TV - Bloomberg Originals Bonanza-Billies TV Beyblade World of Love Island @@ -1630,62 +735,34 @@ Bondi Rescue Scripps Sports Network SLVR Sports and Entertainment (SLVR) + Caracol Mix Legacy Penn &amp; Teller: Fool Us CW Presents WWE NXT + Speed Sport 1 + AddictaTV NFL Draft Vault - Motorvision TV - FTF Sports - Wired2Fish - Complex TV FreeTV Estelar - Spark TV Light &amp; Love - SLOPES - CineLife Eddie's Wonderland - Bounce XL - ION ION Plus - Ninja Kidz TV - ALLBLK Gems - LOL! Network - Outside - Women's Sports Network - HBCUGO SPORTS History &amp; Warfare - Vice News - Degrassi Real Crime Free Movies Plus - BritBox Mysteries Pitufo TV Jubao Screambox TV - PFL MMA - Transformers Power Rangers - Strongman Champions - HerSphere by Lionsgate Todo Cine LX Home Streaming - E! Keeping Up Bravo Vault Real Housewives Vault - Pac-12 Insider - Azteca Internacional - FilmRise True Crime - BBC News (North America) Mythical 24/7 Scares by Shudder - Dog Whisperer Dungeons &amp; Dragons Adventures - Lawless The Librarians - GoUSA TV Stingray Holidayscapes The World Poker Tour Kidz Bop TV - Popular Science Surf Cinema FOX Sports Wild West TV @@ -1695,180 +772,97 @@ Jade Fever La Fiebre del Jade Mi Casa - Buen Viaje Ice Pilots NWT (en español) Todo Crimen Ice Pilots NWT - Naturaleza - Mr. Bean Live Action - Animation+ Triton Poker - FRANCE 24 - Cowboy+ Sports Lifetime Movies Love &amp; Drama K-Baseball TV - PBS Travel Million Dollar Dream Home - Love Thy Neighbor - Wendy Williams - Asian Drama Todo Drama Stargate by MGM Hong Kong Fight Club Wedotv Amor Piel Salvaje Teleonce America Vive Kanal D Drama - XITE Classic Country - ITV Deportes Bizaar Green Acres MGM Presents: Action The Outer Limits - The Addams Family MGM Presents: Westerns - Extreme Jobs FreeTV Clásico Cesar's Pack Leader TV Western Bound Español Victory+ The Great British Competition Channel A&amp;E Live PD Greatest Shifts - Nashville More U - AccuWeather NOW - Nosey Escándalos - Camp Spoopy Music Legends - Lone Star Sports Illustrated TV - Surfer TV - Unidentified - Samuel Goldwyn Channel - Samuel Goldwyn Classics - Hallmark Movies &amp; More - RCN Más - Court TV - Anger Management - BBC Home &amp; Garden - Top Gear - Impossible - Quiz Show - Billiard TV El Rey Rebel - PBS Antiques Roadshow - Antiques Road Trip - Trailer Park Boys: The SwearNet Show - SPEEDVISION - FOX Weather Discovery Turbo TV - LiveNOW from FOX - BBC Earth Confess by Nosey - JAIL Cops en Español Noticias Telemundo AHORA Caso Cerrado - Telemundo al Dia Telemundo Acción - FashionTV The Osbournes - WipeoutXtra - McLeods Daughters The Biggest Loser Fork &amp; Flight Investigation - Ebony TV by Lionsgate - CBS News - Entertainment Tonight Operation Repo - The FBI Files Hot Ones Car Chase Highway Thru Hell - Yu-Gi-Oh! The Wicked Tuna Channel - The Asylum ZenLIFE by Stingray - INWONDER - The Conners - Nash Bridges Death Valley Days A Touch of Frost Prime Suspect The Doctor Blake Mysteries Unspeakable Untold Stories of the ER - LATV - Iron Chef Iron Chef en español Kim's Convenience Sheriffs: El Dorado County - 365BLK [FAST] NESN NATION Tennis+ The Outpost PBS Genealogy - 50 Cent Action - Amasian TV In The Heat Of The Night by MGM American Gladiators by MGM - Pink Panther Paternity Court MGM Presents Bowling TV Circle Country - Euronews - Estrella News - Estrella TV FreeTV Drama FreeTV Familia FreeTV Acción - Love Nature Western Bound - Classic Doctor Who - TRACE Latina - Grjngo - Western Movies Grjngo - Películas Del Oeste - PBS Nature - Real Wild Cosmic Frontiers - PursuitUP 5-Minute Crafts Fifth Gear (UK) 4UV Anger Management en español Crime &amp; Justice - Corazón - Curiosity NOW Todo Novelas, más Pasiones TV One Crime &amp; Justice The Black Effect TruBlu BBC Sci-Fi - BBC Travel BBC Comedy Cheaters en Español World's Most Evil Killers - Tennis Channel 2 - Dog the Bounty Hunter - FIFA+ BET x Tyler Perry Drama BET x Tyler Perry Comedy CW Gold CW Forever - Weeds &amp; Nurse Jackie My Little Pony The Emeril Lagasse Channel - Butaca TV Cirque du Soleil Creator Television - PGA TOUR Ancient Aliens - XITE Siempre Latino - XITE Rap Game - XITE R&amp;B Feels - XITE Reggae Vibes - XITE Celebrates - XITE Hip-Hop Evolution XITE Christian Hits XITE Gospel INTER 24/7 @@ -1876,28 +870,12 @@ TVOne Stars &amp; Stories FilmRise Black TV FreeTV Horror - Powernation - MHz Now - True History - Watch it SCREAM - El Conflicto TV - Antiques Roadshow UK - BBC Food - At Home with Family Handyman - Unbeaten - Farscape - Don't Tell The Bride - Celebrity Name Game The Ed Sullivan Show - OuterSphere by Lionsgate - MyTime Movie Network Court TV Legendary Trials Laff More PBS Food - Fear Factor Property Brothers Channel BBC Game Shows - CBS Sports HQ Startalk TV Mysteria Million Dollar Listing Vault @@ -1906,13 +884,8 @@ Barbie and Friends by Mattel Pam Grier's Soul Flix The First 48 by A&amp;E - Los Asesinatos de Midsomer - Z Nation Love After Lockup We TV Geraldo Rivera - Anime 24/7 - XITE Hits - XITE 60s &amp; 70s Groove XITE 80s Flashback America’s Funniest Home Videos FreeTV Banda @@ -1920,182 +893,1140 @@ FreeTV Hits FreeTV Saber Más FreeTV Sureño - TRACE Urban - Scream Factory TV CraftsyTV ElectricNOW en Español FilmRise Películas Gratis - FilmRise Western FilmRise Kids Hell's Kitchen &amp; Kitchen Nightmares - FilmRise Sci-Fi Dick Van Dyke FilmRise Concursos de Cocina FilmRise Series Gratis - Heartland Dr. G: Medical Examiner FilmRise British TV Autopista al Cielo - Unsolved Mysteries - FilmRise Anime - Forensic Files FilmRise Crímenes Verdaderos American Crimes Oxygen True Crime Archives - Clic Robot Wars by Mech+ Women Behind Bars - Deal Or No Deal - CBS Sports Golazo Network PickleballTV - Go Wild Crime Scene TV Sonic The Hedgehog - Teletubbies Strawberry Shortcake - Monster Jam The Doctors ONE Championship TV Acorn TV Mysteries - The Walking Dead Espanol Teen Wolf by MGM - XITE 90s Throwback - XITE Nuevo Latino - F1 Channel - FilmRise Mysteries GET DAZN Ringside - BlackPix - ACL Cornhole TV Real Disaster Channel Great British Menu - Just For Laughs Gags TVB Pearl Drama Plex24 Outlaw Hot Wheels Action DP World Tour - Kidoodle TV Baby Einstein - TNA Wrestling Channel - Fight Network - Are We There Yet? - FrightFlix Christmas Plus Silent Witness|New Tricks The Kids in the Hall XITE Country Today - So Yummy - TRACE Brazuca - Get.Factual - XITE Just Chill - XITE Rock x Metal XITE R&amp;B Classic Jams Historias de Corazón World Surf League 24/7 - The Reuters 60 - Glewed TV - Kidoodle TV - Toon Goggles - Maverick Black Cinema - SportsGrid + 24 Hour Free Movies + 24 Hour Free Movies + 50 Cent Action + 365BLK [FAST] + ACCDN + AccuWeather NOW + ACL Cornhole TV + ACL Cornhole TV + ACL Cornhole TV + ACL Cornhole TV + ACL Cornhole TV + Adventure Earth + Adventure Earth + Adventure Earth + Euronews Français + Euronews Français + Euronews Français + AfroLandTV + AfroLandTV + AfroLandTV + AfroLandTV + AfroLandTV + ALF + ALLBLK Gems + All Reality We TV + All Weddings We TV + AMC en Español + AMC Thrillers + American Crime Channel + American Crime Channel + American Crime Channel + Andromeda + Andromeda + Andromeda + Andromeda + Anger Management + Anger Management + Anger Management + Animation+ + Animation+ + Animation+ + Animation+ + Animation+ + Amasian TV + Anime 24/7 + Amasian TV + Anime 24/7 + ANIME x HIDIVE + Antiques Roadshow UK + Antiques Roadshow UK + Antiques Road Trip + Antiques Road Trip + Antiques Road Trip + Antiques Road Trip + Antiques Road Trip + Are We There Yet? + Are We There Yet? + Are We There Yet? + AsianCrush + AsianCrush + Asian Drama + Asian Drama + Asian Drama + Asian Drama + Asian Drama + The Asylum + At Home with Family Handyman + Corazón + Azteca Internacional + BABY SHARK TV + BABY SHARK TV + BABY SHARK TV + Complex TV + Complex TV + Baywatch + Baywatch + BBC Earth + BBC Food + BBC Food + BBC Home &amp; Garden + BBC Home &amp; Garden + BBC News (North America) + BBC Travel + BBC Travel + beIN SPORTS XTRA + beIN SPORTS XTRA + beIN Sports Xtra en Español + beIN Sports Xtra en Español + Beyond Belief + Beyond Belief + Beyond Belief + Beyond Belief + Beyond Belief + Billiard TV + Billiard TV + Billiard TV + Billiard TV + Billiard TV + BlackPix + BlackPix + Bloomberg Originals + Bloomberg Originals + Bloomberg Originals + Bloomberg Originals + Bloomberg TV + Bloomberg TV + Bloomberg TV + Bloomberg TV + Bounce XL + Brat TV + Brat TV + Brat TV + Brat TV + Brat TV + BritBox Mysteries + Buen Viaje + Butaca TV + BUZZR + Camp Spoopy + Camp Spoopy + Camp Spoopy + Camp Spoopy + Camp Spoopy + Caught in Providence + CBC News + CBC News + CBC News + CBC News + CBS News + CBS Sports Golazo Network + CBS Sports HQ + Celebrity Name Game + Cheddar + Cheddar + Choppertown + Choppertown + Choppertown + Choppertown + Choppertown + CineLife + CINEPRIDE + CINEPRIDE + CINEPRIDE + CINEPRIDE + Cine Romántico + Classic Doctor Who + Classic Doctor Who + Clic + CNN Headlines + CNN Originals + Comedy Dynamics + Comedy Dynamics + Comedy Dynamics + Cooking Panda + Cooking Panda + Cooking Panda + Cooking Panda + COPS + COPS + COPS + COPS + Court TV + Cricket Gold + Cricket Gold + Cricket Gold + Cricket Gold + Cricket Gold + A&amp;E Crime 360 + Curiosity NOW + Dark Matter TV + Dateline + Dateline + Deal Or No Deal + Deal Or No Deal + Deal Or No Deal + Deal Or No Deal + Deal Or No Deal + Degrassi + Degrassi + Degrassi + Degrassi + Degrassi + Designated Survivor + Documentary+ + Documentary+ + Documentary+ + Documentary+ + Documentary+ + Dog the Bounty Hunter + Dog the Bounty Hunter + Dog Whisperer + Don't Tell The Bride + Don't Tell The Bride + Don't Tell The Bride + Dove + Dove + Duck Dynasty + Ebony TV by Lionsgate + E! Keeping Up + El Conflicto TV + El Conflicto TV + El Conflicto TV + El Conflicto TV + El Conflicto TV + Electric Now + Entertainment Tonight + Estrella Games + Estrella News + Estrella TV + Euronews + Euronews + Euronews + Euronews + Euronews Deutsch + Euronews Deutsch + Euronews Deutsch + Euronews Deutsch + Euronews Italiano + Euronews Italiano + Euronews Italiano + Euronews Italiano + Euronews Portuguese + Euronews Portuguese + Euronews Portuguese + Euronews Portuguese + Euronews Español + Euronews Español + Euronews Español + Euronews Español + Extreme Jobs + F1 Channel + FailArmy + FailArmy + FailArmy + FailArmy + FailArmy + Farscape + Farscape + Farscape + FashionTV + FashionTV + FashionTV + FashionTV + FashionTV + The FBI Files + The FBI Files + Fear Factor + Fear Factor + Fear Factor + Fear Factor + Fear Factor + FIFA+ + FIFA+ + Fight Network + Fight Network + Fight Network + Fight Network + Fight Network + FilmRise Action + FilmRise Action + FilmRise Anime + FilmRise Anime + FilmRise Classic TV + FilmRise Classic TV + FilmRise Free Movies + FilmRise Free Movies + FilmRise Free Movies + FilmRise Mysteries + FilmRise Sci-Fi + FilmRise True Crime + FilmRise True Crime + FilmRise Western + FilmRise Western + Forensic Files + Forensic Files + Forensic Files + Forensic Files + FOX Weather + FRANCE 24 + FRANCE 24 + FRANCE 24 + FRANCE 24 + FRANCE 24 + FrightFlix + FrightFlix + FrightFlix + FrightFlix + FrightFlix + FTF Sports + FTF Sports + FTF Sports + FTF Sports + FTF Sports + Fubo Sports Network + FUEL TV + FUEL TV + FUEL TV + FUEL TV + FUEL TV + Galxy TV + Galxy TV + Galxy TV + Galxy TV + Game Show Central + Game Show Central + GB News + GB News + GB News + Get.Factual + Get.Factual + Get.Factual + Ghost Hunters Channel + Ghost Hunters Channel + Ghost Hunters Channel + Ghost Hunters Channel + Ghost Hunters Channel + Glewed TV + Glewed TV + Glewed TV + Glewed TV + Glewed TV + GLORY Kickboxing + GLORY Kickboxing + GLORY Kickboxing + GLORY Kickboxing + GLORY Kickboxing + GoTraveler + GoUSA TV + GoUSA TV + GoUSA TV + GoUSA TV + GoUSA TV + Go Wild + Go Wild + Go Wild + Go Wild + Go Wild + Gravitas Movies + Gravitas Movies + GREAT! movies + Great! Mystery + GREAT! romance + Grit Xtra + Grjngo - Western Movies + Grjngo - Western Movies + Grjngo - Western Movies + Grjngo - Western Movies + Grjngo - Western Movies + GUSTOTV + GUSTOTV + GUSTOTV + GUSTOTV + Hallmark Movies &amp; More + Hard Knocks + Hard Knocks + Hard Knocks + Hard Knocks + Hard Knocks + HauntTV + HauntTV + HBCUGO SPORTS + Heartland + Heartland + Hell's Kitchen + Hell's Kitchen + Hell's Kitchen + HerSphere by Lionsgate + Highway to Heaven + Highway to Heaven + Highway to Heaven + Highway to Heaven + Highway to Heaven + History Hit + History Hit + History Hit + History Hit + History Hit + Hi-YAH! + Homeful + Home.Made.Nation + Homes Under the Hammer + Homes Under the Hammer + Homes Under the Hammer + Humor Mill + Humor Mill + Humor Mill + Humor Mill + Humor Mill + Hunter + Hunter + Hunter + Hunter + Hunter + IFC Films Picks + Impossible - Quiz Show + Impossible - Quiz Show + INSIDE CRIME + INWONDER + ION + Iron Chef + Iron Chef + Iron Chef + Iron Chef + Iron Chef + ITV Deportes + ITV Deportes + ITV Deportes + ITV Deportes + ITV Deportes + JAIL + JAIL + JAIL + JAIL + JAIL + Johnny Carson TV + Johnny Carson TV + Johnny Carson TV + Johnny Carson TV + Johnny Carson TV + Journy + Journy + Judge Faith + Judge Faith + Judge Nosey + Judge Nosey + Judge Nosey + Judge Nosey + Judge Nosey + Just For Laughs Gags + Just For Laughs Gags + Just For Laughs Gags + Just For Laughs Gags + LOL! Network + Kidoodle TV + Kidoodle TV + Kidoodle TV + Kidoodle TV + Kidoodle TV + KidsFlix + LATV + Law &amp; Crime + Lawless + LiveNOW from FOX + Lone Star + Lone Star + Lone Star + Lone Star + Lone Star + Los Asesinatos de Midsomer + Love Nature + Love Pets + Love Thy Neighbor + Made In Hollywood + Made In Hollywood + Made In Hollywood + Made In Hollywood + Made In Hollywood + Maverick Black Cinema + Maverick Black Cinema + Maverick Black Cinema + Maverick Black Cinema + Maverick Black Cinema + McLeods Daughters + McLeods Daughters + McLeods Daughters + MHz Now + MHz Now + Midnight Pulp + Midnight Pulp + Midsomer Murders + Midsomer Murders + Misterios sin Resolver + Monster Jam + Monster Jam + Monster Jam + Monster Jam + Monster Jam + Most Haunted + Most Haunted + Most Haunted + Most Haunted + Motorvision TV + Motorvision TV + Motorvision TV + Motorvision TV + Motorvision TV + MOVIESPHERE + MOVIESPHERE + MOVIESPHERE + MOVIESPHERE + Mr. Bean + Mr. Bean + Mr. Bean + Mr. Bean + Mr. Bean Live Action + Mr. Bean Live Action + Mr. Bean Live Action + Mr. Bean Live Action + MST3K + MST3K + Mutant X + Mutant X + Mutant X + MYSTERY TV + Mythbusters + Mythbusters + Mythbusters + MythBusters + MyTime Movie Network + MyTime Movie Network + Nash Bridges + Nash Bridges + Nashville + Nashville + NBC News NOW + NBC News NOW + NBC Sports NOW + NEW K.MOVIES + NEW K.MOVIES + NEW K-POP + NEW K-POP + NEW K-POP + News 12 New York + News 12 New York + Newsmax2 + Newsmax2 + Newsmax2 + Newsmax2 + Newsmax2 + NewsWorld + NewsWorld + NewsWorld + NFL Channel + NHRA TV + NHRA TV + NHRA TV + NHRA TV + NHRA TV + Ninja Kidz TV + Ninja Kidz TV + Ninja Kidz TV + Ninja Kidz TV + Ninja Kidz TV + Nolly Africa HD + Nolly Africa HD + Nolly Africa HD + Nosey + Nosey + Nosey + Nosey + Nosey + Nosey Escándalos + Nosey Escándalos + Nosey Escándalos + Nosey Escándalos + Nosey Escándalos + RCN Noticias + Novelisima + Novelisima + Novelisima + Novelisima + Novelisima + OuterSphere by Lionsgate + Outside + Overtime + Pac-12 Insider + Pac-12 Insider + Pac-12 Insider + Pac-12 Insider + Pac-12 Insider + PBS Antiques Roadshow + PBS Antiques Roadshow + PBS Nature + PBS Retro + PBS Travel + PBS Travel + People are Awesome + People are Awesome + People are Awesome + People are Awesome + People are Awesome + PFL MMA + PFL MMA + PFL MMA + PFL MMA + PFL MMA + PGA TOUR + PGA TOUR + PGA TOUR + PGA TOUR + PGA TOUR + Naturaleza + PokerGO + PokerGO + PokerGO + PokerGO + PokerGO + POP + POP + Popular Science + Popular Science + Popular Science + Popular Science + Popular Science + POP UP + Portlandia + Powernation + Powernation + Powernation + Powernation + Powernation + PursuitUP + PursuitUP + PursuitUP + PursuitUP + PursuitUP + Qello Concerts + Qello Concerts + Qello Concerts + Qwest TV + Qwest TV + Qwest TV + Qwest TV + Qwest TV + RACER International + RACER International + RACER International + RACER Select + RACER Select + Racing America + Racing America + Racing America + Racing America + Racing America + Rakuten Viki + Rakuten Viki + Rakuten Viki + RCN Más + Real Wild + Real Wild + Real Wild + Real Wild + Real Wild + RetroCrush + RetroCrush + Revry + Revry + Revry + Revry + Revry + Revry Latinx + Runtime Español + Ryan and Friends + Ryan and Friends + Ryan and Friends + Ryan and Friends + Samuel Goldwyn Channel + Samuel Goldwyn Classics + Scream Factory TV + Scream Factory TV + Scripps News + Shades of Black + Shemaroo Bollywood + Shemaroo Bollywood + Shemaroo Bollywood + Shemaroo Bollywood + Shemaroo Bollywood + SKWAD + SKWAD + SKWAD + SKWAD + SKWAD + Slightly Off IFC + SLOPES + SLOPES + SLOPES + SLOPES + SLOPES + SNL Vault + Sonic TV + Sonic TV + Sonic TV + Sonic TV + Sonic TV + So... Real + So... Real + So Yummy + Spark TV Light &amp; Love + Spark TV Light &amp; Love + SPEEDVISION + SPEEDVISION + SPEEDVISION + SPEEDVISION + SPEEDVISION + SportsGrid + SportsGrid + SportsGrid + SportsGrid + SportsGrid + Stadium + Alternative + Alternative + Alternative + Alternative + Alternative + Stingray Classica Stream + Stingray Classica Stream + Stingray Classica Stream + Classic Rock + Classic Rock + Classic Rock + Classic Rock + Classic Rock + Stingray DJAZZ + Stingray DJAZZ + Stingray DJAZZ + Easy Listening + Easy Listening + Easy Listening + Easy Listening + Easy Listening + Euro Hits + Euro Hits + Euro Hits + Euro Hits + Euro Hits + Éxitos del Momento + Éxitos del Momento + Éxitos del Momento + Éxitos del Momento + Éxitos del Momento + Flashback 70s + Flashback 70s + Flashback 70s + Flashback 70s + Flashback 70s + Stingray Greatest Hits + Stingray Greatest Hits + Stingray Greatest Hits + Stingray Greatest Hits + Stingray Greatest Hits + Hip-Hop/R&amp;B + Hip-Hop/R&amp;B + Hip-Hop/R&amp;B + Hip-Hop/R&amp;B + Hip-Hop/R&amp;B + Hit List + Hit List + Hit List + Hit List + Hit List + Stingray Hot Country + Stingray Hot Country + Stingray Hot Country + Stingray Hot Country + Stingray Hot Country + Stingray Karaoke + Stingray Karaoke + Stingray Karaoke + Stingray Karaoke + Stingray Naturescape + Stingray Naturescape + Stingray Naturescape + Stingray Naturescape + Nothin' But 90s + Nothin' But 90s + Nothin' But 90s + Nothin' But 90s + Nothin' But 90s + Pop Adult + Pop Adult + Pop Adult + Pop Adult + Pop Adult + Smooth Jazz + Smooth Jazz + Smooth Jazz + Smooth Jazz + Smooth Jazz + Stingray Soul Storm + Stingray Soul Storm + Stingray Soul Storm + Stingray Soul Storm + Stingray Soul Storm + The Spa + The Spa + The Spa + The Spa + The Spa + Today's K-Pop + Today's K-Pop + Today's K-Pop + Today's K-Pop + Today's K-Pop + Y2K + Y2K + Y2K + Y2K + Y2K + Stories by AMC + Strongman Champions + Strongman Champions + Strongman Champions + Strongman Champions + Strongman Champions + Surfer TV + Swerve Combat + Swerve Combat + Tastemade + Tastemade + Tastemade + Tastemade + Tastemade + TED + TED + TED + TED + TED + Telemundo al Dia + Telemundo al Dia + Teletubbies + Teletubbies + Teletubbies + Teletubbies + Tennis Channel 2 + TG Junior + TG Junior + TG Junior + TG Junior + TG Junior + The Addams Family + The Addams Family + The Boat Show + The Boat Show + The Boat Show + The Boat Show + The Boat Show + The Bob Ross Channel + The Bob Ross Channel + The Bob Ross Channel + The Bold and the Beautiful + The Bold and the Beautiful + The Bold and the Beautiful + The Bold and the Beautiful + The Bold and the Beautiful + The Carol Burnett Show + The Carol Burnett Show + The Carol Burnett Show + The Carol Burnett Show + The Carol Burnett Show + The Conners + The Conners + Cowboy+ Sports + Cowboy+ Sports + The Design Network + The Design Network + The Design Network + The Design Network + The Design Network + The Graham Norton Show + The Graham Norton Show + The Graham Norton Show + The Graham Norton Show + The Grio + The Jamie Oliver Channel + The New Detectives + The New Detectives + The Pet Collective + The Pet Collective + The Pet Collective + The Pet Collective + The Pet Collective + Pink Panther + Pink Panther + The Price is Right + The Price is Right + The Reuters 60 + The Reuters 60 + The Reuters 60 + The Reuters 60 + The Reuters 60 + The Rifleman + The Rifleman + The Rifleman + The Walking Dead Espanol + The Walking Dead Universe + The Weather Network + Wendy Williams + This Old House + This Old House + This Old House + Three's Company + Tiny House Nation + Tiny House Nation + Tiny Pop + TMZ + TNA Wrestling Channel + TNA Wrestling Channel + TNA Wrestling Channel + TNA Wrestling Channel + TNA Wrestling Channel + TODAY All Day + Toon Goggles + Toon Goggles + Toon Goggles + Toon Goggles + Toon Goggles + Top Gear + Top Gear + Total Crime + TRACE Brazuca + TRACE Brazuca + TRACE Brazuca + TRACE Brazuca + TRACE Brazuca + TRACE Latina + TRACE Latina + TRACE Latina + TRACE Latina + TRACE Latina + TRACE Urban + TRACE Urban + TRACE Urban + TRACE Urban + TRACE Urban + Trailer Park Boys: The SwearNet Show + Trailer Park Boys: The SwearNet Show + Trailers From Hell + Trailers From Hell + Trailers From Hell + Trailers From Hell + Trailers From Hell + Transformers + Tribeca Channel + Tribeca Channel + True Crime UK + True Crime Now + True Crime Now + True Crime Now + True Crime Now + True Crime Now + True History + True History + True History + True History + True History + TSN The Ocho + TV5MONDE Info + Unbeaten + Unbeaten + Unbeaten + Unbeaten + Unbeaten + Undercover Boss + Undercover Boss + Unidentified + Unidentified + Unsolved Mysteries + Unsolved Mysteries + Unsolved Mysteries + USA TODAY + USA TODAY + USA TODAY + USA TODAY + USA TODAY + Vice News + VICE + Wanted: Dead or Alive + Wanted: Dead or Alive + Watch it Kid + Watch it Kid + Watch it Kid + Watch it Kid + Watch it SCREAM + Watch it SCREAM + Watch it SCREAM + Watch it SCREAM + Watch it SCREAM + Waypoint TV + Waypoint TV + Waypoint TV + Waypoint TV + Waypoint TV + WeatherSpy + WeatherSpy + WeatherSpy + WeatherSpy + WeatherSpy + wedo big stories + Weeds &amp; Nurse Jackie + Weeds &amp; Nurse Jackie + WildEarth + WildEarth + WildEarth + WildEarth + WildEarth + Willow Sports + Willow Sports + WipeoutXtra + WipeoutXtra + WipeoutXtra + WipeoutXtra + WipeoutXtra + Wired2Fish + Wired2Fish + Wired2Fish + Wired2Fish + Wired2Fish + Women's Sports Network + Women's Sports Network + Women's Sports Network + Women's Sports Network + Women's Sports Network + Wonder + Wonder + Wonder + Wonder + Wonder + World Billiards TV + World Billiards TV + World Billiards TV + World Billiards TV + World Billiards TV + Wu Tang Collection + Wu Tang Collection + XFC TV + XFC TV + XFC TV + XFC TV + XITE 60s &amp; 70s Groove + XITE 60s &amp; 70s Groove + XITE 90s Throwback + XITE 90s Throwback + XITE Celebrates + XITE Celebrates + XITE Classic Country + XITE Classic Country + XITE Hip-Hop Evolution + XITE Hip-Hop Evolution + XITE Hits + XITE Hits + XITE Hits + XITE Just Chill + XITE Just Chill + XITE Nuevo Latino + XITE Nuevo Latino + XITE Rap Game + XITE Rap Game + XITE R&amp;B Feels + XITE R&amp;B Feels + XITE Reggae Vibes + XITE Reggae Vibes + XITE Rock x Metal + XITE Rock x Metal + XITE Siempre Latino + XITE Siempre Latino + Yahoo Finance + Yahoo Finance + Yahoo Finance + Yahoo Finance + Yahoo Finance + Yu-Gi-Oh! + Z Nation + Z Nation + Z Nation + Z Nation + Z Nation + Z Nation Always Funny - Choppertown - Revry - The Boat Show - The Bob Ross Channel - Nosey - Judge Nosey - People are Awesome - WeatherSpy The World Poker Tour - Cooking Panda - RACER International - The Pet Collective - FailArmy - Yahoo Finance - The Design Network - GUSTOTV - SKWAD - TG Junior - Newsmax2 - Humor Mill - Waypoint TV - Hard Knocks - GoUSA TV - NHRA TV Poker Night TV - Qwest TV - Johnny Carson TV - The Carol Burnett Show - WildEarth Motorvision TV en Español - Made In Hollywood - USA TODAY - AfroLandTV - Racing America - Stingray Hot Country Remember the ‘80s - Stingray Greatest Hits - Classic Rock - Stingray Soul Storm - Hit List - Bloomberg TV - Bloomberg Originals - Trailers From Hell Wellbeing TV - TED - Sonic TV - Shemaroo Bollywood - Qello Concerts - Stingray Classica Stream - Stingray Karaoke - Today's K-Pop - Hip-Hop/R&amp;B - Y2K - Euro Hits - Easy Listening - Smooth Jazz - Pop Adult - Éxitos del Momento - Alternative - Nothin' But 90s - Flashback 70s - The Spa - Stingray Naturescape Movie Music by Stingray - FUEL TV - Brat TV PickleTV 123GO! CombaTV - GLORY Kickboxing Ideas En 5 Minutos - PokerGO Yu-Gi-Oh! - Nolly Africa HD - Novelisima - Misterios sin Resolver Saborear TV Oro TV VR+ - Milenio Television Made It Myself TV C4 en Alerta - Tastemade en Español - Cricket Gold FilmRise Sci-Fi TRACE UK Action Hollywood Movies - NewsWorld RCM UFC - Z Nation Dr. Phil Drool - Cine Western wedo amor - Hunter 21 Jump Street PLL Network ZenLIFE by Stingray @@ -2105,13 +2036,8 @@ GFN Soccer TV Life Down Under Z Nation - The Bold and the Beautiful PeliMex - RCN Noticias - Unbeaten - TV5MONDE Info NEW KFOOD - World Billiards TV TV5MONDE Voyage TV5MONDE Chefs Crime Beat TV @@ -2123,86 +2049,40 @@ Bondi Rescue CNN Headlines International Legacy - FTF Sports - Wired2Fish - Documentary+ - SLOPES + AddictaTV Eddie's Wonderland - COPS - Ninja Kidz TV - Women's Sports Network FreeTV Clásico FreeTV Estelar Cosmic Frontiers Pitufo TV - PFL MMA - Strongman Champions - Pac-12 Insider - Azteca Internacional Mythical 24/7 Stingray Holidayscapes The World Poker Tour Kidz Bop TV - Popular Science Surf Cinema - Archivos Forenses La Fiebre del Jade Mi Casa Todo Crimen Ice Pilots NWT (en español) - Buen Viaje Ice Pilots NWT - Naturaleza - Historia Y Vida - Animation+ - FRANCE 24 - Nature Time - Homeful K-Baseball TV Million Dollar Dream Home - RCN Más Todo Drama - Asian Drama Newsmax en Español - ITV Deportes Bizaar FreeTV Banda - El Mueble Cesar's Pack Leader TV - MOVIESPHERE More U - Nosey Escándalos - Camp Spoopy Music Legends - Lone Star Sports Illustrated TV - Euronews Portuguese - Euronews Deutsch - Euronews Français - Euronews Italiano - Billiard TV - SPEEDVISION - JAIL Cops en Español - FashionTV - Cine Friki - Todo Novelas Operation Repo Hot Ones Death Valley Days - Runtime Thriller Tennis+ Bowling TV - Euronews - Euronews Español - TRACE Latina - Grjngo - Western Movies - PursuitUP 5-Minute Crafts - Corazón Cheaters en Español - Runtime Crimen - Runtime Clásicos Runtime Ana y los 7 Sangre Fría The Emeril Lagasse Channel @@ -2214,138 +2094,39 @@ Wineman Todo Pasión INTER 24/7 - Powernation - True History - XFC TV - Watch it SCREAM - Galxy TV - El Conflicto TV - Farscape The Ed Sullivan Show - Andromeda - Mutant X Startalk TV - Runtime Romance - Runtime Acción The Martha Stewart Channel - Actualidad 360 Comercio TV Sony One | Hits Comedia The Blacklist All My Children FreeTV Hits Dungeon TV - TRACE Urban CraftsyTV Dick Van Dyke - Clic Robot Wars by Mech+ - Monster Jam FIFA+ - Runtime Series Wedotv Amor Piel Salvaje Shark Tank - CINEPRIDE - ACL Cornhole TV - MyTime Movie Network - Just For Laughs Gags - Runtime Runtime Familia - Curro Jimenez - Viajes &amp; Sabores Baby Einstein - TNA Wrestling Channel - Fight Network - Watch it Kid - FrightFlix Sony One | Series Thriller - TRACE Brazuca Sony One | Hits Acción Sony One | Series Comedia - Runtime Comedia - Crimen Y Historia World Surf League 24/7 Sony One | Éxitos - The Reuters 60 - Glewed TV - Kidoodle TV - Toon Goggles - Maverick Black Cinema - SportsGrid Always Funny - Choppertown - Revry - The Boat Show - The Bob Ross Channel - Nosey - Judge Nosey - People are Awesome - WeatherSpy The World Poker Tour - Cooking Panda - RACER International pocket.watch Game-On - Ryan and Friends - The Pet Collective - FailArmy - Yahoo Finance - The Design Network - GUSTOTV - SKWAD - TG Junior - Newsmax2 - Humor Mill - Waypoint TV - Hard Knocks - GoUSA TV - NHRA TV Poker Night TV - Qwest TV - Johnny Carson TV - The Carol Burnett Show - WildEarth Motorvision TV en Español - Made In Hollywood - USA TODAY - AfroLandTV - Racing America - Stingray Hot Country Remember the ‘80s - Stingray Greatest Hits - Classic Rock - Stingray Soul Storm - Hit List - Bloomberg TV - Bloomberg Originals - Trailers From Hell - TED - Sonic TV - Shemaroo Bollywood - Today's K-Pop - Hip-Hop/R&amp;B - Y2K - Euro Hits - Easy Listening - Smooth Jazz - Pop Adult - Éxitos del Momento - Alternative - Nothin' But 90s - Stingray Karaoke - Flashback 70s - The Spa - Stingray Naturescape - FUEL TV - Brat TV PickleTV 123GO! Aym Sports TV CombaTV - GLORY Kickboxing Ideas En 5 Minutos - PokerGO - Novelisima - Misterios sin Resolver Canela.TV Narco-Drama Cine de Horror Cine en Español @@ -2354,28 +2135,22 @@ Canela.TV Clásicos VR+ Canal 6 CDMX - Milenio Television Made It Myself TV C4 en Alerta - Tastemade en Español Movieitaly Channel - Cricket Gold FilmRise Series Gratis FilmRise Crimenes Verdaderos Zona Investigación ÚN TV Emoción Atres - Mr. Bean TRACE UK Action Hollywood Movies - NewsWorld RCM UFC Naturaleza Salvaje Dr. Phil Drool wedo amor - Hunter 21 Jump Street PLL Network ZenLIFE by Stingray @@ -2383,19 +2158,12 @@ Gata Salvaje Life Down Under Z Nation - The Bold and the Beautiful - Cine Romántico PeliMex - RCN Noticias - Unbeaten - Los asesinatos de Midsomer Pánico TV Español NEW KFOOD - World Billiards TV TV5MONDE Voyage TV5MONDE Chefs Crime Beat TV - Revry Latinx Bassmaster Dude Perfect Monstruos De Rio @@ -2405,115 +2173,64 @@ Nature Moments Bondi Rescue Legacy - FTF Sports - Wired2Fish + AddictaTV FreeTV Acción FreeTV Drama - Documentary+ - SLOPES Eddie's Wonderland - COPS - Ninja Kidz TV - Women's Sports Network MagellanTV Wildest Smurf TV Pitufo TV - PFL MMA - Strongman Champions Todo Cine - Pac-12 Insider - Azteca Internacional Mythical 24/7 Stingray Holidayscapes The World Poker Tour Kidz Bop TV - Popular Science Surf Cinema La Fiebre del Jade Mi Casa - Buen Viaje Ice Pilots NWT (en español) Todo Crimen Ice Pilots NWT - Naturaleza - Animation+ - FRANCE 24 K-Baseball TV Million Dollar Dream Home - RCN Más Todo Drama Newsmax en Español Teleonce America Vive Kanal D Drama - ITV Deportes Bizaar FreeTV Sureño FreeTV Clásico Cesar's Pack Leader TV Western Bound Español More U - Nosey Escándalos - Camp Spoopy Music Legends - Lone Star Sports Illustrated TV - RCN Más - Euronews Portuguese - Euronews Deutsch - Euronews Français - Euronews Italiano - Billiard TV - SPEEDVISION - JAIL Cops en Español - FashionTV - Todo Novelas Operation Repo Hot Ones Spark TV Luz y Amor - MOVIESPHERE Death Valley Days Cindie TV Iron Chef en español - Zee Mundo Tennis+ - Nature Time Bowling TV Historias de Corazón Homeful - Euronews - Euronews Español FreeTV Familia - TRACE Latina Grjngo - Películas Del Oeste - PursuitUP 5-Minute Crafts AZTECA UNO -1 hora - Corazón Cheaters en Español Sangre Fría - Runtime Romance CinEspanto The Emeril Lagasse Channel Cirque du Soleil Creator Television - PGA TOUR Platos Sucios Wineman INTER 24/7 - Powernation - True History - XFC TV - Watch it SCREAM - Galxy TV - El Conflicto TV - Farscape The Ed Sullivan Show - Andromeda - Mutant X Startalk TV - Runtime - Runtime Crimen The Martha Stewart Channel Comercio TV Cine Friki Latino @@ -2526,131 +2243,351 @@ FreeTV Saber Más FreeTV Sureño Dungeon TV - TRACE Urban CraftsyTV Dick Van Dyke Autopista al Cielo - Clic Robot Wars by Mech+ - Monster Jam Wedotv Amor Piel Salvaje FreeTV Saber Más - CINEPRIDE - ACL Cornhole TV - Just For Laughs Gags - FIFA+ Runtime Familia - Runtime Comedia Baby Einstein - TNA Wrestling Channel - Fight Network - Watch it Kid - FrightFlix FreeTV Banda MasterChef Mexico Survivor Mexico Toon Goggles en Español - TRACE Brazuca - Runtime Acción World Surf League 24/7 - The Reuters 60 - Glewed TV - Kidoodle TV - Toon Goggles - Maverick Black Cinema - SportsGrid + ACL Cornhole TV + ACL Cornhole TV + Actualidad 360 + Euronews Français + Euronews Français + AfroLandTV + AfroLandTV + Andromeda + Andromeda + Animation+ + Animation+ + Archivos Forenses + Asian Drama + Corazón + Corazón + Azteca Internacional + Azteca Internacional + Billiard TV + Billiard TV + Bloomberg Originals + Bloomberg Originals + Bloomberg TV + Bloomberg TV + Brat TV + Brat TV + Buen Viaje + Buen Viaje + Camp Spoopy + Camp Spoopy + Choppertown + Choppertown + Cine Friki + CINEPRIDE + CINEPRIDE + Cine Romántico + Cine Western + Clic + Clic + Cooking Panda + Cooking Panda + COPS + COPS + Cricket Gold + Cricket Gold + Crimen Y Historia + Curro Jimenez + Documentary+ + Documentary+ + El Conflicto TV + El Conflicto TV + El Mueble + Euronews + Euronews + Euronews Deutsch + Euronews Deutsch + Euronews Italiano + Euronews Italiano + Euronews Portuguese + Euronews Portuguese + Euronews Español + Euronews Español + FailArmy + FailArmy + Farscape + Farscape + FashionTV + FashionTV + FIFA+ + Fight Network + Fight Network + FRANCE 24 + FRANCE 24 + FrightFlix + FrightFlix + FTF Sports + FTF Sports + FUEL TV + FUEL TV + Galxy TV + Galxy TV + Glewed TV + Glewed TV + GLORY Kickboxing + GLORY Kickboxing + GoUSA TV + GoUSA TV + Grjngo - Western Movies + GUSTOTV + GUSTOTV + Hard Knocks + Hard Knocks + Historia Y Vida + Homeful + Humor Mill + Humor Mill + Hunter + Hunter + ITV Deportes + ITV Deportes + JAIL + JAIL + Johnny Carson TV + Johnny Carson TV + Judge Nosey + Judge Nosey + Just For Laughs Gags + Just For Laughs Gags + Kidoodle TV + Kidoodle TV + Lone Star + Lone Star + Los asesinatos de Midsomer + Made In Hollywood + Made In Hollywood + Maverick Black Cinema + Maverick Black Cinema + Milenio Television + Milenio Television + Misterios sin Resolver + Misterios sin Resolver + Monster Jam + Monster Jam + MOVIESPHERE + MOVIESPHERE + Mr. Bean + Mutant X + Mutant X + MyTime Movie Network + Nature Time + Nature Time + Newsmax2 + Newsmax2 + NewsWorld + NewsWorld + NHRA TV + NHRA TV + Ninja Kidz TV + Ninja Kidz TV + Nolly Africa HD + Nosey + Nosey + Nosey Escándalos + Nosey Escándalos + RCN Noticias + RCN Noticias + Novelisima + Novelisima + Pac-12 Insider + Pac-12 Insider + People are Awesome + People are Awesome + PFL MMA + PFL MMA + PGA TOUR + Naturaleza + Naturaleza + PokerGO + PokerGO + Popular Science + Popular Science + Powernation + Powernation + PursuitUP + PursuitUP + Qello Concerts + Qwest TV + Qwest TV + RACER International + RACER International + Racing America + Racing America + RCN Más + RCN Más + RCN Más + Revry + Revry + Revry Latinx + Runtime + Runtime + Runtime Acción + Runtime Acción + Runtime Clásicos + Runtime Comedia + Runtime Comedia + Runtime Crimen + Runtime Crimen + Runtime Romance + Runtime Romance + Runtime Series + Runtime Thriller + Ryan and Friends + Shemaroo Bollywood + Shemaroo Bollywood + SKWAD + SKWAD + SLOPES + SLOPES + Sonic TV + Sonic TV + SPEEDVISION + SPEEDVISION + SportsGrid + SportsGrid + Alternative + Alternative + Stingray Classica Stream + Classic Rock + Classic Rock + Easy Listening + Easy Listening + Euro Hits + Euro Hits + Éxitos del Momento + Éxitos del Momento + Flashback 70s + Flashback 70s + Stingray Greatest Hits + Stingray Greatest Hits + Hip-Hop/R&amp;B + Hip-Hop/R&amp;B + Hit List + Hit List + Stingray Hot Country + Stingray Hot Country + Stingray Karaoke + Stingray Karaoke + Stingray Naturescape + Stingray Naturescape + Nothin' But 90s + Nothin' But 90s + Pop Adult + Pop Adult + Smooth Jazz + Smooth Jazz + Stingray Soul Storm + Stingray Soul Storm + The Spa + The Spa + Today's K-Pop + Today's K-Pop + Y2K + Y2K + Strongman Champions + Strongman Champions + Tastemade en Español + Tastemade en Español + TED + TED + TG Junior + TG Junior + The Boat Show + The Boat Show + The Bob Ross Channel + The Bob Ross Channel + The Bold and the Beautiful + The Bold and the Beautiful + The Carol Burnett Show + The Carol Burnett Show + The Design Network + The Design Network + The Pet Collective + The Pet Collective + The Reuters 60 + The Reuters 60 + TNA Wrestling Channel + TNA Wrestling Channel + Todo Novelas + Todo Novelas + Toon Goggles + Toon Goggles + TRACE Brazuca + TRACE Brazuca + TRACE Latina + TRACE Latina + TRACE Urban + TRACE Urban + Trailers From Hell + Trailers From Hell + True History + True History + TV5MONDE Info + Unbeaten + Unbeaten + USA TODAY + USA TODAY + Viajes &amp; Sabores + Watch it Kid + Watch it Kid + Watch it SCREAM + Watch it SCREAM + Waypoint TV + Waypoint TV + WeatherSpy + WeatherSpy + WildEarth + WildEarth + Wired2Fish + Wired2Fish + Women's Sports Network + Women's Sports Network + World Billiards TV + World Billiards TV + XFC TV + XFC TV + Yahoo Finance + Yahoo Finance + Zee Mundo + Z Nation Always Funny - Choppertown - Revry - The Boat Show - The Bob Ross Channel - Nosey - Judge Nosey - People are Awesome - WeatherSpy The World Poker Tour - Cooking Panda - RACER International - The Pet Collective - FailArmy - Yahoo Finance - The Design Network - GUSTOTV - SKWAD - TG Junior - Newsmax2 - Humor Mill - Waypoint TV - Hard Knocks - GoUSA TV - NHRA TV Poker Night TV - Qwest TV - Johnny Carson TV - The Carol Burnett Show - WildEarth - Made In Hollywood - USA TODAY - AfroLandTV - Racing America - Stingray Hot Country Remember the ‘80s - Stingray Greatest Hits - Classic Rock - Stingray Soul Storm - Hit List - Bloomberg TV - Bloomberg Originals - Trailers From Hell - TED - Sonic TV - Shemaroo Bollywood - Qello Concerts - Stingray Classica Stream - Stingray Karaoke - Today's K-Pop - Hip-Hop/R&amp;B - Y2K - Euro Hits - Easy Listening - Smooth Jazz - Pop Adult - Éxitos del Momento - Alternative - Nothin' But 90s - Flashback 70s - The Spa - Stingray Naturescape Movie Music by Stingray - FUEL TV MOTUS La Chaine Ya Que La Vérité La Chaine Homicide Enquêtes de Choc - Brat TV PickleTV 123GO! CombaTV - GLORY Kickboxing Ideas En 5 Minutos - PokerGO Yu-Gi-Oh! - Nolly Africa HD - CBC News - Novelisima Made It Myself TV C4 en Alerta - Cricket Gold FilmRise Série Populaire FilmRise Binge Watch TRACE UK Action Hollywood Movies - NewsWorld RCM UFC Dr. Phil Drool - Hunter 21 Jump Street PLL Network ZenLIFE by Stingray @@ -2658,21 +2595,15 @@ Lucha Plus GFN Soccer TV Life Down Under - The Bold and the Beautiful - IntoCrime PeliMex - Unbeaten Un Si Grand Soleil - TV5MONDE Info NEW KFOOD - World Billiards TV TV5MONDE Voyage TV5MONDE Chefs Crime Beat TV Bassmaster Dude Perfect Les filles d’à côtés TV - Alerte à Malibu TV Génération Sitcoms TV The Wiggles Metal.Rocks @@ -2683,113 +2614,194 @@ Bondi Rescue CNN Headlines International Legacy - FTF Sports - Wired2Fish - Documentary+ - SLOPES + AddictaTV Eddie's Wonderland - COPS - Women's Sports Network Cosmic Frontiers Smurf TV Pitufo TV - PFL MMA - Strongman Champions - Pac-12 Insider Mythical 24/7 Stingray Holidayscapes The World Poker Tour Kidz Bop TV - Popular Science Surf Cinema Ice Pilots NWT - Voyages &amp; Saveurs - Love Crime &amp; History - Animation+ - Motorvision - FRANCE 24 K-Baseball TV Million Dollar Dream Home - Asian Drama Crime Scene TV Echos du Monde - ITV Deportes Bizaar Mayday: Catastrophe Aérienne Cesar's Pack Leader TV - MOVIESPHERE Soap More U - Nosey Escándalos - Camp Spoopy Music Legends - Lone Star Sports Illustrated TV - Euronews Portuguese - Euronews Deutsch - Euronews Français - Euronews Italiano - Billiard TV - SPEEDVISION - JAIL - FashionTV - Fréquence Novelas - Emotion' L - Ciné Nanar Operation Repo Hot Ones Death Valley Days Z Nation Tennis+ - Nature Time Bowling TV - Euronews - Euronews Español - Grjngo - Western Movies - PursuitUP 5-Minute Crafts Scream'IN - Ciné Western - Tastemade The Emeril Lagasse Channel Cirque du Soleil Creator Television INTER 24/7 - Sony One | Séries Thriller - Blacklist - Powernation - True History - XFC TV - Watch it SCREAM - Galxy TV - El Conflicto TV - Farscape The Ed Sullivan Show Startalk TV - FIFA+ The Martha Stewart Channel - Sony One | Hits Action - Sony One | Favoris All My Children Dungeon TV CraftsyTV Dick Van Dyke Robot Wars by Mech+ - Monster Jam Grjngo - Films de Western - Sony One | Séries Comédie - CINEPRIDE - ACL Cornhole TV MyTime Movie Network - Just For Laughs Gags Baby Einstein - TNA Wrestling Channel + World Surf League 24/7 + ACL Cornhole TV + Euronews Français + AfroLandTV + Alerte à Malibu TV + Animation+ + Asian Drama + Billiard TV + Bloomberg Originals + Bloomberg TV + Brat TV + Camp Spoopy + CBC News + Choppertown + Ciné Nanar + CINEPRIDE + Ciné Western + Cooking Panda + COPS + Cricket Gold + Documentary+ + El Conflicto TV + Emotion' L + Euronews + Euronews Deutsch + Euronews Italiano + Euronews Portuguese + Euronews Español + FailArmy + Farscape + FashionTV + FIFA+ Fight Network - Watch it Kid + FRANCE 24 + Fréquence Novelas FrightFlix + FTF Sports + FUEL TV + Galxy TV + Glewed TV + GLORY Kickboxing + GoUSA TV + Grjngo - Western Movies + GUSTOTV + Hard Knocks + Humor Mill + Hunter + IntoCrime + ITV Deportes + JAIL + Johnny Carson TV + Judge Nosey + Just For Laughs Gags + Kidoodle TV + Lone Star + Love Crime &amp; History + Made In Hollywood + Maverick Black Cinema + Monster Jam + Motorvision + MOVIESPHERE + Nature Time + Newsmax2 + NewsWorld + NHRA TV + Nolly Africa HD + Nosey + Nosey Escándalos + Novelisima + Pac-12 Insider + People are Awesome + PFL MMA + PokerGO + Popular Science + Powernation + PursuitUP + Qello Concerts + Qwest TV + RACER International + Racing America + Revry + Runtime + Shemaroo Bollywood + SKWAD + SLOPES + Sonic TV + Blacklist + Sony One | Favoris + Sony One | Hits Action Sony One | Hits Comédie + Sony One | Séries Comédie + Sony One | Séries Thriller + SPEEDVISION + SportsGrid + Alternative + Stingray Classica Stream + Classic Rock + Easy Listening + Euro Hits + Éxitos del Momento + Flashback 70s + Stingray Greatest Hits + Hip-Hop/R&amp;B + Hit List + Stingray Hot Country + Stingray Karaoke + Stingray Naturescape + Nothin' But 90s + Pop Adult + Smooth Jazz + Stingray Soul Storm + The Spa + Today's K-Pop + Y2K + Strongman Champions + Tastemade + TED + TG Junior + The Boat Show + The Bob Ross Channel + The Bold and the Beautiful + The Carol Burnett Show + The Design Network + The Pet Collective + The Reuters 60 + TNA Wrestling Channel + Toon Goggles TRACE Brazuca TRAILERS - Runtime - World Surf League 24/7 + Trailers From Hell + True History + TV5MONDE Info + Unbeaten + USA TODAY + Voyages &amp; Saveurs + Watch it Kid + Watch it SCREAM + Waypoint TV + WeatherSpy + WildEarth + Wired2Fish + Women's Sports Network + World Billiards TV + XFC TV + Yahoo Finance diff --git a/sites/movistarplus.es/__data__/content.json b/sites/movistarplus.es/__data__/content.json new file mode 100644 index 000000000..3cbaaa5f2 --- /dev/null +++ b/sites/movistarplus.es/__data__/content.json @@ -0,0 +1,5025 @@ +[ + { + "CodEventoRejilla": 164951929, + "ShowId": 63188242, + "Id": 4235944, + "TipoContenido": "Episodio", + "CodSubTipoContenido": null, + "SubTipoContenido": null, + "TipoComercial": "Subscripcion", + "TipoEmision": null, + "Ficha": "https://ottcache.dof6.com/movistarplus/webplayer/contents/63188242/details?mediaType=FOTOV&profile=OTT&mode=U7D2&channels=SEXTA&version=8&tlsStream=true&mdrm=true&catalog=catchup&showNonRated=true", + "TipoComercial2": { + "Tipo": "Subscripcion", + "Descripcion": null + }, + "links": [ + { + "rel": "details", + "href": "https://ottcache.dof6.com/movistarplus/webplayer/contents/63188242/details?mediaType=FOTOV&profile=OTT&mode=U7D2&channels=SEXTA&version=8&tlsStream=true&mdrm=true&catalog=catchup&showNonRated=true", + "id": 63188242 + }, + { + "rel": "start-over", + "href": "https://grmovistar.imagenio.telefonica.net/asfe/rest/tvMediaURLs?tvProgram.id=63188242&svc=startover", + "state": null + }, + { + "rel": "catch-up", + "href": "https://grmovistar.imagenio.telefonica.net/asfe/rest/tvMediaURLs?tvProgram.id=63188242&svc=cutv", + "state": null + }, + { + "rel": "npvr", + "href": "https://grmovistar.imagenio.telefonica.net/asfe/rest/tvMediaURLs?tvProgram.id=63188242&svc=npvr", + "state": null + }, + { + "rel": "alternate", + "href": "appmovistar://movistarplus.es/ficha?id=4235944&referrer=api", + "class": "entryPoint", + "hints": { + "devices": [ + "android.cell", + "iphone", + "amazon.tv" + ] + } + }, + { + "rel": "alternate", + "href": "https://wl.movistarplus.es/ficha/?id=4235944&referrer=api", + "class": "entryPoint", + "hints": { + "devices": [ + "web" + ] + } + }, + { + "rel": "alternate", + "href": "https://wl.movistarplus.es/play?id=4235944&referrer=api", + "class": "play", + "hints": { + "devices": [ + "web" + ] + } + } + ], + "TiposComerciales": [], + "ContenedorRef": null, + "Directo": false, + "Grabable": false, + "Titulo": "Especial ARV elecciones Aragón", + "Estreno": true, + "LenguajeSignos": false, + "Nacionalidad": "España", + "Lanzable": false, + "Duracion": 165, + "DuracionEnSegundos": 9900, + "GeneroComAntena": "Política", + "Imagen": "https://estatico.emisiondof6.com/recorte/n/ywcatalogov/MSEXTAT4235944", + "Imagenes": [ + { + "id": "default", + "uri": "https://estatico.emisiondof6.com/recorte/n/ywcatalogov/MSEXTAT4235944" + }, + { + "id": "vertical", + "uri": "https://estatico.emisiondof6.com/recorte/n/ywcatalogov/MSEXTAT4235944" + }, + { + "id": "horizontal", + "uri": "https://estatico.emisiondof6.com/recorte/n/ywcatalogoh/MSEXTAT4235944" + }, + { + "id": "watch2tgr-start", + "uri": "https://estatico.emisiondof6.com/recorte/n/vegtooltip/MSEXTAT4235944.jpg" + }, + { + "id": "watch2tgr-end", + "uri": "https://estatico.emisiondof6.com/recorte/n/vegend/MSEXTAT4235944.jpg" + } + ], + "TituloSerie": "Especial ARV elecciones Aragón", + "Temporada": "(T2026)", + "SerialId": 63188236, + "TituloEpisodio": "Ep. 1 \"El análisis\"", + "TituloVerLinea1": "Especial ARV elecciones Aragón", + "TituloVerLinea2": null, + "TituloHorLinea1": "Especial ARV elecciones Aragón", + "TituloHorLinea2": "T2026 E1 \"El análisis\"", + "TituloAccesible": "Especial ARV elecciones Aragón", + "Valoracion": null, + "TituloNormalizado": "especial-arv-elecciones-aragon", + "RutaNormalizada": null, + "FechaHoraInicio": "1770587100000", + "FechaHoraFin": "1770597000000", + "FechaEmision": "2026-02-08", + "DuracionParrilla": 90, + "DuracionParrillaEnSegundos": 5400, + "FormatoVideo": 1, + "Disponible": true, + "Canal": { + "CodCadenaTv": "SEXTA", + "Nombre": "La Sexta", + "Uid": 444099, + "CasId": "4526", + "ServiceUid": "717", + "ServiceUid2": "4526", + "ServiceId": 6, + "PuntoReproduccion": "https://lasexta-dash-movistarplus.emisiondof6.com/manifest.mpd", + "Logos": [ + { + "id": "default", + "state": null, + "uri": "https://estatico.emisiondof6.com/recorte/m-DPBLAN/wpmos/SEXTA" + }, + { + "id": "default", + "state": "over", + "uri": "https://estatico.emisiondof6.com/recorte/m-DP/wpmos/SEXTA" + }, + { + "id": "bg_dark", + "state": null, + "uri": "https://estatico.emisiondof6.com/recorte/m-DP/wpepg/SEXTA" + }, + { + "id": "bg_light", + "state": null, + "uri": "https://estatico.emisiondof6.com/recorte/m-DPBLAN/wpepg/SEXTA" + }, + { + "id": "nobox_dark", + "state": null, + "uri": "https://estatico.emisiondof6.com/recorte/m-NEONEGR/wpmarcaficha/SEXTA" + } + ], + "Dial": 6, + "HomeZone": false, + "FormatoAudio": null, + "FormatoVideo": "HD", + "LogoTaquilla": null, + "tvProducts": [ + "BOBFUT2", + "DIFUSION", + "DO0001", + "DO0002", + "DO0003", + "DO0004", + "FUSICE", + "MOVFAM", + "NDDEM2", + "NDDEMO", + "PAQINI", + "PR01H", + "PR01S", + "TRIDIS", + "TVBACH", + "TVBAFU", + "TVBALI", + "TVCOMU", + "UTX00", + "UTX0Y", + "UTX1H", + "UTX1I", + "UTX2A", + "UTX2C", + "UTX2J", + "UTX2N", + "UTX2P", + "UTX2Q", + "UTX2R", + "UTX32", + "UTX37", + "UTX38", + "UTX4I", + "UTX4N", + "UTX4P", + "UTX5M", + "UTX5V", + "UTX6C", + "UTX7T", + "UTX7U", + "UTX90", + "UTXAH", + "UTXC7", + "UTXC8", + "UTXCL", + "UTXCN", + "UTXCP", + "UTXD0", + "UTXD3", + "UTXHA", + "UTXHB", + "UTXHC", + "UTXHD", + "UTXIC", + "UTXIE", + "UTXIF", + "UTXIH", + "UTXII", + "UTXIR", + "UTXIS" + ], + "Logo": "https://estatico.emisiondof6.com/recorte/m-DP/wpmos/SEXTA", + "HDR": false, + "EsVirtual": false, + "CDN": "tcdn", + "EsSatelite": false, + "QMWatermark": false, + "Upselling": "PKS--1", + "links": [] + }, + "BingeWatchingAction": "none", + "Seguible": false + }, + { + "CodEventoRejilla": 164951931, + "ShowId": 63188243, + "Id": 856413, + "TipoContenido": "Individual", + "CodSubTipoContenido": null, + "SubTipoContenido": null, + "TipoComercial": "Subscripcion", + "TipoEmision": null, + "Ficha": "https://ottcache.dof6.com/movistarplus/webplayer/contents/63188243/details?mediaType=FOTOV&profile=OTT&mode=U7D2&channels=SEXTA&version=8&tlsStream=true&mdrm=true&catalog=catchup&showNonRated=true", + "TipoComercial2": { + "Tipo": "Subscripcion", + "Descripcion": null + }, + "links": [ + { + "rel": "details", + "href": "https://ottcache.dof6.com/movistarplus/webplayer/contents/63188243/details?mediaType=FOTOV&profile=OTT&mode=U7D2&channels=SEXTA&version=8&tlsStream=true&mdrm=true&catalog=catchup&showNonRated=true", + "id": 63188243 + }, + { + "rel": "start-over", + "href": "https://grmovistar.imagenio.telefonica.net/asfe/rest/tvMediaURLs?tvProgram.id=63188243&svc=startover", + "state": null + }, + { + "rel": "catch-up", + "href": "https://grmovistar.imagenio.telefonica.net/asfe/rest/tvMediaURLs?tvProgram.id=63188243&svc=cutv", + "state": null + }, + { + "rel": "npvr", + "href": "https://grmovistar.imagenio.telefonica.net/asfe/rest/tvMediaURLs?tvProgram.id=63188243&svc=npvr", + "state": null + }, + { + "rel": "alternate", + "href": "appmovistar://movistarplus.es/ficha?id=856413&referrer=api", + "class": "entryPoint", + "hints": { + "devices": [ + "android.cell", + "iphone", + "amazon.tv" + ] + } + }, + { + "rel": "alternate", + "href": "https://wl.movistarplus.es/ficha/?id=856413&referrer=api", + "class": "entryPoint", + "hints": { + "devices": [ + "web" + ] + } + }, + { + "rel": "alternate", + "href": "https://wl.movistarplus.es/play?id=856413&referrer=api", + "class": "play", + "hints": { + "devices": [ + "web" + ] + } + } + ], + "TiposComerciales": [], + "ContenedorRef": null, + "Directo": false, + "Grabable": false, + "Titulo": "Ella no es un ángel", + "Estreno": false, + "LenguajeSignos": false, + "Nacionalidad": "EE.UU", + "Lanzable": false, + "NivelMoral": { + "_id": "08", + "Id": "+12", + "Logo": "https://voddelivery.emisiondof6.com/images/logos/logos_nivelmoral/12.png" + }, + "Duracion": 80, + "DuracionEnSegundos": 4800, + "GeneroComAntena": "Cine TV drama", + "Imagen": "https://estatico.emisiondof6.com/recorte/n/ywcatalogov/MSEXTAT856413", + "Imagenes": [ + { + "id": "default", + "uri": "https://estatico.emisiondof6.com/recorte/n/ywcatalogov/MSEXTAT856413" + }, + { + "id": "vertical", + "uri": "https://estatico.emisiondof6.com/recorte/n/ywcatalogov/MSEXTAT856413" + }, + { + "id": "horizontal", + "uri": "https://estatico.emisiondof6.com/recorte/n/ywcatalogoh/MSEXTAT856413" + }, + { + "id": "watch2tgr-start", + "uri": "https://estatico.emisiondof6.com/recorte/n/vegtooltip/MSEXTAT856413.jpg" + }, + { + "id": "watch2tgr-end", + "uri": "https://estatico.emisiondof6.com/recorte/n/vegend/MSEXTAT856413.jpg" + } + ], + "TituloSerie": null, + "Temporada": null, + "TituloVerLinea1": "Ella no es un ángel", + "TituloVerLinea2": null, + "TituloHorLinea1": "Ella no es un ángel", + "TituloAccesible": "Ella no es un ángel", + "Valoracion": null, + "TituloNormalizado": "ella-no-es-un-angel", + "RutaNormalizada": null, + "FechaHoraInicio": "1770597000000", + "FechaHoraFin": "1770601800000", + "FechaEmision": "2026-02-08", + "DuracionParrilla": 80, + "DuracionParrillaEnSegundos": 4800, + "FormatoVideo": 1, + "Disponible": true, + "Canal": { + "CodCadenaTv": "SEXTA", + "Nombre": "La Sexta", + "Uid": 444099, + "CasId": "4526", + "ServiceUid": "717", + "ServiceUid2": "4526", + "ServiceId": 6, + "PuntoReproduccion": "https://lasexta-dash-movistarplus.emisiondof6.com/manifest.mpd", + "Logos": [ + { + "id": "default", + "state": null, + "uri": "https://estatico.emisiondof6.com/recorte/m-DPBLAN/wpmos/SEXTA" + }, + { + "id": "default", + "state": "over", + "uri": "https://estatico.emisiondof6.com/recorte/m-DP/wpmos/SEXTA" + }, + { + "id": "bg_dark", + "state": null, + "uri": "https://estatico.emisiondof6.com/recorte/m-DP/wpepg/SEXTA" + }, + { + "id": "bg_light", + "state": null, + "uri": "https://estatico.emisiondof6.com/recorte/m-DPBLAN/wpepg/SEXTA" + }, + { + "id": "nobox_dark", + "state": null, + "uri": "https://estatico.emisiondof6.com/recorte/m-NEONEGR/wpmarcaficha/SEXTA" + } + ], + "Dial": 6, + "HomeZone": false, + "FormatoAudio": null, + "FormatoVideo": "HD", + "LogoTaquilla": null, + "tvProducts": [ + "BOBFUT2", + "DIFUSION", + "DO0001", + "DO0002", + "DO0003", + "DO0004", + "FUSICE", + "MOVFAM", + "NDDEM2", + "NDDEMO", + "PAQINI", + "PR01H", + "PR01S", + "TRIDIS", + "TVBACH", + "TVBAFU", + "TVBALI", + "TVCOMU", + "UTX00", + "UTX0Y", + "UTX1H", + "UTX1I", + "UTX2A", + "UTX2C", + "UTX2J", + "UTX2N", + "UTX2P", + "UTX2Q", + "UTX2R", + "UTX32", + "UTX37", + "UTX38", + "UTX4I", + "UTX4N", + "UTX4P", + "UTX5M", + "UTX5V", + "UTX6C", + "UTX7T", + "UTX7U", + "UTX90", + "UTXAH", + "UTXC7", + "UTXC8", + "UTXCL", + "UTXCN", + "UTXCP", + "UTXD0", + "UTXD3", + "UTXHA", + "UTXHB", + "UTXHC", + "UTXHD", + "UTXIC", + "UTXIE", + "UTXIF", + "UTXIH", + "UTXII", + "UTXIR", + "UTXIS" + ], + "Logo": "https://estatico.emisiondof6.com/recorte/m-DP/wpmos/SEXTA", + "HDR": false, + "EsVirtual": false, + "CDN": "tcdn", + "EsSatelite": false, + "QMWatermark": false, + "Upselling": "PKS--1", + "links": [] + }, + "BingeWatchingAction": "none", + "Seguible": false + }, + { + "CodEventoRejilla": 164951933, + "ShowId": 63178178, + "Id": 2057641, + "TipoContenido": "Episodio", + "CodSubTipoContenido": null, + "SubTipoContenido": null, + "TipoComercial": "Subscripcion", + "TipoEmision": null, + "Ficha": "https://ottcache.dof6.com/movistarplus/webplayer/contents/63178178/details?mediaType=FOTOV&profile=OTT&mode=U7D2&channels=SEXTA&version=8&tlsStream=true&mdrm=true&catalog=catchup&showNonRated=true", + "TipoComercial2": { + "Tipo": "Subscripcion", + "Descripcion": null + }, + "links": [ + { + "rel": "details", + "href": "https://ottcache.dof6.com/movistarplus/webplayer/contents/63178178/details?mediaType=FOTOV&profile=OTT&mode=U7D2&channels=SEXTA&version=8&tlsStream=true&mdrm=true&catalog=catchup&showNonRated=true", + "id": 63178178 + }, + { + "rel": "start-over", + "href": "https://grmovistar.imagenio.telefonica.net/asfe/rest/tvMediaURLs?tvProgram.id=63178178&svc=startover", + "state": null + }, + { + "rel": "catch-up", + "href": "https://grmovistar.imagenio.telefonica.net/asfe/rest/tvMediaURLs?tvProgram.id=63178178&svc=cutv", + "state": null + }, + { + "rel": "npvr", + "href": "https://grmovistar.imagenio.telefonica.net/asfe/rest/tvMediaURLs?tvProgram.id=63178178&svc=npvr", + "state": null + }, + { + "rel": "alternate", + "href": "appmovistar://movistarplus.es/ficha?id=2057641&referrer=api", + "class": "entryPoint", + "hints": { + "devices": [ + "android.cell", + "iphone", + "amazon.tv" + ] + } + }, + { + "rel": "alternate", + "href": "https://wl.movistarplus.es/ficha/?id=2057641&referrer=api", + "class": "entryPoint", + "hints": { + "devices": [ + "web" + ] + } + }, + { + "rel": "alternate", + "href": "https://wl.movistarplus.es/play?id=2057641&referrer=api", + "class": "play", + "hints": { + "devices": [ + "web" + ] + } + } + ], + "TiposComerciales": [], + "ContenedorRef": null, + "Directo": false, + "Grabable": false, + "Titulo": "Pokerstars casino", + "Estreno": false, + "LenguajeSignos": false, + "Nacionalidad": "España", + "Lanzable": false, + "NivelMoral": { + "_id": "03", + "Id": "+18", + "Logo": "https://voddelivery.emisiondof6.com/images/logos/logos_nivelmoral/18.png" + }, + "Duracion": 40, + "DuracionEnSegundos": 2400, + "GeneroComAntena": "Programa deportes", + "Imagen": "https://estatico.emisiondof6.com/recorte/n/ywcatalogov/MSEXTAT2057641", + "Imagenes": [ + { + "id": "default", + "uri": "https://estatico.emisiondof6.com/recorte/n/ywcatalogov/MSEXTAT2057641" + }, + { + "id": "vertical", + "uri": "https://estatico.emisiondof6.com/recorte/n/ywcatalogov/MSEXTAT2057641" + }, + { + "id": "horizontal", + "uri": "https://estatico.emisiondof6.com/recorte/n/ywcatalogoh/MSEXTAT2057641" + }, + { + "id": "watch2tgr-start", + "uri": "https://estatico.emisiondof6.com/recorte/n/vegtooltip/MSEXTAT2057641.jpg" + }, + { + "id": "watch2tgr-end", + "uri": "https://estatico.emisiondof6.com/recorte/n/vegend/MSEXTAT2057641.jpg" + } + ], + "TituloSerie": "Pokerstars casino", + "Temporada": "(T1)", + "TituloEpisodio": "Pokerstars casino", + "TituloVerLinea1": "Pokerstars casino", + "TituloVerLinea2": null, + "TituloHorLinea1": "Pokerstars casino", + "TituloHorLinea2": "T1 Pokerstars casino", + "TituloAccesible": "Pokerstars casino", + "Valoracion": null, + "TituloNormalizado": "pokerstars-casino", + "RutaNormalizada": null, + "FechaHoraInicio": "1770601800000", + "FechaHoraFin": "1770604200000", + "FechaEmision": "2026-02-08", + "DuracionParrilla": 40, + "DuracionParrillaEnSegundos": 2400, + "FormatoVideo": 1, + "Disponible": true, + "Canal": { + "CodCadenaTv": "SEXTA", + "Nombre": "La Sexta", + "Uid": 444099, + "CasId": "4526", + "ServiceUid": "717", + "ServiceUid2": "4526", + "ServiceId": 6, + "PuntoReproduccion": "https://lasexta-dash-movistarplus.emisiondof6.com/manifest.mpd", + "Logos": [ + { + "id": "default", + "state": null, + "uri": "https://estatico.emisiondof6.com/recorte/m-DPBLAN/wpmos/SEXTA" + }, + { + "id": "default", + "state": "over", + "uri": "https://estatico.emisiondof6.com/recorte/m-DP/wpmos/SEXTA" + }, + { + "id": "bg_dark", + "state": null, + "uri": "https://estatico.emisiondof6.com/recorte/m-DP/wpepg/SEXTA" + }, + { + "id": "bg_light", + "state": null, + "uri": "https://estatico.emisiondof6.com/recorte/m-DPBLAN/wpepg/SEXTA" + }, + { + "id": "nobox_dark", + "state": null, + "uri": "https://estatico.emisiondof6.com/recorte/m-NEONEGR/wpmarcaficha/SEXTA" + } + ], + "Dial": 6, + "HomeZone": false, + "FormatoAudio": null, + "FormatoVideo": "HD", + "LogoTaquilla": null, + "tvProducts": [ + "BOBFUT2", + "DIFUSION", + "DO0001", + "DO0002", + "DO0003", + "DO0004", + "FUSICE", + "MOVFAM", + "NDDEM2", + "NDDEMO", + "PAQINI", + "PR01H", + "PR01S", + "TRIDIS", + "TVBACH", + "TVBAFU", + "TVBALI", + "TVCOMU", + "UTX00", + "UTX0Y", + "UTX1H", + "UTX1I", + "UTX2A", + "UTX2C", + "UTX2J", + "UTX2N", + "UTX2P", + "UTX2Q", + "UTX2R", + "UTX32", + "UTX37", + "UTX38", + "UTX4I", + "UTX4N", + "UTX4P", + "UTX5M", + "UTX5V", + "UTX6C", + "UTX7T", + "UTX7U", + "UTX90", + "UTXAH", + "UTXC7", + "UTXC8", + "UTXCL", + "UTXCN", + "UTXCP", + "UTXD0", + "UTXD3", + "UTXHA", + "UTXHB", + "UTXHC", + "UTXHD", + "UTXIC", + "UTXIE", + "UTXIF", + "UTXIH", + "UTXII", + "UTXIR", + "UTXIS" + ], + "Logo": "https://estatico.emisiondof6.com/recorte/m-DP/wpmos/SEXTA", + "HDR": false, + "EsVirtual": false, + "CDN": "tcdn", + "EsSatelite": false, + "QMWatermark": false, + "Upselling": "PKS--1", + "links": [] + }, + "BingeWatchingAction": "none", + "Seguible": false + }, + { + "CodEventoRejilla": 164951935, + "ShowId": 63188244, + "Id": 4190011, + "TipoContenido": "Episodio", + "CodSubTipoContenido": null, + "SubTipoContenido": null, + "TipoComercial": "Subscripcion", + "TipoEmision": null, + "Ficha": "https://ottcache.dof6.com/movistarplus/webplayer/contents/63188244/details?mediaType=FOTOV&profile=OTT&mode=U7D2&channels=SEXTA&version=8&tlsStream=true&mdrm=true&catalog=catchup&showNonRated=true", + "TipoComercial2": { + "Tipo": "Subscripcion", + "Descripcion": null + }, + "links": [ + { + "rel": "details", + "href": "https://ottcache.dof6.com/movistarplus/webplayer/contents/63188244/details?mediaType=FOTOV&profile=OTT&mode=U7D2&channels=SEXTA&version=8&tlsStream=true&mdrm=true&catalog=catchup&showNonRated=true", + "id": 63188244 + }, + { + "rel": "start-over", + "href": "https://grmovistar.imagenio.telefonica.net/asfe/rest/tvMediaURLs?tvProgram.id=63188244&svc=startover", + "state": null + }, + { + "rel": "catch-up", + "href": "https://grmovistar.imagenio.telefonica.net/asfe/rest/tvMediaURLs?tvProgram.id=63188244&svc=cutv", + "state": null + }, + { + "rel": "npvr", + "href": "https://grmovistar.imagenio.telefonica.net/asfe/rest/tvMediaURLs?tvProgram.id=63188244&svc=npvr", + "state": null + }, + { + "rel": "alternate", + "href": "appmovistar://movistarplus.es/ficha?id=4190011&referrer=api", + "class": "entryPoint", + "hints": { + "devices": [ + "android.cell", + "iphone", + "amazon.tv" + ] + } + }, + { + "rel": "alternate", + "href": "https://wl.movistarplus.es/ficha/?id=4190011&referrer=api", + "class": "entryPoint", + "hints": { + "devices": [ + "web" + ] + } + }, + { + "rel": "alternate", + "href": "https://wl.movistarplus.es/play?id=4190011&referrer=api", + "class": "play", + "hints": { + "devices": [ + "web" + ] + } + } + ], + "TiposComerciales": [], + "ContenedorRef": null, + "Directo": false, + "Grabable": false, + "Titulo": "La Noche de Casino Pause & Play", + "Estreno": false, + "LenguajeSignos": false, + "Nacionalidad": "España", + "Lanzable": false, + "NivelMoral": { + "_id": "03", + "Id": "+18", + "Logo": "https://voddelivery.emisiondof6.com/images/logos/logos_nivelmoral/18.png" + }, + "Duracion": 15, + "DuracionEnSegundos": 900, + "GeneroComAntena": "Programa deportes", + "Imagen": "https://estatico.emisiondof6.com/recorte/n/ywcatalogov/MSEXTAT4190011", + "Imagenes": [ + { + "id": "default", + "uri": "https://estatico.emisiondof6.com/recorte/n/ywcatalogov/MSEXTAT4190011" + }, + { + "id": "vertical", + "uri": "https://estatico.emisiondof6.com/recorte/n/ywcatalogov/MSEXTAT4190011" + }, + { + "id": "horizontal", + "uri": "https://estatico.emisiondof6.com/recorte/n/ywcatalogoh/MSEXTAT4190011" + }, + { + "id": "watch2tgr-start", + "uri": "https://estatico.emisiondof6.com/recorte/n/vegtooltip/MSEXTAT4190011.jpg" + }, + { + "id": "watch2tgr-end", + "uri": "https://estatico.emisiondof6.com/recorte/n/vegend/MSEXTAT4190011.jpg" + } + ], + "TituloSerie": "La Noche de Casino Pause & Play", + "Temporada": "(T2025)", + "TituloEpisodio": "La Noche de Casino Pause & Play", + "TituloVerLinea1": "La Noche de Casino Pause & Play", + "TituloVerLinea2": null, + "TituloHorLinea1": "La Noche de Casino Pause & Play", + "TituloHorLinea2": "T2025 La Noche de Casino Pause & Play", + "TituloAccesible": "La Noche de Casino Pause & Play", + "Valoracion": null, + "TituloNormalizado": "la-noche-de-casino-pause-play", + "RutaNormalizada": null, + "FechaHoraInicio": "1770604200000", + "FechaHoraFin": "1770605100000", + "FechaEmision": "2026-02-08", + "DuracionParrilla": 15, + "DuracionParrillaEnSegundos": 900, + "FormatoVideo": 1, + "Disponible": true, + "Canal": { + "CodCadenaTv": "SEXTA", + "Nombre": "La Sexta", + "Uid": 444099, + "CasId": "4526", + "ServiceUid": "717", + "ServiceUid2": "4526", + "ServiceId": 6, + "PuntoReproduccion": "https://lasexta-dash-movistarplus.emisiondof6.com/manifest.mpd", + "Logos": [ + { + "id": "default", + "state": null, + "uri": "https://estatico.emisiondof6.com/recorte/m-DPBLAN/wpmos/SEXTA" + }, + { + "id": "default", + "state": "over", + "uri": "https://estatico.emisiondof6.com/recorte/m-DP/wpmos/SEXTA" + }, + { + "id": "bg_dark", + "state": null, + "uri": "https://estatico.emisiondof6.com/recorte/m-DP/wpepg/SEXTA" + }, + { + "id": "bg_light", + "state": null, + "uri": "https://estatico.emisiondof6.com/recorte/m-DPBLAN/wpepg/SEXTA" + }, + { + "id": "nobox_dark", + "state": null, + "uri": "https://estatico.emisiondof6.com/recorte/m-NEONEGR/wpmarcaficha/SEXTA" + } + ], + "Dial": 6, + "HomeZone": false, + "FormatoAudio": null, + "FormatoVideo": "HD", + "LogoTaquilla": null, + "tvProducts": [ + "BOBFUT2", + "DIFUSION", + "DO0001", + "DO0002", + "DO0003", + "DO0004", + "FUSICE", + "MOVFAM", + "NDDEM2", + "NDDEMO", + "PAQINI", + "PR01H", + "PR01S", + "TRIDIS", + "TVBACH", + "TVBAFU", + "TVBALI", + "TVCOMU", + "UTX00", + "UTX0Y", + "UTX1H", + "UTX1I", + "UTX2A", + "UTX2C", + "UTX2J", + "UTX2N", + "UTX2P", + "UTX2Q", + "UTX2R", + "UTX32", + "UTX37", + "UTX38", + "UTX4I", + "UTX4N", + "UTX4P", + "UTX5M", + "UTX5V", + "UTX6C", + "UTX7T", + "UTX7U", + "UTX90", + "UTXAH", + "UTXC7", + "UTXC8", + "UTXCL", + "UTXCN", + "UTXCP", + "UTXD0", + "UTXD3", + "UTXHA", + "UTXHB", + "UTXHC", + "UTXHD", + "UTXIC", + "UTXIE", + "UTXIF", + "UTXIH", + "UTXII", + "UTXIR", + "UTXIS" + ], + "Logo": "https://estatico.emisiondof6.com/recorte/m-DP/wpmos/SEXTA", + "HDR": false, + "EsVirtual": false, + "CDN": "tcdn", + "EsSatelite": false, + "QMWatermark": false, + "Upselling": "PKS--1", + "links": [] + }, + "BingeWatchingAction": "none", + "Seguible": false + }, + { + "CodEventoRejilla": 164951937, + "ShowId": 63178180, + "Id": 1254041, + "TipoContenido": "Episodio", + "CodSubTipoContenido": null, + "SubTipoContenido": null, + "TipoComercial": "Subscripcion", + "TipoEmision": null, + "Ficha": "https://ottcache.dof6.com/movistarplus/webplayer/contents/63178180/details?mediaType=FOTOV&profile=OTT&mode=U7D2&channels=SEXTA&version=8&tlsStream=true&mdrm=true&catalog=catchup&showNonRated=true", + "TipoComercial2": { + "Tipo": "Subscripcion", + "Descripcion": null + }, + "links": [ + { + "rel": "details", + "href": "https://ottcache.dof6.com/movistarplus/webplayer/contents/63178180/details?mediaType=FOTOV&profile=OTT&mode=U7D2&channels=SEXTA&version=8&tlsStream=true&mdrm=true&catalog=catchup&showNonRated=true", + "id": 63178180 + }, + { + "rel": "start-over", + "href": "https://grmovistar.imagenio.telefonica.net/asfe/rest/tvMediaURLs?tvProgram.id=63178180&svc=startover", + "state": null + }, + { + "rel": "catch-up", + "href": "https://grmovistar.imagenio.telefonica.net/asfe/rest/tvMediaURLs?tvProgram.id=63178180&svc=cutv", + "state": null + }, + { + "rel": "npvr", + "href": "https://grmovistar.imagenio.telefonica.net/asfe/rest/tvMediaURLs?tvProgram.id=63178180&svc=npvr", + "state": null + }, + { + "rel": "alternate", + "href": "appmovistar://movistarplus.es/ficha?id=1254041&referrer=api", + "class": "entryPoint", + "hints": { + "devices": [ + "android.cell", + "iphone", + "amazon.tv" + ] + } + }, + { + "rel": "alternate", + "href": "https://wl.movistarplus.es/ficha/?id=1254041&referrer=api", + "class": "entryPoint", + "hints": { + "devices": [ + "web" + ] + } + }, + { + "rel": "alternate", + "href": "https://wl.movistarplus.es/play?id=1254041&referrer=api", + "class": "play", + "hints": { + "devices": [ + "web" + ] + } + } + ], + "TiposComerciales": [], + "ContenedorRef": null, + "Directo": false, + "Grabable": false, + "Titulo": "Galería del coleccionista", + "Estreno": false, + "LenguajeSignos": false, + "Nacionalidad": "España", + "Lanzable": false, + "NivelMoral": { + "_id": "01", + "Id": "TP", + "Logo": "https://voddelivery.emisiondof6.com/images/logos/logos_nivelmoral/tp.png" + }, + "Duracion": 60, + "DuracionEnSegundos": 3600, + "GeneroComAntena": "Televenta", + "Imagen": "https://estatico.emisiondof6.com/recorte/n/ywcatalogov/MSEXTAT1254041", + "Imagenes": [ + { + "id": "default", + "uri": "https://estatico.emisiondof6.com/recorte/n/ywcatalogov/MSEXTAT1254041" + }, + { + "id": "vertical", + "uri": "https://estatico.emisiondof6.com/recorte/n/ywcatalogov/MSEXTAT1254041" + }, + { + "id": "horizontal", + "uri": "https://estatico.emisiondof6.com/recorte/n/ywcatalogoh/MSEXTAT1254041" + }, + { + "id": "watch2tgr-start", + "uri": "https://estatico.emisiondof6.com/recorte/n/vegtooltip/MSEXTAT1254041.jpg" + }, + { + "id": "watch2tgr-end", + "uri": "https://estatico.emisiondof6.com/recorte/n/vegend/MSEXTAT1254041.jpg" + } + ], + "TituloSerie": "Galería del coleccionista", + "Temporada": null, + "TituloEpisodio": "Galería del coleccionista", + "TituloVerLinea1": "Galería del coleccionista", + "TituloVerLinea2": null, + "TituloHorLinea1": "Galería del coleccionista", + "TituloAccesible": "Galería del coleccionista", + "Valoracion": null, + "TituloNormalizado": "galeria-del-coleccionista", + "RutaNormalizada": null, + "FechaHoraInicio": "1770605100000", + "FechaHoraFin": "1770608700000", + "FechaEmision": "2026-02-08", + "DuracionParrilla": 60, + "DuracionParrillaEnSegundos": 3600, + "FormatoVideo": 1, + "Disponible": true, + "Canal": { + "CodCadenaTv": "SEXTA", + "Nombre": "La Sexta", + "Uid": 444099, + "CasId": "4526", + "ServiceUid": "717", + "ServiceUid2": "4526", + "ServiceId": 6, + "PuntoReproduccion": "https://lasexta-dash-movistarplus.emisiondof6.com/manifest.mpd", + "Logos": [ + { + "id": "default", + "state": null, + "uri": "https://estatico.emisiondof6.com/recorte/m-DPBLAN/wpmos/SEXTA" + }, + { + "id": "default", + "state": "over", + "uri": "https://estatico.emisiondof6.com/recorte/m-DP/wpmos/SEXTA" + }, + { + "id": "bg_dark", + "state": null, + "uri": "https://estatico.emisiondof6.com/recorte/m-DP/wpepg/SEXTA" + }, + { + "id": "bg_light", + "state": null, + "uri": "https://estatico.emisiondof6.com/recorte/m-DPBLAN/wpepg/SEXTA" + }, + { + "id": "nobox_dark", + "state": null, + "uri": "https://estatico.emisiondof6.com/recorte/m-NEONEGR/wpmarcaficha/SEXTA" + } + ], + "Dial": 6, + "HomeZone": false, + "FormatoAudio": null, + "FormatoVideo": "HD", + "LogoTaquilla": null, + "tvProducts": [ + "BOBFUT2", + "DIFUSION", + "DO0001", + "DO0002", + "DO0003", + "DO0004", + "FUSICE", + "MOVFAM", + "NDDEM2", + "NDDEMO", + "PAQINI", + "PR01H", + "PR01S", + "TRIDIS", + "TVBACH", + "TVBAFU", + "TVBALI", + "TVCOMU", + "UTX00", + "UTX0Y", + "UTX1H", + "UTX1I", + "UTX2A", + "UTX2C", + "UTX2J", + "UTX2N", + "UTX2P", + "UTX2Q", + "UTX2R", + "UTX32", + "UTX37", + "UTX38", + "UTX4I", + "UTX4N", + "UTX4P", + "UTX5M", + "UTX5V", + "UTX6C", + "UTX7T", + "UTX7U", + "UTX90", + "UTXAH", + "UTXC7", + "UTXC8", + "UTXCL", + "UTXCN", + "UTXCP", + "UTXD0", + "UTXD3", + "UTXHA", + "UTXHB", + "UTXHC", + "UTXHD", + "UTXIC", + "UTXIE", + "UTXIF", + "UTXIH", + "UTXII", + "UTXIR", + "UTXIS" + ], + "Logo": "https://estatico.emisiondof6.com/recorte/m-DP/wpmos/SEXTA", + "HDR": false, + "EsVirtual": false, + "CDN": "tcdn", + "EsSatelite": false, + "QMWatermark": false, + "Upselling": "PKS--1", + "links": [] + }, + "BingeWatchingAction": "none", + "Seguible": false + }, + { + "CodEventoRejilla": 164951939, + "ShowId": 63178181, + "Id": 3414523, + "TipoContenido": "Episodio", + "CodSubTipoContenido": null, + "SubTipoContenido": null, + "TipoComercial": "Subscripcion", + "TipoEmision": null, + "Ficha": "https://ottcache.dof6.com/movistarplus/webplayer/contents/63178181/details?mediaType=FOTOV&profile=OTT&mode=U7D2&channels=SEXTA&version=8&tlsStream=true&mdrm=true&catalog=catchup&showNonRated=true", + "TipoComercial2": { + "Tipo": "Subscripcion", + "Descripcion": null + }, + "links": [ + { + "rel": "details", + "href": "https://ottcache.dof6.com/movistarplus/webplayer/contents/63178181/details?mediaType=FOTOV&profile=OTT&mode=U7D2&channels=SEXTA&version=8&tlsStream=true&mdrm=true&catalog=catchup&showNonRated=true", + "id": 63178181 + }, + { + "rel": "start-over", + "href": "https://grmovistar.imagenio.telefonica.net/asfe/rest/tvMediaURLs?tvProgram.id=63178181&svc=startover", + "state": null + }, + { + "rel": "catch-up", + "href": "https://grmovistar.imagenio.telefonica.net/asfe/rest/tvMediaURLs?tvProgram.id=63178181&svc=cutv", + "state": null + }, + { + "rel": "npvr", + "href": "https://grmovistar.imagenio.telefonica.net/asfe/rest/tvMediaURLs?tvProgram.id=63178181&svc=npvr", + "state": null + }, + { + "rel": "alternate", + "href": "appmovistar://movistarplus.es/ficha?id=3414523&referrer=api", + "class": "entryPoint", + "hints": { + "devices": [ + "android.cell", + "iphone", + "amazon.tv" + ] + } + }, + { + "rel": "alternate", + "href": "https://wl.movistarplus.es/ficha/?id=3414523&referrer=api", + "class": "entryPoint", + "hints": { + "devices": [ + "web" + ] + } + }, + { + "rel": "alternate", + "href": "https://wl.movistarplus.es/play?id=3414523&referrer=api", + "class": "play", + "hints": { + "devices": [ + "web" + ] + } + } + ], + "TiposComerciales": [], + "ContenedorRef": null, + "Directo": false, + "Grabable": false, + "Titulo": "Venta Prime", + "Estreno": false, + "LenguajeSignos": false, + "Nacionalidad": null, + "Lanzable": false, + "NivelMoral": { + "_id": "01", + "Id": "TP", + "Logo": "https://voddelivery.emisiondof6.com/images/logos/logos_nivelmoral/tp.png" + }, + "Duracion": 120, + "DuracionEnSegundos": 7200, + "GeneroComAntena": "Televenta", + "Imagen": "https://estatico.emisiondof6.com/recorte/n/ywcatalogov/MSEXTAT3414523", + "Imagenes": [ + { + "id": "default", + "uri": "https://estatico.emisiondof6.com/recorte/n/ywcatalogov/MSEXTAT3414523" + }, + { + "id": "vertical", + "uri": "https://estatico.emisiondof6.com/recorte/n/ywcatalogov/MSEXTAT3414523" + }, + { + "id": "horizontal", + "uri": "https://estatico.emisiondof6.com/recorte/n/ywcatalogoh/MSEXTAT3414523" + }, + { + "id": "watch2tgr-start", + "uri": "https://estatico.emisiondof6.com/recorte/n/vegtooltip/MSEXTAT3414523.jpg" + }, + { + "id": "watch2tgr-end", + "uri": "https://estatico.emisiondof6.com/recorte/n/vegend/MSEXTAT3414523.jpg" + } + ], + "TituloSerie": "Venta Prime", + "Temporada": "(T1)", + "TituloEpisodio": "Venta Prime", + "TituloVerLinea1": "Venta Prime", + "TituloVerLinea2": null, + "TituloHorLinea1": "Venta Prime", + "TituloHorLinea2": "T1 Venta Prime", + "TituloAccesible": "Venta Prime", + "Valoracion": null, + "TituloNormalizado": "venta-prime", + "RutaNormalizada": null, + "FechaHoraInicio": "1770608700000", + "FechaHoraFin": "1770615900000", + "FechaEmision": "2026-02-08", + "DuracionParrilla": 120, + "DuracionParrillaEnSegundos": 7200, + "FormatoVideo": 1, + "Disponible": true, + "Canal": { + "CodCadenaTv": "SEXTA", + "Nombre": "La Sexta", + "Uid": 444099, + "CasId": "4526", + "ServiceUid": "717", + "ServiceUid2": "4526", + "ServiceId": 6, + "PuntoReproduccion": "https://lasexta-dash-movistarplus.emisiondof6.com/manifest.mpd", + "Logos": [ + { + "id": "default", + "state": null, + "uri": "https://estatico.emisiondof6.com/recorte/m-DPBLAN/wpmos/SEXTA" + }, + { + "id": "default", + "state": "over", + "uri": "https://estatico.emisiondof6.com/recorte/m-DP/wpmos/SEXTA" + }, + { + "id": "bg_dark", + "state": null, + "uri": "https://estatico.emisiondof6.com/recorte/m-DP/wpepg/SEXTA" + }, + { + "id": "bg_light", + "state": null, + "uri": "https://estatico.emisiondof6.com/recorte/m-DPBLAN/wpepg/SEXTA" + }, + { + "id": "nobox_dark", + "state": null, + "uri": "https://estatico.emisiondof6.com/recorte/m-NEONEGR/wpmarcaficha/SEXTA" + } + ], + "Dial": 6, + "HomeZone": false, + "FormatoAudio": null, + "FormatoVideo": "HD", + "LogoTaquilla": null, + "tvProducts": [ + "BOBFUT2", + "DIFUSION", + "DO0001", + "DO0002", + "DO0003", + "DO0004", + "FUSICE", + "MOVFAM", + "NDDEM2", + "NDDEMO", + "PAQINI", + "PR01H", + "PR01S", + "TRIDIS", + "TVBACH", + "TVBAFU", + "TVBALI", + "TVCOMU", + "UTX00", + "UTX0Y", + "UTX1H", + "UTX1I", + "UTX2A", + "UTX2C", + "UTX2J", + "UTX2N", + "UTX2P", + "UTX2Q", + "UTX2R", + "UTX32", + "UTX37", + "UTX38", + "UTX4I", + "UTX4N", + "UTX4P", + "UTX5M", + "UTX5V", + "UTX6C", + "UTX7T", + "UTX7U", + "UTX90", + "UTXAH", + "UTXC7", + "UTXC8", + "UTXCL", + "UTXCN", + "UTXCP", + "UTXD0", + "UTXD3", + "UTXHA", + "UTXHB", + "UTXHC", + "UTXHD", + "UTXIC", + "UTXIE", + "UTXIF", + "UTXIH", + "UTXII", + "UTXIR", + "UTXIS" + ], + "Logo": "https://estatico.emisiondof6.com/recorte/m-DP/wpmos/SEXTA", + "HDR": false, + "EsVirtual": false, + "CDN": "tcdn", + "EsSatelite": false, + "QMWatermark": false, + "Upselling": "PKS--1", + "links": [] + }, + "BingeWatchingAction": "none", + "Seguible": false + }, + { + "CodEventoRejilla": 164939514, + "ShowId": 63182860, + "Id": 4123461, + "TipoContenido": "Episodio", + "CodSubTipoContenido": null, + "SubTipoContenido": null, + "TipoComercial": "Subscripcion", + "TipoEmision": null, + "Ficha": "https://ottcache.dof6.com/movistarplus/webplayer/contents/63182860/details?mediaType=FOTOV&profile=OTT&mode=U7D2&channels=SEXTA&version=8&tlsStream=true&mdrm=true&catalog=catchup&showNonRated=true", + "TipoComercial2": { + "Tipo": "Subscripcion", + "Descripcion": null + }, + "links": [ + { + "rel": "details", + "href": "https://ottcache.dof6.com/movistarplus/webplayer/contents/63182860/details?mediaType=FOTOV&profile=OTT&mode=U7D2&channels=SEXTA&version=8&tlsStream=true&mdrm=true&catalog=catchup&showNonRated=true", + "id": 63182860 + }, + { + "rel": "start-over", + "href": "https://grmovistar.imagenio.telefonica.net/asfe/rest/tvMediaURLs?tvProgram.id=63182860&svc=startover", + "state": null + }, + { + "rel": "catch-up", + "href": "https://grmovistar.imagenio.telefonica.net/asfe/rest/tvMediaURLs?tvProgram.id=63182860&svc=cutv", + "state": null + }, + { + "rel": "npvr", + "href": "https://grmovistar.imagenio.telefonica.net/asfe/rest/tvMediaURLs?tvProgram.id=63182860&svc=npvr", + "state": null + }, + { + "rel": "alternate", + "href": "appmovistar://movistarplus.es/ficha?id=4123461&referrer=api", + "class": "entryPoint", + "hints": { + "devices": [ + "android.cell", + "iphone", + "amazon.tv" + ] + } + }, + { + "rel": "alternate", + "href": "https://wl.movistarplus.es/ficha/?id=4123461&referrer=api", + "class": "entryPoint", + "hints": { + "devices": [ + "web" + ] + } + }, + { + "rel": "alternate", + "href": "https://wl.movistarplus.es/play?id=4123461&referrer=api", + "class": "play", + "hints": { + "devices": [ + "web" + ] + } + } + ], + "TiposComerciales": [], + "ContenedorRef": null, + "Directo": false, + "Grabable": false, + "Titulo": "Remescar cosmética al instante", + "Estreno": false, + "LenguajeSignos": false, + "Nacionalidad": null, + "Lanzable": false, + "NivelMoral": { + "_id": "08", + "Id": "+12", + "Logo": "https://voddelivery.emisiondof6.com/images/logos/logos_nivelmoral/12.png" + }, + "Duracion": 15, + "DuracionEnSegundos": 900, + "GeneroComAntena": "Televenta", + "Imagen": "https://estatico.emisiondof6.com/recorte/n/ywcatalogov/MSEXTAT4123461", + "Imagenes": [ + { + "id": "default", + "uri": "https://estatico.emisiondof6.com/recorte/n/ywcatalogov/MSEXTAT4123461" + }, + { + "id": "vertical", + "uri": "https://estatico.emisiondof6.com/recorte/n/ywcatalogov/MSEXTAT4123461" + }, + { + "id": "horizontal", + "uri": "https://estatico.emisiondof6.com/recorte/n/ywcatalogoh/MSEXTAT4123461" + }, + { + "id": "watch2tgr-start", + "uri": "https://estatico.emisiondof6.com/recorte/n/vegtooltip/MSEXTAT4123461.jpg" + }, + { + "id": "watch2tgr-end", + "uri": "https://estatico.emisiondof6.com/recorte/n/vegend/MSEXTAT4123461.jpg" + } + ], + "TituloSerie": "Remescar cosmética al instante", + "Temporada": "(T1)", + "SerialId": 56792871, + "TituloEpisodio": "\"Episodio 19\"", + "TituloVerLinea1": "Remescar cosmética al instante", + "TituloVerLinea2": null, + "TituloHorLinea1": "Remescar cosmética al instante", + "TituloHorLinea2": "T1 \"Episodio 19\"", + "TituloAccesible": "Remescar cosmética al instante", + "Valoracion": null, + "TituloNormalizado": "remescar-cosmetica-al-instante", + "RutaNormalizada": null, + "FechaHoraInicio": "1770615900000", + "FechaHoraFin": "1770616800000", + "FechaEmision": "2026-02-09", + "DuracionParrilla": 15, + "DuracionParrillaEnSegundos": 900, + "FormatoVideo": 1, + "Disponible": true, + "Canal": { + "CodCadenaTv": "SEXTA", + "Nombre": "La Sexta", + "Uid": 444099, + "CasId": "4526", + "ServiceUid": "717", + "ServiceUid2": "4526", + "ServiceId": 6, + "PuntoReproduccion": "https://lasexta-dash-movistarplus.emisiondof6.com/manifest.mpd", + "Logos": [ + { + "id": "default", + "state": null, + "uri": "https://estatico.emisiondof6.com/recorte/m-DPBLAN/wpmos/SEXTA" + }, + { + "id": "default", + "state": "over", + "uri": "https://estatico.emisiondof6.com/recorte/m-DP/wpmos/SEXTA" + }, + { + "id": "bg_dark", + "state": null, + "uri": "https://estatico.emisiondof6.com/recorte/m-DP/wpepg/SEXTA" + }, + { + "id": "bg_light", + "state": null, + "uri": "https://estatico.emisiondof6.com/recorte/m-DPBLAN/wpepg/SEXTA" + }, + { + "id": "nobox_dark", + "state": null, + "uri": "https://estatico.emisiondof6.com/recorte/m-NEONEGR/wpmarcaficha/SEXTA" + } + ], + "Dial": 6, + "HomeZone": false, + "FormatoAudio": null, + "FormatoVideo": "HD", + "LogoTaquilla": null, + "tvProducts": [ + "BOBFUT2", + "DIFUSION", + "DO0001", + "DO0002", + "DO0003", + "DO0004", + "FUSICE", + "MOVFAM", + "NDDEM2", + "NDDEMO", + "PAQINI", + "PR01H", + "PR01S", + "TRIDIS", + "TVBACH", + "TVBAFU", + "TVBALI", + "TVCOMU", + "UTX00", + "UTX0Y", + "UTX1H", + "UTX1I", + "UTX2A", + "UTX2C", + "UTX2J", + "UTX2N", + "UTX2P", + "UTX2Q", + "UTX2R", + "UTX32", + "UTX37", + "UTX38", + "UTX4I", + "UTX4N", + "UTX4P", + "UTX5M", + "UTX5V", + "UTX6C", + "UTX7T", + "UTX7U", + "UTX90", + "UTXAH", + "UTXC7", + "UTXC8", + "UTXCL", + "UTXCN", + "UTXCP", + "UTXD0", + "UTXD3", + "UTXHA", + "UTXHB", + "UTXHC", + "UTXHD", + "UTXIC", + "UTXIE", + "UTXIF", + "UTXIH", + "UTXII", + "UTXIR", + "UTXIS" + ], + "Logo": "https://estatico.emisiondof6.com/recorte/m-DP/wpmos/SEXTA", + "HDR": false, + "EsVirtual": false, + "CDN": "tcdn", + "EsSatelite": false, + "QMWatermark": false, + "Upselling": "PKS--1", + "links": [] + }, + "BingeWatchingAction": "none", + "Seguible": false + }, + { + "CodEventoRejilla": 164939516, + "ShowId": 63182861, + "Id": 4236919, + "TipoContenido": "Episodio", + "CodSubTipoContenido": null, + "SubTipoContenido": null, + "TipoComercial": "Subscripcion", + "TipoEmision": null, + "Ficha": "https://ottcache.dof6.com/movistarplus/webplayer/contents/63182861/details?mediaType=FOTOV&profile=OTT&mode=U7D2&channels=SEXTA&version=8&tlsStream=true&mdrm=true&catalog=catchup&showNonRated=true", + "TipoComercial2": { + "Tipo": "Subscripcion", + "Descripcion": null + }, + "links": [ + { + "rel": "details", + "href": "https://ottcache.dof6.com/movistarplus/webplayer/contents/63182861/details?mediaType=FOTOV&profile=OTT&mode=U7D2&channels=SEXTA&version=8&tlsStream=true&mdrm=true&catalog=catchup&showNonRated=true", + "id": 63182861 + }, + { + "rel": "start-over", + "href": "https://grmovistar.imagenio.telefonica.net/asfe/rest/tvMediaURLs?tvProgram.id=63182861&svc=startover", + "state": null + }, + { + "rel": "catch-up", + "href": "https://grmovistar.imagenio.telefonica.net/asfe/rest/tvMediaURLs?tvProgram.id=63182861&svc=cutv", + "state": null + }, + { + "rel": "npvr", + "href": "https://grmovistar.imagenio.telefonica.net/asfe/rest/tvMediaURLs?tvProgram.id=63182861&svc=npvr", + "state": null + }, + { + "rel": "alternate", + "href": "appmovistar://movistarplus.es/ficha?id=4236919&referrer=api", + "class": "entryPoint", + "hints": { + "devices": [ + "android.cell", + "iphone", + "amazon.tv" + ] + } + }, + { + "rel": "alternate", + "href": "https://wl.movistarplus.es/ficha/?id=4236919&referrer=api", + "class": "entryPoint", + "hints": { + "devices": [ + "web" + ] + } + }, + { + "rel": "alternate", + "href": "https://wl.movistarplus.es/play?id=4236919&referrer=api", + "class": "play", + "hints": { + "devices": [ + "web" + ] + } + } + ], + "TiposComerciales": [], + "ContenedorRef": null, + "Directo": false, + "Grabable": false, + "Titulo": "Previo Aruser@s", + "Estreno": true, + "LenguajeSignos": false, + "Nacionalidad": "España", + "Lanzable": false, + "NivelMoral": { + "_id": "06", + "Id": "+7", + "Logo": "https://voddelivery.emisiondof6.com/images/logos/logos_nivelmoral/7.png" + }, + "Duracion": 120, + "DuracionEnSegundos": 7200, + "GeneroComAntena": "Humor", + "Imagen": "https://estatico.emisiondof6.com/recorte/n/ywcatalogov/MSEXTAT4236919", + "Imagenes": [ + { + "id": "default", + "uri": "https://estatico.emisiondof6.com/recorte/n/ywcatalogov/MSEXTAT4236919" + }, + { + "id": "vertical", + "uri": "https://estatico.emisiondof6.com/recorte/n/ywcatalogov/MSEXTAT4236919" + }, + { + "id": "horizontal", + "uri": "https://estatico.emisiondof6.com/recorte/n/ywcatalogoh/MSEXTAT4236919" + }, + { + "id": "watch2tgr-start", + "uri": "https://estatico.emisiondof6.com/recorte/n/vegtooltip/MSEXTAT4236919.jpg" + }, + { + "id": "watch2tgr-end", + "uri": "https://estatico.emisiondof6.com/recorte/n/vegend/MSEXTAT4236919.jpg" + } + ], + "TituloSerie": "Previo Aruser@s", + "Temporada": "(T8)", + "SerialId": 62209576, + "TituloEpisodio": "\"Episodio 1590\"", + "TituloVerLinea1": "Previo Aruser@s", + "TituloVerLinea2": null, + "TituloHorLinea1": "Previo Aruser@s", + "TituloHorLinea2": "T8 \"Episodio 1590\"", + "TituloAccesible": "Previo Aruser@s", + "Valoracion": null, + "TituloNormalizado": "previo-aruser-s", + "RutaNormalizada": null, + "FechaHoraInicio": "1770616800000", + "FechaHoraFin": "1770624000000", + "FechaEmision": "2026-02-09", + "DuracionParrilla": 120, + "DuracionParrillaEnSegundos": 7200, + "FormatoVideo": 1, + "Disponible": true, + "Canal": { + "CodCadenaTv": "SEXTA", + "Nombre": "La Sexta", + "Uid": 444099, + "CasId": "4526", + "ServiceUid": "717", + "ServiceUid2": "4526", + "ServiceId": 6, + "PuntoReproduccion": "https://lasexta-dash-movistarplus.emisiondof6.com/manifest.mpd", + "Logos": [ + { + "id": "default", + "state": null, + "uri": "https://estatico.emisiondof6.com/recorte/m-DPBLAN/wpmos/SEXTA" + }, + { + "id": "default", + "state": "over", + "uri": "https://estatico.emisiondof6.com/recorte/m-DP/wpmos/SEXTA" + }, + { + "id": "bg_dark", + "state": null, + "uri": "https://estatico.emisiondof6.com/recorte/m-DP/wpepg/SEXTA" + }, + { + "id": "bg_light", + "state": null, + "uri": "https://estatico.emisiondof6.com/recorte/m-DPBLAN/wpepg/SEXTA" + }, + { + "id": "nobox_dark", + "state": null, + "uri": "https://estatico.emisiondof6.com/recorte/m-NEONEGR/wpmarcaficha/SEXTA" + } + ], + "Dial": 6, + "HomeZone": false, + "FormatoAudio": null, + "FormatoVideo": "HD", + "LogoTaquilla": null, + "tvProducts": [ + "BOBFUT2", + "DIFUSION", + "DO0001", + "DO0002", + "DO0003", + "DO0004", + "FUSICE", + "MOVFAM", + "NDDEM2", + "NDDEMO", + "PAQINI", + "PR01H", + "PR01S", + "TRIDIS", + "TVBACH", + "TVBAFU", + "TVBALI", + "TVCOMU", + "UTX00", + "UTX0Y", + "UTX1H", + "UTX1I", + "UTX2A", + "UTX2C", + "UTX2J", + "UTX2N", + "UTX2P", + "UTX2Q", + "UTX2R", + "UTX32", + "UTX37", + "UTX38", + "UTX4I", + "UTX4N", + "UTX4P", + "UTX5M", + "UTX5V", + "UTX6C", + "UTX7T", + "UTX7U", + "UTX90", + "UTXAH", + "UTXC7", + "UTXC8", + "UTXCL", + "UTXCN", + "UTXCP", + "UTXD0", + "UTXD3", + "UTXHA", + "UTXHB", + "UTXHC", + "UTXHD", + "UTXIC", + "UTXIE", + "UTXIF", + "UTXIH", + "UTXII", + "UTXIR", + "UTXIS" + ], + "Logo": "https://estatico.emisiondof6.com/recorte/m-DP/wpmos/SEXTA", + "HDR": false, + "EsVirtual": false, + "CDN": "tcdn", + "EsSatelite": false, + "QMWatermark": false, + "Upselling": "PKS--1", + "links": [] + }, + "BingeWatchingAction": "none", + "Seguible": false + }, + { + "CodEventoRejilla": 164939518, + "ShowId": 63182862, + "Id": 4236909, + "TipoContenido": "Episodio", + "CodSubTipoContenido": null, + "SubTipoContenido": null, + "TipoComercial": "Subscripcion", + "TipoEmision": null, + "Ficha": "https://ottcache.dof6.com/movistarplus/webplayer/contents/63182862/details?mediaType=FOTOV&profile=OTT&mode=U7D2&channels=SEXTA&version=8&tlsStream=true&mdrm=true&catalog=catchup&showNonRated=true", + "TipoComercial2": { + "Tipo": "Subscripcion", + "Descripcion": null + }, + "links": [ + { + "rel": "details", + "href": "https://ottcache.dof6.com/movistarplus/webplayer/contents/63182862/details?mediaType=FOTOV&profile=OTT&mode=U7D2&channels=SEXTA&version=8&tlsStream=true&mdrm=true&catalog=catchup&showNonRated=true", + "id": 63182862 + }, + { + "rel": "start-over", + "href": "https://grmovistar.imagenio.telefonica.net/asfe/rest/tvMediaURLs?tvProgram.id=63182862&svc=startover", + "state": null + }, + { + "rel": "catch-up", + "href": "https://grmovistar.imagenio.telefonica.net/asfe/rest/tvMediaURLs?tvProgram.id=63182862&svc=cutv", + "state": null + }, + { + "rel": "npvr", + "href": "https://grmovistar.imagenio.telefonica.net/asfe/rest/tvMediaURLs?tvProgram.id=63182862&svc=npvr", + "state": null + }, + { + "rel": "alternate", + "href": "appmovistar://movistarplus.es/ficha?id=4236909&referrer=api", + "class": "entryPoint", + "hints": { + "devices": [ + "android.cell", + "iphone", + "amazon.tv" + ] + } + }, + { + "rel": "alternate", + "href": "https://wl.movistarplus.es/ficha/?id=4236909&referrer=api", + "class": "entryPoint", + "hints": { + "devices": [ + "web" + ] + } + }, + { + "rel": "alternate", + "href": "https://wl.movistarplus.es/play?id=4236909&referrer=api", + "class": "play", + "hints": { + "devices": [ + "web" + ] + } + } + ], + "TiposComerciales": [], + "ContenedorRef": null, + "Directo": false, + "Grabable": false, + "Titulo": "Aruser@s", + "Estreno": true, + "LenguajeSignos": false, + "Nacionalidad": "España", + "Lanzable": false, + "NivelMoral": { + "_id": "09", + "Id": "+16", + "Logo": "https://voddelivery.emisiondof6.com/images/logos/logos_nivelmoral/16.png" + }, + "Duracion": 120, + "DuracionEnSegundos": 7200, + "GeneroComAntena": "Humor", + "Imagen": "https://estatico.emisiondof6.com/recorte/n/ywcatalogov/MSEXTAT4236909", + "Imagenes": [ + { + "id": "default", + "uri": "https://estatico.emisiondof6.com/recorte/n/ywcatalogov/MSEXTAT4236909" + }, + { + "id": "vertical", + "uri": "https://estatico.emisiondof6.com/recorte/n/ywcatalogov/MSEXTAT4236909" + }, + { + "id": "horizontal", + "uri": "https://estatico.emisiondof6.com/recorte/n/ywcatalogoh/MSEXTAT4236909" + }, + { + "id": "watch2tgr-start", + "uri": "https://estatico.emisiondof6.com/recorte/n/vegtooltip/MSEXTAT4236909.jpg" + }, + { + "id": "watch2tgr-end", + "uri": "https://estatico.emisiondof6.com/recorte/n/vegend/MSEXTAT4236909.jpg" + } + ], + "TituloSerie": "Aruser@s", + "Temporada": "(T8)", + "SerialId": 62209577, + "TituloEpisodio": "\"Episodio 1590\"", + "TituloVerLinea1": "Aruser@s", + "TituloVerLinea2": null, + "TituloHorLinea1": "Aruser@s", + "TituloHorLinea2": "T8 \"Episodio 1590\"", + "TituloAccesible": "Aruser@s", + "Valoracion": null, + "TituloNormalizado": "aruser-s", + "RutaNormalizada": null, + "FechaHoraInicio": "1770624000000", + "FechaHoraFin": "1770631200000", + "FechaEmision": "2026-02-09", + "DuracionParrilla": 120, + "DuracionParrillaEnSegundos": 7200, + "FormatoVideo": 1, + "Disponible": true, + "Canal": { + "CodCadenaTv": "SEXTA", + "Nombre": "La Sexta", + "Uid": 444099, + "CasId": "4526", + "ServiceUid": "717", + "ServiceUid2": "4526", + "ServiceId": 6, + "PuntoReproduccion": "https://lasexta-dash-movistarplus.emisiondof6.com/manifest.mpd", + "Logos": [ + { + "id": "default", + "state": null, + "uri": "https://estatico.emisiondof6.com/recorte/m-DPBLAN/wpmos/SEXTA" + }, + { + "id": "default", + "state": "over", + "uri": "https://estatico.emisiondof6.com/recorte/m-DP/wpmos/SEXTA" + }, + { + "id": "bg_dark", + "state": null, + "uri": "https://estatico.emisiondof6.com/recorte/m-DP/wpepg/SEXTA" + }, + { + "id": "bg_light", + "state": null, + "uri": "https://estatico.emisiondof6.com/recorte/m-DPBLAN/wpepg/SEXTA" + }, + { + "id": "nobox_dark", + "state": null, + "uri": "https://estatico.emisiondof6.com/recorte/m-NEONEGR/wpmarcaficha/SEXTA" + } + ], + "Dial": 6, + "HomeZone": false, + "FormatoAudio": null, + "FormatoVideo": "HD", + "LogoTaquilla": null, + "tvProducts": [ + "BOBFUT2", + "DIFUSION", + "DO0001", + "DO0002", + "DO0003", + "DO0004", + "FUSICE", + "MOVFAM", + "NDDEM2", + "NDDEMO", + "PAQINI", + "PR01H", + "PR01S", + "TRIDIS", + "TVBACH", + "TVBAFU", + "TVBALI", + "TVCOMU", + "UTX00", + "UTX0Y", + "UTX1H", + "UTX1I", + "UTX2A", + "UTX2C", + "UTX2J", + "UTX2N", + "UTX2P", + "UTX2Q", + "UTX2R", + "UTX32", + "UTX37", + "UTX38", + "UTX4I", + "UTX4N", + "UTX4P", + "UTX5M", + "UTX5V", + "UTX6C", + "UTX7T", + "UTX7U", + "UTX90", + "UTXAH", + "UTXC7", + "UTXC8", + "UTXCL", + "UTXCN", + "UTXCP", + "UTXD0", + "UTXD3", + "UTXHA", + "UTXHB", + "UTXHC", + "UTXHD", + "UTXIC", + "UTXIE", + "UTXIF", + "UTXIH", + "UTXII", + "UTXIR", + "UTXIS" + ], + "Logo": "https://estatico.emisiondof6.com/recorte/m-DP/wpmos/SEXTA", + "HDR": false, + "EsVirtual": false, + "CDN": "tcdn", + "EsSatelite": false, + "QMWatermark": false, + "Upselling": "PKS--1", + "links": [] + }, + "BingeWatchingAction": "none", + "Seguible": false + }, + { + "CodEventoRejilla": 164939520, + "ShowId": 63182863, + "Id": 4236899, + "TipoContenido": "Episodio", + "CodSubTipoContenido": null, + "SubTipoContenido": null, + "TipoComercial": "Subscripcion", + "TipoEmision": null, + "Ficha": "https://ottcache.dof6.com/movistarplus/webplayer/contents/63182863/details?mediaType=FOTOV&profile=OTT&mode=U7D2&channels=SEXTA&version=8&tlsStream=true&mdrm=true&catalog=catchup&showNonRated=true", + "TipoComercial2": { + "Tipo": "Subscripcion", + "Descripcion": null + }, + "links": [ + { + "rel": "details", + "href": "https://ottcache.dof6.com/movistarplus/webplayer/contents/63182863/details?mediaType=FOTOV&profile=OTT&mode=U7D2&channels=SEXTA&version=8&tlsStream=true&mdrm=true&catalog=catchup&showNonRated=true", + "id": 63182863 + }, + { + "rel": "start-over", + "href": "https://grmovistar.imagenio.telefonica.net/asfe/rest/tvMediaURLs?tvProgram.id=63182863&svc=startover", + "state": null + }, + { + "rel": "catch-up", + "href": "https://grmovistar.imagenio.telefonica.net/asfe/rest/tvMediaURLs?tvProgram.id=63182863&svc=cutv", + "state": null + }, + { + "rel": "npvr", + "href": "https://grmovistar.imagenio.telefonica.net/asfe/rest/tvMediaURLs?tvProgram.id=63182863&svc=npvr", + "state": null + }, + { + "rel": "alternate", + "href": "appmovistar://movistarplus.es/ficha?id=4236899&referrer=api", + "class": "entryPoint", + "hints": { + "devices": [ + "android.cell", + "iphone", + "amazon.tv" + ] + } + }, + { + "rel": "alternate", + "href": "https://wl.movistarplus.es/ficha/?id=4236899&referrer=api", + "class": "entryPoint", + "hints": { + "devices": [ + "web" + ] + } + }, + { + "rel": "alternate", + "href": "https://wl.movistarplus.es/play?id=4236899&referrer=api", + "class": "play", + "hints": { + "devices": [ + "web" + ] + } + } + ], + "TiposComerciales": [], + "ContenedorRef": null, + "Directo": false, + "Grabable": false, + "Titulo": "Al rojo vivo", + "Estreno": true, + "LenguajeSignos": false, + "Nacionalidad": "España", + "Lanzable": false, + "NivelMoral": { + "_id": "09", + "Id": "+16", + "Logo": "https://voddelivery.emisiondof6.com/images/logos/logos_nivelmoral/16.png" + }, + "Duracion": 190, + "DuracionEnSegundos": 11400, + "GeneroComAntena": "Debate", + "Imagen": "https://estatico.emisiondof6.com/recorte/n/ywcatalogov/MSEXTAT4236899", + "Imagenes": [ + { + "id": "default", + "uri": "https://estatico.emisiondof6.com/recorte/n/ywcatalogov/MSEXTAT4236899" + }, + { + "id": "vertical", + "uri": "https://estatico.emisiondof6.com/recorte/n/ywcatalogov/MSEXTAT4236899" + }, + { + "id": "horizontal", + "uri": "https://estatico.emisiondof6.com/recorte/n/ywcatalogoh/MSEXTAT4236899" + }, + { + "id": "watch2tgr-start", + "uri": "https://estatico.emisiondof6.com/recorte/n/vegtooltip/MSEXTAT4236899.jpg" + }, + { + "id": "watch2tgr-end", + "uri": "https://estatico.emisiondof6.com/recorte/n/vegend/MSEXTAT4236899.jpg" + } + ], + "TituloSerie": "Al rojo vivo", + "Temporada": "(T25/26)", + "SerialId": 62209578, + "TituloEpisodio": "\"Episodio 3780\"", + "TituloVerLinea1": "Al rojo vivo", + "TituloVerLinea2": null, + "TituloHorLinea1": "Al rojo vivo", + "TituloHorLinea2": "T25/26 \"Episodio 3780\"", + "TituloAccesible": "Al rojo vivo", + "Valoracion": null, + "TituloNormalizado": "al-rojo-vivo", + "RutaNormalizada": null, + "FechaHoraInicio": "1770631200000", + "FechaHoraFin": "1770642600000", + "FechaEmision": "2026-02-09", + "DuracionParrilla": 190, + "DuracionParrillaEnSegundos": 11400, + "FormatoVideo": 1, + "Disponible": true, + "Canal": { + "CodCadenaTv": "SEXTA", + "Nombre": "La Sexta", + "Uid": 444099, + "CasId": "4526", + "ServiceUid": "717", + "ServiceUid2": "4526", + "ServiceId": 6, + "PuntoReproduccion": "https://lasexta-dash-movistarplus.emisiondof6.com/manifest.mpd", + "Logos": [ + { + "id": "default", + "state": null, + "uri": "https://estatico.emisiondof6.com/recorte/m-DPBLAN/wpmos/SEXTA" + }, + { + "id": "default", + "state": "over", + "uri": "https://estatico.emisiondof6.com/recorte/m-DP/wpmos/SEXTA" + }, + { + "id": "bg_dark", + "state": null, + "uri": "https://estatico.emisiondof6.com/recorte/m-DP/wpepg/SEXTA" + }, + { + "id": "bg_light", + "state": null, + "uri": "https://estatico.emisiondof6.com/recorte/m-DPBLAN/wpepg/SEXTA" + }, + { + "id": "nobox_dark", + "state": null, + "uri": "https://estatico.emisiondof6.com/recorte/m-NEONEGR/wpmarcaficha/SEXTA" + } + ], + "Dial": 6, + "HomeZone": false, + "FormatoAudio": null, + "FormatoVideo": "HD", + "LogoTaquilla": null, + "tvProducts": [ + "BOBFUT2", + "DIFUSION", + "DO0001", + "DO0002", + "DO0003", + "DO0004", + "FUSICE", + "MOVFAM", + "NDDEM2", + "NDDEMO", + "PAQINI", + "PR01H", + "PR01S", + "TRIDIS", + "TVBACH", + "TVBAFU", + "TVBALI", + "TVCOMU", + "UTX00", + "UTX0Y", + "UTX1H", + "UTX1I", + "UTX2A", + "UTX2C", + "UTX2J", + "UTX2N", + "UTX2P", + "UTX2Q", + "UTX2R", + "UTX32", + "UTX37", + "UTX38", + "UTX4I", + "UTX4N", + "UTX4P", + "UTX5M", + "UTX5V", + "UTX6C", + "UTX7T", + "UTX7U", + "UTX90", + "UTXAH", + "UTXC7", + "UTXC8", + "UTXCL", + "UTXCN", + "UTXCP", + "UTXD0", + "UTXD3", + "UTXHA", + "UTXHB", + "UTXHC", + "UTXHD", + "UTXIC", + "UTXIE", + "UTXIF", + "UTXIH", + "UTXII", + "UTXIR", + "UTXIS" + ], + "Logo": "https://estatico.emisiondof6.com/recorte/m-DP/wpmos/SEXTA", + "HDR": false, + "EsVirtual": false, + "CDN": "tcdn", + "EsSatelite": false, + "QMWatermark": false, + "Upselling": "PKS--1", + "links": [] + }, + "BingeWatchingAction": "none", + "Seguible": false + }, + { + "CodEventoRejilla": 164939522, + "ShowId": 63182864, + "Id": 575379, + "TipoContenido": "Episodio", + "CodSubTipoContenido": null, + "SubTipoContenido": null, + "TipoComercial": "Subscripcion", + "TipoEmision": null, + "Ficha": "https://ottcache.dof6.com/movistarplus/webplayer/contents/63182864/details?mediaType=FOTOV&profile=OTT&mode=U7D2&channels=SEXTA&version=8&tlsStream=true&mdrm=true&catalog=catchup&showNonRated=true", + "TipoComercial2": { + "Tipo": "Subscripcion", + "Descripcion": null + }, + "links": [ + { + "rel": "details", + "href": "https://ottcache.dof6.com/movistarplus/webplayer/contents/63182864/details?mediaType=FOTOV&profile=OTT&mode=U7D2&channels=SEXTA&version=8&tlsStream=true&mdrm=true&catalog=catchup&showNonRated=true", + "id": 63182864 + }, + { + "rel": "start-over", + "href": "https://grmovistar.imagenio.telefonica.net/asfe/rest/tvMediaURLs?tvProgram.id=63182864&svc=startover", + "state": null + }, + { + "rel": "catch-up", + "href": "https://grmovistar.imagenio.telefonica.net/asfe/rest/tvMediaURLs?tvProgram.id=63182864&svc=cutv", + "state": null + }, + { + "rel": "npvr", + "href": "https://grmovistar.imagenio.telefonica.net/asfe/rest/tvMediaURLs?tvProgram.id=63182864&svc=npvr", + "state": null + }, + { + "rel": "alternate", + "href": "appmovistar://movistarplus.es/ficha?id=575379&referrer=api", + "class": "entryPoint", + "hints": { + "devices": [ + "android.cell", + "iphone", + "amazon.tv" + ] + } + }, + { + "rel": "alternate", + "href": "https://wl.movistarplus.es/ficha/?id=575379&referrer=api", + "class": "entryPoint", + "hints": { + "devices": [ + "web" + ] + } + }, + { + "rel": "alternate", + "href": "https://wl.movistarplus.es/play?id=575379&referrer=api", + "class": "play", + "hints": { + "devices": [ + "web" + ] + } + } + ], + "TiposComerciales": [], + "ContenedorRef": null, + "Directo": false, + "Grabable": false, + "Titulo": "laSexta Noticias", + "Estreno": false, + "LenguajeSignos": false, + "Nacionalidad": "España", + "Lanzable": false, + "Duracion": 60, + "DuracionEnSegundos": 3600, + "GeneroComAntena": "Informativo", + "Imagen": "https://estatico.emisiondof6.com/recorte/n/ywcatalogov/MSEXTAT575379", + "Imagenes": [ + { + "id": "default", + "uri": "https://estatico.emisiondof6.com/recorte/n/ywcatalogov/MSEXTAT575379" + }, + { + "id": "vertical", + "uri": "https://estatico.emisiondof6.com/recorte/n/ywcatalogov/MSEXTAT575379" + }, + { + "id": "horizontal", + "uri": "https://estatico.emisiondof6.com/recorte/n/ywcatalogoh/MSEXTAT575379" + }, + { + "id": "watch2tgr-start", + "uri": "https://estatico.emisiondof6.com/recorte/n/vegtooltip/MSEXTAT575379.jpg" + }, + { + "id": "watch2tgr-end", + "uri": "https://estatico.emisiondof6.com/recorte/n/vegend/MSEXTAT575379.jpg" + } + ], + "TituloSerie": "laSexta Noticias", + "Temporada": null, + "TituloEpisodio": "laSexta Noticias", + "TituloVerLinea1": "laSexta Noticias", + "TituloVerLinea2": null, + "TituloHorLinea1": "laSexta Noticias", + "TituloAccesible": "laSexta Noticias", + "Valoracion": null, + "TituloNormalizado": "lasexta-noticias", + "RutaNormalizada": null, + "FechaHoraInicio": "1770642600000", + "FechaHoraFin": "1770646200000", + "FechaEmision": "2026-02-09", + "DuracionParrilla": 60, + "DuracionParrillaEnSegundos": 3600, + "FormatoVideo": 1, + "Disponible": true, + "Canal": { + "CodCadenaTv": "SEXTA", + "Nombre": "La Sexta", + "Uid": 444099, + "CasId": "4526", + "ServiceUid": "717", + "ServiceUid2": "4526", + "ServiceId": 6, + "PuntoReproduccion": "https://lasexta-dash-movistarplus.emisiondof6.com/manifest.mpd", + "Logos": [ + { + "id": "default", + "state": null, + "uri": "https://estatico.emisiondof6.com/recorte/m-DPBLAN/wpmos/SEXTA" + }, + { + "id": "default", + "state": "over", + "uri": "https://estatico.emisiondof6.com/recorte/m-DP/wpmos/SEXTA" + }, + { + "id": "bg_dark", + "state": null, + "uri": "https://estatico.emisiondof6.com/recorte/m-DP/wpepg/SEXTA" + }, + { + "id": "bg_light", + "state": null, + "uri": "https://estatico.emisiondof6.com/recorte/m-DPBLAN/wpepg/SEXTA" + }, + { + "id": "nobox_dark", + "state": null, + "uri": "https://estatico.emisiondof6.com/recorte/m-NEONEGR/wpmarcaficha/SEXTA" + } + ], + "Dial": 6, + "HomeZone": false, + "FormatoAudio": null, + "FormatoVideo": "HD", + "LogoTaquilla": null, + "tvProducts": [ + "BOBFUT2", + "DIFUSION", + "DO0001", + "DO0002", + "DO0003", + "DO0004", + "FUSICE", + "MOVFAM", + "NDDEM2", + "NDDEMO", + "PAQINI", + "PR01H", + "PR01S", + "TRIDIS", + "TVBACH", + "TVBAFU", + "TVBALI", + "TVCOMU", + "UTX00", + "UTX0Y", + "UTX1H", + "UTX1I", + "UTX2A", + "UTX2C", + "UTX2J", + "UTX2N", + "UTX2P", + "UTX2Q", + "UTX2R", + "UTX32", + "UTX37", + "UTX38", + "UTX4I", + "UTX4N", + "UTX4P", + "UTX5M", + "UTX5V", + "UTX6C", + "UTX7T", + "UTX7U", + "UTX90", + "UTXAH", + "UTXC7", + "UTXC8", + "UTXCL", + "UTXCN", + "UTXCP", + "UTXD0", + "UTXD3", + "UTXHA", + "UTXHB", + "UTXHC", + "UTXHD", + "UTXIC", + "UTXIE", + "UTXIF", + "UTXIH", + "UTXII", + "UTXIR", + "UTXIS" + ], + "Logo": "https://estatico.emisiondof6.com/recorte/m-DP/wpmos/SEXTA", + "HDR": false, + "EsVirtual": false, + "CDN": "tcdn", + "EsSatelite": false, + "QMWatermark": false, + "Upselling": "PKS--1", + "links": [] + }, + "BingeWatchingAction": "none", + "Seguible": false + }, + { + "CodEventoRejilla": 164939524, + "ShowId": 63182865, + "Id": 1088969, + "TipoContenido": "Episodio", + "CodSubTipoContenido": null, + "SubTipoContenido": null, + "TipoComercial": "Subscripcion", + "TipoEmision": null, + "Ficha": "https://ottcache.dof6.com/movistarplus/webplayer/contents/63182865/details?mediaType=FOTOV&profile=OTT&mode=U7D2&channels=SEXTA&version=8&tlsStream=true&mdrm=true&catalog=catchup&showNonRated=true", + "TipoComercial2": { + "Tipo": "Subscripcion", + "Descripcion": null + }, + "links": [ + { + "rel": "details", + "href": "https://ottcache.dof6.com/movistarplus/webplayer/contents/63182865/details?mediaType=FOTOV&profile=OTT&mode=U7D2&channels=SEXTA&version=8&tlsStream=true&mdrm=true&catalog=catchup&showNonRated=true", + "id": 63182865 + }, + { + "rel": "start-over", + "href": "https://grmovistar.imagenio.telefonica.net/asfe/rest/tvMediaURLs?tvProgram.id=63182865&svc=startover", + "state": null + }, + { + "rel": "catch-up", + "href": "https://grmovistar.imagenio.telefonica.net/asfe/rest/tvMediaURLs?tvProgram.id=63182865&svc=cutv", + "state": null + }, + { + "rel": "npvr", + "href": "https://grmovistar.imagenio.telefonica.net/asfe/rest/tvMediaURLs?tvProgram.id=63182865&svc=npvr", + "state": null + }, + { + "rel": "alternate", + "href": "appmovistar://movistarplus.es/ficha?id=1088969&referrer=api", + "class": "entryPoint", + "hints": { + "devices": [ + "android.cell", + "iphone", + "amazon.tv" + ] + } + }, + { + "rel": "alternate", + "href": "https://wl.movistarplus.es/ficha/?id=1088969&referrer=api", + "class": "entryPoint", + "hints": { + "devices": [ + "web" + ] + } + }, + { + "rel": "alternate", + "href": "https://wl.movistarplus.es/play?id=1088969&referrer=api", + "class": "play", + "hints": { + "devices": [ + "web" + ] + } + } + ], + "TiposComerciales": [], + "ContenedorRef": null, + "Directo": false, + "Grabable": false, + "Titulo": "Jugones", + "Estreno": false, + "LenguajeSignos": false, + "Nacionalidad": "España", + "Lanzable": false, + "Duracion": 20, + "DuracionEnSegundos": 1200, + "GeneroComAntena": "Programa deportes", + "Imagen": "https://estatico.emisiondof6.com/recorte/n/ywcatalogov/MSEXTAT1088969", + "Imagenes": [ + { + "id": "default", + "uri": "https://estatico.emisiondof6.com/recorte/n/ywcatalogov/MSEXTAT1088969" + }, + { + "id": "vertical", + "uri": "https://estatico.emisiondof6.com/recorte/n/ywcatalogov/MSEXTAT1088969" + }, + { + "id": "horizontal", + "uri": "https://estatico.emisiondof6.com/recorte/n/ywcatalogoh/MSEXTAT1088969" + }, + { + "id": "watch2tgr-start", + "uri": "https://estatico.emisiondof6.com/recorte/n/vegtooltip/MSEXTAT1088969.jpg" + }, + { + "id": "watch2tgr-end", + "uri": "https://estatico.emisiondof6.com/recorte/n/vegend/MSEXTAT1088969.jpg" + } + ], + "TituloSerie": "Jugones", + "Temporada": null, + "TituloEpisodio": "Jugones", + "TituloVerLinea1": "Jugones", + "TituloVerLinea2": null, + "TituloHorLinea1": "Jugones", + "TituloAccesible": "Jugones", + "Valoracion": null, + "TituloNormalizado": "jugones", + "RutaNormalizada": null, + "FechaHoraInicio": "1770646200000", + "FechaHoraFin": "1770647400000", + "FechaEmision": "2026-02-09", + "DuracionParrilla": 20, + "DuracionParrillaEnSegundos": 1200, + "FormatoVideo": 1, + "Disponible": true, + "Canal": { + "CodCadenaTv": "SEXTA", + "Nombre": "La Sexta", + "Uid": 444099, + "CasId": "4526", + "ServiceUid": "717", + "ServiceUid2": "4526", + "ServiceId": 6, + "PuntoReproduccion": "https://lasexta-dash-movistarplus.emisiondof6.com/manifest.mpd", + "Logos": [ + { + "id": "default", + "state": null, + "uri": "https://estatico.emisiondof6.com/recorte/m-DPBLAN/wpmos/SEXTA" + }, + { + "id": "default", + "state": "over", + "uri": "https://estatico.emisiondof6.com/recorte/m-DP/wpmos/SEXTA" + }, + { + "id": "bg_dark", + "state": null, + "uri": "https://estatico.emisiondof6.com/recorte/m-DP/wpepg/SEXTA" + }, + { + "id": "bg_light", + "state": null, + "uri": "https://estatico.emisiondof6.com/recorte/m-DPBLAN/wpepg/SEXTA" + }, + { + "id": "nobox_dark", + "state": null, + "uri": "https://estatico.emisiondof6.com/recorte/m-NEONEGR/wpmarcaficha/SEXTA" + } + ], + "Dial": 6, + "HomeZone": false, + "FormatoAudio": null, + "FormatoVideo": "HD", + "LogoTaquilla": null, + "tvProducts": [ + "BOBFUT2", + "DIFUSION", + "DO0001", + "DO0002", + "DO0003", + "DO0004", + "FUSICE", + "MOVFAM", + "NDDEM2", + "NDDEMO", + "PAQINI", + "PR01H", + "PR01S", + "TRIDIS", + "TVBACH", + "TVBAFU", + "TVBALI", + "TVCOMU", + "UTX00", + "UTX0Y", + "UTX1H", + "UTX1I", + "UTX2A", + "UTX2C", + "UTX2J", + "UTX2N", + "UTX2P", + "UTX2Q", + "UTX2R", + "UTX32", + "UTX37", + "UTX38", + "UTX4I", + "UTX4N", + "UTX4P", + "UTX5M", + "UTX5V", + "UTX6C", + "UTX7T", + "UTX7U", + "UTX90", + "UTXAH", + "UTXC7", + "UTXC8", + "UTXCL", + "UTXCN", + "UTXCP", + "UTXD0", + "UTXD3", + "UTXHA", + "UTXHB", + "UTXHC", + "UTXHD", + "UTXIC", + "UTXIE", + "UTXIF", + "UTXIH", + "UTXII", + "UTXIR", + "UTXIS" + ], + "Logo": "https://estatico.emisiondof6.com/recorte/m-DP/wpmos/SEXTA", + "HDR": false, + "EsVirtual": false, + "CDN": "tcdn", + "EsSatelite": false, + "QMWatermark": false, + "Upselling": "PKS--1", + "links": [] + }, + "BingeWatchingAction": "none", + "Seguible": false + }, + { + "CodEventoRejilla": 164939526, + "ShowId": 63182866, + "Id": 985259, + "TipoContenido": "Episodio", + "CodSubTipoContenido": null, + "SubTipoContenido": null, + "TipoComercial": "Subscripcion", + "TipoEmision": null, + "Ficha": "https://ottcache.dof6.com/movistarplus/webplayer/contents/63182866/details?mediaType=FOTOV&profile=OTT&mode=U7D2&channels=SEXTA&version=8&tlsStream=true&mdrm=true&catalog=catchup&showNonRated=true", + "TipoComercial2": { + "Tipo": "Subscripcion", + "Descripcion": null + }, + "links": [ + { + "rel": "details", + "href": "https://ottcache.dof6.com/movistarplus/webplayer/contents/63182866/details?mediaType=FOTOV&profile=OTT&mode=U7D2&channels=SEXTA&version=8&tlsStream=true&mdrm=true&catalog=catchup&showNonRated=true", + "id": 63182866 + }, + { + "rel": "start-over", + "href": "https://grmovistar.imagenio.telefonica.net/asfe/rest/tvMediaURLs?tvProgram.id=63182866&svc=startover", + "state": null + }, + { + "rel": "catch-up", + "href": "https://grmovistar.imagenio.telefonica.net/asfe/rest/tvMediaURLs?tvProgram.id=63182866&svc=cutv", + "state": null + }, + { + "rel": "npvr", + "href": "https://grmovistar.imagenio.telefonica.net/asfe/rest/tvMediaURLs?tvProgram.id=63182866&svc=npvr", + "state": null + }, + { + "rel": "alternate", + "href": "appmovistar://movistarplus.es/ficha?id=985259&referrer=api", + "class": "entryPoint", + "hints": { + "devices": [ + "android.cell", + "iphone", + "amazon.tv" + ] + } + }, + { + "rel": "alternate", + "href": "https://wl.movistarplus.es/ficha/?id=985259&referrer=api", + "class": "entryPoint", + "hints": { + "devices": [ + "web" + ] + } + }, + { + "rel": "alternate", + "href": "https://wl.movistarplus.es/play?id=985259&referrer=api", + "class": "play", + "hints": { + "devices": [ + "web" + ] + } + } + ], + "TiposComerciales": [], + "ContenedorRef": null, + "Directo": false, + "Grabable": false, + "Titulo": "laSexta Meteo", + "Estreno": false, + "LenguajeSignos": false, + "Nacionalidad": "España", + "Lanzable": false, + "Duracion": 15, + "DuracionEnSegundos": 900, + "GeneroComAntena": "Meteorología", + "Imagen": "https://estatico.emisiondof6.com/recorte/n/ywcatalogov/MSEXTAT985259", + "Imagenes": [ + { + "id": "default", + "uri": "https://estatico.emisiondof6.com/recorte/n/ywcatalogov/MSEXTAT985259" + }, + { + "id": "vertical", + "uri": "https://estatico.emisiondof6.com/recorte/n/ywcatalogov/MSEXTAT985259" + }, + { + "id": "horizontal", + "uri": "https://estatico.emisiondof6.com/recorte/n/ywcatalogoh/MSEXTAT985259" + }, + { + "id": "watch2tgr-start", + "uri": "https://estatico.emisiondof6.com/recorte/n/vegtooltip/MSEXTAT985259.jpg" + }, + { + "id": "watch2tgr-end", + "uri": "https://estatico.emisiondof6.com/recorte/n/vegend/MSEXTAT985259.jpg" + } + ], + "TituloSerie": "laSexta Meteo", + "Temporada": null, + "TituloEpisodio": "laSexta Meteo", + "TituloVerLinea1": "laSexta Meteo", + "TituloVerLinea2": null, + "TituloHorLinea1": "laSexta Meteo", + "TituloAccesible": "laSexta Meteo", + "Valoracion": null, + "TituloNormalizado": "lasexta-meteo", + "RutaNormalizada": null, + "FechaHoraInicio": "1770647400000", + "FechaHoraFin": "1770648300000", + "FechaEmision": "2026-02-09", + "DuracionParrilla": 15, + "DuracionParrillaEnSegundos": 900, + "FormatoVideo": 1, + "Disponible": true, + "Canal": { + "CodCadenaTv": "SEXTA", + "Nombre": "La Sexta", + "Uid": 444099, + "CasId": "4526", + "ServiceUid": "717", + "ServiceUid2": "4526", + "ServiceId": 6, + "PuntoReproduccion": "https://lasexta-dash-movistarplus.emisiondof6.com/manifest.mpd", + "Logos": [ + { + "id": "default", + "state": null, + "uri": "https://estatico.emisiondof6.com/recorte/m-DPBLAN/wpmos/SEXTA" + }, + { + "id": "default", + "state": "over", + "uri": "https://estatico.emisiondof6.com/recorte/m-DP/wpmos/SEXTA" + }, + { + "id": "bg_dark", + "state": null, + "uri": "https://estatico.emisiondof6.com/recorte/m-DP/wpepg/SEXTA" + }, + { + "id": "bg_light", + "state": null, + "uri": "https://estatico.emisiondof6.com/recorte/m-DPBLAN/wpepg/SEXTA" + }, + { + "id": "nobox_dark", + "state": null, + "uri": "https://estatico.emisiondof6.com/recorte/m-NEONEGR/wpmarcaficha/SEXTA" + } + ], + "Dial": 6, + "HomeZone": false, + "FormatoAudio": null, + "FormatoVideo": "HD", + "LogoTaquilla": null, + "tvProducts": [ + "BOBFUT2", + "DIFUSION", + "DO0001", + "DO0002", + "DO0003", + "DO0004", + "FUSICE", + "MOVFAM", + "NDDEM2", + "NDDEMO", + "PAQINI", + "PR01H", + "PR01S", + "TRIDIS", + "TVBACH", + "TVBAFU", + "TVBALI", + "TVCOMU", + "UTX00", + "UTX0Y", + "UTX1H", + "UTX1I", + "UTX2A", + "UTX2C", + "UTX2J", + "UTX2N", + "UTX2P", + "UTX2Q", + "UTX2R", + "UTX32", + "UTX37", + "UTX38", + "UTX4I", + "UTX4N", + "UTX4P", + "UTX5M", + "UTX5V", + "UTX6C", + "UTX7T", + "UTX7U", + "UTX90", + "UTXAH", + "UTXC7", + "UTXC8", + "UTXCL", + "UTXCN", + "UTXCP", + "UTXD0", + "UTXD3", + "UTXHA", + "UTXHB", + "UTXHC", + "UTXHD", + "UTXIC", + "UTXIE", + "UTXIF", + "UTXIH", + "UTXII", + "UTXIR", + "UTXIS" + ], + "Logo": "https://estatico.emisiondof6.com/recorte/m-DP/wpmos/SEXTA", + "HDR": false, + "EsVirtual": false, + "CDN": "tcdn", + "EsSatelite": false, + "QMWatermark": false, + "Upselling": "PKS--1", + "links": [] + }, + "BingeWatchingAction": "none", + "Seguible": false + }, + { + "CodEventoRejilla": 164939528, + "ShowId": 63182867, + "Id": 4236941, + "TipoContenido": "Episodio", + "CodSubTipoContenido": null, + "SubTipoContenido": null, + "TipoComercial": "Subscripcion", + "TipoEmision": null, + "Ficha": "https://ottcache.dof6.com/movistarplus/webplayer/contents/63182867/details?mediaType=FOTOV&profile=OTT&mode=U7D2&channels=SEXTA&version=8&tlsStream=true&mdrm=true&catalog=catchup&showNonRated=true", + "TipoComercial2": { + "Tipo": "Subscripcion", + "Descripcion": null + }, + "links": [ + { + "rel": "details", + "href": "https://ottcache.dof6.com/movistarplus/webplayer/contents/63182867/details?mediaType=FOTOV&profile=OTT&mode=U7D2&channels=SEXTA&version=8&tlsStream=true&mdrm=true&catalog=catchup&showNonRated=true", + "id": 63182867 + }, + { + "rel": "start-over", + "href": "https://grmovistar.imagenio.telefonica.net/asfe/rest/tvMediaURLs?tvProgram.id=63182867&svc=startover", + "state": null + }, + { + "rel": "catch-up", + "href": "https://grmovistar.imagenio.telefonica.net/asfe/rest/tvMediaURLs?tvProgram.id=63182867&svc=cutv", + "state": null + }, + { + "rel": "npvr", + "href": "https://grmovistar.imagenio.telefonica.net/asfe/rest/tvMediaURLs?tvProgram.id=63182867&svc=npvr", + "state": null + }, + { + "rel": "alternate", + "href": "appmovistar://movistarplus.es/ficha?id=4236941&referrer=api", + "class": "entryPoint", + "hints": { + "devices": [ + "android.cell", + "iphone", + "amazon.tv" + ] + } + }, + { + "rel": "alternate", + "href": "https://wl.movistarplus.es/ficha/?id=4236941&referrer=api", + "class": "entryPoint", + "hints": { + "devices": [ + "web" + ] + } + }, + { + "rel": "alternate", + "href": "https://wl.movistarplus.es/play?id=4236941&referrer=api", + "class": "play", + "hints": { + "devices": [ + "web" + ] + } + } + ], + "TiposComerciales": [], + "ContenedorRef": null, + "Directo": false, + "Grabable": false, + "Titulo": "Zapeando", + "Estreno": true, + "LenguajeSignos": false, + "Nacionalidad": "España", + "Lanzable": false, + "NivelMoral": { + "_id": "09", + "Id": "+16", + "Logo": "https://voddelivery.emisiondof6.com/images/logos/logos_nivelmoral/16.png" + }, + "Duracion": 90, + "DuracionEnSegundos": 5400, + "GeneroComAntena": "Humor", + "Imagen": "https://estatico.emisiondof6.com/recorte/n/ywcatalogov/MSEXTAT4236941", + "Imagenes": [ + { + "id": "default", + "uri": "https://estatico.emisiondof6.com/recorte/n/ywcatalogov/MSEXTAT4236941" + }, + { + "id": "vertical", + "uri": "https://estatico.emisiondof6.com/recorte/n/ywcatalogov/MSEXTAT4236941" + }, + { + "id": "horizontal", + "uri": "https://estatico.emisiondof6.com/recorte/n/ywcatalogoh/MSEXTAT4236941" + }, + { + "id": "watch2tgr-start", + "uri": "https://estatico.emisiondof6.com/recorte/n/vegtooltip/MSEXTAT4236941.jpg" + }, + { + "id": "watch2tgr-end", + "uri": "https://estatico.emisiondof6.com/recorte/n/vegend/MSEXTAT4236941.jpg" + } + ], + "TituloSerie": "Zapeando", + "Temporada": "(T25/26)", + "SerialId": 62209579, + "TituloEpisodio": "\"Episodio 3036\"", + "TituloVerLinea1": "Zapeando", + "TituloVerLinea2": null, + "TituloHorLinea1": "Zapeando", + "TituloHorLinea2": "T25/26 \"Episodio 3036\"", + "TituloAccesible": "Zapeando", + "Valoracion": null, + "TituloNormalizado": "zapeando", + "RutaNormalizada": null, + "FechaHoraInicio": "1770648300000", + "FechaHoraFin": "1770653700000", + "FechaEmision": "2026-02-09", + "DuracionParrilla": 90, + "DuracionParrillaEnSegundos": 5400, + "FormatoVideo": 1, + "Disponible": true, + "Canal": { + "CodCadenaTv": "SEXTA", + "Nombre": "La Sexta", + "Uid": 444099, + "CasId": "4526", + "ServiceUid": "717", + "ServiceUid2": "4526", + "ServiceId": 6, + "PuntoReproduccion": "https://lasexta-dash-movistarplus.emisiondof6.com/manifest.mpd", + "Logos": [ + { + "id": "default", + "state": null, + "uri": "https://estatico.emisiondof6.com/recorte/m-DPBLAN/wpmos/SEXTA" + }, + { + "id": "default", + "state": "over", + "uri": "https://estatico.emisiondof6.com/recorte/m-DP/wpmos/SEXTA" + }, + { + "id": "bg_dark", + "state": null, + "uri": "https://estatico.emisiondof6.com/recorte/m-DP/wpepg/SEXTA" + }, + { + "id": "bg_light", + "state": null, + "uri": "https://estatico.emisiondof6.com/recorte/m-DPBLAN/wpepg/SEXTA" + }, + { + "id": "nobox_dark", + "state": null, + "uri": "https://estatico.emisiondof6.com/recorte/m-NEONEGR/wpmarcaficha/SEXTA" + } + ], + "Dial": 6, + "HomeZone": false, + "FormatoAudio": null, + "FormatoVideo": "HD", + "LogoTaquilla": null, + "tvProducts": [ + "BOBFUT2", + "DIFUSION", + "DO0001", + "DO0002", + "DO0003", + "DO0004", + "FUSICE", + "MOVFAM", + "NDDEM2", + "NDDEMO", + "PAQINI", + "PR01H", + "PR01S", + "TRIDIS", + "TVBACH", + "TVBAFU", + "TVBALI", + "TVCOMU", + "UTX00", + "UTX0Y", + "UTX1H", + "UTX1I", + "UTX2A", + "UTX2C", + "UTX2J", + "UTX2N", + "UTX2P", + "UTX2Q", + "UTX2R", + "UTX32", + "UTX37", + "UTX38", + "UTX4I", + "UTX4N", + "UTX4P", + "UTX5M", + "UTX5V", + "UTX6C", + "UTX7T", + "UTX7U", + "UTX90", + "UTXAH", + "UTXC7", + "UTXC8", + "UTXCL", + "UTXCN", + "UTXCP", + "UTXD0", + "UTXD3", + "UTXHA", + "UTXHB", + "UTXHC", + "UTXHD", + "UTXIC", + "UTXIE", + "UTXIF", + "UTXIH", + "UTXII", + "UTXIR", + "UTXIS" + ], + "Logo": "https://estatico.emisiondof6.com/recorte/m-DP/wpmos/SEXTA", + "HDR": false, + "EsVirtual": false, + "CDN": "tcdn", + "EsSatelite": false, + "QMWatermark": false, + "Upselling": "PKS--1", + "links": [] + }, + "BingeWatchingAction": "none", + "Seguible": false + }, + { + "CodEventoRejilla": 164939530, + "ShowId": 63182868, + "Id": 4236929, + "TipoContenido": "Episodio", + "CodSubTipoContenido": null, + "SubTipoContenido": null, + "TipoComercial": "Subscripcion", + "TipoEmision": null, + "Ficha": "https://ottcache.dof6.com/movistarplus/webplayer/contents/63182868/details?mediaType=FOTOV&profile=OTT&mode=U7D2&channels=SEXTA&version=8&tlsStream=true&mdrm=true&catalog=catchup&showNonRated=true", + "TipoComercial2": { + "Tipo": "Subscripcion", + "Descripcion": null + }, + "links": [ + { + "rel": "details", + "href": "https://ottcache.dof6.com/movistarplus/webplayer/contents/63182868/details?mediaType=FOTOV&profile=OTT&mode=U7D2&channels=SEXTA&version=8&tlsStream=true&mdrm=true&catalog=catchup&showNonRated=true", + "id": 63182868 + }, + { + "rel": "start-over", + "href": "https://grmovistar.imagenio.telefonica.net/asfe/rest/tvMediaURLs?tvProgram.id=63182868&svc=startover", + "state": null + }, + { + "rel": "catch-up", + "href": "https://grmovistar.imagenio.telefonica.net/asfe/rest/tvMediaURLs?tvProgram.id=63182868&svc=cutv", + "state": null + }, + { + "rel": "npvr", + "href": "https://grmovistar.imagenio.telefonica.net/asfe/rest/tvMediaURLs?tvProgram.id=63182868&svc=npvr", + "state": null + }, + { + "rel": "alternate", + "href": "appmovistar://movistarplus.es/ficha?id=4236929&referrer=api", + "class": "entryPoint", + "hints": { + "devices": [ + "android.cell", + "iphone", + "amazon.tv" + ] + } + }, + { + "rel": "alternate", + "href": "https://wl.movistarplus.es/ficha/?id=4236929&referrer=api", + "class": "entryPoint", + "hints": { + "devices": [ + "web" + ] + } + }, + { + "rel": "alternate", + "href": "https://wl.movistarplus.es/play?id=4236929&referrer=api", + "class": "play", + "hints": { + "devices": [ + "web" + ] + } + } + ], + "TiposComerciales": [], + "ContenedorRef": null, + "Directo": false, + "Grabable": false, + "Titulo": "Más vale tarde", + "Estreno": true, + "LenguajeSignos": false, + "Nacionalidad": "España", + "Lanzable": false, + "NivelMoral": { + "_id": "09", + "Id": "+16", + "Logo": "https://voddelivery.emisiondof6.com/images/logos/logos_nivelmoral/16.png" + }, + "Duracion": 166, + "DuracionEnSegundos": 9960, + "GeneroComAntena": "Informativo", + "Imagen": "https://estatico.emisiondof6.com/recorte/n/ywcatalogov/MSEXTAT4236929", + "Imagenes": [ + { + "id": "default", + "uri": "https://estatico.emisiondof6.com/recorte/n/ywcatalogov/MSEXTAT4236929" + }, + { + "id": "vertical", + "uri": "https://estatico.emisiondof6.com/recorte/n/ywcatalogov/MSEXTAT4236929" + }, + { + "id": "horizontal", + "uri": "https://estatico.emisiondof6.com/recorte/n/ywcatalogoh/MSEXTAT4236929" + }, + { + "id": "watch2tgr-start", + "uri": "https://estatico.emisiondof6.com/recorte/n/vegtooltip/MSEXTAT4236929.jpg" + }, + { + "id": "watch2tgr-end", + "uri": "https://estatico.emisiondof6.com/recorte/n/vegend/MSEXTAT4236929.jpg" + } + ], + "TituloSerie": "Más vale tarde", + "Temporada": "(T25/26)", + "SerialId": 62209580, + "TituloEpisodio": "\"Episodio 835\"", + "TituloVerLinea1": "Más vale tarde", + "TituloVerLinea2": null, + "TituloHorLinea1": "Más vale tarde", + "TituloHorLinea2": "T25/26 \"Episodio 835\"", + "TituloAccesible": "Más vale tarde", + "Valoracion": null, + "TituloNormalizado": "mas-vale-tarde", + "RutaNormalizada": null, + "FechaHoraInicio": "1770653700000", + "FechaHoraFin": "1770663660000", + "FechaEmision": "2026-02-09", + "DuracionParrilla": 166, + "DuracionParrillaEnSegundos": 9960, + "FormatoVideo": 1, + "Disponible": true, + "Canal": { + "CodCadenaTv": "SEXTA", + "Nombre": "La Sexta", + "Uid": 444099, + "CasId": "4526", + "ServiceUid": "717", + "ServiceUid2": "4526", + "ServiceId": 6, + "PuntoReproduccion": "https://lasexta-dash-movistarplus.emisiondof6.com/manifest.mpd", + "Logos": [ + { + "id": "default", + "state": null, + "uri": "https://estatico.emisiondof6.com/recorte/m-DPBLAN/wpmos/SEXTA" + }, + { + "id": "default", + "state": "over", + "uri": "https://estatico.emisiondof6.com/recorte/m-DP/wpmos/SEXTA" + }, + { + "id": "bg_dark", + "state": null, + "uri": "https://estatico.emisiondof6.com/recorte/m-DP/wpepg/SEXTA" + }, + { + "id": "bg_light", + "state": null, + "uri": "https://estatico.emisiondof6.com/recorte/m-DPBLAN/wpepg/SEXTA" + }, + { + "id": "nobox_dark", + "state": null, + "uri": "https://estatico.emisiondof6.com/recorte/m-NEONEGR/wpmarcaficha/SEXTA" + } + ], + "Dial": 6, + "HomeZone": false, + "FormatoAudio": null, + "FormatoVideo": "HD", + "LogoTaquilla": null, + "tvProducts": [ + "BOBFUT2", + "DIFUSION", + "DO0001", + "DO0002", + "DO0003", + "DO0004", + "FUSICE", + "MOVFAM", + "NDDEM2", + "NDDEMO", + "PAQINI", + "PR01H", + "PR01S", + "TRIDIS", + "TVBACH", + "TVBAFU", + "TVBALI", + "TVCOMU", + "UTX00", + "UTX0Y", + "UTX1H", + "UTX1I", + "UTX2A", + "UTX2C", + "UTX2J", + "UTX2N", + "UTX2P", + "UTX2Q", + "UTX2R", + "UTX32", + "UTX37", + "UTX38", + "UTX4I", + "UTX4N", + "UTX4P", + "UTX5M", + "UTX5V", + "UTX6C", + "UTX7T", + "UTX7U", + "UTX90", + "UTXAH", + "UTXC7", + "UTXC8", + "UTXCL", + "UTXCN", + "UTXCP", + "UTXD0", + "UTXD3", + "UTXHA", + "UTXHB", + "UTXHC", + "UTXHD", + "UTXIC", + "UTXIE", + "UTXIF", + "UTXIH", + "UTXII", + "UTXIR", + "UTXIS" + ], + "Logo": "https://estatico.emisiondof6.com/recorte/m-DP/wpmos/SEXTA", + "HDR": false, + "EsVirtual": false, + "CDN": "tcdn", + "EsSatelite": false, + "QMWatermark": false, + "Upselling": "PKS--1", + "links": [] + }, + "BingeWatchingAction": "none", + "Seguible": false + }, + { + "CodEventoRejilla": 164939532, + "ShowId": 63182869, + "Id": 1105278, + "TipoContenido": "Episodio", + "CodSubTipoContenido": null, + "SubTipoContenido": null, + "TipoComercial": "Subscripcion", + "TipoEmision": null, + "Ficha": "https://ottcache.dof6.com/movistarplus/webplayer/contents/63182869/details?mediaType=FOTOV&profile=OTT&mode=VODREJILLA&channels=SEXTA&version=8&tlsStream=true&mdrm=true&catalog=events&showNonRated=true", + "TipoComercial2": { + "Tipo": "Subscripcion", + "Descripcion": null + }, + "links": [ + { + "rel": "details", + "href": "https://ottcache.dof6.com/movistarplus/webplayer/contents/63182869/details?mediaType=FOTOV&profile=OTT&mode=VODREJILLA&channels=SEXTA&version=8&tlsStream=true&mdrm=true&catalog=events&showNonRated=true", + "id": 63182869 + }, + { + "rel": "start-over", + "href": "https://grmovistar.imagenio.telefonica.net/asfe/rest/tvMediaURLs?tvProgram.id=63182869&svc=startover", + "state": null + }, + { + "rel": "catch-up", + "href": "https://grmovistar.imagenio.telefonica.net/asfe/rest/tvMediaURLs?tvProgram.id=63182869&svc=cutv", + "state": null + }, + { + "rel": "npvr", + "href": "https://grmovistar.imagenio.telefonica.net/asfe/rest/tvMediaURLs?tvProgram.id=63182869&svc=npvr", + "state": null + }, + { + "rel": "alternate", + "href": "appmovistar://movistarplus.es/ficha?id=1105278&referrer=api", + "class": "entryPoint", + "hints": { + "devices": [ + "android.cell", + "iphone", + "amazon.tv" + ] + } + }, + { + "rel": "alternate", + "href": "https://wl.movistarplus.es/ficha/?id=1105278&referrer=api", + "class": "entryPoint", + "hints": { + "devices": [ + "web" + ] + } + }, + { + "rel": "alternate", + "href": "https://wl.movistarplus.es/play?id=1105278&referrer=api", + "class": "play", + "hints": { + "devices": [ + "web" + ] + } + } + ], + "TiposComerciales": [], + "ContenedorRef": null, + "Directo": false, + "Grabable": true, + "Titulo": "laSexta Noticias", + "Estreno": false, + "LenguajeSignos": false, + "Nacionalidad": "España", + "Lanzable": false, + "Duracion": 59, + "DuracionEnSegundos": 3540, + "GeneroComAntena": "Informativo", + "Imagen": "https://estatico.emisiondof6.com/recorte/n/ywcatalogov/MSEXTAT1105278", + "Imagenes": [ + { + "id": "default", + "uri": "https://estatico.emisiondof6.com/recorte/n/ywcatalogov/MSEXTAT1105278" + }, + { + "id": "vertical", + "uri": "https://estatico.emisiondof6.com/recorte/n/ywcatalogov/MSEXTAT1105278" + }, + { + "id": "horizontal", + "uri": "https://estatico.emisiondof6.com/recorte/n/ywcatalogoh/MSEXTAT1105278" + }, + { + "id": "watch2tgr-start", + "uri": "https://estatico.emisiondof6.com/recorte/n/vegtooltip/MSEXTAT1105278.jpg" + }, + { + "id": "watch2tgr-end", + "uri": "https://estatico.emisiondof6.com/recorte/n/vegend/MSEXTAT1105278.jpg" + } + ], + "TituloSerie": "laSexta Noticias", + "Temporada": null, + "TituloEpisodio": "laSexta Noticias", + "TituloVerLinea1": "laSexta Noticias", + "TituloVerLinea2": null, + "TituloHorLinea1": "laSexta Noticias", + "TituloAccesible": "laSexta Noticias", + "Valoracion": null, + "TituloNormalizado": "lasexta-noticias", + "RutaNormalizada": null, + "FechaHoraInicio": "1770663660000", + "FechaHoraFin": "1770667200000", + "FechaEmision": "2026-02-09", + "DuracionParrilla": 59, + "DuracionParrillaEnSegundos": 3540, + "FormatoVideo": 1, + "Disponible": true, + "DisponibleVOD": false, + "Canal": { + "CodCadenaTv": "SEXTA", + "Nombre": "La Sexta", + "Uid": 444099, + "CasId": "4526", + "ServiceUid": "717", + "ServiceUid2": "4526", + "ServiceId": 6, + "PuntoReproduccion": "https://lasexta-dash-movistarplus.emisiondof6.com/manifest.mpd", + "Logos": [ + { + "id": "default", + "state": null, + "uri": "https://estatico.emisiondof6.com/recorte/m-DPBLAN/wpmos/SEXTA" + }, + { + "id": "default", + "state": "over", + "uri": "https://estatico.emisiondof6.com/recorte/m-DP/wpmos/SEXTA" + }, + { + "id": "bg_dark", + "state": null, + "uri": "https://estatico.emisiondof6.com/recorte/m-DP/wpepg/SEXTA" + }, + { + "id": "bg_light", + "state": null, + "uri": "https://estatico.emisiondof6.com/recorte/m-DPBLAN/wpepg/SEXTA" + }, + { + "id": "nobox_dark", + "state": null, + "uri": "https://estatico.emisiondof6.com/recorte/m-NEONEGR/wpmarcaficha/SEXTA" + } + ], + "Dial": 6, + "HomeZone": false, + "FormatoAudio": null, + "FormatoVideo": "HD", + "LogoTaquilla": null, + "tvProducts": [ + "BOBFUT2", + "DIFUSION", + "DO0001", + "DO0002", + "DO0003", + "DO0004", + "FUSICE", + "MOVFAM", + "NDDEM2", + "NDDEMO", + "PAQINI", + "PR01H", + "PR01S", + "TRIDIS", + "TVBACH", + "TVBAFU", + "TVBALI", + "TVCOMU", + "UTX00", + "UTX0Y", + "UTX1H", + "UTX1I", + "UTX2A", + "UTX2C", + "UTX2J", + "UTX2N", + "UTX2P", + "UTX2Q", + "UTX2R", + "UTX32", + "UTX37", + "UTX38", + "UTX4I", + "UTX4N", + "UTX4P", + "UTX5M", + "UTX5V", + "UTX6C", + "UTX7T", + "UTX7U", + "UTX90", + "UTXAH", + "UTXC7", + "UTXC8", + "UTXCL", + "UTXCN", + "UTXCP", + "UTXD0", + "UTXD3", + "UTXHA", + "UTXHB", + "UTXHC", + "UTXHD", + "UTXIC", + "UTXIE", + "UTXIF", + "UTXIH", + "UTXII", + "UTXIR", + "UTXIS" + ], + "Logo": "https://estatico.emisiondof6.com/recorte/m-DP/wpmos/SEXTA", + "HDR": false, + "EsVirtual": false, + "CDN": "tcdn", + "EsSatelite": false, + "QMWatermark": false, + "Upselling": "PKS--1", + "links": [] + }, + "BingeWatchingAction": "none", + "Seguible": false + }, + { + "CodEventoRejilla": 164939534, + "ShowId": 63182870, + "Id": 3214008, + "TipoContenido": "Episodio", + "CodSubTipoContenido": null, + "SubTipoContenido": null, + "TipoComercial": "Subscripcion", + "TipoEmision": null, + "Ficha": "https://ottcache.dof6.com/movistarplus/webplayer/contents/63182870/details?mediaType=FOTOV&profile=OTT&mode=VODREJILLA&channels=SEXTA&version=8&tlsStream=true&mdrm=true&catalog=events&showNonRated=true", + "TipoComercial2": { + "Tipo": "Subscripcion", + "Descripcion": null + }, + "links": [ + { + "rel": "details", + "href": "https://ottcache.dof6.com/movistarplus/webplayer/contents/63182870/details?mediaType=FOTOV&profile=OTT&mode=VODREJILLA&channels=SEXTA&version=8&tlsStream=true&mdrm=true&catalog=events&showNonRated=true", + "id": 63182870 + }, + { + "rel": "start-over", + "href": "https://grmovistar.imagenio.telefonica.net/asfe/rest/tvMediaURLs?tvProgram.id=63182870&svc=startover", + "state": null + }, + { + "rel": "catch-up", + "href": "https://grmovistar.imagenio.telefonica.net/asfe/rest/tvMediaURLs?tvProgram.id=63182870&svc=cutv", + "state": null + }, + { + "rel": "npvr", + "href": "https://grmovistar.imagenio.telefonica.net/asfe/rest/tvMediaURLs?tvProgram.id=63182870&svc=npvr", + "state": null + }, + { + "rel": "alternate", + "href": "appmovistar://movistarplus.es/ficha?id=3214008&referrer=api", + "class": "entryPoint", + "hints": { + "devices": [ + "android.cell", + "iphone", + "amazon.tv" + ] + } + }, + { + "rel": "alternate", + "href": "https://wl.movistarplus.es/ficha/?id=3214008&referrer=api", + "class": "entryPoint", + "hints": { + "devices": [ + "web" + ] + } + }, + { + "rel": "alternate", + "href": "https://wl.movistarplus.es/play?id=3214008&referrer=api", + "class": "play", + "hints": { + "devices": [ + "web" + ] + } + } + ], + "TiposComerciales": [], + "ContenedorRef": null, + "Directo": false, + "Grabable": true, + "Titulo": "laSexta Clave", + "Estreno": false, + "LenguajeSignos": false, + "Nacionalidad": "España", + "Lanzable": false, + "Duracion": 20, + "DuracionEnSegundos": 1200, + "GeneroComAntena": "Informativo", + "Imagen": "https://estatico.emisiondof6.com/recorte/n/ywcatalogov/MSEXTAT3214008", + "Imagenes": [ + { + "id": "default", + "uri": "https://estatico.emisiondof6.com/recorte/n/ywcatalogov/MSEXTAT3214008" + }, + { + "id": "vertical", + "uri": "https://estatico.emisiondof6.com/recorte/n/ywcatalogov/MSEXTAT3214008" + }, + { + "id": "horizontal", + "uri": "https://estatico.emisiondof6.com/recorte/n/ywcatalogoh/MSEXTAT3214008" + }, + { + "id": "watch2tgr-start", + "uri": "https://estatico.emisiondof6.com/recorte/n/vegtooltip/MSEXTAT3214008.jpg" + }, + { + "id": "watch2tgr-end", + "uri": "https://estatico.emisiondof6.com/recorte/n/vegend/MSEXTAT3214008.jpg" + } + ], + "TituloSerie": "laSexta Clave", + "Temporada": null, + "TituloEpisodio": "laSexta Clave", + "TituloVerLinea1": "laSexta Clave", + "TituloVerLinea2": null, + "TituloHorLinea1": "laSexta Clave", + "TituloAccesible": "laSexta Clave", + "Valoracion": null, + "TituloNormalizado": "lasexta-clave", + "RutaNormalizada": null, + "FechaHoraInicio": "1770667200000", + "FechaHoraFin": "1770668400000", + "FechaEmision": "2026-02-09", + "DuracionParrilla": 20, + "DuracionParrillaEnSegundos": 1200, + "FormatoVideo": 1, + "Disponible": true, + "DisponibleVOD": false, + "Canal": { + "CodCadenaTv": "SEXTA", + "Nombre": "La Sexta", + "Uid": 444099, + "CasId": "4526", + "ServiceUid": "717", + "ServiceUid2": "4526", + "ServiceId": 6, + "PuntoReproduccion": "https://lasexta-dash-movistarplus.emisiondof6.com/manifest.mpd", + "Logos": [ + { + "id": "default", + "state": null, + "uri": "https://estatico.emisiondof6.com/recorte/m-DPBLAN/wpmos/SEXTA" + }, + { + "id": "default", + "state": "over", + "uri": "https://estatico.emisiondof6.com/recorte/m-DP/wpmos/SEXTA" + }, + { + "id": "bg_dark", + "state": null, + "uri": "https://estatico.emisiondof6.com/recorte/m-DP/wpepg/SEXTA" + }, + { + "id": "bg_light", + "state": null, + "uri": "https://estatico.emisiondof6.com/recorte/m-DPBLAN/wpepg/SEXTA" + }, + { + "id": "nobox_dark", + "state": null, + "uri": "https://estatico.emisiondof6.com/recorte/m-NEONEGR/wpmarcaficha/SEXTA" + } + ], + "Dial": 6, + "HomeZone": false, + "FormatoAudio": null, + "FormatoVideo": "HD", + "LogoTaquilla": null, + "tvProducts": [ + "BOBFUT2", + "DIFUSION", + "DO0001", + "DO0002", + "DO0003", + "DO0004", + "FUSICE", + "MOVFAM", + "NDDEM2", + "NDDEMO", + "PAQINI", + "PR01H", + "PR01S", + "TRIDIS", + "TVBACH", + "TVBAFU", + "TVBALI", + "TVCOMU", + "UTX00", + "UTX0Y", + "UTX1H", + "UTX1I", + "UTX2A", + "UTX2C", + "UTX2J", + "UTX2N", + "UTX2P", + "UTX2Q", + "UTX2R", + "UTX32", + "UTX37", + "UTX38", + "UTX4I", + "UTX4N", + "UTX4P", + "UTX5M", + "UTX5V", + "UTX6C", + "UTX7T", + "UTX7U", + "UTX90", + "UTXAH", + "UTXC7", + "UTXC8", + "UTXCL", + "UTXCN", + "UTXCP", + "UTXD0", + "UTXD3", + "UTXHA", + "UTXHB", + "UTXHC", + "UTXHD", + "UTXIC", + "UTXIE", + "UTXIF", + "UTXIH", + "UTXII", + "UTXIR", + "UTXIS" + ], + "Logo": "https://estatico.emisiondof6.com/recorte/m-DP/wpmos/SEXTA", + "HDR": false, + "EsVirtual": false, + "CDN": "tcdn", + "EsSatelite": false, + "QMWatermark": false, + "Upselling": "PKS--1", + "links": [] + }, + "BingeWatchingAction": "none", + "Seguible": false + }, + { + "CodEventoRejilla": 164939536, + "ShowId": 63182871, + "Id": 985259, + "TipoContenido": "Episodio", + "CodSubTipoContenido": null, + "SubTipoContenido": null, + "TipoComercial": "Subscripcion", + "TipoEmision": null, + "Ficha": "https://ottcache.dof6.com/movistarplus/webplayer/contents/63182871/details?mediaType=FOTOV&profile=OTT&mode=VODREJILLA&channels=SEXTA&version=8&tlsStream=true&mdrm=true&catalog=events&showNonRated=true", + "TipoComercial2": { + "Tipo": "Subscripcion", + "Descripcion": null + }, + "links": [ + { + "rel": "details", + "href": "https://ottcache.dof6.com/movistarplus/webplayer/contents/63182871/details?mediaType=FOTOV&profile=OTT&mode=VODREJILLA&channels=SEXTA&version=8&tlsStream=true&mdrm=true&catalog=events&showNonRated=true", + "id": 63182871 + }, + { + "rel": "start-over", + "href": "https://grmovistar.imagenio.telefonica.net/asfe/rest/tvMediaURLs?tvProgram.id=63182871&svc=startover", + "state": null + }, + { + "rel": "catch-up", + "href": "https://grmovistar.imagenio.telefonica.net/asfe/rest/tvMediaURLs?tvProgram.id=63182871&svc=cutv", + "state": null + }, + { + "rel": "npvr", + "href": "https://grmovistar.imagenio.telefonica.net/asfe/rest/tvMediaURLs?tvProgram.id=63182871&svc=npvr", + "state": null + }, + { + "rel": "alternate", + "href": "appmovistar://movistarplus.es/ficha?id=985259&referrer=api", + "class": "entryPoint", + "hints": { + "devices": [ + "android.cell", + "iphone", + "amazon.tv" + ] + } + }, + { + "rel": "alternate", + "href": "https://wl.movistarplus.es/ficha/?id=985259&referrer=api", + "class": "entryPoint", + "hints": { + "devices": [ + "web" + ] + } + }, + { + "rel": "alternate", + "href": "https://wl.movistarplus.es/play?id=985259&referrer=api", + "class": "play", + "hints": { + "devices": [ + "web" + ] + } + } + ], + "TiposComerciales": [], + "ContenedorRef": null, + "Directo": false, + "Grabable": true, + "Titulo": "laSexta Meteo", + "Estreno": false, + "LenguajeSignos": false, + "Nacionalidad": "España", + "Lanzable": false, + "Duracion": 5, + "DuracionEnSegundos": 300, + "GeneroComAntena": "Meteorología", + "Imagen": "https://estatico.emisiondof6.com/recorte/n/ywcatalogov/MSEXTAT985259", + "Imagenes": [ + { + "id": "default", + "uri": "https://estatico.emisiondof6.com/recorte/n/ywcatalogov/MSEXTAT985259" + }, + { + "id": "vertical", + "uri": "https://estatico.emisiondof6.com/recorte/n/ywcatalogov/MSEXTAT985259" + }, + { + "id": "horizontal", + "uri": "https://estatico.emisiondof6.com/recorte/n/ywcatalogoh/MSEXTAT985259" + }, + { + "id": "watch2tgr-start", + "uri": "https://estatico.emisiondof6.com/recorte/n/vegtooltip/MSEXTAT985259.jpg" + }, + { + "id": "watch2tgr-end", + "uri": "https://estatico.emisiondof6.com/recorte/n/vegend/MSEXTAT985259.jpg" + } + ], + "TituloSerie": "laSexta Meteo", + "Temporada": null, + "TituloEpisodio": "laSexta Meteo", + "TituloVerLinea1": "laSexta Meteo", + "TituloVerLinea2": null, + "TituloHorLinea1": "laSexta Meteo", + "TituloAccesible": "laSexta Meteo", + "Valoracion": null, + "TituloNormalizado": "lasexta-meteo", + "RutaNormalizada": null, + "FechaHoraInicio": "1770668400000", + "FechaHoraFin": "1770668700000", + "FechaEmision": "2026-02-09", + "DuracionParrilla": 5, + "DuracionParrillaEnSegundos": 300, + "FormatoVideo": 1, + "Disponible": true, + "DisponibleVOD": false, + "Canal": { + "CodCadenaTv": "SEXTA", + "Nombre": "La Sexta", + "Uid": 444099, + "CasId": "4526", + "ServiceUid": "717", + "ServiceUid2": "4526", + "ServiceId": 6, + "PuntoReproduccion": "https://lasexta-dash-movistarplus.emisiondof6.com/manifest.mpd", + "Logos": [ + { + "id": "default", + "state": null, + "uri": "https://estatico.emisiondof6.com/recorte/m-DPBLAN/wpmos/SEXTA" + }, + { + "id": "default", + "state": "over", + "uri": "https://estatico.emisiondof6.com/recorte/m-DP/wpmos/SEXTA" + }, + { + "id": "bg_dark", + "state": null, + "uri": "https://estatico.emisiondof6.com/recorte/m-DP/wpepg/SEXTA" + }, + { + "id": "bg_light", + "state": null, + "uri": "https://estatico.emisiondof6.com/recorte/m-DPBLAN/wpepg/SEXTA" + }, + { + "id": "nobox_dark", + "state": null, + "uri": "https://estatico.emisiondof6.com/recorte/m-NEONEGR/wpmarcaficha/SEXTA" + } + ], + "Dial": 6, + "HomeZone": false, + "FormatoAudio": null, + "FormatoVideo": "HD", + "LogoTaquilla": null, + "tvProducts": [ + "BOBFUT2", + "DIFUSION", + "DO0001", + "DO0002", + "DO0003", + "DO0004", + "FUSICE", + "MOVFAM", + "NDDEM2", + "NDDEMO", + "PAQINI", + "PR01H", + "PR01S", + "TRIDIS", + "TVBACH", + "TVBAFU", + "TVBALI", + "TVCOMU", + "UTX00", + "UTX0Y", + "UTX1H", + "UTX1I", + "UTX2A", + "UTX2C", + "UTX2J", + "UTX2N", + "UTX2P", + "UTX2Q", + "UTX2R", + "UTX32", + "UTX37", + "UTX38", + "UTX4I", + "UTX4N", + "UTX4P", + "UTX5M", + "UTX5V", + "UTX6C", + "UTX7T", + "UTX7U", + "UTX90", + "UTXAH", + "UTXC7", + "UTXC8", + "UTXCL", + "UTXCN", + "UTXCP", + "UTXD0", + "UTXD3", + "UTXHA", + "UTXHB", + "UTXHC", + "UTXHD", + "UTXIC", + "UTXIE", + "UTXIF", + "UTXIH", + "UTXII", + "UTXIR", + "UTXIS" + ], + "Logo": "https://estatico.emisiondof6.com/recorte/m-DP/wpmos/SEXTA", + "HDR": false, + "EsVirtual": false, + "CDN": "tcdn", + "EsSatelite": false, + "QMWatermark": false, + "Upselling": "PKS--1", + "links": [] + }, + "BingeWatchingAction": "none", + "Seguible": false + }, + { + "CodEventoRejilla": 164939538, + "ShowId": 63182872, + "Id": 764081, + "TipoContenido": "Episodio", + "CodSubTipoContenido": null, + "SubTipoContenido": null, + "TipoComercial": "Subscripcion", + "TipoEmision": null, + "Ficha": "https://ottcache.dof6.com/movistarplus/webplayer/contents/63182872/details?mediaType=FOTOV&profile=OTT&mode=VODREJILLA&channels=SEXTA&version=8&tlsStream=true&mdrm=true&catalog=events&showNonRated=true", + "TipoComercial2": { + "Tipo": "Subscripcion", + "Descripcion": null + }, + "links": [ + { + "rel": "details", + "href": "https://ottcache.dof6.com/movistarplus/webplayer/contents/63182872/details?mediaType=FOTOV&profile=OTT&mode=VODREJILLA&channels=SEXTA&version=8&tlsStream=true&mdrm=true&catalog=events&showNonRated=true", + "id": 63182872 + }, + { + "rel": "start-over", + "href": "https://grmovistar.imagenio.telefonica.net/asfe/rest/tvMediaURLs?tvProgram.id=63182872&svc=startover", + "state": null + }, + { + "rel": "catch-up", + "href": "https://grmovistar.imagenio.telefonica.net/asfe/rest/tvMediaURLs?tvProgram.id=63182872&svc=cutv", + "state": null + }, + { + "rel": "npvr", + "href": "https://grmovistar.imagenio.telefonica.net/asfe/rest/tvMediaURLs?tvProgram.id=63182872&svc=npvr", + "state": null + }, + { + "rel": "alternate", + "href": "appmovistar://movistarplus.es/ficha?id=764081&referrer=api", + "class": "entryPoint", + "hints": { + "devices": [ + "android.cell", + "iphone", + "amazon.tv" + ] + } + }, + { + "rel": "alternate", + "href": "https://wl.movistarplus.es/ficha/?id=764081&referrer=api", + "class": "entryPoint", + "hints": { + "devices": [ + "web" + ] + } + }, + { + "rel": "alternate", + "href": "https://wl.movistarplus.es/play?id=764081&referrer=api", + "class": "play", + "hints": { + "devices": [ + "web" + ] + } + } + ], + "TiposComerciales": [], + "ContenedorRef": null, + "Directo": false, + "Grabable": true, + "Titulo": "laSexta Deportes", + "Estreno": false, + "LenguajeSignos": false, + "Nacionalidad": "España", + "Lanzable": false, + "Duracion": 5, + "DuracionEnSegundos": 300, + "GeneroComAntena": "Deportes", + "Imagen": "https://estatico.emisiondof6.com/recorte/n/ywcatalogov/MSEXTAT764081", + "Imagenes": [ + { + "id": "default", + "uri": "https://estatico.emisiondof6.com/recorte/n/ywcatalogov/MSEXTAT764081" + }, + { + "id": "vertical", + "uri": "https://estatico.emisiondof6.com/recorte/n/ywcatalogov/MSEXTAT764081" + }, + { + "id": "horizontal", + "uri": "https://estatico.emisiondof6.com/recorte/n/ywcatalogoh/MSEXTAT764081" + }, + { + "id": "watch2tgr-start", + "uri": "https://estatico.emisiondof6.com/recorte/n/vegtooltip/MSEXTAT764081.jpg" + }, + { + "id": "watch2tgr-end", + "uri": "https://estatico.emisiondof6.com/recorte/n/vegend/MSEXTAT764081.jpg" + } + ], + "TituloSerie": "laSexta Deportes", + "Temporada": null, + "TituloEpisodio": "laSexta Deportes", + "TituloVerLinea1": "laSexta Deportes", + "TituloVerLinea2": null, + "TituloHorLinea1": "laSexta Deportes", + "TituloAccesible": "laSexta Deportes", + "Valoracion": null, + "TituloNormalizado": "lasexta-deportes", + "RutaNormalizada": null, + "FechaHoraInicio": "1770668700000", + "FechaHoraFin": "1770669000000", + "FechaEmision": "2026-02-09", + "DuracionParrilla": 5, + "DuracionParrillaEnSegundos": 300, + "FormatoVideo": 1, + "Disponible": true, + "DisponibleVOD": false, + "Canal": { + "CodCadenaTv": "SEXTA", + "Nombre": "La Sexta", + "Uid": 444099, + "CasId": "4526", + "ServiceUid": "717", + "ServiceUid2": "4526", + "ServiceId": 6, + "PuntoReproduccion": "https://lasexta-dash-movistarplus.emisiondof6.com/manifest.mpd", + "Logos": [ + { + "id": "default", + "state": null, + "uri": "https://estatico.emisiondof6.com/recorte/m-DPBLAN/wpmos/SEXTA" + }, + { + "id": "default", + "state": "over", + "uri": "https://estatico.emisiondof6.com/recorte/m-DP/wpmos/SEXTA" + }, + { + "id": "bg_dark", + "state": null, + "uri": "https://estatico.emisiondof6.com/recorte/m-DP/wpepg/SEXTA" + }, + { + "id": "bg_light", + "state": null, + "uri": "https://estatico.emisiondof6.com/recorte/m-DPBLAN/wpepg/SEXTA" + }, + { + "id": "nobox_dark", + "state": null, + "uri": "https://estatico.emisiondof6.com/recorte/m-NEONEGR/wpmarcaficha/SEXTA" + } + ], + "Dial": 6, + "HomeZone": false, + "FormatoAudio": null, + "FormatoVideo": "HD", + "LogoTaquilla": null, + "tvProducts": [ + "BOBFUT2", + "DIFUSION", + "DO0001", + "DO0002", + "DO0003", + "DO0004", + "FUSICE", + "MOVFAM", + "NDDEM2", + "NDDEMO", + "PAQINI", + "PR01H", + "PR01S", + "TRIDIS", + "TVBACH", + "TVBAFU", + "TVBALI", + "TVCOMU", + "UTX00", + "UTX0Y", + "UTX1H", + "UTX1I", + "UTX2A", + "UTX2C", + "UTX2J", + "UTX2N", + "UTX2P", + "UTX2Q", + "UTX2R", + "UTX32", + "UTX37", + "UTX38", + "UTX4I", + "UTX4N", + "UTX4P", + "UTX5M", + "UTX5V", + "UTX6C", + "UTX7T", + "UTX7U", + "UTX90", + "UTXAH", + "UTXC7", + "UTXC8", + "UTXCL", + "UTXCN", + "UTXCP", + "UTXD0", + "UTXD3", + "UTXHA", + "UTXHB", + "UTXHC", + "UTXHD", + "UTXIC", + "UTXIE", + "UTXIF", + "UTXIH", + "UTXII", + "UTXIR", + "UTXIS" + ], + "Logo": "https://estatico.emisiondof6.com/recorte/m-DP/wpmos/SEXTA", + "HDR": false, + "EsVirtual": false, + "CDN": "tcdn", + "EsSatelite": false, + "QMWatermark": false, + "Upselling": "PKS--1", + "links": [] + }, + "BingeWatchingAction": "none", + "Seguible": false + }, + { + "CodEventoRejilla": 164939540, + "ShowId": 63182873, + "Id": 4236939, + "TipoContenido": "Episodio", + "CodSubTipoContenido": null, + "SubTipoContenido": null, + "TipoComercial": "Subscripcion", + "TipoEmision": null, + "Ficha": "https://ottcache.dof6.com/movistarplus/webplayer/contents/63182873/details?mediaType=FOTOV&profile=OTT&mode=VODREJILLA&channels=SEXTA&version=8&tlsStream=true&mdrm=true&catalog=events&showNonRated=true", + "TipoComercial2": { + "Tipo": "Subscripcion", + "Descripcion": null + }, + "links": [ + { + "rel": "details", + "href": "https://ottcache.dof6.com/movistarplus/webplayer/contents/63182873/details?mediaType=FOTOV&profile=OTT&mode=VODREJILLA&channels=SEXTA&version=8&tlsStream=true&mdrm=true&catalog=events&showNonRated=true", + "id": 63182873 + }, + { + "rel": "start-over", + "href": "https://grmovistar.imagenio.telefonica.net/asfe/rest/tvMediaURLs?tvProgram.id=63182873&svc=startover", + "state": null + }, + { + "rel": "catch-up", + "href": "https://grmovistar.imagenio.telefonica.net/asfe/rest/tvMediaURLs?tvProgram.id=63182873&svc=cutv", + "state": null + }, + { + "rel": "npvr", + "href": "https://grmovistar.imagenio.telefonica.net/asfe/rest/tvMediaURLs?tvProgram.id=63182873&svc=npvr", + "state": null + }, + { + "rel": "alternate", + "href": "appmovistar://movistarplus.es/ficha?id=4236939&referrer=api", + "class": "entryPoint", + "hints": { + "devices": [ + "android.cell", + "iphone", + "amazon.tv" + ] + } + }, + { + "rel": "alternate", + "href": "https://wl.movistarplus.es/ficha/?id=4236939&referrer=api", + "class": "entryPoint", + "hints": { + "devices": [ + "web" + ] + } + }, + { + "rel": "alternate", + "href": "https://wl.movistarplus.es/play?id=4236939&referrer=api", + "class": "play", + "hints": { + "devices": [ + "web" + ] + } + } + ], + "TiposComerciales": [], + "ContenedorRef": null, + "Directo": false, + "Grabable": true, + "Titulo": "El intermedio", + "Estreno": true, + "LenguajeSignos": false, + "Nacionalidad": "España", + "Lanzable": false, + "NivelMoral": { + "_id": "08", + "Id": "+12", + "Logo": "https://voddelivery.emisiondof6.com/images/logos/logos_nivelmoral/12.png" + }, + "Duracion": 90, + "DuracionEnSegundos": 5400, + "GeneroComAntena": "Humor", + "Imagen": "https://estatico.emisiondof6.com/recorte/n/ywcatalogov/MSEXTAT4236939", + "Imagenes": [ + { + "id": "default", + "uri": "https://estatico.emisiondof6.com/recorte/n/ywcatalogov/MSEXTAT4236939" + }, + { + "id": "vertical", + "uri": "https://estatico.emisiondof6.com/recorte/n/ywcatalogov/MSEXTAT4236939" + }, + { + "id": "horizontal", + "uri": "https://estatico.emisiondof6.com/recorte/n/ywcatalogoh/MSEXTAT4236939" + }, + { + "id": "watch2tgr-start", + "uri": "https://estatico.emisiondof6.com/recorte/n/vegtooltip/MSEXTAT4236939.jpg" + }, + { + "id": "watch2tgr-end", + "uri": "https://estatico.emisiondof6.com/recorte/n/vegend/MSEXTAT4236939.jpg" + } + ], + "TituloSerie": "El intermedio", + "Temporada": "(T20)", + "SerialId": 62244130, + "TituloEpisodio": "\"Episodio 624\"", + "TituloVerLinea1": "El intermedio", + "TituloVerLinea2": null, + "TituloHorLinea1": "El intermedio", + "TituloHorLinea2": "T20 \"Episodio 624\"", + "TituloAccesible": "El intermedio", + "Valoracion": null, + "TituloNormalizado": "el-intermedio", + "RutaNormalizada": null, + "FechaHoraInicio": "1770669000000", + "FechaHoraFin": "1770674400000", + "FechaEmision": "2026-02-09", + "DuracionParrilla": 90, + "DuracionParrillaEnSegundos": 5400, + "FormatoVideo": 1, + "Disponible": true, + "DisponibleVOD": false, + "Canal": { + "CodCadenaTv": "SEXTA", + "Nombre": "La Sexta", + "Uid": 444099, + "CasId": "4526", + "ServiceUid": "717", + "ServiceUid2": "4526", + "ServiceId": 6, + "PuntoReproduccion": "https://lasexta-dash-movistarplus.emisiondof6.com/manifest.mpd", + "Logos": [ + { + "id": "default", + "state": null, + "uri": "https://estatico.emisiondof6.com/recorte/m-DPBLAN/wpmos/SEXTA" + }, + { + "id": "default", + "state": "over", + "uri": "https://estatico.emisiondof6.com/recorte/m-DP/wpmos/SEXTA" + }, + { + "id": "bg_dark", + "state": null, + "uri": "https://estatico.emisiondof6.com/recorte/m-DP/wpepg/SEXTA" + }, + { + "id": "bg_light", + "state": null, + "uri": "https://estatico.emisiondof6.com/recorte/m-DPBLAN/wpepg/SEXTA" + }, + { + "id": "nobox_dark", + "state": null, + "uri": "https://estatico.emisiondof6.com/recorte/m-NEONEGR/wpmarcaficha/SEXTA" + } + ], + "Dial": 6, + "HomeZone": false, + "FormatoAudio": null, + "FormatoVideo": "HD", + "LogoTaquilla": null, + "tvProducts": [ + "BOBFUT2", + "DIFUSION", + "DO0001", + "DO0002", + "DO0003", + "DO0004", + "FUSICE", + "MOVFAM", + "NDDEM2", + "NDDEMO", + "PAQINI", + "PR01H", + "PR01S", + "TRIDIS", + "TVBACH", + "TVBAFU", + "TVBALI", + "TVCOMU", + "UTX00", + "UTX0Y", + "UTX1H", + "UTX1I", + "UTX2A", + "UTX2C", + "UTX2J", + "UTX2N", + "UTX2P", + "UTX2Q", + "UTX2R", + "UTX32", + "UTX37", + "UTX38", + "UTX4I", + "UTX4N", + "UTX4P", + "UTX5M", + "UTX5V", + "UTX6C", + "UTX7T", + "UTX7U", + "UTX90", + "UTXAH", + "UTXC7", + "UTXC8", + "UTXCL", + "UTXCN", + "UTXCP", + "UTXD0", + "UTXD3", + "UTXHA", + "UTXHB", + "UTXHC", + "UTXHD", + "UTXIC", + "UTXIE", + "UTXIF", + "UTXIH", + "UTXII", + "UTXIR", + "UTXIS" + ], + "Logo": "https://estatico.emisiondof6.com/recorte/m-DP/wpmos/SEXTA", + "HDR": false, + "EsVirtual": false, + "CDN": "tcdn", + "EsSatelite": false, + "QMWatermark": false, + "Upselling": "PKS--1", + "links": [] + }, + "BingeWatchingAction": "none", + "Seguible": false + }, + { + "CodEventoRejilla": 164939542, + "ShowId": 63182874, + "Id": 369485, + "TipoContenido": "Individual", + "CodSubTipoContenido": null, + "SubTipoContenido": null, + "TipoComercial": "Subscripcion", + "TipoEmision": null, + "Ficha": "https://ottcache.dof6.com/movistarplus/webplayer/contents/63182874/details?mediaType=FOTOV&profile=OTT&mode=VODREJILLA&channels=SEXTA&version=8&tlsStream=true&mdrm=true&catalog=events&showNonRated=true", + "TipoComercial2": { + "Tipo": "Subscripcion", + "Descripcion": null + }, + "links": [ + { + "rel": "details", + "href": "https://ottcache.dof6.com/movistarplus/webplayer/contents/63182874/details?mediaType=FOTOV&profile=OTT&mode=VODREJILLA&channels=SEXTA&version=8&tlsStream=true&mdrm=true&catalog=events&showNonRated=true", + "id": 63182874 + }, + { + "rel": "start-over", + "href": "https://grmovistar.imagenio.telefonica.net/asfe/rest/tvMediaURLs?tvProgram.id=63182874&svc=startover", + "state": null + }, + { + "rel": "catch-up", + "href": "https://grmovistar.imagenio.telefonica.net/asfe/rest/tvMediaURLs?tvProgram.id=63182874&svc=cutv", + "state": null + }, + { + "rel": "npvr", + "href": "https://grmovistar.imagenio.telefonica.net/asfe/rest/tvMediaURLs?tvProgram.id=63182874&svc=npvr", + "state": null + }, + { + "rel": "alternate", + "href": "appmovistar://movistarplus.es/ficha?id=369485&referrer=api", + "class": "entryPoint", + "hints": { + "devices": [ + "android.cell", + "iphone", + "amazon.tv" + ] + } + }, + { + "rel": "alternate", + "href": "https://wl.movistarplus.es/ficha/?id=369485&referrer=api", + "class": "entryPoint", + "hints": { + "devices": [ + "web" + ] + } + }, + { + "rel": "alternate", + "href": "https://wl.movistarplus.es/play?id=369485&referrer=api", + "class": "play", + "hints": { + "devices": [ + "web" + ] + } + } + ], + "TiposComerciales": [], + "ContenedorRef": null, + "Directo": false, + "Grabable": true, + "Titulo": "Diablo", + "Estreno": false, + "LenguajeSignos": false, + "Nacionalidad": "Alemania y EE.UU", + "Lanzable": false, + "NivelMoral": { + "_id": "03", + "Id": "+18", + "Logo": "https://voddelivery.emisiondof6.com/images/logos/logos_nivelmoral/18.png" + }, + "Duracion": 135, + "DuracionEnSegundos": 8100, + "GeneroComAntena": "Acción", + "Imagen": "https://estatico.emisiondof6.com/recorte/n/ywcatalogov/MSEXTAT369485", + "Imagenes": [ + { + "id": "default", + "uri": "https://estatico.emisiondof6.com/recorte/n/ywcatalogov/MSEXTAT369485" + }, + { + "id": "vertical", + "uri": "https://estatico.emisiondof6.com/recorte/n/ywcatalogov/MSEXTAT369485" + }, + { + "id": "horizontal", + "uri": "https://estatico.emisiondof6.com/recorte/n/ywcatalogoh/MSEXTAT369485" + }, + { + "id": "watch2tgr-start", + "uri": "https://estatico.emisiondof6.com/recorte/n/vegtooltip/MSEXTAT369485.jpg" + }, + { + "id": "watch2tgr-end", + "uri": "https://estatico.emisiondof6.com/recorte/n/vegend/MSEXTAT369485.jpg" + } + ], + "TituloSerie": null, + "Temporada": null, + "TituloVerLinea1": "Diablo", + "TituloVerLinea2": null, + "TituloHorLinea1": "Diablo", + "TituloAccesible": "Diablo", + "Valoracion": null, + "TituloNormalizado": "diablo", + "RutaNormalizada": null, + "FechaHoraInicio": "1770674400000", + "FechaHoraFin": "1770682500000", + "FechaEmision": "2026-02-09", + "DuracionParrilla": 60, + "DuracionParrillaEnSegundos": 3600, + "FormatoVideo": 1, + "Disponible": true, + "DisponibleVOD": false, + "Canal": { + "CodCadenaTv": "SEXTA", + "Nombre": "La Sexta", + "Uid": 444099, + "CasId": "4526", + "ServiceUid": "717", + "ServiceUid2": "4526", + "ServiceId": 6, + "PuntoReproduccion": "https://lasexta-dash-movistarplus.emisiondof6.com/manifest.mpd", + "Logos": [ + { + "id": "default", + "state": null, + "uri": "https://estatico.emisiondof6.com/recorte/m-DPBLAN/wpmos/SEXTA" + }, + { + "id": "default", + "state": "over", + "uri": "https://estatico.emisiondof6.com/recorte/m-DP/wpmos/SEXTA" + }, + { + "id": "bg_dark", + "state": null, + "uri": "https://estatico.emisiondof6.com/recorte/m-DP/wpepg/SEXTA" + }, + { + "id": "bg_light", + "state": null, + "uri": "https://estatico.emisiondof6.com/recorte/m-DPBLAN/wpepg/SEXTA" + }, + { + "id": "nobox_dark", + "state": null, + "uri": "https://estatico.emisiondof6.com/recorte/m-NEONEGR/wpmarcaficha/SEXTA" + } + ], + "Dial": 6, + "HomeZone": false, + "FormatoAudio": null, + "FormatoVideo": "HD", + "LogoTaquilla": null, + "tvProducts": [ + "BOBFUT2", + "DIFUSION", + "DO0001", + "DO0002", + "DO0003", + "DO0004", + "FUSICE", + "MOVFAM", + "NDDEM2", + "NDDEMO", + "PAQINI", + "PR01H", + "PR01S", + "TRIDIS", + "TVBACH", + "TVBAFU", + "TVBALI", + "TVCOMU", + "UTX00", + "UTX0Y", + "UTX1H", + "UTX1I", + "UTX2A", + "UTX2C", + "UTX2J", + "UTX2N", + "UTX2P", + "UTX2Q", + "UTX2R", + "UTX32", + "UTX37", + "UTX38", + "UTX4I", + "UTX4N", + "UTX4P", + "UTX5M", + "UTX5V", + "UTX6C", + "UTX7T", + "UTX7U", + "UTX90", + "UTXAH", + "UTXC7", + "UTXC8", + "UTXCL", + "UTXCN", + "UTXCP", + "UTXD0", + "UTXD3", + "UTXHA", + "UTXHB", + "UTXHC", + "UTXHD", + "UTXIC", + "UTXIE", + "UTXIF", + "UTXIH", + "UTXII", + "UTXIR", + "UTXIS" + ], + "Logo": "https://estatico.emisiondof6.com/recorte/m-DP/wpmos/SEXTA", + "HDR": false, + "EsVirtual": false, + "CDN": "tcdn", + "EsSatelite": false, + "QMWatermark": false, + "Upselling": "PKS--1", + "links": [] + }, + "BingeWatchingAction": "none", + "Seguible": false + } +] \ No newline at end of file diff --git a/sites/movistarplus.es/__data__/ficha.json b/sites/movistarplus.es/__data__/ficha.json new file mode 100644 index 000000000..c70bd5fc6 --- /dev/null +++ b/sites/movistarplus.es/__data__/ficha.json @@ -0,0 +1,374 @@ +{ + "DatosAccesoAnonimo": { + "TipoEmision": "Pase", + "TipoComercial": "Subscripcion", + "TipoComercial2": { + "Tipo": "Subscripcion", + "Descripcion": null + }, + "Freemium": false, + "TiposComerciales": [ + { + "Tipo": "Subscripcion", + "Descripcion": null + } + ], + "Logos": [ + { + "id": "default", + "state": null, + "uri": "https://estatico.emisiondof6.com/recorte/m-DPBLAN/wpmos/SEXTA" + }, + { + "id": "default", + "state": "over", + "uri": "https://estatico.emisiondof6.com/recorte/m-DP/wpmos/SEXTA" + }, + { + "id": "bg_dark", + "state": null, + "uri": "https://estatico.emisiondof6.com/recorte/m-DP/wpepg/SEXTA" + }, + { + "id": "bg_light", + "state": null, + "uri": "https://estatico.emisiondof6.com/recorte/m-DPBLAN/wpepg/SEXTA" + }, + { + "id": "nobox_dark", + "state": null, + "uri": "https://estatico.emisiondof6.com/recorte/m-NEONEGR/wpmarcaficha/SEXTA" + } + ], + "Precio": null, + "HoraInicio": "1770587100000", + "FechaFinPublicacion": null, + "FormatoVideo": null, + "FormatoAudio": null, + "VersionIdioma": null, + "HoraInicioSaltoCanal": "1770583500000", + "HoraFinSaltoCanal": "1770605100000", + "Subtitulos": [], + "Subtitulos2012": [], + "IndicadorSubtitulosSordos": null + }, + "Id": 4235944, + "SerialId": 63188236, + "TipoContenido": "Episodio", + "CodSubTipoContenido": "E", + "SubTipoContenido": "episodio", + "SubTipoContedor": "temporada", + "TipoComercial": "Subscripcion", + "Titulo": "Especial ARV... (T2026): El análisis", + "catalogItemType": "LiveEpisode", + "TipoComercial2": { + "Tipo": "Subscripcion", + "Descripcion": null + }, + "Contenedor": { + "Id": 4235938, + "Path": "T-4235940|E-4235944", + "TituloSerie": "Especial ARV elecciones Aragón", + "Temporada": "(T2026)", + "Ficha": "https://ottcache.dof6.com/movistarplus/webplayer/contents/4235938/details?mediaType=FOTOV&profile=OTT&mode=VODRU7D&channels=SEXTA&version=8&tlsStream=true&mdrm=true&showNonRated=true", + "Padre": "https://ottcache.dof6.com/movistarplus/webplayer/contents/4235940/details?mediaType=FOTOV&profile=OTT&mode=VODRU7D&version=8&tlsStream=true&mdrm=true&showNonRated=true" + }, + "TituloEpisodio": "El análisis", + "TiposComerciales": [ + { + "Tipo": "Subscripcion", + "Descripcion": null + } + ], + "NumeroEpisodio": "01", + "TituloEpisodioLargo": "T2026 E1 \"El análisis\"", + "TituloVerLinea1": "Especial ARV elecciones Aragón", + "TituloVerLinea2": "T2026 E1", + "Directo": false, + "Estreno": false, + "TituloHorLinea1": "Especial ARV elecciones Aragón", + "TituloHorLinea2": "T2026 E1 \"El análisis\"", + "NivelMoral": null, + "Lanzable": false, + "TituloSeguimiento": "T2026 E1", + "Serie": { + "Id": 4235940, + "SeasonId": 4235940, + "TituloSerie": "Especial ARV elecciones Aragón", + "Temporada": "(T2026)", + "Ficha": "https://ottcache.dof6.com/movistarplus/webplayer/contents/4235940/details?mediaType=FOTOV&profile=OTT&mode=VODRU7D&version=8&tlsStream=true&mdrm=true&showNonRated=true", + "Descargable": false + }, + "ratingLabels": [], + "IdSerie": 4235938, + "Seguible": false, + "OrdenacionDescendente": false, + "Genero": { + "ComAntena": "Política" + }, + "Imagen": "https://estatico.emisiondof6.com/recorte/n/dispficha/MSEXTAP4235944", + "DisponibleVOD": false, + "Imagenes": [ + { + "id": "default", + "uri": "https://estatico.emisiondof6.com/recorte/n/dispficha/MSEXTAP4235944" + }, + { + "id": "horizontal", + "uri": "https://estatico.emisiondof6.com/recorte/n/ywcatalogoh/MSEXTAT4235944" + }, + { + "id": "watch2tgr-start", + "uri": "https://estatico.emisiondof6.com/recorte/n/vegtooltip/MSEXTAF4235944.jpg" + }, + { + "id": "watch2tgr-end", + "uri": "https://estatico.emisiondof6.com/recorte/n/vegend/MSEXTAF4235944.jpg" + } + ], + "Competicion": { + "Fase": null, + "Jornada": null + }, + "Descripcion": "Antonio García Ferreras y Ana Pastor analizan y debaten sobre el recuento y los resultados que arrojen las urnas con analistas como Lluís Orriols, Antonio Maestre, Ignacio Escolar, Pilar Velasco, Santiago Martínez Vares y Pablo Montesinos.", + "Sinopsis": "Antonio García Ferreras y Ana Pastor analizan y debaten sobre el recuento y los resultados que arrojen las urnas con analistas como Lluís Orriols, Antonio Maestre, Ignacio Escolar, Pilar Velasco, Santiago Martínez Vares y Pablo Montesinos.", + "Duracion": 136, + "Nacionalidad": "España", + "Anno": "2026", + "Actores": null, + "Directores": null, + "Descargable": false, + "Valoracion": { + "Valoracion": 2.8, + "Valoraciones": 33 + }, + "TituloNormalizado": "especial-arv-elecciones-aragon-t2026/el-analisis", + "RutaNormalizada": "entretenimiento/especial-arv-elecciones-aragon-t2026/el-analisis", + "Pases": [ + { + "catalogItemType": "LiveEpisode", + "HoraInicio": "1770587100000", + "Duracion": 136, + "HoraInicioSaltoCanal": "1770583500000", + "Grabable": false, + "HoraFinSaltoCanal": "1770605100000", + "TemporadaGrabable": true, + "Canal": { + "CodCadenaTv": "SEXTA", + "Nombre": "La Sexta", + "Uid": 444099, + "CasId": "4526", + "ServiceUid": "717", + "ServiceUid2": "4526", + "ServiceId": 6, + "PuntoReproduccion": "https://lasexta-dash-movistarplus.emisiondof6.com/manifest.mpd", + "Logos": [ + { + "id": "default", + "state": null, + "uri": "https://estatico.emisiondof6.com/recorte/m-DPBLAN/wpmos/SEXTA" + }, + { + "id": "default", + "state": "over", + "uri": "https://estatico.emisiondof6.com/recorte/m-DP/wpmos/SEXTA" + }, + { + "id": "bg_dark", + "state": null, + "uri": "https://estatico.emisiondof6.com/recorte/m-DP/wpepg/SEXTA" + }, + { + "id": "bg_light", + "state": null, + "uri": "https://estatico.emisiondof6.com/recorte/m-DPBLAN/wpepg/SEXTA" + }, + { + "id": "nobox_dark", + "state": null, + "uri": "https://estatico.emisiondof6.com/recorte/m-NEONEGR/wpmarcaficha/SEXTA" + } + ], + "Dial": 6, + "HomeZone": false, + "FormatoAudio": null, + "FormatoVideo": "HD", + "LogoTaquilla": null, + "Logo": "https://estatico.emisiondof6.com/recorte/m-DP/wpmos/SEXTA", + "HDR": false, + "EsVirtual": false, + "CDN": "tcdn", + "EsSatelite": false, + "QMWatermark": false, + "links": [] + }, + "Fase": null, + "CodEventoRejilla": null, + "ShowId": 63188242, + "SerialId": 63188236, + "tvProducts": [ + "BOBFUT2", + "DIFUSION", + "DO0001", + "DO0002", + "DO0003", + "DO0004", + "FUSICE", + "MOVFAM", + "NDDEM2", + "NDDEMO", + "PAQINI", + "PR01H", + "PR01S", + "TRIDIS", + "TVBACH", + "TVBAFU", + "TVBALI", + "TVCOMU", + "UTX00", + "UTX0Y", + "UTX1H", + "UTX1I", + "UTX2A", + "UTX2C", + "UTX2J", + "UTX2N", + "UTX2P", + "UTX2Q", + "UTX2R", + "UTX32", + "UTX37", + "UTX38", + "UTX4I", + "UTX4N", + "UTX4P", + "UTX5M", + "UTX5V", + "UTX6C", + "UTX7T", + "UTX7U", + "UTX90", + "UTXAH", + "UTXC7", + "UTXC8", + "UTXCL", + "UTXCN", + "UTXCP", + "UTXD0", + "UTXD3", + "UTXHA", + "UTXHB", + "UTXHC", + "UTXHD", + "UTXIC", + "UTXIE", + "UTXIF", + "UTXIH", + "UTXII", + "UTXIR", + "UTXIS" + ], + "BlackOutU7D": false, + "links": [ + { + "rel": "start-over", + "href": "https://grmovistar.imagenio.telefonica.net/asfe/rest/tvMediaURLs?tvProgram.id=63188242&svc=startover", + "state": null + }, + { + "rel": "catch-up", + "href": "https://grmovistar.imagenio.telefonica.net/asfe/rest/tvMediaURLs?tvProgram.id=63188242&svc=cutv", + "state": null + }, + { + "rel": "npvr", + "href": "https://grmovistar.imagenio.telefonica.net/asfe/rest/tvMediaURLs?tvProgram.id=63188242&svc=npvr", + "state": null + } + ] + } + ], + "LenguajeSignos": false, + "Upselling": "PKS--1", + "audioDescription": { + "available": false, + "audios": [] + }, + "Trailers": [], + "Eventos": [], + "BingeWatchingAction": "none", + "StreamTag": false, + "VodItems": [], + "OpcionesFavoritos": [ + { + "Id": 63188236, + "Family": "tv", + "Texto": "TEMPORADA" + } + ], + "links": [ + { + "rel": "mas_info", + "href": "https://estatico.emisiondof6.com/ficha/especial-arv-elecciones-aragon-t2026/el-analisis/?tipo=E&id=4235944" + }, + { + "rel": "ver_ahora", + "href": "https://ver.movistarplus.es/ficha/especial-arv-elecciones-aragon-t2026/el-analisis/?id=4235944" + }, + { + "rel": "shows", + "href": "/movistarplus/contents/4235944/shows" + }, + { + "rel": "alternate", + "href": "appmovistar://movistarplus.es/ficha?id=4235944&referrer=api", + "class": "entryPoint", + "hints": { + "devices": [ + "android.cell", + "iphone", + "amazon.tv" + ] + } + }, + { + "rel": "alternate", + "href": "https://wl.movistarplus.es/ficha/?id=4235944&referrer=api", + "class": "entryPoint", + "hints": { + "devices": [ + "web" + ] + } + }, + { + "rel": "alternate", + "href": "https://wl.movistarplus.es/play?id=4235944&referrer=api", + "class": "play", + "hints": { + "devices": [ + "web" + ] + } + }, + { + "rel": "untrack2", + "href": "https://grmovistar.imagenio.telefonica.net/asfe/rest/users/bookmarks/vod/4235944", + "hints": { + "allow": [ + "DELETE" + ], + "auth-req": [ + { + "scheme": "asmgr" + } + ] + } + }, + { + "rel": "self", + "href": "https://ottcache.dof6.com/movistarplus/webplayer/contents/63188242/details?mediaType=FOTOV&profile=OTT&mode=U7D2&channels=SEXTA&version=8&tlsStream=true&mdrm=true&catalog=catchup&showNonRated=true", + "id": 63188236 + } + ] +} \ No newline at end of file diff --git a/sites/movistarplus.es/__data__/ficha2.json b/sites/movistarplus.es/__data__/ficha2.json new file mode 100644 index 000000000..a93a01365 --- /dev/null +++ b/sites/movistarplus.es/__data__/ficha2.json @@ -0,0 +1,378 @@ +{ + "DatosAccesoAnonimo": { + "TipoEmision": "Pase", + "TipoComercial": "Subscripcion", + "TipoComercial2": { + "Tipo": "Subscripcion", + "Descripcion": null + }, + "Freemium": false, + "TiposComerciales": [ + { + "Tipo": "Subscripcion", + "Descripcion": null + } + ], + "Logos": [ + { + "id": "default", + "state": null, + "uri": "https://estatico.emisiondof6.com/recorte/m-DPBLAN/wpmos/SEXTA" + }, + { + "id": "default", + "state": "over", + "uri": "https://estatico.emisiondof6.com/recorte/m-DP/wpmos/SEXTA" + }, + { + "id": "bg_dark", + "state": null, + "uri": "https://estatico.emisiondof6.com/recorte/m-DP/wpepg/SEXTA" + }, + { + "id": "bg_light", + "state": null, + "uri": "https://estatico.emisiondof6.com/recorte/m-DPBLAN/wpepg/SEXTA" + }, + { + "id": "nobox_dark", + "state": null, + "uri": "https://estatico.emisiondof6.com/recorte/m-NEONEGR/wpmarcaficha/SEXTA" + } + ], + "Precio": null, + "HoraInicio": "1770669060000", + "FechaFinPublicacion": null, + "FormatoVideo": null, + "FormatoAudio": null, + "VersionIdioma": null, + "HoraInicioSaltoCanal": "1770665460000", + "HoraFinSaltoCanal": "1770687060000", + "Subtitulos": [], + "Subtitulos2012": [], + "IndicadorSubtitulosSordos": null + }, + "Id": 4236939, + "SerialId": 62244130, + "TipoContenido": "Episodio", + "CodSubTipoContenido": "E", + "SubTipoContenido": "episodio", + "SubTipoContedor": "temporada", + "TipoComercial": "Subscripcion", + "Titulo": "El intermedio (T20): Ep.624", + "catalogItemType": "LiveEpisode", + "TipoComercial2": { + "Tipo": "Subscripcion", + "Descripcion": null + }, + "Contenedor": { + "Id": 901510, + "Path": "T-4105626|E-4236939", + "TituloSerie": "El intermedio", + "Temporada": "(T20)", + "Ficha": "https://ottcache.dof6.com/movistarplus/webplayer/contents/901510/details?mediaType=FOTOV&profile=OTT&mode=VODRU7D&channels=SEXTA&version=8&tlsStream=true&mdrm=true&showNonRated=true", + "Padre": "https://ottcache.dof6.com/movistarplus/webplayer/contents/4105626/details?mediaType=FOTOV&profile=OTT&mode=VODRU7D&version=8&tlsStream=true&mdrm=true&showNonRated=true" + }, + "TituloEpisodio": "Episodio 624", + "TiposComerciales": [ + { + "Tipo": "Subscripcion", + "Descripcion": null + } + ], + "NumeroEpisodio": "624", + "TituloEpisodioLargo": "T20 E624 \"Episodio 624\"", + "TituloVerLinea1": "El intermedio", + "TituloVerLinea2": "T20 E624", + "Directo": false, + "Estreno": false, + "TituloHorLinea1": "El intermedio", + "TituloHorLinea2": "T20 E624 \"Episodio 624\"", + "NivelMoral": { + "_id": "08", + "Id": "+12", + "Logo": "https://voddelivery.emisiondof6.com/images/logos/logos_nivelmoral/12.png" + }, + "Lanzable": false, + "TituloSeguimiento": "T20 E624", + "Serie": { + "Id": 4105626, + "SeasonId": 4105626, + "TituloSerie": "El intermedio", + "Temporada": "(T20)", + "Ficha": "https://ottcache.dof6.com/movistarplus/webplayer/contents/4105626/details?mediaType=FOTOV&profile=OTT&mode=VODRU7D&version=8&tlsStream=true&mdrm=true&showNonRated=true", + "Descargable": false + }, + "ratingLabels": [], + "IdSerie": 901510, + "Seguible": false, + "OrdenacionDescendente": false, + "Genero": { + "ComAntena": "Humor" + }, + "Imagen": "https://estatico.emisiondof6.com/recorte/n/dispficha/MSEXTAP4236939", + "DisponibleVOD": false, + "Imagenes": [ + { + "id": "default", + "uri": "https://estatico.emisiondof6.com/recorte/n/dispficha/MSEXTAP4236939" + }, + { + "id": "horizontal", + "uri": "https://estatico.emisiondof6.com/recorte/n/ywcatalogoh/MSEXTAT4236939" + }, + { + "id": "watch2tgr-start", + "uri": "https://estatico.emisiondof6.com/recorte/n/vegtooltip/MSEXTAF4236939.jpg" + }, + { + "id": "watch2tgr-end", + "uri": "https://estatico.emisiondof6.com/recorte/n/vegend/MSEXTAF4236939.jpg" + } + ], + "Competicion": { + "Fase": null, + "Jornada": null + }, + "Descripcion": "El Gran Wyoming, con la ayuda de sus colaboradores, analiza en clave de humor las noticias más importantes del día. El sello inconfundible del cómico sirve para completar la información desde un punto de vista más distendido e irónico.", + "Sinopsis": "El Gran Wyoming, con la ayuda de sus colaboradores, analiza en clave de humor las noticias más importantes del día. El sello inconfundible del cómico sirve para completar la información desde un punto de vista más distendido e irónico.", + "Duracion": 93, + "Nacionalidad": "España", + "Anno": "2025", + "Actores": null, + "Directores": null, + "Descargable": false, + "Valoracion": { + "Valoracion": 3, + "Valoraciones": 30 + }, + "TituloNormalizado": "el-intermedio-t20/episodio-624", + "RutaNormalizada": "entretenimiento/el-intermedio-t20/episodio-624", + "Pases": [ + { + "catalogItemType": "LiveEpisode", + "HoraInicio": "1770669060000", + "Duracion": 93, + "HoraInicioSaltoCanal": "1770665460000", + "Grabable": false, + "HoraFinSaltoCanal": "1770687060000", + "TemporadaGrabable": true, + "Canal": { + "CodCadenaTv": "SEXTA", + "Nombre": "La Sexta", + "Uid": 444099, + "CasId": "4526", + "ServiceUid": "717", + "ServiceUid2": "4526", + "ServiceId": 6, + "PuntoReproduccion": "https://lasexta-dash-movistarplus.emisiondof6.com/manifest.mpd", + "Logos": [ + { + "id": "default", + "state": null, + "uri": "https://estatico.emisiondof6.com/recorte/m-DPBLAN/wpmos/SEXTA" + }, + { + "id": "default", + "state": "over", + "uri": "https://estatico.emisiondof6.com/recorte/m-DP/wpmos/SEXTA" + }, + { + "id": "bg_dark", + "state": null, + "uri": "https://estatico.emisiondof6.com/recorte/m-DP/wpepg/SEXTA" + }, + { + "id": "bg_light", + "state": null, + "uri": "https://estatico.emisiondof6.com/recorte/m-DPBLAN/wpepg/SEXTA" + }, + { + "id": "nobox_dark", + "state": null, + "uri": "https://estatico.emisiondof6.com/recorte/m-NEONEGR/wpmarcaficha/SEXTA" + } + ], + "Dial": 6, + "HomeZone": false, + "FormatoAudio": null, + "FormatoVideo": "HD", + "LogoTaquilla": null, + "Logo": "https://estatico.emisiondof6.com/recorte/m-DP/wpmos/SEXTA", + "HDR": false, + "EsVirtual": false, + "CDN": "tcdn", + "EsSatelite": false, + "QMWatermark": false, + "links": [] + }, + "Fase": null, + "CodEventoRejilla": null, + "ShowId": 63182873, + "SerialId": 62244130, + "tvProducts": [ + "BOBFUT2", + "DIFUSION", + "DO0001", + "DO0002", + "DO0003", + "DO0004", + "FUSICE", + "MOVFAM", + "NDDEM2", + "NDDEMO", + "PAQINI", + "PR01H", + "PR01S", + "TRIDIS", + "TVBACH", + "TVBAFU", + "TVBALI", + "TVCOMU", + "UTX00", + "UTX0Y", + "UTX1H", + "UTX1I", + "UTX2A", + "UTX2C", + "UTX2J", + "UTX2N", + "UTX2P", + "UTX2Q", + "UTX2R", + "UTX32", + "UTX37", + "UTX38", + "UTX4I", + "UTX4N", + "UTX4P", + "UTX5M", + "UTX5V", + "UTX6C", + "UTX7T", + "UTX7U", + "UTX90", + "UTXAH", + "UTXC7", + "UTXC8", + "UTXCL", + "UTXCN", + "UTXCP", + "UTXD0", + "UTXD3", + "UTXHA", + "UTXHB", + "UTXHC", + "UTXHD", + "UTXIC", + "UTXIE", + "UTXIF", + "UTXIH", + "UTXII", + "UTXIR", + "UTXIS" + ], + "BlackOutU7D": false, + "links": [ + { + "rel": "start-over", + "href": "https://grmovistar.imagenio.telefonica.net/asfe/rest/tvMediaURLs?tvProgram.id=63182873&svc=startover", + "state": null + }, + { + "rel": "catch-up", + "href": "https://grmovistar.imagenio.telefonica.net/asfe/rest/tvMediaURLs?tvProgram.id=63182873&svc=cutv", + "state": null + }, + { + "rel": "npvr", + "href": "https://grmovistar.imagenio.telefonica.net/asfe/rest/tvMediaURLs?tvProgram.id=63182873&svc=npvr", + "state": null + } + ] + } + ], + "LenguajeSignos": false, + "Upselling": "PKS--1", + "audioDescription": { + "available": false, + "audios": [] + }, + "Trailers": [], + "Eventos": [], + "BingeWatchingAction": "none", + "StreamTag": false, + "VodItems": [], + "OpcionesFavoritos": [ + { + "Id": 62244130, + "Family": "tv", + "Texto": "TEMPORADA" + } + ], + "links": [ + { + "rel": "mas_info", + "href": "https://estatico.emisiondof6.com/ficha/el-intermedio-t20/episodio-624/?tipo=E&id=4236939" + }, + { + "rel": "ver_ahora", + "href": "https://ver.movistarplus.es/ficha/el-intermedio-t20/episodio-624/?id=4236939" + }, + { + "rel": "shows", + "href": "/movistarplus/contents/4236939/shows" + }, + { + "rel": "alternate", + "href": "appmovistar://movistarplus.es/ficha?id=4236939&referrer=api", + "class": "entryPoint", + "hints": { + "devices": [ + "android.cell", + "iphone", + "amazon.tv" + ] + } + }, + { + "rel": "alternate", + "href": "https://wl.movistarplus.es/ficha/?id=4236939&referrer=api", + "class": "entryPoint", + "hints": { + "devices": [ + "web" + ] + } + }, + { + "rel": "alternate", + "href": "https://wl.movistarplus.es/play?id=4236939&referrer=api", + "class": "play", + "hints": { + "devices": [ + "web" + ] + } + }, + { + "rel": "untrack2", + "href": "https://grmovistar.imagenio.telefonica.net/asfe/rest/users/bookmarks/rec/63182873", + "hints": { + "allow": [ + "DELETE" + ], + "auth-req": [ + { + "scheme": "asmgr" + } + ] + } + }, + { + "rel": "self", + "href": "https://ottcache.dof6.com/movistarplus/webplayer/contents/63182873/details?mediaType=FOTOV&profile=OTT&mode=VODREJILLA&channels=SEXTA&version=8&tlsStream=true&mdrm=true&catalog=events&showNonRated=true", + "id": 63182873 + } + ] +} \ No newline at end of file diff --git a/sites/movistarplus.es/movistarplus.es.channels.xml b/sites/movistarplus.es/movistarplus.es.channels.xml index da1ec989d..fcf47a970 100644 --- a/sites/movistarplus.es/movistarplus.es.channels.xml +++ b/sites/movistarplus.es/movistarplus.es.channels.xml @@ -1,181 +1,141 @@ - 7 TV Región Murcia - TRECE - 24 Horas - 3 24 - Antena 3 - Al Jazeera English - Andalucía TV - Canal Sur Andalucía - À Punt - Aragón TV Int - Aragón TV - Arirang TV HD - M+ Deportes 2 - Atreseries - AXN - Baby TV - BBC World - BBC Drama - BBC Food - BBC Top Gear - BBC History - BE MAD - Bloomberg - Boing - Betevé - Cuatro - SX3 - 33 - TV Canaria - Canal Sur - Castilla la Mancha TV - Caza y Pesca - CGTN Español - CGTN Documentary - CGTN Documentary HD - CGTN English HD - CGTN Français HD - M+ Liga de Campeones 2 - M+ Liga de Campeones 3 - M+ Liga de Campeones 4 - M+ Liga de Campeones 5 - M+ Liga de Campeones 6 - M+ Liga de Campeones 7 - M+ Liga de Campeones 8 - M+ Liga de Campeones 9 - M+ Liga de Campeones 10 - M+ Liga de Campeones 11 - M+ Liga de Campeones 12 - M+ Liga de Campeones 13 - M+ Liga de Campeones - TV Chile - Calle 13 - Clan TVE - Classica - CNN Int - TV Colombia - COSMO - M+ Acción - M+ Drama - M+ Comedia - M+ Deportes - Canal Sur HD - Cubavisión - La 7 - Daystar Español HD - DAZN 3 - DAZN 4 - DAZN LALIGA 2 - DAZN LALIGA - M+ Cine Español - Disney Channel - Discovery - DMAX - Divinity - DKISS - Dreamworks - Energy - Euronews - Eurosport 1 - Eurosport 2 - Esport 3 - Eurosport 4K - EITB Basque - ETB 1 - ETB 2 - ETB 3 - EWTN - Canal Extremadura - Canal Extremadura Sat - Factoría de Ficción - STAR Channel - FRANCE24 (FR) - Canal Fútbol Replay - Canal de las Estrellas - El Garage TV - GOL PLAY - M+ Golf 2 - M+ Golf - Alquiler HD - IB3 - Iberalia TV - El Toro TV - 1+1 Internacional - LA 2 - DAZN 1 - DAZN 2 - Max Avances - M+E: Demi Moore - M+ Clásicos - M+ Copa del Rey - M+ Documentales - La Ocho TV - Mega - M+ Ellas V - Mezzo Live - Mezzo - M+ Los Goya - M+ Indie - M+ LALIGA TV 2 - M+ LALIGA TV 3 - M+ LALIGA TV 4 - M+ LALIGA TV - LALIGA TV HYPERMOTION - LALIGA TV HYPERMOTION 2 - LALIGA TV HYPERMOTION 3 - M+ LALIGA TV UHD - M+ Originales - Movistar Plus+ - Movistar Plus+ 2 - MTV - M+ Deportes 7 - M+ Deportes 6 - M+ Cine - M+ Series - DAZN F1 - National Geographic - Nat Geo Wild - Navarra TV - CNBC - Negocios TV - Neox - Nickelodeon - NICK JR - Nova - La Otra - Paramount Network - Comedy Central - Disney Junior - Real Madrid TV - La Resistencia - SYFY - AXN Movies - La Sexta - Sky News - SkyShowtime 1 - Telecinco - TCM - Teledeporte - Telemadrid - Telemadrid Int. - Ten - Telesur - Warner TV - TPA - Alquiler 1 - TV3 - TV5MONDE - TV3 Cat - LA 1 - TVG Europa - TVG 2 - TVG -TV Galicia - Ubeat - M+ Deportes 3 - M+ Deportes 4 - M+ Deportes 5 - M+ Vamos - MTV 00s + TRECE + 24 Horas + Antena 3 + Al Jazeera English + Canal Sur Andalucía + Aragón TV Int + M+ Deportes 2 + Atreseries + AXN + Baby TV + BBC News + BBC Earth + BBC Lifestyle + BBC Series + BBC Food + BBC Top Gear + BBC History + BE MAD + Bloomberg + Boing + Cuatro + Caza y Pesca + CGTN Español + M+ Liga de Campeones 2 + M+ Liga de Campeones 3 + M+ Liga de Campeones 4 + M+ Liga de Campeones 5 + M+ Liga de Campeones 6 + M+ Liga de Campeones 7 + M+ Liga de Campeones 8 + M+ Liga de Campeones 9 + M+ Liga de Campeones 10 + M+ Liga de Campeones 11 + M+ Liga de Campeones 12 + M+ Liga de Campeones 13 + M+ Liga de Campeones + Calle 13 + Clan TVE + Classica + CNN Int + COSMO + M+ Acción + M+ Drama + M+ Comedia + M+ Deportes + DAZN Baloncesto 2 + DAZN Baloncesto 3 + DAZN Baloncesto + DAZN 3 + DAZN 4 + DAZN LALIGA 2 + DAZN LALIGA + M+ Cine Español + Discovery + DMAX + Divinity + DKISS + Dreamworks + Energy + Euronews + Eurosport 1 + Eurosport 2 + EITB Basque + Canal Extremadura Sat + Factoría de Ficción + Canal FlixOlé 1 + Canal FlixOlé 2 + STAR Channel + FRANCE24 (FR) + El Garage TV + GOL + M+ Golf 2 + M+ Golf + El Toro TV + 1+1 Internacional + LA 2 + DAZN 1 + DAZN 2 + HBO Max Avances + M+ Cine bélico + M+ Clásicos + Primera Federación + M+ Documentales + Mega + M+ Ellas V + Mezzo Live + Mezzo + M+ Hits + M+ Indie + M+ LALIGA 2 + M+ LALIGA 3 + M+ LALIGA 4 + M+ LALIGA + LALIGA TV HYPERMOTION + LALIGA TV HYPERMOTION 2 + LALIGA TV HYPERMOTION 3 + M+ Originales + Movistar Plus+ + MTV + M+ Deportes 7 + M+ Deportes 6 + M+ Deportes 8 + M+ Estrenos + DAZN F1 + National Geographic + Nat Geo Wild + CNBC + Negocios TV + Neox + Nickelodeon + NICK JR + Nova + Comedy Central + Disney Junior + Real Madrid TV + SYFY + AXN Movies + La Sexta + SkyShowtime 1 + Squirrel + Telecinco + TCM + Teledeporte + Telemadrid Int. + Ten + Warner TV + TV5MONDE + TV3 Cat + LA 1 + TVG Europa + Ubeat + UCL + M+ Deportes 3 + M+ Deportes 4 + M+ Deportes 5 + M+ Vamos 2 + M+ Vamos + Veo7 diff --git a/sites/movistarplus.es/movistarplus.es.config.js b/sites/movistarplus.es/movistarplus.es.config.js index 00930b959..eac40b510 100644 --- a/sites/movistarplus.es/movistarplus.es.config.js +++ b/sites/movistarplus.es/movistarplus.es.config.js @@ -1,17 +1,16 @@ const axios = require('axios') -const cheerio = require('cheerio') const dayjs = require('dayjs') -const utc = require('dayjs/plugin/utc') const timezone = require('dayjs/plugin/timezone') - +const utc = require('dayjs/plugin/utc') dayjs.extend(utc) dayjs.extend(timezone) +dayjs.tz.setDefault('Europe/Madrid') module.exports = { site: 'movistarplus.es', days: 2, url({ channel, date }) { - return `https://www.movistarplus.es/programacion-tv/${channel.site_id}/${date.format('YYYY-MM-DD')}` + return `https://ottcache.dof6.com/movistarplus/webplayer/OTT/epg?from=${date.format('YYYY-MM-DDTHH:mm:ss')}&span=1&channel=${channel.site_id}&version=8&mdrm=true&tlsstream=true&demarcation=18` }, request: { headers: { @@ -23,122 +22,82 @@ module.exports = { }, maxRedirects: 5 }, - async parser({ content, date }) { + async parser({ content }) { let programs = [] - const $ = cheerio.load(content) - - const programDivs = $('div[id^="ele-"]').toArray() - - for (let i = 0; i < programDivs.length; i++) { - const el = $(programDivs[i]) - - const title = el.find('li.title').text().trim() - if (!title) continue - - const timeText = el.find('li.time').text().trim() - if (!timeText) continue - - const [hours, minutes] = timeText.split(':').map(h => parseInt(h, 10)) - - // Parse time in Spain timezone (Europe/Madrid) - let startDate = dayjs.tz( - `${date.format('YYYY-MM-DD')} ${hours.toString().padStart(2, '0')}:${minutes.toString().padStart(2, '0')}`, - 'YYYY-MM-DD HH:mm', - 'Europe/Madrid' - ) - - // If the time is in early morning (before 5 AM), it's the next day - if (hours < 5) { - startDate = startDate.add(1, 'day') - } - - // Calculate end time from next program's start time - let endDate - if (i < programDivs.length - 1) { - const nextEl = $(programDivs[i + 1]) - const nextTimeText = nextEl.find('li.time').text().trim() - if (nextTimeText) { - const [nextHours, nextMinutes] = nextTimeText.split(':').map(h => parseInt(h, 10)) - endDate = dayjs.tz( - `${date.format('YYYY-MM-DD')} ${nextHours.toString().padStart(2, '0')}:${nextMinutes.toString().padStart(2, '0')}`, - 'YYYY-MM-DD HH:mm', - 'Europe/Madrid' - ) - - // If the next time is in early morning (before 5 AM), it's the next day - if (nextHours < 5) { - endDate = endDate.add(1, 'day') - } - - // If end time is still before or same as start time, add another day - if (endDate.isBefore(startDate) || endDate.isSame(startDate)) { - endDate = endDate.add(1, 'day') - } - } - } - - // If no end time, use start of next day - if (!endDate) { - endDate = startDate.add(1, 'day').startOf('day') - } - - const programLink = el.find('a').attr('href') - let description = null - - if (programLink) { - description = await getProgramDescription(programLink).catch(() => null) - } + let items = await parseItems(content) + if (!items.length) return programs + items.forEach(el => { programs.push({ - title, - description, - start: startDate, - stop: endDate + title: el.title, + description: el.description, + season: el.season, + episode: el.episode, + start: el.start, + stop: el.stop + }) }) - } - return programs + }, async channels() { - const html = await axios - .get('https://www.movistarplus.es/programacion-tv', { - headers: { - 'User-Agent': - 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36', - Accept: 'text/html,application/xhtml+xml,application/xml;q=0.9,image/webp,*/*;q=0.8' - } - }) + const json = await axios + .get('https://ottcache.dof6.com/movistarplus/webplayer/OTT/contents/channels?mdrm=true&tlsstream=true&demarcation=18&version=8') .then(r => r.data) .catch(console.log) - const $ = cheerio.load(html) - let scheme = $('script:contains(ItemList)').html() - scheme = JSON.parse(scheme) - - return scheme.itemListElement.map(el => { - const urlParts = el.item.url.split('/') - const site_id = urlParts.pop().toLowerCase() - + // Load JSON, CodCadenaTv is the closest to the old MVSTR site ch. ID + return json.map(channel => { return { lang: 'es', - name: el.item.name, - site_id + site_id: channel.CodCadenaTv, + name: channel.Nombre, + logo: channel.Logo ? channel.Logos[0].url : null } }) } } -async function getProgramDescription(programUrl) { - const response = await axios.get(programUrl, { - headers: { - 'User-Agent': - 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36', - Referer: 'https://www.movistarplus.es/programacion-tv/' - } - }) - - const $ = cheerio.load(response.data) - const description = $('.show-content .text p').first().text().trim() || null - - return description +async function parseItems(content) { + try { + const data = JSON.parse(content) + const programs = Array.isArray(data) ? data : [data] + return await Promise.all(programs.map(async (json) => { + const start = dayjs.utc(Number(json?.FechaHoraInicio)) + const stop = dayjs.utc(Number(json?.FechaHoraFin)) + const ficha = json?.Ficha || null + if (!ficha) { + return { + title: json?.Titulo || '', + description: json?.Resena || '', + start, + stop + } + } else { + try { + const fichaJson = await axios.get(ficha).then(r => r.data) + return { + title: json?.Titulo || fichaJson?.Titulo || '', + description: fichaJson?.Descripcion || json?.Resena || '', + actors: fichaJson?.Actores || [], + directors: fichaJson?.Directores || [], + classification: fichaJson?.Clasificacion || '', + season: fichaJson?.Temporada || null, + episode: fichaJson?.NumeroEpisodio || null, + start, + stop + } + } catch { + return { + title: json?.Titulo || '', + description: json?.Resena || '', + start, + stop + } + } + } + })) + } catch { + return [] + } } diff --git a/sites/movistarplus.es/movistarplus.es.test.js b/sites/movistarplus.es/movistarplus.es.test.js index 2e288d15f..b6b082ab8 100644 --- a/sites/movistarplus.es/movistarplus.es.test.js +++ b/sites/movistarplus.es/movistarplus.es.test.js @@ -9,7 +9,7 @@ dayjs.extend(utc) const axios = require('axios') jest.mock('axios') -const date = dayjs.utc('2025-05-30', 'YYYY-MM-DD').startOf('d') +const date = dayjs.utc('2026-02-09', 'YYYY-MM-DD').startOf('d') const channel = { site_id: 'sexta', xmltv_id: 'LaSexta.es' @@ -17,32 +17,31 @@ const channel = { it('can generate valid url', () => { expect(url({ channel, date })).toBe( - 'https://www.movistarplus.es/programacion-tv/sexta/2025-05-30' + 'https://ottcache.dof6.com/movistarplus/webplayer/OTT/epg?from=2026-02-09T00:00:00&span=1&channel=sexta&version=8&mdrm=true&tlsstream=true&demarcation=18' ) }) it('can parse response', async () => { - const content = fs.readFileSync(path.resolve(__dirname, '__data__/content.html')) + const content = fs.readFileSync(path.resolve(__dirname, '__data__/content.json'), 'utf8') + // Ficha for both results axios.get.mockImplementation(url => { if ( url === - 'https://www.movistarplus.es/entretenimiento/venta-prime-t1/ficha?tipo=E&id=3414523' + 'https://ottcache.dof6.com/movistarplus/webplayer/contents/63188242/details?mediaType=FOTOV&profile=OTT&mode=U7D2&channels=SEXTA&version=8&tlsStream=true&mdrm=true&catalog=catchup&showNonRated=true' ) { return Promise.resolve({ - data: fs.readFileSync(path.resolve(__dirname, '__data__/program1.html')) + data: JSON.parse(fs.readFileSync(path.resolve(__dirname, '__data__/ficha.json'), 'utf8')) }) } else if ( - url === - 'https://www.movistarplus.es/deportes/programa/pokerstars-casino-1/ficha?tipo=E&id=2057641' + url === 'https://ottcache.dof6.com/movistarplus/webplayer/contents/63182873/details?mediaType=FOTOV&profile=OTT&mode=VODREJILLA&channels=SEXTA&version=8&tlsStream=true&mdrm=true&catalog=events&showNonRated=true' ) { return Promise.resolve({ - data: fs.readFileSync(path.resolve(__dirname, '__data__/program2.html')) + data: JSON.parse(fs.readFileSync(path.resolve(__dirname, '__data__/ficha2.json'), 'utf8')) }) - } else { - return Promise.resolve({ data: '' }) } }) + let results = await parser({ content, date }) results = results.map(p => { @@ -51,20 +50,18 @@ it('can parse response', async () => { return p }) - expect(results.length).toBe(23) + expect(results.length).toBe(21) expect(results[0]).toMatchObject({ - start: '2025-05-30T03:15:00.000Z', - stop: '2025-05-30T04:25:00.000Z', - title: 'Venta Prime', - description: - 'Espacio de televenta.' + start: '2026-02-08T21:45:00.000Z', + stop: '2026-02-09T00:30:00.000Z', + title: 'Especial ARV elecciones Aragón', + description: 'Antonio García Ferreras y Ana Pastor analizan y debaten sobre el recuento y los resultados que arrojen las urnas con analistas como Lluís Orriols, Antonio Maestre, Ignacio Escolar, Pilar Velasco, Santiago Martínez Vares y Pablo Montesinos.' }) expect(results[19]).toMatchObject({ - start: '2025-05-31T00:45:00.000Z', - stop: '2025-05-31T01:25:00.000Z', - title: 'Pokerstars casino', - description: - 'El programa trae cada día toda la emoción de su ruleta en vivo, Spin & Win, una versión exclusiva del clásico juego de casino.' + start: '2026-02-09T20:30:00.000Z', + stop: '2026-02-09T22:00:00.000Z', + title: 'El intermedio', + description: 'El Gran Wyoming, con la ayuda de sus colaboradores, analiza en clave de humor las noticias más importantes del día. El sello inconfundible del cómico sirve para completar la información desde un punto de vista más distendido e irónico.' }) }) diff --git a/sites/programme-tv.net/programme-tv.net.channels.xml b/sites/programme-tv.net/programme-tv.net.channels.xml index c4f9d5980..dc531120f 100644 --- a/sites/programme-tv.net/programme-tv.net.channels.xml +++ b/sites/programme-tv.net/programme-tv.net.channels.xml @@ -1,30 +1,148 @@ + RTL Télévision + 01TV 3Sat - 6ter 8 Mont-Blanc - 13eme RUE 20 minutes TV + ABXPLORE + Africa 24 + ARD Alpha + Astrocenter TV HD + BBC World News + BBlack + BE 1 + Be Ciné + Be Séries + BFM Alsace + BFM Cote dAzur + BFM DICI Alpes du Sud + BFM DICI Haute-Provence + BFM Grand Lille + BFM Grand Littoral + BFM Marseille + BFM Var + BFMTV + Bloomberg + BR Fernsehen + Canal 32 + Canal partagé TNT Ile-de-France + Canal Z + Canal+ Box Office + Canal+ Cinéma + Canal+ Foot + Canal+ Ligue 1 + Canal+ Live 1 + Canal+ Live 2 + Canal+ Live 3 + Canal+ Sport 360 + Canvas + Cartoonito + Ciné+ Famiz + Club RTL + CSTAR Hits France + Demain TV + Discovery Investigation + Disney Channel +1 + Disney Channel Wallonia + Disney+ + Dorcel TV + Dorcel XXX + één + Franceinfo + Gong + Gong Max + HR Fernsehen + KIKA + La Chaîne normande + La Trois + LM TV Sarthe + Lucky Jack + Luxe TV + Maritima TV + MDR Fernsehen + Men's UP + MGG TV + Mosaïk Cristal + Moselle TV + Museum TV + NDR FERNSEHEN + Nickelodéon +1 + Nickelodéon Wallonia + NoA + NOVO19 + Olympia TV + One + PHOENIX + Planète+ Aventure Expérience + Play5 + Plug RTL + Pro7 + ProSieben + Proximus 11 + RMC Life + RMC Sport Access 1 + RMC Sport Live 3 + RMC Sport Live 4 + RSI LA 1 + RSI LA 2 + RT France + RTL ZWEI + SAT.1 + Skynews + Sport en France + SRF 1 + SRF 2 + Stingray Classica + Stingray Festival 4K + Super RTL + SWR + T18 + Tagesschau24 + Tébéo + TébéSud + Télé Grenoble Isère + Télénantes + TéléToon+1 + TF1+1 + TLC France + TMC+1 + TNTV France + Trace Caribbean + Trace Latina + TV7 Bordeaux + TV Tours + TVMonaco + TVPI + TVR Rennes 35 Bretagne + TVSUD Montpellier + TVSUD Nîmes + Vixen TV + VOOsport World 1 + VOOsport World 2 + Vosges Télévision + VOX + VTM2 + VTM3 + VTM4 + Warner TV Next + WDR + ZDF INFO + ZDF NEO + 6ter + 13eme RUE AB 1 AB 3 - ABXPLORE Action - Africa 24 Al Jazeera English Animaux A+ International France Arte Automoto - B.One Baby TV BBC4 BBC 1 BBC 2 - BBC Entertainment - BBlack - BE 1 - Be Ciné - Be Séries beIN SPORTS 1 beIN SPORTS 2 beIN SPORTS 3 @@ -35,69 +153,35 @@ beIN SPORTS MAX 8 beIN SPORTS MAX 9 beIN SPORTS MAX 10 - BET - BFM Alsace BFM Business - BFM DICI Alpes du Sud - BFM DICI Haute-Provence - BFM Grand Lille BFM Lyon Métropole - BFM Paris - BFMTV - Bloomberg - Boing + B.One Boomerang - C8 - Canal 32 Canal J - Canal partagé TNT Ile-de-France - Canal Z Canal+ - Canal+ Box Office - Canal+ Cinéma - Canal+ Décalé Canal+ Docs - Canal+ Foot - Canal+ Formula 1 Canal+ Grand Ecran Canal+ KIDS - Canal+ Ligue 1 - Canal+ Moto GP Canal+ Premier League - Canal+ Séries Canal+ Sport - Canal+ Sport 360 - Canal+ Top 14 - Canvas Cartoon Network - Cartoonito Chasse et pêche - Chérie 25 Ciné+ Classic Ciné+ Club Ciné+ Emotion - Ciné+ Famiz Ciné+ Frisson Ciné+ Premier - Club RTL CNEWS CNN - Colmax TV Comédie+ Comedy Central Crime District CSTAR Das Erste - Demain TV Discovery Channel - Discovery Science Disney Channel - Disney Channel Wallonia Disney Junior - Dorcel TV - Dorcel XXX E ! - één Equidia Eurochannel Euronews @@ -105,7 +189,6 @@ Eurosport 2 Fashion TV France 2 - France 3 France 3 Alpes France 3 Alsace France 3 Aquitaine @@ -130,130 +213,70 @@ France 3 Poitou-Charentes France 3 Provence-Alpes France 3 Rhône-Alpes + France 3 France 4 France 5 France 24 - Franceinfo - Game One Ginx - Golf Channel Golf+ - Gong - Gong Max - Gospel Music TV Gulli Histoire TV I24news Infosport+ - J-One Ketnet KTO La Chaîne Météo - La Chaîne normande - La Chaîne parlementaire - La Trois La Une LCI - La Chaîne Info - LCP 100% + La Chaîne parlementaire L'Equipe - LM TV Sarthe - Luxe TV M6 - M6 Boutique M6 Music Mangas - Maritima TV MCM MCM Top Melody - Men's UP Mezzo Mezzo Live HD - Mirabelle TV - Mosaïk Cristal MTV - MTV Hits - MTV Hits (France) - MTV Rocks MyZen.tv - Nat Geo Wild National Geographic + Nat Geo Wild Nautical Channel Nickelodéon Nickelodeon Junior Nickelodéon Teen - Nickelodéon Wallonia Nollywood TV - Non Stop People HD Novelas TV NPO1 NPO2 - NRJ 12 NRJ Hits - OCS City - OCS Géants - OCS Max - OCS Pulp OLTV - Onzéo - Paramount Channel - paramountfr1 Paris Première Pink TV Piwi+ Planète+ - Planète+ Aventure Expérience Planète+ Crime Investigation - Play5 - Plug RTL + Vier Polar+ - Pro7 - Proximus 11 - Public Sénat 2424 Rai Uno RFM TV RMC Découverte RMC Sport 1 - RMC Sport 1 UHD RMC Sport 2 - RMC Sport 3 - RMC Sport 4 - RMC Sport Access 1 - RMC Sport Access 2 - RMC Sport Access 3 - RMC Sport Live 5 - RMC Sport Live 6 - RMC Sport Live 7 - RMC Sport Live 8 - RMC Sport Live 9 - RMC Sport Live 10 - RMC Sport Live 11 - RMC Sport Live 12 - RMC Sport Live 13 - RMC Sport Live 14 - RMC Sport Live 15 - RMC Sport Live 16 RMC Story RTL 9 - RTL Télévision RTL TVI - RTP Mundo - RTS Deux + RTPI RTS Un + RTS Deux Science & Vie TV Seasons serieclub - Skynews - Stingray Classica Stingray Djazz - Stingray Festival 4K Stingray i-Concerts - SWR Syfy TCM Cinéma - Tébéo - Télé Grenoble Isère - Télénantes TéléToon+ Téva TF1 @@ -262,37 +285,18 @@ TIJI Tipik TMC - TNTV France - Toonami Toute l'histoire Trace Africa TRACE Sport Stars - Trace Tropical Trace Urban Trek TV5MONDE - TV7 Bordeaux - TV Tours TvBreizh TVE - TVPI - TVR Rennes 35 Bretagne - TVSUD Montpellier - TVSUD Nîmes Ushuaïa TV - VH1 - VH1 Classic - Vier - VOOsport World 1 - VOOsport World 2 - Vosges Télévision - VTM2 - VTM3 - VTM4 VTM W9 Warner TV - Weo XXL ZDF From 9c0093c098e036512fb1269f71f238f53a7e354c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Isma=C3=ABl=20Moret?= <30985701+BellezaEmporium@users.noreply.github.com> Date: Wed, 15 Apr 2026 10:52:28 +0200 Subject: [PATCH 03/92] Add files via upload --- sites/siba.com.co/siba.com.co.channels.xml | 336 +- sites/siba.com.co/siba.com.co.config.js | 22 +- sites/singtel.com/singtel.com.channels.xml | 242 +- sites/sjonvarp.is/sjonvarp.is.channels.xml | 14 +- sites/sky.co.nz/__data__/content.json | 27923 +++++++++++++++- sites/sky.co.nz/sky.co.nz.channels.xml | 156 +- sites/sky.co.nz/sky.co.nz.config.js | 100 +- sites/sky.co.nz/sky.co.nz.test.js | 72 +- sites/sky.com/sky.com.channels.xml | 971 +- .../skyperfectv.co.jp.channels.xml | 308 +- .../skyperfectv.co.jp.config.js | 39 +- sites/syn.is/__data__/content.json | 34 + sites/syn.is/readme.md | 21 + sites/syn.is/syn.is.channels.xml | 12 + sites/syn.is/syn.is.config.js | 88 + sites/syn.is/syn.is.test.js | 46 + sites/tataplay.com/tataplay.com.channels.xml | 1446 +- sites/tataplay.com/tataplay.com.config.js | 28 +- sites/tivu.tv/__data__/content.json | 2464 ++ sites/tivu.tv/__data__/no_content.json | 1 + sites/tivu.tv/tivu.tv.channels.xml | 149 +- sites/tivu.tv/tivu.tv.config.js | 113 +- sites/tivu.tv/tivu.tv.test.js | 43 +- .../watch.whaletvplus.com.config.js | 2 +- .../web.magentatv.de.channels.xml | 469 +- sites/winplay.co/__data__/content.json | 2867 +- sites/winplay.co/winplay.co.channels.xml | 5 +- sites/winplay.co/winplay.co.config.js | 102 +- sites/winplay.co/winplay.co.test.js | 45 +- 29 files changed, 35200 insertions(+), 2918 deletions(-) create mode 100644 sites/syn.is/__data__/content.json create mode 100644 sites/syn.is/readme.md create mode 100644 sites/syn.is/syn.is.channels.xml create mode 100644 sites/syn.is/syn.is.config.js create mode 100644 sites/syn.is/syn.is.test.js create mode 100644 sites/tivu.tv/__data__/content.json create mode 100644 sites/tivu.tv/__data__/no_content.json diff --git a/sites/siba.com.co/siba.com.co.channels.xml b/sites/siba.com.co/siba.com.co.channels.xml index 9adaa9e96..429bba4ef 100644 --- a/sites/siba.com.co/siba.com.co.channels.xml +++ b/sites/siba.com.co/siba.com.co.channels.xml @@ -1,101 +1,247 @@ - A&E Chile - Animal Planet - AXN - Cablenoticias - Trece - Canal Capital - Caracol TV - Canal Claro - Las Estrellas - Canal Congreso - Canal Institucional - RCN TV - Canal 1 - Cartoon Network - Cinecanal Chile - CineLatino - Cinema + - City TV - CNN en Español - Cosmovisión - Cristovisión - Red+ - Discovery Channel - Discovery Home & Health - Discovery Kids - Discovery Turbo - Disney Channel - E! - El Gourmet Norte - ESNE TV - Enlace - El Tiempo TV - EWTN España - Latinoamérica - Star Life - Star Channel - Fox Sports Latin America - FX Chile - Glitz - Golden - History - HTV - TNT Series - Sin Límites - Me Gusta - Investigation Discovery + A&E HD + AXN HD + BABY TV + BBC WORLD NEWS + CARTOONITO + RCN HD + CARACOL HD + CINECANAL HD + CNN INTERNACIONAL + CONCERT CHANNEL HD + DE PELICULA + RED+ HD + DISCOVERY THEATER HD + DISNEY JUNIOR + SILK (CANCIONES DE AMOR) + LATINO TROPICAL + SOLO PARA PEQUES + EXITOS DE BRASIL + HIMNOS DEL ROCK + JAMMIN` REGGAE + EXITOS RECIENTES + EVENTOS + CLASICOS DEL SOUL Y EL RHYTHM & BLUES + POPCORN + MUSICA LIGERA + JAZZ LATINO + ROMPEPISTAS + MPB (MUSICA POPULAR BRASILEIRA) + SAMBA Y PAGODE + ROCK DE BRASIL + NEW AGE + ROCK EN ESPANOL + VIVA MEXICO + CLUB DE BAILE + MARIACHI PARA SIEMPRE + OPERA PLUS + BIG BAND + VIEJITAS PERO BUENISIMAS + TANGO + MUSICA DEL MUNDO + MAESTROS DEL CLASICO + EXITOS DE ITALIA + ROCK ALTERNATIVO + SESIONES DANCEHALL + EXITOS DE LAS AMERICAS + LATIN LOUNGE + COCKTAIL LOUNGE + BLUES + CLASICOS PARA TODOS + POP ADULTO + REGGAETON + EL SALON CHILL + SALSA Y MERENGUE + CLASICOS DEL &QUOT;DANCE&QUOT; + POP LATINO ACTUAL + EUROHITS + ESTANDARES + MAESTROS DEL JAZZ + ROMANCE LATINO + CLASICOS INDIE + AñOS 90 + HARD ROCK + AñOS 70 + AñOS 80 + CANDELA STEREO (EMISORA) + LA BASICA CARACOL (EMISORA) + LA BASICA RCN (EMISORA) + LA FM (EMISORA) + LA W (EMISORA) + VIBRA BOGOTA (EMISORA) + ESPN 2 + ESPN + ESPN 4 HD + EWTN + STAR CHANNEL HD + FOX NEWS + ESPN 5 HD + HISTORY HD + AMC HD + SONY HD + SPACE HD + TELEHIT + DISCOVERY WORLD HD + TNT HD + TVE + UNIVERSAL HD + CLARO SPORTS HD + MTV 00'S + WARNER CHANNEL HD + TCM + COMEDY CENTRAL HD + DISCOVERY HOME & HEALTH HD + INVESTIGATION DISCOVERY HD + ADULT SWIM + TOONCAST + DE PELICULA HD + DISCOVERY KIDS HD + MI GENTE TV + DISNEY HD + FX HD + ESPN 6 HD + ESPN 7 HD + PLAYBOY HD + NATGEO HD + HEADLINE NEWS + INTI HD + WIN SPORTS HD + PASIONES HD + PARAMOUNT HD + DISCOVERY CHANNEL HD + SENAL COLOMBIA HD + SEñAL INSTITUCIONAL HD + CANAL 1 HD + STUDIO UNIVERAL HD + ANIMAL PLANET HD + DISCOVERY TURBO HD + CANAL CLARO HD + TV AGRO HD + ESPN HD + MTV HD + TNT SERIES HD + CARTOON NETWORK HD + NICKELODEON HD + EL GOURMET HD + ESPN 2 HD + CABLENOTICIAS HD + CLARO SPORTS 2 + CLARO SPORTS 2 HD + CARTOONITO HD + TNT NOVELAS HD + CANAL DE LAS ESTRELLAS HD + TLC HD + NICK JUNIOR HD + TELEANTIOQUIA HD + TRECE HD + TELECARIBE HD + TELEPACIFICO HD + TRO HD + FOOD NETWORK HD + TELEMUNDO HD + LIFETIME HD + H2 HD + E! ENTERTAINMENT HD + VE PLUS HD + DISNEY JUNIOR HD + TELECAFE HD + CANAL CAPITAL HD + TELEISLAS HD + CLARO MúSICA TV HD + BBC WORLD HD + CINEMAX HD + UNIVISIóN + UNIVISIóN HD + ESPN 3 + ESPN 3 HD + PLIM PLIM + A&E AMC - MTV Latino Sud - MultiPremier - National Geographic Wild - National Geographic - Nick Jr - Nickelodeon + ANIMAL PLANET + AXN + CABLE NOTICIAS + CANAL 1 + CANAL CAPITAL + CANAL CLARO + CANAL DEL CONGRESO + CANAL INSTITUCIONAL + CANAL RCN + TRO + CANAL CARACOL + CARTOON NETWORK + CINECANAL + CINE LATINO + CINEMAX + CLARO CINEMA + CLARO MúSICA TV + CLARO SPORTS + CNN EN ESPANOL + COMEDY CENTRAL + COSMOVISION + CRISTOVISION + DISCOVERY CHANNEL + DISCOVERY HOME & HEALTH + DISCOVERY KIDS + DISCOVERY TURBO + DISNEY CHANNEL + E! ENTERTAINMENT + EL GOURMET + EL TIEMPO TELEVISION + ENLACE + EL SEMBRADOR + FOOD NETWORK + ESPN 7 + ESPN 6 + ESPN 5 + FX + GOLDEN + H2 + HISTORY CHANNEL + HTV + INVESTIGATION DISCOVERY + CANAL DE LAS ESTRELLAS + LIFETIME + MTV + MULTIPREMIER + NATIONAL GEOGRAPHIC + NICKELODEON + NICK JR + NICKMUSIC NTN 24 - Pasiones - Playboy TV - Brazzers TV XX - Sextreme - Claro música TV - Señal Colombia - Sony Channel Andes - Space Chile - Studio Universal Chile - TBS - Tele Amiga - Teleantioquia - Telecafé - Telecaribe - Tlnovelas - Telepacífico - FXM Chile + PARAMOUNT + PASIONES + PENTHOUSE + PLAYBOY + RCN TELENOVELAS + RED+ + SENAL COLOMBIA + SEXTREME + SIN LíMITES + SONY + SPACE + STAR CHANNEL + STUDIO UNIVERSAL + TNT NOVELAS + TELEAMIGA + TELEANTIOQUIA + TELECAFE + TELECARIBE + TELEISLAS CHANNEL + TELEMUNDO + TELEPACIFICO TLC - TNT Chile - Canal TRO - Tru TV - TV Agro - Universal TV - Venus - Claro Sports Chile - Warner Channel Panregional - Zoom - Penthouse TV - Fox Sports 3 Latin America - Ve Plus Panregional - Telemundo - Fox Sports 2 Latin America - Comedy Central - NickMusic - Win Sports - Cinemax Latinoamérica - RCN Novelas - Lifetime - History 2 - Teleislas - Paramount Network - Claro Cinema - Food Network Latinoamérica - TV Familia - Nat Geo Kids + TL NOVELAS + TNT + TNT SERIES + TRECE + ADULT SWIM + TV AGRO + TV FAMILIA + UNIVERSAL CHANNEL + VENUS + VE PLUS TV + WARNER CHANNEL + WIN SPORTS + ZOOM TV diff --git a/sites/siba.com.co/siba.com.co.config.js b/sites/siba.com.co/siba.com.co.config.js index 970815bee..2adf80c60 100644 --- a/sites/siba.com.co/siba.com.co.config.js +++ b/sites/siba.com.co/siba.com.co.config.js @@ -1,5 +1,7 @@ const dayjs = require('dayjs') +const axios = require('axios') +// Geo to Colombia module.exports = { site: 'siba.com.co', days: 2, @@ -11,7 +13,7 @@ module.exports = { }, data({ channel, date }) { const params = new URLSearchParams() - params.append('servicio', '10') + params.append('servicio', '9') params.append('ini', date.unix()) params.append('end', date.add(1, 'd').unix()) params.append('chn', channel.site_id) @@ -31,6 +33,24 @@ module.exports = { }) return programs + }, + async channels() { + const data = await axios + .post('http://devportal.siba.com.co/index.php?action=grilla', 'servicio=9', { + headers: { + 'Content-Type': 'application/x-www-form-urlencoded; charset=UTF-8' + } + }) + .then(r => r.data) + .catch(console.log) + + return data.list.map(item => { + return { + lang: 'es', + site_id: item.id, + name: item.nom + } + }) } } diff --git a/sites/singtel.com/singtel.com.channels.xml b/sites/singtel.com/singtel.com.channels.xml index 01f7a6387..60f4da732 100644 --- a/sites/singtel.com/singtel.com.channels.xml +++ b/sites/singtel.com/singtel.com.channels.xml @@ -1,158 +1,142 @@ - Hub Premier 1 - Hub Premier 2 - Hub Premier 3 - Hub Premier 4 - FIFA Women’s World Cup CH01 - FIFA Women’s World Cup CH02 - Ch 5 (HD) - Ch 8 (HD) - Suria (HD) - Vasantham (HD) - CNA (HD) - Ch U (HD) - KBS World (Mandarin) (HD) - France 24 (French) - France 24 (English) + Hub Premier 5 + Hub Premier 6 + KBS World (HD) Russia Today - ETTV Asia News - GMA Pinoy TV (4K) mio Stadium OD mio Sports (HD) mio Sports 2 (HD) mio Sports 3 (HD) - beIN SPORTS RUGBY HD - Premier Sports (HD) Outdoor Channel + Cricbuzz (HD) + Cricbuzz 2 (HD) Cricket Plus - beIN SPORTS 4 (HD) - beIN SPORTS 5 (HD) - Sky News HD - CGTN - NHK World – Japan (HD) - Deutsche Welle (English) + MOLA Sport (HD) FOX News Channel - CNN International (HD) - Bloomberg Television (HD) - CNBC Asia - Discovery Channel (HD) - Discovery Asia (HD) - Crime + Investigation™ (HD) - Animal Planet (HD) + Bloomberg Originals HISTORY™ (HD) - CGTN-Documentary - Cartoon Network (HD) - Cartoonito (HD) - DreamWorks (HD) - CBeebies (HD) - Nick Jr. - Nickelodeon Asia HD HGTV (HD) - ABC Australia - Food Network (HD) - TLC + TLC (HD) AFN (HD) - TRACE Sports Stars HD - TechStorm (HD) - WAKUWAKU JAPAN (HD) - Lifetime (HD) + WAKUWAKU JAPAN (HD) (Mandarin / Malay) HITS NOW (HD) - AXN (HD) - ROCK Action On Demand (HD) - ROCK Entertainment (HD) - HITS (HD) - ANIPLUS HD - Animax (HD) + ROCK Action (HD) MTV LIVE HD - Paramount Network (HD) e-Le (HD) Jia Le Channel (HD) - TVB Jade (HD) - now Jelli (HD) - ONE HD (Mandarin) - TVB Xing He (HD) - tvN HD (Mandarin) - GEM (HD) - ETTV Asia (HD) - CCTV Entertainment - Dragon TV Intl - Hunan International - BRTV International China Movie Channel - CCTV-4 (HD) - CTI Asia (HD) - CCM - Celestial Movies (HD) - Astro Prima HD - ONE HD (Malay) - GEM (HD) - Pesona HD - Astro Ria HD - Citra Drama (HD) - SEA Today + ETTV Asia News (HD) Drama Channel - tvN HD (Malay) - Sun TV - Colors Tamil HD Zee Thirai - KTV HD - Sun Life - Sun Music - Adithya TV Sony YAY! - Zee Tamil - Vijay - Sun News - Asianet - Asianet Movies - SET (HINDI) - ZEE TV - SAB TV - Colors - Star Bharat - STAR Plus - MTV India - STAR Gold - SONY MAX maa movies - Star Maa - Times Now Zoom TV - NDTV 24x7 - NDTV India WION - NHK World Premium - GMA Life TV - GMA News TV - The Filipino Channel - SEA Games CH01 HD - SEA Games CH02 HD - SEA Games CH03 HD - SEA Games CH04 HD - beIN SPORTS 3 (HD) - SPOTV (HD) - SPOTV 2 (HD) - EUROSPORT (HD) Fight Sports (HD) - mio Cricket (HD) - mio Cricket Plus (HD) - beIN SPORTS (HD) - beIN SPORTS 2 (HD) - BBC News - BBC Earth (HD) - BBC Lifestyle (HD) - HITS Movies HD - MTV 90s - HBO HD - HBO Signature (HD) - HBO Family (HD) - HBO Hits (HD) - CINEMAX (HD) - TVBS Asia - TVBS News - Phoenix InfoNews + CBeebies (HD) CM+ Cinema One Global ABS-CBN News Channel + ABC Australia + Adithya TV + Animal Planet (HD) + Animax (HD) + ANIPLUS HD + Asianet + SAB TV + AXN (HD) + BBC Earth (HD) + BBC Lifestyle (HD) + BBC News + beIN SPORTS 2 (HD) + beIN SPORTS 3 (HD) + beIN SPORTS 1 (HD) + Bloomberg Television (HD) + Cartoonito (HD) + Cartoon Network (HD) + CGTN + CGTN-Documentary + Ch 5 (HD) + CINEMAX (HD) + Citra Drama (HD) + CNA (HD) + CNBC Asia HD + CNN International (HD) + Colors + Colors Tamil HD + Crime + Investigation™ (HD) + Discovery Asia (HD) + Discovery Channel (HD) + Deutsche Welle (English) + EUROSPORT (HD) + Food Network (HD) + France 24 (English) + GMA Life TV + GMA News TV + GMA Pinoy TV + HBO HD + HBO Family (HD) + HBO Hits (HD) + HBO Signature (HD) + HITS (HD) + HITS Movies HD + Hub Premier 1 + Hub Premier 2 + Hub Premier 3 + Hub Premier 4 + KTV HD + Lifetime (HD) + MTV India + NHK World – Japan (HD) + NHK World Premium + Nickelodeon Asia HD + Nick Jr. + ONE HD (Malay) + Pesona HD + Premier Sports + ROCK Entertainment (HD) + Sky News HD + SET (HINDI) + SONY MAX + SPOTV 2 (HD) + SPOTV (HD) + Star Bharat + STAR Gold + Star Maa + STAR Plus + Sun Music + Sun TV + Suria (HD) + The Filipino Channel + Times Now + TRACE Sports Stars HD + tvN HD (Malay) + Vasantham (HD) + Vijay TV + Zee Tamil + ZEE TV + France 24 (French) + Asianet Movies + Astro Prima HD + Astro Ria HD + ETTV Asia (HD) + BRTV International + CCM + CCTV-4 (HD) + CCTV Entertainment + Celestial Movies (HD) + Ch 8 (HD) + Ch U (HD) + CTI Asia (HD) + Dragon TV Intl + Hunan International + TVB Jade (HD) + now Jelli (HD) + ONE HD (Mandarin) + Phoenix InfoNews + TVBS Asia + TVBS News + TVB Xing He (HD) + tvN HD (Mandarin) diff --git a/sites/sjonvarp.is/sjonvarp.is.channels.xml b/sites/sjonvarp.is/sjonvarp.is.channels.xml index b018a11c0..c6fdbf2d8 100644 --- a/sites/sjonvarp.is/sjonvarp.is.channels.xml +++ b/sites/sjonvarp.is/sjonvarp.is.channels.xml @@ -1,16 +1,16 @@ - Stöð 2 Golf - RÚV RÚV Íþróttir - Sjónvarp Símans - Síminn Sport + RÚV Síminn Sport 2 + Síminn Sport + Sjónvarp Símans + Stöð 2 Stöð 2 E Sport + Stöð 2 Fjölskylda + Stöð 2 Golf + Stöð 2 Sport 2 Stöð 2 Sport 3 Stöð 2 Sport 4 - Stöð 2 Sport 2 - Stöð 2 - Stöð 2 Fjölskylda Stöð 2 Sport diff --git a/sites/sky.co.nz/__data__/content.json b/sites/sky.co.nz/__data__/content.json index c721cffcd..e7f1dd159 100644 --- a/sites/sky.co.nz/__data__/content.json +++ b/sites/sky.co.nz/__data__/content.json @@ -1,140 +1,27787 @@ { - "total" : 15, - "returned" : 15, - "events" : [ { - "id" : "048382396", - "title" : "Sing 2", - "synopsis" : "Animated: Buster Moon and his friends must persuade the world's most reclusive rock star to help launch their most dazzling extravaganza yet. Voices Of: Matthew McConaughey, Reese Witherspoon (2021)", - "channelNumber" : 36, - "start" : "1674258060000", - "end" : "1674264480000", - "genres" : [ "Animated" ], - "rating" : "PG" - }, { - "id" : "048389721", - "title" : "Barbie And The Magic Of Pegasus", - "synopsis" : "Animated: An incident with an evil warlock sends Princess Annika on a mission to Cloud Kingdom with her new friend, a flying horse named Brietta. Voices Of: Kelly Sheridan, Lalainia Lindbjerg (2005)", - "channelNumber" : 36, - "start" : "1674264480000", - "end" : "1674269760000", - "genres" : [ "Animated" ], - "rating" : "G" - }, { - "id" : "048382714", - "title" : "A Starstruck Christmas", - "synopsis" : "Drama: With her beloved theatre on the verge of closure, Ridley gets some Hollywood help to ensure this year's rendition of A Christmas Carol is a success. Stars: Jamie Perez, Thomas McDonell (2021)", - "channelNumber" : 36, - "start" : "1674269760000", - "end" : "1674274980000", - "genres" : [ "Drama" ], - "rating" : "PG" - }, { - "id" : "048283877", - "title" : "The Bad Guys", - "synopsis" : "Animated: A crackerjack criminal crew of animal outlaws are about to attempt their most challenging con yet - becoming model citizens. Voices Of: Sam Rockwell, Zazie Beetz (2021)", - "channelNumber" : 36, - "start" : "1674274980000", - "end" : "1674280800000", - "genres" : [ "Animated" ], - "rating" : "PG-V" - }, { - "id" : "048273364", - "title" : "The Smurfs 2", - "synopsis" : "Family: Gargamel kidnaps Smurfette because she knows a spell that can turn his newest creations - creatures called the Naughties - into real Smurfs. Stars: Neil Patrick Harris, Hank Azaria (2013)", - "channelNumber" : 36, - "start" : "1674280800000", - "end" : "1674286920000", - "genres" : [ "Family" ], - "rating" : "G" - }, { - "id" : "048284595", - "title" : "Harry Potter and the Goblet of Fire", - "synopsis" : "Adventure: Harry is selected to represent Hogwarts at a legendary and dangerous wizardry competition between three schools of magic. Stars: Daniel Radcliffe, Rupert Grint (2005)", - "channelNumber" : 36, - "start" : "1674286920000", - "end" : "1674295980000", - "genres" : [ "Action/Adventure" ], - "rating" : "M-V" - }, { - "id" : "048382358", - "title" : "Gulliver Returns", - "synopsis" : "Animated: Gulliver is invited to return to Lilliput. With enemies at their gates, Lilliput's citizens were not expecting a regularly sized Gulliver! Voices Of: Wayne Grayson, Billy Bod Thompson (2021)", - "channelNumber" : 36, - "start" : "1674295980000", - "end" : "1674301260000", - "genres" : [ "Animated" ], - "rating" : "G" - }, { - "id" : "048348956", - "title" : "A-X-L", - "synopsis" : "Adventure: A top-secret, robotic dog with advanced artificial intelligence is found by a young boy in the desert. The two go on to develop a special friendship. Stars: Alex Neustaedter, Becky G (2018)", - "channelNumber" : 36, - "start" : "1674301260000", - "end" : "1674307020000", - "genres" : [ "Family" ], - "rating" : "PG-LV" - }, { - "id" : "048349054", - "title" : "The Lego Movie", - "synopsis" : "Animated: An ordinary LEGO minifigure is recruited to help stop an evil tyrant from gluing the universe together. Voices Of: Will Arnett, Elizabeth Banks (2014)", - "channelNumber" : 36, - "start" : "1674307020000", - "end" : "1674312840000", - "genres" : [ "Animated" ], - "rating" : "PG-V" - }, { - "id" : "048386420", - "title" : "Power Rangers", - "synopsis" : "Adventure: Five ordinary teenagers are accidentally imbued with ancient powers, which they must use to save the planet from a vengeful and powerful evil. Stars: Dacre Montgomery, Naomi Scott (2017)", - "channelNumber" : 36, - "start" : "1674312840000", - "end" : "1674320040000", - "genres" : [ "Action/Adventure" ], - "rating" : "M-V" - }, { - "id" : "048390609", - "title" : "Harry Potter and the Goblet of Fire", - "synopsis" : "Adventure: Harry is selected to represent Hogwarts at a legendary and dangerous wizardry competition between three schools of magic. Stars: Daniel Radcliffe, Rupert Grint (2005)", - "channelNumber" : 36, - "start" : "1674320040000", - "end" : "1674329100000", - "genres" : [ "Action/Adventure" ], - "rating" : "M-V" - }, { - "id" : "048390611", - "title" : "Barbie: The Pearl Princess", - "synopsis" : "Animated: A mermaid with magical pearl powers is excited to attend a royal ball. However, a group of villains are scheming to take over the kingdom. Voices Of: Kelly Sheridan, Katie Crown (2014)", - "channelNumber" : 36, - "start" : "1674329100000", - "end" : "1674333420000", - "genres" : [ "Animated" ], - "rating" : "G" - }, { - "id" : "048389739", - "title" : "Planet 51", - "synopsis" : "Animated: An astronaut lands on Planet 51. The little green people who live there believe the astronaut aims to start an alien invasion! Voices Of: Dwayne Johnson, Jessica Biel (2009)", - "channelNumber" : 36, - "start" : "1674333420000", - "end" : "1674338700000", - "genres" : [ "Animated" ], - "rating" : "PG-V" - }, { - "id" : "048295351", - "title" : "Goosebumps ", - "synopsis" : "Family: Every monster from the Goosebumps series comes alive and are released into a small town. R.L Stine and a group of kids team up to save the day. Stars: Jack Black, Dylan Minnette (2015)", - "channelNumber" : 36, - "start" : "1674338700000", - "end" : "1674344700000", - "genres" : [ "Family" ], - "rating" : "PG-C" - }, { - "id" : "048349032", - "title" : "Smurfs: The Lost Village", - "synopsis" : "Animated: Smurfette, Brainy, Clumsy, and Hefty set off on a wild adventure to find the truth behind the legend of the lost village. Stars: Demi Lovato, Jack McBrayer (2017)", - "channelNumber" : 36, - "start" : "1674344700000", - "end" : "1674349920000", - "genres" : [ "Animated" ], - "rating" : "G" - } ] + "data": { + "experience": { + "channelGroup": { + "id": "4b7LA20J4iHaThwky9iVqn", + "title": "All Channels", + "channels": [ + { + "id": "TV2A", + "title": "TVNZ 1", + "number": 1, + "tileImage": { + "uri": "https://images.skyone.co.nz/contentful/dcojl03mw8gy/1ybupjLwcsXmhQZTaxYXmy/6b6fb3ebba539cf750be4ccef75374f6/TVNZ_1.png" + }, + "slotsForDay": { + "slots": [ + { + "id": "IBMS_55333881", + "startMs": 1765536000000, + "endMs": 1765538100000, + "live": false, + "nzBsaRatingString": "PG", + "programme": { + "id": "mac_ptc238871467", + "title": "Hard Quiz", + "synopsis": "What do King Henry VII, Shaquille O'Neal, dinosaurs and The Adventures of Priscilla, Queen of the Desert have in common? They're all expert topics on tonight's #HardQuiz!" + } + }, + { + "id": "IBMS_55333883", + "startMs": 1765538100000, + "endMs": 1765541400000, + "live": false, + "nzBsaRatingString": "G", + "programme": { + "id": "mac_ptc1711514438", + "title": "Selling Houses Australia", + "synopsis": "After Lynda's tenants leave her Sunshine West property in disarray, Selling Houses Australia comes to the rescue." + } + }, + { + "id": "IBMS_55333885", + "startMs": 1765541400000, + "endMs": 1765544400000, + "live": false, + "nzBsaRatingString": "PG", + "programme": { + "id": "mac_ptc440444614", + "title": "Help! We Bought A Hotel", + "synopsis": "Two hoteliers in France prepare to bid au revoir to their home and business. A set of renovators get started on turning an old Italian palazzo into a classy hotel." + } + }, + { + "id": "IBMS_55333887", + "startMs": 1765544400000, + "endMs": 1765546200000, + "live": false, + "nzBsaRatingString": null, + "programme": { + "id": "mac_ptc1774883567", + "title": "Te Karere", + "synopsis": "Te Karere brings you key events and stories of interest to Maori as well as bringing a Maori perspective to the day's news and current affairs." + } + }, + { + "id": "IBMS_55333889", + "startMs": 1765546200000, + "endMs": 1765548000000, + "live": false, + "nzBsaRatingString": null, + "programme": { + "id": "mac_ptc1261392742", + "title": "Infomercials", + "synopsis": "Infomercials" + } + }, + { + "id": "IBMS_55333891", + "startMs": 1765548000000, + "endMs": 1765549800000, + "live": false, + "nzBsaRatingString": null, + "programme": { + "id": "mac_ptc352207213", + "title": "Infomercials", + "synopsis": "Infomercials" + } + }, + { + "id": "IBMS_55333893", + "startMs": 1765549800000, + "endMs": 1765551600000, + "live": false, + "nzBsaRatingString": null, + "programme": { + "id": "mac_ptc1966260070", + "title": "Infomercials", + "synopsis": "Infomercials" + } + }, + { + "id": "IBMS_55333895", + "startMs": 1765551600000, + "endMs": 1765553400000, + "live": false, + "nzBsaRatingString": null, + "programme": { + "id": "mac_ptc1251404496", + "title": "Infomercials", + "synopsis": "Infomercials" + } + }, + { + "id": "IBMS_55333897", + "startMs": 1765553400000, + "endMs": 1765555200000, + "live": false, + "nzBsaRatingString": null, + "programme": { + "id": "mac_ptc1173863222", + "title": "Infomercials", + "synopsis": "Infomercials" + } + }, + { + "id": "IBMS_55333899", + "startMs": 1765555200000, + "endMs": 1765557000000, + "live": false, + "nzBsaRatingString": null, + "programme": { + "id": "mac_ptc96372381", + "title": "Infomercials", + "synopsis": "Infomercials" + } + }, + { + "id": "IBMS_55333901", + "startMs": 1765557000000, + "endMs": 1765558800000, + "live": false, + "nzBsaRatingString": null, + "programme": { + "id": "mac_ptc1649691182", + "title": "Te Karere", + "synopsis": "Te Karere brings you key events and stories of interest to Maori as well as bringing a Maori perspective to the day's news and current affairs." + } + }, + { + "id": "IBMS_55358254", + "startMs": 1765558800000, + "endMs": 1765560600000, + "live": false, + "nzBsaRatingString": null, + "programme": { + "id": "mac_ptc936281476", + "title": "Infomercials", + "synopsis": "Infomercials" + } + }, + { + "id": "IBMS_55358256", + "startMs": 1765560600000, + "endMs": 1765562400000, + "live": false, + "nzBsaRatingString": null, + "programme": { + "id": "mac_ptc150689556", + "title": "Infomercials", + "synopsis": "Infomercials" + } + }, + { + "id": "IBMS_55358478", + "startMs": 1765562400000, + "endMs": 1765564200000, + "live": false, + "nzBsaRatingString": null, + "programme": { + "id": "mac_ptc1870170212", + "title": "Infomercials", + "synopsis": "Infomercials" + } + }, + { + "id": "IBMS_55358480", + "startMs": 1765564200000, + "endMs": 1765566000000, + "live": false, + "nzBsaRatingString": "G", + "programme": { + "id": "mac_ptc1052512780", + "title": "Dog Squad Puppy School", + "synopsis": "Training cranks up for police hopeful Blue, there's swap-a-pup surprises all round for the Mobility fosters, and Biosecurity's Luigi, Luna and their Uncle Klaus leave home." + } + }, + { + "id": "IBMS_55358482", + "startMs": 1765566000000, + "endMs": 1765567800000, + "live": false, + "nzBsaRatingString": "G", + "programme": { + "id": "mac_ptc794089792", + "title": "Rural Delivery", + "synopsis": "Embracing diversity at Caythorpe Estate - producing cherries, growing grapes, making wine, and a specialist equine hay mix; and a partnership between Beef + Lamb NZ and MPI." + } + }, + { + "id": "IBMS_55358484", + "startMs": 1765567800000, + "endMs": 1765569600000, + "live": false, + "nzBsaRatingString": "G", + "programme": { + "id": "mac_ptc1262811425", + "title": "Hyundai Country Calendar", + "synopsis": "We revisit a North Canterbury school-leaver who followed her dream to go farming; Ten years on and married with two kids, the couple is thriving on the land." + } + }, + { + "id": "IBMS_55358486", + "startMs": 1765569600000, + "endMs": 1765571400000, + "live": false, + "nzBsaRatingString": "G", + "programme": { + "id": "mac_ptc1131579219", + "title": "Barkley Manor", + "synopsis": "Instafamous brothers Wonton and Dumpling prepare for the French bulldog event of the year. Has Cali the Labrador changed her chaotic ways? S2 E7" + } + }, + { + "id": "IBMS_55358488", + "startMs": 1765571400000, + "endMs": 1765573800000, + "live": false, + "nzBsaRatingString": "G", + "programme": { + "id": "mac_ptc1348247764", + "title": "Mary Berry Makes It Easy", + "synopsis": "Jordan North has more will than skill when cooking, so he joins Mary for some simple recipes to impress his pals, and as a thank you takes her to the pub for a pint and game of darts." + } + }, + { + "id": "IBMS_55358490", + "startMs": 1765573800000, + "endMs": 1765578000000, + "live": false, + "nzBsaRatingString": "G", + "programme": { + "id": "mac_ptc182562814", + "title": "The Great British Sewing Bee", + "synopsis": "The sewers celebrate west Africa over three challenges with batakari, adire fabric and boubous." + } + }, + { + "id": "IBMS_55358492", + "startMs": 1765578000000, + "endMs": 1765582500000, + "live": false, + "nzBsaRatingString": "PGC", + "programme": { + "id": "mac_ptc2048163483", + "title": "Call The Midwife", + "synopsis": "In his new role, Cyril faces his toughest challenge yet, whilst Matthew is summoned to a board meeting with his mother. Elsewhere, the pupil midwives prepare for their final exams. S13 E6" + } + }, + { + "id": "IBMS_55358494", + "startMs": 1765582500000, + "endMs": 1765585800000, + "live": false, + "nzBsaRatingString": "G", + "programme": { + "id": "mac_ptc1095084975", + "title": "Make It At Market", + "synopsis": "The Repair Shop's Dom Chinea works with a team of business and craft experts to help a group of budding entrepreneurs make a living from their crafting hobby." + } + }, + { + "id": "IBMS_55358496", + "startMs": 1765585800000, + "endMs": 1765589400000, + "live": false, + "nzBsaRatingString": "G", + "programme": { + "id": "mac_ptc274699161", + "title": "The Travelling Auctioneers", + "synopsis": "Research, restore and ready for sale! An intrepid team of antiques experts and master crafters help families turn unwanted items into winning lots." + } + }, + { + "id": "IBMS_55358498", + "startMs": 1765589400000, + "endMs": 1765591200000, + "live": false, + "nzBsaRatingString": "G", + "programme": { + "id": "mac_ptc1419721268", + "title": "Tipping Point: Best Ever Finals", + "synopsis": "Look back at some of the most dramatic end games in Tipping History, including agonising trades and jackpot counters teetering on the edge." + } + }, + { + "id": "IBMS_55358500", + "startMs": 1765591200000, + "endMs": 1765594500000, + "live": false, + "nzBsaRatingString": "G", + "programme": { + "id": "mac_ptc549952470", + "title": "Marcus Wareing At Christmas", + "synopsis": "Marcus makes some festive bakes including a decadent salmon Pithivier, a warming ginger cake and a scrumptious citrus enhanced treacle tart." + } + }, + { + "id": "IBMS_55358502", + "startMs": 1765594500000, + "endMs": 1765598400000, + "live": false, + "nzBsaRatingString": "G", + "programme": { + "id": "mac_ptc1676109199", + "title": "Tipping Point Lucky Stars", + "synopsis": "Ben Shephard hosts as footballing legend John Barnes, singer-songwriter Charlotte Church, and comedian Stephen Bailey put their wits to the test to win 20,000 pounds for charity." + } + }, + { + "id": "IBMS_55358504", + "startMs": 1765598400000, + "endMs": 1765602000000, + "live": false, + "nzBsaRatingString": "G", + "programme": { + "id": "mac_ptc1214142973", + "title": "The Chase", + "synopsis": "It's game on as teams attempt to answer quick-fire questions in a 60-second round, with each correct answer earning them £1,000!" + } + }, + { + "id": "IBMS_55358506", + "startMs": 1765602000000, + "endMs": 1765605600000, + "live": false, + "nzBsaRatingString": null, + "programme": { + "id": "mac_ptc1125202163", + "title": "1 News At 6 PM", + "synopsis": "The nation's leading team of journalists brings viewers the latest news and sport, plus the most comprehensive weather report." + } + }, + { + "id": "IBMS_55358508", + "startMs": 1765605600000, + "endMs": 1765609200000, + "live": false, + "nzBsaRatingString": "G", + "programme": { + "id": "mac_ptc765425247", + "title": "The Dog House at Christmas", + "synopsis": "The Woodgreen team host a festive Christmas dinner for their abandoned dogs while they look for new homes." + } + }, + { + "id": "IBMS_55358510", + "startMs": 1765609200000, + "endMs": 1765609500000, + "live": false, + "nzBsaRatingString": null, + "programme": { + "id": "mac_ptc1053685349", + "title": "Lotto", + "synopsis": "Lotto" + } + }, + { + "id": "IBMS_55358512", + "startMs": 1765609500000, + "endMs": 1765617300000, + "live": false, + "nzBsaRatingString": "ML", + "programme": { + "id": "mac_ptc616042904", + "title": "Film On 1: Yesterday" + } + }, + { + "id": "IBMS_55358514", + "startMs": 1765617300000, + "endMs": 1765619100000, + "live": false, + "nzBsaRatingString": "G", + "programme": { + "id": "mac_ptc1791314156", + "title": "Border Patrol", + "synopsis": "Season Finale: Biosecurity finds a hidden haul, a man makes a rooky mistake and finds himself in Immigration & Customs find a picture worth a thousand words and tens of thousands of dollars. S12 E10" + } + }, + { + "id": "IBMS_55358516", + "startMs": 1765619100000, + "endMs": 1765623300000, + "live": false, + "nzBsaRatingString": "M", + "programme": { + "id": "mac_ptc892066893", + "title": "Ten Pound Poms", + "synopsis": "Secrets and lies unfold when Annie, Terry, Kate and Robbie take a trip to the Blue Mountains. S2 E5" + } + }, + { + "id": "IBMS_55358518", + "startMs": 1765623300000, + "endMs": 1765626600000, + "live": false, + "nzBsaRatingString": "16", + "programme": { + "id": "mac_ptc919107591", + "title": "Obituary", + "synopsis": "Season Finale: When Ward reveals what really happened the night Maria Riedle was killed, Elvira sets about framing Hughie for the crime. S1 E6" + } + } + ] + } + }, + { + "id": "TV2H", + "title": "TVNZ 2", + "number": 2, + "tileImage": { + "uri": "https://images.skyone.co.nz/contentful/dcojl03mw8gy/7bJVCIgfRIVOX6GD1ARMLL/392246c9157c7cb158567619c56329d9/TVNZ_2.png" + }, + "slotsForDay": { + "slots": [ + { + "id": "IBMS_55313974", + "startMs": 1765534200000, + "endMs": 1765537800000, + "live": false, + "nzBsaRatingString": "16L", + "programme": { + "id": "mac_ptc386146505", + "title": "Hell's Kitchen", + "synopsis": "The Yale Whiffenpoofs singing group perform; the chefs must model their expertise and work in harmony for their next challenge: to balance an array of ingredients to create a dish that really sings." + } + }, + { + "id": "IBMS_55313977", + "startMs": 1765537800000, + "endMs": 1765540800000, + "live": false, + "nzBsaRatingString": "PGC", + "programme": { + "id": "mac_ptc1674495190", + "title": "Caught On Dashcam", + "synopsis": "From distracted drivers to street level vigilantes, and even the most baffling battles with weather, we've got it all caught on camera." + } + }, + { + "id": "IBMS_55313980", + "startMs": 1765540800000, + "endMs": 1765542300000, + "live": false, + "nzBsaRatingString": "PG", + "programme": { + "id": "mac_ptc462282389", + "title": "Emmerdale", + "synopsis": "Long-running soap following the ups and downs of village life amid the rolling scenery of the Yorkshire Dales." + } + }, + { + "id": "IBMS_55313983", + "startMs": 1765542300000, + "endMs": 1765544100000, + "live": false, + "nzBsaRatingString": null, + "programme": { + "id": "mac_ptc172150634", + "title": "Infomercial", + "synopsis": "Infomercial" + } + }, + { + "id": "IBMS_55313986", + "startMs": 1765544100000, + "endMs": 1765545900000, + "live": false, + "nzBsaRatingString": null, + "programme": { + "id": "mac_ptc1879723545", + "title": "Infomercial", + "synopsis": "Infomercial" + } + }, + { + "id": "IBMS_55313989", + "startMs": 1765545900000, + "endMs": 1765553700000, + "live": false, + "nzBsaRatingString": "G", + "programme": { + "id": "mac_ptc1315423120", + "title": "The Voice U.S", + "synopsis": "Coaches Chance the Rapper, Dan + Shay, John Legend and Reba McEntire all vie to discover and coach the next singing phenomenon on the sixth and final night of blind auditions." + } + }, + { + "id": "IBMS_55313992", + "startMs": 1765553700000, + "endMs": 1765555200000, + "live": false, + "nzBsaRatingString": null, + "programme": { + "id": "mac_ptc1667434835", + "title": "TVNZ2 Returns At 5am", + "synopsis": "TVNZ2 Returns At 5am" + } + }, + { + "id": "IBMS_55313995", + "startMs": 1765555200000, + "endMs": 1765557000000, + "live": false, + "nzBsaRatingString": null, + "programme": { + "id": "mac_ptc1663893135", + "title": "Infomercial", + "synopsis": "Infomercial" + } + }, + { + "id": "IBMS_55313998", + "startMs": 1765557000000, + "endMs": 1765558800000, + "live": false, + "nzBsaRatingString": null, + "programme": { + "id": "mac_ptc1115829776", + "title": "Infomercial", + "synopsis": "Infomercial" + } + }, + { + "id": "IBMS_55358908", + "startMs": 1765558800000, + "endMs": 1765560000000, + "live": false, + "nzBsaRatingString": "G", + "programme": { + "id": "mac_ptc946794856", + "title": "The Imagination Machine", + "synopsis": "With the help of their big imaginations and a cardboard box, siblings Ella, Lucy and Blaze explore the wonders of the ancient world and beyond." + } + }, + { + "id": "IBMS_55358911", + "startMs": 1765560000000, + "endMs": 1765560900000, + "live": false, + "nzBsaRatingString": "G", + "programme": { + "id": "mac_ptc1040203921", + "title": "Takaro Tribe", + "synopsis": "This New Zealand-made animation sees the Takaro Tribe on a learning adventure in Te Wao Arap? (the magical Alphabet Forest), along with Papa Rakau (Tree father) and K?ka (Pond Mother)." + } + }, + { + "id": "IBMS_55358914", + "startMs": 1765560900000, + "endMs": 1765561500000, + "live": false, + "nzBsaRatingString": "G", + "programme": { + "id": "mac_ptc1228320957", + "title": "Kiri And Lou", + "synopsis": "Kiri and Lou follows the adventures of Kiri, a feisty little dinosaur with overpowering emotions and Lou, a gentle but thoughtful creature." + } + }, + { + "id": "IBMS_55358917", + "startMs": 1765561500000, + "endMs": 1765562700000, + "live": false, + "nzBsaRatingString": "G", + "programme": { + "id": "mac_ptc606235439", + "title": "Gus the Itsy Bitsy Knight", + "synopsis": "Astride his electric pony, wielding a laser sword, little Gus is out to prove that a brave heart can overcome anything." + } + }, + { + "id": "IBMS_55358920", + "startMs": 1765562700000, + "endMs": 1765563300000, + "live": false, + "nzBsaRatingString": "G", + "programme": { + "id": "mac_ptc752991398", + "title": "The Tom And Jerry Show", + "synopsis": "The Cat and Mouse Detectives are hired to track down Tuffy's imaginary scapegoat, Mr. Nobody." + } + }, + { + "id": "IBMS_55358923", + "startMs": 1765563300000, + "endMs": 1765564500000, + "live": false, + "nzBsaRatingString": "G", + "programme": { + "id": "mac_ptc1925551875", + "title": "Teen Titans Go!", + "synopsis": "Superhero roommates Robin, Cyborg, Starfire, Raven and Beast Boy love saving the day, but what happens when they're done fighting crime?" + } + }, + { + "id": "IBMS_55358926", + "startMs": 1765564500000, + "endMs": 1765567200000, + "live": false, + "nzBsaRatingString": "G", + "programme": { + "id": "mac_ptc97818305", + "title": "LEGO Ninjago: Masters Of Spinjitzu", + "synopsis": "Kai, Jay, Cole and Zane must master their elemental powers and Spinjitzu weapons to protect the land of Ninjago, which also has an underworld." + } + }, + { + "id": "IBMS_55358929", + "startMs": 1765567200000, + "endMs": 1765568700000, + "live": false, + "nzBsaRatingString": "G", + "programme": { + "id": "mac_ptc409731014", + "title": "Beyblade X", + "synopsis": "Four beybladers and their genius friend travel the world as team 'Bladebreakers' to win a championship, realising there's much more at stake on the go." + } + }, + { + "id": "IBMS_55358932", + "startMs": 1765568700000, + "endMs": 1765570200000, + "live": false, + "nzBsaRatingString": "PGC", + "programme": { + "id": "mac_ptc1581648995", + "title": "Fright Krewe", + "synopsis": "An ancient prophecy and a Voodoo Queen put misfit teens in charge of saving New Orleans from the biggest demonic threat it's faced in almost two centuries." + } + }, + { + "id": "IBMS_55358935", + "startMs": 1765570200000, + "endMs": 1765571700000, + "live": false, + "nzBsaRatingString": "G", + "programme": { + "id": "mac_ptc1510392272", + "title": "Malory Towers", + "synopsis": "Darrell is determined to ace the school cert, but her focus soon shifts when a WWII grenade is found in the San and Felicity and June can't be found." + } + }, + { + "id": "IBMS_55358938", + "startMs": 1765571700000, + "endMs": 1765575000000, + "live": false, + "nzBsaRatingString": "G", + "programme": { + "id": "mac_ptc1500686600", + "title": "The Gamers 2037", + "synopsis": "In a dystopian near future, gaming is banned and three former friends must overcome their differences and beat an unbeatable A.I. controlled game, or risk becoming trapped in the machine forever." + } + }, + { + "id": "IBMS_55358941", + "startMs": 1765575000000, + "endMs": 1765582500000, + "live": false, + "nzBsaRatingString": "PGC", + "programme": { + "id": "mac_ptc417011637", + "title": "Shortland Street Omnibus", + "synopsis": "Follow the lives and loves of the residents of Ferndale in New Zealand’s favourite drama series." + } + }, + { + "id": "IBMS_55358944", + "startMs": 1765582500000, + "endMs": 1765586400000, + "live": false, + "nzBsaRatingString": "PGL", + "programme": { + "id": "mac_ptc1289070664", + "title": "The Graham Norton Show", + "synopsis": "Kate Winslet, Jacinda Ardern, Alan Carr and Seth Meyers join Graham on his sofa. With music from Cat Burns, performing There's Just Something About Her from her album How to Be Human." + } + }, + { + "id": "IBMS_55358947", + "startMs": 1765586400000, + "endMs": 1765591800000, + "live": false, + "nzBsaRatingString": "PG", + "programme": { + "id": "mac_ptc1055784405", + "title": "Australian Survivor", + "synopsis": "Australia vs The World: A history-making end game is on the horizon. When the world's best collide, who will be first to strike? Will one player's bold move pay off, or will it ignite tensions between the two tribes?" + } + }, + { + "id": "IBMS_55358950", + "startMs": 1765591800000, + "endMs": 1765595400000, + "live": false, + "nzBsaRatingString": "PG", + "programme": { + "id": "mac_ptc2031554084", + "title": "The Fortune Hotel", + "synopsis": "The four remaining pairs face a Hotel Game with a twist that sees them targeting one another with daggers." + } + }, + { + "id": "IBMS_55358953", + "startMs": 1765595400000, + "endMs": 1765598700000, + "live": false, + "nzBsaRatingString": "PG", + "programme": { + "id": "mac_ptc1990440113", + "title": "Confessions Of Octomom", + "synopsis": "Season Finale: Natalie escapes the public eye with her family but finds the wreckage of her past still haunts them all." + } + }, + { + "id": "IBMS_55358956", + "startMs": 1765598700000, + "endMs": 1765602300000, + "live": false, + "nzBsaRatingString": "PGS", + "programme": { + "id": "mac_ptc1424235001", + "title": "Two And A Half Men", + "synopsis": "Walden discovers how challenging it now is to be intimate with women when his foster son is in the house. S12 E9" + } + }, + { + "id": "IBMS_55358959", + "startMs": 1765602300000, + "endMs": 1765605600000, + "live": false, + "nzBsaRatingString": "G", + "programme": { + "id": "mac_ptc2142510482", + "title": "The Big Bang Theory", + "synopsis": "Sheldon and Amy reach a crossroads in their relationship while building a blanket fort, and Howard is shocked when a man claiming to be his half-brother shows up at the front door. S8 E20" + } + }, + { + "id": "IBMS_55358962", + "startMs": 1765605600000, + "endMs": 1765607400000, + "live": false, + "nzBsaRatingString": "G", + "programme": { + "id": "mac_ptc94950199", + "title": "Booze Patrol", + "synopsis": "Follow the police units for a unique, behind-the-scenes look at RBT patrols testing for alcohol and drug-affected drivers. A driver approaching a booze bus suddenly swerves onto the grass verge!" + } + }, + { + "id": "IBMS_55358967", + "startMs": 1765607400000, + "endMs": 1765618200000, + "live": false, + "nzBsaRatingString": null, + "programme": { + "id": "mac_ptc226762672", + "title": "David Nykia Fight Night", + "synopsis": "Join us for live coverage of the Gatton Xmas Bash boxing event featuring New Zealand's David Nykia taking on China's Wuzhati Nuerland from Gatton in Queensland, Australia." + } + }, + { + "id": "IBMS_55358972", + "startMs": 1765618200000, + "endMs": 1765624800000, + "live": false, + "nzBsaRatingString": "16L", + "programme": { + "id": "mac_ptc160746574", + "title": "The Big Fat Quiz Of The Year 2023", + "synopsis": "Jimmy Carr hosts as Richard Ayoade, Katherine Ryan, Mel Giedroyc, Mo Gilligan, Rosie Jones and Kevin Bridges answer questions about Keir Starmer's sparkle and the Pope's fashion sense." + } + } + ] + } + }, + { + "id": "WSK3", + "title": "Three", + "number": 3, + "tileImage": { + "uri": "https://images.skyone.co.nz/contentful/dcojl03mw8gy/3wMswLwrmNuVqRfAmcpgqS/2c7d01d0850a61ed973bef1155b0dfcc/003_1920x1080.png" + }, + "slotsForDay": { + "slots": [ + { + "id": "IBMS_55332671", + "startMs": 1765533900000, + "endMs": 1765537500000, + "live": false, + "nzBsaRatingString": "MVC", + "programme": { + "id": "mac_11864000", + "title": "Buried In The Backyard", + "synopsis": "When a twenty-year-old artist is discovered dead in a suitcase across state lines, detectives must uncover the dark truth behind an obsessive lover's deadly actions." + } + }, + { + "id": "IBMS_55332674", + "startMs": 1765537500000, + "endMs": 1765544400000, + "live": false, + "nzBsaRatingString": null, + "programme": { + "id": "mac_11021263", + "title": "Infomercials", + "synopsis": "Infomercials" + } + }, + { + "id": "IBMS_55332677", + "startMs": 1765544400000, + "endMs": 1765551600000, + "live": false, + "nzBsaRatingString": null, + "programme": { + "id": "mac_11021263", + "title": "Infomercials", + "synopsis": "Infomercials" + } + }, + { + "id": "IBMS_55332680", + "startMs": 1765551600000, + "endMs": 1765558800000, + "live": false, + "nzBsaRatingString": null, + "programme": { + "id": "mac_11021263", + "title": "Infomercials", + "synopsis": "Infomercials" + } + }, + { + "id": "IBMS_55332683", + "startMs": 1765558800000, + "endMs": 1765560600000, + "live": false, + "nzBsaRatingString": "PG", + "programme": { + "id": "mac_11021448", + "title": "Charles Stanley", + "synopsis": "Charles Stanley" + } + }, + { + "id": "IBMS_55332686", + "startMs": 1765560600000, + "endMs": 1765564200000, + "live": false, + "nzBsaRatingString": null, + "programme": { + "id": "mac_11021263", + "title": "Infomercials", + "synopsis": "Infomercials" + } + }, + { + "id": "IBMS_55332689", + "startMs": 1765564200000, + "endMs": 1765571700000, + "live": false, + "nzBsaRatingString": null, + "programme": { + "id": "mac_11021263", + "title": "Infomercials", + "synopsis": "Infomercials" + } + }, + { + "id": "IBMS_55332692", + "startMs": 1765571700000, + "endMs": 1765575300000, + "live": false, + "nzBsaRatingString": "G", + "programme": { + "id": "mac_11733892", + "title": "Supermarket Stakeout", + "synopsis": "Host Alex Guarnaschelli sets up a desert stakeout in Arizona. The competing chefs make it Mediterranean before mashing up classics, parking lot-style." + } + }, + { + "id": "IBMS_55332695", + "startMs": 1765575300000, + "endMs": 1765578900000, + "live": false, + "nzBsaRatingString": "PG", + "programme": { + "id": "mac_11864006", + "title": "The Zoo", + "synopsis": "The zoo staff work to build a relationship between a pair of Asian elephants with very different personalities. A beaver undergoes a tooth trim." + } + }, + { + "id": "IBMS_55332698", + "startMs": 1765578900000, + "endMs": 1765580700000, + "live": false, + "nzBsaRatingString": "PG", + "programme": { + "id": "mac_11864007", + "title": "Little Giants", + "synopsis": "A difficult search of the Madagascan forest floor reveals the lowland tenrec, an animal that often tunnels underground and loaded with ultra-sharp senses and defences. S1 E11" + } + }, + { + "id": "IBMS_55332701", + "startMs": 1765580700000, + "endMs": 1765584000000, + "live": false, + "nzBsaRatingString": "G", + "programme": { + "id": "mac_11446054", + "title": "Cupcake Wars", + "synopsis": "Former baker's assistants return and battle for the chance to have their cupcakes featured at a VIP Las Vegas party for the world-renowned Blue Man Group." + } + }, + { + "id": "IBMS_55332704", + "startMs": 1765584000000, + "endMs": 1765591200000, + "live": false, + "nzBsaRatingString": "PGC", + "programme": { + "id": "mac_11633135", + "title": "Movie: Bridge To Terabithia" + } + }, + { + "id": "IBMS_55332707", + "startMs": 1765591200000, + "endMs": 1765593000000, + "live": false, + "nzBsaRatingString": "G", + "programme": { + "id": "mac_11725655", + "title": "Lakefront Bargain Hunt", + "synopsis": "Home seekers look for an affordable lakefront property, proving it's possible to find their dream home without a lot of cash." + } + }, + { + "id": "IBMS_55332710", + "startMs": 1765593000000, + "endMs": 1765596600000, + "live": false, + "nzBsaRatingString": "G", + "programme": { + "id": "mac_11799795", + "title": "Chopped", + "synopsis": "Four chefs well-known for their baking abilities compete. They must focus on creativity when using grocery store breakfast dough and a lovely cut of lamb." + } + }, + { + "id": "IBMS_55332713", + "startMs": 1765596600000, + "endMs": 1765600200000, + "live": false, + "nzBsaRatingString": "PG", + "programme": { + "id": "mac_11864005", + "title": "The Floor Us", + "synopsis": "Hosted by Rob Lowe, 'The Floor' is the ultimate trivia battle in which 81 contestants stand on 81 squares on a massive game show floor, competing for a whopping grand prize." + } + }, + { + "id": "IBMS_55332716", + "startMs": 1765600200000, + "endMs": 1765602000000, + "live": false, + "nzBsaRatingString": "PG", + "programme": { + "id": "mac_11864008", + "title": "Suburgatory", + "synopsis": "Tessa becomes concerned when George lets himself go after his breakup with Dallas and calls George's dad (GEOFF PIERSON - Dexter) to help. Ryan (PARKER YOUNG) comes home to visit." + } + }, + { + "id": "IBMS_55332719", + "startMs": 1765602000000, + "endMs": 1765603800000, + "live": false, + "nzBsaRatingString": null, + "programme": { + "id": "mac_11864009", + "title": "Threenews", + "synopsis": "ThreeNews presents comprehensive coverage of global and local news." + } + }, + { + "id": "IBMS_55332722", + "startMs": 1765603800000, + "endMs": 1765605600000, + "live": false, + "nzBsaRatingString": "PGLC", + "programme": { + "id": "mac_11864010", + "title": "The Best Of The Middle", + "synopsis": "Unforeseen events threaten to ruin Sue's graduation, while Brick is offered the chance to skip a grade, and Axl worries that his girlfriend might be over him in the season finale." + } + }, + { + "id": "IBMS_55332725", + "startMs": 1765605600000, + "endMs": 1765612500000, + "live": false, + "nzBsaRatingString": "G", + "programme": { + "id": "mac_11864011", + "title": "Movie: The Polar Express" + } + }, + { + "id": "IBMS_55332728", + "startMs": 1765612500000, + "endMs": 1765620300000, + "live": false, + "nzBsaRatingString": "MVC", + "programme": { + "id": "mac_11433476", + "title": "Movie: Ghost Rider" + } + }, + { + "id": "IBMS_55332731", + "startMs": 1765620300000, + "endMs": 1765624200000, + "live": false, + "nzBsaRatingString": "16VLC", + "programme": { + "id": "mac_11864012", + "title": "Doom Patrol", + "synopsis": "To prevent the occurrence of the dark future, Rita tries to put together a plan; the team vote for Laura to be the new leader, much to Rita's dismay." + } + } + ] + } + }, + { + "id": "0101", + "title": "Sky Open", + "number": 4, + "tileImage": { + "uri": "https://images.skyone.co.nz/contentful/dcojl03mw8gy/7obDvDTY8JU6XSSCHaJFYt/8cb519f51acd9c9d4c728f596482cabd/Sky-Open-Main.png" + }, + "slotsForDay": { + "slots": [ + { + "id": "IBMS_53297323", + "startMs": 1765537200000, + "endMs": 1765539000000, + "live": false, + "nzBsaRatingString": "ML", + "programme": { + "id": "mac_11695159", + "title": "Election", + "synopsis": "Nathan helps Deidre finalise her birth plan. Reagan has her application reviewed by the Land Council. After a spirited debate, everyone eagerly awaits the results of the election." + } + }, + { + "id": "IBMS_53099435", + "startMs": 1765539000000, + "endMs": 1765558800000, + "live": false, + "nzBsaRatingString": "G", + "programme": { + "id": "mac_11317297", + "title": "Infomercials" + } + }, + { + "id": "IBMS_53429543", + "startMs": 1765558800000, + "endMs": 1765566000000, + "live": false, + "nzBsaRatingString": "G", + "programme": { + "id": "mac_11317297", + "title": "Infomercials" + } + }, + { + "id": "IBMS_54756205", + "startMs": 1765566000000, + "endMs": 1765567800000, + "live": false, + "nzBsaRatingString": "PG", + "programme": { + "id": "mac_11561226", + "title": "The Only Way This Can End", + "synopsis": "Cara's wild animal instincts have taken over, and she tears the house apart. Jake makes a perilous sea journey to recover the sealskin from its hiding place and return it to the cave." + } + }, + { + "id": "IBMS_54756030", + "startMs": 1765567800000, + "endMs": 1765568100000, + "live": false, + "nzBsaRatingString": "G", + "programme": { + "id": "mac_11623031", + "title": "One Summer's Morning", + "synopsis": "Lou goes for an unexpected ride whilst fast asleep on the back of a giant sloth." + } + }, + { + "id": "IBMS_54885284", + "startMs": 1765568100000, + "endMs": 1765569600000, + "live": false, + "nzBsaRatingString": "G", + "programme": { + "id": "mac_11694873", + "title": "Pasifika Unicorn", + "synopsis": "As the bakers create unique Pasifika unicorn banana cakes in the kitchen, the athletes go for goal in a football challenge. The teams compete for sugar, bananas, buttercream, and more." + } + }, + { + "id": "IBMS_55053017", + "startMs": 1765569600000, + "endMs": 1765570200000, + "live": false, + "nzBsaRatingString": "G", + "programme": { + "id": "mac_11676192", + "title": "Emily Hancock Siedeberg", + "synopsis": "Today, we learn about New Zealand's first female doctor - Emily Hancock Siedeberg - and the struggles she faced from her teachers, classmates, and even patients." + } + }, + { + "id": "IBMS_54874006", + "startMs": 1765570200000, + "endMs": 1765571700000, + "live": false, + "nzBsaRatingString": "G", + "programme": { + "id": "mac_11606354", + "title": "Sounds", + "synopsis": "Michal and Moe sing about sounds. Featuring the songs Siren Song, Shake a Shaker, Use Your Voice, and Fireworks Party." + } + }, + { + "id": "IBMS_53333918", + "startMs": 1765571700000, + "endMs": 1765573200000, + "live": false, + "nzBsaRatingString": "G", + "programme": { + "id": "mac_11659823", + "title": "Episode 38", + "synopsis": "Today on Kea Kids News: Kids inventing new ice cream! Runway robots live the dream! Raising lambs for Calf Club Day! And an urban circus comes to play!" + } + }, + { + "id": "IBMS_53092191", + "startMs": 1765573200000, + "endMs": 1765580400000, + "live": false, + "nzBsaRatingString": "G", + "programme": { + "id": "mac_11317297", + "title": "Infomercials" + } + }, + { + "id": "IBMS_54990207", + "startMs": 1765580400000, + "endMs": 1765584000000, + "live": false, + "nzBsaRatingString": "G", + "programme": { + "id": "mac_11813175", + "title": "Episode 36", + "synopsis": "Contestants are given a stack of cash at the start of the game, and they must answer questions correctly to hold on to it. With each incorrect answer, money is lost through a trapdoor." + } + }, + { + "id": "IBMS_54026362", + "startMs": 1765584000000, + "endMs": 1765587000000, + "live": false, + "nzBsaRatingString": "PGL", + "programme": { + "id": "mac_11809415", + "title": "Backyard Bbq", + "synopsis": "The MasterChef garden is decked out for a sunny backyard BBQ. Split into two teams, the remaining six duos must serve a horde of BBQ aficionados. S15 Ep12" + } + }, + { + "id": "IBMS_54026365", + "startMs": 1765587000000, + "endMs": 1765590000000, + "live": false, + "nzBsaRatingString": "PG", + "programme": { + "id": "mac_11809416", + "title": "Divide & Conquer", + "synopsis": "In the final Pressure Test of the season, each pair must replicate an appetizer from Joe's restaurant, an entree from Tiffany's restaurant, and a dessert from Gordon's restaurant. S15 Ep13" + } + }, + { + "id": "IBMS_54026368", + "startMs": 1765590000000, + "endMs": 1765593000000, + "live": false, + "nzBsaRatingString": "PGL", + "programme": { + "id": "mac_11809417", + "title": "The Wall", + "synopsis": "The final five duos face a MasterChef rite of passage. Both cooks must make the exact same dish whilst divided by a giant wall. Their only means of communication is shouting over it. S15 Ep14" + } + }, + { + "id": "IBMS_54862121", + "startMs": 1765593000000, + "endMs": 1765594800000, + "live": false, + "nzBsaRatingString": "G", + "programme": { + "id": "mac_11844193", + "title": "Search4Hurt: S5 EP2", + "synopsis": "Search4Hurt returns to be even more gruelling and entertaining than ever before as another team of everyday Aussie health and fitness enthusiasts push themselves to the ultimate limits of human potential through a range of epic training sessions," + } + }, + { + "id": "IBMS_54990231", + "startMs": 1765594800000, + "endMs": 1765596300000, + "live": false, + "nzBsaRatingString": "PGL", + "programme": { + "id": "mac_11826907", + "title": "What to Do Next", + "synopsis": "Katelyn gets a big surprise when she least expects it. Jorja is targeted in the quarter-final battle with South Africa. Later, the women reflect on the World Cup and what's next." + } + }, + { + "id": "IBMS_54986941", + "startMs": 1765596300000, + "endMs": 1765602300000, + "live": false, + "nzBsaRatingString": "G", + "programme": { + "id": "mac_11856939", + "title": "NZ Rugby Awards", + "synopsis": "Coverage from the 2025 New Zealand Rugby Awards. Join us as we celebrate all the big winners from the 2025 season." + } + }, + { + "id": "IBMS_54725683", + "startMs": 1765602300000, + "endMs": 1765604100000, + "live": false, + "nzBsaRatingString": "G", + "programme": { + "id": "mac_11815466", + "title": "Episode 102", + "synopsis": "Hosted by Mark Humphries and Andrew Rochford, contestants answer questions across a range of topics. However, unlike conventional game shows, the aim is to score as few points as possible." + } + }, + { + "id": "IBMS_54725692", + "startMs": 1765604100000, + "endMs": 1765605900000, + "live": false, + "nzBsaRatingString": "G", + "programme": { + "id": "mac_11815467", + "title": "Episode 103", + "synopsis": "Hosted by Mark Humphries and Andrew Rochford, contestants answer questions across a range of topics. However, unlike conventional game shows, the aim is to score as few points as possible." + } + }, + { + "id": "IBMS_54571435", + "startMs": 1765605900000, + "endMs": 1765607700000, + "live": false, + "nzBsaRatingString": "PGL", + "programme": { + "id": "mac_11835203", + "title": "Episode 6", + "synopsis": "Wild Cooking. Analiese faces her biggest challenge yet - slaughtering the two pigs she's reared for meat. Analiese is cheered up by visits from friends from her old life on the mainland. S1 Ep6" + } + }, + { + "id": "IBMS_54494702", + "startMs": 1765607700000, + "endMs": 1765611000000, + "live": false, + "nzBsaRatingString": "G", + "programme": { + "id": "mac_11812920", + "title": "Episode 1", + "synopsis": "Season 2 premiere: Hosted by Ant and Dec, Limitless Win has contestants climb a money ladder that never, ever ends. This Christmas special features David Walliams, Jimmy Carr, and Katherine Ryan." + } + }, + { + "id": "IBMS_54760408", + "startMs": 1765611000000, + "endMs": 1765614600000, + "live": false, + "nzBsaRatingString": "MVSL", + "programme": { + "id": "mac_11816508", + "title": "Oysters and Champagne", + "synopsis": "Diana recovers in Italy with Mosley, Unity is befriended by Hitler, and Jessica's obsession with Esmond grows. Meanwhile, Nancy hopes her husband has turned over a new leaf." + } + }, + { + "id": "IBMS_54812007", + "startMs": 1765614600000, + "endMs": 1765621800000, + "live": false, + "nzBsaRatingString": "16VLC", + "programme": { + "id": "mac_10047996", + "title": "Get Shorty" + } + }, + { + "id": "IBMS_54812426", + "startMs": 1765621800000, + "endMs": 1765623600000, + "live": false, + "nzBsaRatingString": "MVSLC", + "programme": { + "id": "mac_11597983", + "title": "Episode 1", + "synopsis": "Desperate for a child, Allison and Deacon rob their dodgy boss, Alfie, to pay for IVF. Now, they just have to avoid getting caught." + } + }, + { + "id": "IBMS_54812429", + "startMs": 1765623600000, + "endMs": 1765625400000, + "live": false, + "nzBsaRatingString": "MVSLC", + "programme": { + "id": "mac_11597984", + "title": "Episode 2", + "synopsis": "As Allison starts IVF, pressure mounts to turn the stolen bitcoin into usable money. Deacon asks his Uncle Kethan to help launder it. HMRC launch an investigation into some suspicious finances." + } + } + ] + } + }, + { + "id": "SKY1", + "title": "Sky 5", + "number": 5, + "tileImage": { + "uri": "https://images.skyone.co.nz/contentful/dcojl03mw8gy/6i8PqlDIyLN6Qe5Y9hlko/3237b19cb96f1439627c0f243df505b7/5.png" + }, + "slotsForDay": { + "slots": [ + { + "id": "IBMS_54772852", + "startMs": 1765537200000, + "endMs": 1765540800000, + "live": false, + "nzBsaRatingString": "18VSLC", + "programme": { + "id": "mac_11609695", + "title": "Ebony and Ivory", + "synopsis": "Franklin confronts Teddy's father. Leon solidifies control of the projects." + } + }, + { + "id": "IBMS_54772327", + "startMs": 1765540800000, + "endMs": 1765543800000, + "live": false, + "nzBsaRatingString": "MV", + "programme": { + "id": "mac_10815297", + "title": "See Something", + "synopsis": "When a Muslim grad student is brutally murdered, Stone and the team arrest his friend who claims he murdered him to prevent a terrorist attack. The jury must decide if he’s a killer or a hero." + } + }, + { + "id": "IBMS_54777582", + "startMs": 1765543800000, + "endMs": 1765545300000, + "live": false, + "nzBsaRatingString": "PGL", + "programme": { + "id": "mac_11590224", + "title": "Lopez Vs. Los Doyers", + "synopsis": "After joining George's fantasy baseball league, Quinten hits a home run with the guys but strikes out with Mayan. Chance finds out that Rosie is using him in her insurance ads." + } + }, + { + "id": "IBMS_54515437", + "startMs": 1765545300000, + "endMs": 1765548300000, + "live": false, + "nzBsaRatingString": "MV", + "programme": { + "id": "mac_10064716", + "title": "Yo, Adrian", + "synopsis": "When a dying boxing referee makes a confession about a 1976 fight, the team reopens the case in which a fighter took a heavy beating in the match and died only moments afterwards. S2 Ep12" + } + }, + { + "id": "IBMS_54767567", + "startMs": 1765548300000, + "endMs": 1765551300000, + "live": false, + "nzBsaRatingString": "M", + "programme": { + "id": "mac_10021511", + "title": "Journey To The Himalayas", + "synopsis": "Romance blooms between Doc and Morales. Matty's attempts to make amends for past misdeeds have upsetting outcomes; Jimmy has an unexpected and unpleasant visit with his bookie. S1 Ep12" + } + }, + { + "id": "IBMS_54636195", + "startMs": 1765551300000, + "endMs": 1765554900000, + "live": false, + "nzBsaRatingString": "PGL", + "programme": { + "id": "mac_11675322", + "title": "Make Hay While The Sun Shines", + "synopsis": "It's the end of the Haigh's first year on the farm, and Anthony is making more with his hay sales than he ever has before. Danyelle prepares to open her tourist park." + } + }, + { + "id": "IBMS_54356259", + "startMs": 1765554900000, + "endMs": 1765557900000, + "live": false, + "nzBsaRatingString": "MVSC", + "programme": { + "id": "mac_11598318", + "title": "Patriot Game", + "synopsis": "An operative kills all but one of the employees at a marine biology research group. McCall and the team discover a connection between the murders and a secret CIA programme." + } + }, + { + "id": "IBMS_54773948", + "startMs": 1765557900000, + "endMs": 1765560600000, + "live": false, + "nzBsaRatingString": "18VC", + "programme": { + "id": "mac_10521089", + "title": "Love Hurts", + "synopsis": "Joe reaches out to Ryan to demand Claire's location. Joe makes it clear he'll go to any length to lure his ex-wife out of FBI custody." + } + }, + { + "id": "IBMS_54777686", + "startMs": 1765560600000, + "endMs": 1765562400000, + "live": false, + "nzBsaRatingString": "PGL", + "programme": { + "id": "mac_11590224", + "title": "Lopez Vs. Los Doyers", + "synopsis": "After joining George's fantasy baseball league, Quinten hits a home run with the guys but strikes out with Mayan. Chance finds out that Rosie is using him in her insurance ads." + } + }, + { + "id": "IBMS_54772525", + "startMs": 1765562400000, + "endMs": 1765565700000, + "live": false, + "nzBsaRatingString": "MV", + "programme": { + "id": "mac_10815297", + "title": "See Something", + "synopsis": "When a Muslim grad student is brutally murdered, Stone and the team arrest his friend who claims he murdered him to prevent a terrorist attack. The jury must decide if he’s a killer or a hero." + } + }, + { + "id": "IBMS_54514541", + "startMs": 1765565700000, + "endMs": 1765569600000, + "live": false, + "nzBsaRatingString": "16VSLC", + "programme": { + "id": "mac_11834437", + "title": "The Calling Back", + "synopsis": "A Cheyenne woman is assaulted on the reservation by oil rig workers. Both Mathias and Walt find themselves unable to pursue the suspects due to jurisdiction issues." + } + }, + { + "id": "IBMS_54515764", + "startMs": 1765569600000, + "endMs": 1765572900000, + "live": false, + "nzBsaRatingString": "MV", + "programme": { + "id": "mac_10064716", + "title": "Yo, Adrian", + "synopsis": "When a dying boxing referee makes a confession about a 1976 fight, the team reopens the case in which a fighter took a heavy beating in the match and died only moments afterwards. S2 Ep12" + } + }, + { + "id": "IBMS_54772875", + "startMs": 1765572900000, + "endMs": 1765576800000, + "live": false, + "nzBsaRatingString": "18VSLC", + "programme": { + "id": "mac_11609695", + "title": "Ebony and Ivory", + "synopsis": "Franklin confronts Teddy's father. Leon solidifies control of the projects." + } + }, + { + "id": "IBMS_54632127", + "startMs": 1765576800000, + "endMs": 1765580400000, + "live": false, + "nzBsaRatingString": "M", + "programme": { + "id": "mac_10021511", + "title": "Journey To The Himalayas", + "synopsis": "Romance blooms between Doc and Morales. Matty's attempts to make amends for past misdeeds have upsetting outcomes; Jimmy has an unexpected and unpleasant visit with his bookie. S1 Ep12" + } + }, + { + "id": "IBMS_54774088", + "startMs": 1765580400000, + "endMs": 1765583700000, + "live": false, + "nzBsaRatingString": "18VC", + "programme": { + "id": "mac_10521089", + "title": "Love Hurts", + "synopsis": "Joe reaches out to Ryan to demand Claire's location. Joe makes it clear he'll go to any length to lure his ex-wife out of FBI custody." + } + }, + { + "id": "IBMS_54782388", + "startMs": 1765583700000, + "endMs": 1765587000000, + "live": false, + "nzBsaRatingString": "16VS", + "programme": { + "id": "mac_11592969", + "title": "Pilot", + "synopsis": "Bruce Wayne is dead. His adopted son and the children of some of Batman's enemies are framed for the murder. Now, the unlikely group must work together to uncover the truth." + } + }, + { + "id": "IBMS_54636217", + "startMs": 1765587000000, + "endMs": 1765590600000, + "live": false, + "nzBsaRatingString": "PGL", + "programme": { + "id": "mac_11675322", + "title": "Make Hay While The Sun Shines", + "synopsis": "It's the end of the Haigh's first year on the farm, and Anthony is making more with his hay sales than he ever has before. Danyelle prepares to open her tourist park." + } + }, + { + "id": "IBMS_54522598", + "startMs": 1765590600000, + "endMs": 1765592700000, + "live": false, + "nzBsaRatingString": "16SL", + "programme": { + "id": "mac_11611931", + "title": "Wisconsin", + "synopsis": "Ally joins the tour to rekindle an old flame, while Dave looks to ignite a new one." + } + }, + { + "id": "IBMS_54522599", + "startMs": 1765592700000, + "endMs": 1765595100000, + "live": false, + "nzBsaRatingString": "16SL", + "programme": { + "id": "mac_11611932", + "title": "The Storm", + "synopsis": "Dave gets a lesson in Southern hospitality, courtesy of his number one fan." + } + }, + { + "id": "IBMS_54776916", + "startMs": 1765595100000, + "endMs": 1765598700000, + "live": false, + "nzBsaRatingString": "16VC", + "programme": { + "id": "mac_11716380", + "title": "Episode 2", + "synopsis": "The police continue to investigate Julian Webb's death. After four years on the run, Lee Wyatt begins to piece together that he has been a victim of Dena's manipulative scheme. Pt 2 of 3" + } + }, + { + "id": "IBMS_54521700", + "startMs": 1765598700000, + "endMs": 1765602300000, + "live": false, + "nzBsaRatingString": "PG", + "programme": { + "id": "mac_11592957", + "title": "Rise And Grind", + "synopsis": "Crew members compete in pairs to shrink wrap a large container. As the winner of the last Individual Challenge, Jorge has the power to pick each of the teams." + } + }, + { + "id": "IBMS_54521900", + "startMs": 1765602300000, + "endMs": 1765605900000, + "live": false, + "nzBsaRatingString": "16VSLC", + "programme": { + "id": "mac_11695302", + "title": "A Grapefruit Worth 20 Million", + "synopsis": "Desperate to retrieve his shipment, Declan must forge an alliance with the head of the Devil's Kings biker gang. Teresa and Christian reveal the next phase of their plan." + } + }, + { + "id": "IBMS_54522141", + "startMs": 1765605900000, + "endMs": 1765609200000, + "live": false, + "nzBsaRatingString": "MV", + "programme": { + "id": "mac_10815303", + "title": "Comma", + "synopsis": "When a college co-ed is killed in an escape room, a notorious classmate is suspected for the murder. The trial puts the Second Amendment to the test." + } + }, + { + "id": "IBMS_54636347", + "startMs": 1765609200000, + "endMs": 1765612500000, + "live": false, + "nzBsaRatingString": "16VSLC", + "programme": { + "id": "mac_11378005", + "title": "Tiger", + "synopsis": "The investigation into the kidnapping of a Cincinnati father grows more complex when the team realise the entire family is missing." + } + }, + { + "id": "IBMS_54636459", + "startMs": 1765612500000, + "endMs": 1765616400000, + "live": false, + "nzBsaRatingString": "16VSLC", + "programme": { + "id": "mac_11629514", + "title": "I See The Black Light", + "synopsis": "After a fatal error, the Mayans navigate the dangers of their new trade." + } + }, + { + "id": "IBMS_54395187", + "startMs": 1765616400000, + "endMs": 1765619700000, + "live": false, + "nzBsaRatingString": "16VLC", + "programme": { + "id": "mac_11821233", + "title": "Second Chance", + "synopsis": "Bo and Tate's attempt to start fresh on their own is short-lived when Bo's intense visions of Dani pull them back into danger. Skouras turns to Winter and Channing for help. S1 Ep12" + } + }, + { + "id": "IBMS_54776922", + "startMs": 1765619700000, + "endMs": 1765623300000, + "live": false, + "nzBsaRatingString": "16VC", + "programme": { + "id": "mac_11716380", + "title": "Episode 2", + "synopsis": "The police continue to investigate Julian Webb's death. After four years on the run, Lee Wyatt begins to piece together that he has been a victim of Dena's manipulative scheme. Pt 2 of 3" + } + }, + { + "id": "IBMS_54521804", + "startMs": 1765623300000, + "endMs": 1765626300000, + "live": false, + "nzBsaRatingString": "PG", + "programme": { + "id": "mac_11592957", + "title": "Rise And Grind", + "synopsis": "Crew members compete in pairs to shrink wrap a large container. As the winner of the last Individual Challenge, Jorge has the power to pick each of the teams." + } + } + ] + } + }, + { + "id": "SKY2", + "title": "Vibe", + "number": 6, + "tileImage": { + "uri": "https://images.skyone.co.nz/contentful/dcojl03mw8gy/4C5W3bvWxMZaosAYhc4gOF/5bb3538094e37589754caa1ca160a050/Vibe.png" + }, + "slotsForDay": { + "slots": [ + { + "id": "IBMS_54858930", + "startMs": 1765534800000, + "endMs": 1765537800000, + "live": false, + "nzBsaRatingString": "MVL", + "programme": { + "id": "mac_11602296", + "title": "Best Served Cold", + "synopsis": "When a man is shot during a supermarket opening, Morales suspects the crime is related to an unsolved case she was pressured to drop years earlier." + } + }, + { + "id": "IBMS_54963586", + "startMs": 1765537800000, + "endMs": 1765541400000, + "live": false, + "nzBsaRatingString": "PGC", + "programme": { + "id": "mac_11727049", + "title": "London Gals", + "synopsis": "Jordan, Alexis, Chantel, and Riianna are fabulous London women with high standards for the men they date. Will personal trainer Fabrice, boxer Mac, or stylist Alex tick their boxes?" + } + }, + { + "id": "IBMS_54766550", + "startMs": 1765541400000, + "endMs": 1765545000000, + "live": false, + "nzBsaRatingString": "MVC", + "programme": { + "id": "mac_11047456", + "title": "Post Mortem", + "synopsis": "Jane and Maura team up with a seemingly paranoid postal inspector to probe the death of a mailman." + } + }, + { + "id": "IBMS_54766705", + "startMs": 1765545000000, + "endMs": 1765549800000, + "live": false, + "nzBsaRatingString": "18VSLC", + "programme": { + "id": "mac_11368759", + "title": "The World Turned Upside Down", + "synopsis": "A dysentery epidemic spreads on the Ridge, and Claire falls deathly ill. The Christies arrive and drop a bombshell which sparks nefarious rumours." + } + }, + { + "id": "IBMS_54766894", + "startMs": 1765549800000, + "endMs": 1765553400000, + "live": false, + "nzBsaRatingString": "MVSLC", + "programme": { + "id": "mac_11613082", + "title": "Episode 5", + "synopsis": "Events in New York force Logan to quickly leave America, and he starts to adjust to a more meagre life in England. Pt 5 of 6" + } + }, + { + "id": "IBMS_55390920", + "startMs": 1765553400000, + "endMs": 1765557000000, + "live": false, + "nzBsaRatingString": "PGC", + "programme": { + "id": "mac_11727048", + "title": "Great Missenden Mistresses", + "synopsis": "Sandy, Louise, Jane, and Nicky are looking for a genuine connection. Will Essex boy Paul, firefighter Tai, or fitness coach Danny prove to be a match?" + } + }, + { + "id": "IBMS_54944102", + "startMs": 1765557000000, + "endMs": 1765560300000, + "live": false, + "nzBsaRatingString": "G", + "programme": { + "id": "mac_11576524", + "title": "Sally Ogle", + "synopsis": "Sally Ogle leads Mathew on a journey of fighting for every square metre of success, a story inspirational to a younger generation facing big challenges in the housing market." + } + }, + { + "id": "IBMS_54945938", + "startMs": 1765560300000, + "endMs": 1765563300000, + "live": false, + "nzBsaRatingString": "MSLC", + "programme": { + "id": "mac_11602399", + "title": "No Place Like Home", + "synopsis": "Maggie and Gary explore the possibility of a home birth, while Regina and Rome adjust to life with their new roommate. Katherine and Greta reach a crossroads in their relationship." + } + }, + { + "id": "IBMS_54945670", + "startMs": 1765563300000, + "endMs": 1765566600000, + "live": false, + "nzBsaRatingString": "MVL", + "programme": { + "id": "mac_11602296", + "title": "Best Served Cold", + "synopsis": "When a man is shot during a supermarket opening, Morales suspects the crime is related to an unsolved case she was pressured to drop years earlier." + } + }, + { + "id": "IBMS_54963830", + "startMs": 1765566600000, + "endMs": 1765569900000, + "live": false, + "nzBsaRatingString": "PGC", + "programme": { + "id": "mac_11727049", + "title": "London Gals", + "synopsis": "Jordan, Alexis, Chantel, and Riianna are fabulous London women with high standards for the men they date. Will personal trainer Fabrice, boxer Mac, or stylist Alex tick their boxes?" + } + }, + { + "id": "IBMS_54767391", + "startMs": 1765569900000, + "endMs": 1765573200000, + "live": false, + "nzBsaRatingString": "MVC", + "programme": { + "id": "mac_11047456", + "title": "Post Mortem", + "synopsis": "Jane and Maura team up with a seemingly paranoid postal inspector to probe the death of a mailman." + } + }, + { + "id": "IBMS_54767306", + "startMs": 1765573200000, + "endMs": 1765578000000, + "live": false, + "nzBsaRatingString": "18VSLC", + "programme": { + "id": "mac_11368759", + "title": "The World Turned Upside Down", + "synopsis": "A dysentery epidemic spreads on the Ridge, and Claire falls deathly ill. The Christies arrive and drop a bombshell which sparks nefarious rumours." + } + }, + { + "id": "IBMS_54767511", + "startMs": 1765578000000, + "endMs": 1765581300000, + "live": false, + "nzBsaRatingString": "MVSLC", + "programme": { + "id": "mac_11613082", + "title": "Episode 5", + "synopsis": "Events in New York force Logan to quickly leave America, and he starts to adjust to a more meagre life in England. Pt 5 of 6" + } + }, + { + "id": "IBMS_54947275", + "startMs": 1765581300000, + "endMs": 1765584900000, + "live": false, + "nzBsaRatingString": "PGC", + "programme": { + "id": "mac_11727046", + "title": "Warm Welshies", + "synopsis": "Single mums Amy, Heather, Becky, and Delyth are all from North Wales. Will free-spirited Ade, single dad Brian, or personal trainer Scott be a match for these mates?" + } + }, + { + "id": "IBMS_54947276", + "startMs": 1765584900000, + "endMs": 1765588500000, + "live": false, + "nzBsaRatingString": "G", + "programme": { + "id": "mac_11576524", + "title": "Sally Ogle", + "synopsis": "Sally Ogle leads Mathew on a journey of fighting for every square metre of success, a story inspirational to a younger generation facing big challenges in the housing market." + } + }, + { + "id": "IBMS_54772986", + "startMs": 1765588500000, + "endMs": 1765592400000, + "live": false, + "nzBsaRatingString": "16VSLC", + "programme": { + "id": "mac_11443567", + "title": "A Beast, No More", + "synopsis": "When his image is publicly bashed, Eddie must decide whether to turn the other cheek or use Vera to fire back. An old Meyerist ritual unearths repressed memories for Cal." + } + }, + { + "id": "IBMS_54772987", + "startMs": 1765592400000, + "endMs": 1765596000000, + "live": false, + "nzBsaRatingString": "16VSLC", + "programme": { + "id": "mac_11443568", + "title": "Locusts", + "synopsis": "Eddie tries to save the soul of a man who has been terrorising the compound. Vera struggles between loyalty to her mother and her feelings for Eddie." + } + }, + { + "id": "IBMS_54772988", + "startMs": 1765596000000, + "endMs": 1765599900000, + "live": false, + "nzBsaRatingString": "16VSLC", + "programme": { + "id": "mac_11443569", + "title": "De Rerum Natura", + "synopsis": "A bomb threat on the compound has everyone on edge, and Eddie feels responsible for it. Sarah discovers that The Ladder may have had another author - a woman who was forcefully silenced." + } + }, + { + "id": "IBMS_54772989", + "startMs": 1765599900000, + "endMs": 1765603500000, + "live": false, + "nzBsaRatingString": "16VSLC", + "programme": { + "id": "mac_11443570", + "title": "Pageantry", + "synopsis": "After learning the dark truth about Steve, Sarah pulls Summer out of the annual pageant. To help further Lilith's prophecy, Vera plans a US tour to spread Meyerism." + } + }, + { + "id": "IBMS_54772990", + "startMs": 1765603500000, + "endMs": 1765607400000, + "live": false, + "nzBsaRatingString": "16VSLC", + "programme": { + "id": "mac_11443571", + "title": "Messiah", + "synopsis": "Sarah's research draws her closer to Professor Neill. However, a sudden death brings the family together and makes Sarah long for her faith. Harold returns for his championship rings." + } + }, + { + "id": "IBMS_54288666", + "startMs": 1765607400000, + "endMs": 1765611000000, + "live": false, + "nzBsaRatingString": "MVSL", + "programme": { + "id": "mac_11641399", + "title": "Two Wills", + "synopsis": "In the midst of Manju's health crisis, Ainsley is shocked to learn her father has died and left her a life-changing inheritance. Colin and Ben investigate Ed and Heather's relationship status." + } + }, + { + "id": "IBMS_54950553", + "startMs": 1765611000000, + "endMs": 1765617600000, + "live": false, + "nzBsaRatingString": "PG", + "programme": { + "id": "mac_11844232", + "title": "Happy Howlidays" + } + }, + { + "id": "IBMS_54773384", + "startMs": 1765617600000, + "endMs": 1765621500000, + "live": false, + "nzBsaRatingString": "16VSLC", + "programme": { + "id": "mac_11443567", + "title": "A Beast, No More", + "synopsis": "When his image is publicly bashed, Eddie must decide whether to turn the other cheek or use Vera to fire back. An old Meyerist ritual unearths repressed memories for Cal." + } + }, + { + "id": "IBMS_54773385", + "startMs": 1765621500000, + "endMs": 1765625100000, + "live": false, + "nzBsaRatingString": "16VSLC", + "programme": { + "id": "mac_11443568", + "title": "Locusts", + "synopsis": "Eddie tries to save the soul of a man who has been terrorising the compound. Vera struggles between loyalty to her mother and her feelings for Eddie." + } + } + ] + } + }, + { + "id": "UKTV", + "title": "BBC UKTV", + "number": 7, + "tileImage": { + "uri": "https://images.skyone.co.nz/contentful/dcojl03mw8gy/4n9hNuA8TUWu0JNevZajLp/bc6ad1c8ae8e73503415ce690892d411/BBC_uktv.png" + }, + "slotsForDay": { + "slots": [ + { + "id": "IBMS_55284424", + "startMs": 1765535700000, + "endMs": 1765537800000, + "live": false, + "nzBsaRatingString": "M", + "programme": { + "id": "mac_11796300", + "title": "Qi", + "synopsis": "Jam, Jelly and Juice: Stephen Fry looks at jam, jelly and juice. With Jo Brand, Liza Tarbuck, Sue Perkins and Alan Davies.S11E2" + } + }, + { + "id": "IBMS_55284425", + "startMs": 1765537800000, + "endMs": 1765539600000, + "live": false, + "nzBsaRatingString": "PG", + "programme": { + "id": "mac_11831224", + "title": "Richard Osman's House Of Games", + "synopsis": "Episode 55: Gary Delaney, Rose Matafeo, Valerie Singleton and Rav Wilding face their final set of games and an overall champion is crowned.S3E55" + } + }, + { + "id": "IBMS_55284426", + "startMs": 1765539600000, + "endMs": 1765541400000, + "live": false, + "nzBsaRatingString": "PG", + "programme": { + "id": "mac_11779623", + "title": "Would I Lie To You?", + "synopsis": "Episode 7: Rob Brydon and team captains Lee Mack and David Mitchell are joined by guests Lucy Beaumont, Anton Du Beke, Desiree Burch and Ralf Little.S16E7" + } + }, + { + "id": "IBMS_55284427", + "startMs": 1765541400000, + "endMs": 1765547400000, + "live": false, + "nzBsaRatingString": "M", + "programme": { + "id": "mac_11777303", + "title": "Midsomer Murders", + "synopsis": "Let Us Prey: Barnaby and Nelson investigate a series of murders in Midsomer St Claire that seem to be inspired by macabre images on a medieval fresco recently discovered in the church crypt.S16E2" + } + }, + { + "id": "IBMS_55284428", + "startMs": 1765547400000, + "endMs": 1765551000000, + "live": false, + "nzBsaRatingString": "PG", + "programme": { + "id": "mac_11739182", + "title": "Who Do You Think You Are? Australia", + "synopsis": "Derryn Hinch: Journalist Derryn Hinch uncovers the truth about the identity of his mother's father and investigates the paternal side of his family's war history.S14E3" + } + }, + { + "id": "IBMS_55284429", + "startMs": 1765551000000, + "endMs": 1765554000000, + "live": false, + "nzBsaRatingString": "M", + "programme": { + "id": "mac_11831187", + "title": "8 Out Of 10 Cats Does Countdown", + "synopsis": "Episode 3: Jon Richardson and Joe Wilkinson take on Lee Mack and Katherine Ryan. With Brett Domino.S14E3" + } + }, + { + "id": "IBMS_55284430", + "startMs": 1765554000000, + "endMs": 1765557000000, + "live": false, + "nzBsaRatingString": "M", + "programme": { + "id": "mac_11784603", + "title": "8 Out Of 10 Cats Does Countdown", + "synopsis": "Episode 4: Sean Lock and Harry Hill take on Jon Richardson and Rosie Jones.S14E4" + } + }, + { + "id": "IBMS_55284431", + "startMs": 1765557000000, + "endMs": 1765558800000, + "live": false, + "nzBsaRatingString": "PG", + "programme": { + "id": "mac_11779577", + "title": "Would I Lie To You?", + "synopsis": "Episode 3: Rob Brydon and team captains Lee Mack and David Mitchell are joined by guests Shirley Ballas, Steven Bartlett, Josie Gibson and Chris McCausland.S16E3" + } + }, + { + "id": "IBMS_55284432", + "startMs": 1765558800000, + "endMs": 1765560600000, + "live": false, + "nzBsaRatingString": "M", + "programme": { + "id": "mac_11796364", + "title": "Qi", + "synopsis": "Kaleidoscope: Stephen Fry looks at a complete kaleidoscope of K-topics with Liza Tarbuck, Susan Calman, Sandi Toksvig and Alan Davies.S12E16" + } + }, + { + "id": "IBMS_55284433", + "startMs": 1765560600000, + "endMs": 1765562400000, + "live": false, + "nzBsaRatingString": "M", + "programme": { + "id": "mac_11738878", + "title": "Qi", + "synopsis": "Gravity: Stephen Fry gets to grips with gravity, with help from Barry Humphries, Bill Bailey, Rich Hall and Alan Davies.S8E4" + } + }, + { + "id": "IBMS_55284434", + "startMs": 1765562400000, + "endMs": 1765564200000, + "live": false, + "nzBsaRatingString": "PG", + "programme": { + "id": "mac_11831220", + "title": "Richard Osman's House Of Games", + "synopsis": "Episode 51: Gary Delaney, Rose Matafeo, Valerie Singleton and Rav Wilding test their general knowledge skills on this week's House of Games.S3E51" + } + }, + { + "id": "IBMS_55284435", + "startMs": 1765564200000, + "endMs": 1765566000000, + "live": false, + "nzBsaRatingString": "PG", + "programme": { + "id": "mac_11831221", + "title": "Richard Osman's House Of Games", + "synopsis": "Episode 52: Gary Delaney, Rose Matafeo, Valerie Singleton and Rav Wilding compete in more entertaining games.S3E52" + } + }, + { + "id": "IBMS_55284436", + "startMs": 1765566000000, + "endMs": 1765567800000, + "live": false, + "nzBsaRatingString": "PG", + "programme": { + "id": "mac_11831222", + "title": "Richard Osman's House Of Games", + "synopsis": "Episode 53: Gary Delaney, Rose Matafeo, Valerie Singleton and Rav Wilding continue to test their general knowledge skills.S3E53" + } + }, + { + "id": "IBMS_55284437", + "startMs": 1765567800000, + "endMs": 1765569600000, + "live": false, + "nzBsaRatingString": "PG", + "programme": { + "id": "mac_11831223", + "title": "Richard Osman's House Of Games", + "synopsis": "Episode 54: Gary Delaney, Rose Matafeo, Valerie Singleton and Rav Wilding take on their penultimate set of games.S3E54" + } + }, + { + "id": "IBMS_55284438", + "startMs": 1765569600000, + "endMs": 1765571700000, + "live": false, + "nzBsaRatingString": "PG", + "programme": { + "id": "mac_11831224", + "title": "Richard Osman's House Of Games", + "synopsis": "Episode 55: Gary Delaney, Rose Matafeo, Valerie Singleton and Rav Wilding face their final set of games and an overall champion is crowned.S3E55" + } + }, + { + "id": "IBMS_55284439", + "startMs": 1765571700000, + "endMs": 1765575000000, + "live": false, + "nzBsaRatingString": "PG", + "programme": { + "id": "mac_11853456", + "title": "Dragons' Den", + "synopsis": "Episode 11: Entrepreneurs pitch their business ideas to millionaires willing to invest their own cash.S22E11" + } + }, + { + "id": "IBMS_55284440", + "startMs": 1765575000000, + "endMs": 1765578000000, + "live": false, + "nzBsaRatingString": "PG", + "programme": { + "id": "mac_11784687", + "title": "Shakespeare & Hathaway", + "synopsis": "O Thou Invisible Spirit of Wine: Private Investigators-When paranormal activity is reported in a Tudor pub, old family feuds are brought to a head and it looks like Frank and Lu have another mystery on their hands.S3E9" + } + }, + { + "id": "IBMS_55284441", + "startMs": 1765578000000, + "endMs": 1765581000000, + "live": false, + "nzBsaRatingString": "PG", + "programme": { + "id": "mac_11784694", + "title": "Shakespeare & Hathaway", + "synopsis": "Teach Me, Dear Creature: Private Investigators-Frank and Lu delve into the ultra-competitive world of private tutoring, while a reunion with an old RADA mate presents Sebastian with a choice about his future.S3E10" + } + }, + { + "id": "IBMS_55284442", + "startMs": 1765581000000, + "endMs": 1765584300000, + "live": false, + "nzBsaRatingString": "M", + "programme": { + "id": "mac_11831187", + "title": "8 Out Of 10 Cats Does Countdown", + "synopsis": "Episode 3: Jon Richardson and Joe Wilkinson take on Lee Mack and Katherine Ryan. With Brett Domino.S14E3" + } + }, + { + "id": "IBMS_55284443", + "startMs": 1765584300000, + "endMs": 1765587600000, + "live": false, + "nzBsaRatingString": "M", + "programme": { + "id": "mac_11784603", + "title": "8 Out Of 10 Cats Does Countdown", + "synopsis": "Episode 4: Sean Lock and Harry Hill take on Jon Richardson and Rosie Jones.S14E4" + } + }, + { + "id": "IBMS_55284444", + "startMs": 1765587600000, + "endMs": 1765593900000, + "live": false, + "nzBsaRatingString": "PG", + "programme": { + "id": "mac_11853453", + "title": "McDonald & Dodds", + "synopsis": "The War of The Rose: A social media influencer, Rose Boleyn, elects to have plastic surgery at a clinic run by soon to be divorced couple Al and Mariel. After tragedy strikes, McDonald and Dodds are brought in.S2E3" + } + }, + { + "id": "IBMS_55284445", + "startMs": 1765593900000, + "endMs": 1765597500000, + "live": false, + "nzBsaRatingString": "PG", + "programme": { + "id": "mac_11838500", + "title": "Antiques Roadshow", + "synopsis": "Helmingham Hall 2: Fiona Bruce and the team make a return visit to Helmingham Hall in Suffolk, a Tudor manor house with working drawbridges and stunning gardens.S40E12" + } + }, + { + "id": "IBMS_55284446", + "startMs": 1765597500000, + "endMs": 1765600800000, + "live": false, + "nzBsaRatingString": "PG", + "programme": { + "id": "mac_11739103", + "title": "Father Brown", + "synopsis": "The Final Devotion: Father Brown joins forces with Flambeau to search for a lost treasure in a 15th-century castle.S9E5" + } + }, + { + "id": "IBMS_55284447", + "startMs": 1765600800000, + "endMs": 1765604100000, + "live": false, + "nzBsaRatingString": "PG", + "programme": { + "id": "mac_11779641", + "title": "Perfect Pub Walks With Bill Bailey", + "synopsis": "Episode 2: Bill and Sir Trevor McDonald take in Dedham Vale, the Essex-Suffolk border and the Stour Estuary, as they explore the home of artist John Constable and chat about Trevor's esteemed career.S1E2" + } + }, + { + "id": "IBMS_55284448", + "startMs": 1765604100000, + "endMs": 1765607700000, + "live": false, + "nzBsaRatingString": "PG", + "programme": { + "id": "mac_11832383", + "title": "The Emerald Isles With Ardal O'hanlon", + "synopsis": "Episode 1: Ardal's journey begins on Rathlin Island, followed by Tory and Arranmore. An archaeological find lies in wait, and sustainability proves key for island living today.S1E1" + } + }, + { + "id": "IBMS_55284449", + "startMs": 1765607700000, + "endMs": 1765611000000, + "live": false, + "nzBsaRatingString": "M", + "programme": { + "id": "mac_11853452", + "title": "The King's Guard: Serving The Crown", + "synopsis": "Episode 6: As another year for the Household Division draws to a close, this has been one of the most remarkable and busiest years on record.S1E6" + } + }, + { + "id": "IBMS_55284450", + "startMs": 1765611000000, + "endMs": 1765617300000, + "live": false, + "nzBsaRatingString": "M", + "programme": { + "id": "mac_11777265", + "title": "Midsomer Murders", + "synopsis": "The Christmas Haunting: It's Christmas and detective Charlie Nelson moves into Midsomer. The new duo investigate a murder in Morton Shallows where a man is fatally stabbed during a ghost-hunting party.S16E1" + } + }, + { + "id": "IBMS_55284451", + "startMs": 1765617300000, + "endMs": 1765620900000, + "live": false, + "nzBsaRatingString": "M", + "programme": { + "id": "mac_11738920", + "title": "New Tricks", + "synopsis": "Bank Robbery: The team set off on the trail of Ray Cook, a legendary criminal turned prime time celebrity. Was Cook responsible for a notorious bank job which left a cashier dead, or is he as innocent as he claims?S3E6" + } + }, + { + "id": "IBMS_55284452", + "startMs": 1765620900000, + "endMs": 1765625100000, + "live": false, + "nzBsaRatingString": "PG", + "programme": { + "id": "mac_11777314", + "title": "Who Do You Think You Are? Australia", + "synopsis": "Liz Ellis: Netball champion Liz Ellis investigates the truth around the identity of her dad's father, and digs into the mystery of her mum's `cranky granny'.S13E7" + } + } + ] + } + }, + { + "id": "BBCF", + "title": "BBC First", + "number": 207, + "tileImage": { + "uri": "https://images.skyone.co.nz/contentful/dcojl03mw8gy/8AjEV0sOM3A4BccRvvzCy/33de2f83187894982d35cf18a431f888/BBC_FIRST_STACK_LOGO_2022_BLK_RGB.png" + }, + "slotsForDay": { + "slots": [ + { + "id": "IBMS_55098331", + "startMs": 1765536600000, + "endMs": 1765540500000, + "live": false, + "nzBsaRatingString": "PG", + "programme": { + "id": "mac_11760342", + "title": "Call The Midwife", + "synopsis": "Episode 4: Sister Hilda and Dr Turner support a young father with a lung condition, Lucille comes to terms with unexpected news, and Trixie takes the lead with a struggling first-time mother. S11 E4" + } + }, + { + "id": "IBMS_55098332", + "startMs": 1765540500000, + "endMs": 1765544400000, + "live": false, + "nzBsaRatingString": "16", + "programme": { + "id": "mac_11811316", + "title": "Happy Valley", + "synopsis": "Episode 6: Catherine confronts a delusional Frances, while John's torment leads him to desperate measures. S2 E6" + } + }, + { + "id": "IBMS_55098333", + "startMs": 1765544400000, + "endMs": 1765548000000, + "live": false, + "nzBsaRatingString": "PG", + "programme": { + "id": "mac_11774154", + "title": "Death In Paradise", + "synopsis": "Episode 2: A mystery unravels in the jungle when a game show contestant is stabbed on a zip line. Meanwhile, the team butt heads with Mervin... S14 E2" + } + }, + { + "id": "IBMS_55098334", + "startMs": 1765548000000, + "endMs": 1765551000000, + "live": false, + "nzBsaRatingString": "M", + "programme": { + "id": "mac_11750126", + "title": "Dci Banks", + "synopsis": "Dry Bones That Dream: Part 2: Banks is tempted by an offer. Helen finds herself in danger as she closes in a killer. S2 E4" + } + }, + { + "id": "IBMS_55098335", + "startMs": 1765551000000, + "endMs": 1765554900000, + "live": false, + "nzBsaRatingString": "16", + "programme": { + "id": "mac_11738222", + "title": "The Jetty", + "synopsis": "Episode 3: Ember wrestles with the emerging truth about Mack. As the walls close in on her, Ember reaches breaking point. S1 E3" + } + }, + { + "id": "IBMS_55098336", + "startMs": 1765554900000, + "endMs": 1765558800000, + "live": false, + "nzBsaRatingString": "M", + "programme": { + "id": "mac_11794165", + "title": "Silent Witness", + "synopsis": "The Penitent, Part 1: When a man falls from a high-rise building, the Lyell team are drawn into the criminal underworld of notorious mafia-group, the 'Ndrangheta'. Nikki and the team set out to uncover the truth. S26 E1" + } + }, + { + "id": "IBMS_55098337", + "startMs": 1765558800000, + "endMs": 1765562700000, + "live": false, + "nzBsaRatingString": "M", + "programme": { + "id": "mac_11750102", + "title": "Death In Paradise", + "synopsis": "Episode 8: A man confesses to murdering his boss despite being unable to remember what happened. Neville determines to uncover the truth and unveil the real killer. S10 E8" + } + }, + { + "id": "IBMS_55098338", + "startMs": 1765562700000, + "endMs": 1765566000000, + "live": false, + "nzBsaRatingString": "PG", + "programme": { + "id": "mac_11764257", + "title": "Death In Paradise:Christmas Special 2021", + "synopsis": "Episode 1: The sun-soaked, scintillating beauty of Saint Marie is rocked at Christmas time by a baffling murder, with a dazzling array of guest stars under suspicion. S1 E1" + } + }, + { + "id": "IBMS_55098339", + "startMs": 1765566000000, + "endMs": 1765569000000, + "live": false, + "nzBsaRatingString": "PG", + "programme": { + "id": "mac_11764258", + "title": "Death In Paradise:Christmas Special 2021", + "synopsis": "Episode 2: The sun-soaked, scintillating beauty of Saint Marie is rocked at Christmas time by a baffling murder, with a dazzling array of guest stars under suspicion. S1 E2" + } + }, + { + "id": "IBMS_55098340", + "startMs": 1765569000000, + "endMs": 1765572600000, + "live": false, + "nzBsaRatingString": "M", + "programme": { + "id": "mac_11852608", + "title": "Silent Witness", + "synopsis": "Death by a Thousand Hits - Part 1: The team investigate the death of a Burmese man on a deserted beach, whose young pregnant wife desperately hopes is still alive. S27 E7" + } + }, + { + "id": "IBMS_55098341", + "startMs": 1765572600000, + "endMs": 1765576500000, + "live": false, + "nzBsaRatingString": "M", + "programme": { + "id": "mac_11828948", + "title": "Towards Zero", + "synopsis": "Episode 2: After an explosive night, a shocking murder is discovered at the estate, and Detective Leach must find his purpose again if he is to uproot the dark secrets of Gull's Point. S1 E2" + } + }, + { + "id": "IBMS_55098342", + "startMs": 1765576500000, + "endMs": 1765580400000, + "live": false, + "nzBsaRatingString": "M", + "programme": { + "id": "mac_11750162", + "title": "Sherwood", + "synopsis": "Episode 5: The manhunt comes to a head as the search for the spy cop turns the clock back to 1984. S1 E5" + } + }, + { + "id": "IBMS_55098343", + "startMs": 1765580400000, + "endMs": 1765583700000, + "live": false, + "nzBsaRatingString": "PG", + "programme": { + "id": "mac_11837366", + "title": "Professor T", + "synopsis": "Episode 5: When a painting is destroyed, suspicions fall on a group of climate activists. But the next attack leaves a dead body behind. S4 E5" + } + }, + { + "id": "IBMS_55098344", + "startMs": 1765583700000, + "endMs": 1765587000000, + "live": false, + "nzBsaRatingString": "M", + "programme": { + "id": "mac_11750053", + "title": "Sanditon", + "synopsis": "Episode 6: Charlotte and Sidney are at loggerheads but must work together to save Miss Lambe from terrible danger. Edward and Clara enter into a scandalous pact to try and finally win Lady Denham's inheritance. S1 E6" + } + }, + { + "id": "IBMS_55098345", + "startMs": 1765587000000, + "endMs": 1765590600000, + "live": false, + "nzBsaRatingString": "M", + "programme": { + "id": "mac_11852799", + "title": "The Tower", + "synopsis": "Episode 2: With Lizzie still on the run, Sarah finally persuades her boss, DCI Tim Bailie, to go public about Lizzie's disappearance. S1 E2" + } + }, + { + "id": "IBMS_55156776", + "startMs": 1765590600000, + "endMs": 1765594500000, + "live": false, + "nzBsaRatingString": "PG", + "programme": { + "id": "mac_11857230", + "title": "Return To Paradise", + "synopsis": "Episode 5: A literary festival turns deadly turn when a crime writer is found murdered in his villa. With all the suspects on a live panel at the time, how could any of them have killed him? S2 E5" + } + }, + { + "id": "IBMS_55098347", + "startMs": 1765594500000, + "endMs": 1765598700000, + "live": false, + "nzBsaRatingString": "16", + "programme": { + "id": "mac_11738222", + "title": "The Jetty", + "synopsis": "Episode 3: Ember wrestles with the emerging truth about Mack. As the walls close in on her, Ember reaches breaking point. S1 E3" + } + }, + { + "id": "IBMS_55098348", + "startMs": 1765598700000, + "endMs": 1765602900000, + "live": false, + "nzBsaRatingString": "16", + "programme": { + "id": "mac_11760438", + "title": "Silent Witness", + "synopsis": "Awakening Part 1: In Mexico for a funeral, Nikki makes a discovery that sets her on collision course with some dangerous and unpredictable forces. Arriving to help out, Jack is drawn into the fray. S20 E9" + } + }, + { + "id": "IBMS_55098349", + "startMs": 1765602900000, + "endMs": 1765607100000, + "live": false, + "nzBsaRatingString": "16", + "programme": { + "id": "mac_11760456", + "title": "Silent Witness", + "synopsis": "Awakening Part 2: With Nikki locked in a struggle for survival, Jack must use all of his abilities to track her down. And with life and death in the balance, every decision counts. S20 E10" + } + }, + { + "id": "IBMS_55098350", + "startMs": 1765607100000, + "endMs": 1765614300000, + "live": false, + "nzBsaRatingString": "16", + "programme": { + "id": "mac_11764233", + "title": "Grace", + "synopsis": "Dead Tomorrow: When a body is dredged up from the seabed of the English Channel, it sets in motion an investigation which forces Grace to ask himself just how far anyone might go to save the ones they love. S2 E3" + } + }, + { + "id": "IBMS_55098351", + "startMs": 1765614300000, + "endMs": 1765617900000, + "live": false, + "nzBsaRatingString": "M", + "programme": { + "id": "mac_11852790", + "title": "Scott & Bailey", + "synopsis": "Episode 7: Scott and Bailey investigate a gangland killing. S2 E7" + } + }, + { + "id": "IBMS_55098352", + "startMs": 1765617900000, + "endMs": 1765621200000, + "live": false, + "nzBsaRatingString": "M", + "programme": { + "id": "mac_11852791", + "title": "Scott & Bailey", + "synopsis": "Episode 8: Rachel finds herself on the wrong side of a murder investigation. S2 E8" + } + }, + { + "id": "IBMS_55098353", + "startMs": 1765621200000, + "endMs": 1765624500000, + "live": false, + "nzBsaRatingString": "PG", + "programme": { + "id": "mac_11760677", + "title": "Call The Midwife: Christmas Special 2021", + "synopsis": "Episode 2: Part 2 of 2. The Nonnatus House team are faced with their busiest Christmas Day ever as the Maternity Home is filled with expectant mums, each with their own challenging case. S1 E2" + } + } + ] + } + }, + { + "id": "0058", + "title": "JONES!", + "number": 8, + "tileImage": { + "uri": "https://images.skyone.co.nz/contentful/dcojl03mw8gy/4bF4wXx0x2UA2zhkgqkZgP/14cde4fe68b7b6037a4183258974f4ad/Jones.png" + }, + "slotsForDay": { + "slots": [ + { + "id": "IBMS_54580700", + "startMs": 1765536600000, + "endMs": 1765538400000, + "live": false, + "nzBsaRatingString": "PG", + "programme": { + "id": "mac_11617441", + "title": "The Gang", + "synopsis": "A cowboy named Clay rides a thousand miles to warn Marshal Dan Troop that the Hayes boys are out to get him." + } + }, + { + "id": "IBMS_54596247", + "startMs": 1765538400000, + "endMs": 1765540200000, + "live": false, + "nzBsaRatingString": "PG", + "programme": { + "id": "mac_11741777", + "title": "The House Meets The Mouse: Part 2", + "synopsis": "The family searches Disney World for a missing Michelle. Later, Danny believes he's found the perfect way to propose to Vicky. Pt 2 of 2" + } + }, + { + "id": "IBMS_54435416", + "startMs": 1765540200000, + "endMs": 1765541700000, + "live": false, + "nzBsaRatingString": "PG", + "programme": { + "id": "mac_11821277", + "title": "Whose Line Is It Anyway", + "synopsis": "The show where everything's made up and the points don't matter! Hosted by Drew Carey and featuring some of America's finest improvisational comedians." + } + }, + { + "id": "IBMS_54492446", + "startMs": 1765541700000, + "endMs": 1765545300000, + "live": false, + "nzBsaRatingString": "PG", + "programme": { + "id": "mac_11083389", + "title": "The Gold Watch", + "synopsis": "Stanley Perkins returns to Walton's Mountain to visit Rose, but he seems to be hiding something. When business slows down at the Dew Drop, Toni offers to lend a hand." + } + }, + { + "id": "IBMS_54611830", + "startMs": 1765545300000, + "endMs": 1765548900000, + "live": false, + "nzBsaRatingString": "PGV", + "programme": { + "id": "mac_11069844", + "title": "Scourge Of San Rosa", + "synopsis": "After falling from a horse and losing his memory, Reese is mistaken for the outlaw he was chasing in the first place." + } + }, + { + "id": "IBMS_54845901", + "startMs": 1765548900000, + "endMs": 1765551900000, + "live": false, + "nzBsaRatingString": "M", + "programme": { + "id": "mac_10285427", + "title": "The Birnam Wood", + "synopsis": "Josh returns from Germany in time to voice concerns about Leo. The Israelis and Palenstinians meet at Camp David. The President and Leo's differences over the Middle East crisis reach a breaking point." + } + }, + { + "id": "IBMS_54151567", + "startMs": 1765551900000, + "endMs": 1765555200000, + "live": false, + "nzBsaRatingString": "M", + "programme": { + "id": "mac_10064844", + "title": "Freak Show", + "synopsis": "Jeanie accuses Weaver of wrongful termination due to her HIV status. Romano asks Benton to join his surgical team. Cynthia continues to make mistakes as desk clerk. S4 Ep8" + } + }, + { + "id": "IBMS_54312893", + "startMs": 1765555200000, + "endMs": 1765558500000, + "live": false, + "nzBsaRatingString": "PGV", + "programme": { + "id": "mac_10840299", + "title": "Hadley's Hunters", + "synopsis": "Bart is framed for several crimes by a crooked Sheriff and his deputy. He turns bounty hunter, in an effort to expose the corruption, and asks for help from his friends." + } + }, + { + "id": "IBMS_54312894", + "startMs": 1765558500000, + "endMs": 1765562400000, + "live": false, + "nzBsaRatingString": "PGV", + "programme": { + "id": "mac_10840300", + "title": "The Town That Wasn't There", + "synopsis": "Beau Maverick wins ownership of the town of Silver Hill. Yet, he finds that Silver Hill is up to its neck in problems for him to fix." + } + }, + { + "id": "IBMS_54312895", + "startMs": 1765562400000, + "endMs": 1765566000000, + "live": false, + "nzBsaRatingString": "PGV", + "programme": { + "id": "mac_10840301", + "title": "Arizona Black Maria", + "synopsis": "When an army officer taking four prisoners across the desert is wounded in hostile Sioux territory, Bart must take over." + } + }, + { + "id": "IBMS_54312896", + "startMs": 1765566000000, + "endMs": 1765569600000, + "live": false, + "nzBsaRatingString": "PGV", + "programme": { + "id": "mac_10840302", + "title": "Last Wire From Stop Gap", + "synopsis": "Beau and Bart win a fast $6,500 in a poker game. They decide to wire the money to Denver instead of travelling with it, but they soon discover the wire company is a fake." + } + }, + { + "id": "IBMS_54312897", + "startMs": 1765569600000, + "endMs": 1765573200000, + "live": false, + "nzBsaRatingString": "PGV", + "programme": { + "id": "mac_10840303", + "title": "Mano Nera", + "synopsis": "While looking for a peaceful, profitable poker game in New Orleans, Bart is plunged into a mysterious murder involving the Black Hand society." + } + }, + { + "id": "IBMS_54620865", + "startMs": 1765573200000, + "endMs": 1765575000000, + "live": false, + "nzBsaRatingString": "PG", + "programme": { + "id": "mac_11761760", + "title": "Stakeout", + "synopsis": "Carl and his attractive new partner, Vanessa, stakeout a hotel room. Harriette worries that Carl will put aside his professionalism and try to woo the woman." + } + }, + { + "id": "IBMS_54620866", + "startMs": 1765575000000, + "endMs": 1765576800000, + "live": false, + "nzBsaRatingString": "PG", + "programme": { + "id": "mac_11761761", + "title": "False Arrest", + "synopsis": "The Winslows are aghast to discover Carl has arrested a famous actor from a TV show they watch. Guest starring Ron Glass." + } + }, + { + "id": "IBMS_54620867", + "startMs": 1765576800000, + "endMs": 1765578600000, + "live": false, + "nzBsaRatingString": "PG", + "programme": { + "id": "mac_11761762", + "title": "Basketball Blues", + "synopsis": "Carl pushes a reluctant Eddie to try out for the school basketball team. Rachel contemplates becoming a chef." + } + }, + { + "id": "IBMS_54620868", + "startMs": 1765578600000, + "endMs": 1765580400000, + "live": false, + "nzBsaRatingString": "PG", + "programme": { + "id": "mac_11761763", + "title": "The Quilt", + "synopsis": "Laura accidentally sells a quilt Grandmother Winslow considered a family heirloom. To make it right, Laura pulls out all the stops to get the quilt back." + } + }, + { + "id": "IBMS_54487578", + "startMs": 1765580400000, + "endMs": 1765583700000, + "live": false, + "nzBsaRatingString": "M", + "programme": { + "id": "mac_10064844", + "title": "Freak Show", + "synopsis": "Jeanie accuses Weaver of wrongful termination due to her HIV status. Romano asks Benton to join his surgical team. Cynthia continues to make mistakes as desk clerk. S4 Ep8" + } + }, + { + "id": "IBMS_54794545", + "startMs": 1765583700000, + "endMs": 1765586700000, + "live": false, + "nzBsaRatingString": "M", + "programme": { + "id": "mac_10285427", + "title": "The Birnam Wood", + "synopsis": "Josh returns from Germany in time to voice concerns about Leo. The Israelis and Palenstinians meet at Camp David. The President and Leo's differences over the Middle East crisis reach a breaking point." + } + }, + { + "id": "IBMS_54494140", + "startMs": 1765586700000, + "endMs": 1765590000000, + "live": false, + "nzBsaRatingString": "PG", + "programme": { + "id": "mac_11083355", + "title": "The Journal", + "synopsis": "With John-Boy MIA, the manuscript he wrote prior to the assignment is waiting to be published. John and Olivia must decide whether they allow it in their son's absence." + } + }, + { + "id": "IBMS_54494141", + "startMs": 1765590000000, + "endMs": 1765593300000, + "live": false, + "nzBsaRatingString": "PG", + "programme": { + "id": "mac_11083356", + "title": "The Lost Sheep", + "synopsis": "Ashley Longworth Jr. returns to Walton's Mountain. He proposes to Erin and she accepts. However, problems arise when he says he doesn't want to be married in a church." + } + }, + { + "id": "IBMS_54494142", + "startMs": 1765593300000, + "endMs": 1765596900000, + "live": false, + "nzBsaRatingString": "PG", + "programme": { + "id": "mac_11083357", + "title": "The Violated", + "synopsis": "Olivia is shocked when she discovers the reason the wife of a young soldier is no longer responding to his letters. Later, the Walton family receive news about John-Boy. Pt 1 of 2" + } + }, + { + "id": "IBMS_54494143", + "startMs": 1765596900000, + "endMs": 1765600500000, + "live": false, + "nzBsaRatingString": "PG", + "programme": { + "id": "mac_11083358", + "title": "The Waiting", + "synopsis": "John and Olivia rush to the bedside of a comatose John-Boy. Back home, Rose is left to make the Thanksgiving meal and cheer everyone up. Pt 2 of 2" + } + }, + { + "id": "IBMS_54494144", + "startMs": 1765600500000, + "endMs": 1765604100000, + "live": false, + "nzBsaRatingString": "PG", + "programme": { + "id": "mac_11083359", + "title": "The Silver Wings", + "synopsis": "Jim-Bob delivers a package to a woman whose husband is in the war. He helps her around the house, but soon becomes infatuated. Meanwhile, Serena gets lost during a hike." + } + }, + { + "id": "IBMS_54621219", + "startMs": 1765604100000, + "endMs": 1765607700000, + "live": false, + "nzBsaRatingString": "MV", + "programme": { + "id": "mac_10707846", + "title": "The Quest", + "synopsis": "Joe is tired of living in the shadow of his older brothers and demands that Ben give him greater responsibilities. He is tasked with winning a lucrative timber contract for the Ponderosa." + } + }, + { + "id": "IBMS_54313421", + "startMs": 1765607700000, + "endMs": 1765609500000, + "live": false, + "nzBsaRatingString": "PG", + "programme": { + "id": "mac_11707554", + "title": "Your Witness", + "synopsis": "Naomi Shawn is unhappily married to a ruthless lawyer. Later, Naomi finds the perfect way to end her imperfect union." + } + }, + { + "id": "IBMS_54313422", + "startMs": 1765609500000, + "endMs": 1765611300000, + "live": false, + "nzBsaRatingString": "PG", + "programme": { + "id": "mac_11707555", + "title": "The Human Interest Story", + "synopsis": "Journalist Bill Everett is sent to a bar to interview a man claiming to be an alien. Guest starring Steve McQueen. Featuring a cameo by Clint Eastwood." + } + }, + { + "id": "IBMS_54313423", + "startMs": 1765611300000, + "endMs": 1765613400000, + "live": false, + "nzBsaRatingString": "PG", + "programme": { + "id": "mac_11707556", + "title": "The Dusty Drawer", + "synopsis": "Norman Logan is sure that a bank teller stole $200 from him. Wanting the money back, Norman carries out a series of pranks to challenge the banker's sanity." + } + }, + { + "id": "IBMS_54313424", + "startMs": 1765613400000, + "endMs": 1765615200000, + "live": false, + "nzBsaRatingString": "PG", + "programme": { + "id": "mac_11707557", + "title": "A True Account", + "synopsis": "Mrs Cannon-Hughes believes her wealthy husband killed his first wife. Instead of going to the police, Cannon-Hughes visits a lawyer." + } + }, + { + "id": "IBMS_54443413", + "startMs": 1765615200000, + "endMs": 1765618800000, + "live": false, + "nzBsaRatingString": "PGV", + "programme": { + "id": "mac_10840299", + "title": "Hadley's Hunters", + "synopsis": "Bart is framed for several crimes by a crooked Sheriff and his deputy. He turns bounty hunter, in an effort to expose the corruption, and asks for help from his friends." + } + }, + { + "id": "IBMS_54443414", + "startMs": 1765618800000, + "endMs": 1765622400000, + "live": false, + "nzBsaRatingString": "PGV", + "programme": { + "id": "mac_10840300", + "title": "The Town That Wasn't There", + "synopsis": "Beau Maverick wins ownership of the town of Silver Hill. Yet, he finds that Silver Hill is up to its neck in problems for him to fix." + } + }, + { + "id": "IBMS_54443415", + "startMs": 1765622400000, + "endMs": 1765626000000, + "live": false, + "nzBsaRatingString": "PGV", + "programme": { + "id": "mac_10840301", + "title": "Arizona Black Maria", + "synopsis": "When an army officer taking four prisoners across the desert is wounded in hostile Sioux territory, Bart must take over." + } + } + ] + } + }, + { + "id": "HBOA", + "title": "HBO", + "number": 10, + "tileImage": { + "uri": "https://images.skyone.co.nz/contentful/dcojl03mw8gy/uHfIysB25iYCRz9LhhpCT/b3ec0872220c62b7ee700a25136848fa/010_1920x1080.png" + }, + "slotsForDay": { + "slots": [ + { + "id": "IBMS_55349888", + "startMs": 1765537200000, + "endMs": 1765539300000, + "live": false, + "nzBsaRatingString": "16", + "programme": { + "id": "mac_11793167", + "title": "Sex And The City", + "synopsis": "A 'Vogue' Idea: Big and unexpected ideas rear their heads as the four friends deal with their issues in this award-winning HBO Original Series. S4 E17" + } + }, + { + "id": "IBMS_55349889", + "startMs": 1765539300000, + "endMs": 1765542600000, + "live": false, + "nzBsaRatingString": "16", + "programme": { + "id": "mac_11853197", + "title": "The Sopranos", + "synopsis": "Where's Johnny?: Tony tries to negotiate a power-sharing deal with ruthless mobster Johnny Sack, but finds his advances spurned. S5 E3" + } + }, + { + "id": "IBMS_55349890", + "startMs": 1765542600000, + "endMs": 1765545900000, + "live": false, + "nzBsaRatingString": "16", + "programme": { + "id": "mac_11853198", + "title": "The White House Plumbers", + "synopsis": "Don't Drink The Whiskey At The Watergate: Hunt, Liddy, and the Cubans break into the DNC offices at the Watergate. S1 E3" + } + }, + { + "id": "IBMS_55349891", + "startMs": 1765545900000, + "endMs": 1765549800000, + "live": false, + "nzBsaRatingString": "M", + "programme": { + "id": "mac_11838075", + "title": "From The Earth To The Moon", + "synopsis": "Can We Do This?: An HBO Original that covers the early years of the United States' \"space race\" with the Soviet Union. S1 E1" + } + }, + { + "id": "IBMS_55349892", + "startMs": 1765549800000, + "endMs": 1765554300000, + "live": false, + "nzBsaRatingString": "16", + "programme": { + "id": "mac_11853199", + "title": "Wise Guy: David Chase And The Sopranos", + "synopsis": "Part One: After a successful career as a TV writer, David Chase finds a home at HBO for his unconventiontial pilot about a mobster seeking therapy. S1 E1" + } + }, + { + "id": "IBMS_55349893", + "startMs": 1765554300000, + "endMs": 1765556100000, + "live": false, + "nzBsaRatingString": "16", + "programme": { + "id": "mac_11780234", + "title": "How To With John Wilson", + "synopsis": "How To Find A Spot: John reflects on the competitive and complex process of parking in NYC, where the possibilities opened by having a car comes with a catch. S2 E3" + } + }, + { + "id": "IBMS_55349894", + "startMs": 1765556100000, + "endMs": 1765558800000, + "live": false, + "nzBsaRatingString": "16", + "programme": { + "id": "mac_11853200", + "title": "Entourage", + "synopsis": "Give A Little Bit: Drama resolves to give up acting for good and Matt Damon, with help from Lebron James, strong arms Vince to get involved in his charity. S6 E12" + } + }, + { + "id": "IBMS_55349895", + "startMs": 1765558800000, + "endMs": 1765560900000, + "live": false, + "nzBsaRatingString": "16", + "programme": { + "id": "mac_11793167", + "title": "Sex And The City", + "synopsis": "A 'Vogue' Idea: Big and unexpected ideas rear their heads as the four friends deal with their issues in this award-winning HBO Original Series. S4 E17" + } + }, + { + "id": "IBMS_55349896", + "startMs": 1765560900000, + "endMs": 1765564200000, + "live": false, + "nzBsaRatingString": "16", + "programme": { + "id": "mac_11853197", + "title": "The Sopranos", + "synopsis": "Where's Johnny?: Tony tries to negotiate a power-sharing deal with ruthless mobster Johnny Sack, but finds his advances spurned. S5 E3" + } + }, + { + "id": "IBMS_55349897", + "startMs": 1765564200000, + "endMs": 1765567500000, + "live": false, + "nzBsaRatingString": "16", + "programme": { + "id": "mac_11853198", + "title": "The White House Plumbers", + "synopsis": "Don't Drink The Whiskey At The Watergate: Hunt, Liddy, and the Cubans break into the DNC offices at the Watergate. S1 E3" + } + }, + { + "id": "IBMS_55349898", + "startMs": 1765567500000, + "endMs": 1765571400000, + "live": false, + "nzBsaRatingString": "M", + "programme": { + "id": "mac_11838075", + "title": "From The Earth To The Moon", + "synopsis": "Can We Do This?: An HBO Original that covers the early years of the United States' \"space race\" with the Soviet Union. S1 E1" + } + }, + { + "id": "IBMS_55349899", + "startMs": 1765571400000, + "endMs": 1765575900000, + "live": false, + "nzBsaRatingString": "16", + "programme": { + "id": "mac_11853199", + "title": "Wise Guy: David Chase And The Sopranos", + "synopsis": "Part One: After a successful career as a TV writer, David Chase finds a home at HBO for his unconventiontial pilot about a mobster seeking therapy. S1 E1" + } + }, + { + "id": "IBMS_55349900", + "startMs": 1765575900000, + "endMs": 1765577700000, + "live": false, + "nzBsaRatingString": "16", + "programme": { + "id": "mac_11780234", + "title": "How To With John Wilson", + "synopsis": "How To Find A Spot: John reflects on the competitive and complex process of parking in NYC, where the possibilities opened by having a car comes with a catch. S2 E3" + } + }, + { + "id": "IBMS_55349901", + "startMs": 1765577700000, + "endMs": 1765580400000, + "live": false, + "nzBsaRatingString": "16", + "programme": { + "id": "mac_11853200", + "title": "Entourage", + "synopsis": "Give A Little Bit: Drama resolves to give up acting for good and Matt Damon, with help from Lebron James, strong arms Vince to get involved in his charity. S6 E12" + } + }, + { + "id": "IBMS_55349902", + "startMs": 1765580400000, + "endMs": 1765584000000, + "live": false, + "nzBsaRatingString": "16", + "programme": { + "id": "mac_11845215", + "title": "The Sopranos", + "synopsis": "For All Debts Public And Private: Tony invests in a new land deal while Carmela frets about financial security; Adriana's friend may be an FBI agent and Christopher seeks revenge. S4 E1" + } + }, + { + "id": "IBMS_55349903", + "startMs": 1765584000000, + "endMs": 1765587600000, + "live": false, + "nzBsaRatingString": "16", + "programme": { + "id": "mac_11845231", + "title": "The Sopranos", + "synopsis": "No-Show: With Paulie in jail, Christopher acts as capo, but he gets off to a bad start with Patsy. S4 E2" + } + }, + { + "id": "IBMS_55349904", + "startMs": 1765587600000, + "endMs": 1765590900000, + "live": false, + "nzBsaRatingString": "16", + "programme": { + "id": "mac_11845236", + "title": "The Sopranos", + "synopsis": "Christopher: Silvio and Ralph must take care of a planned protest of the Columbus Day parade by a Native American group. S4 E3" + } + }, + { + "id": "IBMS_55349905", + "startMs": 1765590900000, + "endMs": 1765594500000, + "live": false, + "nzBsaRatingString": "16", + "programme": { + "id": "mac_11845241", + "title": "The Sopranos", + "synopsis": "The Weight: While Johnny Sack is off on a personal vendetta, Meadow decides to do volunteer work while Tony and Carmela are at odds over their family's bill. S4 E4" + } + }, + { + "id": "IBMS_55349906", + "startMs": 1765594500000, + "endMs": 1765597800000, + "live": false, + "nzBsaRatingString": "16", + "programme": { + "id": "mac_11845246", + "title": "The Sopranos", + "synopsis": "Pie-O-My: Tony displays a flair for horse-racing strategy, and Adriana finds her club increasingly being used as a place of business for Chris and his cronies. S4 E5" + } + }, + { + "id": "IBMS_55349907", + "startMs": 1765597800000, + "endMs": 1765601100000, + "live": false, + "nzBsaRatingString": "16", + "programme": { + "id": "mac_11845252", + "title": "The Sopranos", + "synopsis": "Everybody Hurts: After hiring an attractive French hostess, Artie agrees to loan her brother some money, with interest, for an overseas business venture. S4 E6" + } + }, + { + "id": "IBMS_55349908", + "startMs": 1765601100000, + "endMs": 1765604400000, + "live": false, + "nzBsaRatingString": "18", + "programme": { + "id": "mac_11853201", + "title": "Tell Me You Love Me", + "synopsis": "Episode 7: With both kids at sleepovers, Katie and Dave get a rare night alone, and make small steps towards rekindling their intimacy. S1 E7" + } + }, + { + "id": "IBMS_55349909", + "startMs": 1765604400000, + "endMs": 1765608000000, + "live": false, + "nzBsaRatingString": "16", + "programme": { + "id": "mac_11780111", + "title": "The Pacific", + "synopsis": "Part Eight: Increasingly frustrated by his role in campaigning for war bonds, Basilone convinces the Marines to allow him to train troops headed for combat. S1 E8" + } + }, + { + "id": "IBMS_55349910", + "startMs": 1765608000000, + "endMs": 1765611000000, + "live": false, + "nzBsaRatingString": "18", + "programme": { + "id": "mac_11853202", + "title": "Banshee", + "synopsis": "Truths Other Than The Ones You Tell Yourself: Lucas and Brock close in on a killer; Calvin vows to wage war on Proctor; Job settles a score. S4 E7" + } + }, + { + "id": "IBMS_55349911", + "startMs": 1765611000000, + "endMs": 1765614900000, + "live": false, + "nzBsaRatingString": "M", + "programme": { + "id": "mac_11861181", + "title": "Hard Knocks", + "synopsis": "Episode 2: In Season with The NFC East - From HBO Sports and NFL Films, TV's most acclaimed sports documentary franchise returns with an all-access look at the NFC East division. S1 E2" + } + }, + { + "id": "IBMS_55349912", + "startMs": 1765614900000, + "endMs": 1765618200000, + "live": false, + "nzBsaRatingString": "M", + "programme": { + "id": "mac_11853203", + "title": "100 Foot Wave", + "synopsis": "III - Mavericks: Brazilian surfers new to Nazare fail to heed safety advice, while Garrett's own appearance at a big wave competition takes a devastating turn. S1 E3" + } + }, + { + "id": "IBMS_55349913", + "startMs": 1765618200000, + "endMs": 1765622100000, + "live": false, + "nzBsaRatingString": "16", + "programme": { + "id": "mac_11853204", + "title": "The Wire", + "synopsis": "Late Editions: Freamon's hard work pays off with a promising lead, though McNulty isn't in the mood to celebrate. S5 E9" + } + }, + { + "id": "IBMS_55349914", + "startMs": 1765622100000, + "endMs": 1765626300000, + "live": false, + "nzBsaRatingString": "16", + "programme": { + "id": "mac_11853205", + "title": "Treme", + "synopsis": "Carnival Time: As Carnival arrives in New Orleans, Albert unveils his new plumage, and Delmond discovers a new sound. S2 E7" + } + } + ] + } + }, + { + "id": "0198", + "title": "Universal", + "number": 210, + "tileImage": { + "uri": "https://images.skyone.co.nz/contentful/dcojl03mw8gy/3yYmEUqjIydw5RcOidlQio/798de5a73b867ba6ab139ed4b0dad53e/Universal_TV.png" + }, + "slotsForDay": { + "slots": [ + { + "id": "IBMS_55059109", + "startMs": 1765535400000, + "endMs": 1765539000000, + "live": false, + "nzBsaRatingString": "16", + "programme": { + "id": "mac_11464237", + "title": "Law & Order: Special Victims Unit", + "synopsis": "(S19E10) Pathological: When the SVU investigates a case involving two students in a special needs school,they discover the child's medical issues stem from a surprising source." + } + }, + { + "id": "IBMS_55059110", + "startMs": 1765539000000, + "endMs": 1765542600000, + "live": false, + "nzBsaRatingString": "16", + "programme": { + "id": "mac_11464295", + "title": "Law & Order: Special Victims Unit", + "synopsis": "(S14E13) Monsters Legacy: When a janitor attacks an athletic coach, SVU connects his violent behaviour to a history of sexual abuse and begin uncovering more cases." + } + }, + { + "id": "IBMS_55059111", + "startMs": 1765542600000, + "endMs": 1765546200000, + "live": false, + "nzBsaRatingString": "16", + "programme": { + "id": "mac_11652643", + "title": "Chicago Fire", + "synopsis": "(S11E21) Change Of Plans: Carver deals with the fallout of his arrest. Brett searches for closure with the baby she rescued." + } + }, + { + "id": "IBMS_55059112", + "startMs": 1765546200000, + "endMs": 1765549800000, + "live": false, + "nzBsaRatingString": "16", + "programme": { + "id": "mac_11632618", + "title": "Chicago P.D.", + "synopsis": "(S10E9) Proof of Burden: After a shocking discovery, the team begins closing in on Sean O'Neal with every shred of evidence they can find." + } + }, + { + "id": "IBMS_55059113", + "startMs": 1765549800000, + "endMs": 1765553400000, + "live": false, + "nzBsaRatingString": "16", + "programme": { + "id": "mac_11853773", + "title": "Law & Order: Organized Crime", + "synopsis": "(S3E11) The Infiltration Game: Jamie makes a risky decision that could cost him more than the case." + } + }, + { + "id": "IBMS_55059114", + "startMs": 1765553400000, + "endMs": 1765557000000, + "live": false, + "nzBsaRatingString": "16", + "programme": { + "id": "mac_11469740", + "title": "Law & Order: Special Victims Unit", + "synopsis": "(S14E18) Legitimate Rape: A popular sports reporter seeks out Detective Benson to accuse a cameraman of rape and stalking." + } + }, + { + "id": "IBMS_55059115", + "startMs": 1765557000000, + "endMs": 1765560600000, + "live": false, + "nzBsaRatingString": "16", + "programme": { + "id": "mac_11469747", + "title": "Law & Order: Special Victims Unit", + "synopsis": "(S14E19) Born Psychopath: When a school nurse notices several injuries on a young girl, the SVU detectives are called in to investigate." + } + }, + { + "id": "IBMS_55059116", + "startMs": 1765560600000, + "endMs": 1765564200000, + "live": false, + "nzBsaRatingString": "16", + "programme": { + "id": "mac_11464273", + "title": "Law & Order: Special Victims Unit", + "synopsis": "(S14E10) Presumed Guilty: The SVU's holiday celebrations are disrupted when Detective Tutuola's ex-brother-in-law is arrested for assaulting a priest." + } + }, + { + "id": "IBMS_55059117", + "startMs": 1765564200000, + "endMs": 1765567800000, + "live": false, + "nzBsaRatingString": "16", + "programme": { + "id": "mac_11464280", + "title": "Law & Order: Special Victims Unit", + "synopsis": "(S14E11) Beautiful Frame: When a rape victim in an SVU case is arrested for the murder of her ex-boyfriend, two ambitious DAs square off in separate trials for the same murder." + } + }, + { + "id": "IBMS_55059118", + "startMs": 1765567800000, + "endMs": 1765571400000, + "live": false, + "nzBsaRatingString": "16", + "programme": { + "id": "mac_11464288", + "title": "Law & Order: Special Victims Unit", + "synopsis": "(S14E12) Criminal Hatred: The SVU gather evidence to file charges on a man who brutally attacks other men, but the case spirals as he contends with a tough defence attorney." + } + }, + { + "id": "IBMS_55059119", + "startMs": 1765571400000, + "endMs": 1765575000000, + "live": false, + "nzBsaRatingString": "16", + "programme": { + "id": "mac_11464295", + "title": "Law & Order: Special Victims Unit", + "synopsis": "(S14E13) Monsters Legacy: When a janitor attacks an athletic coach, SVU connects his violent behaviour to a history of sexual abuse and begin uncovering more cases." + } + }, + { + "id": "IBMS_55059120", + "startMs": 1765575000000, + "endMs": 1765578600000, + "live": false, + "nzBsaRatingString": "16", + "programme": { + "id": "mac_11464302", + "title": "Law & Order: Special Victims Unit", + "synopsis": "(S14E14) Secrets Exhumed: When Agent Dana Lewis suspects that a 25-year-old case in New York is connected to several unsolved cases across the country, she joins the SVU." + } + }, + { + "id": "IBMS_55059121", + "startMs": 1765578600000, + "endMs": 1765582200000, + "live": false, + "nzBsaRatingString": "16", + "programme": { + "id": "mac_11452227", + "title": "House", + "synopsis": "(S3E7) Son Of A Coma Guy: House suspects that a patient's illness is genetic and needs a family history. But the man's only living relative is in a vegetative state." + } + }, + { + "id": "IBMS_55059122", + "startMs": 1765582200000, + "endMs": 1765585800000, + "live": false, + "nzBsaRatingString": "16", + "programme": { + "id": "mac_11452235", + "title": "House", + "synopsis": "(S3E8) Whac-A-Mole: An 18-year-old who is the sole supporter of his brother and sister has a heart attack while working at a children's party restaurant." + } + }, + { + "id": "IBMS_55059123", + "startMs": 1765585800000, + "endMs": 1765589400000, + "live": false, + "nzBsaRatingString": "16", + "programme": { + "id": "mac_11647449", + "title": "Chicago Fire", + "synopsis": "(S11E17) The First Symptom: Mouch builds a classic firetruck model for the Deputy District Chief, but quickly needs some assistance." + } + }, + { + "id": "IBMS_55059124", + "startMs": 1765589400000, + "endMs": 1765593000000, + "live": false, + "nzBsaRatingString": "16", + "programme": { + "id": "mac_11647455", + "title": "Chicago Fire", + "synopsis": "(S11E18) Danger Is All Around: A familiar face returns to Firehouse 51 to serve with Kidd on a special task force." + } + }, + { + "id": "IBMS_55059125", + "startMs": 1765593000000, + "endMs": 1765596600000, + "live": false, + "nzBsaRatingString": "16", + "programme": { + "id": "mac_11647461", + "title": "Chicago Fire", + "synopsis": "(S11E19) Take A Shot At The King: Boden, Ritter, Herrmann and Kidd work together to take down a local politician responsible for a chemical fire." + } + }, + { + "id": "IBMS_55059126", + "startMs": 1765596600000, + "endMs": 1765600200000, + "live": false, + "nzBsaRatingString": "16", + "programme": { + "id": "mac_11625680", + "title": "Chicago P.D.", + "synopsis": "(S10E5) Pink Cloud: Upton's dogged pursuit of a missing teenage girl leads the team into a dark web of human trafficking." + } + }, + { + "id": "IBMS_55059127", + "startMs": 1765600200000, + "endMs": 1765603800000, + "live": false, + "nzBsaRatingString": "16", + "programme": { + "id": "mac_11632594", + "title": "Chicago P.D.", + "synopsis": "(S10E6) Sympathetic Reflex: Atwater's reactions during a tense arrest are called into question. The team must dig in to uncover key evidence that could aid the ongoing case." + } + }, + { + "id": "IBMS_55059128", + "startMs": 1765603800000, + "endMs": 1765607400000, + "live": false, + "nzBsaRatingString": "16", + "programme": { + "id": "mac_11464199", + "title": "Law & Order: Special Victims Unit", + "synopsis": "(S19E6) Unintended Consequences: Rollins goes undercover at a rehab centre where a victim was last seen alive. Benson tries to overcome her doubts about Sheila." + } + }, + { + "id": "IBMS_55059129", + "startMs": 1765607400000, + "endMs": 1765611000000, + "live": false, + "nzBsaRatingString": "16", + "programme": { + "id": "mac_11464208", + "title": "Law & Order: Special Victims Unit", + "synopsis": "(S19E7) Something Happened: Benson must disclose the secrets of her past to help a rape victim recall the details of one terrible, traumatic night." + } + }, + { + "id": "IBMS_55059130", + "startMs": 1765611000000, + "endMs": 1765614600000, + "live": false, + "nzBsaRatingString": "16", + "programme": { + "id": "mac_11464217", + "title": "Law & Order: Special Victims Unit", + "synopsis": "(S19E8) Intent: The cops get tangled in an elaborate online hoax that leads to the rape of a popular social media star. Meanwhile, Benson sets new rules with Sheila." + } + }, + { + "id": "IBMS_55059131", + "startMs": 1765614600000, + "endMs": 1765618200000, + "live": false, + "nzBsaRatingString": "16", + "programme": { + "id": "mac_11464226", + "title": "Law & Order: Special Victims Unit", + "synopsis": "(S19E9) Gone, Baby, Gone: Emotions run high as the SVU squad embarks on a frantic search for Benson's missing son." + } + }, + { + "id": "IBMS_55059132", + "startMs": 1765618200000, + "endMs": 1765621800000, + "live": false, + "nzBsaRatingString": "16", + "programme": { + "id": "mac_11464237", + "title": "Law & Order: Special Victims Unit", + "synopsis": "(S19E10) Pathological: When the SVU investigates a case involving two students in a special needs school,they discover the child's medical issues stem from a surprising source." + } + }, + { + "id": "IBMS_55059133", + "startMs": 1765621800000, + "endMs": 1765625400000, + "live": false, + "nzBsaRatingString": "16", + "programme": { + "id": "mac_11853529", + "title": "Law & Order: Organized Crime", + "synopsis": "(S3E7) All That Glitters: The task force goes undercover to bust a jewelry operation they come to realize isn't just smuggling gold." + } + } + ] + } + }, + { + "id": "0092", + "title": "Sky Comedy", + "number": 11, + "tileImage": { + "uri": "https://images.skyone.co.nz/contentful/dcojl03mw8gy/6s9xrf4dGWXJgAco3c9RZN/4071ce552a68fd788e46e13ce7e29756/Sky_comedy_filled_colour_1920x1080.png" + }, + "slotsForDay": { + "slots": [ + { + "id": "IBMS_55038265", + "startMs": 1765537200000, + "endMs": 1765539000000, + "live": false, + "nzBsaRatingString": "PG", + "programme": { + "id": "mac_10384633", + "title": "No Contest", + "synopsis": "Without telling her, Sam enters Diane in the Miss Boston Barmaid contest to be held at Cheers, setting off a chain of unexpected events." + } + }, + { + "id": "IBMS_55156859", + "startMs": 1765539000000, + "endMs": 1765540800000, + "live": false, + "nzBsaRatingString": "MVSL", + "programme": { + "id": "mac_11857163", + "title": "Million Dollar Reward / Get Well Soon", + "synopsis": "Middle-aged Beavis and Butt-Head try to get a reward by turning themselves into the police for various crimes. Butt-Head makes Beavis break his arm so girls will sign his cast. S3 Ep11" + } + }, + { + "id": "IBMS_55156860", + "startMs": 1765540800000, + "endMs": 1765542600000, + "live": false, + "nzBsaRatingString": "MVSL", + "programme": { + "id": "mac_11858497", + "title": "Oldholio / The Discoverers", + "synopsis": "Season 3 finale: Middle-aged Beavis takes too many old-people medications. On a mission to Earth, Smart Beavis and Butt-Head make an extraordinary discovery." + } + }, + { + "id": "IBMS_55116190", + "startMs": 1765542600000, + "endMs": 1765544400000, + "live": false, + "nzBsaRatingString": "M", + "programme": { + "id": "mac_11853612", + "title": "My Student", + "synopsis": "The interns get their first med students. J.D.'s struggles to succeed, Elliot's is a lazy CEO's son, and Turk's attracts Dr. Cox, who needs help navigating his crush." + } + }, + { + "id": "IBMS_55116191", + "startMs": 1765544400000, + "endMs": 1765546200000, + "live": false, + "nzBsaRatingString": "M", + "programme": { + "id": "mac_11853613", + "title": "My Tuscaloosa Heart", + "synopsis": "J.D. panics after a rude patient he ignored dies on his watch, Elliot hunts for Dr. Kelso's hidden rock star past, and Dr. Cox juggles three love interests in a chaotic day at Sacred Heart." + } + }, + { + "id": "IBMS_55116244", + "startMs": 1765546200000, + "endMs": 1765548000000, + "live": false, + "nzBsaRatingString": "16VSLC", + "programme": { + "id": "mac_11221553", + "title": "British Law", + "synopsis": "Inspector Martin Smiley of the U.K. crosses the pond to join the Reno Sheriff's Department in an exchange programme, aiming to learn new methods and share some of his own." + } + }, + { + "id": "IBMS_55116245", + "startMs": 1765548000000, + "endMs": 1765549800000, + "live": false, + "nzBsaRatingString": "16VSLC", + "programme": { + "id": "mac_11221550", + "title": "Dangle's Ex Visits", + "synopsis": "Divorce looms over Dangle and his estranged wife, while the rest of the department struggles with a giant Ten Commandments monument." + } + }, + { + "id": "IBMS_55118094", + "startMs": 1765549800000, + "endMs": 1765551600000, + "live": false, + "nzBsaRatingString": "16LC", + "programme": { + "id": "mac_11385879", + "title": "Montgomery, AL", + "synopsis": "Percy Julian battles adversity to become one of the greatest scientists of all time, Claudette Colvin lays the groundwork for Rosa Parks, and Joe Louis fights Max Schmeling." + } + }, + { + "id": "IBMS_55118714", + "startMs": 1765551600000, + "endMs": 1765553400000, + "live": false, + "nzBsaRatingString": "16LC", + "programme": { + "id": "mac_11409175", + "title": "Mechanic/ Realtor", + "synopsis": "Nathan has a mechanic prove his estimates with a polygraph test and rebrands a realtor as the Ghost Realtor who guarantees ghost-free homes, until a medium senses an incubus..." + } + }, + { + "id": "IBMS_55119669", + "startMs": 1765553400000, + "endMs": 1765555200000, + "live": false, + "nzBsaRatingString": "MVSL", + "programme": { + "id": "mac_11857163", + "title": "Million Dollar Reward / Get Well Soon", + "synopsis": "Middle-aged Beavis and Butt-Head try to get a reward by turning themselves into the police for various crimes. Butt-Head makes Beavis break his arm so girls will sign his cast. S3 Ep11" + } + }, + { + "id": "IBMS_55119680", + "startMs": 1765555200000, + "endMs": 1765557000000, + "live": false, + "nzBsaRatingString": "MVSL", + "programme": { + "id": "mac_11858497", + "title": "Oldholio / The Discoverers", + "synopsis": "Season 3 finale: Middle-aged Beavis takes too many old-people medications. On a mission to Earth, Smart Beavis and Butt-Head make an extraordinary discovery." + } + }, + { + "id": "IBMS_55148529", + "startMs": 1765557000000, + "endMs": 1765558800000, + "live": false, + "nzBsaRatingString": "16VSLC", + "programme": { + "id": "mac_11599224", + "title": "Douche and a Danish", + "synopsis": "Mr Garrison finally goes too far at a rally, and the kids begin searching for an infamous Internet troll." + } + }, + { + "id": "IBMS_55148531", + "startMs": 1765558800000, + "endMs": 1765560600000, + "live": false, + "nzBsaRatingString": "16VSLC", + "programme": { + "id": "mac_11599225", + "title": "Fort Collins", + "synopsis": "An entire city in Colorado gets hacked. Gerald and Cartman may lose everything when their complete history of internet activity becomes public." + } + }, + { + "id": "IBMS_55162426", + "startMs": 1765560600000, + "endMs": 1765562400000, + "live": false, + "nzBsaRatingString": "M", + "programme": { + "id": "mac_10519941", + "title": "Gang Stand-Off", + "synopsis": "Jordan and Keegan confront a rival gang, only to bond over their shared love of \"Twilight\", face racist superheroes battling a giant robot, and visit a world where names are farts." + } + }, + { + "id": "IBMS_55162427", + "startMs": 1765562400000, + "endMs": 1765564200000, + "live": false, + "nzBsaRatingString": "M", + "programme": { + "id": "mac_10519942", + "title": "Biological Dad", + "synopsis": "Jordan and Keegan compete to one-up each other with their fresh hatz, an alien learns about the female anatomy, and meet the last two men on Earth." + } + }, + { + "id": "IBMS_55149728", + "startMs": 1765564200000, + "endMs": 1765566000000, + "live": false, + "nzBsaRatingString": "PG", + "programme": { + "id": "mac_10384616", + "title": "Give Me a Ring Sometime", + "synopsis": "Waiting on her fiance before they jet off to the Caribbean, the very proper Diane Chambers becomes the centre of attention at a blue-collar Boston bar called Cheers." + } + }, + { + "id": "IBMS_55149729", + "startMs": 1765566000000, + "endMs": 1765567800000, + "live": false, + "nzBsaRatingString": "PG", + "programme": { + "id": "mac_10384617", + "title": "Sam's Women", + "synopsis": "Feeling defensive when Diane teases him about the shallowness of his dates, Sam tries to impress her with his latest." + } + }, + { + "id": "IBMS_55149730", + "startMs": 1765567800000, + "endMs": 1765569600000, + "live": false, + "nzBsaRatingString": "PG", + "programme": { + "id": "mac_10384618", + "title": "The Tortelli Tort", + "synopsis": "Carla is horrified when Diane suggests she meets with a psychologist to control her fiery temper, after an outburst with an obnoxious Yankees fan." + } + }, + { + "id": "IBMS_55149731", + "startMs": 1765569600000, + "endMs": 1765571400000, + "live": false, + "nzBsaRatingString": "PG", + "programme": { + "id": "mac_10384619", + "title": "Sam at Eleven", + "synopsis": "When Sam's TV sportscaster friend wants to interview him, everyone thinks it'll be great for him and the bar - everyone except Diane." + } + }, + { + "id": "IBMS_55149732", + "startMs": 1765571400000, + "endMs": 1765573200000, + "live": false, + "nzBsaRatingString": "PG", + "programme": { + "id": "mac_10384620", + "title": "Coach's Daughter", + "synopsis": "Coach's sweet and successful daughter stops by Cheers to introduce her fiance, who promptly offends everyone with his rude behaviour." + } + }, + { + "id": "IBMS_55149733", + "startMs": 1765573200000, + "endMs": 1765575000000, + "live": false, + "nzBsaRatingString": "PG", + "programme": { + "id": "mac_10384621", + "title": "Any Friend of Diane's", + "synopsis": "Diane is upset when an old college friend turns up at the bar and sets her sights on Sam, who predictably jumps at the opportunity." + } + }, + { + "id": "IBMS_55149734", + "startMs": 1765575000000, + "endMs": 1765576800000, + "live": false, + "nzBsaRatingString": "PG", + "programme": { + "id": "mac_10384622", + "title": "Friends, Romans, Accountants", + "synopsis": "Needing to impress his boss, Norm plans the office party at Cheers and then tries to set Diane up as the old man's date for the evening." + } + }, + { + "id": "IBMS_55162423", + "startMs": 1765576800000, + "endMs": 1765580400000, + "live": false, + "nzBsaRatingString": "M", + "programme": { + "id": "mac_11857040", + "title": "Episode 7", + "synopsis": "Stephen Colbert brings his signature satire and comedy to late night, where he talks with guests about what's new and relevant in the world. Tonight's guest: Taylor Swift." + } + }, + { + "id": "IBMS_55149751", + "startMs": 1765580400000, + "endMs": 1765582200000, + "live": false, + "nzBsaRatingString": "16VSLC", + "programme": { + "id": "mac_11599224", + "title": "Douche and a Danish", + "synopsis": "Mr Garrison finally goes too far at a rally, and the kids begin searching for an infamous Internet troll." + } + }, + { + "id": "IBMS_55149753", + "startMs": 1765582200000, + "endMs": 1765584000000, + "live": false, + "nzBsaRatingString": "16VSLC", + "programme": { + "id": "mac_11599225", + "title": "Fort Collins", + "synopsis": "An entire city in Colorado gets hacked. Gerald and Cartman may lose everything when their complete history of internet activity becomes public." + } + }, + { + "id": "IBMS_55149755", + "startMs": 1765584000000, + "endMs": 1765585800000, + "live": false, + "nzBsaRatingString": "MVSL", + "programme": { + "id": "mac_11857163", + "title": "Million Dollar Reward / Get Well Soon", + "synopsis": "Middle-aged Beavis and Butt-Head try to get a reward by turning themselves into the police for various crimes. Butt-Head makes Beavis break his arm so girls will sign his cast. S3 Ep11" + } + }, + { + "id": "IBMS_55162603", + "startMs": 1765585800000, + "endMs": 1765587600000, + "live": false, + "nzBsaRatingString": "MVSL", + "programme": { + "id": "mac_11858497", + "title": "Oldholio / The Discoverers", + "synopsis": "Season 3 finale: Middle-aged Beavis takes too many old-people medications. On a mission to Earth, Smart Beavis and Butt-Head make an extraordinary discovery." + } + }, + { + "id": "IBMS_55162640", + "startMs": 1765587600000, + "endMs": 1765589400000, + "live": false, + "nzBsaRatingString": "16LC", + "programme": { + "id": "mac_10420447", + "title": "Yogurt Shop/ Pizzeria", + "synopsis": "Nathan helps small businesses using controversial tactics, creating a buzzworthy flavour at a yoghurt shop and an 8-minute delivery scheme for a pizza parlour." + } + }, + { + "id": "IBMS_55162641", + "startMs": 1765589400000, + "endMs": 1765591200000, + "live": false, + "nzBsaRatingString": "16LC", + "programme": { + "id": "mac_10420448", + "title": "Santa/ Petting Zoo", + "synopsis": "Nathan promotes a petting zoo with a staged viral video, plans a summer Santa photo shoot but uncovers a dark secret, and outwits a teen graffiti artist in a set up." + } + }, + { + "id": "IBMS_55162642", + "startMs": 1765591200000, + "endMs": 1765593000000, + "live": false, + "nzBsaRatingString": "16LC", + "programme": { + "id": "mac_10420449", + "title": "Clothing Store/ Restaurant", + "synopsis": "Nathan helps a clothing store by encouraging \"attractive\" customers to shoplift and promotes a diner by turning its toilets into ad space, then ends things with a bold request." + } + }, + { + "id": "IBMS_55162643", + "startMs": 1765593000000, + "endMs": 1765594800000, + "live": false, + "nzBsaRatingString": "16LC", + "programme": { + "id": "mac_10420450", + "title": "Gas Station/ Caricature Artist", + "synopsis": "Nathan devises the world's greatest rebate to help an independent gas station and transforms a fledgling caricature artist into the King of Sting." + } + }, + { + "id": "IBMS_55150032", + "startMs": 1765594800000, + "endMs": 1765596600000, + "live": false, + "nzBsaRatingString": "MSL", + "programme": { + "id": "mac_11624661", + "title": "Episode 1", + "synopsis": "Mel returns to her hometown of Margate to find a family party in full swing. Her pregnant sister is having a pink \"Mani-Festival\" to ensure the universe manifests a baby girl." + } + }, + { + "id": "IBMS_55150033", + "startMs": 1765596600000, + "endMs": 1765598400000, + "live": false, + "nzBsaRatingString": "MSL", + "programme": { + "id": "mac_11624662", + "title": "Episode 2", + "synopsis": "Trish and Spencer take Cheryl and Leila to see the derelict house they want to turn into their dream home. Later, Mel keeps a promise to Trish's sons." + } + }, + { + "id": "IBMS_55150123", + "startMs": 1765598400000, + "endMs": 1765600200000, + "live": false, + "nzBsaRatingString": "M", + "programme": { + "id": "mac_11853031", + "title": "Our Cup Runneth Over", + "synopsis": "After losing their fortune overnight, Johnny Rose and his family must relocate to their last remaining asset: a small town called Schitt's Creek, which Johnny once bought as a joke." + } + }, + { + "id": "IBMS_55150124", + "startMs": 1765600200000, + "endMs": 1765602000000, + "live": false, + "nzBsaRatingString": "M", + "programme": { + "id": "mac_11853032", + "title": "The Drip", + "synopsis": "Johnny explores the idea of selling the town but needs the permission of Mayor Roland Schitt. Meanwhile, David and Alexis spend a night out with the locals." + } + }, + { + "id": "IBMS_55150291", + "startMs": 1765602000000, + "endMs": 1765603800000, + "live": false, + "nzBsaRatingString": "M", + "programme": { + "id": "mac_11853412", + "title": "Pilot", + "synopsis": "After George Bluth Sr. is arrested for shady accounting and the family assets are frozen, his son Michael must wrangle his spoiled, dysfunctional relatives to save the business." + } + }, + { + "id": "IBMS_55150292", + "startMs": 1765603800000, + "endMs": 1765605600000, + "live": false, + "nzBsaRatingString": "M", + "programme": { + "id": "mac_11853413", + "title": "Top Banana", + "synopsis": "Michael puts his son, George Michael, in charge of the Bluth Banana Stand, but things quickly go up in flames. Tobias auditions for a commercial, only for Lindsay to steal the spotlight." + } + }, + { + "id": "IBMS_55150397", + "startMs": 1765605600000, + "endMs": 1765607400000, + "live": false, + "nzBsaRatingString": "16SLC", + "programme": { + "id": "mac_11854972", + "title": "Ain't No Reason to Get Excited", + "synopsis": "Daryl and Katy set out to revive Wayne's love life, but a night of bar antics, Grindr confusion, and an unexpected encounter reignites his inner fighter." + } + }, + { + "id": "IBMS_55150398", + "startMs": 1765607400000, + "endMs": 1765609200000, + "live": false, + "nzBsaRatingString": "16SLC", + "programme": { + "id": "mac_11854973", + "title": "Super Soft Birthday", + "synopsis": "Despite his protests, Daryl's annual 'super soft' birthday bash is back, while Wayne takes on challengers to keep his crown as Letterkenny's toughest." + } + }, + { + "id": "IBMS_55150384", + "startMs": 1765609200000, + "endMs": 1765611000000, + "live": false, + "nzBsaRatingString": "16VSLC", + "programme": { + "id": "mac_11599225", + "title": "Fort Collins", + "synopsis": "An entire city in Colorado gets hacked. Gerald and Cartman may lose everything when their complete history of internet activity becomes public." + } + }, + { + "id": "IBMS_55150489", + "startMs": 1765611000000, + "endMs": 1765612800000, + "live": false, + "nzBsaRatingString": "16VSLC", + "programme": { + "id": "mac_11308163", + "title": "Buddha Box", + "synopsis": "Diagnosed with anxiety, Cartman buys a Buddha Box, a cardboard box he puts over his head to relax and ignore the people who cause him anxiety." + } + }, + { + "id": "IBMS_55150490", + "startMs": 1765612800000, + "endMs": 1765614600000, + "live": false, + "nzBsaRatingString": "16", + "programme": { + "id": "mac_11857108", + "title": "The Crap Out", + "synopsis": "Season 28 finale: Satan's due, Stan's praying, and only a Christmas miracle can deliver the Antichrist on time." + } + }, + { + "id": "IBMS_55300964", + "startMs": 1765614600000, + "endMs": 1765616400000, + "live": false, + "nzBsaRatingString": "M", + "programme": { + "id": "mac_10519941", + "title": "Gang Stand-Off", + "synopsis": "Jordan and Keegan confront a rival gang, only to bond over their shared love of \"Twilight\", face racist superheroes battling a giant robot, and visit a world where names are farts." + } + }, + { + "id": "IBMS_55300965", + "startMs": 1765616400000, + "endMs": 1765618200000, + "live": false, + "nzBsaRatingString": "M", + "programme": { + "id": "mac_10519942", + "title": "Biological Dad", + "synopsis": "Jordan and Keegan compete to one-up each other with their fresh hatz, an alien learns about the female anatomy, and meet the last two men on Earth." + } + }, + { + "id": "IBMS_55162648", + "startMs": 1765618200000, + "endMs": 1765620000000, + "live": false, + "nzBsaRatingString": "16LC", + "programme": { + "id": "mac_11385851", + "title": "Washington, D.C.", + "synopsis": "Watergate unravels as Woodward and Bernstein expose the political scandal, the Booth brothers spiral into a tragic rivalry, and Elvis crashes the White House to meet Nixon." + } + }, + { + "id": "IBMS_55162649", + "startMs": 1765620000000, + "endMs": 1765621800000, + "live": false, + "nzBsaRatingString": "16LC", + "programme": { + "id": "mac_11385852", + "title": "Chicago", + "synopsis": "Al Capone falls to a surprising foe, prairie lawyer Abraham Lincoln seizes his shot at greatness, and Chicago erupts as police and protestors collide in the fiery chaos of the Haymarket Riot." + } + }, + { + "id": "IBMS_55162656", + "startMs": 1765621800000, + "endMs": 1765623600000, + "live": false, + "nzBsaRatingString": "16LC", + "programme": { + "id": "mac_10420447", + "title": "Yogurt Shop/ Pizzeria", + "synopsis": "Nathan helps small businesses using controversial tactics, creating a buzzworthy flavour at a yoghurt shop and an 8-minute delivery scheme for a pizza parlour." + } + }, + { + "id": "IBMS_55162657", + "startMs": 1765623600000, + "endMs": 1765625400000, + "live": false, + "nzBsaRatingString": "16LC", + "programme": { + "id": "mac_10420448", + "title": "Santa/ Petting Zoo", + "synopsis": "Nathan promotes a petting zoo with a staged viral video, plans a summer Santa photo shoot but uncovers a dark secret, and outwits a teen graffiti artist in a set up." + } + } + ] + } + }, + { + "id": "TV4", + "title": "Bravo", + "number": 12, + "tileImage": { + "uri": "https://images.skyone.co.nz/contentful/dcojl03mw8gy/157SjYHkADOPZwlLLxy8RT/504bdc165cab4a89d1ec24da8c10be30/bravo.png" + }, + "slotsForDay": { + "slots": [ + { + "id": "IBMS_55332092", + "startMs": 1765534200000, + "endMs": 1765537800000, + "live": false, + "nzBsaRatingString": "MVC", + "programme": { + "id": "mac_11811650", + "title": "Snapped", + "synopsis": "When an elderly woman finds her husband murdered in bed, police race to find the cold-blooded killer." + } + }, + { + "id": "IBMS_55332094", + "startMs": 1765537800000, + "endMs": 1765541400000, + "live": false, + "nzBsaRatingString": "MVC", + "programme": { + "id": "mac_11663669", + "title": "New York Homicide", + "synopsis": "Talented performer Jennifer Stahl and four friends are discovered shot execution-style above New York's iconic Carnegie Deli in the theater district." + } + }, + { + "id": "IBMS_55332096", + "startMs": 1765541400000, + "endMs": 1765544400000, + "live": false, + "nzBsaRatingString": null, + "programme": { + "id": "mac_11021233", + "title": "Infomercials", + "synopsis": "Infomercials" + } + }, + { + "id": "IBMS_55332098", + "startMs": 1765544400000, + "endMs": 1765558800000, + "live": false, + "nzBsaRatingString": null, + "programme": { + "id": "mac_11021233", + "title": "Infomercials", + "synopsis": "Infomercials" + } + }, + { + "id": "IBMS_55332100", + "startMs": 1765558800000, + "endMs": 1765566000000, + "live": false, + "nzBsaRatingString": null, + "programme": { + "id": "mac_11021233", + "title": "Infomercials", + "synopsis": "Infomercials" + } + }, + { + "id": "IBMS_55332102", + "startMs": 1765566000000, + "endMs": 1765573200000, + "live": false, + "nzBsaRatingString": null, + "programme": { + "id": "mac_11021233", + "title": "Infomercials", + "synopsis": "Infomercials" + } + }, + { + "id": "IBMS_55332104", + "startMs": 1765573200000, + "endMs": 1765576500000, + "live": false, + "nzBsaRatingString": "PGC", + "programme": { + "id": "mac_11732689", + "title": "Million Dollar Listing: NY", + "synopsis": "Nev, Max, and friends revisit the most dramatic, hilarious, unbelievable, WTF moments in Catfish history." + } + }, + { + "id": "IBMS_55332106", + "startMs": 1765576500000, + "endMs": 1765579800000, + "live": false, + "nzBsaRatingString": "PGC", + "programme": { + "id": "mac_11732679", + "title": "Million Dollar Listing: NY", + "synopsis": "The stress of Michael blowing his first major deal doesn't ease up with his new Park Avenue listing, whichÿresults in him hiring masseuses for his open house.ÿS1 Ep2" + } + }, + { + "id": "IBMS_55332108", + "startMs": 1765579800000, + "endMs": 1765583400000, + "live": false, + "nzBsaRatingString": "PG", + "programme": { + "id": "mac_11860151", + "title": "Celebrity Family Feud", + "synopsis": "Terry Bradshaw faces off against Dee Snider; members of OneRepublic face off with the cast of 'Mayans M.C.'" + } + }, + { + "id": "IBMS_55332110", + "startMs": 1765583400000, + "endMs": 1765587000000, + "live": false, + "nzBsaRatingString": "PGLC", + "programme": { + "id": "mac_11215653", + "title": "Keeping Up With The Kardashians", + "synopsis": "Kim is shocked to learn about the rising rate of homelessness in LA and sets out to bring awareness to the growing crisis." + } + }, + { + "id": "IBMS_55332112", + "startMs": 1765587000000, + "endMs": 1765590600000, + "live": false, + "nzBsaRatingString": "PGLC", + "programme": { + "id": "mac_11217358", + "title": "Keeping Up With The Kardashians", + "synopsis": "Khloe and Kendall consider getting guns for protection, Kris imposes strict guidelines for her mom to follow in her new condo, and Kim can't handle her boisterous new puppy." + } + }, + { + "id": "IBMS_55332114", + "startMs": 1765590600000, + "endMs": 1765593900000, + "live": false, + "nzBsaRatingString": "PG", + "programme": { + "id": "mac_11633962", + "title": "Generation Dating", + "synopsis": "71 year old MJ and 23 year old Declan are nearly half a century apart. Before they can find dates for each other, they'll have to bridge the generation gap and learn what makes each other tick." + } + }, + { + "id": "IBMS_55332116", + "startMs": 1765593900000, + "endMs": 1765597200000, + "live": false, + "nzBsaRatingString": "PGC", + "programme": { + "id": "mac_11288643", + "title": "Hollywood Medium", + "synopsis": "Red carpet host Giuliana Rancic is brought to tears when Tyler relays shocking messages not only for Giuliana and her husband, but her best friend as well." + } + }, + { + "id": "IBMS_55332118", + "startMs": 1765597200000, + "endMs": 1765599000000, + "live": false, + "nzBsaRatingString": "PGC", + "programme": { + "id": "mac_11840132", + "title": "Highway Patrol", + "synopsis": "A roadside rumble erupts when a fired up driver with no licence and the wrong plates tries to take on an officer. Officers try to determine the cause of a" + } + }, + { + "id": "IBMS_55332120", + "startMs": 1765599000000, + "endMs": 1765600800000, + "live": false, + "nzBsaRatingString": "PGC", + "programme": { + "id": "mac_11840134", + "title": "Highway Patrol", + "synopsis": "Officers deal with a hoon doing burnouts in an industrial area and a drunk driver with a burning tyre. Another officer clocks a driver going twice the speed in a school zone." + } + }, + { + "id": "IBMS_55332122", + "startMs": 1765600800000, + "endMs": 1765604100000, + "live": false, + "nzBsaRatingString": "PGSC", + "programme": { + "id": "mac_11860153", + "title": "Catfish", + "synopsis": "Hosted by Nev Schulman and Max Joseph, the third installment of Catfish: The Untold Stories, features three shocking but true tales from the past as told by the people who actually experienced them." + } + }, + { + "id": "IBMS_55332124", + "startMs": 1765604100000, + "endMs": 1765607400000, + "live": false, + "nzBsaRatingString": "PG", + "programme": { + "id": "mac_11863897", + "title": "Hoarders", + "synopsis": "Bruce is very thoughtful and always keeps things with the idea that he'll give it to someone he knows. Now Bruce has collected a massive amount of tools and clutter over the years." + } + }, + { + "id": "IBMS_55332126", + "startMs": 1765607400000, + "endMs": 1765611000000, + "live": false, + "nzBsaRatingString": "MSLC", + "programme": { + "id": "mac_11415994", + "title": "Tattoo Fixers", + "synopsis": "Pash takes on Rebecca's pain in the neck. Sketch tackles Layton's dodgy design, and loses Aaron's offensive ink. Alice takes pity on Teresa and her kitty." + } + }, + { + "id": "IBMS_55332128", + "startMs": 1765611000000, + "endMs": 1765614600000, + "live": false, + "nzBsaRatingString": "MSLC", + "programme": { + "id": "mac_11416293", + "title": "Tattoo Fixers", + "synopsis": "Pash turns Aaron into a sex bomb with a portrait of his idol Tom Jones. Alice kicks Bailee's terrible tattoo into touch. Uzzi helps naughty Nanny Dawn." + } + }, + { + "id": "IBMS_55332130", + "startMs": 1765614600000, + "endMs": 1765618200000, + "live": false, + "nzBsaRatingString": "M", + "programme": { + "id": "mac_11863898", + "title": "Southern Hospitality" + } + }, + { + "id": "IBMS_55332132", + "startMs": 1765618200000, + "endMs": 1765621800000, + "live": false, + "nzBsaRatingString": "MC", + "programme": { + "id": "mac_11863889", + "title": "Mayday: Air Disaster", + "synopsis": "After Air Florida flight 90 crashes on take-off from D.C., it is not easy to find the cause of the accident. It turns out eventually that this was no accident but simple and deadly oversight." + } + }, + { + "id": "IBMS_55332134", + "startMs": 1765621800000, + "endMs": 1765625400000, + "live": false, + "nzBsaRatingString": "MC", + "programme": { + "id": "mac_11863888", + "title": "Ambulance: Code Red", + "synopsis": "A doctor administers pain meds to a construction worker trapped in the wreckage of a van; paramedics stabilize a man who fell from a 4-meter platform." + } + } + ] + } + }, + { + "id": "0202", + "title": "eden", + "number": 13, + "tileImage": { + "uri": "https://images.skyone.co.nz/contentful/dcojl03mw8gy/6Z7otjQ6D3PWVds88EbPat/289578bbb6e0d62d541d4a1fde8607dd/eden.png" + }, + "slotsForDay": { + "slots": [ + { + "id": "IBMS_55330888", + "startMs": 1765537200000, + "endMs": 1765540200000, + "live": false, + "nzBsaRatingString": "G", + "programme": { + "id": "mac_11633039", + "title": "Restaurant Impossible", + "synopsis": "At the request of former employees, Robert heads to Ellendale's in Nashville, TN. The restaurant is rundown and owner Julie's management style is ineffective. S12 E5" + } + }, + { + "id": "IBMS_55330890", + "startMs": 1765540200000, + "endMs": 1765543200000, + "live": false, + "nzBsaRatingString": "PG", + "programme": { + "id": "mac_11863819", + "title": "Salvage Hunters: The Restorers", + "synopsis": "Metalworker Ted Edley is asked to restore an obscure German football table from the 1950s. Upholsterer Ray Clarke reimagines a stylish 1980s desk chair." + } + }, + { + "id": "IBMS_55330892", + "startMs": 1765543200000, + "endMs": 1765544700000, + "live": false, + "nzBsaRatingString": "G", + "programme": { + "id": "mac_11863820", + "title": "House Hunters", + "synopsis": "A couple wants a nice home, but they can't agree on the price range. She wants a cheap house in the suburbs, but he wants to be closer to the city." + } + }, + { + "id": "IBMS_55330894", + "startMs": 1765544700000, + "endMs": 1765546200000, + "live": false, + "nzBsaRatingString": "PGC", + "programme": { + "id": "mac_11591324", + "title": "Border Security Australia", + "synopsis": "A passenger could hold the key to a major crime syndicate. Plus, is an elderly couple committing an innocent mistake? S3 E10" + } + }, + { + "id": "IBMS_55330896", + "startMs": 1765546200000, + "endMs": 1765548000000, + "live": false, + "nzBsaRatingString": "PGC", + "programme": { + "id": "mac_11583484", + "title": "Border Security Australia", + "synopsis": "Go behind-the-scenes of our Immigration Customs and Quarantine departments. S2 E11" + } + }, + { + "id": "IBMS_55330898", + "startMs": 1765548000000, + "endMs": 1765551000000, + "live": false, + "nzBsaRatingString": "G", + "programme": { + "id": "mac_11626302", + "title": "Tool Club", + "synopsis": "Michael Underwood hosts the unique show that gives people the skills and confidence to tackle DIY challenges themselves, with the help of experts Max McMurdo, Julia Miller-Osborn & Jess Grizzle. S1 E3" + } + }, + { + "id": "IBMS_55330900", + "startMs": 1765551000000, + "endMs": 1765554000000, + "live": false, + "nzBsaRatingString": "MC", + "programme": { + "id": "mac_11863821", + "title": "The Bad Skin Clinic", + "synopsis": "David visits Dr. Emma about a large, growing lump on his back. Aria's transition from male to female is blighted by the beard growth on her face." + } + }, + { + "id": "IBMS_55330902", + "startMs": 1765554000000, + "endMs": 1765557300000, + "live": false, + "nzBsaRatingString": "PG", + "programme": { + "id": "mac_11863819", + "title": "Salvage Hunters: The Restorers", + "synopsis": "Metalworker Ted Edley is asked to restore an obscure German football table from the 1950s. Upholsterer Ray Clarke reimagines a stylish 1980s desk chair." + } + }, + { + "id": "IBMS_55330904", + "startMs": 1765557300000, + "endMs": 1765558800000, + "live": false, + "nzBsaRatingString": "G", + "programme": { + "id": "mac_11863820", + "title": "House Hunters", + "synopsis": "A couple wants a nice home, but they can't agree on the price range. She wants a cheap house in the suburbs, but he wants to be closer to the city." + } + }, + { + "id": "IBMS_55330906", + "startMs": 1765558800000, + "endMs": 1765560600000, + "live": false, + "nzBsaRatingString": "G", + "programme": { + "id": "mac_11863818", + "title": "Beat Bobby Flay", + "synopsis": "Alex Guarnaschelli and James Austin Johnson leave a lasting impression on Bobby Flay as he tries to beat chefs Stephanie Cmar and David Standridge." + } + }, + { + "id": "IBMS_55330908", + "startMs": 1765560600000, + "endMs": 1765564200000, + "live": false, + "nzBsaRatingString": "PG", + "programme": { + "id": "mac_11604497", + "title": "Mysteries At The Museum", + "synopsis": "Don Wildman investigates how a school bus became ensnared in a heinous crime and examines a ball of twine that played a role in a deadly accident. S2 E21" + } + }, + { + "id": "IBMS_55330910", + "startMs": 1765564200000, + "endMs": 1765567800000, + "live": false, + "nzBsaRatingString": "G", + "programme": { + "id": "mac_11633039", + "title": "Restaurant Impossible", + "synopsis": "At the request of former employees, Robert heads to Ellendale's in Nashville, TN. The restaurant is rundown and owner Julie's management style is ineffective. S12 E5" + } + }, + { + "id": "IBMS_55330912", + "startMs": 1765567800000, + "endMs": 1765571400000, + "live": false, + "nzBsaRatingString": "PG", + "programme": { + "id": "mac_11863819", + "title": "Salvage Hunters: The Restorers", + "synopsis": "Metalworker Ted Edley is asked to restore an obscure German football table from the 1950s. Upholsterer Ray Clarke reimagines a stylish 1980s desk chair." + } + }, + { + "id": "IBMS_55330914", + "startMs": 1765571400000, + "endMs": 1765575000000, + "live": false, + "nzBsaRatingString": "PG", + "programme": { + "id": "mac_11604497", + "title": "Mysteries At The Museum", + "synopsis": "Don Wildman investigates how a school bus became ensnared in a heinous crime and examines a ball of twine that played a role in a deadly accident. S2 E21" + } + }, + { + "id": "IBMS_55330916", + "startMs": 1765575000000, + "endMs": 1765576800000, + "live": false, + "nzBsaRatingString": "PGC", + "programme": { + "id": "mac_11591324", + "title": "Border Security Australia", + "synopsis": "A passenger could hold the key to a major crime syndicate. Plus, is an elderly couple committing an innocent mistake? S3 E10" + } + }, + { + "id": "IBMS_55330918", + "startMs": 1765576800000, + "endMs": 1765578600000, + "live": false, + "nzBsaRatingString": "PGC", + "programme": { + "id": "mac_11583484", + "title": "Border Security Australia", + "synopsis": "Go behind-the-scenes of our Immigration Customs and Quarantine departments. S2 E11" + } + }, + { + "id": "IBMS_55330920", + "startMs": 1765578600000, + "endMs": 1765582200000, + "live": false, + "nzBsaRatingString": "G", + "programme": { + "id": "mac_11626302", + "title": "Tool Club", + "synopsis": "Michael Underwood hosts the unique show that gives people the skills and confidence to tackle DIY challenges themselves, with the help of experts Max McMurdo, Julia Miller-Osborn & Jess Grizzle. S1 E3" + } + }, + { + "id": "IBMS_55330922", + "startMs": 1765582200000, + "endMs": 1765585800000, + "live": false, + "nzBsaRatingString": "PG", + "programme": { + "id": "mac_11604497", + "title": "Mysteries At The Museum", + "synopsis": "Don Wildman investigates how a school bus became ensnared in a heinous crime and examines a ball of twine that played a role in a deadly accident. S2 E21" + } + }, + { + "id": "IBMS_55330924", + "startMs": 1765585800000, + "endMs": 1765589400000, + "live": false, + "nzBsaRatingString": "PG", + "programme": { + "id": "mac_11863819", + "title": "Salvage Hunters: The Restorers", + "synopsis": "Metalworker Ted Edley is asked to restore an obscure German football table from the 1950s. Upholsterer Ray Clarke reimagines a stylish 1980s desk chair." + } + }, + { + "id": "IBMS_55330926", + "startMs": 1765589400000, + "endMs": 1765591200000, + "live": false, + "nzBsaRatingString": "G", + "programme": { + "id": "mac_11863820", + "title": "House Hunters", + "synopsis": "A couple wants a nice home, but they can't agree on the price range. She wants a cheap house in the suburbs, but he wants to be closer to the city." + } + }, + { + "id": "IBMS_55330928", + "startMs": 1765591200000, + "endMs": 1765593000000, + "live": false, + "nzBsaRatingString": "PGC", + "programme": { + "id": "mac_11591324", + "title": "Border Security Australia", + "synopsis": "A passenger could hold the key to a major crime syndicate. Plus, is an elderly couple committing an innocent mistake? S3 E10" + } + }, + { + "id": "IBMS_55330930", + "startMs": 1765593000000, + "endMs": 1765596600000, + "live": false, + "nzBsaRatingString": "G", + "programme": { + "id": "mac_11633045", + "title": "Restaurant Impossible", + "synopsis": "Robert Irvine heads to New Kensington, Pennsylvania, to ambush the owner of Stella's Dine-Inn Restaurant after her daughter witnesses out-of-control fighting between her mother and brother. S12 E6" + } + }, + { + "id": "IBMS_55330932", + "startMs": 1765596600000, + "endMs": 1765598400000, + "live": false, + "nzBsaRatingString": "G", + "programme": { + "id": "mac_11863822", + "title": "Beat Bobby Flay", + "synopsis": "Scott Conant and journalist Kaitlan Collins hope to report a loss by enlisting judges Hugh Mangum and Katie Pickens to take Bobby down." + } + }, + { + "id": "IBMS_55330934", + "startMs": 1765598400000, + "endMs": 1765602000000, + "live": false, + "nzBsaRatingString": "PG", + "programme": { + "id": "mac_11606846", + "title": "Mysteries At The Museum", + "synopsis": "Don Wildman investigates a cross tied to a notorious paranormal event and inspects a cigar box linked to the 20th century's greatest fictional secret agent. S2 E22" + } + }, + { + "id": "IBMS_55330936", + "startMs": 1765602000000, + "endMs": 1765605600000, + "live": false, + "nzBsaRatingString": "PG", + "programme": { + "id": "mac_11863823", + "title": "Salvage Hunters: Classic Cars", + "synopsis": "A rare half-built Land Rover Series-2a gives Drew the chance to create his dream Safari 'Landie'. With accessories no longer available, the artisans step in." + } + }, + { + "id": "IBMS_55330938", + "startMs": 1765605600000, + "endMs": 1765607400000, + "live": false, + "nzBsaRatingString": "PG", + "programme": { + "id": "mac_11863824", + "title": "Three Men Four Wheels", + "synopsis": "Marino visits one of Britain's best private car collections to see an Aston Martin Ulster. Will Drew and Andy appreciate this beautiful pre-war endurance racer?" + } + }, + { + "id": "IBMS_55330940", + "startMs": 1765607400000, + "endMs": 1765611000000, + "live": false, + "nzBsaRatingString": "PG", + "programme": { + "id": "mac_11863825", + "title": "Ant Anstead: Born Mechanic", + "synopsis": "Ant has found an iconic VW Campervan that's been abandoned mid-restoration. The interior needs a full refit, plus a suspension overhaul." + } + }, + { + "id": "IBMS_55330942", + "startMs": 1765611000000, + "endMs": 1765614600000, + "live": false, + "nzBsaRatingString": "M", + "programme": { + "id": "mac_11863826", + "title": "Top Guns: Inside The Raf", + "synopsis": "Jet pilot Ben faces a life-or-death decision over Syria. And RAF Lossiemouth's station warrant officer prepares for one of the biggest events on the military calendar." + } + }, + { + "id": "IBMS_55330944", + "startMs": 1765614600000, + "endMs": 1765618200000, + "live": false, + "nzBsaRatingString": "PG", + "programme": { + "id": "mac_11863827", + "title": "The Big Clean", + "synopsis": "Al is brought to tears by the state of an elderly woman's flat. Plus, Jo must overcome her fear of birds to help a retired couple declutter their home." + } + }, + { + "id": "IBMS_55330946", + "startMs": 1765618200000, + "endMs": 1765621800000, + "live": false, + "nzBsaRatingString": "PG", + "programme": { + "id": "mac_11606846", + "title": "Mysteries At The Museum", + "synopsis": "Don Wildman investigates a cross tied to a notorious paranormal event and inspects a cigar box linked to the 20th century's greatest fictional secret agent. S2 E22" + } + }, + { + "id": "IBMS_55330948", + "startMs": 1765621800000, + "endMs": 1765623600000, + "live": false, + "nzBsaRatingString": "G", + "programme": { + "id": "mac_11863822", + "title": "Beat Bobby Flay", + "synopsis": "Scott Conant and journalist Kaitlan Collins hope to report a loss by enlisting judges Hugh Mangum and Katie Pickens to take Bobby down." + } + }, + { + "id": "IBMS_55330950", + "startMs": 1765623600000, + "endMs": 1765626600000, + "live": false, + "nzBsaRatingString": "G", + "programme": { + "id": "mac_11633045", + "title": "Restaurant Impossible", + "synopsis": "Robert Irvine heads to New Kensington, Pennsylvania, to ambush the owner of Stella's Dine-Inn Restaurant after her daughter witnesses out-of-control fighting between her mother and brother. S12 E6" + } + } + ] + } + }, + { + "id": "0098", + "title": "TLC", + "number": 16, + "tileImage": { + "uri": "https://images.skyone.co.nz/contentful/dcojl03mw8gy/3naQ4k9cQFPf92e7hs8HJ2/103abd6604e6cbf1a553ce02675cf9ff/TLC.png" + }, + "slotsForDay": { + "slots": [ + { + "id": "IBMS_55350691", + "startMs": 1765534800000, + "endMs": 1765538100000, + "live": false, + "nzBsaRatingString": "M", + "programme": { + "id": "mac_11409766", + "title": "Portals To Hell", + "synopsis": "Cary House Hotel: Paranormal investigators Jack Osbourne and Katrina Weidman travel the world to explore the sinister locations associated with being gateways to the underworld. S2 E9" + } + }, + { + "id": "IBMS_55350692", + "startMs": 1765538100000, + "endMs": 1765540800000, + "live": false, + "nzBsaRatingString": "PG", + "programme": { + "id": "mac_11273044", + "title": "Outdaughtered", + "synopsis": "Outvalentined: Adam faces the challenge of pleasing his wife and all six of his daughters for Valentine's Day. S3 E8" + } + }, + { + "id": "IBMS_55350693", + "startMs": 1765540800000, + "endMs": 1765543800000, + "live": false, + "nzBsaRatingString": "M", + "programme": { + "id": "mac_11781625", + "title": "Forbidden Love", + "synopsis": "You Give Love A Bad Name: Ashley and Mohammed seek marriage counselling, Laurie receives upsetting news, and Lensa confronts Kris after finding troubling messages on his phone. S1 E7" + } + }, + { + "id": "IBMS_55350694", + "startMs": 1765543800000, + "endMs": 1765546800000, + "live": false, + "nzBsaRatingString": "M", + "programme": { + "id": "mac_11851359", + "title": "Match Me Abroad", + "synopsis": "Smoke And Mirrors: Dolly calls Sarah out on her unrealistic expectations. Bruno shakes up Monica's love life for better or worse. Harold makes a confession to Amber. S2 E6" + } + }, + { + "id": "IBMS_55350695", + "startMs": 1765546800000, + "endMs": 1765549800000, + "live": false, + "nzBsaRatingString": "M", + "programme": { + "id": "mac_11851353", + "title": "My Big Fat Fabulous Life", + "synopsis": "London Bridge Is Calling Now: On the road to Salem, Whitney and Ashley have it out in a tense confrontation, and a confession from Jessica sets the stage for new beginnings. S12 E10" + } + }, + { + "id": "IBMS_55350696", + "startMs": 1765549800000, + "endMs": 1765552800000, + "live": false, + "nzBsaRatingString": "M", + "programme": { + "id": "mac_11851360", + "title": "Unexpected", + "synopsis": "The Move From Hell: Lilly and Lawrence have a stressful night loading the moving truck, and Tyra ditches her sister and cousin to meet with Alex. S5 E5" + } + }, + { + "id": "IBMS_55350697", + "startMs": 1765552800000, + "endMs": 1765555800000, + "live": false, + "nzBsaRatingString": "PG", + "programme": { + "id": "mac_11305478", + "title": "Say Yes To The Dress: Lancashire", + "synopsis": "Do You See What I See: Lucy is blind and Gok is on a mission to help her visualise herself in her wedding dress. Harriet seeks a cheap gown for her Vegas wedding. S1 E2" + } + }, + { + "id": "IBMS_55350698", + "startMs": 1765555800000, + "endMs": 1765558800000, + "live": false, + "nzBsaRatingString": "M", + "programme": { + "id": "mac_11851367", + "title": "90 Day Pillow Talk: Before The 90 Days", + "synopsis": "Pillow Talk: The Dark Is Rising: Emily's grandmother joins her and Kobe for a special family watch party. S7 E13" + } + }, + { + "id": "IBMS_55350699", + "startMs": 1765558800000, + "endMs": 1765560300000, + "live": false, + "nzBsaRatingString": "PG", + "programme": { + "id": "mac_10975975", + "title": "Say Yes To The Dress", + "synopsis": "What Does Martha Think?: Martha Stewart helps bride Bailey decide if her original dress is the right one for her. S14 E11" + } + }, + { + "id": "IBMS_55350700", + "startMs": 1765560300000, + "endMs": 1765563600000, + "live": false, + "nzBsaRatingString": "PG", + "programme": { + "id": "mac_11673068", + "title": "Say Yes To The Dress With Tan France", + "synopsis": "Dressing A Drag Queen: Drag Queen Plastiq is no stranger to wearing a dress but needs Tan to pull out all the stops to get them ready for the runway... aisle! S1 E4" + } + }, + { + "id": "IBMS_55350701", + "startMs": 1765563600000, + "endMs": 1765566900000, + "live": false, + "nzBsaRatingString": "PG", + "programme": { + "id": "mac_11673077", + "title": "Say Yes To The Dress With Tan France", + "synopsis": "Sexy On Top, Princess Below: Being of dual heritage, Bride Gemma is worried about taking her place within either culture, so Tan's there to help her. S1 E5" + } + }, + { + "id": "IBMS_55350702", + "startMs": 1765566900000, + "endMs": 1765570500000, + "live": false, + "nzBsaRatingString": "PG", + "programme": { + "id": "mac_11673131", + "title": "Say Yes To The Dress With Tan France", + "synopsis": "Porn Star To Princess: After her fiancé moved to live with her in Ireland, Sarah's determined that her fiancé's Asian traditions play a big part in their wedding. S1 E6" + } + }, + { + "id": "IBMS_55350703", + "startMs": 1765570500000, + "endMs": 1765573800000, + "live": false, + "nzBsaRatingString": "PG", + "programme": { + "id": "mac_11263584", + "title": "Outdaughtered", + "synopsis": "Danielle's Away: Adam is left in charge of all six of his girls when Danielle goes out of town for the weekend. S3 E4" + } + }, + { + "id": "IBMS_55350704", + "startMs": 1765573800000, + "endMs": 1765577100000, + "live": false, + "nzBsaRatingString": "PG", + "programme": { + "id": "mac_11263598", + "title": "Outdaughtered", + "synopsis": "Look A Like Quintmas: After getting bad news about Hazel, Danielle's determined to make this the best Christmas ever. S3 E5" + } + }, + { + "id": "IBMS_55350705", + "startMs": 1765577100000, + "endMs": 1765580400000, + "live": false, + "nzBsaRatingString": "PG", + "programme": { + "id": "mac_11273017", + "title": "Outdaughtered", + "synopsis": "New Year, New Responsibilities: Danielle begins the new year by making a chore chart to teach the kids to help around the house. S3 E6" + } + }, + { + "id": "IBMS_55350706", + "startMs": 1765580400000, + "endMs": 1765583700000, + "live": false, + "nzBsaRatingString": "M", + "programme": { + "id": "mac_11851357", + "title": "Take My Tumour", + "synopsis": "The Man With The Spicy Tumour: The enormous mass on the back of Arlin's neck and head constantly oozes fluids, and a tumour on Renae's shoulder and back impacts her job. S1 E6" + } + }, + { + "id": "IBMS_55350707", + "startMs": 1765583700000, + "endMs": 1765587300000, + "live": false, + "nzBsaRatingString": "M", + "programme": { + "id": "mac_11851365", + "title": "Sister Wives", + "synopsis": "Extending An Olive Branch: Janelle celebrates the sale of Coyote Pass. Meri attends a dating event in Las Vegas. Kody decides to apologize to each of his ex-wives. S13 E10" + } + }, + { + "id": "IBMS_55350708", + "startMs": 1765587300000, + "endMs": 1765593900000, + "live": false, + "nzBsaRatingString": "M", + "programme": { + "id": "mac_11851354", + "title": "90 Day Fiance: Happily Ever After?", + "synopsis": "Boy, That Escalated Quickly: Jasmine is honest with her family. Loren and Elizabeth try to make up. Georgi tests his marriage with Darcey. Brandon and Julia go to Europe. S9 E16" + } + }, + { + "id": "IBMS_55350709", + "startMs": 1765593900000, + "endMs": 1765597200000, + "live": false, + "nzBsaRatingString": "M", + "programme": { + "id": "mac_11851355", + "title": "90 Day Pillow Talk: Happily Ever After?", + "synopsis": "Pillow Talk: Boy, That Escalated Quickly: Darcey inspires Tim and Veronica to give it their all on the runway. S9 E16" + } + }, + { + "id": "IBMS_55350710", + "startMs": 1765597200000, + "endMs": 1765600500000, + "live": false, + "nzBsaRatingString": "M", + "programme": { + "id": "mac_11629283", + "title": "Milf Manor", + "synopsis": "Your MILF Should Know: As two daters share a romantic sunset kiss, love is in the air. When challenged to reveal their darkest secrets, one MILF's scandalous past stuns everyone. S1 E2" + } + }, + { + "id": "IBMS_55350711", + "startMs": 1765600500000, + "endMs": 1765604100000, + "live": false, + "nzBsaRatingString": "M", + "programme": { + "id": "mac_11851366", + "title": "Baylen Out Loud", + "synopsis": "She's Gonna Lose Her Mind: Baylen Dupree is a young woman living with an extreme case of Tourette Syndrome. Despite her daily challenges, she embraces the chaos. S2 E6" + } + }, + { + "id": "IBMS_55350712", + "startMs": 1765604100000, + "endMs": 1765607400000, + "live": false, + "nzBsaRatingString": "M", + "programme": { + "id": "mac_11851365", + "title": "Sister Wives", + "synopsis": "Extending An Olive Branch: Janelle celebrates the sale of Coyote Pass. Meri attends a dating event in Las Vegas. Kody decides to apologize to each of his ex-wives. S13 E10" + } + }, + { + "id": "IBMS_55350713", + "startMs": 1765607400000, + "endMs": 1765611000000, + "live": false, + "nzBsaRatingString": "M", + "programme": { + "id": "mac_11711838", + "title": "90 Day: The Last Resort", + "synopsis": "That Last Text: Kalani tells Asuelu the truth about her night off the resort. A sunset cruise causes setbacks for multiple couples just a day before the commitment ceremony. S1 E11" + } + }, + { + "id": "IBMS_55350714", + "startMs": 1765611000000, + "endMs": 1765614600000, + "live": false, + "nzBsaRatingString": "M", + "programme": { + "id": "mac_11774275", + "title": "The Baldwins", + "synopsis": "Along Came Hilaria: Actor Alec Baldwin and wife Hilaria pack up their seven kids for the summer, but with Alec's trial coming up, they face difficult decisions as a family. S1 E1" + } + }, + { + "id": "IBMS_55350715", + "startMs": 1765614600000, + "endMs": 1765617900000, + "live": false, + "nzBsaRatingString": "M", + "programme": { + "id": "mac_11810434", + "title": "Polyfamily", + "synopsis": "Oh My Quad: The quad meets with an attorney about their parental rights. Taya struggles with romance on a date with Tyler, and Alysia grows jealous when boundaries are crossed. S1 E4" + } + }, + { + "id": "IBMS_55350716", + "startMs": 1765617900000, + "endMs": 1765621200000, + "live": false, + "nzBsaRatingString": "M", + "programme": { + "id": "mac_11851362", + "title": "90 Day Fiance: The Other Way", + "synopsis": "Bon Bini: Luke and Madelein's wedding hangs by a thread, Manon struggles with life in tight quarters and, Chloe's Aruba dream gets off to a rough start S7 E4" + } + }, + { + "id": "IBMS_55350717", + "startMs": 1765621200000, + "endMs": 1765624500000, + "live": false, + "nzBsaRatingString": "M", + "programme": { + "id": "mac_11851363", + "title": "90 Day Pillow Talk: The Other Way", + "synopsis": "Pillow Talk: Bon Bini: Americans move to a New country all in the name of love. Will uprooting their lives pay off, or will they come back? S7 E4" + } + } + ] + } + }, + { + "id": "LIV1", + "title": "Living", + "number": 17, + "tileImage": { + "uri": "https://images.skyone.co.nz/contentful/dcojl03mw8gy/7doHB6Jd9TJ3sdXrCYZuBh/0b14d9afb4d08774d73f641b0b560392/Living_Channel.png" + }, + "slotsForDay": { + "slots": [ + { + "id": "IBMS_54946553", + "startMs": 1765537200000, + "endMs": 1765538700000, + "live": false, + "nzBsaRatingString": "PG", + "programme": { + "id": "mac_11643092", + "title": "House Hunters", + "synopsis": "Colonial vs. Mid-Century: A couple must decide between a centuries-old home or something a little newer in Massachusetts. S148 E10" + } + }, + { + "id": "IBMS_54946554", + "startMs": 1765538700000, + "endMs": 1765542000000, + "live": false, + "nzBsaRatingString": "PG", + "programme": { + "id": "mac_11639558", + "title": "Summer Baking Championship", + "synopsis": "Bring 4th The Sweets: The finalist craft amusement park treats and roll out 4th of July parade float cakes for the Summer Baking Championship title and $25,000! S1 E8" + } + }, + { + "id": "IBMS_54946555", + "startMs": 1765542000000, + "endMs": 1765545000000, + "live": false, + "nzBsaRatingString": "PG", + "programme": { + "id": "mac_11850183", + "title": "Long Lost Family UK", + "synopsis": "Episode 2: Follow Paula Beer - a mother searching for the son she gave up as a teenager - and Sharon Thomas, a sister looking for the younger brother her mother had to give up. S14 E2" + } + }, + { + "id": "IBMS_55153056", + "startMs": 1765545000000, + "endMs": 1765548000000, + "live": false, + "nzBsaRatingString": "PG", + "programme": { + "id": "mac_11850158", + "title": "Inside The Four Seasons At Park Lane", + "synopsis": "Episode 3: Love is in the air. Find out what the hotel would do for love! S1 E3" + } + }, + { + "id": "IBMS_54946557", + "startMs": 1765548000000, + "endMs": 1765549500000, + "live": false, + "nzBsaRatingString": "PG", + "programme": { + "id": "mac_11531550", + "title": "Baked In Vermont", + "synopsis": "Cozy And Comfy: Gesine's cozy, fireside meal includes Turkey Pot Pie with a Biscuit Crust. S1 E2" + } + }, + { + "id": "IBMS_54946558", + "startMs": 1765549500000, + "endMs": 1765552800000, + "live": false, + "nzBsaRatingString": "PG", + "programme": { + "id": "mac_11850157", + "title": "Christmas Cookie Challenge", + "synopsis": "Gingerbread Experts: Four of the finest gingerbreaders create massive North Pole Christmas market displays featuring a festive fruit. S8 E6" + } + }, + { + "id": "IBMS_54946559", + "startMs": 1765552800000, + "endMs": 1765554300000, + "live": false, + "nzBsaRatingString": "PG", + "programme": { + "id": "mac_11677433", + "title": "Giada In Italy", + "synopsis": "Goodnight, Florence: Giada creates a lovely dinner to be shared as the sun goes down over the Ponte Vecchio. S2 E13" + } + }, + { + "id": "IBMS_54946560", + "startMs": 1765554300000, + "endMs": 1765555800000, + "live": false, + "nzBsaRatingString": "PG", + "programme": { + "id": "mac_11531522", + "title": "Baked In Vermont", + "synopsis": "Vermont Tree Juice: Gesine Prado features the local maple syrup harvest in a big brunch for her husband's visiting family. S2 E3" + } + }, + { + "id": "IBMS_54946561", + "startMs": 1765555800000, + "endMs": 1765558800000, + "live": false, + "nzBsaRatingString": "PG", + "programme": { + "id": "mac_11741524", + "title": "Carol Drinkwater's Secret Provence", + "synopsis": "Episode 2: Carol visits her neighbour, professional beekeeper Jean-Marc, for help with her bees. S1 E2" + } + }, + { + "id": "IBMS_54946562", + "startMs": 1765558800000, + "endMs": 1765560300000, + "live": false, + "nzBsaRatingString": "PG", + "programme": { + "id": "mac_11850162", + "title": "House Hunters", + "synopsis": "Making Room For Daycare: A California couple disagrees on how much space they need for her in-home daycare business. S196 E3" + } + }, + { + "id": "IBMS_54946563", + "startMs": 1765560300000, + "endMs": 1765562100000, + "live": false, + "nzBsaRatingString": "PG", + "programme": { + "id": "mac_11850167", + "title": "House Hunters", + "synopsis": "A Sweet Home In Alabama: A young couple in Birmingham, Alabama, disagrees on having extra space for renters. S196 E4" + } + }, + { + "id": "IBMS_54946564", + "startMs": 1765562100000, + "endMs": 1765565400000, + "live": false, + "nzBsaRatingString": "PG", + "programme": { + "id": "mac_11850152", + "title": "Holiday Wars", + "synopsis": "Santa's Buddy Movie: The first three teams must create a scene depicting what it would look like if Santa was starring in a buddy adventure movie. S6 E1" + } + }, + { + "id": "IBMS_54946565", + "startMs": 1765565400000, + "endMs": 1765568700000, + "live": false, + "nzBsaRatingString": "PG", + "programme": { + "id": "mac_11850153", + "title": "Holiday Wars", + "synopsis": "On Parade: Three new teams face off as they create the ultimate holiday parade float display with one element that moves! S6 E2" + } + }, + { + "id": "IBMS_54946566", + "startMs": 1765568700000, + "endMs": 1765572300000, + "live": false, + "nzBsaRatingString": "PG", + "programme": { + "id": "mac_11850170", + "title": "Salvage Hunters: The Restorers", + "synopsis": "A Slice Of Americana: Metalworking wizard Ted takes on a piece of pure Americana in the form of a porch glider seat. S6 E16" + } + }, + { + "id": "IBMS_54946567", + "startMs": 1765572300000, + "endMs": 1765575300000, + "live": false, + "nzBsaRatingString": "PG", + "programme": { + "id": "mac_11850164", + "title": "Escape To The Country", + "synopsis": "Episode 36: A couple from the largest town in Dorset want to escape the urban sprawl to establish a new country life in Devon. S30 E36" + } + }, + { + "id": "IBMS_54946568", + "startMs": 1765575300000, + "endMs": 1765578600000, + "live": false, + "nzBsaRatingString": "PG", + "programme": { + "id": "mac_11850169", + "title": "Escape To The Country", + "synopsis": "Episode 37: Nicki Chapman helps a buyer who wants to escape her ex-council flat in South London and create a new life in the Wiltshire countryside. S30 E37" + } + }, + { + "id": "IBMS_54946569", + "startMs": 1765578600000, + "endMs": 1765582200000, + "live": false, + "nzBsaRatingString": "PG", + "programme": { + "id": "mac_11850174", + "title": "Escape To The Country", + "synopsis": "Episode 38: Steve Brown is with a pair of cycling enthusiasts looking for the perfect rural idyll. S30 E38" + } + }, + { + "id": "IBMS_54946570", + "startMs": 1765582200000, + "endMs": 1765585800000, + "live": false, + "nzBsaRatingString": "PG", + "programme": { + "id": "mac_11757781", + "title": "Holiday Wars", + "synopsis": "Manufacturing Mishap: Christmas is coming, so Jeff Mauro tasks three teams of cake, sugar and cookie artists with illustrating a terrible mistake in Santa's workshop. S5 E3" + } + }, + { + "id": "IBMS_54946571", + "startMs": 1765585800000, + "endMs": 1765589400000, + "live": false, + "nzBsaRatingString": "PG", + "programme": { + "id": "mac_11850184", + "title": "Holiday Wars", + "synopsis": "Island Holiday Party: To celebrate Disney's \"Moana 2,\" the six remaining teams create 3-foot-tall displays inspired by a holiday party on the island of Motunui. S6 E4" + } + }, + { + "id": "IBMS_54946572", + "startMs": 1765589400000, + "endMs": 1765593000000, + "live": false, + "nzBsaRatingString": "PG", + "programme": { + "id": "mac_11850185", + "title": "Holiday Wars", + "synopsis": "Mrs Claus' Night Out: The five remaining teams of cake, cookie and sugar artists create a scene capturing what it looks like when Mrs. Claus has a night out on the town. S6 E5" + } + }, + { + "id": "IBMS_54946573", + "startMs": 1765593000000, + "endMs": 1765596600000, + "live": false, + "nzBsaRatingString": "PG", + "programme": { + "id": "mac_11850186", + "title": "Holiday Wars", + "synopsis": "Santa's Stand-In: The remaining four teams imagine what holiday hijinks unfold when another holiday icon fills in for Santa on Christmas Eve. S6 E6" + } + }, + { + "id": "IBMS_54946574", + "startMs": 1765596600000, + "endMs": 1765600200000, + "live": false, + "nzBsaRatingString": "PG", + "programme": { + "id": "mac_11850187", + "title": "Christmas Cookie Challenge", + "synopsis": "Finding Santa: The cookie masters put their own spin on the North Pole's favourite puzzle game and create 3D displays showing Santa's favourite spots. S8 E1" + } + }, + { + "id": "IBMS_54946575", + "startMs": 1765600200000, + "endMs": 1765603800000, + "live": false, + "nzBsaRatingString": "PG", + "programme": { + "id": "mac_11850188", + "title": "Christmas Cookie Challenge", + "synopsis": "Christmas Feast: The cookie masters whip up \"imposter\" cookies that look just like dishes fit for Christmas dinner and tackle Christmas cookie pies for dessert! S8 E2" + } + }, + { + "id": "IBMS_54946576", + "startMs": 1765603800000, + "endMs": 1765607400000, + "live": false, + "nzBsaRatingString": "PG", + "programme": { + "id": "mac_11850189", + "title": "Christmas Cookie Challenge", + "synopsis": "Santa's Seaside Holiday: Seaworthy cookie makers to reveal how sea creatures celebrate the season and build 3D Christmas sandcastles with crushed cookie sand. S8 E4" + } + }, + { + "id": "IBMS_55153057", + "startMs": 1765607400000, + "endMs": 1765611000000, + "live": false, + "nzBsaRatingString": "PG", + "programme": { + "id": "mac_11850190", + "title": "Inside The Four Seasons At Park Lane", + "synopsis": "Episode 4: There's nerves as the founder of the hotel's Michelin-starred restaurant Pavyllon visits. S1 E4" + } + }, + { + "id": "IBMS_54946578", + "startMs": 1765611000000, + "endMs": 1765614600000, + "live": false, + "nzBsaRatingString": "PG", + "programme": { + "id": "mac_11741600", + "title": "Carol Drinkwater's Secret Provence", + "synopsis": "Episode 3: Carol and Michel's nephew uses his skills to make music and encourages plants. S1 E3" + } + }, + { + "id": "IBMS_54946579", + "startMs": 1765614600000, + "endMs": 1765618200000, + "live": false, + "nzBsaRatingString": "PG", + "programme": { + "id": "mac_11709024", + "title": "Salvage Hunters", + "synopsis": "Episode 3: In this episode, the first port of call is an exclusive tour at the home of a social media only dealer in Suffolk. S17 E3" + } + }, + { + "id": "IBMS_54946580", + "startMs": 1765618200000, + "endMs": 1765621500000, + "live": false, + "nzBsaRatingString": "PG", + "programme": { + "id": "mac_11721438", + "title": "Bizarre Foods With Andrew Zimmern", + "synopsis": "Rome: Porchetta, Pecorino And Pizza: Andrew Zimmern feasts on lamb brains, river eels and a stuffed pig in Rome. S6 E4" + } + }, + { + "id": "IBMS_54946581", + "startMs": 1765621500000, + "endMs": 1765624500000, + "live": false, + "nzBsaRatingString": "PG", + "programme": { + "id": "mac_11850184", + "title": "Holiday Wars", + "synopsis": "Island Holiday Party: To celebrate Disney's \"Moana 2,\" the six remaining teams create 3-foot-tall displays inspired by a holiday party on the island of Motunui. S6 E4" + } + } + ] + } + }, + { + "id": "0197", + "title": "ID", + "number": 18, + "tileImage": { + "uri": "https://images.skyone.co.nz/contentful/dcojl03mw8gy/1BBuJmPeNz2TqofYZIIcPI/e375b242072fecd0d74859cfe2599b45/ID.png" + }, + "slotsForDay": { + "slots": [ + { + "id": "IBMS_55233585", + "startMs": 1765536900000, + "endMs": 1765539900000, + "live": false, + "nzBsaRatingString": "M", + "programme": { + "id": "mac_11434068", + "title": "Disappeared", + "synopsis": "The Dutchman's Curse: A young bellhop goes missing on a treasure hunting trip in the Arizona wilderness. Will rescuers find Jesse? S5 E13" + } + }, + { + "id": "IBMS_55233586", + "startMs": 1765539900000, + "endMs": 1765543200000, + "live": false, + "nzBsaRatingString": "M", + "programme": { + "id": "mac_11548999", + "title": "Pandora's Box: Unleashing Evil", + "synopsis": "Married To Death: In 1994, a husband discovers his wife dead from an apparent overdose. When the toxicology report suggests foul play, detectives dig into their pasts. S1 E4" + } + }, + { + "id": "IBMS_55233587", + "startMs": 1765543200000, + "endMs": 1765546500000, + "live": false, + "nzBsaRatingString": "M", + "programme": { + "id": "mac_11821420", + "title": "A Killer Among Friends", + "synopsis": "Your Smiles And Your Lies: A killer murders the star of a community theatre production the day after a cast party. Her friends worry the culprit is someone in their inner circle S1 E4" + } + }, + { + "id": "IBMS_55233588", + "startMs": 1765546500000, + "endMs": 1765549500000, + "live": false, + "nzBsaRatingString": "M", + "programme": { + "id": "mac_11648416", + "title": "Who The (Bleep) Did I Marry?", + "synopsis": "Smoke And Mirrors: A nurse and pillar of her community meets a caring stranger online and falls in love. But after they marry, she finds he has lived a lie for decades. S6 E9" + } + }, + { + "id": "IBMS_55233589", + "startMs": 1765549500000, + "endMs": 1765552500000, + "live": false, + "nzBsaRatingString": "M", + "programme": { + "id": "mac_11475395", + "title": "Scorned: Love Kills", + "synopsis": "The Doctor Will See You Now: Dr. Dirk Greineder meets a beautiful escort, Elizabeth, and his steamy affair takes a fatal turn. S4 E3" + } + }, + { + "id": "IBMS_55233590", + "startMs": 1765552500000, + "endMs": 1765555800000, + "live": false, + "nzBsaRatingString": "M", + "programme": { + "id": "mac_11699605", + "title": "Murder In The Heartland", + "synopsis": "Shallow Grave: Christmas will never be the same for the Oklahoma people whose dog drops a human skull on the porch. Police search the victim's past to find the truth S2 E4" + } + }, + { + "id": "IBMS_55233591", + "startMs": 1765555800000, + "endMs": 1765558800000, + "live": false, + "nzBsaRatingString": "M", + "programme": { + "id": "mac_11549012", + "title": "American Detective With Lt. Joe Kenda", + "synopsis": "Black Water: In Pennsylvania, the body of a computer programmer is found submerged in a bathtub. Leads are scarce until detectives uncover a series of voicemails. S1 E9" + } + }, + { + "id": "IBMS_55233592", + "startMs": 1765558800000, + "endMs": 1765561500000, + "live": false, + "nzBsaRatingString": "M", + "programme": { + "id": "mac_11434068", + "title": "Disappeared", + "synopsis": "The Dutchman's Curse: A young bellhop goes missing on a treasure hunting trip in the Arizona wilderness. Will rescuers find Jesse? S5 E13" + } + }, + { + "id": "IBMS_55233593", + "startMs": 1765561500000, + "endMs": 1765564500000, + "live": false, + "nzBsaRatingString": "M", + "programme": { + "id": "mac_11850593", + "title": "Evil Lives Here", + "synopsis": "The Blood On My Brother's Hands: Patrick Bruce idolizes his fun-loving older brother, Lance. However, as he watches Lance descend into darkness, he feels powerless to stop him. S10 E1" + } + }, + { + "id": "IBMS_55233594", + "startMs": 1765564500000, + "endMs": 1765567500000, + "live": false, + "nzBsaRatingString": "M", + "programme": { + "id": "mac_11850600", + "title": "American Monster", + "synopsis": "Drip, Drip!: Nikki and Jimmy are a dynamic duo. When Jimmy's family discover his body, it becomes clear that nothing in this relationship is as it seemed. S11 E3" + } + }, + { + "id": "IBMS_55233595", + "startMs": 1765567500000, + "endMs": 1765570200000, + "live": false, + "nzBsaRatingString": "M", + "programme": { + "id": "mac_11638879", + "title": "No One Can Hear You Scream", + "synopsis": "The Woman Who Worked Alone: An Arkansas real estate agent heads to the country to show a rural home to some prospective buyers. But when she arrives, her worst fear comes true. S1 E4" + } + }, + { + "id": "IBMS_55233596", + "startMs": 1765570200000, + "endMs": 1765573200000, + "live": false, + "nzBsaRatingString": "M", + "programme": { + "id": "mac_11693605", + "title": "American Monster", + "synopsis": "Breathe For Me Mum: A stunning betrayal rips apart the close-knit Hartman family. S9 E1" + } + }, + { + "id": "IBMS_55233597", + "startMs": 1765573200000, + "endMs": 1765576200000, + "live": false, + "nzBsaRatingString": "M", + "programme": { + "id": "mac_11850607", + "title": "Who Hired The Hitman?", + "synopsis": "The Murder Of Big Joe: The midnight murder of a snowplowman puts his friends on edge as their tiny town struggles to root out the culprit. S1 E4" + } + }, + { + "id": "IBMS_55233598", + "startMs": 1765576200000, + "endMs": 1765578900000, + "live": false, + "nzBsaRatingString": "M", + "programme": { + "id": "mac_11699609", + "title": "Murder In The Heartland", + "synopsis": "Branches Of Evil: Tray Phelps, a beloved father, son and fiancé is found beaten to death in his own driveway. When his killers are revealed, it shocks the small town. S2 E5" + } + }, + { + "id": "IBMS_55233599", + "startMs": 1765578900000, + "endMs": 1765581900000, + "live": false, + "nzBsaRatingString": "M", + "programme": { + "id": "mac_11850592", + "title": "The Tech Bro Murders", + "synopsis": "Rich And Reckless: A Silicon Valley couple break up and begin a heated custody battle. When one parent vanishes before a visit, police uncover a case fueled by greed. S1 E4" + } + }, + { + "id": "IBMS_55233600", + "startMs": 1765581900000, + "endMs": 1765584900000, + "live": false, + "nzBsaRatingString": "M", + "programme": { + "id": "mac_11745101", + "title": "People Magazine Investigates", + "synopsis": "The Serial Killers Playbook: For years, a killer stalks vulnerable retirees. But, when a 91-year-old woman survives, she helps lead to the capture of the prolific killer. S8 E4" + } + }, + { + "id": "IBMS_55233601", + "startMs": 1765584900000, + "endMs": 1765587600000, + "live": false, + "nzBsaRatingString": "M", + "programme": { + "id": "mac_11699612", + "title": "Death By Fame", + "synopsis": "Day In Court: A sheriff's deputy turned court TV bailiff comes under fire for his wife's untimely death. S2 E4" + } + }, + { + "id": "IBMS_55233602", + "startMs": 1765587600000, + "endMs": 1765590600000, + "live": false, + "nzBsaRatingString": "M", + "programme": { + "id": "mac_11850591", + "title": "Fatal Destination", + "synopsis": "The Ghost Ship: A Bahamian getaway aboard a luxury boat turns dark when a drifting boat reveals bloodstains, missing crew, and secrets beneath paradise's waters. S1 E5" + } + }, + { + "id": "IBMS_55233603", + "startMs": 1765590600000, + "endMs": 1765593600000, + "live": false, + "nzBsaRatingString": "M", + "programme": { + "id": "mac_11622417", + "title": "The Price Of Glee", + "synopsis": "When The Music Stops: Misfortune plagues the legacy of Glee, leaving cast and crew wondering whether their hit show is cursed or if misery is the cost of success. S1 E3" + } + }, + { + "id": "IBMS_55233604", + "startMs": 1765593600000, + "endMs": 1765596300000, + "live": false, + "nzBsaRatingString": "M", + "programme": { + "id": "mac_11850595", + "title": "A Body In The Basement", + "synopsis": "Can't Find Her: When 31-year-old Ashley doesn't call her mum, her family fears the worst. When a 911 call triggers a basement discovery, those fears come true. S2 E4" + } + }, + { + "id": "IBMS_55233605", + "startMs": 1765596300000, + "endMs": 1765599300000, + "live": false, + "nzBsaRatingString": "M", + "programme": { + "id": "mac_11760595", + "title": "Body Cam", + "synopsis": "Fire And Fury: A man takes his child hostage and then sets the house on fire, and suspects rob a jewellery store, stealing over $70,000 worth of jewellery. S5 E14" + } + }, + { + "id": "IBMS_55233606", + "startMs": 1765599300000, + "endMs": 1765602300000, + "live": false, + "nzBsaRatingString": "M", + "programme": { + "id": "mac_11715419", + "title": "True Conviction", + "synopsis": "A Generational Curse: Two generations of a Connecticut family endure the tragedy of big city gun violence. S4 E3" + } + }, + { + "id": "IBMS_55233607", + "startMs": 1765602300000, + "endMs": 1765605000000, + "live": false, + "nzBsaRatingString": "M", + "programme": { + "id": "mac_11850593", + "title": "Evil Lives Here", + "synopsis": "The Blood On My Brother's Hands: Patrick Bruce idolizes his fun-loving older brother, Lance. However, as he watches Lance descend into darkness, he feels powerless to stop him. S10 E1" + } + }, + { + "id": "IBMS_55233608", + "startMs": 1765605000000, + "endMs": 1765608000000, + "live": false, + "nzBsaRatingString": "M", + "programme": { + "id": "mac_11850600", + "title": "American Monster", + "synopsis": "Drip, Drip!: Nikki and Jimmy are a dynamic duo. When Jimmy's family discover his body, it becomes clear that nothing in this relationship is as it seemed. S11 E3" + } + }, + { + "id": "IBMS_55233609", + "startMs": 1765608000000, + "endMs": 1765611000000, + "live": false, + "nzBsaRatingString": "M", + "programme": { + "id": "mac_11745101", + "title": "People Magazine Investigates", + "synopsis": "The Serial Killers Playbook: For years, a killer stalks vulnerable retirees. But, when a 91-year-old woman survives, she helps lead to the capture of the prolific killer. S8 E4" + } + }, + { + "id": "IBMS_55233610", + "startMs": 1765611000000, + "endMs": 1765614300000, + "live": false, + "nzBsaRatingString": "M", + "programme": { + "id": "mac_11699612", + "title": "Death By Fame", + "synopsis": "Day In Court: A sheriff's deputy turned court TV bailiff comes under fire for his wife's untimely death. S2 E4" + } + }, + { + "id": "IBMS_55233611", + "startMs": 1765614300000, + "endMs": 1765617300000, + "live": false, + "nzBsaRatingString": "M", + "programme": { + "id": "mac_11850597", + "title": "Fatal Destination", + "synopsis": "Detour To Darkness: A cross-country journey leads a teen to a counterculture festival and a tragic end. Strangers, secrets and trust unravel in a shocking finale. S1 E1" + } + }, + { + "id": "IBMS_55233612", + "startMs": 1765617300000, + "endMs": 1765620300000, + "live": false, + "nzBsaRatingString": "M", + "programme": { + "id": "mac_11430772", + "title": "Brittany Murphy: An ID Mystery", + "synopsis": "The world is stunned when Hollywood superstar Brittany Murphy dies at age 32. As lurid allegations swirl, her father searches for answers." + } + }, + { + "id": "IBMS_55233613", + "startMs": 1765620300000, + "endMs": 1765623300000, + "live": false, + "nzBsaRatingString": "M", + "programme": { + "id": "mac_11699577", + "title": "American Monster", + "synopsis": "If Only He Had A Heart: Erratic behaviour and a love of guns plague a couple’s fresh start in Spirit Lake, Idaho. S9 E2" + } + }, + { + "id": "IBMS_55233614", + "startMs": 1765623300000, + "endMs": 1765626300000, + "live": false, + "nzBsaRatingString": "M", + "programme": { + "id": "mac_11434079", + "title": "Disappeared", + "synopsis": "At The Crossroads: A teenager runs away after a fight with his grandma; years later a disorientated man with amnesia is taken in by strangers. Is this Jarrod? S5 E14" + } + } + ] + } + }, + { + "id": "MTSC", + "title": "Whakaata Māori", + "number": 19, + "tileImage": { + "uri": "https://images.skyone.co.nz/contentful/dcojl03mw8gy/2FoZcfaaMlRUsIYHxYPhvJ/31535fa924296e9ae3d303417fe5d926/Whakaata_Maori.png" + }, + "slotsForDay": { + "slots": [ + { + "id": "IBMS_55183404", + "startMs": 1765537200000, + "endMs": 1765560600000, + "live": false, + "nzBsaRatingString": null, + "programme": { + "id": "mac_ptc1694060570", + "title": "Whakaata Maori", + "synopsis": "Whakaata Maori specialises in the stories of Aotearoa. Be entertained and informed with news, current affairs, sports, drama, documentaries and more. Visit www.maoriplus.co.nz" + } + }, + { + "id": "IBMS_55247475", + "startMs": 1765560600000, + "endMs": 1765561200000, + "live": false, + "nzBsaRatingString": "G", + "programme": { + "id": "mac_ptc48457071", + "title": "Kori Club", + "synopsis": "Kori Club is a captivating series for 0-8-year-olds that marries the charm of \"The Wiggles\" with the magic of Te Ao Maori." + } + }, + { + "id": "IBMS_55247476", + "startMs": 1765561200000, + "endMs": 1765561800000, + "live": false, + "nzBsaRatingString": "G", + "programme": { + "id": "mac_ptc1409518207", + "title": "Mahi Pai", + "synopsis": "Te Ataakura and Ihi learn fun facts about the fascinating wheke. We also get creative and make a wheke inspired craft." + } + }, + { + "id": "IBMS_55247477", + "startMs": 1765561800000, + "endMs": 1765562400000, + "live": false, + "nzBsaRatingString": "G", + "programme": { + "id": "mac_ptc1497533525", + "title": "Binnabannas", + "synopsis": "Binnabannas and their friend Ujjujju are two taking Sami culture puppets, who explore what it means to be a three-year-old." + } + }, + { + "id": "IBMS_55247498", + "startMs": 1765562400000, + "endMs": 1765563000000, + "live": false, + "nzBsaRatingString": "G", + "programme": { + "id": "mac_ptc78015281", + "title": "Darwin and Newts", + "synopsis": "An animated series for youngsters who love to figure out how things work." + } + }, + { + "id": "IBMS_55247499", + "startMs": 1765563000000, + "endMs": 1765563600000, + "live": false, + "nzBsaRatingString": "G", + "programme": { + "id": "mac_ptc1880804763", + "title": "Island of Mystery", + "synopsis": "After escaping the slimy, scale-covered ponaturi, Josh, Kazumi, Rangi, Kura, and Toro decide to search the creatures' village for the godstick." + } + }, + { + "id": "IBMS_55247500", + "startMs": 1765563600000, + "endMs": 1765564200000, + "live": false, + "nzBsaRatingString": "G", + "programme": { + "id": "mac_ptc1954584662", + "title": "Te Nutube", + "synopsis": "Two clever cousins, Atareta and Te Haakura, share their world with their followers." + } + }, + { + "id": "IBMS_55247501", + "startMs": 1765564200000, + "endMs": 1765564800000, + "live": false, + "nzBsaRatingString": "G", + "programme": { + "id": "mac_ptc2102855949", + "title": "Kia Mau", + "synopsis": "A fun sing-along Maori performing arts series for children." + } + }, + { + "id": "IBMS_55247502", + "startMs": 1765564800000, + "endMs": 1765565400000, + "live": false, + "nzBsaRatingString": "G", + "programme": { + "id": "mac_ptc855919528", + "title": "Te Pamu Kumara", + "synopsis": "Tai and her superhuman whanau run their local vege shop from their kumara farm. Tai tries to figure out why the tupu are still dying." + } + }, + { + "id": "IBMS_55247503", + "startMs": 1765565400000, + "endMs": 1765566000000, + "live": false, + "nzBsaRatingString": "G", + "programme": { + "id": "mac_ptc1926261603", + "title": "Fly My Pepeha", + "synopsis": "Tamariki series offering an immersive journey into the heart of the rich landscapes of Aotearoa and Maori history. Using drone technology, viewers will explore diverse landscapes and traditions." + } + }, + { + "id": "IBMS_55247504", + "startMs": 1765566000000, + "endMs": 1765567800000, + "live": false, + "nzBsaRatingString": "G", + "programme": { + "id": "mac_ptc1391074948", + "title": "Pukana 2025", + "synopsis": "Te Reo Maori entertainment programme for Kura and Kura Kaupapa tamariki / taiohi." + } + }, + { + "id": "IBMS_55247505", + "startMs": 1765567800000, + "endMs": 1765569600000, + "live": false, + "nzBsaRatingString": "G", + "programme": { + "id": "mac_ptc140236717", + "title": "Nga Kapa Haka Kura Tuarua 2024", + "synopsis": "Highlights of the most prestigious Maori kapa haka event on the school calendar." + } + }, + { + "id": "IBMS_55247506", + "startMs": 1765569600000, + "endMs": 1765571400000, + "live": false, + "nzBsaRatingString": "G", + "programme": { + "id": "mac_ptc624447727", + "title": "Nga Kapa Haka Kura Tuarua 2024", + "synopsis": "Highlights of the most prestigious Maori kapa haka event on the school calendar." + } + }, + { + "id": "IBMS_55247507", + "startMs": 1765571400000, + "endMs": 1765576800000, + "live": false, + "nzBsaRatingString": "G", + "programme": { + "id": "mac_ptc1002125667", + "title": "Duck Duck Goose" + } + }, + { + "id": "IBMS_55247508", + "startMs": 1765576800000, + "endMs": 1765578600000, + "live": false, + "nzBsaRatingString": "G", + "programme": { + "id": "mac_ptc963198359", + "title": "Bamay", + "synopsis": "A showcase of Australia’s most diverse and stunning landscapes, shot from the air and inspired by the word Bamay, which means land in the Bundjalung language from northern New South Wales." + } + }, + { + "id": "IBMS_55247509", + "startMs": 1765578600000, + "endMs": 1765580400000, + "live": false, + "nzBsaRatingString": "G", + "programme": { + "id": "mac_ptc1923332236", + "title": "Tui Teka's Trail", + "synopsis": "Tui helps a young farrier out with Max the stallion who front foots and double barrel kicks. Up the East Coast, Tui shares some tips and tricks." + } + }, + { + "id": "IBMS_55247510", + "startMs": 1765580400000, + "endMs": 1765591200000, + "live": false, + "nzBsaRatingString": "G", + "programme": { + "id": "mac_ptc1505511960", + "title": "2025 NZSS Basketball Championships", + "synopsis": "The 2025 NZSS Basketball Nationals live from Palmerston North Events Centre." + } + }, + { + "id": "IBMS_55247511", + "startMs": 1765591200000, + "endMs": 1765592100000, + "live": false, + "nzBsaRatingString": "G", + "programme": { + "id": "mac_ptc1155416669", + "title": "Tamariki Haka", + "synopsis": "Profiles kura kapa haka from across Aotearoa, showcasing the dynamic skills of our future haka exponents." + } + }, + { + "id": "IBMS_55247512", + "startMs": 1765592100000, + "endMs": 1765592700000, + "live": false, + "nzBsaRatingString": "G", + "programme": { + "id": "mac_ptc2097920155", + "title": "Tamariki Haka", + "synopsis": "Profiles kura kapa haka from across Aotearoa, showcasing the dynamic skills of our future haka exponents." + } + }, + { + "id": "IBMS_55247513", + "startMs": 1765592700000, + "endMs": 1765593600000, + "live": false, + "nzBsaRatingString": "G", + "programme": { + "id": "mac_ptc1791173035", + "title": "Mauri Reo Mauri Ora", + "synopsis": "Mauri Reo, Mauri Ora is a series of programme content that focus on entertaining and education Kohungahunga and Kura Tuatahi audiences." + } + }, + { + "id": "IBMS_55247514", + "startMs": 1765593600000, + "endMs": 1765594200000, + "live": false, + "nzBsaRatingString": "G", + "programme": { + "id": "mac_ptc89392833", + "title": "Mauri Reo Mauri Ora", + "synopsis": "Mauri Reo, Mauri Ora is a series of programme content that focus on entertaining and education Kohungahunga and Kura Tuatahi audiences." + } + }, + { + "id": "IBMS_55247515", + "startMs": 1765594200000, + "endMs": 1765594800000, + "live": false, + "nzBsaRatingString": "G", + "programme": { + "id": "mac_ptc607828485", + "title": "Te Reo Rangatira", + "synopsis": "NEW: Focuses on the revitalisation of the Maori language by following the journey of those who have risen to the challenge of learning Te Reo Maori as a second language." + } + }, + { + "id": "IBMS_55247516", + "startMs": 1765594800000, + "endMs": 1765595700000, + "live": false, + "nzBsaRatingString": "G", + "programme": { + "id": "mac_ptc624462836", + "title": "Reo Warriors: Nga Toa Taua o Te Reo", + "synopsis": "NEW: Dr Cathy Dewes, a member of the Te Reo Maori Society responsible for the birth of Maori Language Week, and stalwart of the Kura Kaupapa Maori movement, shares her story." + } + }, + { + "id": "IBMS_55247517", + "startMs": 1765595700000, + "endMs": 1765596600000, + "live": false, + "nzBsaRatingString": "G", + "programme": { + "id": "mac_ptc1187315650", + "title": "Reo Warriors: Nga Toa Taua o Te Reo", + "synopsis": "Award winning composer, singer and song writer, Pere Wihongi, speaks about the benefits of using platforms like Disney for the normalisation of te reo Maori." + } + }, + { + "id": "IBMS_55247518", + "startMs": 1765596600000, + "endMs": 1765597200000, + "live": false, + "nzBsaRatingString": "G", + "programme": { + "id": "mac_ptc1670396436", + "title": "Mauri Reo Mauri Ora", + "synopsis": "Mauri Reo, Mauri Ora is a series of programme content that focus on entertaining and education Kohungahunga and Kura Tuatahi audiences." + } + }, + { + "id": "IBMS_55247519", + "startMs": 1765597200000, + "endMs": 1765597800000, + "live": false, + "nzBsaRatingString": "G", + "programme": { + "id": "mac_ptc300902426", + "title": "Mauri Reo Mauri Ora", + "synopsis": "Mauri Reo, Mauri Ora is a series of programme content that focus on entertaining and education Kohungahunga and Kura Tuatahi audiences." + } + }, + { + "id": "IBMS_55247520", + "startMs": 1765597800000, + "endMs": 1765598400000, + "live": false, + "nzBsaRatingString": "G", + "programme": { + "id": "mac_ptc927720173", + "title": "Mauri Reo Mauri Ora", + "synopsis": "Mauri Reo, Mauri Ora is a series of programme content that focus on entertaining and education Kohungahunga and Kura Tuatahi audiences." + } + }, + { + "id": "IBMS_55247521", + "startMs": 1765598400000, + "endMs": 1765600200000, + "live": false, + "nzBsaRatingString": "PG", + "programme": { + "id": "mac_ptc2144629241", + "title": "Whiua Te Paatai", + "synopsis": "Fluent reo Maori speakers are in the hot seat to answer the tough questions." + } + }, + { + "id": "IBMS_55247522", + "startMs": 1765600200000, + "endMs": 1765600800000, + "live": false, + "nzBsaRatingString": "G", + "programme": { + "id": "mac_ptc1222481474", + "title": "Mauri Reo Mauri Ora", + "synopsis": "Mauri Reo, Mauri Ora is a series of programme content that focus on entertaining and education Kohungahunga and Kura Tuatahi audiences." + } + }, + { + "id": "IBMS_55247523", + "startMs": 1765600800000, + "endMs": 1765601400000, + "live": false, + "nzBsaRatingString": "G", + "programme": { + "id": "mac_ptc153564338", + "title": "Mauri Reo Mauri Ora", + "synopsis": "Mauri Reo, Mauri Ora is a series of programme content that focus on entertaining and education Kohungahunga and Kura Tuatahi audiences." + } + }, + { + "id": "IBMS_55247524", + "startMs": 1765601400000, + "endMs": 1765602000000, + "live": false, + "nzBsaRatingString": "G", + "programme": { + "id": "mac_ptc1860892340", + "title": "Mauri Reo Mauri Ora", + "synopsis": "Mauri Reo, Mauri Ora is a series of programme content that focus on entertaining and education Kohungahunga and Kura Tuatahi audiences." + } + }, + { + "id": "IBMS_55247525", + "startMs": 1765602000000, + "endMs": 1765603800000, + "live": false, + "nzBsaRatingString": "G", + "programme": { + "id": "mac_ptc22916329", + "title": "Super Kura", + "synopsis": "Manga puts in the hard yards on site as the race is on to meet the Council Code of Compliance. A visit to Whangarei Hospital brings some mixed news for Mungzy's whanau." + } + }, + { + "id": "IBMS_55247526", + "startMs": 1765603800000, + "endMs": 1765605600000, + "live": false, + "nzBsaRatingString": "PG", + "programme": { + "id": "mac_ptc705183022", + "title": "End Of The Valley", + "synopsis": "Family, Right? Pressure from Kaea’s family begins to build while Ngati Kiokio mourns a loved one." + } + }, + { + "id": "IBMS_55247527", + "startMs": 1765605600000, + "endMs": 1765607400000, + "live": false, + "nzBsaRatingString": "PG", + "programme": { + "id": "mac_ptc768202596", + "title": "Red Earth Uncovered", + "synopsis": "NEW: Red Earth Uncovered is a half-hour youth documentary series." + } + }, + { + "id": "IBMS_55247528", + "startMs": 1765607400000, + "endMs": 1765613400000, + "live": false, + "nzBsaRatingString": "G", + "programme": { + "id": "mac_ptc920143800", + "title": "Toys & Pets" + } + }, + { + "id": "IBMS_55247529", + "startMs": 1765613400000, + "endMs": 1765620600000, + "live": false, + "nzBsaRatingString": "PG", + "programme": { + "id": "mac_ptc739625500", + "title": "Push", + "synopsis": "A group of people with psychic abilities must band together to evade a shadowy government agency and prevent the exploitation of their powers, leading to a high-stakes battle for survival." + } + }, + { + "id": "IBMS_55247530", + "startMs": 1765620600000, + "endMs": 1765623600000, + "live": false, + "nzBsaRatingString": null, + "programme": { + "id": "mac_ptc2079143587", + "title": "Whakaata Maori", + "synopsis": "Whakaata Maori specialises in the stories of Aotearoa. Be entertained and informed with news, current affairs, sports, drama, documentaries and more. Visit www.maoriplus.co.nz" + } + }, + { + "id": "IBMS_55247531", + "startMs": 1765623600000, + "endMs": 1765647000000, + "live": false, + "nzBsaRatingString": null, + "programme": { + "id": "mac_ptc190388109", + "title": "Whakaata Maori", + "synopsis": "Whakaata Maori specialises in the stories of Aotearoa. Be entertained and informed with news, current affairs, sports, drama, documentaries and more. Visit www.maoriplus.co.nz" + } + } + ] + } + }, + { + "id": "ART2", + "title": "Sky Arts", + "number": 20, + "tileImage": { + "uri": "https://images.skyone.co.nz/contentful/dcojl03mw8gy/1CI3bDDCjaWhqzh4eABWMC/e7b48a74cfadbb496b7de38890366bc0/ARTS.png" + }, + "slotsForDay": { + "slots": [ + { + "id": "IBMS_55143196", + "startMs": 1765537200000, + "endMs": 1765537500000, + "live": false, + "nzBsaRatingString": "PG", + "programme": { + "id": "mac_11726974", + "title": "Story Of A Photo 14", + "synopsis": "Jerrie Cobb - First Woman not on the Moon" + } + }, + { + "id": "IBMS_55143197", + "startMs": 1765537500000, + "endMs": 1765538100000, + "live": false, + "nzBsaRatingString": "G", + "programme": { + "id": "mac_11674460", + "title": "Masterworks 9", + "synopsis": "TATE GALLERY, LONDON - Victor Pasmore Coast of the Inland Sea/Küstenlandschaft 1950" + } + }, + { + "id": "IBMS_55143198", + "startMs": 1765538100000, + "endMs": 1765540800000, + "live": false, + "nzBsaRatingString": "G", + "programme": { + "id": "mac_11677679", + "title": "Landscape Artist Of The Year 8", + "synopsis": "Stephen and the final three contestants look out over the bustling Covent Garden piazza, with the trio making one final effort to impress the judges and be crowned Landscape Artist of the Year." + } + }, + { + "id": "IBMS_55143199", + "startMs": 1765540800000, + "endMs": 1765544100000, + "live": false, + "nzBsaRatingString": "PG", + "programme": { + "id": "mac_11764057", + "title": "Dante: Inferno To Paradise 4", + "synopsis": "Dante chronicles the life and legacy of the great 14th century Florentine poet, Dante Alighieri, and his soaring masterpiece, The Divine Comedy." + } + }, + { + "id": "IBMS_55143200", + "startMs": 1765544100000, + "endMs": 1765545600000, + "live": false, + "nzBsaRatingString": "G", + "programme": { + "id": "mac_11826943", + "title": "El Greco: Lost In Time", + "synopsis": "An artist so ahead of his time, it took centuries for the Impressionists to rediscover the brilliance of El Greco. Was this particular picture the inspiration behind Picasso's masterpiece Les Demoiselles d'Avignon?" + } + }, + { + "id": "IBMS_55143201", + "startMs": 1765545600000, + "endMs": 1765546200000, + "live": false, + "nzBsaRatingString": "G", + "programme": { + "id": "mac_11846852", + "title": "Dream Build 4", + "synopsis": "Dream Build is a short series that explores the personal stories of Australians who have turned the dream of building their own homes into a spectacular reality." + } + }, + { + "id": "IBMS_55143202", + "startMs": 1765546200000, + "endMs": 1765549800000, + "live": false, + "nzBsaRatingString": "G", + "programme": { + "id": "mac_11660575", + "title": "Starstruck - Gene Kelly's Love Letter To Ballet 1", + "synopsis": "Journey to 1960s Paris, where Gene Kelly's iconic choreography meets the elegance of the Paris Opera Ballet. Experience a fusion of jazz and ballet in a delightful new production." + } + }, + { + "id": "IBMS_55143203", + "startMs": 1765549800000, + "endMs": 1765552500000, + "live": false, + "nzBsaRatingString": "PG", + "programme": { + "id": "mac_11826955", + "title": "Classic Christmas Movies 4", + "synopsis": "This series goes in search of the cinematically sublime and those festive-themed movies that have transcended their era to enter the pantheon of the greatest Christmas Films." + } + }, + { + "id": "IBMS_55143204", + "startMs": 1765552500000, + "endMs": 1765553400000, + "live": false, + "nzBsaRatingString": "G", + "programme": { + "id": "mac_11745699", + "title": "Aliza Nisenbaum - Painting From Life", + "synopsis": "Mexican-born, New York-based artist Aliza Nisenbaum produces highly detailed portrait paintings that humanize, honour, and make visible the underrepresented and underserved." + } + }, + { + "id": "IBMS_55143205", + "startMs": 1765553400000, + "endMs": 1765557000000, + "live": false, + "nzBsaRatingString": "G", + "programme": { + "id": "mac_11797942", + "title": "Anglesey Abbey, Mr Straw's House, Killerton", + "synopsis": "Time has caught up with a show-stopping clock, and a perfectly preserved 1920s house is under threat. A child's fancy dress costume sheds light on the life of its original owner." + } + }, + { + "id": "IBMS_55143206", + "startMs": 1765557000000, + "endMs": 1765559700000, + "live": false, + "nzBsaRatingString": "PG", + "programme": { + "id": "mac_11851338", + "title": "Live 8 - 2005", + "synopsis": "This four-part series tells the definitive story of how two rock stars inspired the largest global music event in history, sparking a remarkable social movement and raising tens of billions of dollars." + } + }, + { + "id": "IBMS_55143207", + "startMs": 1765559700000, + "endMs": 1765561500000, + "live": false, + "nzBsaRatingString": "M", + "programme": { + "id": "mac_11734370", + "title": "Inside No. 9 1", + "synopsis": "The Final Season. Jaws will drop and spines will tingle. Heads might even roll. Darkly twisted comic tales from the imaginations of Steve Pemberton and Reece Shearsmith, joined by a host of stars." + } + }, + { + "id": "IBMS_55143208", + "startMs": 1765561500000, + "endMs": 1765563900000, + "live": false, + "nzBsaRatingString": "PG", + "programme": { + "id": "mac_11833776", + "title": "Shuffling The Deck", + "synopsis": "From gangsters and iconic performers, to gambling dens and glamour, this is the sweeping origin story of how Las Vegas transformed into the infamous entertainment capital of the world. Pt 3 of 4" + } + }, + { + "id": "IBMS_55143209", + "startMs": 1765563900000, + "endMs": 1765565400000, + "live": false, + "nzBsaRatingString": "G", + "programme": { + "id": "mac_11715694", + "title": "China On Stage 3", + "synopsis": "How China Moves - Discover how the ebb and flow of China's changing times is reflected in dance." + } + }, + { + "id": "IBMS_55143210", + "startMs": 1765565400000, + "endMs": 1765566000000, + "live": false, + "nzBsaRatingString": "G", + "programme": { + "id": "mac_11674470", + "title": "Masterworks 19", + "synopsis": "THE MUSEUM OF MODERN ART, NEW YORK - Jasper Johns Flag 1955" + } + }, + { + "id": "IBMS_55143226", + "startMs": 1765566000000, + "endMs": 1765566300000, + "live": false, + "nzBsaRatingString": "PG", + "programme": { + "id": "mac_11726974", + "title": "Story Of A Photo 14", + "synopsis": "Jerrie Cobb - First Woman not on the Moon" + } + }, + { + "id": "IBMS_55143227", + "startMs": 1765566300000, + "endMs": 1765566900000, + "live": false, + "nzBsaRatingString": "G", + "programme": { + "id": "mac_11674460", + "title": "Masterworks 9", + "synopsis": "TATE GALLERY, LONDON - Victor Pasmore Coast of the Inland Sea/Küstenlandschaft 1950" + } + }, + { + "id": "IBMS_55143228", + "startMs": 1765566900000, + "endMs": 1765569600000, + "live": false, + "nzBsaRatingString": "G", + "programme": { + "id": "mac_11677679", + "title": "Landscape Artist Of The Year 8", + "synopsis": "Stephen and the final three contestants look out over the bustling Covent Garden piazza, with the trio making one final effort to impress the judges and be crowned Landscape Artist of the Year." + } + }, + { + "id": "IBMS_55143229", + "startMs": 1765569600000, + "endMs": 1765572900000, + "live": false, + "nzBsaRatingString": "PG", + "programme": { + "id": "mac_11764057", + "title": "Dante: Inferno To Paradise 4", + "synopsis": "Dante chronicles the life and legacy of the great 14th century Florentine poet, Dante Alighieri, and his soaring masterpiece, The Divine Comedy." + } + }, + { + "id": "IBMS_55143230", + "startMs": 1765572900000, + "endMs": 1765574400000, + "live": false, + "nzBsaRatingString": "G", + "programme": { + "id": "mac_11826943", + "title": "El Greco: Lost In Time", + "synopsis": "An artist so ahead of his time, it took centuries for the Impressionists to rediscover the brilliance of El Greco. Was this particular picture the inspiration behind Picasso's masterpiece Les Demoiselles d'Avignon?" + } + }, + { + "id": "IBMS_55143231", + "startMs": 1765574400000, + "endMs": 1765575000000, + "live": false, + "nzBsaRatingString": "G", + "programme": { + "id": "mac_11846852", + "title": "Dream Build 4", + "synopsis": "Dream Build is a short series that explores the personal stories of Australians who have turned the dream of building their own homes into a spectacular reality." + } + }, + { + "id": "IBMS_55143232", + "startMs": 1765575000000, + "endMs": 1765578600000, + "live": false, + "nzBsaRatingString": "G", + "programme": { + "id": "mac_11660575", + "title": "Starstruck - Gene Kelly's Love Letter To Ballet 1", + "synopsis": "Journey to 1960s Paris, where Gene Kelly's iconic choreography meets the elegance of the Paris Opera Ballet. Experience a fusion of jazz and ballet in a delightful new production." + } + }, + { + "id": "IBMS_55143233", + "startMs": 1765578600000, + "endMs": 1765581300000, + "live": false, + "nzBsaRatingString": "PG", + "programme": { + "id": "mac_11826955", + "title": "Classic Christmas Movies 4", + "synopsis": "This series goes in search of the cinematically sublime and those festive-themed movies that have transcended their era to enter the pantheon of the greatest Christmas Films." + } + }, + { + "id": "IBMS_55143234", + "startMs": 1765581300000, + "endMs": 1765582200000, + "live": false, + "nzBsaRatingString": "G", + "programme": { + "id": "mac_11745699", + "title": "Aliza Nisenbaum - Painting From Life", + "synopsis": "Mexican-born, New York-based artist Aliza Nisenbaum produces highly detailed portrait paintings that humanize, honour, and make visible the underrepresented and underserved." + } + }, + { + "id": "IBMS_55143235", + "startMs": 1765582200000, + "endMs": 1765585800000, + "live": false, + "nzBsaRatingString": "G", + "programme": { + "id": "mac_11797942", + "title": "Anglesey Abbey, Mr Straw's House, Killerton", + "synopsis": "Time has caught up with a show-stopping clock, and a perfectly preserved 1920s house is under threat. A child's fancy dress costume sheds light on the life of its original owner." + } + }, + { + "id": "IBMS_55143236", + "startMs": 1765585800000, + "endMs": 1765588500000, + "live": false, + "nzBsaRatingString": "PG", + "programme": { + "id": "mac_11851338", + "title": "Live 8 - 2005", + "synopsis": "This four-part series tells the definitive story of how two rock stars inspired the largest global music event in history, sparking a remarkable social movement and raising tens of billions of dollars." + } + }, + { + "id": "IBMS_55143237", + "startMs": 1765588500000, + "endMs": 1765590300000, + "live": false, + "nzBsaRatingString": "M", + "programme": { + "id": "mac_11734370", + "title": "Inside No. 9 1", + "synopsis": "The Final Season. Jaws will drop and spines will tingle. Heads might even roll. Darkly twisted comic tales from the imaginations of Steve Pemberton and Reece Shearsmith, joined by a host of stars." + } + }, + { + "id": "IBMS_55143238", + "startMs": 1765590300000, + "endMs": 1765592700000, + "live": false, + "nzBsaRatingString": "PG", + "programme": { + "id": "mac_11833776", + "title": "Shuffling The Deck", + "synopsis": "From gangsters and iconic performers, to gambling dens and glamour, this is the sweeping origin story of how Las Vegas transformed into the infamous entertainment capital of the world. Pt 3 of 4" + } + }, + { + "id": "IBMS_55143239", + "startMs": 1765592700000, + "endMs": 1765594200000, + "live": false, + "nzBsaRatingString": "G", + "programme": { + "id": "mac_11715694", + "title": "China On Stage 3", + "synopsis": "How China Moves - Discover how the ebb and flow of China's changing times is reflected in dance." + } + }, + { + "id": "IBMS_55143240", + "startMs": 1765594200000, + "endMs": 1765594800000, + "live": false, + "nzBsaRatingString": "G", + "programme": { + "id": "mac_11674470", + "title": "Masterworks 19", + "synopsis": "THE MUSEUM OF MODERN ART, NEW YORK - Jasper Johns Flag 1955" + } + }, + { + "id": "IBMS_55123370", + "startMs": 1765594800000, + "endMs": 1765595400000, + "live": false, + "nzBsaRatingString": "G", + "programme": { + "id": "mac_11674472", + "title": "Masterworks 21", + "synopsis": "STEDELIJK MUSEUM, AMSTERDAM - Kasimir Malewitsch An Englishman in Moscow/Ein Engländer in Moskau 1913-14" + } + }, + { + "id": "IBMS_55023548", + "startMs": 1765595400000, + "endMs": 1765598700000, + "live": false, + "nzBsaRatingString": "G", + "programme": { + "id": "mac_11778721", + "title": "Florence Cathedral", + "synopsis": "The third installment of the Wonders of Europe features the Tower of London, Wawel Royal Castle, the Cathedral of Florence and Austria's Castle of Schönbrunn." + } + }, + { + "id": "IBMS_55120992", + "startMs": 1765598700000, + "endMs": 1765599300000, + "live": false, + "nzBsaRatingString": "G", + "programme": { + "id": "mac_11846853", + "title": "Dream Build 5", + "synopsis": "Dream Build is a short series that explores the personal stories of Australians who have turned the dream of building their own homes into a spectacular reality." + } + }, + { + "id": "IBMS_55023623", + "startMs": 1765599300000, + "endMs": 1765602300000, + "live": false, + "nzBsaRatingString": "PG", + "programme": { + "id": "mac_11812824", + "title": "Golden Opulence", + "synopsis": "Explore the millennia-long legacy of luxury in Anatolia, a cradle of civilisation and the place where East meets West." + } + }, + { + "id": "IBMS_55023625", + "startMs": 1765602300000, + "endMs": 1765605600000, + "live": false, + "nzBsaRatingString": "PG", + "programme": { + "id": "mac_11778981", + "title": "Joan Mitchell: A Woman In Abstraction 1", + "synopsis": "Acclaimed by critics and the public alike, Joan Mitchell was one of the greatest painters of the American Abstract Expressionist movement, making her mark in the then male-dominated world of abstract art." + } + }, + { + "id": "IBMS_54857642", + "startMs": 1765605600000, + "endMs": 1765608900000, + "live": false, + "nzBsaRatingString": "G", + "programme": { + "id": "mac_11660218", + "title": "Finding Your Roots 4", + "synopsis": "Far From Home - Jamie Chung, Cyndi Lauper and Danny Trejo retrace the journeys of their immigrant ancestors." + } + }, + { + "id": "IBMS_55123544", + "startMs": 1765608900000, + "endMs": 1765609200000, + "live": false, + "nzBsaRatingString": "PG", + "programme": { + "id": "mac_11726975", + "title": "Story Of A Photo 15", + "synopsis": "Violette Morris - French Rebel/French Traitor" + } + }, + { + "id": "IBMS_54541742", + "startMs": 1765609200000, + "endMs": 1765612800000, + "live": false, + "nzBsaRatingString": "G", + "programme": { + "id": "mac_11834497", + "title": "Kev Carmody", + "synopsis": "In 2008, a bunch of musicians come together to share the stage with Kev Carmody, with Paul Kelly remembering this concert as one of his all-time favourites." + } + }, + { + "id": "IBMS_54531137", + "startMs": 1765612800000, + "endMs": 1765614300000, + "live": false, + "nzBsaRatingString": "M", + "programme": { + "id": "mac_11826938", + "title": "David Bowie", + "synopsis": "David Bowie. An exploration of the rich and troubled lives of some of music's most iconic rock stars and the legacies they have left behind." + } + }, + { + "id": "IBMS_55023583", + "startMs": 1765614300000, + "endMs": 1765617600000, + "live": false, + "nzBsaRatingString": "G", + "programme": { + "id": "mac_11787814", + "title": "Bardem's Metamorphosis", + "synopsis": "Javier Bardem is a chameleon-like actor, known for taking artistic risks throughout his career. We take a look into Bardem’s metamorphoses, to reveal his creative process behind his acting performances." + } + }, + { + "id": "IBMS_55023608", + "startMs": 1765617600000, + "endMs": 1765619700000, + "live": false, + "nzBsaRatingString": "G", + "programme": { + "id": "mac_11676401", + "title": "Spike Lee", + "synopsis": "The life and career of Academy Award-winning American film director Spike Lee, who earned critical acclaim with gripping movies like 'Malcolm X', 'Inside Man', and 'BlacKkKlansman'." + } + }, + { + "id": "IBMS_55023609", + "startMs": 1765619700000, + "endMs": 1765622400000, + "live": false, + "nzBsaRatingString": "G", + "programme": { + "id": "mac_11676402", + "title": "Mike Nichols", + "synopsis": "Mike Nichols - A look at the life and career of the Academy Award-winning director, whose work includes `Who's Afraid of Virginia Woolf' and `The Graduate'." + } + }, + { + "id": "IBMS_55123372", + "startMs": 1765622400000, + "endMs": 1765623000000, + "live": false, + "nzBsaRatingString": "G", + "programme": { + "id": "mac_11674456", + "title": "Masterworks 5", + "synopsis": "WALLRAFF-RICHARTZ-MUSEUM & MUSEUM LUDWIG, COLOGNE - Wolf Vostell Miss America 1968" + } + }, + { + "id": "IBMS_55123148", + "startMs": 1765623000000, + "endMs": 1765623600000, + "live": false, + "nzBsaRatingString": "G", + "programme": { + "id": "mac_11674461", + "title": "Masterworks 10", + "synopsis": "TATE GALLERY, LONDON - Paul Nash Landscape from a Dream/Traumlandschaft 1936-38" + } + }, + { + "id": "IBMS_55143615", + "startMs": 1765623600000, + "endMs": 1765624200000, + "live": false, + "nzBsaRatingString": "G", + "programme": { + "id": "mac_11674472", + "title": "Masterworks 21", + "synopsis": "STEDELIJK MUSEUM, AMSTERDAM - Kasimir Malewitsch An Englishman in Moscow/Ein Engländer in Moskau 1913-14" + } + } + ] + } + }, + { + "id": "0130", + "title": "HGTV", + "number": 21, + "tileImage": { + "uri": "https://images.skyone.co.nz/contentful/dcojl03mw8gy/1ztTal4BJQ9QyFMKuSDad7/b409462d700203c2bd0f08872b828342/HGTV.png" + }, + "slotsForDay": { + "slots": [ + { + "id": "IBMS_55331263", + "startMs": 1765536000000, + "endMs": 1765539000000, + "live": false, + "nzBsaRatingString": "G", + "programme": { + "id": "mac_11863853", + "title": "Beachfront Bargain Hunt Renovation", + "synopsis": "A couple from Washington, DC escapes the city grind by creating their ideal vacation home on Maryland's Chesapeake Bay." + } + }, + { + "id": "IBMS_55331264", + "startMs": 1765539000000, + "endMs": 1765543500000, + "live": false, + "nzBsaRatingString": "G", + "programme": { + "id": "mac_11837647", + "title": "Home Town Takeover", + "synopsis": "Ben and Erin renovate the home of a local family health advocate, and downtown Sebring's main park gets a refresh." + } + }, + { + "id": "IBMS_55331265", + "startMs": 1765543500000, + "endMs": 1765546500000, + "live": false, + "nzBsaRatingString": "G", + "programme": { + "id": "mac_11863852", + "title": "100 Day Dream Home", + "synopsis": "Brian and Mika continue the challenge of building two houses at the same time, all while facing the biggest storm to ever hit the Tampa area." + } + }, + { + "id": "IBMS_55331266", + "startMs": 1765546500000, + "endMs": 1765548000000, + "live": false, + "nzBsaRatingString": "G", + "programme": { + "id": "mac_11539601", + "title": "First Time Fixer", + "synopsis": "Friends Brittany and Annie always wanted to take on a fixer-upper. With Chip and Joanna a phone call away, they're ready to tackle this renovation." + } + }, + { + "id": "IBMS_55331267", + "startMs": 1765548000000, + "endMs": 1765551000000, + "live": false, + "nzBsaRatingString": "G", + "programme": { + "id": "mac_11606711", + "title": "Unsellable Houses", + "synopsis": "A couple need to update their mother's rambler for sale. Leslie worries the eclectic design plan will repel buyers, and Lyndsay gets a second opinion." + } + }, + { + "id": "IBMS_55331268", + "startMs": 1765551000000, + "endMs": 1765554000000, + "live": false, + "nzBsaRatingString": "G", + "programme": { + "id": "mac_11608270", + "title": "Unsellable Houses", + "synopsis": "Lyndsay and Leslie use elegant tilework and bold colour to update a 1970s rambler into the perfect home for a second-time buyer." + } + }, + { + "id": "IBMS_55331269", + "startMs": 1765554000000, + "endMs": 1765555500000, + "live": false, + "nzBsaRatingString": "PG", + "programme": { + "id": "mac_11770688", + "title": "Homes Gone Wild", + "synopsis": "Jack visits a newly-bought home that takes its cues from a musical instrument, an earth-dome compound in the desert, and a home fit for a king." + } + }, + { + "id": "IBMS_55331270", + "startMs": 1765555500000, + "endMs": 1765557000000, + "live": false, + "nzBsaRatingString": "PG", + "programme": { + "id": "mac_11771766", + "title": "Homes Gone Wild", + "synopsis": "Jack goes to St. Louis where a Catholic church has undergone a conversion, and to the California desert where a colour burst has recently been sold." + } + }, + { + "id": "IBMS_55331271", + "startMs": 1765557000000, + "endMs": 1765558800000, + "live": false, + "nzBsaRatingString": "G", + "programme": { + "id": "mac_11783666", + "title": "Perfect Home Asia", + "synopsis": "A family hopes they can find a dog-friendly home for their return to Nagoya, Japan." + } + }, + { + "id": "IBMS_55331272", + "startMs": 1765558800000, + "endMs": 1765561800000, + "live": false, + "nzBsaRatingString": "G", + "programme": { + "id": "mac_11746605", + "title": "Christina On The Coast", + "synopsis": "Christina brings a cohesive, coastal vibe to a couple who have struggled to update their 100-year-old home." + } + }, + { + "id": "IBMS_55331273", + "startMs": 1765561800000, + "endMs": 1765564800000, + "live": false, + "nzBsaRatingString": "G", + "programme": { + "id": "mac_11733583", + "title": "Hgtv Dream Home", + "synopsis": "From dreamy design to luxurious details, this HGTV Dream Home is a gorgeous tropical escape that will be given away to one lucky winner!" + } + }, + { + "id": "IBMS_55331274", + "startMs": 1765564800000, + "endMs": 1765569300000, + "live": false, + "nzBsaRatingString": "G", + "programme": { + "id": "mac_11837647", + "title": "Home Town Takeover", + "synopsis": "Ben and Erin renovate the home of a local family health advocate, and downtown Sebring's main park gets a refresh." + } + }, + { + "id": "IBMS_55331275", + "startMs": 1765569300000, + "endMs": 1765572300000, + "live": false, + "nzBsaRatingString": "G", + "programme": { + "id": "mac_11780082", + "title": "Celebrity Iou", + "synopsis": "Mira Sorvino enlists Jonathan and Drew to spruce up the home of someone she considers a sister." + } + }, + { + "id": "IBMS_55331276", + "startMs": 1765572300000, + "endMs": 1765575300000, + "live": false, + "nzBsaRatingString": "PG", + "programme": { + "id": "mac_11860941", + "title": "Rock The Block", + "synopsis": "It's week three and the teams tackle their main suites and make massive moves as some desperately seek their first win of the competition." + } + }, + { + "id": "IBMS_55331277", + "startMs": 1765575300000, + "endMs": 1765576800000, + "live": false, + "nzBsaRatingString": "G", + "programme": { + "id": "mac_11860942", + "title": "Mini Reni", + "synopsis": "Joanna revives a primary bath and connecting sunroom with a classic design and a colour palette that feels original to the old home." + } + }, + { + "id": "IBMS_55331278", + "startMs": 1765576800000, + "endMs": 1765578300000, + "live": false, + "nzBsaRatingString": "G", + "programme": { + "id": "mac_11860943", + "title": "Mini Reni", + "synopsis": "Joanna creates two very different looks that bring old-world character and personality into home offices for a husband and wife." + } + }, + { + "id": "IBMS_55331279", + "startMs": 1765578300000, + "endMs": 1765581300000, + "live": false, + "nzBsaRatingString": "G", + "programme": { + "id": "mac_11863852", + "title": "100 Day Dream Home", + "synopsis": "Brian and Mika continue the challenge of building two houses at the same time, all while facing the biggest storm to ever hit the Tampa area." + } + }, + { + "id": "IBMS_55331280", + "startMs": 1765581300000, + "endMs": 1765584300000, + "live": false, + "nzBsaRatingString": "G", + "programme": { + "id": "mac_11863847", + "title": "Design Down Under", + "synopsis": "Georgia and Richie aim for a cozy feeling to transform the kitchen and bathroom into the rustic country spaces the couple has always wanted." + } + }, + { + "id": "IBMS_55331281", + "startMs": 1765584300000, + "endMs": 1765587300000, + "live": false, + "nzBsaRatingString": "PG", + "programme": { + "id": "mac_11863848", + "title": "Chasing The West", + "synopsis": "Two Texas business owners turn to the Brothers to find a large home. Plus, a Hollywood couple realise country living isn't for the faint of heart." + } + }, + { + "id": "IBMS_55331282", + "startMs": 1765587300000, + "endMs": 1765590300000, + "live": false, + "nzBsaRatingString": "PG", + "programme": { + "id": "mac_11860941", + "title": "Rock The Block", + "synopsis": "It's week three and the teams tackle their main suites and make massive moves as some desperately seek their first win of the competition." + } + }, + { + "id": "IBMS_55331283", + "startMs": 1765590300000, + "endMs": 1765591800000, + "live": false, + "nzBsaRatingString": "G", + "programme": { + "id": "mac_11860940", + "title": "House Hunters International", + "synopsis": "Former best friends reconnect, marry and then embark on their first international move together to Kaiserslautern, Germany." + } + }, + { + "id": "IBMS_55331284", + "startMs": 1765591800000, + "endMs": 1765593300000, + "live": false, + "nzBsaRatingString": "G", + "programme": { + "id": "mac_11840074", + "title": "House Hunters International", + "synopsis": "A young family relocates to his homeland of Bavaria, Germany. But finding a spacious house that meets Mum's high expectations may be challenging." + } + }, + { + "id": "IBMS_55331285", + "startMs": 1765593300000, + "endMs": 1765594800000, + "live": false, + "nzBsaRatingString": "G", + "programme": { + "id": "mac_11731111", + "title": "House Hunters", + "synopsis": "After overcoming a serious health issue, a couple debates between practical and grand in their new home search in Virginia." + } + }, + { + "id": "IBMS_55331286", + "startMs": 1765594800000, + "endMs": 1765596300000, + "live": false, + "nzBsaRatingString": "G", + "programme": { + "id": "mac_11770687", + "title": "House Hunters Asia", + "synopsis": "An animal lover dreams of owning a private condominium in Singapore's West region." + } + }, + { + "id": "IBMS_55331287", + "startMs": 1765596300000, + "endMs": 1765597800000, + "live": false, + "nzBsaRatingString": "G", + "programme": { + "id": "mac_11809624", + "title": "House Hunters: Cabin Dreams", + "synopsis": "A young family wants to move to Burke, Vermont. She wants a turnkey home, but he's more budget conscious and is willing to renovate." + } + }, + { + "id": "IBMS_55331288", + "startMs": 1765597800000, + "endMs": 1765599300000, + "live": false, + "nzBsaRatingString": "G", + "programme": { + "id": "mac_11843809", + "title": "House Hunters International", + "synopsis": "An adventurous couple moves their family to Chiang Rai, Thailand. However, finding a home that meets both their wish lists may be challenging." + } + }, + { + "id": "IBMS_55331289", + "startMs": 1765599300000, + "endMs": 1765600800000, + "live": false, + "nzBsaRatingString": "G", + "programme": { + "id": "mac_11687410", + "title": "House Hunters", + "synopsis": "A busy couple is looking for a vacation home. She's thinking about a property for the family, while he's all about making it produce income." + } + }, + { + "id": "IBMS_55331290", + "startMs": 1765600800000, + "endMs": 1765602300000, + "live": false, + "nzBsaRatingString": "G", + "programme": { + "id": "mac_11863851", + "title": "House Hunters International", + "synopsis": "A Detroit native with a remote job is moving to Mexico City. She's looking for personal connections, artistic outlets and a home with good vibes." + } + }, + { + "id": "IBMS_55331291", + "startMs": 1765602300000, + "endMs": 1765603800000, + "live": false, + "nzBsaRatingString": "G", + "programme": { + "id": "mac_11783666", + "title": "Perfect Home Asia", + "synopsis": "A family hopes they can find a dog-friendly home for their return to Nagoya, Japan." + } + }, + { + "id": "IBMS_55331292", + "startMs": 1765603800000, + "endMs": 1765607400000, + "live": false, + "nzBsaRatingString": "G", + "programme": { + "id": "mac_11780082", + "title": "Celebrity Iou", + "synopsis": "Mira Sorvino enlists Jonathan and Drew to spruce up the home of someone she considers a sister." + } + }, + { + "id": "IBMS_55331293", + "startMs": 1765607400000, + "endMs": 1765610400000, + "live": false, + "nzBsaRatingString": "G", + "programme": { + "id": "mac_11863847", + "title": "Design Down Under", + "synopsis": "Georgia and Richie aim for a cozy feeling to transform the kitchen and bathroom into the rustic country spaces the couple has always wanted." + } + }, + { + "id": "IBMS_55331294", + "startMs": 1765610400000, + "endMs": 1765613400000, + "live": false, + "nzBsaRatingString": "G", + "programme": { + "id": "mac_11498495", + "title": "Bargain Block", + "synopsis": "Keith attempts a new, offbeat design, and the boys need Shea's help to sell a cosy cottage that's out of their comp zone. S1 E3" + } + }, + { + "id": "IBMS_55331295", + "startMs": 1765613400000, + "endMs": 1765616400000, + "live": false, + "nzBsaRatingString": "PG", + "programme": { + "id": "mac_11863848", + "title": "Chasing The West", + "synopsis": "Two Texas business owners turn to the Brothers to find a large home. Plus, a Hollywood couple realise country living isn't for the faint of heart." + } + }, + { + "id": "IBMS_55331296", + "startMs": 1765616400000, + "endMs": 1765619400000, + "live": false, + "nzBsaRatingString": "PG", + "programme": { + "id": "mac_11860941", + "title": "Rock The Block", + "synopsis": "It's week three and the teams tackle their main suites and make massive moves as some desperately seek their first win of the competition." + } + }, + { + "id": "IBMS_55331297", + "startMs": 1765619400000, + "endMs": 1765620900000, + "live": false, + "nzBsaRatingString": "G", + "programme": { + "id": "mac_11860942", + "title": "Mini Reni", + "synopsis": "Joanna revives a primary bath and connecting sunroom with a classic design and a colour palette that feels original to the old home." + } + }, + { + "id": "IBMS_55331298", + "startMs": 1765620900000, + "endMs": 1765622400000, + "live": false, + "nzBsaRatingString": "G", + "programme": { + "id": "mac_11860943", + "title": "Mini Reni", + "synopsis": "Joanna creates two very different looks that bring old-world character and personality into home offices for a husband and wife." + } + }, + { + "id": "IBMS_55331299", + "startMs": 1765622400000, + "endMs": 1765625400000, + "live": false, + "nzBsaRatingString": "G", + "programme": { + "id": "mac_11863852", + "title": "100 Day Dream Home", + "synopsis": "Brian and Mika continue the challenge of building two houses at the same time, all while facing the biggest storm to ever hit the Tampa area." + } + } + ] + } + }, + { + "id": "0165", + "title": "TVNZ DUKE", + "number": 23, + "tileImage": { + "uri": "https://images.skyone.co.nz/contentful/dcojl03mw8gy/4CO4sSUI0aoOrONgTURiHK/46d028e8ea3728d44b104653649da962/TVNZ_Duke.png" + }, + "slotsForDay": { + "slots": [ + { + "id": "IBMS_55314231", + "startMs": 1765536300000, + "endMs": 1765539300000, + "live": false, + "nzBsaRatingString": "16C", + "programme": { + "id": "mac_ptc1647687984", + "title": "CSI: Crime Scene Investigation", + "synopsis": "A woman is found dead in a hotel suite with symptoms of the Ebola virus. S5 E4" + } + }, + { + "id": "IBMS_55314233", + "startMs": 1765539300000, + "endMs": 1765542300000, + "live": false, + "nzBsaRatingString": "M", + "programme": { + "id": "mac_ptc1299451358", + "title": "CSI: Crime Scene Investigation", + "synopsis": "Sara and Greg investigate a swingers' party when one of the revellers is found dead in a fountain. S5 E5" + } + }, + { + "id": "IBMS_55314235", + "startMs": 1765542300000, + "endMs": 1765545600000, + "live": false, + "nzBsaRatingString": "16V", + "programme": { + "id": "mac_ptc677379863", + "title": "Grimm", + "synopsis": "Nick and Hank come across a beautiful young woman who seems to have aged 70 years overnight and died. S5 E15" + } + }, + { + "id": "IBMS_55314237", + "startMs": 1765545600000, + "endMs": 1765558800000, + "live": false, + "nzBsaRatingString": null, + "programme": { + "id": "mac_ptc58340136", + "title": "Duke - Back In The Future", + "synopsis": "We'll catch you later on DUKE." + } + }, + { + "id": "IBMS_55359590", + "startMs": 1765558800000, + "endMs": 1765575000000, + "live": false, + "nzBsaRatingString": null, + "programme": { + "id": "mac_ptc87466800", + "title": "On Duke Today...", + "synopsis": "Here's what's on DUKE today." + } + }, + { + "id": "IBMS_55390704", + "startMs": 1765575000000, + "endMs": 1765601400000, + "live": false, + "nzBsaRatingString": null, + "programme": { + "id": "mac_ptc1308312729", + "title": "On Duke Today...", + "synopsis": "Here's what's on DUKE today." + } + }, + { + "id": "IBMS_55390712", + "startMs": 1765601400000, + "endMs": 1765604700000, + "live": false, + "nzBsaRatingString": "PG", + "programme": { + "id": "mac_ptc948345375", + "title": "Gem Hunters Down Under", + "synopsis": "The annual Gemfields Festival is fast approaching, and Todd and Bri are madly stockpiling gems, preparing the best ones for sale. The Mifsuds undertake yet another massive maintenance job. S2 E4" + } + }, + { + "id": "IBMS_55359594", + "startMs": 1765604700000, + "endMs": 1765606200000, + "live": false, + "nzBsaRatingString": "PG", + "programme": { + "id": "mac_ptc961728583", + "title": "Neighborhood Wars", + "synopsis": "An ill-tempered man in Tennessee claims his neighbor's new landscaping is causing flooding in his back yard. In California, a neighbor is alarmed when two strangers come looking for a stolen e-bike." + } + }, + { + "id": "IBMS_55359596", + "startMs": 1765606200000, + "endMs": 1765608000000, + "live": false, + "nzBsaRatingString": "G", + "programme": { + "id": "mac_ptc999993603", + "title": "Border Patrol", + "synopsis": "A returning New Zealand traveller experiences phone search fury in Customs red zone. Immigration turns up a problematic past with a US visitor." + } + }, + { + "id": "IBMS_55359598", + "startMs": 1765608000000, + "endMs": 1765609500000, + "live": false, + "nzBsaRatingString": "G", + "programme": { + "id": "mac_ptc1017983078", + "title": "The Simpsons", + "synopsis": "Moe's gruff and abrasive personality makes him the perfect hyper-critical judge, and lands him a spot on American Idol! S21 E23" + } + }, + { + "id": "IBMS_55359600", + "startMs": 1765609500000, + "endMs": 1765611000000, + "live": false, + "nzBsaRatingString": "G", + "programme": { + "id": "mac_ptc621890944", + "title": "The Simpsons", + "synopsis": "Krusty stands trial in The Hague after being tricked into believing he won the Nobel Prize. S22 E1" + } + }, + { + "id": "IBMS_55359602", + "startMs": 1765611000000, + "endMs": 1765615200000, + "live": false, + "nzBsaRatingString": "16L", + "programme": { + "id": "mac_ptc1396736550", + "title": "Love Island Australia", + "synopsis": "Get ready for an Aussie heatwave! Host Sophie Monk is joined by some seriously smokin' singles for the ultimate dating game." + } + }, + { + "id": "IBMS_55359604", + "startMs": 1765615200000, + "endMs": 1765619100000, + "live": false, + "nzBsaRatingString": "16L", + "programme": { + "id": "mac_ptc419162172", + "title": "Love Island Australia", + "synopsis": "Get ready for an Aussie heatwave! Host Sophie Monk is joined by some seriously smokin' singles for the ultimate dating game." + } + }, + { + "id": "IBMS_55359606", + "startMs": 1765619100000, + "endMs": 1765623000000, + "live": false, + "nzBsaRatingString": "16L", + "programme": { + "id": "mac_ptc213860321", + "title": "Love Island Australia", + "synopsis": "Get ready for an Aussie heatwave! Host Sophie Monk is joined by some seriously smokin' singles for the ultimate dating game." + } + }, + { + "id": "IBMS_55359608", + "startMs": 1765623000000, + "endMs": 1765626300000, + "live": false, + "nzBsaRatingString": "16L", + "programme": { + "id": "mac_ptc1401394945", + "title": "Love Island Australia", + "synopsis": "Get ready for an Aussie heatwave! Host Sophie Monk is joined by some seriously smokin' singles for the ultimate dating game." + } + } + ] + } + }, + { + "id": "0201", + "title": "Rush", + "number": 24, + "tileImage": { + "uri": "https://images.skyone.co.nz/contentful/dcojl03mw8gy/3BYjnPWXvfH7tq4GP8JSgc/f05d810c2073ced34daa9d5d9de14766/Rush.png" + }, + "slotsForDay": { + "slots": [ + { + "id": "IBMS_55331777", + "startMs": 1765535400000, + "endMs": 1765539000000, + "live": false, + "nzBsaRatingString": "PG", + "programme": { + "id": "mac_11566609", + "title": "Wheeler Dealers", + "synopsis": "The6 M3, BMW's naturally aspirated inline-6 icon, is Mike's pick with a fixed subframe. He challenges Ant to transform it." + } + }, + { + "id": "IBMS_55331778", + "startMs": 1765539000000, + "endMs": 1765541700000, + "live": false, + "nzBsaRatingString": "PG", + "programme": { + "id": "mac_11540521", + "title": "Alaskan Bush People", + "synopsis": "Patriarch Billy sees an opportunity to tie up loose ends, connect with the bush and keep the wolfpack close with a family visit to the winter watch of Excursion Inlet. S3 E10" + } + }, + { + "id": "IBMS_55331779", + "startMs": 1765541700000, + "endMs": 1765544400000, + "live": false, + "nzBsaRatingString": "PGVL", + "programme": { + "id": "mac_11863877", + "title": "Expedition X", + "synopsis": "Jess and Phil's investigation into unidentified objects off Catalina Island's coast heats up after the discovery of an extra-terrestrial underwater base." + } + }, + { + "id": "IBMS_55331780", + "startMs": 1765544400000, + "endMs": 1765547100000, + "live": false, + "nzBsaRatingString": "PG", + "programme": { + "id": "mac_11637331", + "title": "Expedition Unknown", + "synopsis": "Josh Gates dives into a mystery below South America's Lake Titicaca. Josh discovers ruins from the ancient Tiwanaku people hidden in the lake's depths. S5 E2" + } + }, + { + "id": "IBMS_55331781", + "startMs": 1765547100000, + "endMs": 1765550100000, + "live": false, + "nzBsaRatingString": "PG", + "programme": { + "id": "mac_11638016", + "title": "The Alaska Triangle", + "synopsis": "A ghost hunter seeks out spirits from the gold rush in Alaska. Tiny demonic creatures may be behind thousands of disappearances. S2 E4" + } + }, + { + "id": "IBMS_55331782", + "startMs": 1765550100000, + "endMs": 1765553100000, + "live": false, + "nzBsaRatingString": "PG", + "programme": { + "id": "mac_11675730", + "title": "American Chopper", + "synopsis": "Mikey and Vinnie show viewers some of their favourite scenes that never made the show. S3 E81" + } + }, + { + "id": "IBMS_55331783", + "startMs": 1765553100000, + "endMs": 1765556100000, + "live": false, + "nzBsaRatingString": "PG", + "programme": { + "id": "mac_11566609", + "title": "Wheeler Dealers", + "synopsis": "The6 M3, BMW's naturally aspirated inline-6 icon, is Mike's pick with a fixed subframe. He challenges Ant to transform it." + } + }, + { + "id": "IBMS_55331784", + "startMs": 1765556100000, + "endMs": 1765558800000, + "live": false, + "nzBsaRatingString": "PG", + "programme": { + "id": "mac_11540521", + "title": "Alaskan Bush People", + "synopsis": "Patriarch Billy sees an opportunity to tie up loose ends, connect with the bush and keep the wolfpack close with a family visit to the winter watch of Excursion Inlet. S3 E10" + } + }, + { + "id": "IBMS_55331785", + "startMs": 1765558800000, + "endMs": 1765562400000, + "live": false, + "nzBsaRatingString": "PG", + "programme": { + "id": "mac_11554187", + "title": "Wheeler Dealers", + "synopsis": "Mike and Ant drag a rare 1972 Datsun 510 2-door into the 21st century. The engine is in good order, but the bad paint job, gearbox and bodywork let it down." + } + }, + { + "id": "IBMS_55331786", + "startMs": 1765562400000, + "endMs": 1765565700000, + "live": false, + "nzBsaRatingString": "PG", + "programme": { + "id": "mac_11598827", + "title": "Insane Pools: Off The Deep End", + "synopsis": "A couple asks Lucas to transform their pool into a resort-style pool with an old-world Mexico vibe. S2 E4" + } + }, + { + "id": "IBMS_55331787", + "startMs": 1765565700000, + "endMs": 1765569300000, + "live": false, + "nzBsaRatingString": "PG", + "programme": { + "id": "mac_11539645", + "title": "Alaskan Bush People", + "synopsis": "When the dream of putting down roots and building up Browntown is derailed by a relentless series of calamities, the wolfpack is forced to make unexpected choices. S3 Special 3" + } + }, + { + "id": "IBMS_55331788", + "startMs": 1765569300000, + "endMs": 1765572600000, + "live": false, + "nzBsaRatingString": "PG", + "programme": { + "id": "mac_11540500", + "title": "Alaskan Bush People", + "synopsis": "The Browns reflect on what they miss the most about Alaska before returning home from the Lower 48. Plus, brand new footage shows what it takes to make the series. S3 Special 4" + } + }, + { + "id": "IBMS_55331789", + "startMs": 1765572600000, + "endMs": 1765576200000, + "live": false, + "nzBsaRatingString": "PGV", + "programme": { + "id": "mac_11540506", + "title": "Alaskan Bush People", + "synopsis": "A happy homecoming for the Brown family means hard work to get Browntown back on track. A risky haul with an all-or-nothing offer may be the only answer. S3 E8" + } + }, + { + "id": "IBMS_55331790", + "startMs": 1765576200000, + "endMs": 1765579500000, + "live": false, + "nzBsaRatingString": "PGV", + "programme": { + "id": "mac_11540513", + "title": "Alaskan Bush People", + "synopsis": "While youngest Brown brother Noah stays behind to continue repairs to Browntown, the other eight members of the wolfpack take on their riskiest haul ever. S3 E9" + } + }, + { + "id": "IBMS_55331791", + "startMs": 1765579500000, + "endMs": 1765583100000, + "live": false, + "nzBsaRatingString": "PG", + "programme": { + "id": "mac_11540521", + "title": "Alaskan Bush People", + "synopsis": "Patriarch Billy sees an opportunity to tie up loose ends, connect with the bush and keep the wolfpack close with a family visit to the winter watch of Excursion Inlet. S3 E10" + } + }, + { + "id": "IBMS_55331792", + "startMs": 1765583100000, + "endMs": 1765584900000, + "live": false, + "nzBsaRatingString": "PG", + "programme": { + "id": "mac_11863874", + "title": "Roadkill Garage", + "synopsis": "The guys attack a Jeep Scrambler that's been in the Freiburger fleet for about 20 years. They pull it out of hiding and correct some mechanical glitches." + } + }, + { + "id": "IBMS_55331793", + "startMs": 1765584900000, + "endMs": 1765586400000, + "live": false, + "nzBsaRatingString": "PG", + "programme": { + "id": "mac_11863875", + "title": "Dirt Every Day", + "synopsis": "Fred competes in the annual Cheap Truck Challenge. He and his friends buy and build a pair of cheap 4x4s and discover a bargain Jeep Liberty." + } + }, + { + "id": "IBMS_55331794", + "startMs": 1765586400000, + "endMs": 1765590000000, + "live": false, + "nzBsaRatingString": "PGL", + "programme": { + "id": "mac_11645155", + "title": "Swamp Loggers", + "synopsis": "Bobby has found an idyllic tract of high value timber. The big trees promise record loads, but will the crew be able to navigate treacherous roads to successfully deliver them? S1b E19" + } + }, + { + "id": "IBMS_55331795", + "startMs": 1765590000000, + "endMs": 1765593300000, + "live": false, + "nzBsaRatingString": "PGLC", + "programme": { + "id": "mac_11860134", + "title": "Dual Survival", + "synopsis": "Cody and Dave take on South Africa's backcountry where dehydration and hungry super-predators could kill. With only a machete, they show how to escape the bush." + } + }, + { + "id": "IBMS_55331796", + "startMs": 1765593300000, + "endMs": 1765596900000, + "live": false, + "nzBsaRatingString": "PGC", + "programme": { + "id": "mac_11863870", + "title": "Louisiana Law", + "synopsis": "When a child is thrown from a boat and injured, wildlife agents are first on the scene. A night hunter faces multiple felony charges when agents make a discovery." + } + }, + { + "id": "IBMS_55331797", + "startMs": 1765596900000, + "endMs": 1765600200000, + "live": false, + "nzBsaRatingString": "PG", + "programme": { + "id": "mac_11860131", + "title": "Holden Bros. Restos", + "synopsis": "Road trips will never be the same again when the brothers take a cross-country family hauler and transform it into the neighbourhood's freshest hot rod." + } + }, + { + "id": "IBMS_55331798", + "startMs": 1765600200000, + "endMs": 1765603800000, + "live": false, + "nzBsaRatingString": "PG", + "programme": { + "id": "mac_11602632", + "title": "Insane Pools: Off The Deep End", + "synopsis": "Lucas Congdon travels to Huntsville, Alabama, to build a military couple's lifelong dream pool. S2 E5" + } + }, + { + "id": "IBMS_55331799", + "startMs": 1765603800000, + "endMs": 1765607400000, + "live": false, + "nzBsaRatingString": "PG", + "programme": { + "id": "mac_11664112", + "title": "Kindig Customs", + "synopsis": "After some intense development, the client is on board with the shade of green Dave has concocted." + } + }, + { + "id": "IBMS_55331800", + "startMs": 1765607400000, + "endMs": 1765611000000, + "live": false, + "nzBsaRatingString": "PGLC", + "programme": { + "id": "mac_11863878", + "title": "All New Gold Rush: Mine Rescue", + "synopsis": "A British Columbia miner needs Freddy and Juan to triple his gold to avoid ruin. But once the rescue begins, it becomes too much work for a solo operation." + } + }, + { + "id": "IBMS_55331801", + "startMs": 1765611000000, + "endMs": 1765618200000, + "live": false, + "nzBsaRatingString": "PGLC", + "programme": { + "id": "mac_11863879", + "title": "All New Bering Sea Gold", + "synopsis": "Shawn and Kris attempt to settle their feud for good. Vernon tussles with an annoying moocher. In the hopes of jump-starting his gold season, Zeke embarks on a marathon suction dredging campaign." + } + }, + { + "id": "IBMS_55331802", + "startMs": 1765618200000, + "endMs": 1765621800000, + "live": false, + "nzBsaRatingString": "PGL", + "programme": { + "id": "mac_11679549", + "title": "Flying Wild Alaska", + "synopsis": "Two pilots push the limits landing vaccines on a treacherous runway two miles from Russia. S2 E6" + } + }, + { + "id": "IBMS_55331803", + "startMs": 1765621800000, + "endMs": 1765625100000, + "live": false, + "nzBsaRatingString": "PG", + "programme": { + "id": "mac_11602632", + "title": "Insane Pools: Off The Deep End", + "synopsis": "Lucas Congdon travels to Huntsville, Alabama, to build a military couple's lifelong dream pool. S2 E5" + } + } + ] + } + }, + { + "id": "0036", + "title": "Juice TV", + "number": 25, + "tileImage": { + "uri": "https://images.skyone.co.nz/contentful/dcojl03mw8gy/3QMBiRuZGW5roct4GxnqXL/5ae0b5c2610b943de1d2ccaf9f422c45/Juice_TV_Logo_Orange_1920x1080.png" + }, + "slotsForDay": { + "slots": [ + { + "id": "IBMS_55208731", + "startMs": 1765537200000, + "endMs": 1765558800000, + "live": false, + "nzBsaRatingString": "PG", + "programme": { + "id": "mac_ptc2022583396", + "title": "After Dark", + "synopsis": "Enjoy an overnight journey of music video classics to the latest in new music." + } + }, + { + "id": "IBMS_55208732", + "startMs": 1765558800000, + "endMs": 1765562400000, + "live": false, + "nzBsaRatingString": "PG", + "programme": { + "id": "mac_ptc1741229536", + "title": "Mood = Chill", + "synopsis": "Pulling back the pace and catching up on new and classic accoustic, soul and pop" + } + }, + { + "id": "IBMS_55208733", + "startMs": 1765562400000, + "endMs": 1765566000000, + "live": false, + "nzBsaRatingString": "PG", + "programme": { + "id": "mac_ptc1343223725", + "title": "Groovin", + "synopsis": "An hour of Soul Funk, Roots & Reggae from old skool to that latest releases." + } + }, + { + "id": "IBMS_55208734", + "startMs": 1765566000000, + "endMs": 1765569600000, + "live": false, + "nzBsaRatingString": "PG", + "programme": { + "id": "mac_ptc1571541490", + "title": "Mood = Chill", + "synopsis": "Pulling back the pace for a couple of hours and catching up on new and classic accoustic, soul and pop" + } + }, + { + "id": "IBMS_55208735", + "startMs": 1765569600000, + "endMs": 1765573200000, + "live": false, + "nzBsaRatingString": "PG", + "programme": { + "id": "mac_ptc1671343396", + "title": "Groovin", + "synopsis": "An hour of Soul Funk, Roots & Reggae from old skool to that latest releases." + } + }, + { + "id": "IBMS_55208736", + "startMs": 1765573200000, + "endMs": 1765576800000, + "live": false, + "nzBsaRatingString": "PG", + "programme": { + "id": "mac_ptc1735512051", + "title": "Mood = Up", + "synopsis": "Up beat mix of contemporary and classic music videos" + } + }, + { + "id": "IBMS_55208737", + "startMs": 1765576800000, + "endMs": 1765580400000, + "live": false, + "nzBsaRatingString": "PG", + "programme": { + "id": "mac_ptc1525839425", + "title": "Groovin", + "synopsis": "An hour of Soul Funk, Roots & Reggae from old skool to that latest releases." + } + }, + { + "id": "IBMS_55208738", + "startMs": 1765580400000, + "endMs": 1765609200000, + "live": false, + "nzBsaRatingString": "PG", + "programme": { + "id": "mac_ptc646137462", + "title": "Mood = Up", + "synopsis": "Up beat mix of contemporary and classic music videos" + } + }, + { + "id": "IBMS_55208739", + "startMs": 1765609200000, + "endMs": 1765612800000, + "live": false, + "nzBsaRatingString": "PG", + "programme": { + "id": "mac_ptc1585365351", + "title": "Saturday Night Fever", + "synopsis": "A classic selection of soul, roots, reggae, funk and disco" + } + }, + { + "id": "IBMS_55208740", + "startMs": 1765612800000, + "endMs": 1765630800000, + "live": false, + "nzBsaRatingString": "PG", + "programme": { + "id": "mac_ptc989966203", + "title": "Bangers & Mash", + "synopsis": "Up beat mix of contemporary and classic music videos" + } + } + ] + } + }, + { + "id": "0025", + "title": "J2", + "number": 26, + "tileImage": { + "uri": "https://images.skyone.co.nz/contentful/dcojl03mw8gy/6BY4zPrsfsSpltA9KnnNLM/d7d4bdf215c75dfbf210baf4131550d1/j2_file_1_1920x1080.png" + }, + "slotsForDay": { + "slots": [ + { + "id": "IBMS_55254338", + "startMs": 1765537200000, + "endMs": 1765558800000, + "live": false, + "nzBsaRatingString": "PG", + "programme": { + "id": "mac_ptc1291068104", + "title": "After Midnight", + "synopsis": "For those who come out to play after midnight!" + } + }, + { + "id": "IBMS_55254339", + "startMs": 1765558800000, + "endMs": 1765569600000, + "live": false, + "nzBsaRatingString": "PG", + "programme": { + "id": "mac_ptc718821497", + "title": "Sunsrise Selection", + "synopsis": "Ease into the day with a feel-good blend of familiar favourites plus some newbies we'd lie you to get to know!" + } + }, + { + "id": "IBMS_55254340", + "startMs": 1765569600000, + "endMs": 1765580400000, + "live": false, + "nzBsaRatingString": "PG", + "programme": { + "id": "mac_ptc2087639697", + "title": "Brunch Beats", + "synopsis": "Laid-back grooves, sing-along moments and the odd stint of air guitar to get you through to lunch." + } + }, + { + "id": "IBMS_55254341", + "startMs": 1765580400000, + "endMs": 1765594800000, + "live": false, + "nzBsaRatingString": "PG", + "programme": { + "id": "mac_ptc237848798", + "title": "Midday Mix", + "synopsis": "You've made it to halfway, take a break with some cool clips while you're enjoying that marmite sandwich." + } + }, + { + "id": "IBMS_55254342", + "startMs": 1765594800000, + "endMs": 1765605600000, + "live": false, + "nzBsaRatingString": "PG", + "programme": { + "id": "mac_ptc502116139", + "title": "Homeward Hits", + "synopsis": "Seeking a companion for the trip home or your dinner prep duties, look no further! A lively, feel-good collection of songs designed to lift the mood and ease you into the evening." + } + }, + { + "id": "IBMS_55254343", + "startMs": 1765605600000, + "endMs": 1765623600000, + "live": false, + "nzBsaRatingString": "PG", + "programme": { + "id": "mac_ptc1367954694", + "title": "The Night Shift", + "synopsis": "If you've having a netflix fail or sick of your socials, settle in for night of iconic clips and some fresh future favs." + } + }, + { + "id": "IBMS_55254344", + "startMs": 1765623600000, + "endMs": 1765645200000, + "live": false, + "nzBsaRatingString": "PG", + "programme": { + "id": "mac_ptc1085966373", + "title": "After Midnight", + "synopsis": "For those who come out to play after midnight!" + } + } + ] + } + }, + { + "id": "MOVI", + "title": "Sky Movies Premiere", + "number": 30, + "tileImage": { + "uri": "https://images.skyone.co.nz/contentful/dcojl03mw8gy/23RkexBUGiJIg5pZrgog5W/c4e86f15be68ea7bb19485f7added05e/Sky_Movies_Premiere.png" + }, + "slotsForDay": { + "slots": [ + { + "id": "IBMS_55017638", + "startMs": 1765535400000, + "endMs": 1765542000000, + "live": false, + "nzBsaRatingString": "MLC", + "programme": { + "id": "mac_11730377", + "title": "Treasure" + } + }, + { + "id": "IBMS_55017640", + "startMs": 1765542000000, + "endMs": 1765548900000, + "live": false, + "nzBsaRatingString": "PG", + "programme": { + "id": "mac_11723435", + "title": "Unsung Hero" + } + }, + { + "id": "IBMS_55017642", + "startMs": 1765548900000, + "endMs": 1765554900000, + "live": false, + "nzBsaRatingString": "MVL", + "programme": { + "id": "mac_11718412", + "title": "A Quiet Place: Day One" + } + }, + { + "id": "IBMS_55017644", + "startMs": 1765554900000, + "endMs": 1765563000000, + "live": false, + "nzBsaRatingString": "16VSL", + "programme": { + "id": "mac_11809064", + "title": "Stars at Noon" + } + }, + { + "id": "IBMS_55017652", + "startMs": 1765563000000, + "endMs": 1765569240000, + "live": false, + "nzBsaRatingString": "MSLC", + "programme": { + "id": "mac_11767882", + "title": "We Live in Time" + } + }, + { + "id": "IBMS_55017654", + "startMs": 1765569240000, + "endMs": 1765574520000, + "live": false, + "nzBsaRatingString": "16VSLC", + "programme": { + "id": "mac_11823924", + "title": "Inside Man" + } + }, + { + "id": "IBMS_55017655", + "startMs": 1765574520000, + "endMs": 1765581000000, + "live": false, + "nzBsaRatingString": "MLC", + "programme": { + "id": "mac_11730377", + "title": "Treasure" + } + }, + { + "id": "IBMS_55017656", + "startMs": 1765581000000, + "endMs": 1765587900000, + "live": false, + "nzBsaRatingString": "PG", + "programme": { + "id": "mac_11723435", + "title": "Unsung Hero" + } + }, + { + "id": "IBMS_55017660", + "startMs": 1765587900000, + "endMs": 1765596300000, + "live": false, + "nzBsaRatingString": "16VSLC", + "programme": { + "id": "mac_11751324", + "title": "Megalopolis" + } + }, + { + "id": "IBMS_55017658", + "startMs": 1765596300000, + "endMs": 1765604700000, + "live": false, + "nzBsaRatingString": "16VSL", + "programme": { + "id": "mac_11809064", + "title": "Stars at Noon" + } + }, + { + "id": "IBMS_54981163", + "startMs": 1765604700000, + "endMs": 1765611000000, + "live": false, + "nzBsaRatingString": "PGVL", + "programme": { + "id": "mac_11762366", + "title": "Dear Santa" + } + }, + { + "id": "IBMS_54978965", + "startMs": 1765611000000, + "endMs": 1765618200000, + "live": false, + "nzBsaRatingString": "MVLC", + "programme": { + "id": "mac_11758395", + "title": "Lee" + } + }, + { + "id": "IBMS_55014437", + "startMs": 1765618200000, + "endMs": 1765624200000, + "live": false, + "nzBsaRatingString": "16LC", + "programme": { + "id": "mac_11816005", + "title": "The Uninvited" + } + } + ] + } + }, + { + "id": "0065", + "title": "Sky Movies Comedy", + "number": 31, + "tileImage": { + "uri": "https://images.skyone.co.nz/contentful/dcojl03mw8gy/4INQvqt3DZGPd58SVEipKh/eeb0ca97e156f6856d4905cdc5dd83b6/Sky_Movies_COMEDY.png" + }, + "slotsForDay": { + "slots": [ + { + "id": "IBMS_54935817", + "startMs": 1765531200000, + "endMs": 1765538100000, + "live": false, + "nzBsaRatingString": "ML", + "programme": { + "id": "mac_11325966", + "title": "Blinded by the Light" + } + }, + { + "id": "IBMS_54956654", + "startMs": 1765538100000, + "endMs": 1765544100000, + "live": false, + "nzBsaRatingString": "16SLC", + "programme": { + "id": "mac_10742171", + "title": "The Diary of a Teenage Girl" + } + }, + { + "id": "IBMS_54952447", + "startMs": 1765544100000, + "endMs": 1765550400000, + "live": false, + "nzBsaRatingString": "16SLC", + "programme": { + "id": "mac_11312399", + "title": "Booksmart" + } + }, + { + "id": "IBMS_54956656", + "startMs": 1765550400000, + "endMs": 1765555800000, + "live": false, + "nzBsaRatingString": "PG", + "programme": { + "id": "mac_10705971", + "title": "All Roads Lead to Rome" + } + }, + { + "id": "IBMS_54956658", + "startMs": 1765555800000, + "endMs": 1765561200000, + "live": false, + "nzBsaRatingString": "PGS", + "programme": { + "id": "mac_10059867", + "title": "John Tucker Must Die" + } + }, + { + "id": "IBMS_54956574", + "startMs": 1765561200000, + "endMs": 1765566600000, + "live": false, + "nzBsaRatingString": "MSL", + "programme": { + "id": "mac_10639578", + "title": "Man Up" + } + }, + { + "id": "IBMS_54956568", + "startMs": 1765566600000, + "endMs": 1765572000000, + "live": false, + "nzBsaRatingString": "ML", + "programme": { + "id": "mac_10166665", + "title": "Bride Wars" + } + }, + { + "id": "IBMS_54955198", + "startMs": 1765572000000, + "endMs": 1765578000000, + "live": false, + "nzBsaRatingString": "G", + "programme": { + "id": "mac_99358", + "title": "Cheaper by the Dozen" + } + }, + { + "id": "IBMS_54955200", + "startMs": 1765578000000, + "endMs": 1765583700000, + "live": false, + "nzBsaRatingString": "G", + "programme": { + "id": "mac_10265745", + "title": "Cheaper by the Dozen 2" + } + }, + { + "id": "IBMS_54956660", + "startMs": 1765583700000, + "endMs": 1765590600000, + "live": false, + "nzBsaRatingString": "MS", + "programme": { + "id": "mac_10265500", + "title": "Life As We Know It" + } + }, + { + "id": "IBMS_54956662", + "startMs": 1765590600000, + "endMs": 1765597500000, + "live": false, + "nzBsaRatingString": "ML", + "programme": { + "id": "mac_10497779", + "title": "Chef" + } + }, + { + "id": "IBMS_54956706", + "startMs": 1765597500000, + "endMs": 1765605000000, + "live": false, + "nzBsaRatingString": "MS", + "programme": { + "id": "mac_10314137", + "title": "Amelie" + } + }, + { + "id": "IBMS_54935819", + "startMs": 1765605000000, + "endMs": 1765611000000, + "live": false, + "nzBsaRatingString": "16SLC", + "programme": { + "id": "mac_10355324", + "title": "50/50" + } + }, + { + "id": "IBMS_54922137", + "startMs": 1765611000000, + "endMs": 1765617600000, + "live": false, + "nzBsaRatingString": "16VSL", + "programme": { + "id": "mac_10387316", + "title": "Seven Psychopaths" + } + }, + { + "id": "IBMS_54935827", + "startMs": 1765617600000, + "endMs": 1765623600000, + "live": false, + "nzBsaRatingString": "16VS", + "programme": { + "id": "mac_10206164", + "title": "I Love You, Beth Cooper" + } + }, + { + "id": "IBMS_54956664", + "startMs": 1765623600000, + "endMs": 1765630800000, + "live": false, + "nzBsaRatingString": "MSL", + "programme": { + "id": "mac_11012245", + "title": "The Big Sick" + } + } + ] + } + }, + { + "id": "0064", + "title": "Sky Movies Action", + "number": 32, + "tileImage": { + "uri": "https://images.skyone.co.nz/contentful/dcojl03mw8gy/6lOzGKmf69IQeVzJBd8q3d/fdd21b63556747d850119290a00c4374/Sky_Movies_ACTION.png" + }, + "slotsForDay": { + "slots": [ + { + "id": "IBMS_54951485", + "startMs": 1765531500000, + "endMs": 1765538400000, + "live": false, + "nzBsaRatingString": "16VSL", + "programme": { + "id": "mac_10424202", + "title": "Dead Man Down" + } + }, + { + "id": "IBMS_54990146", + "startMs": 1765538400000, + "endMs": 1765544700000, + "live": false, + "nzBsaRatingString": "MVL", + "programme": { + "id": "mac_10283413", + "title": "The Tourist" + } + }, + { + "id": "IBMS_54990148", + "startMs": 1765544700000, + "endMs": 1765550100000, + "live": false, + "nzBsaRatingString": "MVSLC", + "programme": { + "id": "mac_11824326", + "title": "Notorious Nick" + } + }, + { + "id": "IBMS_54990150", + "startMs": 1765550100000, + "endMs": 1765555800000, + "live": false, + "nzBsaRatingString": "16VLC", + "programme": { + "id": "mac_10937701", + "title": "Sleepless" + } + }, + { + "id": "IBMS_54990152", + "startMs": 1765555800000, + "endMs": 1765562100000, + "live": false, + "nzBsaRatingString": "16VSLC", + "programme": { + "id": "mac_11363472", + "title": "A Score to Settle" + } + }, + { + "id": "IBMS_54990160", + "startMs": 1765562100000, + "endMs": 1765569300000, + "live": false, + "nzBsaRatingString": "MVL", + "programme": { + "id": "mac_70147", + "title": "Ronin" + } + }, + { + "id": "IBMS_54990162", + "startMs": 1765569300000, + "endMs": 1765574700000, + "live": false, + "nzBsaRatingString": "MV", + "programme": { + "id": "mac_10537059", + "title": "The One" + } + }, + { + "id": "IBMS_54990168", + "startMs": 1765574700000, + "endMs": 1765579800000, + "live": false, + "nzBsaRatingString": "16VLC", + "programme": { + "id": "mac_11824334", + "title": "Gunfight at Rio Bravo" + } + }, + { + "id": "IBMS_54968524", + "startMs": 1765579800000, + "endMs": 1765585500000, + "live": false, + "nzBsaRatingString": "18VSLC", + "programme": { + "id": "mac_10963978", + "title": "Revenge of the Green Dragons" + } + }, + { + "id": "IBMS_54990136", + "startMs": 1765585500000, + "endMs": 1765592400000, + "live": false, + "nzBsaRatingString": "MVL", + "programme": { + "id": "mac_10070151", + "title": "RoboCop 2" + } + }, + { + "id": "IBMS_54990138", + "startMs": 1765592400000, + "endMs": 1765598700000, + "live": false, + "nzBsaRatingString": "MV", + "programme": { + "id": "mac_10266520", + "title": "RoboCop 3" + } + }, + { + "id": "IBMS_54983627", + "startMs": 1765598700000, + "endMs": 1765603800000, + "live": false, + "nzBsaRatingString": "MVC", + "programme": { + "id": "mac_11824332", + "title": "The Warrant" + } + }, + { + "id": "IBMS_54951499", + "startMs": 1765603800000, + "endMs": 1765611000000, + "live": false, + "nzBsaRatingString": "16VL", + "programme": { + "id": "mac_10454718", + "title": "Escape Plan" + } + }, + { + "id": "IBMS_54951025", + "startMs": 1765611000000, + "endMs": 1765616700000, + "live": false, + "nzBsaRatingString": "16", + "programme": { + "id": "mac_10616804", + "title": "American Heist" + } + }, + { + "id": "IBMS_54951487", + "startMs": 1765616700000, + "endMs": 1765621800000, + "live": false, + "nzBsaRatingString": "16VLC", + "programme": { + "id": "mac_11846226", + "title": "Diablo (2015)" + } + }, + { + "id": "IBMS_54990166", + "startMs": 1765621800000, + "endMs": 1765631100000, + "live": false, + "nzBsaRatingString": "18VSLC", + "programme": { + "id": "mac_11408441", + "title": "Dragged Across Concrete" + } + } + ] + } + }, + { + "id": "MOV3", + "title": "Sky Movies Greats", + "number": 33, + "tileImage": { + "uri": "https://images.skyone.co.nz/contentful/dcojl03mw8gy/3yUGDdxxxYUhE2r2nIMd0t/cba2bf01592446d9ac94fde3f5773be4/Sky_Movies_Greats.png" + }, + "slotsForDay": { + "slots": [ + { + "id": "IBMS_54938980", + "startMs": 1765532100000, + "endMs": 1765538700000, + "live": false, + "nzBsaRatingString": "MVC", + "programme": { + "id": "mac_11346750", + "title": "Jojo Rabbit" + } + }, + { + "id": "IBMS_54955846", + "startMs": 1765538700000, + "endMs": 1765544700000, + "live": false, + "nzBsaRatingString": "MSL", + "programme": { + "id": "mac_10503919", + "title": "The Spectacular Now" + } + }, + { + "id": "IBMS_54956240", + "startMs": 1765544700000, + "endMs": 1765551900000, + "live": false, + "nzBsaRatingString": "16VSLC", + "programme": { + "id": "mac_11115165", + "title": "I, Tonya" + } + }, + { + "id": "IBMS_54984872", + "startMs": 1765551900000, + "endMs": 1765559400000, + "live": false, + "nzBsaRatingString": "16C", + "programme": { + "id": "mac_11175843", + "title": "Hereditary" + } + }, + { + "id": "IBMS_54984880", + "startMs": 1765559400000, + "endMs": 1765566300000, + "live": false, + "nzBsaRatingString": "ML", + "programme": { + "id": "mac_119799", + "title": "The Life Aquatic With Steve Zissou" + } + }, + { + "id": "IBMS_54956160", + "startMs": 1765566300000, + "endMs": 1765576800000, + "live": false, + "nzBsaRatingString": "16V", + "programme": { + "id": "mac_10265742", + "title": "Braveheart" + } + }, + { + "id": "IBMS_54968733", + "startMs": 1765576800000, + "endMs": 1765584000000, + "live": false, + "nzBsaRatingString": "MVL", + "programme": { + "id": "mac_6808", + "title": "Romeo and Juliet" + } + }, + { + "id": "IBMS_54965813", + "startMs": 1765584000000, + "endMs": 1765590900000, + "live": false, + "nzBsaRatingString": "MVL", + "programme": { + "id": "mac_10111033", + "title": "Capote" + } + }, + { + "id": "IBMS_55142605", + "startMs": 1765590900000, + "endMs": 1765602600000, + "live": false, + "nzBsaRatingString": "ML", + "programme": { + "id": "mac_10365568", + "title": "Titanic" + } + }, + { + "id": "IBMS_54938982", + "startMs": 1765602600000, + "endMs": 1765611000000, + "live": false, + "nzBsaRatingString": "ML", + "programme": { + "id": "mac_10704375", + "title": "The Martian" + } + }, + { + "id": "IBMS_54937108", + "startMs": 1765611000000, + "endMs": 1765618200000, + "live": false, + "nzBsaRatingString": "MV", + "programme": { + "id": "mac_11663173", + "title": "The Divergent Series: Insurgent" + } + }, + { + "id": "IBMS_54938984", + "startMs": 1765618200000, + "endMs": 1765625700000, + "live": false, + "nzBsaRatingString": "MS", + "programme": { + "id": "mac_10632241", + "title": "The Longest Ride" + } + } + ] + } + }, + { + "id": "0059", + "title": "Sky Movies Classics", + "number": 34, + "tileImage": { + "uri": "https://images.skyone.co.nz/contentful/dcojl03mw8gy/4HhCeCq1DuWS0iHzFnGnjK/38a0d6437e0f96b2d210d3ada453f860/Sky_Movies_CLASSICS.png" + }, + "slotsForDay": { + "slots": [ + { + "id": "IBMS_54945087", + "startMs": 1765534500000, + "endMs": 1765542000000, + "live": false, + "nzBsaRatingString": "PGV", + "programme": { + "id": "mac_10336482", + "title": "Dune (1984)" + } + }, + { + "id": "IBMS_55059697", + "startMs": 1765542000000, + "endMs": 1765548900000, + "live": false, + "nzBsaRatingString": "M", + "programme": { + "id": "mac_96979", + "title": "Twelve Angry Men (1997)" + } + }, + { + "id": "IBMS_55059693", + "startMs": 1765548900000, + "endMs": 1765555500000, + "live": false, + "nzBsaRatingString": "MVSL", + "programme": { + "id": "mac_10212754", + "title": "Youngblood" + } + }, + { + "id": "IBMS_55059723", + "startMs": 1765555500000, + "endMs": 1765562400000, + "live": false, + "nzBsaRatingString": "ML", + "programme": { + "id": "mac_10071134", + "title": "...And Justice for All" + } + }, + { + "id": "IBMS_55059776", + "startMs": 1765562400000, + "endMs": 1765567500000, + "live": false, + "nzBsaRatingString": "PG", + "programme": { + "id": "mac_11824160", + "title": "Requiem For a Heavyweight" + } + }, + { + "id": "IBMS_55059774", + "startMs": 1765567500000, + "endMs": 1765575300000, + "live": false, + "nzBsaRatingString": "16VL", + "programme": { + "id": "mac_10174600", + "title": "Chinatown" + } + }, + { + "id": "IBMS_55059762", + "startMs": 1765575300000, + "endMs": 1765581000000, + "live": false, + "nzBsaRatingString": "PG", + "programme": { + "id": "mac_11720121", + "title": "Charro!" + } + }, + { + "id": "IBMS_55059770", + "startMs": 1765581000000, + "endMs": 1765589400000, + "live": false, + "nzBsaRatingString": "PGV", + "programme": { + "id": "mac_10278032", + "title": "The Pelican Brief" + } + }, + { + "id": "IBMS_55059768", + "startMs": 1765589400000, + "endMs": 1765596600000, + "live": false, + "nzBsaRatingString": "MVC", + "programme": { + "id": "mac_11693375", + "title": "Murder By Decree" + } + }, + { + "id": "IBMS_55059725", + "startMs": 1765596600000, + "endMs": 1765603200000, + "live": false, + "nzBsaRatingString": "MVSL", + "programme": { + "id": "mac_10209528", + "title": "Criminal Law" + } + }, + { + "id": "IBMS_54946151", + "startMs": 1765603200000, + "endMs": 1765611000000, + "live": false, + "nzBsaRatingString": "16L", + "programme": { + "id": "mac_10039241", + "title": "Serpico" + } + }, + { + "id": "IBMS_54942157", + "startMs": 1765611000000, + "endMs": 1765617300000, + "live": false, + "nzBsaRatingString": "MS", + "programme": { + "id": "mac_10036646", + "title": "The Rocky Horror Picture Show" + } + }, + { + "id": "IBMS_54945388", + "startMs": 1765617300000, + "endMs": 1765623000000, + "live": false, + "nzBsaRatingString": "ML", + "programme": { + "id": "mac_12265", + "title": "Blind Date" + } + }, + { + "id": "IBMS_55059782", + "startMs": 1765623000000, + "endMs": 1765630500000, + "live": false, + "nzBsaRatingString": "M", + "programme": { + "id": "mac_11423515", + "title": "All That Jazz" + } + } + ] + } + }, + { + "id": "0096", + "title": "Sky Movies Family", + "number": 36, + "tileImage": { + "uri": "https://images.skyone.co.nz/contentful/dcojl03mw8gy/2fajvvc9DnVkIGUTrUUBBu/455f4e5d97035dd6209977f158271aae/Sky_Movies_FAMILY.png" + }, + "slotsForDay": { + "slots": [ + { + "id": "IBMS_54956630", + "startMs": 1765536420000, + "endMs": 1765558800000, + "live": false, + "nzBsaRatingString": "G", + "programme": { + "id": "mac_ptc1013847898", + "title": "Sweet Dreams", + "synopsis": "Time for bed! We'll see you first thing in the morning." + } + }, + { + "id": "IBMS_55015285", + "startMs": 1765558800000, + "endMs": 1765564200000, + "live": false, + "nzBsaRatingString": "PG", + "programme": { + "id": "mac_11824311", + "title": "Riki Rhino" + } + }, + { + "id": "IBMS_55015307", + "startMs": 1765564200000, + "endMs": 1765568160000, + "live": false, + "nzBsaRatingString": "PG", + "programme": { + "id": "mac_15725", + "title": "Bartok the Magnificent" + } + }, + { + "id": "IBMS_55015309", + "startMs": 1765568160000, + "endMs": 1765573200000, + "live": false, + "nzBsaRatingString": "PGV", + "programme": { + "id": "mac_11264921", + "title": "Luis and the Aliens" + } + }, + { + "id": "IBMS_55015245", + "startMs": 1765573200000, + "endMs": 1765579500000, + "live": false, + "nzBsaRatingString": "G", + "programme": { + "id": "mac_11083404", + "title": "Ferdinand" + } + }, + { + "id": "IBMS_55015239", + "startMs": 1765579500000, + "endMs": 1765584600000, + "live": false, + "nzBsaRatingString": "PGVC", + "programme": { + "id": "mac_11228377", + "title": "Charming" + } + }, + { + "id": "IBMS_55015235", + "startMs": 1765584600000, + "endMs": 1765589520000, + "live": false, + "nzBsaRatingString": "PG", + "programme": { + "id": "mac_11824315", + "title": "The Adventures of Rufus: The Fantastic Pet" + } + }, + { + "id": "IBMS_55010369", + "startMs": 1765589520000, + "endMs": 1765595820000, + "live": false, + "nzBsaRatingString": "PGC", + "programme": { + "id": "mac_11321490", + "title": "A Dog's Journey" + } + }, + { + "id": "IBMS_54990243", + "startMs": 1765595820000, + "endMs": 1765601460000, + "live": false, + "nzBsaRatingString": "PGC", + "programme": { + "id": "mac_10265436", + "title": "Legend of the Guardians: The Owls of Ga'Hoole" + } + }, + { + "id": "IBMS_54956164", + "startMs": 1765601460000, + "endMs": 1765605600000, + "live": false, + "nzBsaRatingString": "G", + "programme": { + "id": "mac_11835065", + "title": "Once Upon A Forest" + } + }, + { + "id": "IBMS_54955346", + "startMs": 1765605600000, + "endMs": 1765611000000, + "live": false, + "nzBsaRatingString": "PGL", + "programme": { + "id": "mac_11096062", + "title": "Monster Family" + } + }, + { + "id": "IBMS_54956158", + "startMs": 1765611000000, + "endMs": 1765617060000, + "live": false, + "nzBsaRatingString": "PGL", + "programme": { + "id": "mac_10815120", + "title": "Peter & Wendy" + } + }, + { + "id": "IBMS_55010373", + "startMs": 1765617060000, + "endMs": 1765621800000, + "live": false, + "nzBsaRatingString": "G", + "programme": { + "id": "mac_11824313", + "title": "Captain Sabertooth and the Magic Diamond" + } + }, + { + "id": "IBMS_54956632", + "startMs": 1765621800000, + "endMs": 1765645200000, + "live": false, + "nzBsaRatingString": "G", + "programme": { + "id": "mac_ptc420144528", + "title": "Sweet Dreams", + "synopsis": "Time for bed! We'll see you first thing in the morning." + } + } + ] + } + }, + { + "id": "0155", + "title": "Rialto", + "number": 39, + "tileImage": { + "uri": "https://images.skyone.co.nz/contentful/dcojl03mw8gy/1PCTiXshgnq3uzQ6iNy4bI/d508329c01275f2a44184be0cccf046b/Rialto.png" + }, + "slotsForDay": { + "slots": [ + { + "id": "IBMS_55351649", + "startMs": 1765535400000, + "endMs": 1765541100000, + "live": false, + "nzBsaRatingString": "M", + "programme": { + "id": "mac_11852215", + "title": "The Strangers: Chapter 1" + } + }, + { + "id": "IBMS_55351650", + "startMs": 1765541100000, + "endMs": 1765544400000, + "live": false, + "nzBsaRatingString": "M", + "programme": { + "id": "mac_11845184", + "title": "The Island", + "synopsis": "Irish detective Kat returns home to solve a murder, unearthing personal connections that might complicate things. 2025. UK. Director: Tom Sullivan. Starring: Sinead MacInnes, Neil Graham S1 E1" + } + }, + { + "id": "IBMS_55351651", + "startMs": 1765544400000, + "endMs": 1765547400000, + "live": false, + "nzBsaRatingString": "M", + "programme": { + "id": "mac_11845291", + "title": "The Island", + "synopsis": "Kat can't prove her theory about the tycoon without proof, and his son's alibi isn't as sound as once thought. 2025. UK. Director: Tom Sullivan. Starring: Andrew MacInnes, Elspeth Turner S1 E2" + } + }, + { + "id": "IBMS_55351652", + "startMs": 1765547400000, + "endMs": 1765550400000, + "live": false, + "nzBsaRatingString": "M", + "programme": { + "id": "mac_11845298", + "title": "The Island", + "synopsis": "Sir Douglas' account of the night is backed by evidence, strengthening Kat's suspicions about the Tycoon. 2025. UK. Director: Tom Sullivan. Starring: Sinead MacInnes, Elspeth Turner S1 E3" + } + }, + { + "id": "IBMS_55351653", + "startMs": 1765550400000, + "endMs": 1765553700000, + "live": false, + "nzBsaRatingString": "M", + "programme": { + "id": "mac_11845305", + "title": "The Island", + "synopsis": "1/4. Due to her connection to Sir Douglas, Eilidh's past may be the golden ticket Kat has been searching for. 2025. Uk. Director: Tom Sullivan. Starring: Sinead MacInnes, Elspeth Turner S1 E4" + } + }, + { + "id": "IBMS_55351654", + "startMs": 1765553700000, + "endMs": 1765559400000, + "live": false, + "nzBsaRatingString": "18", + "programme": { + "id": "mac_11812227", + "title": "Dogtooth" + } + }, + { + "id": "IBMS_55351655", + "startMs": 1765559400000, + "endMs": 1765570200000, + "live": false, + "nzBsaRatingString": "M", + "programme": { + "id": "mac_11852221", + "title": "Chronicle Of The Years Of Fire" + } + }, + { + "id": "IBMS_55351656", + "startMs": 1765570200000, + "endMs": 1765578000000, + "live": false, + "nzBsaRatingString": "M", + "programme": { + "id": "mac_11762044", + "title": "Sujo" + } + }, + { + "id": "IBMS_55351657", + "startMs": 1765578000000, + "endMs": 1765584000000, + "live": false, + "nzBsaRatingString": "PG", + "programme": { + "id": "mac_11171632", + "title": "Welcome To Babel" + } + }, + { + "id": "IBMS_55351658", + "startMs": 1765584000000, + "endMs": 1765589700000, + "live": false, + "nzBsaRatingString": "M", + "programme": { + "id": "mac_11852215", + "title": "The Strangers: Chapter 1" + } + }, + { + "id": "IBMS_55351659", + "startMs": 1765589700000, + "endMs": 1765597500000, + "live": false, + "nzBsaRatingString": "M", + "programme": { + "id": "mac_11762044", + "title": "Sujo" + } + }, + { + "id": "IBMS_55351660", + "startMs": 1765597500000, + "endMs": 1765605000000, + "live": false, + "nzBsaRatingString": "M", + "programme": { + "id": "mac_11766774", + "title": "The Book Of Clarence" + } + }, + { + "id": "IBMS_55351661", + "startMs": 1765605000000, + "endMs": 1765611000000, + "live": false, + "nzBsaRatingString": "M", + "programme": { + "id": "mac_11845188", + "title": "The Savior For Sale" + } + }, + { + "id": "IBMS_55351662", + "startMs": 1765611000000, + "endMs": 1765616700000, + "live": false, + "nzBsaRatingString": "M", + "programme": { + "id": "mac_11852222", + "title": "Miller's Girl" + } + }, + { + "id": "IBMS_55351663", + "startMs": 1765616700000, + "endMs": 1765623000000, + "live": false, + "nzBsaRatingString": "M", + "programme": { + "id": "mac_11852214", + "title": "A Man And A Woman" + } + }, + { + "id": "IBMS_55351664", + "startMs": 1765623000000, + "endMs": 1765629900000, + "live": false, + "nzBsaRatingString": "M", + "programme": { + "id": "mac_11845310", + "title": "This Time Next Year" + } + } + ] + } + }, + { + "id": "0162", + "title": "Sky Sport Select", + "number": 50, + "tileImage": { + "uri": "https://images.skyone.co.nz/contentful/dcojl03mw8gy/7nDLn3jd7sFlVOsWo81cL0/ff39abec2569729c132e2c75a3e6839f/Sky_Sports_Select.png" + }, + "slotsForDay": { + "slots": [ + { + "id": "IBMS_55170105", + "startMs": 1765537200000, + "endMs": 1765539000000, + "live": false, + "nzBsaRatingString": "G", + "programme": { + "id": "mac_11852275", + "title": "Nedbank Gravel Burn: Stage 2 Hls", + "synopsis": "Highlights from Stage 2 of the Nedbank Gravel Burn, a 7-day, 800km gravel cycling race from Knysna to Shamwari Game Reserve. Each stage reveals new terrain, fierce competition, and the raw beauty of the Great Karoo." + } + }, + { + "id": "IBMS_55170106", + "startMs": 1765539000000, + "endMs": 1765540800000, + "live": false, + "nzBsaRatingString": "G", + "programme": { + "id": "mac_11852276", + "title": "Nedbank Gravel Burn: Stage 3 Hls", + "synopsis": "Highlights from Stage 3 of the Nedbank Gravel Burn, a 7-day, 800km gravel cycling race from Knysna to Shamwari Game Reserve. Each stage reveals new terrain, fierce competition, and the raw beauty of the Great Karoo." + } + }, + { + "id": "IBMS_55170107", + "startMs": 1765540800000, + "endMs": 1765542600000, + "live": false, + "nzBsaRatingString": "G", + "programme": { + "id": "mac_11852277", + "title": "Nedbank Gravel Burn: Stage 4 Hls", + "synopsis": "Highlights from Stage 4 of the Nedbank Gravel Burn, a 7-day, 800km gravel cycling race from Knysna to Shamwari Game Reserve. Each stage reveals new terrain, fierce competition, and the raw beauty of the Great Karoo." + } + }, + { + "id": "IBMS_55170108", + "startMs": 1765542600000, + "endMs": 1765544400000, + "live": false, + "nzBsaRatingString": "G", + "programme": { + "id": "mac_11852278", + "title": "Nedbank Gravel Burn: Stage 5 Hls", + "synopsis": "Highlights from Stage 5 of the Nedbank Gravel Burn, a 7-day, 800km gravel cycling race from Knysna to Shamwari Game Reserve. Each stage reveals new terrain, fierce competition, and the raw beauty of the Great Karoo." + } + }, + { + "id": "IBMS_55170109", + "startMs": 1765544400000, + "endMs": 1765546200000, + "live": false, + "nzBsaRatingString": "G", + "programme": { + "id": "mac_11852279", + "title": "Nedbank Gravel Burn: Stage 6 Hls", + "synopsis": "Highlights from Stage 6 of the Nedbank Gravel Burn, a 7-day, 800km gravel cycling race from Knysna to Shamwari Game Reserve. Each stage reveals new terrain, fierce competition, and the raw beauty of the Great Karoo." + } + }, + { + "id": "IBMS_55170110", + "startMs": 1765546200000, + "endMs": 1765548000000, + "live": false, + "nzBsaRatingString": "G", + "programme": { + "id": "mac_11852280", + "title": "Nedbank Gravel Burn: Stage 7 Hls", + "synopsis": "Highlights from Stage 7 – the final stage – of the Nedbank Gravel Burn, a 7-day, 800km gravel cycling race from Knysna to Shamwari Game Reserve. Each stage reveals new terrain, fierce competition, and the raw beauty of the Great Karoo." + } + }, + { + "id": "IBMS_55170176", + "startMs": 1765548000000, + "endMs": 1765549800000, + "live": false, + "nzBsaRatingString": "G", + "programme": { + "id": "mac_11852281", + "title": "Nedbank Gravel Burn: Men's Race Recap", + "synopsis": "Men’s Race Recap: Nedbank Gravel Burn — a 7-day, 800km gravel stage race from coastal forests to the Great Karoo. Riders camped under starry skies and finished among Africa’s Big 5. No teams. No support. Just grit, strategy, and endurance." + } + }, + { + "id": "IBMS_55170096", + "startMs": 1765549800000, + "endMs": 1765558800000, + "live": false, + "nzBsaRatingString": "G", + "programme": { + "id": "mac_11603741", + "title": "Supertri Triathlon: Toulouse", + "synopsis": "Coverage of the Supertri Triathlon Championship as it reaches Toulouse, France for the fourth time." + } + }, + { + "id": "IBMS_55166314", + "startMs": 1765558800000, + "endMs": 1765566000000, + "live": false, + "nzBsaRatingString": "G", + "programme": { + "id": "mac_11727531", + "title": "Tour de France Stage 9 L2H", + "synopsis": "Coverage from Stage 9 of the Tour de France, covering 170km from Chinon to Chateauroux." + } + }, + { + "id": "IBMS_55166316", + "startMs": 1765566000000, + "endMs": 1765573200000, + "live": false, + "nzBsaRatingString": "G", + "programme": { + "id": "mac_11727534", + "title": "Tour de France Stage 10 L2H", + "synopsis": "Coverage from Stage 10 of the Tour de France, covering 163km from Ennezat to Le Mont-Dore Puy De Sancy." + } + }, + { + "id": "IBMS_55173293", + "startMs": 1765573200000, + "endMs": 1765575000000, + "live": false, + "nzBsaRatingString": "G", + "programme": { + "id": "mac_11727508", + "title": "Tour de France Stage 1 Hls", + "synopsis": "Highlights from the Stage 1 of the Tour de France, covering a 185km loop starting and finishing in Lille Metropole" + } + }, + { + "id": "IBMS_55173297", + "startMs": 1765575000000, + "endMs": 1765576800000, + "live": false, + "nzBsaRatingString": "G", + "programme": { + "id": "mac_11727511", + "title": "Tour de France Stage 2 Hls", + "synopsis": "Highlights from Stage 2 of the Tour de France, covering 212km from Lauwin-Planque to Boulogne-Sur-Mer." + } + }, + { + "id": "IBMS_55173305", + "startMs": 1765576800000, + "endMs": 1765578600000, + "live": false, + "nzBsaRatingString": "G", + "programme": { + "id": "mac_11727514", + "title": "Tour de France Stage 3 Hls", + "synopsis": "Highlights from Stage 3 of the Tour de France, covering 178km from Valenciennes to Dunkerque." + } + }, + { + "id": "IBMS_55173307", + "startMs": 1765578600000, + "endMs": 1765580400000, + "live": false, + "nzBsaRatingString": "G", + "programme": { + "id": "mac_11727517", + "title": "Tour de France Stage 4 Hls", + "synopsis": "Highlights from Stage 4 of the Tour de France, covering 173km from Amiens Metropole to Rouen." + } + }, + { + "id": "IBMS_55173309", + "startMs": 1765580400000, + "endMs": 1765582200000, + "live": false, + "nzBsaRatingString": "G", + "programme": { + "id": "mac_11727520", + "title": "Tour de France Stage 5 Hls", + "synopsis": "Highlights from Stage 5 of the Tour de France, a 33km time trial starting and finishing in Caen." + } + }, + { + "id": "IBMS_55173343", + "startMs": 1765582200000, + "endMs": 1765584000000, + "live": false, + "nzBsaRatingString": "G", + "programme": { + "id": "mac_11727523", + "title": "Tour de France Stage 6 Hls", + "synopsis": "Highlights from Stage 6 of the Tour de France, covering 201km from Bayeux to Vire Normandie." + } + }, + { + "id": "IBMS_55173345", + "startMs": 1765584000000, + "endMs": 1765585800000, + "live": false, + "nzBsaRatingString": "G", + "programme": { + "id": "mac_11727526", + "title": "Tour de France Stage 7 Hls", + "synopsis": "Highlights from Stage 7 of the Tour de France, covering 194km from Saint-Malo to Mur-De-Bretagne Guerledan." + } + }, + { + "id": "IBMS_55173347", + "startMs": 1765585800000, + "endMs": 1765587600000, + "live": false, + "nzBsaRatingString": "G", + "programme": { + "id": "mac_11727529", + "title": "Tour de France Stage 8 Hls", + "synopsis": "Highlights from Stage 8 of the Tour de France, covering 174km from Saint-Meen-Le-Grand to Laval Espace Mayenne." + } + }, + { + "id": "IBMS_55173373", + "startMs": 1765587600000, + "endMs": 1765589400000, + "live": false, + "nzBsaRatingString": "G", + "programme": { + "id": "mac_11727532", + "title": "Tour de France Stage 9 Hls", + "synopsis": "Highlights from Stage 9 of the Tour de France, covering 170km from Chinon to Chateauroux." + } + }, + { + "id": "IBMS_55173375", + "startMs": 1765589400000, + "endMs": 1765591200000, + "live": false, + "nzBsaRatingString": "G", + "programme": { + "id": "mac_11727535", + "title": "Tour de France Stage 10 Hls", + "synopsis": "Highlights from Stage 10 of the Tour de France, covering 163km from Ennezat to Le Mont-Dore Puy De Sancy." + } + }, + { + "id": "IBMS_55177695", + "startMs": 1765591200000, + "endMs": 1765593000000, + "live": false, + "nzBsaRatingString": "G", + "programme": { + "id": "mac_11848172", + "title": "PGA Tour: GTI Round 1 Hls", + "synopsis": "Highlights coverage of Round 1 of the PGA Tour: Grant Thornton Invitational held at Tiburon Golf Club in Naples, Florida." + } + }, + { + "id": "IBMS_55172983", + "startMs": 1765593000000, + "endMs": 1765594800000, + "live": false, + "nzBsaRatingString": "G", + "programme": { + "id": "mac_11744004", + "title": "A-League Women: PER v WEL Ext Hls", + "synopsis": "Extended highlights of A-League Women 2025/26 as Perth Glory take on Wellington Phoenix at Sam Kerr Football Centre." + } + }, + { + "id": "IBMS_55173243", + "startMs": 1765594800000, + "endMs": 1765602000000, + "live": false, + "nzBsaRatingString": "G", + "programme": { + "id": "mac_11743736", + "title": "A-League Men: CCM v AFC R8", + "synopsis": "Coverage of A-League Men 2025/26 Round 8 as Central Coast Mariners take on Auckland FC at Polytec Stadium, Australia." + } + }, + { + "id": "IBMS_54840931", + "startMs": 1765602000000, + "endMs": 1765605600000, + "live": false, + "nzBsaRatingString": "G", + "programme": { + "id": "mac_11786468", + "title": "T100 Triathlon World Tour: Qatar Hls", + "synopsis": "Highlights of the T100 Triathlon World Championship Final 2025, from Doha, Qatar." + } + }, + { + "id": "IBMS_55273313", + "startMs": 1765605600000, + "endMs": 1765607400000, + "live": false, + "nzBsaRatingString": "G", + "programme": { + "id": "mac_11777363", + "title": "HYROX - World Fitness Series: EP5", + "synopsis": "HYROX: The World Series of Fitness Racing—where functional fitness meets competition in world-class arenas. Thousands of athletes, one global ranking. Fitness for all, on the ultimate stage." + } + }, + { + "id": "IBMS_55273317", + "startMs": 1765607400000, + "endMs": 1765609200000, + "live": false, + "nzBsaRatingString": "G", + "programme": { + "id": "mac_11777364", + "title": "HYROX - World Fitness Series: EP6", + "synopsis": "HYROX: The World Series of Fitness Racing—where functional fitness meets competition in world-class arenas. Thousands of athletes, one global ranking. Fitness for all, on the ultimate stage." + } + }, + { + "id": "IBMS_55360122", + "startMs": 1765609200000, + "endMs": 1765615200000, + "live": false, + "nzBsaRatingString": "G", + "programme": { + "id": "mac_11865414", + "title": "Iron Series: Super Sprint", + "synopsis": "Coverage of the Shaw and Partners Iron Series from Newcastle Beach, NSW. Watch elite surf athletes tackle the Super Sprint race in a thrilling test of speed and endurance." + } + }, + { + "id": "IBMS_55391221", + "startMs": 1765615200000, + "endMs": 1765616400000, + "live": false, + "nzBsaRatingString": "M", + "programme": { + "id": "mac_11795852", + "title": "UFC On Sky 47", + "synopsis": "THU DEC 11 - FINAL EPISODE - Rav and Dan look ahead to UFC Sydney where Hooker will next compete and the duo say goodbye to UFC on Sky." + } + }, + { + "id": "IBMS_55178380", + "startMs": 1765616400000, + "endMs": 1765620000000, + "live": false, + "nzBsaRatingString": "G", + "programme": { + "id": "mac_11762765", + "title": "FIA Formula E: Round 1 Ext Hls", + "synopsis": "Extended highlights coverage of the FIA Formula E Championship. Round 1. From Anhembi Sambadrome Sao Paulo, Brazil." + } + }, + { + "id": "IBMS_55186156", + "startMs": 1765620000000, + "endMs": 1765621800000, + "live": false, + "nzBsaRatingString": "G", + "programme": { + "id": "mac_11857419", + "title": "World Darts Championship: D2 Hls", + "synopsis": "Highlights of the PDC World Darts Championship, Day 2 at Alexandra Palace, London. The world's biggest Darts tournament will see 128 players from around the world competing across 20 days of action for the Eric Bristow Trophy." + } + }, + { + "id": "IBMS_55173913", + "startMs": 1765621800000, + "endMs": 1765625400000, + "live": false, + "nzBsaRatingString": "G", + "programme": { + "id": "mac_11839564", + "title": "PSA Hong Kong Open Hls", + "synopsis": "Highlights of the Milwaukee Hong Kong Squash Open 2025, held in Hong Kong, China." + } + } + ] + } + }, + { + "id": "SPT1", + "title": "Sky Sport 1", + "number": 51, + "tileImage": { + "uri": "https://images.skyone.co.nz/contentful/dcojl03mw8gy/4gZFsogRgbwZdK9k95iHWa/8dee97f8eebca01da8099679b7f42f5c/Sky_Sports_1.png" + }, + "slotsForDay": { + "slots": [ + { + "id": "IBMS_54947443", + "startMs": 1765536900000, + "endMs": 1765544700000, + "live": true, + "nzBsaRatingString": "G", + "programme": { + "id": "mac_11744002", + "title": "A-League Women: PER v WEL", + "synopsis": "LIVE coverage of A-League Women 2025/26 as Perth Glory takes on Wellington Phoenix at Sam Kerr Football Centre." + } + }, + { + "id": "IBMS_55152950", + "startMs": 1765544700000, + "endMs": 1765546500000, + "live": false, + "nzBsaRatingString": "PG", + "programme": { + "id": "mac_11765522", + "title": "The Crowd Goes Wild: Best Of 2025", + "synopsis": "Best of 2025 Ep 4. Delivering the best (and worst) sporting moments from 2025, with a little cheek! Catch the CGW team's favourite field stories from across the year covering League, Union, Football and plenty of other random stuff!" + } + }, + { + "id": "IBMS_55152952", + "startMs": 1765546500000, + "endMs": 1765548300000, + "live": false, + "nzBsaRatingString": "M", + "programme": { + "id": "mac_11795852", + "title": "UFC On Sky 47", + "synopsis": "THU DEC 11 - FINAL EPISODE - Rav and Dan look ahead to UFC Sydney where Hooker will next compete and the duo say goodbye to UFC on Sky." + } + }, + { + "id": "IBMS_55152948", + "startMs": 1765548300000, + "endMs": 1765555500000, + "live": false, + "nzBsaRatingString": "G", + "programme": { + "id": "mac_11743736", + "title": "A-League Men: CCM v AFC R8", + "synopsis": "Coverage of A-League Men 2025/26 Round 8 as Central Coast Mariners take on Auckland FC at Polytec Stadium, Australia." + } + }, + { + "id": "IBMS_55152954", + "startMs": 1765555500000, + "endMs": 1765559100000, + "live": false, + "nzBsaRatingString": "G", + "programme": { + "id": "mac_11839564", + "title": "PSA Hong Kong Open Hls", + "synopsis": "Highlights of the Milwaukee Hong Kong Squash Open 2025, held in Hong Kong, China." + } + }, + { + "id": "IBMS_55161912", + "startMs": 1765559100000, + "endMs": 1765562400000, + "live": false, + "nzBsaRatingString": "G", + "programme": { + "id": "mac_11848169", + "title": "PGA Tour: Hero World Challenge Hls", + "synopsis": "Event Highlights of the PGA Tour: Hero World Challenge held at Albany Golf Course in New Providence, The Bahamas." + } + }, + { + "id": "IBMS_55103875", + "startMs": 1765562400000, + "endMs": 1765573200000, + "live": true, + "nzBsaRatingString": "G", + "programme": { + "id": "mac_11848170", + "title": "PGA Tour: GTI Round 1", + "synopsis": "LIVE coverage of Round 1 of the PGA Tour: Grant Thornton Invitational held at Tiburon Golf Club in Naples, Florida." + } + }, + { + "id": "IBMS_55153344", + "startMs": 1765573200000, + "endMs": 1765580400000, + "live": false, + "nzBsaRatingString": "G", + "programme": { + "id": "mac_11744003", + "title": "A-League Women: PER v WEL", + "synopsis": "Coverage of A-League Women 2025/26 as Perth Glory take on Wellington Phoenix at Sam Kerr Football Centre." + } + }, + { + "id": "IBMS_55153346", + "startMs": 1765580400000, + "endMs": 1765587600000, + "live": false, + "nzBsaRatingString": "G", + "programme": { + "id": "mac_11743736", + "title": "A-League Men: CCM v AFC R8", + "synopsis": "Coverage of A-League Men 2025/26 Round 8 as Central Coast Mariners take on Auckland FC at Polytec Stadium, Australia." + } + }, + { + "id": "IBMS_55360074", + "startMs": 1765587600000, + "endMs": 1765594800000, + "live": true, + "nzBsaRatingString": "G", + "programme": { + "id": "mac_11865413", + "title": "Iron Series: Super Sprint", + "synopsis": "LIVE coverage of the Shaw and Partners Iron Series from Newcastle Beach, NSW. Watch elite surf athletes tackle the Super Sprint race in a thrilling test of speed and endurance." + } + }, + { + "id": "IBMS_55165399", + "startMs": 1765594800000, + "endMs": 1765596600000, + "live": false, + "nzBsaRatingString": "M", + "programme": { + "id": "mac_11795852", + "title": "UFC On Sky 47", + "synopsis": "THU DEC 11 - FINAL EPISODE - Rav and Dan look ahead to UFC Sydney where Hooker will next compete and the duo say goodbye to UFC on Sky." + } + }, + { + "id": "IBMS_55164304", + "startMs": 1765596600000, + "endMs": 1765598400000, + "live": false, + "nzBsaRatingString": "G", + "programme": { + "id": "mac_11744004", + "title": "A-League Women: PER v WEL Ext Hls", + "synopsis": "Extended highlights of A-League Women 2025/26 as Perth Glory take on Wellington Phoenix at Sam Kerr Football Centre." + } + }, + { + "id": "IBMS_55164310", + "startMs": 1765598400000, + "endMs": 1765600200000, + "live": false, + "nzBsaRatingString": "G", + "programme": { + "id": "mac_11743737", + "title": "A-League Men: CCM v AFC R8 Ext Hls", + "synopsis": "Extended highlights of A-League Men 2025/26 Round 8 as Central Coast Mariners take on Auckland FC at Polytec Stadium, Australia." + } + }, + { + "id": "IBMS_55164388", + "startMs": 1765600200000, + "endMs": 1765602000000, + "live": false, + "nzBsaRatingString": "G", + "programme": { + "id": "mac_11848172", + "title": "PGA Tour: GTI Round 1 Hls", + "synopsis": "Highlights coverage of Round 1 of the PGA Tour: Grant Thornton Invitational held at Tiburon Golf Club in Naples, Florida." + } + }, + { + "id": "IBMS_55165340", + "startMs": 1765602000000, + "endMs": 1765605600000, + "live": false, + "nzBsaRatingString": "G", + "programme": { + "id": "mac_11798880", + "title": "Rugby Championship Wrap", + "synopsis": "Wrap of the 2025 Rugby Championship." + } + }, + { + "id": "IBMS_55165795", + "startMs": 1765605600000, + "endMs": 1765606500000, + "live": false, + "nzBsaRatingString": "G", + "programme": { + "id": "mac_11844085", + "title": "India v South Africa: 1st T20 Hls", + "synopsis": "Highlights of the first T20 International between India and South Africa at Barabati Stadium, Cuttack." + } + }, + { + "id": "IBMS_55165791", + "startMs": 1765606500000, + "endMs": 1765607400000, + "live": false, + "nzBsaRatingString": "G", + "programme": { + "id": "mac_11844088", + "title": "India v South Africa: 2nd T20 Hls", + "synopsis": "Highlights of the second T20 International between India and South Africa at Maharaja Yadavindra Singh International Cricket Stadium, Mullanpur, New Chandigarh." + } + }, + { + "id": "IBMS_55357487", + "startMs": 1765607400000, + "endMs": 1765608300000, + "live": false, + "nzBsaRatingString": "G", + "programme": { + "id": "mac_11818452", + "title": "WBBL: Stars v Thunder Hls", + "synopsis": "Highlights from the 38th match of the Women's Big Bash League between Melbourne Stars and Sydney Thunder at CitiPower Centre, Melbourne." + } + }, + { + "id": "IBMS_55165350", + "startMs": 1765608300000, + "endMs": 1765609200000, + "live": false, + "nzBsaRatingString": "G", + "programme": { + "id": "mac_11818455", + "title": "WBBL: Scorchers v Heat Hls", + "synopsis": "Highlights from the 39th match of the Women's Big Bash League between Perth Scorchers and Brisbane Heat at WACA Ground, Perth." + } + }, + { + "id": "IBMS_55142374", + "startMs": 1765609200000, + "endMs": 1765610100000, + "live": false, + "nzBsaRatingString": "G", + "programme": { + "id": "mac_11818464", + "title": "WBBL: Sixers v Scorchers Challenger Hls", + "synopsis": "Highlights from the Challenger of the Women's Big Bash League between Sydney Sixers and Perth Scorchers at North Sydney Oval, Sydney." + } + }, + { + "id": "IBMS_55142378", + "startMs": 1765610100000, + "endMs": 1765611000000, + "live": false, + "nzBsaRatingString": "G", + "programme": { + "id": "mac_11818461", + "title": "WBBL: Scorchers v Stars Knockout Hls", + "synopsis": "Highlights from the Knockout of the Women's Big Bash League between Perth Scorchers and Melbourne Stars at the WACA Ground, Perth." + } + }, + { + "id": "IBMS_55114472", + "startMs": 1765611000000, + "endMs": 1765626300000, + "live": true, + "nzBsaRatingString": "G", + "programme": { + "id": "mac_11818465", + "title": "WBBL: Hurricanes v Scorchers Final", + "synopsis": "LIVE coverage from the Final of the Women's Big Bash League between the Hobart Hurricanes and Perth Scorchers at Bellerive Oval, Hobart." + } + } + ] + } + }, + { + "id": "SPT2", + "title": "Sky Sport 2", + "number": 52, + "tileImage": { + "uri": "https://images.skyone.co.nz/contentful/dcojl03mw8gy/5sg8cnjJ9ewyw9mBnj4DyP/d889d7e60e7959cb32fb4459c359b310/Sky_Sports_2.png" + }, + "slotsForDay": { + "slots": [ + { + "id": "IBMS_54840919", + "startMs": 1765521900000, + "endMs": 1765545900000, + "live": true, + "nzBsaRatingString": "G", + "programme": { + "id": "mac_11786466", + "title": "T100 Triathlon: Qatar", + "synopsis": "LIVE coverage of the T100 Triathlon World Championship Final 2025, from Doha, Qatar." + } + }, + { + "id": "IBMS_55359817", + "startMs": 1765545900000, + "endMs": 1765548000000, + "live": false, + "nzBsaRatingString": "G", + "programme": { + "id": "mac_11865152", + "title": "ILT20: Knight Riders v MI Emirates Hls", + "synopsis": "Highlights from the eleventh match of the International League T20 between the Abu Dhabi Knight Riders and Mumbai Indians Emirates at Sheikh Zayed Cricket Stadium, Abu Dhabi." + } + }, + { + "id": "IBMS_55359815", + "startMs": 1765548000000, + "endMs": 1765563300000, + "live": true, + "nzBsaRatingString": "G", + "programme": { + "id": "mac_11865153", + "title": "ILT20: Vipers v Giants", + "synopsis": "LIVE coverage from the twelfth match of the International League T20 between the Desert Vipers and Gulf Giants at Dubai International Cricket Stadium, Dubai." + } + }, + { + "id": "IBMS_55390979", + "startMs": 1765563300000, + "endMs": 1765564200000, + "live": false, + "nzBsaRatingString": "G", + "programme": { + "id": "mac_11844088", + "title": "India v South Africa: 2nd T20 Hls", + "synopsis": "Highlights of the second T20 International between India and South Africa at Maharaja Yadavindra Singh International Cricket Stadium, Mullanpur, New Chandigarh." + } + }, + { + "id": "IBMS_55186140", + "startMs": 1765564200000, + "endMs": 1765566000000, + "live": false, + "nzBsaRatingString": "G", + "programme": { + "id": "mac_11857414", + "title": "World Darts Championship: D1 Hls", + "synopsis": "Highlights of the PDC World Darts Championship, Day 1 at Alexandra Palace, London. The world's biggest Darts tournament will see 128 players from around the world competing across 20 days of action for the Eric Bristow Trophy." + } + }, + { + "id": "IBMS_55186138", + "startMs": 1765566000000, + "endMs": 1765581000000, + "live": true, + "nzBsaRatingString": "G", + "programme": { + "id": "mac_11857417", + "title": "World Darts Championship: D2 Eve", + "synopsis": "LIVE coverage of the PDC World Darts Championship, Day 2 evening session at Alexandra Palace, London. The world's biggest Darts tournament will see 128 players from around the world competing across 20 days of action for the Eric Bristow Trophy." + } + }, + { + "id": "IBMS_55165842", + "startMs": 1765581000000, + "endMs": 1765582500000, + "live": false, + "nzBsaRatingString": "M", + "programme": { + "id": "mac_11795852", + "title": "UFC On Sky 47", + "synopsis": "THU DEC 11 - FINAL EPISODE - Rav and Dan look ahead to UFC Sydney where Hooker will next compete and the duo say goodbye to UFC on Sky." + } + }, + { + "id": "IBMS_55165840", + "startMs": 1765582500000, + "endMs": 1765586100000, + "live": false, + "nzBsaRatingString": "G", + "programme": { + "id": "mac_11821211", + "title": "2025 Rugby World Cup Wrap", + "synopsis": "Wrap of the 2025 Women's Rugby World Cup." + } + }, + { + "id": "IBMS_55165287", + "startMs": 1765586100000, + "endMs": 1765589400000, + "live": false, + "nzBsaRatingString": "G", + "programme": { + "id": "mac_11798880", + "title": "Rugby Championship Wrap", + "synopsis": "Wrap of the 2025 Rugby Championship." + } + }, + { + "id": "IBMS_55108023", + "startMs": 1765589400000, + "endMs": 1765591200000, + "live": false, + "nzBsaRatingString": "G", + "programme": { + "id": "mac_11848172", + "title": "PGA Tour: GTI Round 1 Hls", + "synopsis": "Highlights coverage of Round 1 of the PGA Tour: Grant Thornton Invitational held at Tiburon Golf Club in Naples, Florida." + } + }, + { + "id": "IBMS_55381932", + "startMs": 1765591200000, + "endMs": 1765594800000, + "live": false, + "nzBsaRatingString": "G", + "programme": { + "id": "mac_11519837", + "title": "PGA Tour 2025 Season Review", + "synopsis": "Relive the PGA Tour 2025 season where rising stars and champions clashed for glory. This review highlights the drama, playoff thrillers, and unforgettable performances that made the season truly remarkable." + } + }, + { + "id": "IBMS_55391035", + "startMs": 1765594800000, + "endMs": 1765598400000, + "live": false, + "nzBsaRatingString": "G", + "programme": { + "id": "mac_11686742", + "title": "Golf: The Open Champ Official Film", + "synopsis": "The 153rd Open Championship delivered unforgettable rivalries and nail-biting finishes as the world’s best golfers battled for the Claret Jug. Relive the intensity, strategy, and triumphs that made this tournament one for the history books." + } + }, + { + "id": "IBMS_55093069", + "startMs": 1765598400000, + "endMs": 1765609500000, + "live": true, + "nzBsaRatingString": "G", + "programme": { + "id": "mac_11840440", + "title": "VIC PGA Championship: Round 3", + "synopsis": "LIVE coverage of Round 3 of the Victorian PGA Championship: Challenger PGA Tour of Australasia from Moonah Links Golf Course, Victoria." + } + }, + { + "id": "IBMS_55366191", + "startMs": 1765609500000, + "endMs": 1765616400000, + "live": false, + "nzBsaRatingString": "G", + "programme": { + "id": "mac_11848171", + "title": "PGA Tour: GTI Round 1", + "synopsis": "Coverage of Round 1 of the PGA Tour: Grant Thornton Invitational held at Tiburon Golf Club in Naples, Florida." + } + }, + { + "id": "IBMS_55173160", + "startMs": 1765616400000, + "endMs": 1765617300000, + "live": false, + "nzBsaRatingString": "G", + "programme": { + "id": "mac_11818464", + "title": "WBBL: Sixers v Scorchers Challenger Hls", + "synopsis": "Highlights from the Challenger of the Women's Big Bash League between Sydney Sixers and Perth Scorchers at North Sydney Oval, Sydney." + } + }, + { + "id": "IBMS_55173161", + "startMs": 1765617300000, + "endMs": 1765618200000, + "live": false, + "nzBsaRatingString": "G", + "programme": { + "id": "mac_11818461", + "title": "WBBL: Scorchers v Stars Knockout Hls", + "synopsis": "Highlights from the Knockout of the Women's Big Bash League between Perth Scorchers and Melbourne Stars at the WACA Ground, Perth." + } + }, + { + "id": "IBMS_55142381", + "startMs": 1765618200000, + "endMs": 1765621800000, + "live": false, + "nzBsaRatingString": "G", + "programme": { + "id": "mac_11786468", + "title": "T100 Triathlon World Tour: Qatar Hls", + "synopsis": "Highlights of the T100 Triathlon World Championship Final 2025, from Doha, Qatar." + } + }, + { + "id": "IBMS_55138849", + "startMs": 1765621800000, + "endMs": 1765623600000, + "live": false, + "nzBsaRatingString": "G", + "programme": { + "id": "mac_11844193", + "title": "Search4Hurt: S5 EP2", + "synopsis": "Search4Hurt returns to be even more gruelling and entertaining than ever before as another team of everyday Aussie health and fitness enthusiasts push themselves to the ultimate limits of human potential through a range of epic training sessions," + } + }, + { + "id": "IBMS_55166070", + "startMs": 1765623600000, + "endMs": 1765624500000, + "live": false, + "nzBsaRatingString": "G", + "programme": { + "id": "mac_11844085", + "title": "India v South Africa: 1st T20 Hls", + "synopsis": "Highlights of the first T20 International between India and South Africa at Barabati Stadium, Cuttack." + } + } + ] + } + }, + { + "id": "SPT3", + "title": "Sky Sport 3", + "number": 53, + "tileImage": { + "uri": "https://images.skyone.co.nz/contentful/dcojl03mw8gy/2Li36VKCjeQR5EdxX94vyV/f4e8b1608c57e9f44fc5fead915927b0/Sky_Sports_3.png" + }, + "slotsForDay": { + "slots": [ + { + "id": "IBMS_55142358", + "startMs": 1765537200000, + "endMs": 1765540800000, + "live": false, + "nzBsaRatingString": "G", + "programme": { + "id": "mac_11798880", + "title": "Rugby Championship Wrap", + "synopsis": "Wrap of the 2025 Rugby Championship." + } + }, + { + "id": "IBMS_55164925", + "startMs": 1765540800000, + "endMs": 1765541700000, + "live": false, + "nzBsaRatingString": "G", + "programme": { + "id": "mac_11844085", + "title": "India v South Africa: 1st T20 Hls", + "synopsis": "Highlights of the first T20 International between India and South Africa at Barabati Stadium, Cuttack." + } + }, + { + "id": "IBMS_55164927", + "startMs": 1765541700000, + "endMs": 1765542600000, + "live": false, + "nzBsaRatingString": "G", + "programme": { + "id": "mac_11844088", + "title": "India v South Africa: 2nd T20 Hls", + "synopsis": "Highlights of the second T20 International between India and South Africa at Maharaja Yadavindra Singh International Cricket Stadium, Mullanpur, New Chandigarh." + } + }, + { + "id": "IBMS_55186132", + "startMs": 1765542600000, + "endMs": 1765557000000, + "live": true, + "nzBsaRatingString": "G", + "programme": { + "id": "mac_11857415", + "title": "World Darts Championship: D2 Aft", + "synopsis": "LIVE coverage of the PDC World Darts Championship, Day 2 afternoon session at Alexandra Palace, London. The world's biggest Darts tournament will see 128 players from around the world competing across 20 days of action for the Eric Bristow Trophy." + } + }, + { + "id": "IBMS_55164919", + "startMs": 1765557000000, + "endMs": 1765558800000, + "live": false, + "nzBsaRatingString": "G", + "programme": { + "id": "mac_11743734", + "title": "A-League Men: ADE v BRI R7 Ext Hls", + "synopsis": "Extended highlights of A-League Men 2025/26 Round 7 as Adelaide United take on Brisbane Roar at Campbelltown Sports Stadium, Australia." + } + }, + { + "id": "IBMS_55149791", + "startMs": 1765558800000, + "endMs": 1765566000000, + "live": false, + "nzBsaRatingString": "G", + "programme": { + "id": "mac_11744003", + "title": "A-League Women: PER v WEL", + "synopsis": "Coverage of A-League Women 2025/26 as Perth Glory take on Wellington Phoenix at Sam Kerr Football Centre." + } + }, + { + "id": "IBMS_55149760", + "startMs": 1765566000000, + "endMs": 1765573200000, + "live": false, + "nzBsaRatingString": "G", + "programme": { + "id": "mac_11743736", + "title": "A-League Men: CCM v AFC R8", + "synopsis": "Coverage of A-League Men 2025/26 Round 8 as Central Coast Mariners take on Auckland FC at Polytec Stadium, Australia." + } + }, + { + "id": "IBMS_55165817", + "startMs": 1765573200000, + "endMs": 1765576800000, + "live": false, + "nzBsaRatingString": "G", + "programme": { + "id": "mac_11839564", + "title": "PSA Hong Kong Open Hls", + "synopsis": "Highlights of the Milwaukee Hong Kong Squash Open 2025, held in Hong Kong, China." + } + }, + { + "id": "IBMS_55157592", + "startMs": 1765576800000, + "endMs": 1765580400000, + "live": false, + "nzBsaRatingString": "G", + "programme": { + "id": "mac_11821211", + "title": "2025 Rugby World Cup Wrap", + "synopsis": "Wrap of the 2025 Women's Rugby World Cup." + } + }, + { + "id": "IBMS_55331890", + "startMs": 1765580400000, + "endMs": 1765581300000, + "live": false, + "nzBsaRatingString": "G", + "programme": { + "id": "mac_11850929", + "title": "WSL: London City v Brighton Hls", + "synopsis": "Highlights of the Women's Super League Round 10 between London City and Brighton at Copperjax Community Stadium, Bromley." + } + }, + { + "id": "IBMS_55331891", + "startMs": 1765581300000, + "endMs": 1765582200000, + "live": false, + "nzBsaRatingString": "G", + "programme": { + "id": "mac_11850932", + "title": "WSL: Manchester United v West Ham Hls", + "synopsis": "Highlights of the Women's Super League Round 10 between Manchester United and West Ham at the Leigh Sports Village" + } + }, + { + "id": "IBMS_55157589", + "startMs": 1765582200000, + "endMs": 1765584000000, + "live": false, + "nzBsaRatingString": "PG", + "programme": { + "id": "mac_11765522", + "title": "The Crowd Goes Wild: Best Of 2025", + "synopsis": "Best of 2025 Ep 4. Delivering the best (and worst) sporting moments from 2025, with a little cheek! Catch the CGW team's favourite field stories from across the year covering League, Union, Football and plenty of other random stuff!" + } + }, + { + "id": "IBMS_55157590", + "startMs": 1765584000000, + "endMs": 1765585800000, + "live": false, + "nzBsaRatingString": "M", + "programme": { + "id": "mac_11795852", + "title": "UFC On Sky 47", + "synopsis": "THU DEC 11 - FINAL EPISODE - Rav and Dan look ahead to UFC Sydney where Hooker will next compete and the duo say goodbye to UFC on Sky." + } + }, + { + "id": "IBMS_55359819", + "startMs": 1765585800000, + "endMs": 1765598700000, + "live": false, + "nzBsaRatingString": "G", + "programme": { + "id": "mac_11865154", + "title": "ILT20: Vipers v Giants", + "synopsis": "Coverage from the twelfth match of the International League T20 between the Desert Vipers and Gulf Giants at Dubai International Cricket Stadium, Dubai." + } + }, + { + "id": "IBMS_55391043", + "startMs": 1765598700000, + "endMs": 1765600200000, + "live": false, + "nzBsaRatingString": "M", + "programme": { + "id": "mac_11795852", + "title": "UFC On Sky 47", + "synopsis": "THU DEC 11 - FINAL EPISODE - Rav and Dan look ahead to UFC Sydney where Hooker will next compete and the duo say goodbye to UFC on Sky." + } + }, + { + "id": "IBMS_55138843", + "startMs": 1765600200000, + "endMs": 1765602000000, + "live": false, + "nzBsaRatingString": "G", + "programme": { + "id": "mac_11844193", + "title": "Search4Hurt: S5 EP2", + "synopsis": "Search4Hurt returns to be even more gruelling and entertaining than ever before as another team of everyday Aussie health and fitness enthusiasts push themselves to the ultimate limits of human potential through a range of epic training sessions," + } + }, + { + "id": "IBMS_55157586", + "startMs": 1765602000000, + "endMs": 1765603800000, + "live": false, + "nzBsaRatingString": "G", + "programme": { + "id": "mac_11743737", + "title": "A-League Men: CCM v AFC R8 Ext Hls", + "synopsis": "Extended highlights of A-League Men 2025/26 Round 8 as Central Coast Mariners take on Auckland FC at Polytec Stadium, Australia." + } + }, + { + "id": "IBMS_54919669", + "startMs": 1765603800000, + "endMs": 1765612800000, + "live": true, + "nzBsaRatingString": "G", + "programme": { + "id": "mac_11743738", + "title": "A-League Men: WSW v BRI R8", + "synopsis": "LIVE coverage of A-League Men 2025/26 Round 8 as Western Sydney Wanderers take on Brisbane Roar at Commbank Stadium, Australia." + } + }, + { + "id": "IBMS_54919670", + "startMs": 1765612800000, + "endMs": 1765624500000, + "live": true, + "nzBsaRatingString": "G", + "programme": { + "id": "mac_11743741", + "title": "A-League Men: MVC v ADE R8", + "synopsis": "LIVE coverage of A-League Men 2025/26 Round 8 as Melbourne Victory take on Adelaide United at AAMI Park, Australia." + } + } + ] + } + }, + { + "id": "0001", + "title": "Sky Sport 4", + "number": 54, + "tileImage": { + "uri": "https://images.skyone.co.nz/contentful/dcojl03mw8gy/547OJTpD88fxJE5z1ZlZhN/5350246da05b14251b852b58a8cf07e5/Sky_Sports_4.png" + }, + "slotsForDay": { + "slots": [ + { + "id": "IBMS_55253449", + "startMs": 1765533600000, + "endMs": 1765551600000, + "live": true, + "nzBsaRatingString": "G", + "programme": { + "id": "mac_11611389", + "title": "DP World Tour: Round 2", + "synopsis": "LIVE coverage of Round 2 of the DP World Tour: Alfred Dunhill Championship held at Leopard Creek Country Club in Malelane, South Africa." + } + }, + { + "id": "IBMS_55353535", + "startMs": 1765551600000, + "endMs": 1765554300000, + "live": false, + "nzBsaRatingString": "G", + "programme": { + "id": "mac_11779778", + "title": "PGA Tour Champions Learning Centre", + "synopsis": "Tips and instruction from some of the top over-50's players, plus a recap of the 2025 PGA Champions Tour season." + } + }, + { + "id": "IBMS_55367279", + "startMs": 1765554300000, + "endMs": 1765555200000, + "live": false, + "nzBsaRatingString": "G", + "programme": { + "id": "mac_11850938", + "title": "WSL: Chelsea v Everton Hls", + "synopsis": "Highlights of the Women's Super League Round 10 between Chelsea and Everton at the Kingsmeadow, Norbiton" + } + }, + { + "id": "IBMS_55161923", + "startMs": 1765555200000, + "endMs": 1765557000000, + "live": false, + "nzBsaRatingString": "G", + "programme": { + "id": "mac_11743734", + "title": "A-League Men: ADE v BRI R7 Ext Hls", + "synopsis": "Extended highlights of A-League Men 2025/26 Round 7 as Adelaide United take on Brisbane Roar at Campbelltown Sports Stadium, Australia." + } + }, + { + "id": "IBMS_55161927", + "startMs": 1765557000000, + "endMs": 1765558800000, + "live": false, + "nzBsaRatingString": "PG", + "programme": { + "id": "mac_11765522", + "title": "The Crowd Goes Wild: Best Of 2025", + "synopsis": "Best of 2025 Ep 4. Delivering the best (and worst) sporting moments from 2025, with a little cheek! Catch the CGW team's favourite field stories from across the year covering League, Union, Football and plenty of other random stuff!" + } + }, + { + "id": "IBMS_55153108", + "startMs": 1765558800000, + "endMs": 1765562400000, + "live": false, + "nzBsaRatingString": "G", + "programme": { + "id": "mac_11798880", + "title": "Rugby Championship Wrap", + "synopsis": "Wrap of the 2025 Rugby Championship." + } + }, + { + "id": "IBMS_55157610", + "startMs": 1765562400000, + "endMs": 1765566000000, + "live": false, + "nzBsaRatingString": "G", + "programme": { + "id": "mac_11821211", + "title": "2025 Rugby World Cup Wrap", + "synopsis": "Wrap of the 2025 Women's Rugby World Cup." + } + }, + { + "id": "IBMS_55153110", + "startMs": 1765566000000, + "endMs": 1765569600000, + "live": false, + "nzBsaRatingString": "G", + "programme": { + "id": "mac_11839564", + "title": "PSA Hong Kong Open Hls", + "synopsis": "Highlights of the Milwaukee Hong Kong Squash Open 2025, held in Hong Kong, China." + } + }, + { + "id": "IBMS_55153115", + "startMs": 1765569600000, + "endMs": 1765571400000, + "live": false, + "nzBsaRatingString": "PG", + "programme": { + "id": "mac_11765521", + "title": "The Crowd Goes Wild: Best Of 2025", + "synopsis": "Best of 2025 Ep 3. Delivering the best (and worst) sporting moments from 2025, with a little cheek! Catch the CGW team's favourite field stories from across the year covering League, Union, Football and plenty of other random stuff!" + } + }, + { + "id": "IBMS_55153116", + "startMs": 1765571400000, + "endMs": 1765573200000, + "live": false, + "nzBsaRatingString": "M", + "programme": { + "id": "mac_11795852", + "title": "UFC On Sky 47", + "synopsis": "THU DEC 11 - FINAL EPISODE - Rav and Dan look ahead to UFC Sydney where Hooker will next compete and the duo say goodbye to UFC on Sky." + } + }, + { + "id": "IBMS_55331886", + "startMs": 1765573200000, + "endMs": 1765574100000, + "live": false, + "nzBsaRatingString": "G", + "programme": { + "id": "mac_11850923", + "title": "WSL: Arsenal v Liverpool Hls", + "synopsis": "Highlights of the Women's Super League Round 10 between Arsenal and Liverpool at the Emirates Stadium, London." + } + }, + { + "id": "IBMS_55331887", + "startMs": 1765574100000, + "endMs": 1765575000000, + "live": false, + "nzBsaRatingString": "G", + "programme": { + "id": "mac_11850926", + "title": "WSL: Tottenham v Aston Villa Hls", + "synopsis": "Highlights of the Women's Super League Round 10 between Tottenham and Aston Villa at BetWright Stadium, London." + } + }, + { + "id": "IBMS_55186144", + "startMs": 1765575000000, + "endMs": 1765576800000, + "live": false, + "nzBsaRatingString": "G", + "programme": { + "id": "mac_11744004", + "title": "A-League Women: PER v WEL Ext Hls", + "synopsis": "Extended highlights of A-League Women 2025/26 as Perth Glory take on Wellington Phoenix at Sam Kerr Football Centre." + } + }, + { + "id": "IBMS_55186146", + "startMs": 1765576800000, + "endMs": 1765578600000, + "live": false, + "nzBsaRatingString": "G", + "programme": { + "id": "mac_11743737", + "title": "A-League Men: CCM v AFC R8 Ext Hls", + "synopsis": "Extended highlights of A-League Men 2025/26 Round 8 as Central Coast Mariners take on Auckland FC at Polytec Stadium, Australia." + } + }, + { + "id": "IBMS_55391033", + "startMs": 1765578600000, + "endMs": 1765582200000, + "live": false, + "nzBsaRatingString": "G", + "programme": { + "id": "mac_11519837", + "title": "PGA Tour 2025 Season Review", + "synopsis": "Relive the PGA Tour 2025 season where rising stars and champions clashed for glory. This review highlights the drama, playoff thrillers, and unforgettable performances that made the season truly remarkable." + } + }, + { + "id": "IBMS_55158332", + "startMs": 1765582200000, + "endMs": 1765595700000, + "live": false, + "nzBsaRatingString": "G", + "programme": { + "id": "mac_11408236", + "title": "BBL: Final: Hurricanes v Thunder", + "synopsis": "Coverage of the Big Bash League Final between Hobart Hurricanes and Sydney Thunder at the Bellerive Oval, Hobart." + } + }, + { + "id": "IBMS_55153112", + "startMs": 1765595700000, + "endMs": 1765599300000, + "live": false, + "nzBsaRatingString": "G", + "programme": { + "id": "mac_11839564", + "title": "PSA Hong Kong Open Hls", + "synopsis": "Highlights of the Milwaukee Hong Kong Squash Open 2025, held in Hong Kong, China." + } + }, + { + "id": "IBMS_55157606", + "startMs": 1765599300000, + "endMs": 1765600200000, + "live": false, + "nzBsaRatingString": "G", + "programme": { + "id": "mac_11844085", + "title": "India v South Africa: 1st T20 Hls", + "synopsis": "Highlights of the first T20 International between India and South Africa at Barabati Stadium, Cuttack." + } + }, + { + "id": "IBMS_55157608", + "startMs": 1765600200000, + "endMs": 1765601100000, + "live": false, + "nzBsaRatingString": "G", + "programme": { + "id": "mac_11844088", + "title": "India v South Africa: 2nd T20 Hls", + "synopsis": "Highlights of the second T20 International between India and South Africa at Maharaja Yadavindra Singh International Cricket Stadium, Mullanpur, New Chandigarh." + } + }, + { + "id": "IBMS_55157603", + "startMs": 1765601100000, + "endMs": 1765602000000, + "live": false, + "nzBsaRatingString": "G", + "programme": { + "id": "mac_11818464", + "title": "WBBL: Sixers v Scorchers Challenger Hls", + "synopsis": "Highlights from the Challenger of the Women's Big Bash League between Sydney Sixers and Perth Scorchers at North Sydney Oval, Sydney." + } + }, + { + "id": "IBMS_55157604", + "startMs": 1765602000000, + "endMs": 1765602900000, + "live": false, + "nzBsaRatingString": "G", + "programme": { + "id": "mac_11818461", + "title": "WBBL: Scorchers v Stars Knockout Hls", + "synopsis": "Highlights from the Knockout of the Women's Big Bash League between Perth Scorchers and Melbourne Stars at the WACA Ground, Perth." + } + }, + { + "id": "IBMS_55157584", + "startMs": 1765602900000, + "endMs": 1765604700000, + "live": false, + "nzBsaRatingString": "G", + "programme": { + "id": "mac_11744004", + "title": "A-League Women: PER v WEL Ext Hls", + "synopsis": "Extended highlights of A-League Women 2025/26 as Perth Glory take on Wellington Phoenix at Sam Kerr Football Centre." + } + }, + { + "id": "IBMS_54947444", + "startMs": 1765604700000, + "endMs": 1765612800000, + "live": true, + "nzBsaRatingString": "G", + "programme": { + "id": "mac_11744005", + "title": "A-League Women: MVC v ADL", + "synopsis": "LIVE coverage of A-League Women 2025/26 as Melbourne Victory take on Adelaide United at AAMI Park." + } + }, + { + "id": "IBMS_55157596", + "startMs": 1765612800000, + "endMs": 1765616700000, + "live": false, + "nzBsaRatingString": "G", + "programme": { + "id": "mac_11786468", + "title": "T100 Triathlon World Tour: Qatar Hls", + "synopsis": "Highlights of the T100 Triathlon World Championship Final 2025, from Doha, Qatar." + } + }, + { + "id": "IBMS_55157612", + "startMs": 1765616700000, + "endMs": 1765622400000, + "live": false, + "nzBsaRatingString": "G", + "programme": { + "id": "mac_11856939", + "title": "NZ Rugby Awards", + "synopsis": "Coverage from the 2025 New Zealand Rugby Awards. Join us as we celebrate all the big winners from the 2025 season." + } + }, + { + "id": "IBMS_54919671", + "startMs": 1765622400000, + "endMs": 1765631400000, + "live": true, + "nzBsaRatingString": "G", + "programme": { + "id": "mac_11743744", + "title": "A-League Men: PER v SYD R8", + "synopsis": "LIVE coverage of A-League Men 2025/26 Round 8 as Perth Glory take on Sydney FC at HBF Park, Australia." + } + } + ] + } + }, + { + "id": "0002", + "title": "Sky Sport 5", + "number": 55, + "tileImage": { + "uri": "https://images.skyone.co.nz/contentful/dcojl03mw8gy/3fJO9Xv4cwOvshWTvCVjX6/8c97db357dd3aa0050d7ffdb1ff46259/Sky_Sports_5.png" + }, + "slotsForDay": { + "slots": [ + { + "id": "IBMS_55214881", + "startMs": 1765537200000, + "endMs": 1765542000000, + "live": false, + "nzBsaRatingString": "G", + "programme": { + "id": "mac_11685596", + "title": "Supercars: Grand Final Race 32", + "synopsis": "Coverage of the Supercars Championship, Adelaide, Grand Final Race 32. From Adelaide Street Circuit, Adelaide, SA." + } + }, + { + "id": "IBMS_55214882", + "startMs": 1765542000000, + "endMs": 1765551000000, + "live": false, + "nzBsaRatingString": "G", + "programme": { + "id": "mac_11685611", + "title": "Supercars: Grand Final Race 33", + "synopsis": "Coverage of the Supercars Championship, Adelaide, Grand Final Race 33. From Adelaide Street Circuit, Adelaide, SA." + } + }, + { + "id": "IBMS_55214883", + "startMs": 1765551000000, + "endMs": 1765560300000, + "live": false, + "nzBsaRatingString": "G", + "programme": { + "id": "mac_11685625", + "title": "Supercars: Grand Final Race 34", + "synopsis": "Coverage of the Supercars Championship, Adelaide, Grand Final Race 34. From Adelaide Street Circuit, Adelaide, SA." + } + }, + { + "id": "IBMS_55214887", + "startMs": 1765560300000, + "endMs": 1765566000000, + "live": false, + "nzBsaRatingString": "G", + "programme": { + "id": "mac_11856939", + "title": "NZ Rugby Awards", + "synopsis": "Coverage from the 2025 New Zealand Rugby Awards. Join us as we celebrate all the big winners from the 2025 season." + } + }, + { + "id": "IBMS_55357468", + "startMs": 1765566000000, + "endMs": 1765567800000, + "live": false, + "nzBsaRatingString": "G", + "programme": { + "id": "mac_11774686", + "title": "Sky Speed", + "synopsis": "TUE DEC 09 - A championship-deciding F1 finale, tyre-frying chaos at Mad Mike’s Summer Bash, and we ask: is RC racing the starter pack for future motorsport stars?" + } + }, + { + "id": "IBMS_55173885", + "startMs": 1765567800000, + "endMs": 1765569300000, + "live": false, + "nzBsaRatingString": "M", + "programme": { + "id": "mac_11795852", + "title": "UFC On Sky 47", + "synopsis": "THU DEC 11 - FINAL EPISODE - Rav and Dan look ahead to UFC Sydney where Hooker will next compete and the duo say goodbye to UFC on Sky." + } + }, + { + "id": "IBMS_55363130", + "startMs": 1765569300000, + "endMs": 1765572900000, + "live": false, + "nzBsaRatingString": "G", + "programme": { + "id": "mac_11839564", + "title": "PSA Hong Kong Open Hls", + "synopsis": "Highlights of the Milwaukee Hong Kong Squash Open 2025, held in Hong Kong, China." + } + }, + { + "id": "IBMS_55157578", + "startMs": 1765572900000, + "endMs": 1765576500000, + "live": false, + "nzBsaRatingString": "G", + "programme": { + "id": "mac_11798880", + "title": "Rugby Championship Wrap", + "synopsis": "Wrap of the 2025 Rugby Championship." + } + }, + { + "id": "IBMS_55357464", + "startMs": 1765576500000, + "endMs": 1765578600000, + "live": false, + "nzBsaRatingString": "G", + "programme": { + "id": "mac_11774686", + "title": "Sky Speed", + "synopsis": "TUE DEC 09 - A championship-deciding F1 finale, tyre-frying chaos at Mad Mike’s Summer Bash, and we ask: is RC racing the starter pack for future motorsport stars?" + } + }, + { + "id": "IBMS_55161599", + "startMs": 1765578600000, + "endMs": 1765588200000, + "live": false, + "nzBsaRatingString": "G", + "programme": { + "id": "mac_11838831", + "title": "FIA F1: Abu Dhabi GP", + "synopsis": "Coverage of the FIA Formula 1, Abu Dhabi Grand Prix. From Yas Marina Circuit, Abu Dhabi, United Arab Emirates." + } + }, + { + "id": "IBMS_55367719", + "startMs": 1765588200000, + "endMs": 1765590000000, + "live": false, + "nzBsaRatingString": "G", + "programme": { + "id": "mac_11774686", + "title": "Sky Speed", + "synopsis": "TUE DEC 09 - A championship-deciding F1 finale, tyre-frying chaos at Mad Mike’s Summer Bash, and we ask: is RC racing the starter pack for future motorsport stars?" + } + }, + { + "id": "IBMS_55367721", + "startMs": 1765590000000, + "endMs": 1765591800000, + "live": false, + "nzBsaRatingString": "M", + "programme": { + "id": "mac_11795852", + "title": "UFC On Sky 47", + "synopsis": "THU DEC 11 - FINAL EPISODE - Rav and Dan look ahead to UFC Sydney where Hooker will next compete and the duo say goodbye to UFC on Sky." + } + }, + { + "id": "IBMS_55367723", + "startMs": 1765591800000, + "endMs": 1765592700000, + "live": false, + "nzBsaRatingString": "G", + "programme": { + "id": "mac_11850926", + "title": "WSL: Tottenham v Aston Villa Hls", + "synopsis": "Highlights of the Women's Super League Round 10 between Tottenham and Aston Villa at BetWright Stadium, London." + } + }, + { + "id": "IBMS_55161605", + "startMs": 1765592700000, + "endMs": 1765596000000, + "live": false, + "nzBsaRatingString": "G", + "programme": { + "id": "mac_11762765", + "title": "FIA Formula E: Round 1 Ext Hls", + "synopsis": "Extended highlights coverage of the FIA Formula E Championship. Round 1. From Anhembi Sambadrome Sao Paulo, Brazil." + } + }, + { + "id": "IBMS_55358151", + "startMs": 1765596000000, + "endMs": 1765599300000, + "live": false, + "nzBsaRatingString": "G", + "programme": { + "id": "mac_11845982", + "title": "Dubai International Baja Event HLs", + "synopsis": "Highlights from the Dubai International Baja." + } + }, + { + "id": "IBMS_55358139", + "startMs": 1765599300000, + "endMs": 1765601100000, + "live": false, + "nzBsaRatingString": "G", + "programme": { + "id": "mac_11845983", + "title": "Jeddah Baja Rally Event HLs", + "synopsis": "Highlights from the 2026 Jeddah Baja Rally." + } + }, + { + "id": "IBMS_55367731", + "startMs": 1765601100000, + "endMs": 1765602900000, + "live": false, + "nzBsaRatingString": "G", + "programme": { + "id": "mac_11774686", + "title": "Sky Speed", + "synopsis": "TUE DEC 09 - A championship-deciding F1 finale, tyre-frying chaos at Mad Mike’s Summer Bash, and we ask: is RC racing the starter pack for future motorsport stars?" + } + }, + { + "id": "IBMS_55186154", + "startMs": 1765602900000, + "endMs": 1765605300000, + "live": false, + "nzBsaRatingString": "G", + "programme": { + "id": "mac_11857419", + "title": "World Darts Championship: D2 Hls", + "synopsis": "Highlights of the PDC World Darts Championship, Day 2 at Alexandra Palace, London. The world's biggest Darts tournament will see 128 players from around the world competing across 20 days of action for the Eric Bristow Trophy." + } + }, + { + "id": "IBMS_55173253", + "startMs": 1765605300000, + "endMs": 1765607100000, + "live": false, + "nzBsaRatingString": "G", + "programme": { + "id": "mac_11844193", + "title": "Search4Hurt: S5 EP2", + "synopsis": "Search4Hurt returns to be even more gruelling and entertaining than ever before as another team of everyday Aussie health and fitness enthusiasts push themselves to the ultimate limits of human potential through a range of epic training sessions," + } + }, + { + "id": "IBMS_54947445", + "startMs": 1765607100000, + "endMs": 1765614900000, + "live": true, + "nzBsaRatingString": "G", + "programme": { + "id": "mac_11744008", + "title": "A-League Women: CBR v MCY", + "synopsis": "LIVE coverage of A-League Women 2025/26 as Canberra United take on Melbourne City at McKellar Park." + } + }, + { + "id": "IBMS_55391005", + "startMs": 1765614900000, + "endMs": 1765615800000, + "live": false, + "nzBsaRatingString": "G", + "programme": { + "id": "mac_11743891", + "title": "A-League Men: CCM v AFC R8 Hls", + "synopsis": "Highlights of A-League Men 2025/26 Round 8 as Central Coast Mariners take on Auckland FC at Polytec Stadium, Australia." + } + }, + { + "id": "IBMS_55367729", + "startMs": 1765615800000, + "endMs": 1765617600000, + "live": false, + "nzBsaRatingString": "G", + "programme": { + "id": "mac_11845983", + "title": "Jeddah Baja Rally Event HLs", + "synopsis": "Highlights from the 2026 Jeddah Baja Rally." + } + }, + { + "id": "IBMS_55108087", + "startMs": 1765617600000, + "endMs": 1765624800000, + "live": false, + "nzBsaRatingString": "G", + "programme": { + "id": "mac_11848171", + "title": "PGA Tour: GTI Round 1", + "synopsis": "Coverage of Round 1 of the PGA Tour: Grant Thornton Invitational held at Tiburon Golf Club in Naples, Florida." + } + } + ] + } + }, + { + "id": "0003", + "title": "Sky Sport 6", + "number": 56, + "tileImage": { + "uri": "https://images.skyone.co.nz/contentful/dcojl03mw8gy/4neKyKZhBEIzEzEmeWWU96/edcfc922667d86db8a25c087cdea2750/Sky_Sports_6.png" + }, + "slotsForDay": { + "slots": [ + { + "id": "IBMS_55150676", + "startMs": 1765537200000, + "endMs": 1765548900000, + "live": false, + "nzBsaRatingString": "G", + "programme": { + "id": "mac_11818463", + "title": "WBBL: Sixers v Scorchers Challenger", + "synopsis": "Coverage from the Challenger of the Women's Big Bash League between Sydney Sixers and Perth Scorchers at North Sydney Oval, Sydney." + } + }, + { + "id": "IBMS_55314266", + "startMs": 1765548900000, + "endMs": 1765549800000, + "live": false, + "nzBsaRatingString": "G", + "programme": { + "id": "mac_11818461", + "title": "WBBL: Scorchers v Stars Knockout Hls", + "synopsis": "Highlights from the Knockout of the Women's Big Bash League between Perth Scorchers and Melbourne Stars at the WACA Ground, Perth." + } + }, + { + "id": "IBMS_55150818", + "startMs": 1765549800000, + "endMs": 1765564200000, + "live": false, + "nzBsaRatingString": "G", + "programme": { + "id": "mac_11844087", + "title": "India v South Africa: 2nd T20", + "synopsis": "Coverage of the second T20 International between India and South Africa at Maharaja Yadavindra Singh International Cricket Stadium, Mullanpur, New Chandigarh." + } + }, + { + "id": "IBMS_55353537", + "startMs": 1765564200000, + "endMs": 1765566600000, + "live": false, + "nzBsaRatingString": "G", + "programme": { + "id": "mac_11779778", + "title": "PGA Tour Champions Learning Centre", + "synopsis": "Tips and instruction from some of the top over-50's players, plus a recap of the 2025 PGA Champions Tour season." + } + }, + { + "id": "IBMS_55151412", + "startMs": 1765566600000, + "endMs": 1765569600000, + "live": false, + "nzBsaRatingString": "G", + "programme": { + "id": "mac_11611569", + "title": "Event Hls:Legends Tour: Vattanac Legends", + "synopsis": "Event Highlights of the Legends Tour: Vattanac Legends Championship at Vattanac Golf Resort, Cambodia." + } + }, + { + "id": "IBMS_55186148", + "startMs": 1765569600000, + "endMs": 1765571400000, + "live": false, + "nzBsaRatingString": "G", + "programme": { + "id": "mac_11743998", + "title": "A-League Women: WSW v SYD Ext Hls", + "synopsis": "Extended highlights of A-League Women 2025/26 as Western Sydney Wanderers take on Sydney FC at Marconi Stadium." + } + }, + { + "id": "IBMS_55381898", + "startMs": 1765571400000, + "endMs": 1765575000000, + "live": false, + "nzBsaRatingString": "G", + "programme": { + "id": "mac_11519837", + "title": "PGA Tour 2025 Season Review", + "synopsis": "Relive the PGA Tour 2025 season where rising stars and champions clashed for glory. This review highlights the drama, playoff thrillers, and unforgettable performances that made the season truly remarkable." + } + }, + { + "id": "IBMS_55384918", + "startMs": 1765575000000, + "endMs": 1765576800000, + "live": false, + "nzBsaRatingString": "G", + "programme": { + "id": "mac_11611391", + "title": "DP World Tour: Round 2 Hls", + "synopsis": "Highlights of Round 2 of the DP World Tour: Alfred Dunhill Championship held at Leopard Creek Country Club in Malelane, South Africa." + } + }, + { + "id": "IBMS_55173134", + "startMs": 1765576800000, + "endMs": 1765582200000, + "live": false, + "nzBsaRatingString": "G", + "programme": { + "id": "mac_11684160", + "title": "U.S. Open Championship Event Hls", + "synopsis": "Event Highlights of the U.S. Open Championship held at Oakmont Country Club in Oakmont, Pennsylvania." + } + }, + { + "id": "IBMS_55173135", + "startMs": 1765582200000, + "endMs": 1765585800000, + "live": false, + "nzBsaRatingString": "G", + "programme": { + "id": "mac_11686742", + "title": "Golf: The Open Champ Official Film", + "synopsis": "The 153rd Open Championship delivered unforgettable rivalries and nail-biting finishes as the world’s best golfers battled for the Claret Jug. Relive the intensity, strategy, and triumphs that made this tournament one for the history books." + } + }, + { + "id": "IBMS_55384922", + "startMs": 1765585800000, + "endMs": 1765587600000, + "live": false, + "nzBsaRatingString": "G", + "programme": { + "id": "mac_11865155", + "title": "ILT20: Vipers v Giants Hls", + "synopsis": "Highlights from the twelfth match of the International League T20 between the Desert Vipers and Gulf Giants at Dubai International Cricket Stadium, Dubai." + } + }, + { + "id": "IBMS_55255207", + "startMs": 1765587600000, + "endMs": 1765594500000, + "live": false, + "nzBsaRatingString": "G", + "programme": { + "id": "mac_11611390", + "title": "DP World Tour: Round 2", + "synopsis": "Coverage of Round 2 of the DP World Tour: Alfred Dunhill Championship held at Leopard Creek Country Club in Malelane, South Africa." + } + }, + { + "id": "IBMS_55354023", + "startMs": 1765594500000, + "endMs": 1765602300000, + "live": true, + "nzBsaRatingString": "G", + "programme": { + "id": "mac_11743975", + "title": "A-League Women: NEW v BRI", + "synopsis": "LIVE coverage of A-League Women 2025/26 as Newcastle Jets take on Brisbane Roar at No.2 Sportsground." + } + }, + { + "id": "IBMS_55391015", + "startMs": 1765602300000, + "endMs": 1765603800000, + "live": false, + "nzBsaRatingString": "M", + "programme": { + "id": "mac_11795852", + "title": "UFC On Sky 47", + "synopsis": "THU DEC 11 - FINAL EPISODE - Rav and Dan look ahead to UFC Sydney where Hooker will next compete and the duo say goodbye to UFC on Sky." + } + }, + { + "id": "IBMS_55255201", + "startMs": 1765603800000, + "endMs": 1765605600000, + "live": false, + "nzBsaRatingString": "G", + "programme": { + "id": "mac_11611391", + "title": "DP World Tour: Round 2 Hls", + "synopsis": "Highlights of Round 2 of the DP World Tour: Alfred Dunhill Championship held at Leopard Creek Country Club in Malelane, South Africa." + } + }, + { + "id": "IBMS_55254897", + "startMs": 1765605600000, + "endMs": 1765631400000, + "live": true, + "nzBsaRatingString": "G", + "programme": { + "id": "mac_11611392", + "title": "DP World Tour: R3 (Rain Delay)", + "synopsis": "LIVE coverage of Round 3 of the DP World Tour: Alfred Dunhill Championship held at Leopard Creek Country Club in Malelane, South Africa." + } + } + ] + } + }, + { + "id": "0009", + "title": "Sky Sport 7", + "number": 57, + "tileImage": { + "uri": "https://images.skyone.co.nz/contentful/dcojl03mw8gy/2W3VYD7jLnxWNNztOkEfNn/78f46ff43a7a01580c69d7b8c68a085f/Sky_Sports_7.png" + }, + "slotsForDay": { + "slots": [ + { + "id": "IBMS_55161943", + "startMs": 1765528200000, + "endMs": 1765541700000, + "live": false, + "nzBsaRatingString": "G", + "programme": { + "id": "mac_11408236", + "title": "BBL: Final: Hurricanes v Thunder", + "synopsis": "Coverage of the Big Bash League Final between Hobart Hurricanes and Sydney Thunder at the Bellerive Oval, Hobart." + } + }, + { + "id": "IBMS_55173019", + "startMs": 1765541700000, + "endMs": 1765548900000, + "live": false, + "nzBsaRatingString": "G", + "programme": { + "id": "mac_11822878", + "title": "PL: Fulham v Crystal Palace", + "synopsis": "Coverage from Match Week 15 of the Premier League between Fulham and Crystal Palace at Craven Cottage, London." + } + }, + { + "id": "IBMS_55173472", + "startMs": 1765548900000, + "endMs": 1765556100000, + "live": false, + "nzBsaRatingString": "G", + "programme": { + "id": "mac_11822850", + "title": "PL: Bournemouth v Chelsea", + "synopsis": "Coverage from Match Week 15 of the Premier League between Bournemouth and Chelsea at Vitality Stadium, Bournemouth." + } + }, + { + "id": "IBMS_55173474", + "startMs": 1765556100000, + "endMs": 1765557000000, + "live": false, + "nzBsaRatingString": "G", + "programme": { + "id": "mac_11844088", + "title": "India v South Africa: 2nd T20 Hls", + "synopsis": "Highlights of the second T20 International between India and South Africa at Maharaja Yadavindra Singh International Cricket Stadium, Mullanpur, New Chandigarh." + } + }, + { + "id": "IBMS_55176155", + "startMs": 1765557000000, + "endMs": 1765557900000, + "live": false, + "nzBsaRatingString": "G", + "programme": { + "id": "mac_11850935", + "title": "WSL: Leicester v Manchester City Hls", + "synopsis": "Highlights of the Women's Super League Round 10 between Leicester City and Manchester City at the King Power Stadium, Leicester." + } + }, + { + "id": "IBMS_55176156", + "startMs": 1765557900000, + "endMs": 1765558800000, + "live": false, + "nzBsaRatingString": "G", + "programme": { + "id": "mac_11850938", + "title": "WSL: Chelsea v Everton Hls", + "synopsis": "Highlights of the Women's Super League Round 10 between Chelsea and Everton at the Kingsmeadow, Norbiton" + } + }, + { + "id": "IBMS_55173590", + "startMs": 1765558800000, + "endMs": 1765566000000, + "live": false, + "nzBsaRatingString": "G", + "programme": { + "id": "mac_11822854", + "title": "PL: Everton v Nottingham Forest", + "synopsis": "Coverage from Match Week 15 of the Premier League between Everton and Nottingham Forest at Hill Dickinson Stadium, Liverpool." + } + }, + { + "id": "IBMS_55173597", + "startMs": 1765566000000, + "endMs": 1765566900000, + "live": false, + "nzBsaRatingString": "G", + "programme": { + "id": "mac_11850923", + "title": "WSL: Arsenal v Liverpool Hls", + "synopsis": "Highlights of the Women's Super League Round 10 between Arsenal and Liverpool at the Emirates Stadium, London." + } + }, + { + "id": "IBMS_55173598", + "startMs": 1765566900000, + "endMs": 1765567800000, + "live": false, + "nzBsaRatingString": "G", + "programme": { + "id": "mac_11850926", + "title": "WSL: Tottenham v Aston Villa Hls", + "synopsis": "Highlights of the Women's Super League Round 10 between Tottenham and Aston Villa at BetWright Stadium, London." + } + }, + { + "id": "IBMS_55173599", + "startMs": 1765567800000, + "endMs": 1765568700000, + "live": false, + "nzBsaRatingString": "G", + "programme": { + "id": "mac_11850929", + "title": "WSL: London City v Brighton Hls", + "synopsis": "Highlights of the Women's Super League Round 10 between London City and Brighton at Copperjax Community Stadium, Bromley." + } + }, + { + "id": "IBMS_55173600", + "startMs": 1765568700000, + "endMs": 1765569600000, + "live": false, + "nzBsaRatingString": "G", + "programme": { + "id": "mac_11850932", + "title": "WSL: Manchester United v West Ham Hls", + "synopsis": "Highlights of the Women's Super League Round 10 between Manchester United and West Ham at the Leigh Sports Village" + } + }, + { + "id": "IBMS_55173601", + "startMs": 1765569600000, + "endMs": 1765570500000, + "live": false, + "nzBsaRatingString": "G", + "programme": { + "id": "mac_11850935", + "title": "WSL: Leicester v Manchester City Hls", + "synopsis": "Highlights of the Women's Super League Round 10 between Leicester City and Manchester City at the King Power Stadium, Leicester." + } + }, + { + "id": "IBMS_55173602", + "startMs": 1765570500000, + "endMs": 1765571400000, + "live": false, + "nzBsaRatingString": "G", + "programme": { + "id": "mac_11850938", + "title": "WSL: Chelsea v Everton Hls", + "synopsis": "Highlights of the Women's Super League Round 10 between Chelsea and Everton at the Kingsmeadow, Norbiton" + } + }, + { + "id": "IBMS_55173608", + "startMs": 1765571400000, + "endMs": 1765578600000, + "live": false, + "nzBsaRatingString": "G", + "programme": { + "id": "mac_11822874", + "title": "PL: Brighton v West Ham", + "synopsis": "Coverage from Match Week 15 of the Premier League between Brighton and West Ham at American Express Stadium, Brighton." + } + }, + { + "id": "IBMS_55359850", + "startMs": 1765578600000, + "endMs": 1765580400000, + "live": false, + "nzBsaRatingString": "G", + "programme": { + "id": "mac_11865155", + "title": "ILT20: Vipers v Giants Hls", + "synopsis": "Highlights from the twelfth match of the International League T20 between the Desert Vipers and Gulf Giants at Dubai International Cricket Stadium, Dubai." + } + }, + { + "id": "IBMS_55173583", + "startMs": 1765580400000, + "endMs": 1765587600000, + "live": false, + "nzBsaRatingString": "G", + "programme": { + "id": "mac_11744003", + "title": "A-League Women: PER v WEL", + "synopsis": "Coverage of A-League Women 2025/26 as Perth Glory take on Wellington Phoenix at Sam Kerr Football Centre." + } + }, + { + "id": "IBMS_55186150", + "startMs": 1765587600000, + "endMs": 1765601100000, + "live": false, + "nzBsaRatingString": "G", + "programme": { + "id": "mac_11857416", + "title": "World Darts Championship: D2 Aft", + "synopsis": "Coverage of the PDC World Darts Championship, Day 2 afternoon session at Alexandra Palace, London. The world's biggest Darts tournament will see 128 players from around the world competing across 20 days of action for the Eric Bristow Trophy." + } + }, + { + "id": "IBMS_55186152", + "startMs": 1765601100000, + "endMs": 1765614600000, + "live": false, + "nzBsaRatingString": "G", + "programme": { + "id": "mac_11857418", + "title": "World Darts Championship: D2 Eve", + "synopsis": "Coverage of the PDC World Darts Championship, Day 2 evening session at Alexandra Palace, London. The world's biggest Darts tournament will see 128 players from around the world competing across 20 days of action for the Eric Bristow Trophy." + } + }, + { + "id": "IBMS_55186786", + "startMs": 1765614600000, + "endMs": 1765615500000, + "live": false, + "nzBsaRatingString": "G", + "programme": { + "id": "mac_11844088", + "title": "India v South Africa: 2nd T20 Hls", + "synopsis": "Highlights of the second T20 International between India and South Africa at Maharaja Yadavindra Singh International Cricket Stadium, Mullanpur, New Chandigarh." + } + }, + { + "id": "IBMS_55173584", + "startMs": 1765615500000, + "endMs": 1765622700000, + "live": false, + "nzBsaRatingString": "G", + "programme": { + "id": "mac_11743736", + "title": "A-League Men: CCM v AFC R8", + "synopsis": "Coverage of A-League Men 2025/26 Round 8 as Central Coast Mariners take on Auckland FC at Polytec Stadium, Australia." + } + }, + { + "id": "IBMS_55176250", + "startMs": 1765622700000, + "endMs": 1765629900000, + "live": false, + "nzBsaRatingString": "G", + "programme": { + "id": "mac_11744003", + "title": "A-League Women: PER v WEL", + "synopsis": "Coverage of A-League Women 2025/26 as Perth Glory take on Wellington Phoenix at Sam Kerr Football Centre." + } + } + ] + } + }, + { + "id": "0004", + "title": "Sky Sport Premier League", + "number": 58, + "tileImage": { + "uri": "https://images.skyone.co.nz/contentful/dcojl03mw8gy/1E6YMflONVpZdhNXvc0LWo/68443f563a0c6a383edcc2518b1cbae9/Sky_Sport_Premier_League_Logo_Arrow_Box.png" + }, + "slotsForDay": { + "slots": [ + { + "id": "IBMS_55251185", + "startMs": 1765537200000, + "endMs": 1765540800000, + "live": false, + "nzBsaRatingString": "G", + "programme": { + "id": "mac_ptc346675899", + "title": "THE CATCH-UP SHOW", + "synopsis": "EP17. The Catch-Up Show is your chance to relive the 'best bits' from across the Premier League week with a compilation of all PLP content and programming." + } + }, + { + "id": "IBMS_55251186", + "startMs": 1765540800000, + "endMs": 1765544400000, + "live": false, + "nzBsaRatingString": "G", + "programme": { + "id": "mac_ptc1142986255", + "title": "WELCOME TO THE WEEKEND", + "synopsis": "FRI 12 DEC. Light-hearted, inclusive and entertaining, Welcome to the Weekend is the show that kicks off the Premier League weekend. We will focus on the football but also on the lifestyle topics that footballers and fans love - food, fashion, music, movi" + } + }, + { + "id": "IBMS_55251187", + "startMs": 1765544400000, + "endMs": 1765546200000, + "live": false, + "nzBsaRatingString": "G", + "programme": { + "id": "mac_ptc1458306737", + "title": "THE BIG INTERVIEW", + "synopsis": "EP18:. Extended sit-downs and more informal ‘out and about’ interviews with the Premier League’s biggest stars, providing players with a platform to tell their story in their own words." + } + }, + { + "id": "IBMS_55251188", + "startMs": 1765546200000, + "endMs": 1765549800000, + "live": false, + "nzBsaRatingString": "G", + "programme": { + "id": "mac_ptc1050620066", + "title": "PL RIVALRIES", + "synopsis": "EP01: TYNE-WEAR DERBY. PL Rivalries tells the inside story of classic Premier League match-ups from those who lived and breathed them." + } + }, + { + "id": "IBMS_55251189", + "startMs": 1765549800000, + "endMs": 1765551600000, + "live": false, + "nzBsaRatingString": "G", + "programme": { + "id": "mac_ptc882324343", + "title": "PL STORIES", + "synopsis": "EP28:. The centrepiece of the Premier League Originals strand, PL Stories showcases the personalities who have shaped the Premier League era, and tells their stories with location interviews and high-end filming styles." + } + }, + { + "id": "IBMS_55251190", + "startMs": 1765551600000, + "endMs": 1765553400000, + "live": false, + "nzBsaRatingString": "G", + "programme": { + "id": "mac_ptc1289103179", + "title": "FANTASY SHOW", + "synopsis": "FRI 12 DEC. Haaland or Salah? Saka or Palmer? Isak or Cunha? Picking your Fantasy team is never easy, but the Fantasy Show is on hand to help FPL Managers with those big decisions." + } + }, + { + "id": "IBMS_55251191", + "startMs": 1765553400000, + "endMs": 1765557000000, + "live": false, + "nzBsaRatingString": "G", + "programme": { + "id": "mac_ptc134543838", + "title": "FANZONE", + "synopsis": "FRI 12 DEC. This is the show that puts international fans at the heart of the Premier League conversation. We connect with fans from around the world as they share their views on their teams and favourite players." + } + }, + { + "id": "IBMS_55251192", + "startMs": 1765557000000, + "endMs": 1765558800000, + "live": false, + "nzBsaRatingString": "G", + "programme": { + "id": "mac_ptc1882027790", + "title": "PREVIEW", + "synopsis": "FRI 12 DEC. A tightly packed look-ahead to the forthcoming matchround with a mix of player interviews and special features." + } + }, + { + "id": "IBMS_55251193", + "startMs": 1765558800000, + "endMs": 1765562400000, + "live": false, + "nzBsaRatingString": "G", + "programme": { + "id": "mac_ptc816786506", + "title": "WELCOME TO THE WEEKEND", + "synopsis": "FRI 12 DEC. Light-hearted, inclusive and entertaining, Welcome to the Weekend is the show that kicks off the Premier League weekend. We will focus on the football but also on the lifestyle topics that footballers and fans love - food, fashion, music, movi" + } + }, + { + "id": "IBMS_55251194", + "startMs": 1765562400000, + "endMs": 1765566000000, + "live": false, + "nzBsaRatingString": "G", + "programme": { + "id": "mac_ptc660139784", + "title": "TEAM TALKS", + "synopsis": "FRI 12 DEC. Punditry, pressers and predictions ahead of the PL weekend. Our studio team tackle all the major talking points and we hear from the headline acts as the players and the managers have their say ahead of the action." + } + }, + { + "id": "IBMS_55251195", + "startMs": 1765566000000, + "endMs": 1765567800000, + "live": false, + "nzBsaRatingString": "G", + "programme": { + "id": "mac_ptc1203402066", + "title": "FANTASY SHOW", + "synopsis": "FRI 12 DEC. Haaland or Salah? Saka or Palmer? Isak or Cunha? Picking your Fantasy team is never easy, but the Fantasy Show is on hand to help FPL Managers with those big decisions." + } + }, + { + "id": "IBMS_55251196", + "startMs": 1765567800000, + "endMs": 1765569600000, + "live": false, + "nzBsaRatingString": "G", + "programme": { + "id": "mac_ptc1031509933", + "title": "THE BIG INTERVIEW", + "synopsis": "EP18:. Extended sit-downs and more informal ‘out and about’ interviews with the Premier League’s biggest stars, providing players with a platform to tell their story in their own words." + } + }, + { + "id": "IBMS_55251197", + "startMs": 1765569600000, + "endMs": 1765573200000, + "live": false, + "nzBsaRatingString": "G", + "programme": { + "id": "mac_ptc979847048", + "title": "FANZONE", + "synopsis": "FRI 12 DEC. This is the show that puts international fans at the heart of the Premier League conversation. We connect with fans from around the world as they share their views on their teams and favourite players." + } + }, + { + "id": "IBMS_55251198", + "startMs": 1765573200000, + "endMs": 1765575000000, + "live": false, + "nzBsaRatingString": "G", + "programme": { + "id": "mac_ptc1741831472", + "title": "PREVIEW", + "synopsis": "FRI 12 DEC. A tightly packed look-ahead to the forthcoming matchround with a mix of player interviews and special features." + } + }, + { + "id": "IBMS_55251199", + "startMs": 1765575000000, + "endMs": 1765578600000, + "live": false, + "nzBsaRatingString": "G", + "programme": { + "id": "mac_ptc1144482123", + "title": "WELCOME TO THE WEEKEND", + "synopsis": "FRI 12 DEC. Light-hearted, inclusive and entertaining, Welcome to the Weekend is the show that kicks off the Premier League weekend. We will focus on the football but also on the lifestyle topics that footballers and fans love - food, fashion, music, movi" + } + }, + { + "id": "IBMS_55251200", + "startMs": 1765578600000, + "endMs": 1765580400000, + "live": false, + "nzBsaRatingString": "G", + "programme": { + "id": "mac_ptc1304713151", + "title": "PL STORIES", + "synopsis": "EP28:. The centrepiece of the Premier League Originals strand, PL Stories showcases the personalities who have shaped the Premier League era, and tells their stories with location interviews and high-end filming styles." + } + }, + { + "id": "IBMS_55251201", + "startMs": 1765580400000, + "endMs": 1765582200000, + "live": false, + "nzBsaRatingString": "G", + "programme": { + "id": "mac_ptc1694681718", + "title": "THE BIG INTERVIEW", + "synopsis": "EP18:. Extended sit-downs and more informal ‘out and about’ interviews with the Premier League’s biggest stars, providing players with a platform to tell their story in their own words." + } + }, + { + "id": "IBMS_55251202", + "startMs": 1765582200000, + "endMs": 1765585800000, + "live": false, + "nzBsaRatingString": "G", + "programme": { + "id": "mac_ptc416369207", + "title": "TEAM TALKS", + "synopsis": "FRI 12 DEC. Punditry, pressers and predictions ahead of the PL weekend. Our studio team tackle all the major talking points and we hear from the headline acts as the players and the managers have their say ahead of the action." + } + }, + { + "id": "IBMS_55251203", + "startMs": 1765585800000, + "endMs": 1765587600000, + "live": false, + "nzBsaRatingString": "G", + "programme": { + "id": "mac_ptc781173651", + "title": "FANTASY SHOW", + "synopsis": "FRI 12 DEC. Haaland or Salah? Saka or Palmer? Isak or Cunha? Picking your Fantasy team is never easy, but the Fantasy Show is on hand to help FPL Managers with those big decisions." + } + }, + { + "id": "IBMS_55251204", + "startMs": 1765587600000, + "endMs": 1765591200000, + "live": false, + "nzBsaRatingString": "G", + "programme": { + "id": "mac_ptc67610398", + "title": "FANZONE", + "synopsis": "FRI 12 DEC. This is the show that puts international fans at the heart of the Premier League conversation. We connect with fans from around the world as they share their views on their teams and favourite players." + } + }, + { + "id": "IBMS_55251205", + "startMs": 1765591200000, + "endMs": 1765593000000, + "live": false, + "nzBsaRatingString": "G", + "programme": { + "id": "mac_ptc1654884957", + "title": "PREVIEW", + "synopsis": "FRI 12 DEC. A tightly packed look-ahead to the forthcoming matchround with a mix of player interviews and special features." + } + }, + { + "id": "IBMS_55251206", + "startMs": 1765593000000, + "endMs": 1765596600000, + "live": false, + "nzBsaRatingString": "G", + "programme": { + "id": "mac_ptc1624280191", + "title": "WELCOME TO THE WEEKEND", + "synopsis": "FRI 12 DEC. Light-hearted, inclusive and entertaining, Welcome to the Weekend is the show that kicks off the Premier League weekend. We will focus on the football but also on the lifestyle topics that footballers and fans love - food, fashion, music, movi" + } + }, + { + "id": "IBMS_55251207", + "startMs": 1765596600000, + "endMs": 1765598400000, + "live": false, + "nzBsaRatingString": "G", + "programme": { + "id": "mac_ptc1523394438", + "title": "REWIND", + "synopsis": "EP09: KEVIN PHILLIPS: MY SUNDERLAND YEARS. An evergreen strand that relives classic matches, seasons and moments in the company of those who starred in them." + } + }, + { + "id": "IBMS_55251208", + "startMs": 1765598400000, + "endMs": 1765602000000, + "live": false, + "nzBsaRatingString": "G", + "programme": { + "id": "mac_ptc1554929135", + "title": "TEAM TALKS", + "synopsis": "FRI 12 DEC. Punditry, pressers and predictions ahead of the PL weekend. Our studio team tackle all the major talking points and we hear from the headline acts as the players and the managers have their say ahead of the action." + } + }, + { + "id": "IBMS_55251209", + "startMs": 1765602000000, + "endMs": 1765603800000, + "live": false, + "nzBsaRatingString": "G", + "programme": { + "id": "mac_ptc1870592042", + "title": "THE BIG INTERVIEW", + "synopsis": "EP18:. Extended sit-downs and more informal ‘out and about’ interviews with the Premier League’s biggest stars, providing players with a platform to tell their story in their own words." + } + }, + { + "id": "IBMS_55251210", + "startMs": 1765603800000, + "endMs": 1765605600000, + "live": false, + "nzBsaRatingString": "G", + "programme": { + "id": "mac_ptc416150301", + "title": "FANTASY SHOW", + "synopsis": "FRI 12 DEC. Haaland or Salah? Saka or Palmer? Isak or Cunha? Picking your Fantasy team is never easy, but the Fantasy Show is on hand to help FPL Managers with those big decisions." + } + }, + { + "id": "IBMS_55251211", + "startMs": 1765605600000, + "endMs": 1765607400000, + "live": false, + "nzBsaRatingString": "G", + "programme": { + "id": "mac_ptc1101651490", + "title": "PREVIEW", + "synopsis": "FRI 12 DEC. A tightly packed look-ahead to the forthcoming matchround with a mix of player interviews and special features." + } + }, + { + "id": "IBMS_55251212", + "startMs": 1765607400000, + "endMs": 1765611000000, + "live": false, + "nzBsaRatingString": "G", + "programme": { + "id": "mac_ptc272322323", + "title": "FANZONE", + "synopsis": "FRI 12 DEC. This is the show that puts international fans at the heart of the Premier League conversation. We connect with fans from around the world as they share their views on their teams and favourite players." + } + }, + { + "id": "IBMS_55251213", + "startMs": 1765611000000, + "endMs": 1765612800000, + "live": false, + "nzBsaRatingString": "G", + "programme": { + "id": "mac_ptc2080259955", + "title": "PL STORIES", + "synopsis": "EP28:. The centrepiece of the Premier League Originals strand, PL Stories showcases the personalities who have shaped the Premier League era, and tells their stories with location interviews and high-end filming styles." + } + }, + { + "id": "IBMS_55251214", + "startMs": 1765612800000, + "endMs": 1765616400000, + "live": false, + "nzBsaRatingString": "G", + "programme": { + "id": "mac_ptc2095212791", + "title": "WELCOME TO THE WEEKEND", + "synopsis": "FRI 12 DEC. Light-hearted, inclusive and entertaining, Welcome to the Weekend is the show that kicks off the Premier League weekend. We will focus on the football but also on the lifestyle topics that footballers and fans love - food, fashion, music, movi" + } + }, + { + "id": "IBMS_55251215", + "startMs": 1765616400000, + "endMs": 1765618200000, + "live": false, + "nzBsaRatingString": "G", + "programme": { + "id": "mac_ptc166074746", + "title": "FANTASY SHOW", + "synopsis": "FRI 12 DEC. Haaland or Salah? Saka or Palmer? Isak or Cunha? Picking your Fantasy team is never easy, but the Fantasy Show is on hand to help FPL Managers with those big decisions." + } + }, + { + "id": "IBMS_55251216", + "startMs": 1765618200000, + "endMs": 1765620000000, + "live": false, + "nzBsaRatingString": "G", + "programme": { + "id": "mac_ptc1853679694", + "title": "PREVIEW", + "synopsis": "FRI 12 DEC. A tightly packed look-ahead to the forthcoming matchround with a mix of player interviews and special features." + } + }, + { + "id": "IBMS_55251217", + "startMs": 1765620000000, + "endMs": 1765623600000, + "live": false, + "nzBsaRatingString": "G", + "programme": { + "id": "mac_ptc155861933", + "title": "TEAM TALKS", + "synopsis": "FRI 12 DEC. Punditry, pressers and predictions ahead of the PL weekend. Our studio team tackle all the major talking points and we hear from the headline acts as the players and the managers have their say ahead of the action." + } + }, + { + "id": "IBMS_55251218", + "startMs": 1765623600000, + "endMs": 1765625400000, + "live": false, + "nzBsaRatingString": "G", + "programme": { + "id": "mac_ptc336755120", + "title": "THE BIG INTERVIEW", + "synopsis": "EP18:. Extended sit-downs and more informal ‘out and about’ interviews with the Premier League’s biggest stars, providing players with a platform to tell their story in their own words." + } + } + ] + } + }, + { + "id": "0016", + "title": "Sky Sport 9", + "number": 59, + "tileImage": { + "uri": "https://images.skyone.co.nz/contentful/dcojl03mw8gy/5F6kCqdSuIcHo7gDduSFVt/f67001a9ae1f9dfb1d7a2a82d9acf538/Sky_Sports_9.png" + }, + "slotsForDay": { + "slots": [ + { + "id": "IBMS_55161774", + "startMs": 1765537200000, + "endMs": 1765544400000, + "live": false, + "nzBsaRatingString": "G", + "programme": { + "id": "mac_11853375", + "title": "AFLW: SF 1: HAW v CRL", + "synopsis": "Coverage of AFL Women's Semi Final 1 as Hawthorn take on Carlton at University of Tasmania Stadium, Tasmania." + } + }, + { + "id": "IBMS_55367607", + "startMs": 1765544400000, + "endMs": 1765551000000, + "live": false, + "nzBsaRatingString": "G", + "programme": { + "id": "mac_11853378", + "title": "AFLW: PF 1: NTH v HAW", + "synopsis": "Coverage of AFL Women's First Preliminary Final as North Melbourne Tasmanian Kangaroos takes on Melbourne from IKON Park, Melbourne." + } + }, + { + "id": "IBMS_55367609", + "startMs": 1765551000000, + "endMs": 1765558200000, + "live": false, + "nzBsaRatingString": "G", + "programme": { + "id": "mac_11853381", + "title": "AFLW: PF 2: BRL v CRL", + "synopsis": "Coverage of AFL Women's Second Preliminary Final as Brisbane Lions takes on Carlton from Brighton Homes Arena, Queensland." + } + }, + { + "id": "IBMS_55367611", + "startMs": 1765558200000, + "endMs": 1765566900000, + "live": false, + "nzBsaRatingString": "G", + "programme": { + "id": "mac_11853384", + "title": "AFLW: GF: NTH v BRL", + "synopsis": "Coverage of AFL Women's Grand Final as North Melbourne Tasmanian Kangaroos take on Brisbane Lions at IKON Park, Melbourne, Wurundjeri." + } + }, + { + "id": "IBMS_55367615", + "startMs": 1765566900000, + "endMs": 1765567800000, + "live": false, + "nzBsaRatingString": "G", + "programme": { + "id": "mac_11818464", + "title": "WBBL: Sixers v Scorchers Challenger Hls", + "synopsis": "Highlights from the Challenger of the Women's Big Bash League between Sydney Sixers and Perth Scorchers at North Sydney Oval, Sydney." + } + }, + { + "id": "IBMS_55161806", + "startMs": 1765567800000, + "endMs": 1765577100000, + "live": false, + "nzBsaRatingString": "G", + "programme": { + "id": "mac_11839543", + "title": "PSA Hong Kong Open: F", + "synopsis": "Coverage of the Milwaukee Hong Kong Squash Open 2025 Finals, held in Hong Kong, China." + } + }, + { + "id": "IBMS_55161808", + "startMs": 1765577100000, + "endMs": 1765588500000, + "live": false, + "nzBsaRatingString": "G", + "programme": { + "id": "mac_11764227", + "title": "Ultimate Pool: Mixed Pairs Week 6", + "synopsis": "Ultimate Pool: Mixed Pairs Week 6. Each match is first to four frames, but with a 20-minute match-clock. If a player does not reach four frames before the time expires, the score stands as the result. Action from Newcastle-under-Lyme, England." + } + }, + { + "id": "IBMS_55161810", + "startMs": 1765588500000, + "endMs": 1765592100000, + "live": false, + "nzBsaRatingString": "G", + "programme": { + "id": "mac_11809296", + "title": "WSX: Swedish GP R4 Hls", + "synopsis": "Highlights of the World Supercross Championship, Swedish GP Round 4. From 3Arena, Stockholm, Sweden." + } + }, + { + "id": "IBMS_55161812", + "startMs": 1765592100000, + "endMs": 1765595700000, + "live": false, + "nzBsaRatingString": "G", + "programme": { + "id": "mac_11855008", + "title": "Golf: Women's Open Official Film", + "synopsis": "The 2025 AIG Women’s Open unfolded at Royal Porthcawl Golf Club in Wales, a course that demanded precision and resilience. This official film brings you every thrilling moment from a championship rich in tradition and excellence." + } + }, + { + "id": "IBMS_55161815", + "startMs": 1765595700000, + "endMs": 1765596600000, + "live": false, + "nzBsaRatingString": "G", + "programme": { + "id": "mac_11818464", + "title": "WBBL: Sixers v Scorchers Challenger Hls", + "synopsis": "Highlights from the Challenger of the Women's Big Bash League between Sydney Sixers and Perth Scorchers at North Sydney Oval, Sydney." + } + }, + { + "id": "IBMS_55161816", + "startMs": 1765596600000, + "endMs": 1765597500000, + "live": false, + "nzBsaRatingString": "G", + "programme": { + "id": "mac_11818461", + "title": "WBBL: Scorchers v Stars Knockout Hls", + "synopsis": "Highlights from the Knockout of the Women's Big Bash League between Perth Scorchers and Melbourne Stars at the WACA Ground, Perth." + } + }, + { + "id": "IBMS_55161818", + "startMs": 1765597500000, + "endMs": 1765598400000, + "live": false, + "nzBsaRatingString": "G", + "programme": { + "id": "mac_11844088", + "title": "India v South Africa: 2nd T20 Hls", + "synopsis": "Highlights of the second T20 International between India and South Africa at Maharaja Yadavindra Singh International Cricket Stadium, Mullanpur, New Chandigarh." + } + }, + { + "id": "IBMS_55367613", + "startMs": 1765598400000, + "endMs": 1765607400000, + "live": false, + "nzBsaRatingString": "G", + "programme": { + "id": "mac_11853384", + "title": "AFLW: GF: NTH v BRL", + "synopsis": "Coverage of AFL Women's Grand Final as North Melbourne Tasmanian Kangaroos take on Brisbane Lions at IKON Park, Melbourne, Wurundjeri." + } + }, + { + "id": "IBMS_55075205", + "startMs": 1765607400000, + "endMs": 1765631400000, + "live": false, + "nzBsaRatingString": "G", + "programme": { + "id": "mac_11786467", + "title": "T100 Triathlon: Qatar", + "synopsis": "Coverage of the T100 Triathlon World Championship Final 2025, from Doha, Qatar." + } + } + ] + } + }, + { + "id": "0026", + "title": "ESPN ", + "number": 60, + "tileImage": { + "uri": "https://images.skyone.co.nz/contentful/dcojl03mw8gy/2fIOtL3s8jEH8xBYOrStcX/0073e945ae106236a808851818d2e723/ESPN.png" + }, + "slotsForDay": { + "slots": [ + { + "id": "IBMS_55246086", + "startMs": 1765536900000, + "endMs": 1765544400000, + "live": true, + "nzBsaRatingString": "G", + "programme": { + "id": "mac_ptc1229850059", + "title": "NBL: Wildcats v Kings", + "synopsis": "Wildcats v Kings." + } + }, + { + "id": "IBMS_55246088", + "startMs": 1765544400000, + "endMs": 1765551600000, + "live": true, + "nzBsaRatingString": "G", + "programme": { + "id": "mac_ptc1216175993", + "title": "Get Up", + "synopsis": "Host Mike Greenberg brings fans up to speed every morning and a rotating panel of guests deliver expert analysis on all the latest from the world of sports." + } + }, + { + "id": "IBMS_55246089", + "startMs": 1765551600000, + "endMs": 1765558800000, + "live": true, + "nzBsaRatingString": "G", + "programme": { + "id": "mac_ptc648440687", + "title": "First Take", + "synopsis": "Stephen A. Smith debates the hottest stories in sports with a rotating roster of analysts, insiders and celebrity guests." + } + }, + { + "id": "IBMS_55246090", + "startMs": 1765558800000, + "endMs": 1765566000000, + "live": true, + "nzBsaRatingString": "G", + "programme": { + "id": "mac_ptc1349265646", + "title": "The Pat McAfee Show", + "synopsis": "Pat McAfee brings his humor and candor to the progrum, where he and his cast of characters unpack the day's top stories and interview the biggest names in sports." + } + }, + { + "id": "IBMS_55246091", + "startMs": 1765566000000, + "endMs": 1765569600000, + "live": true, + "nzBsaRatingString": "G", + "programme": { + "id": "mac_ptc1263802908", + "title": "SportsCenter", + "synopsis": "ESPN's must-see news show, featuring highlights and analysis of the biggest stories in sports. Da-Da-Da, Da-Da-Da." + } + }, + { + "id": "IBMS_55246092", + "startMs": 1765569600000, + "endMs": 1765573200000, + "live": true, + "nzBsaRatingString": "G", + "programme": { + "id": "mac_ptc1664818491", + "title": "NBA Today", + "synopsis": "Get in-depth, comprehensive coverage and latest buzz from NBA experts and insiders from every corner of the association." + } + }, + { + "id": "IBMS_55246093", + "startMs": 1765573200000, + "endMs": 1765576800000, + "live": true, + "nzBsaRatingString": "G", + "programme": { + "id": "mac_ptc796155502", + "title": "NFL Live", + "synopsis": "Laura Rutledge takes the helm of this weekday show featuring the likes of Marcus Spears, Dan Orlovsky, Ryan Clark, Mina Kimes, Field Yates, and Adam Schefter." + } + }, + { + "id": "IBMS_55246094", + "startMs": 1765576800000, + "endMs": 1765578600000, + "live": false, + "nzBsaRatingString": "G", + "programme": { + "id": "mac_ptc1388192536", + "title": "MDS 120 Morocco", + "synopsis": "Top athletes compete at the world's most prestigious marathons, like the World Marathon Majors, world championships, and the Olympic Games." + } + }, + { + "id": "IBMS_55246095", + "startMs": 1765578600000, + "endMs": 1765580400000, + "live": false, + "nzBsaRatingString": "G", + "programme": { + "id": "mac_ptc1103198071", + "title": "Pardon the Interruption", + "synopsis": "Tony Kornheiser and Mike Wilbon run down the day's hot topics and key events in a fast-paced format delivered with their distinctive style." + } + }, + { + "id": "IBMS_55246096", + "startMs": 1765580400000, + "endMs": 1765582200000, + "live": true, + "nzBsaRatingString": "G", + "programme": { + "id": "mac_ptc1552954864", + "title": "SportsCenter", + "synopsis": "ESPN's must-see news show, featuring highlights and analysis of the biggest stories in sports. Da-Da-Da, Da-Da-Da." + } + }, + { + "id": "IBMS_55246097", + "startMs": 1765582200000, + "endMs": 1765584000000, + "live": false, + "nzBsaRatingString": "G", + "programme": { + "id": "mac_ptc228984480", + "title": "Nothing But Net", + "synopsis": "Australia/NZ: ESPN's resident basketball insider Kane Pitman previews the upcoming NBA and NBL action." + } + }, + { + "id": "IBMS_55246098", + "startMs": 1765584000000, + "endMs": 1765593000000, + "live": true, + "nzBsaRatingString": "G", + "programme": { + "id": "mac_ptc1077137438", + "title": "NBA: Pistons v Hawks", + "synopsis": "Pistons v Hawks: Aussie Dyson Daniels and the Atlanta Hawks travel to Detroit to take on the Pistons." + } + }, + { + "id": "IBMS_55336852", + "startMs": 1765593000000, + "endMs": 1765603500000, + "live": true, + "nzBsaRatingString": "G", + "programme": { + "id": "mac_ptc474144239", + "title": "FCS Montana State v Stephen F. Austin", + "synopsis": "Montana State v Stephen F. Austin Quarterfinal: Built on grit, fueled by heart - delivering hard-hitting action and an underdog mentality every weekend." + } + }, + { + "id": "IBMS_55246101", + "startMs": 1765603500000, + "endMs": 1765605600000, + "live": true, + "nzBsaRatingString": "G", + "programme": { + "id": "mac_ptc177974692", + "title": "SportsCenter", + "synopsis": "ESPN's must-see news show, featuring highlights and analysis of the biggest stories in sports. Da-Da-Da, Da-Da-Da." + } + }, + { + "id": "IBMS_55246102", + "startMs": 1765605600000, + "endMs": 1765607400000, + "live": false, + "nzBsaRatingString": "G", + "programme": { + "id": "mac_ptc498298925", + "title": "Nothing But Net", + "synopsis": "Weekend Edition: ESPN's resident basketball insider Kane Pitman previews the upcoming NBA and NBL action." + } + }, + { + "id": "IBMS_55246103", + "startMs": 1765607400000, + "endMs": 1765614600000, + "live": true, + "nzBsaRatingString": "G", + "programme": { + "id": "mac_ptc1338313847", + "title": "NBL", + "synopsis": "Taipans v JackJumpers." + } + }, + { + "id": "IBMS_55246104", + "startMs": 1765614600000, + "endMs": 1765616400000, + "live": true, + "nzBsaRatingString": "G", + "programme": { + "id": "mac_ptc19813990", + "title": "NBL Switch", + "synopsis": "A laid-back, light-hearted yet punchy show, dishing up a little bit of everything for every basketball fan; the latest hoops news from around the world, key storylines, features, interviews and ple..." + } + }, + { + "id": "IBMS_55246105", + "startMs": 1765616400000, + "endMs": 1765623600000, + "live": true, + "nzBsaRatingString": "G", + "programme": { + "id": "mac_ptc582610950", + "title": "NBL: Phoenix v Breakers", + "synopsis": "Phoenix v Breakers." + } + }, + { + "id": "IBMS_55258105", + "startMs": 1765623600000, + "endMs": 1765630800000, + "live": false, + "nzBsaRatingString": "G", + "programme": { + "id": "mac_ptc1669138457", + "title": "NBA", + "synopsis": "Pistons v Hawks: Aussie Dyson Daniels and the Atlanta Hawks travel to Detroit to take on the Pistons." + } + } + ] + } + }, + { + "id": "0082", + "title": "ESPN2", + "number": 61, + "tileImage": { + "uri": "https://images.skyone.co.nz/contentful/dcojl03mw8gy/3fTSsxpHHLRnEtSs4eTKtO/1ffb263a0e8e663feac0e11cda63c638/ESPN2.png" + }, + "slotsForDay": { + "slots": [ + { + "id": "IBMS_55246140", + "startMs": 1765533600000, + "endMs": 1765540800000, + "live": false, + "nzBsaRatingString": "G", + "programme": { + "id": "mac_ptc383160232", + "title": "NBA", + "synopsis": "Bucks v Celtics: The Boston Celtics try to continue a five-game win streak when they visit the Milwaukee Bucks." + } + }, + { + "id": "IBMS_55246141", + "startMs": 1765540800000, + "endMs": 1765549800000, + "live": false, + "nzBsaRatingString": "G", + "programme": { + "id": "mac_ptc1546481101", + "title": "NFL", + "synopsis": "Buccaneers v Falcons: The Atlanta Falcons visit the Tampa Bay Buccaneers in an NFC South matchup." + } + }, + { + "id": "IBMS_55246142", + "startMs": 1765549800000, + "endMs": 1765551600000, + "live": false, + "nzBsaRatingString": "G", + "programme": { + "id": "mac_ptc551172989", + "title": "SC: NFL Blitz", + "synopsis": "NFL Blitz features action packed highlights and news around the NFL." + } + }, + { + "id": "IBMS_55246143", + "startMs": 1765551600000, + "endMs": 1765553400000, + "live": false, + "nzBsaRatingString": "G", + "programme": { + "id": "mac_ptc546077606", + "title": "NFL Films", + "synopsis": "Jason Garrett's QB Quest, Part 2: Jason Garrett goes on a quest for the ultimate quarterback." + } + }, + { + "id": "IBMS_55246144", + "startMs": 1765553400000, + "endMs": 1765555200000, + "live": false, + "nzBsaRatingString": "G", + "programme": { + "id": "mac_ptc1020991178", + "title": "NBA Mini", + "synopsis": "Bucks v Celtics: Catch up on today's NBA action with a condensed, highlight driven version of the game." + } + }, + { + "id": "IBMS_55246145", + "startMs": 1765555200000, + "endMs": 1765557000000, + "live": false, + "nzBsaRatingString": "G", + "programme": { + "id": "mac_ptc94641826", + "title": "NFL Mini", + "synopsis": "Buccaneers v Falcons: NFL Minis are shortened, highlight driven recaps of NFL action!" + } + }, + { + "id": "IBMS_55246146", + "startMs": 1765557000000, + "endMs": 1765558800000, + "live": false, + "nzBsaRatingString": "G", + "programme": { + "id": "mac_ptc2089662519", + "title": "SC: NFL Blitz", + "synopsis": "NFL Blitz features action packed highlights and news around the NFL." + } + }, + { + "id": "IBMS_55246147", + "startMs": 1765558800000, + "endMs": 1765566000000, + "live": true, + "nzBsaRatingString": "G", + "programme": { + "id": "mac_ptc89682096", + "title": "NCAA Women's Volleyball Championship: Texas v Indiana Regional", + "synopsis": "Texas v Indiana Regional Semifinal: Do you dig fast-paced action and intense rallies? Watch today's top college players battle it out for school pride and team glory." + } + }, + { + "id": "IBMS_55246148", + "startMs": 1765566000000, + "endMs": 1765567800000, + "live": true, + "nzBsaRatingString": "G", + "programme": { + "id": "mac_ptc1608393661", + "title": "NCAA Women's Volleyball Studio", + "synopsis": "Live: NCAA Women's Volleyball Studio" + } + }, + { + "id": "IBMS_55246149", + "startMs": 1765567800000, + "endMs": 1765575000000, + "live": true, + "nzBsaRatingString": "G", + "programme": { + "id": "mac_ptc973285534", + "title": "NCAA Women's Volleyball Championship: Stanford v Wisconsin Regional", + "synopsis": "Stanford v Wisconsin Regional Semifinal: Do you dig fast-paced action and intense rallies? Watch today's top college players battle it out for school pride and team glory." + } + }, + { + "id": "IBMS_55246150", + "startMs": 1765575000000, + "endMs": 1765578600000, + "live": true, + "nzBsaRatingString": "G", + "programme": { + "id": "mac_ptc1906015688", + "title": "SportsCenter", + "synopsis": "ESPN's must-see news show, featuring highlights and analysis of the biggest stories in sports. Da-Da-Da, Da-Da-Da." + } + }, + { + "id": "IBMS_55246151", + "startMs": 1765578600000, + "endMs": 1765580400000, + "live": false, + "nzBsaRatingString": "G", + "programme": { + "id": "mac_ptc1480527415", + "title": "NBA Action", + "synopsis": "A news program with highlights from the most important basketball league on the planet. All the stars, all the games, and everything you need to know about the NBA." + } + }, + { + "id": "IBMS_55246152", + "startMs": 1765580400000, + "endMs": 1765588200000, + "live": true, + "nzBsaRatingString": "G", + "programme": { + "id": "mac_ptc393264937", + "title": "NCAA Men's College Cup: Furman v Washington", + "synopsis": "Furman v Washington Semifinal #1: The race for the College Cup is on! See which men's programs advance in the NCAA postseason tournament." + } + }, + { + "id": "IBMS_55246153", + "startMs": 1765588200000, + "endMs": 1765589400000, + "live": true, + "nzBsaRatingString": "G", + "programme": { + "id": "mac_ptc684188995", + "title": "NCAA Men's College Cup", + "synopsis": "Studio Report." + } + }, + { + "id": "IBMS_55246154", + "startMs": 1765589400000, + "endMs": 1765598700000, + "live": true, + "nzBsaRatingString": "G", + "programme": { + "id": "mac_ptc675915854", + "title": "NCAA Men's College Cup: NC State v Saint Louis", + "synopsis": "NC State v Saint Louis Semifinal #2: The race for the College Cup is on! See which men's programs advance in the NCAA postseason tournament." + } + }, + { + "id": "IBMS_55281186", + "startMs": 1765598700000, + "endMs": 1765599000000, + "live": false, + "nzBsaRatingString": "G", + "programme": { + "id": "mac_ptc316572854", + "title": "The Herbies", + "synopsis": "Kirk Herbstreit highlights the best of the college gridiron season, honouring the best fans, coaches, players and even mascots of the season." + } + }, + { + "id": "IBMS_55246155", + "startMs": 1765599000000, + "endMs": 1765600200000, + "live": false, + "nzBsaRatingString": "G", + "programme": { + "id": "mac_ptc2037153925", + "title": "SC: NFL Blitz", + "synopsis": "NFL Blitz features action packed highlights and news around the NFL." + } + }, + { + "id": "IBMS_55326974", + "startMs": 1765600200000, + "endMs": 1765602000000, + "live": false, + "nzBsaRatingString": "M", + "programme": { + "id": "mac_ptc1944666598", + "title": "UFC Live", + "synopsis": "Royval vs. Kape: Produced live on location of each UFC event, UFC Live presents fans with exclusive takes on the biggest news, stars, and stories." + } + }, + { + "id": "IBMS_55246156", + "startMs": 1765602000000, + "endMs": 1765609200000, + "live": false, + "nzBsaRatingString": "G", + "programme": { + "id": "mac_ptc1447793493", + "title": "NCAA Men's College Cup", + "synopsis": "Furman v Washington Semifinal #1: The race for the College Cup is on! See which men's programs advance in the NCAA postseason tournament." + } + }, + { + "id": "IBMS_55246157", + "startMs": 1765609200000, + "endMs": 1765611000000, + "live": false, + "nzBsaRatingString": "G", + "programme": { + "id": "mac_ptc4091830", + "title": "NBA Mini", + "synopsis": "Pistons v Hawks: Catch up on today's NBA action with a condensed, highlight driven version of the game." + } + }, + { + "id": "IBMS_55246158", + "startMs": 1765611000000, + "endMs": 1765612800000, + "live": false, + "nzBsaRatingString": "G", + "programme": { + "id": "mac_ptc1099255237", + "title": "ESPN FC", + "synopsis": "All the latest on international football. Features, exclusive interviews, debates and the must-see moments from the world's top football leagues and competitions." + } + }, + { + "id": "IBMS_55246159", + "startMs": 1765612800000, + "endMs": 1765620000000, + "live": true, + "nzBsaRatingString": "G", + "programme": { + "id": "mac_ptc795453421", + "title": "WNBL: Venom v Spirit", + "synopsis": "Venom v Spirit." + } + }, + { + "id": "IBMS_55246160", + "startMs": 1765620000000, + "endMs": 1765627200000, + "live": false, + "nzBsaRatingString": "G", + "programme": { + "id": "mac_ptc1169597318", + "title": "NCAA Men's College Cup", + "synopsis": "NC State v Saint Louis Semifinal #2: The race for the College Cup is on! See which men's programs advance in the NCAA postseason tournament." + } + } + ] + } + }, + { + "id": "0093", + "title": "Trackside 1", + "number": 62, + "tileImage": { + "uri": "https://images.skyone.co.nz/contentful/dcojl03mw8gy/jlO8SF7pOUCKvLxFgGeEp/23f4080bb6edf772b1059f8da92ed6ea/062_1920x1080.png" + }, + "slotsForDay": { + "slots": [ + { + "id": "IBMS_55327588", + "startMs": 1765537200000, + "endMs": 1765540800000, + "live": false, + "nzBsaRatingString": "G", + "programme": { + "id": "mac_ptc1970081311", + "title": "Trackside 1 LIVE - AUS/INTL", + "synopsis": "Live Racing from Australia & UK. Bet online or instore with TAB and Betcha." + } + }, + { + "id": "IBMS_55327589", + "startMs": 1765540800000, + "endMs": 1765544400000, + "live": false, + "nzBsaRatingString": "G", + "programme": { + "id": "mac_ptc1369783280", + "title": "Trackside 1 LIVE - AUS/INTL", + "synopsis": "Live Racing from Australia & UK. Bet online or instore with TAB and Betcha." + } + }, + { + "id": "IBMS_55327590", + "startMs": 1765544400000, + "endMs": 1765550700000, + "live": false, + "nzBsaRatingString": "G", + "programme": { + "id": "mac_ptc551014767", + "title": "Trackside 1 LIVE - AUS/INTL", + "synopsis": "Live Racing from Australia & UK. Bet online or instore with TAB and Betcha." + } + }, + { + "id": "IBMS_55327591", + "startMs": 1765550700000, + "endMs": 1765552200000, + "live": false, + "nzBsaRatingString": "G", + "programme": { + "id": "mac_ptc1396063178", + "title": "Racing Replay Manawatu", + "synopsis": "Replay from Thursday's Manawatu harness meeting - 11 December." + } + }, + { + "id": "IBMS_55327592", + "startMs": 1765552200000, + "endMs": 1765553400000, + "live": false, + "nzBsaRatingString": "G", + "programme": { + "id": "mac_ptc629513318", + "title": "Racing Replay Ellerslie", + "synopsis": "Replay from Thursday's Ellerslie gallops meeting - 11 December." + } + }, + { + "id": "IBMS_55327593", + "startMs": 1765553400000, + "endMs": 1765557000000, + "live": false, + "nzBsaRatingString": "G", + "programme": { + "id": "mac_ptc204363197", + "title": "The Leg Up", + "synopsis": "The Leg Up lads preview the weekend ahead of racing." + } + }, + { + "id": "IBMS_55327594", + "startMs": 1765557000000, + "endMs": 1765558800000, + "live": false, + "nzBsaRatingString": "G", + "programme": { + "id": "mac_ptc2095277051", + "title": "The Playbook", + "synopsis": "Bernadette Cooper, Michael Maxworthy & Nicole Thomas cover upcoming Queensland racing." + } + }, + { + "id": "IBMS_55327595", + "startMs": 1765558800000, + "endMs": 1765562400000, + "live": false, + "nzBsaRatingString": "G", + "programme": { + "id": "mac_ptc217722724", + "title": "The Form", + "synopsis": "The Form team provide an in-depth look at the thoroughbred racing weekend ahead, including feature race previews, best bets and blackbookers." + } + }, + { + "id": "IBMS_55327596", + "startMs": 1765562400000, + "endMs": 1765566000000, + "live": false, + "nzBsaRatingString": "G", + "programme": { + "id": "mac_ptc743518606", + "title": "Formline", + "synopsis": "Host Greg Radley is joined by form experts Ron Dufficy and Brad Gray, for a comprehensive preview of NSW Saturday thoroughbred racing" + } + }, + { + "id": "IBMS_55327597", + "startMs": 1765566000000, + "endMs": 1765569600000, + "live": false, + "nzBsaRatingString": "G", + "programme": { + "id": "mac_ptc447327132", + "title": "The Leg Up", + "synopsis": "The Leg Up lads preview the weekend ahead of racing." + } + }, + { + "id": "IBMS_55327598", + "startMs": 1765569600000, + "endMs": 1765575000000, + "live": false, + "nzBsaRatingString": "G", + "programme": { + "id": "mac_ptc1402643921", + "title": "The Mail Run", + "synopsis": "LIVE: Start your racing Saturday with the Mail Run team for the latest updates from trainers, jockeys and the TAB. Also available on Sport Nation Radio." + } + }, + { + "id": "IBMS_55327599", + "startMs": 1765575000000, + "endMs": 1765578600000, + "live": false, + "nzBsaRatingString": "G", + "programme": { + "id": "mac_ptc1436101541", + "title": "The Form", + "synopsis": "The Form team provide an in-depth look at the thoroughbred racing weekend ahead, including feature race previews, best bets and blackbookers." + } + }, + { + "id": "IBMS_55327600", + "startMs": 1765578600000, + "endMs": 1765580400000, + "live": false, + "nzBsaRatingString": "G", + "programme": { + "id": "mac_ptc499692846", + "title": "Big Saturday", + "synopsis": "LIVE: Expert analysis and insight from our New Zealand thoroughbred venues and a selection of the best Australian Racing. Every Saturday is Big Saturday!" + } + }, + { + "id": "IBMS_55327601", + "startMs": 1765580400000, + "endMs": 1765587600000, + "live": false, + "nzBsaRatingString": "G", + "programme": { + "id": "mac_ptc1694043658", + "title": "Big Saturday", + "synopsis": "LIVE: Expert analysis and insight from our New Zealand thoroughbred venues and a selection of the best Australian Racing. Every Saturday is Big Saturday!" + } + }, + { + "id": "IBMS_55327602", + "startMs": 1765587600000, + "endMs": 1765594800000, + "live": false, + "nzBsaRatingString": "G", + "programme": { + "id": "mac_ptc1721872582", + "title": "Big Saturday", + "synopsis": "LIVE: Expert analysis and insight from our New Zealand thoroughbred venues and a selection of the best Australian Racing. Every Saturday is Big Saturday!" + } + }, + { + "id": "IBMS_55327603", + "startMs": 1765594800000, + "endMs": 1765598400000, + "live": false, + "nzBsaRatingString": "G", + "programme": { + "id": "mac_ptc994071823", + "title": "Big Saturday", + "synopsis": "LIVE: Expert analysis and insight from our New Zealand thoroughbred venues and a selection of the best Australian Racing. Every Saturday is Big Saturday!" + } + }, + { + "id": "IBMS_55327604", + "startMs": 1765598400000, + "endMs": 1765602000000, + "live": false, + "nzBsaRatingString": "G", + "programme": { + "id": "mac_ptc123398263", + "title": "Big Saturday", + "synopsis": "LIVE: Expert analysis and insight from our New Zealand thoroughbred venues and a selection of the best Australian Racing. Every Saturday is Big Saturday!" + } + }, + { + "id": "IBMS_55327605", + "startMs": 1765602000000, + "endMs": 1765605600000, + "live": false, + "nzBsaRatingString": "G", + "programme": { + "id": "mac_ptc373749215", + "title": "Big Saturday", + "synopsis": "LIVE: Expert analysis and insight from our New Zealand thoroughbred venues and a selection of the best Australian Racing. Every Saturday is Big Saturday!" + } + }, + { + "id": "IBMS_55327606", + "startMs": 1765605600000, + "endMs": 1765609200000, + "live": false, + "nzBsaRatingString": "G", + "programme": { + "id": "mac_ptc2112781978", + "title": "Big Saturday", + "synopsis": "LIVE: Expert analysis and insight from our New Zealand thoroughbred venues and a selection of the best Australian Racing. Every Saturday is Big Saturday!" + } + }, + { + "id": "IBMS_55327607", + "startMs": 1765609200000, + "endMs": 1765612800000, + "live": false, + "nzBsaRatingString": "G", + "programme": { + "id": "mac_ptc1459787230", + "title": "Trackside 1 LIVE - AUS", + "synopsis": "Live Racing from Australia. Bet online or instore with TAB and Betcha." + } + }, + { + "id": "IBMS_55327608", + "startMs": 1765612800000, + "endMs": 1765616400000, + "live": false, + "nzBsaRatingString": "G", + "programme": { + "id": "mac_ptc1055236710", + "title": "Trackside 1 LIVE - AUS", + "synopsis": "Live Racing from Australia. Bet online or instore with TAB and Betcha." + } + }, + { + "id": "IBMS_55327609", + "startMs": 1765616400000, + "endMs": 1765620000000, + "live": false, + "nzBsaRatingString": "G", + "programme": { + "id": "mac_ptc812546674", + "title": "Trackside 1 LIVE - AUS", + "synopsis": "Live Racing from Australia. Bet online or instore with TAB and Betcha." + } + }, + { + "id": "IBMS_55327610", + "startMs": 1765620000000, + "endMs": 1765623600000, + "live": false, + "nzBsaRatingString": "G", + "programme": { + "id": "mac_ptc247032607", + "title": "Trackside 1 LIVE - AUS", + "synopsis": "Live Racing from Australia. Bet online or instore with TAB and Betcha." + } + }, + { + "id": "IBMS_55327611", + "startMs": 1765623600000, + "endMs": 1765627200000, + "live": false, + "nzBsaRatingString": "G", + "programme": { + "id": "mac_ptc1622142882", + "title": "Trackside 1 LIVE - AUS/INTL", + "synopsis": "Live Racing from Australia & UK. Bet online or instore with TAB and Betcha." + } + } + ] + } + }, + { + "id": "0094", + "title": "Trackside 2", + "number": 63, + "tileImage": { + "uri": "https://images.skyone.co.nz/contentful/dcojl03mw8gy/2yrL7jlBD9zNmt8u7UX5hy/b854616c5152c3d26a52a6def8a836b5/063_1920x1080.png" + }, + "slotsForDay": { + "slots": [ + { + "id": "IBMS_55335868", + "startMs": 1765537200000, + "endMs": 1765541700000, + "live": false, + "nzBsaRatingString": "G", + "programme": { + "id": "mac_ptc1459583625", + "title": "Trackside 2 LIVE - AUS", + "synopsis": "Live Racing coverage from Australia. Bet online or instore with TAB and Betcha." + } + }, + { + "id": "IBMS_55335869", + "startMs": 1765541700000, + "endMs": 1765546200000, + "live": false, + "nzBsaRatingString": "G", + "programme": { + "id": "mac_ptc1867256567", + "title": "Harness Trials", + "synopsis": "Harness trials from Ashburton, 1 December & Rangiora, 2 December." + } + }, + { + "id": "IBMS_55335870", + "startMs": 1765546200000, + "endMs": 1765548000000, + "live": false, + "nzBsaRatingString": "G", + "programme": { + "id": "mac_ptc2089053740", + "title": "Thoroughbred Trials", + "synopsis": "Thoroughbred Trials from Woodville - 2 December." + } + }, + { + "id": "IBMS_55335871", + "startMs": 1765548000000, + "endMs": 1765549800000, + "live": false, + "nzBsaRatingString": "G", + "programme": { + "id": "mac_ptc1385540365", + "title": "Racing Replay Tauherenikau", + "synopsis": "Replay from Wednesday's Tauherenikau gallops meeting - 10 December." + } + }, + { + "id": "IBMS_55335872", + "startMs": 1765549800000, + "endMs": 1765551600000, + "live": false, + "nzBsaRatingString": "G", + "programme": { + "id": "mac_ptc971838753", + "title": "The Playbook", + "synopsis": "Host Greg Radley is joined by form experts Ron Dufficy and Brad Gray, for a comprehensive preview of NSW Saturday thoroughbred racing." + } + }, + { + "id": "IBMS_55335873", + "startMs": 1765551600000, + "endMs": 1765555200000, + "live": false, + "nzBsaRatingString": "G", + "programme": { + "id": "mac_ptc2026618863", + "title": "Formline", + "synopsis": "Host Greg Radley is joined by Ron Dufficy and a team of NSW experts for a thorough preview of Saturday racing." + } + }, + { + "id": "IBMS_55335874", + "startMs": 1765555200000, + "endMs": 1765558800000, + "live": false, + "nzBsaRatingString": "G", + "programme": { + "id": "mac_ptc1424790641", + "title": "The Form", + "synopsis": "Join The Form team for an in-depth preview of this week's Gallops & Harness, plus get the best bets ahead of the weekend." + } + }, + { + "id": "IBMS_55335875", + "startMs": 1765558800000, + "endMs": 1765562400000, + "live": false, + "nzBsaRatingString": "G", + "programme": { + "id": "mac_ptc1865406714", + "title": "The Leg Up", + "synopsis": "The Leg Up lads preview the weekend ahead of racing." + } + }, + { + "id": "IBMS_55335876", + "startMs": 1765562400000, + "endMs": 1765569600000, + "live": false, + "nzBsaRatingString": "G", + "programme": { + "id": "mac_ptc1453482397", + "title": "Trackside 2 LIVE - USA", + "synopsis": "Live coverage from North America. Bet online or instore with TAB and Betcha." + } + }, + { + "id": "IBMS_55335877", + "startMs": 1765569600000, + "endMs": 1765576800000, + "live": false, + "nzBsaRatingString": "G", + "programme": { + "id": "mac_ptc1197973842", + "title": "Trackside 2 LIVE - USA", + "synopsis": "Live coverage from North America. Bet online or instore with TAB and Betcha." + } + }, + { + "id": "IBMS_55335878", + "startMs": 1765576800000, + "endMs": 1765584000000, + "live": false, + "nzBsaRatingString": "G", + "programme": { + "id": "mac_ptc1884951986", + "title": "Trackside 2 LIVE - USA", + "synopsis": "Live coverage from North America. Bet online or instore with TAB and Betcha." + } + }, + { + "id": "IBMS_55335879", + "startMs": 1765584000000, + "endMs": 1765591200000, + "live": false, + "nzBsaRatingString": "G", + "programme": { + "id": "mac_ptc895759790", + "title": "Trackside 2 LIVE - AUS", + "synopsis": "Live Racing coverage from Australia. Bet online or instore with TAB and Betcha." + } + }, + { + "id": "IBMS_55335880", + "startMs": 1765591200000, + "endMs": 1765598400000, + "live": false, + "nzBsaRatingString": "G", + "programme": { + "id": "mac_ptc634248950", + "title": "Trackside 2 LIVE - AUS", + "synopsis": "Live Racing coverage from Australia. Bet online or instore with TAB and Betcha." + } + }, + { + "id": "IBMS_55335881", + "startMs": 1765598400000, + "endMs": 1765605600000, + "live": false, + "nzBsaRatingString": "G", + "programme": { + "id": "mac_ptc1892850306", + "title": "Trackside 2 LIVE - AUS", + "synopsis": "Live Racing coverage from Australia. Bet online or instore with TAB and Betcha." + } + }, + { + "id": "IBMS_55335882", + "startMs": 1765605600000, + "endMs": 1765612800000, + "live": false, + "nzBsaRatingString": "G", + "programme": { + "id": "mac_ptc1723170876", + "title": "Trackside 2 LIVE - AUS", + "synopsis": "Live Racing coverage from Australia. Bet online or instore with TAB and Betcha." + } + }, + { + "id": "IBMS_55335883", + "startMs": 1765612800000, + "endMs": 1765623600000, + "live": false, + "nzBsaRatingString": "G", + "programme": { + "id": "mac_ptc1412779693", + "title": "Trackside 2 LIVE - AUS", + "synopsis": "Live Racing coverage from Australia. Bet online or instore with TAB and Betcha." + } + }, + { + "id": "IBMS_55335884", + "startMs": 1765623600000, + "endMs": 1765624500000, + "live": false, + "nzBsaRatingString": "G", + "programme": { + "id": "mac_ptc1045312695", + "title": "Trackside 2 LIVE - AUS", + "synopsis": "Live Racing coverage from Australia. Bet online or instore with TAB and Betcha." + } + } + ] + } + }, + { + "id": "SARA", + "title": "Sky Arena", + "number": 65, + "tileImage": { + "uri": "https://images.skyone.co.nz/contentful/dcojl03mw8gy/4EVNBA6670IesZJJRTF5NV/32f19f54a9270f010a72df89bc5036f1/SKY_ARENA.png" + }, + "slotsForDay": { + "slots": [ + { + "id": "IBMS_55338087", + "startMs": 1765515600000, + "endMs": 1765558800000, + "live": false, + "nzBsaRatingString": "M", + "programme": { + "id": "mac_11836097", + "title": "Jan 25th: UFC 324" + } + }, + { + "id": "IBMS_55337837", + "startMs": 1765558800000, + "endMs": 1765602000000, + "live": false, + "nzBsaRatingString": "M", + "programme": { + "id": "mac_11836097", + "title": "Jan 25th: UFC 324" + } + }, + { + "id": "IBMS_55338091", + "startMs": 1765602000000, + "endMs": 1765645200000, + "live": false, + "nzBsaRatingString": "M", + "programme": { + "id": "mac_11836097", + "title": "Jan 25th: UFC 324" + } + } + ] + } + }, + { + "id": "DISC", + "title": "Discovery", + "number": 70, + "tileImage": { + "uri": "https://images.skyone.co.nz/contentful/dcojl03mw8gy/61RGM4MHjXJYN7S4CvbRQH/ce7ad024cd2892a15e7124ad652b6a64/Discovery.png" + }, + "slotsForDay": { + "slots": [ + { + "id": "IBMS_55226590", + "startMs": 1765534800000, + "endMs": 1765540800000, + "live": false, + "nzBsaRatingString": "M", + "programme": { + "id": "mac_11760070", + "title": "Naked And Afraid: Last One Standing", + "synopsis": "Knives Out On Day One: A pair of competitors are sent home on day one after a blade challenge. Survivalists are shocked to learn that sharing is forbidden. S2 E1" + } + }, + { + "id": "IBMS_55226591", + "startMs": 1765540800000, + "endMs": 1765543800000, + "live": false, + "nzBsaRatingString": "M", + "programme": { + "id": "mac_11674301", + "title": "The Garden: Commune Or Cult", + "synopsis": "A Tale Of Two Tylers: Tyler M. is voted in as a permanent member. But setting his sights on leading the entire commune - upsetting members and directly confronting Tyler C. S1 E4" + } + }, + { + "id": "IBMS_55226592", + "startMs": 1765543800000, + "endMs": 1765546800000, + "live": false, + "nzBsaRatingString": "M", + "programme": { + "id": "mac_11774476", + "title": "The Last Woodsmen", + "synopsis": "Stranded: Jared needs to move a million dollars worth of wood down a treacherous river to market but can't find anyone brave enough to lead the journey. S1 E5" + } + }, + { + "id": "IBMS_55226593", + "startMs": 1765546800000, + "endMs": 1765549800000, + "live": false, + "nzBsaRatingString": "M", + "programme": { + "id": "mac_11850129", + "title": "In The Eye Of The Storm", + "synopsis": "Tornado Torrent 2025: In March 2025, a train of supercells creates a record 889 tornadoes east of Tornado Alley, along with hailstorms, and kills at least 42 people. S3 E1" + } + }, + { + "id": "IBMS_55226594", + "startMs": 1765549800000, + "endMs": 1765552800000, + "live": false, + "nzBsaRatingString": "PG", + "programme": { + "id": "mac_11764562", + "title": "Outback Opal Hunters", + "synopsis": "The Good, The Bad And The Overcooked: The Cheals hit a massive pocket of plate sized opal in their open cut mine. Brutal Outback temperatures cripple Cozza with severe heat stroke. S12 E11" + } + }, + { + "id": "IBMS_55226595", + "startMs": 1765552800000, + "endMs": 1765555800000, + "live": false, + "nzBsaRatingString": "M", + "programme": { + "id": "mac_11850332", + "title": "Gold Rush", + "synopsis": "Episode 2: The gold miners of the Yukon put everything on the line to strike it rich. With new miners, claims and machines, the stakes are higher than ever! S16 E2" + } + }, + { + "id": "IBMS_55226596", + "startMs": 1765555800000, + "endMs": 1765558800000, + "live": false, + "nzBsaRatingString": "M", + "programme": { + "id": "mac_11548799", + "title": "Moonshiners: Master Distiller", + "synopsis": "Battle Of The Judges: Tim challenges Mark and Digger to a moonshine-making rematch. All three legends face off to see who can bring the best jar of moonshine to the table. S2 E10" + } + }, + { + "id": "IBMS_55226597", + "startMs": 1765558800000, + "endMs": 1765560300000, + "live": false, + "nzBsaRatingString": "PG", + "programme": { + "id": "mac_10858338", + "title": "How It's Made", + "synopsis": "Furniture, Electrical Switches: See how everything from hand-crafted to factory-made products. S14 E12" + } + }, + { + "id": "IBMS_55226598", + "startMs": 1765560300000, + "endMs": 1765563600000, + "live": false, + "nzBsaRatingString": "PG", + "programme": { + "id": "mac_11850128", + "title": "Expedition Unknown", + "synopsis": "Episode 8: Josh Gates investigates the world's most iconic and fascinating legends. S10 E8" + } + }, + { + "id": "IBMS_55226599", + "startMs": 1765563600000, + "endMs": 1765566900000, + "live": false, + "nzBsaRatingString": "PG", + "programme": { + "id": "mac_11560298", + "title": "Aussie Gold Hunters", + "synopsis": "Episode 13: The Poseidon Crew finally start digging legendary ground in search of a multi-million-dollar nugget. Shane and Russell endure the snake-ridden Pilbara S7 E13" + } + }, + { + "id": "IBMS_55226600", + "startMs": 1765566900000, + "endMs": 1765570500000, + "live": false, + "nzBsaRatingString": "PG", + "programme": { + "id": "mac_11567903", + "title": "Aussie Gold Hunters", + "synopsis": "Episode 14: A robbery at the Gold Retrievers’ camp puts more pressure on Chris and Brad’s partnership. Marcus and Linden finally hit a rich patch of nuggets. S7 E14" + } + }, + { + "id": "IBMS_55226601", + "startMs": 1765570500000, + "endMs": 1765573800000, + "live": false, + "nzBsaRatingString": "PG", + "programme": { + "id": "mac_11567915", + "title": "Aussie Gold Hunters", + "synopsis": "Episode 15: Jacqui and Andrew feel the pressure as they battle hard rock ground that could ruin their latest deal. Plus, Shane and Russell search an ancient mine. S7 E15" + } + }, + { + "id": "IBMS_55226602", + "startMs": 1765573800000, + "endMs": 1765577100000, + "live": false, + "nzBsaRatingString": "PG", + "programme": { + "id": "mac_11567925", + "title": "Aussie Gold Hunters", + "synopsis": "Episode 16: The Poseidon Crew are running out of time to find a 1,000-ounce nugget. The Gold Retrievers work at night to escape dangerous summer heat. S7 E16" + } + }, + { + "id": "IBMS_55226603", + "startMs": 1765577100000, + "endMs": 1765580400000, + "live": false, + "nzBsaRatingString": "PG", + "programme": { + "id": "mac_11567939", + "title": "Aussie Gold Hunters", + "synopsis": "Episode 17: Shane and Russell take the biggest gamble of their season. Marcus, Linden and Dale desperately need new ground before heat shuts down their operation. S7 E17" + } + }, + { + "id": "IBMS_55226604", + "startMs": 1765580400000, + "endMs": 1765583700000, + "live": false, + "nzBsaRatingString": "PG", + "programme": { + "id": "mac_11721352", + "title": "Outback Opal Hunters", + "synopsis": "New Terra: The Bushmen put their lives on the line in the most dangerous mine they have worked. The Cheal's first dig of the season is brought to a halt. S11 E1" + } + }, + { + "id": "IBMS_55226605", + "startMs": 1765583700000, + "endMs": 1765587300000, + "live": false, + "nzBsaRatingString": "PG", + "programme": { + "id": "mac_11721385", + "title": "Outback Opal Hunters", + "synopsis": "Between A Rod And A Hard Place: A rookie miner gets trapped down a mine shaft. A dust storm forces the Blacklights to reluctantly return to the failed Land of Promise money pit. S11 E2" + } + }, + { + "id": "IBMS_55226606", + "startMs": 1765587300000, + "endMs": 1765590600000, + "live": false, + "nzBsaRatingString": "PG", + "programme": { + "id": "mac_11721400", + "title": "Outback Opal Hunters", + "synopsis": "Ratter Brained: The Misfits, Angel Dempsey and rookie miner, Cody Polglase, must find an opal king stone for a bespoke pendant order. S11 E3" + } + }, + { + "id": "IBMS_55226607", + "startMs": 1765590600000, + "endMs": 1765593900000, + "live": false, + "nzBsaRatingString": "PG", + "programme": { + "id": "mac_11728565", + "title": "Outback Opal Hunters", + "synopsis": "Cloudy With A Chance Of Explosives: Slim Pickings' efforts to recycle precious dam water are derailed. The Blacklighters scrounge for any last opal in their Land of Promise Claim. S11 E4" + } + }, + { + "id": "IBMS_55226608", + "startMs": 1765593900000, + "endMs": 1765600500000, + "live": false, + "nzBsaRatingString": "M", + "programme": { + "id": "mac_11760138", + "title": "Bering Sea Gold", + "synopsis": "Out Of Their Depths: A potential disaster plagues the Kellys, prompting a bail-out from Chris McCully. Shawn and Vernon try their luck in deeper waters. Team Emily strives for a double dive. S12 E7" + } + }, + { + "id": "IBMS_55226609", + "startMs": 1765600500000, + "endMs": 1765607400000, + "live": false, + "nzBsaRatingString": "M", + "programme": { + "id": "mac_11760139", + "title": "Bering Sea Gold", + "synopsis": "No Sleep Till Landfall: The countdown to the storm of the century begins. Reaper Nation hits deeper waters while Shawn, Emily, Vernon and Chris all fight large swells. S12 E8" + } + }, + { + "id": "IBMS_55226610", + "startMs": 1765607400000, + "endMs": 1765611000000, + "live": false, + "nzBsaRatingString": "PG", + "programme": { + "id": "mac_11721392", + "title": "Maine Cabin Masters", + "synopsis": "Updating A Lincolnville Lakeview: A family are on a mission to update their 30-year-old cabin. The team face surprises around every corner as they race to finish in time for summer. S7 E11" + } + }, + { + "id": "IBMS_55226611", + "startMs": 1765611000000, + "endMs": 1765614600000, + "live": false, + "nzBsaRatingString": "M", + "programme": { + "id": "mac_11676481", + "title": "Hoffman Family Gold", + "synopsis": "Emptying The Tank: As winter settles in, the Hoffmans hustle to run through paydirt before their cut freezes over. Can they hit their goal before mining becomes impossible? S1 E21" + } + }, + { + "id": "IBMS_55226612", + "startMs": 1765614600000, + "endMs": 1765617900000, + "live": false, + "nzBsaRatingString": "M", + "programme": { + "id": "mac_11676482", + "title": "Hoffman Family Gold", + "synopsis": "The Hoffmans Clutch Up: With just one week left in the mining season, the Hoffmans scramble to hit their goal. But cold weather and dwindling paydirt threaten their chances. S1 E22" + } + }, + { + "id": "IBMS_55226613", + "startMs": 1765617900000, + "endMs": 1765621200000, + "live": false, + "nzBsaRatingString": "PG", + "programme": { + "id": "mac_10978689", + "title": "Railroad Australia", + "synopsis": "Train Technology: In Victoria, a team race to build the VLocity trains of the future. Slippery tracks and kangaroos throw a 5000 tonne coal train off its path. S2 E8" + } + }, + { + "id": "IBMS_55226614", + "startMs": 1765621200000, + "endMs": 1765624500000, + "live": false, + "nzBsaRatingString": "M", + "programme": { + "id": "mac_11850127", + "title": "Moonshiners: Master Distiller", + "synopsis": "Team Digger Vs Team Tim: Digger coaches three outlaws as they face off with Tim's legal distillers in a three-round elimination tournament. S4 E1" + } + } + ] + } + }, + { + "id": "CRIV", + "title": "Real Crime", + "number": 71, + "tileImage": { + "uri": "https://images.skyone.co.nz/contentful/dcojl03mw8gy/7EQH3N1WixDGrYYQzVS1P7/004d58c4838be9ca705dd8dca1d92480/Real_Crime_1920x1080.png" + }, + "slotsForDay": { + "slots": [ + { + "id": "IBMS_55246910", + "startMs": 1765535400000, + "endMs": 1765539000000, + "live": false, + "nzBsaRatingString": "M", + "programme": { + "id": "mac_11365061", + "title": "Homicide Hunter", + "synopsis": "No Good Deed: After a man is gunned down in the middle of the street, Joe Kenda must piece together a puzzle of conflicting stories. S8 E15" + } + }, + { + "id": "IBMS_55246911", + "startMs": 1765539000000, + "endMs": 1765542600000, + "live": false, + "nzBsaRatingString": "M", + "programme": { + "id": "mac_11365079", + "title": "Homicide Hunter", + "synopsis": "Fall From Grace: Hikers come across the nude body of a man who has been bound and beaten to death. S8 E16" + } + }, + { + "id": "IBMS_55246912", + "startMs": 1765542600000, + "endMs": 1765545300000, + "live": false, + "nzBsaRatingString": "16", + "programme": { + "id": "mac_11545158", + "title": "Green River Killer: Hunting The Monster", + "synopsis": "We explore the grisly story of Gary Ridgway - one of America's most prolific serial killers - and the detectives who were determined to stop him dead in his tracks. S1 E4" + } + }, + { + "id": "IBMS_55246913", + "startMs": 1765545300000, + "endMs": 1765546800000, + "live": false, + "nzBsaRatingString": "M", + "programme": { + "id": "mac_10947180", + "title": "Forensic Files", + "synopsis": "Writing On The Wall: Investigators face a growing list of suspects after a beautiful flight attendant is brutally murdered in her own home. S13 E36" + } + }, + { + "id": "IBMS_55246914", + "startMs": 1765546800000, + "endMs": 1765548300000, + "live": false, + "nzBsaRatingString": "M", + "programme": { + "id": "mac_11152408", + "title": "Bizarre Murders", + "synopsis": "Luchalooters: Twin Mexican little people wrestlers are murdered by fake prostitutes. S1 E11" + } + }, + { + "id": "IBMS_55246915", + "startMs": 1765548300000, + "endMs": 1765549800000, + "live": false, + "nzBsaRatingString": "M", + "programme": { + "id": "mac_11376241", + "title": "Forensic Files II", + "synopsis": "Portrait Of A Serial Killer: A serial killer terrorises South-east Texas. S1 E5" + } + }, + { + "id": "IBMS_55246916", + "startMs": 1765549800000, + "endMs": 1765551300000, + "live": false, + "nzBsaRatingString": "M", + "programme": { + "id": "mac_10950700", + "title": "Forensic Files", + "synopsis": "Murder On The Menu: When the head chef of a historic Philadelphia restaurant was found dead, investigators interviewed the usual suspects. S10 E37" + } + }, + { + "id": "IBMS_55246917", + "startMs": 1765551300000, + "endMs": 1765554000000, + "live": false, + "nzBsaRatingString": "M", + "programme": { + "id": "mac_11064277", + "title": "The First 48", + "synopsis": "10 Pounds: Detectives tell you that if they don't have a lead, a suspect or an arrest within 48 hours. S9 E4" + } + }, + { + "id": "IBMS_55246918", + "startMs": 1765554000000, + "endMs": 1765557000000, + "live": false, + "nzBsaRatingString": "M", + "programme": { + "id": "mac_11064098", + "title": "Homicide Hunter", + "synopsis": "Written In Blood: A community is shocked when 20-year-old Antoine McKenzie is gunned down outside an auto parts store in broad daylight. S6 E2" + } + }, + { + "id": "IBMS_55246919", + "startMs": 1765557000000, + "endMs": 1765560600000, + "live": false, + "nzBsaRatingString": "M", + "programme": { + "id": "mac_11854486", + "title": "World's Most Evil Killers", + "synopsis": "Steven Dean Gordon: Examining some of the most dangerous and prolific murderers in the UK and worldwide. S8 E20" + } + }, + { + "id": "IBMS_55246920", + "startMs": 1765560600000, + "endMs": 1765562400000, + "live": false, + "nzBsaRatingString": "M", + "programme": { + "id": "mac_11646121", + "title": "Cops Reloaded", + "synopsis": "Runaway Dad: A dad flees the police over unpaid child support. A man is attacked with a broken mirror. Drugs and a firearm are discovered during a traffic stop. Two men try to flee the scene of an accident. S1 E3" + } + }, + { + "id": "IBMS_55246921", + "startMs": 1765562400000, + "endMs": 1765564200000, + "live": false, + "nzBsaRatingString": "M", + "programme": { + "id": "mac_10950876", + "title": "Cops", + "synopsis": "Taser Proof: An electroshock weapon fails to take down a subject. And Patrol cars descend on a couple getting undressed in a pickup truck. S27 E11" + } + }, + { + "id": "IBMS_55246922", + "startMs": 1765564200000, + "endMs": 1765567800000, + "live": false, + "nzBsaRatingString": "M", + "programme": { + "id": "mac_11365061", + "title": "Homicide Hunter", + "synopsis": "No Good Deed: After a man is gunned down in the middle of the street, Joe Kenda must piece together a puzzle of conflicting stories. S8 E15" + } + }, + { + "id": "IBMS_55246923", + "startMs": 1765567800000, + "endMs": 1765571400000, + "live": false, + "nzBsaRatingString": "M", + "programme": { + "id": "mac_11365079", + "title": "Homicide Hunter", + "synopsis": "Fall From Grace: Hikers come across the nude body of a man who has been bound and beaten to death. S8 E16" + } + }, + { + "id": "IBMS_55246924", + "startMs": 1765571400000, + "endMs": 1765575000000, + "live": false, + "nzBsaRatingString": "16", + "programme": { + "id": "mac_11545158", + "title": "Green River Killer: Hunting The Monster", + "synopsis": "We explore the grisly story of Gary Ridgway - one of America's most prolific serial killers - and the detectives who were determined to stop him dead in his tracks. S1 E4" + } + }, + { + "id": "IBMS_55246925", + "startMs": 1765575000000, + "endMs": 1765578600000, + "live": false, + "nzBsaRatingString": "M", + "programme": { + "id": "mac_11064098", + "title": "Homicide Hunter", + "synopsis": "Written In Blood: A community is shocked when 20-year-old Antoine McKenzie is gunned down outside an auto parts store in broad daylight. S6 E2" + } + }, + { + "id": "IBMS_55246926", + "startMs": 1765578600000, + "endMs": 1765582200000, + "live": false, + "nzBsaRatingString": "M", + "programme": { + "id": "mac_10947197", + "title": "Homicide Hunter", + "synopsis": "Blood Red Highway: The elderly owners of a local grocery are brutally attacked and left for dead. Lt. Joe Kenda leads a state-wide manhunt to catch a pair of cold-blooded killers. S2 E10" + } + }, + { + "id": "IBMS_55246927", + "startMs": 1765582200000, + "endMs": 1765585800000, + "live": false, + "nzBsaRatingString": "16", + "programme": { + "id": "mac_11095720", + "title": "Deadly Women", + "synopsis": "DIY Burial: Dig into these deadly women's worlds and you will find blood and bone, from their 'DIY burials'. S10 E11" + } + }, + { + "id": "IBMS_55246928", + "startMs": 1765585800000, + "endMs": 1765589400000, + "live": false, + "nzBsaRatingString": "M", + "programme": { + "id": "mac_11116047", + "title": "Deadly Women", + "synopsis": "Anger Mismanagement: The fuse is lit; it's only a matter of time before these deadly women's anger mismanagement will see them explode. S10 E12" + } + }, + { + "id": "IBMS_55246929", + "startMs": 1765589400000, + "endMs": 1765593000000, + "live": false, + "nzBsaRatingString": "M", + "programme": { + "id": "mac_10857149", + "title": "Crime Investigation Australia", + "synopsis": "The Killing Fields Of Truro: One of the most infamous crimes in Australia, set in Adelaide, where seven women disappeared in 51 days. S2 E1" + } + }, + { + "id": "IBMS_55246930", + "startMs": 1765593000000, + "endMs": 1765596600000, + "live": false, + "nzBsaRatingString": "M", + "programme": { + "id": "mac_10857236", + "title": "Crime Investigation Australia", + "synopsis": "No Mercy: The Killing Of Virginia Morse: Virginia Morse, a young mother of three, was kidnapped, raped and tortured by Allan Baker and Kevin Crump as they drove to Queensland. S2 E2" + } + }, + { + "id": "IBMS_55246931", + "startMs": 1765596600000, + "endMs": 1765600200000, + "live": false, + "nzBsaRatingString": "M", + "programme": { + "id": "mac_11049813", + "title": "Cold Blood", + "synopsis": "Somebody Knows: Kimberly Dunkin's body is found with a single gunshot to the head and it will take 15 years before the case finally begins to unravel. S8 E3" + } + }, + { + "id": "IBMS_55246932", + "startMs": 1765600200000, + "endMs": 1765603800000, + "live": false, + "nzBsaRatingString": "M", + "programme": { + "id": "mac_11695693", + "title": "See No Evil", + "synopsis": "Last Night Apart: Reveals how the deadliest crimes are solved by the only witnesses that never lie - and where murderers have no place to hide: surveillance cameras. S7 E9" + } + }, + { + "id": "IBMS_55246933", + "startMs": 1765603800000, + "endMs": 1765607400000, + "live": false, + "nzBsaRatingString": "M", + "programme": { + "id": "mac_11695697", + "title": "See No Evil", + "synopsis": "Four And A Half Minutes: Reveals how the deadliest crimes are solved by the only witnesses that never lie - and where murderers have no place to hide: surveillance cameras. S7 E10" + } + }, + { + "id": "IBMS_55246934", + "startMs": 1765607400000, + "endMs": 1765611000000, + "live": false, + "nzBsaRatingString": "M", + "programme": { + "id": "mac_11513796", + "title": "Meet, Marry, Murder", + "synopsis": "Denise Williams: The story of Denise Williams, who conspired with her lover to murder her husband, cover it up and collect the insurance money. S1 E10" + } + }, + { + "id": "IBMS_55246935", + "startMs": 1765611000000, + "endMs": 1765614600000, + "live": false, + "nzBsaRatingString": "M", + "programme": { + "id": "mac_11854487", + "title": "Fatal Attraction", + "synopsis": "Sister Act: A look at the potential consequences when a romance causes people to commit unthinkable criminal acts in the name of love. S13 E23" + } + }, + { + "id": "IBMS_55246936", + "startMs": 1765614600000, + "endMs": 1765618200000, + "live": false, + "nzBsaRatingString": "M", + "programme": { + "id": "mac_11711670", + "title": "Fred And Rose West's Secret Murders", + "synopsis": "Fred and Rose West were convicted of murdering 12 young women. Now several pieces of strong new evidence have been discovered, indicating there may be many more than these known victims. S1 E1" + } + }, + { + "id": "IBMS_55246937", + "startMs": 1765618200000, + "endMs": 1765621800000, + "live": false, + "nzBsaRatingString": "M", + "programme": { + "id": "mac_11711710", + "title": "Fred And Rose West's Secret Murders", + "synopsis": "Fred and Rose West were convicted of murdering 12 young women. Now several pieces of strong new evidence have been discovered, indicating there may be many more than these known victims. S1 E2" + } + }, + { + "id": "IBMS_55246938", + "startMs": 1765621800000, + "endMs": 1765625400000, + "live": false, + "nzBsaRatingString": "M", + "programme": { + "id": "mac_11314889", + "title": "Debi Marshall Investigates Frozen Lies", + "synopsis": "The Man Behind The Mask: Crime journalist Debi Marshall explores one of Australia's most sensational murders - the case of the Lawyer in the Freezer. S1 E1" + } + } + ] + } + }, + { + "id": "HIST", + "title": "Real History", + "number": 73, + "tileImage": { + "uri": "https://images.skyone.co.nz/contentful/dcojl03mw8gy/41YQQY4ci5A6lLWmPBlopk/fd3eb4da4ce7dcad7f2ce516f3e9aa6f/Real_History_1920x1080.png" + }, + "slotsForDay": { + "slots": [ + { + "id": "IBMS_55280383", + "startMs": 1765535100000, + "endMs": 1765538100000, + "live": false, + "nzBsaRatingString": "M", + "programme": { + "id": "mac_11314837", + "title": "The Unxplained", + "synopsis": "Bizarre Rituals: Ancient practices are often considered archaic superstition. However, evidence insists they impact the physical world. S1 E5" + } + }, + { + "id": "IBMS_55280384", + "startMs": 1765538100000, + "endMs": 1765541100000, + "live": false, + "nzBsaRatingString": "PG", + "programme": { + "id": "mac_10876299", + "title": "Dead Men's Secrets", + "synopsis": "Secrets Of The HMS Dasher: A series examining mysteries of 20th-century military history through forensic clues and film footage. S1 E5" + } + }, + { + "id": "IBMS_55280385", + "startMs": 1765541100000, + "endMs": 1765544400000, + "live": false, + "nzBsaRatingString": "16", + "programme": { + "id": "mac_11407658", + "title": "Countdown To Surrender: Last 100 Days", + "synopsis": "Downfall And Liberation: April 16, 1945. The Red Army begins its Berlin offensive. The generals are willing to incur heavy losses. S1 E3" + } + }, + { + "id": "IBMS_55280386", + "startMs": 1765544400000, + "endMs": 1765550700000, + "live": false, + "nzBsaRatingString": "PG", + "programme": { + "id": "mac_10943726", + "title": "Battlefield", + "synopsis": "Fight For The Mediterranean: Explore the most important battles fought primarily during the Second World War and the Vietnam War. S6 E6" + } + }, + { + "id": "IBMS_55280387", + "startMs": 1765550700000, + "endMs": 1765553700000, + "live": false, + "nzBsaRatingString": "G", + "programme": { + "id": "mac_10876443", + "title": "Time Team", + "synopsis": "The Furnace In The Forest: A team of specialists dig deep to uncover as much as they can in three days about a U.K. site's archaeology and history. S18 E5" + } + }, + { + "id": "IBMS_55280388", + "startMs": 1765553700000, + "endMs": 1765557000000, + "live": false, + "nzBsaRatingString": "PG", + "programme": { + "id": "mac_11712171", + "title": "Ancient Engineering", + "synopsis": "Earliest Arenas: The Colosseum 1: Since their earliest existence in ancient Greek and Roman civilizations, stadiums have been regarded as architectural masterpieces, but none more so than the Colosseum in Rome. S2 E1" + } + }, + { + "id": "IBMS_55280389", + "startMs": 1765557000000, + "endMs": 1765560600000, + "live": false, + "nzBsaRatingString": "PG", + "programme": { + "id": "mac_11213155", + "title": "WWII: Witness To War", + "synopsis": "U-Boat Terror: With the invasion of Britain officially postponed, the Germans looked for another way to knock Britain out of the war. S1 E3" + } + }, + { + "id": "IBMS_55280390", + "startMs": 1765560600000, + "endMs": 1765564200000, + "live": false, + "nzBsaRatingString": "M", + "programme": { + "id": "mac_10796550", + "title": "Vietnam Lost Films In HD", + "synopsis": "The Beginning (1964-1965): Thirteen Americans retell their stories in Vietnam paired with vintage footage from the battlefield. S1 E1" + } + }, + { + "id": "IBMS_55280391", + "startMs": 1765564200000, + "endMs": 1765567800000, + "live": false, + "nzBsaRatingString": "PG", + "programme": { + "id": "mac_11630216", + "title": "Cities Of The Underworld", + "synopsis": "The Lost Aztec Colony: Don follows the clues hidden underground as he searches for evidence of 10,000 Aztecs who fled Mexico and disappeared somewhere in America. S4 E8" + } + }, + { + "id": "IBMS_55280392", + "startMs": 1765567800000, + "endMs": 1765571400000, + "live": false, + "nzBsaRatingString": "G", + "programme": { + "id": "mac_10876453", + "title": "Time Team", + "synopsis": "Under The Gravestones: A team of specialists dig deep to uncover as much as they can in three days about a U.K. site's archaeology and history. S18 E6" + } + }, + { + "id": "IBMS_55280393", + "startMs": 1765571400000, + "endMs": 1765575000000, + "live": false, + "nzBsaRatingString": "PG", + "programme": { + "id": "mac_11712171", + "title": "Ancient Engineering", + "synopsis": "Earliest Arenas: The Colosseum 1: Since their earliest existence in ancient Greek and Roman civilizations, stadiums have been regarded as architectural masterpieces, but none more so than the Colosseum in Rome. S2 E1" + } + }, + { + "id": "IBMS_55280394", + "startMs": 1765575000000, + "endMs": 1765578600000, + "live": false, + "nzBsaRatingString": "PG", + "programme": { + "id": "mac_11213155", + "title": "WWII: Witness To War", + "synopsis": "U-Boat Terror: With the invasion of Britain officially postponed, the Germans looked for another way to knock Britain out of the war. S1 E3" + } + }, + { + "id": "IBMS_55280395", + "startMs": 1765578600000, + "endMs": 1765582200000, + "live": false, + "nzBsaRatingString": "M", + "programme": { + "id": "mac_10796550", + "title": "Vietnam Lost Films In HD", + "synopsis": "The Beginning (1964-1965): Thirteen Americans retell their stories in Vietnam paired with vintage footage from the battlefield. S1 E1" + } + }, + { + "id": "IBMS_55280396", + "startMs": 1765582200000, + "endMs": 1765585800000, + "live": false, + "nzBsaRatingString": "PG", + "programme": { + "id": "mac_11630216", + "title": "Cities Of The Underworld", + "synopsis": "The Lost Aztec Colony: Don follows the clues hidden underground as he searches for evidence of 10,000 Aztecs who fled Mexico and disappeared somewhere in America. S4 E8" + } + }, + { + "id": "IBMS_55280397", + "startMs": 1765585800000, + "endMs": 1765589400000, + "live": false, + "nzBsaRatingString": "PG", + "programme": { + "id": "mac_11604365", + "title": "American Dynasty", + "synopsis": "Vanderbilt: Cornelius \"The Commodore\" Vanderbilt rose from nothing to build the biggest shipping and railroad empires in America. His dying words were to \"keep the money together,\" but did his children listen...? S1 E1" + } + }, + { + "id": "IBMS_55280398", + "startMs": 1765589400000, + "endMs": 1765593000000, + "live": false, + "nzBsaRatingString": "PG", + "programme": { + "id": "mac_11604392", + "title": "American Dynasty", + "synopsis": "Rockefeller: John D Rockefeller started out with one kerosene refinery in Cleveland, Ohio. Within 15 years it becomes Standard Oil, the largest oil producer in the world. S1 E2" + } + }, + { + "id": "IBMS_55280399", + "startMs": 1765593000000, + "endMs": 1765596600000, + "live": false, + "nzBsaRatingString": "PG", + "programme": { + "id": "mac_11496265", + "title": "Walking Britain's Roman Roads", + "synopsis": "Ermin Way: Dan Jones travels the historic Roman road of Ermin Way, which links the two Roman towns of Calleva Atrebatum and Glevum, now known as Silchester and Gloucester. S1 E5" + } + }, + { + "id": "IBMS_55280400", + "startMs": 1765596600000, + "endMs": 1765600200000, + "live": false, + "nzBsaRatingString": "PG", + "programme": { + "id": "mac_11503267", + "title": "Walking Britain's Roman Roads", + "synopsis": "Stane Street: Dan Jones travels along Stane Street, which runs 107 kms from London to Chichester, and discovers what lead the Romans to abandon Britain in the Fifth Century AD. S1 E6" + } + }, + { + "id": "IBMS_55280401", + "startMs": 1765600200000, + "endMs": 1765603800000, + "live": false, + "nzBsaRatingString": "G", + "programme": { + "id": "mac_10876453", + "title": "Time Team", + "synopsis": "Under The Gravestones: A team of specialists dig deep to uncover as much as they can in three days about a U.K. site's archaeology and history. S18 E6" + } + }, + { + "id": "IBMS_55280402", + "startMs": 1765603800000, + "endMs": 1765607400000, + "live": false, + "nzBsaRatingString": "PG", + "programme": { + "id": "mac_11854375", + "title": "Canada's National Parks", + "synopsis": "Waterton: In the south-west corner of the province of Alberta lies Waterton Lakes National Park, overlooking the transition zone between the Canadian Rockies and the Prairies. S1 E2" + } + }, + { + "id": "IBMS_55280403", + "startMs": 1765607400000, + "endMs": 1765611000000, + "live": false, + "nzBsaRatingString": "G", + "programme": { + "id": "mac_11854376", + "title": "Europe's Waterways", + "synopsis": "Germany - From Lake Muritz Via Berlin To The Floodplains Of The Spree: From the Mecklenburg Lake District, the route follows the rivers Havel and Spree through Berlin into the Spree floodplains in Brandenburg. S1 E2" + } + }, + { + "id": "IBMS_55280404", + "startMs": 1765611000000, + "endMs": 1765614600000, + "live": false, + "nzBsaRatingString": "PG", + "programme": { + "id": "mac_11754154", + "title": "Sunken Warships: Secrets From The Deep", + "synopsis": "Hms Exeter - Always Faithful: HMS Exeter triumphed over the Graf Spee but was later sunk by the Japanese near Java. Rediscovered in 2007, its wreck mysteriously vanished by 2015. S1 E8" + } + }, + { + "id": "IBMS_55280405", + "startMs": 1765614600000, + "endMs": 1765618200000, + "live": false, + "nzBsaRatingString": "PG", + "programme": { + "id": "mac_11329773", + "title": "American Dynasties: The Kennedys", + "synopsis": "Family Secrets: President John F Kennedy must fight to protect the presidency, the country and the world. S1 E4" + } + }, + { + "id": "IBMS_55280406", + "startMs": 1765618200000, + "endMs": 1765621800000, + "live": false, + "nzBsaRatingString": "PG", + "programme": { + "id": "mac_11784941", + "title": "The Spanish Flu: The Invisible Enemy", + "synopsis": "In April 1918, as Europe is mired in war, a disease of unknown origin sweeps across the five continents, claiming millions of lives." + } + }, + { + "id": "IBMS_55280407", + "startMs": 1765621800000, + "endMs": 1765625400000, + "live": false, + "nzBsaRatingString": "PG", + "programme": { + "id": "mac_11702138", + "title": "Vikings: Blood, Conquest & Kingdom", + "synopsis": "Dr. Xand and Raksha Dave track the Viking showdown for the English throne between Edmund Ironside and Canute. They reveal alliances, betrayals, and how blood brothers changed history. S1 E3" + } + } + ] + } + }, + { + "id": "DOCO", + "title": "BBC Earth", + "number": 74, + "tileImage": { + "uri": "https://images.skyone.co.nz/contentful/dcojl03mw8gy/7EyTd3S3yodkmPc54wjkqN/1b523700a611e74c923d6bfb5c3210d3/074_1920x1080.png" + }, + "slotsForDay": { + "slots": [ + { + "id": "IBMS_55141223", + "startMs": 1765535400000, + "endMs": 1765538700000, + "live": false, + "nzBsaRatingString": "PG", + "programme": { + "id": "mac_11795244", + "title": "The Mating Game", + "synopsis": "Jungles: In The Thick Of It: Jungles are home to 80% of all species but they cover just 2% of the planet. When animals in these crowded forests want to mate, the challenge is how to stand out from the crowd. S1 E3" + } + }, + { + "id": "IBMS_55141224", + "startMs": 1765538700000, + "endMs": 1765541700000, + "live": false, + "nzBsaRatingString": "PG", + "programme": { + "id": "mac_11776102", + "title": "Where The Wild Men Are With Ben Fogle", + "synopsis": "Spain: We join Ben in Spain's remote Andalucía Mountains with British couple Alan Parks and Lorna Penfold. The couple left their careers for a pipe-dream of becoming successful alpaca farmers. S5 E5" + } + }, + { + "id": "IBMS_55141225", + "startMs": 1765541700000, + "endMs": 1765545600000, + "live": false, + "nzBsaRatingString": "PG", + "programme": { + "id": "mac_11795269", + "title": "Earth", + "synopsis": "Human: How dramatic twists in Earth's story enabled humans to go from being part of nature to controlling it, and what can be learnt from this tale before it's too late. S1 E5" + } + }, + { + "id": "IBMS_55141226", + "startMs": 1765545600000, + "endMs": 1765549500000, + "live": false, + "nzBsaRatingString": "PG", + "programme": { + "id": "mac_11786610", + "title": "Elephant Family & Me", + "synopsis": "Episode 2: Gordon Buchanan returns to Kenya to follow baby elephant Wiva and her family in the height of the dry season. The birth of new baby Gawa prompts an extraordinary celebration. S1 E2" + } + }, + { + "id": "IBMS_55141227", + "startMs": 1765549500000, + "endMs": 1765552800000, + "live": false, + "nzBsaRatingString": "PG", + "programme": { + "id": "mac_11738522", + "title": "Kate Humble: Living With Nomads", + "synopsis": "Mongolia: In her final journey of the series, Kate Humble travels deep into the Gobi Desert to live with an extended family of cashmere goat and yak herders. S1 E3" + } + }, + { + "id": "IBMS_55141228", + "startMs": 1765552800000, + "endMs": 1765555800000, + "live": false, + "nzBsaRatingString": "PG", + "programme": { + "id": "mac_11738430", + "title": "Wonders Of The Moon With Dara O Briain", + "synopsis": "Episode 2: Dara tells the story of how the first photograph of the far side of the moon left scientists baffled. And he tries a virtual reality headset to takes his very own giant leap on the 'moon's' surface. S1 E2" + } + }, + { + "id": "IBMS_55141229", + "startMs": 1765555800000, + "endMs": 1765558800000, + "live": false, + "nzBsaRatingString": "M", + "programme": { + "id": "mac_11738521", + "title": "Life Below Zero", + "synopsis": "Winters End: Sue hunts waterfowl. Andy and Denise fight the river breakup. Ricko and his kids hunt geese. The Hailstones hunt small game. S7 E12" + } + }, + { + "id": "IBMS_55141230", + "startMs": 1765558800000, + "endMs": 1765562400000, + "live": false, + "nzBsaRatingString": "PG", + "programme": { + "id": "mac_11795151", + "title": "Natural Born Rebels", + "synopsis": "Mating Game: How animals fight, steal and trick their way ahead in the struggle to pass on their genes. S1 E1" + } + }, + { + "id": "IBMS_55141231", + "startMs": 1765562400000, + "endMs": 1765566000000, + "live": false, + "nzBsaRatingString": "PG", + "programme": { + "id": "mac_11795195", + "title": "Natural Born Rebels", + "synopsis": "Hunger Wars: Nature documentary studying animals who lie, cheat and steal for their food. S1 E2" + } + }, + { + "id": "IBMS_55141232", + "startMs": 1765566000000, + "endMs": 1765569600000, + "live": false, + "nzBsaRatingString": "PG", + "programme": { + "id": "mac_11795263", + "title": "Natural Born Rebels", + "synopsis": "Survival: How animals fight, steal and trick their way ahead in the struggle to survive. S1 E3" + } + }, + { + "id": "IBMS_55141233", + "startMs": 1765569600000, + "endMs": 1765573500000, + "live": false, + "nzBsaRatingString": "PG", + "programme": { + "id": "mac_11786603", + "title": "Elephant Family & Me", + "synopsis": "Episode 1: Gordon Buchanan tries to gain the trust of a herd of elephants in the wilds of Kenya to film this uniquely intimate portrait of their family life. S1 E1" + } + }, + { + "id": "IBMS_55141234", + "startMs": 1765573500000, + "endMs": 1765577100000, + "live": false, + "nzBsaRatingString": "PG", + "programme": { + "id": "mac_11786610", + "title": "Elephant Family & Me", + "synopsis": "Episode 2: Gordon Buchanan returns to Kenya to follow baby elephant Wiva and her family in the height of the dry season. The birth of new baby Gawa prompts an extraordinary celebration. S1 E2" + } + }, + { + "id": "IBMS_55141235", + "startMs": 1765577100000, + "endMs": 1765580400000, + "live": false, + "nzBsaRatingString": "M", + "programme": { + "id": "mac_11738521", + "title": "Life Below Zero", + "synopsis": "Winters End: Sue hunts waterfowl. Andy and Denise fight the river breakup. Ricko and his kids hunt geese. The Hailstones hunt small game. S7 E12" + } + }, + { + "id": "IBMS_55141236", + "startMs": 1765580400000, + "endMs": 1765583700000, + "live": false, + "nzBsaRatingString": "PG", + "programme": { + "id": "mac_11776067", + "title": "The Dog Rescuers", + "synopsis": "Episode 6: Emily Astlebury tries to help two dangerously overweight staffies Honey and Spotty shed some pounds. But will their owners be able to stop spoiling their beloved pets. S8 E6" + } + }, + { + "id": "IBMS_55141237", + "startMs": 1765583700000, + "endMs": 1765587000000, + "live": false, + "nzBsaRatingString": "PG", + "programme": { + "id": "mac_11776068", + "title": "The Dog Rescuers", + "synopsis": "Episode 7: Inspector Natalie Bartle is alerted to a Labrador called William who is suffering with a large tumour on his foot. His owner's however, disagree that William is in pain. S8 E7" + } + }, + { + "id": "IBMS_55141238", + "startMs": 1765587000000, + "endMs": 1765590300000, + "live": false, + "nzBsaRatingString": "PG", + "programme": { + "id": "mac_11852516", + "title": "Where The Wild Men Are With Ben Fogle", + "synopsis": "Episode 8: Ben travels to the desert near Roswell, meeting 70-year-old Karen, rolling up his sleeves to help, and learning about the hardships she has faced throughout her life. S11 E8" + } + }, + { + "id": "IBMS_55141239", + "startMs": 1765590300000, + "endMs": 1765593900000, + "live": false, + "nzBsaRatingString": "PG", + "programme": { + "id": "mac_11795177", + "title": "Dynasties", + "synopsis": "Emperor: Emperor penguins battle for survival against the worst winter in the world. Working together can they protect and feed their chicks till they reach adulthood? S1 E2" + } + }, + { + "id": "IBMS_55141240", + "startMs": 1765593900000, + "endMs": 1765597500000, + "live": false, + "nzBsaRatingString": "PG", + "programme": { + "id": "mac_11801231", + "title": "Secrets Of Skin", + "synopsis": "Episode 2: Professor Ben Garrod looks into how the smell of skin can protect against malaria; how a giraffe's spots protect it in the heat of the desert, and how puffins send messages using codes on its beak. S1 E2" + } + }, + { + "id": "IBMS_55141241", + "startMs": 1765597500000, + "endMs": 1765601100000, + "live": false, + "nzBsaRatingString": "PG", + "programme": { + "id": "mac_11738522", + "title": "Kate Humble: Living With Nomads", + "synopsis": "Mongolia: In her final journey of the series, Kate Humble travels deep into the Gobi Desert to live with an extended family of cashmere goat and yak herders. S1 E3" + } + }, + { + "id": "IBMS_55141242", + "startMs": 1765601100000, + "endMs": 1765604400000, + "live": false, + "nzBsaRatingString": "16", + "programme": { + "id": "mac_11738629", + "title": "24 Hours In A&E", + "synopsis": "Blood, Sweat And Tears: 55 year old Chris is rushed to Queen's Medical Centre after being run over by a lorry at work, whilst 65-year-old Elizabeth has a head wound after falling cleaning a pub. S18 E7" + } + }, + { + "id": "IBMS_55141243", + "startMs": 1765604400000, + "endMs": 1765607700000, + "live": false, + "nzBsaRatingString": "PG", + "programme": { + "id": "mac_11738638", + "title": "24 Hours In A&E", + "synopsis": "Boys Just Want to Have Fun: Milky comes to A&E with possible life-changing injuries after a road crash, Shaun has had a bad parachute landing and a 6-year-old has an unknown object stuck in his throat. S18 E8" + } + }, + { + "id": "IBMS_55141244", + "startMs": 1765607700000, + "endMs": 1765611000000, + "live": false, + "nzBsaRatingString": "M", + "programme": { + "id": "mac_11738529", + "title": "Life Below Zero", + "synopsis": "First Blood: Sue expands her garden. Andy and Denise hunt waterfowl. Ricko teaches his kids to hunt. The Hailstones go on an egg hunt. S7 E13" + } + }, + { + "id": "IBMS_55141245", + "startMs": 1765611000000, + "endMs": 1765615200000, + "live": false, + "nzBsaRatingString": "PG", + "programme": { + "id": "mac_11795351", + "title": "Snow Cats And Me", + "synopsis": "Episode 1: Gordon Buchanan travels to Russia to help cat expert Dr Victor Lukarevsky as he works to rescue and rehabilitate lynx from the lucrative fur and pet trades, back to the wild. S1 E1" + } + }, + { + "id": "IBMS_55141246", + "startMs": 1765615200000, + "endMs": 1765619400000, + "live": false, + "nzBsaRatingString": "M", + "programme": { + "id": "mac_11776257", + "title": "Louis Theroux: By Reason Of Insanity", + "synopsis": "Episode 1: Louis explores the nature of mental illness. He looks at how to reintegrate a patient into society when they have previously committed a serious crime. S1 E1" + } + }, + { + "id": "IBMS_55141247", + "startMs": 1765619400000, + "endMs": 1765623600000, + "live": false, + "nzBsaRatingString": "M", + "programme": { + "id": "mac_11776258", + "title": "Louis Theroux: By Reason Of Insanity", + "synopsis": "Episode 2: In the second of this two-part documentary, Louis Theroux examines the grey area between criminal actions and medical symptoms, and investigates how we define insanity. S1 E2" + } + }, + { + "id": "IBMS_55141248", + "startMs": 1765623600000, + "endMs": 1765627200000, + "live": false, + "nzBsaRatingString": "PG", + "programme": { + "id": "mac_11795151", + "title": "Natural Born Rebels", + "synopsis": "Mating Game: How animals fight, steal and trick their way ahead in the struggle to pass on their genes. S1 E1" + } + } + ] + } + }, + { + "id": "0100", + "title": "Discovery Turbo", + "number": 75, + "tileImage": { + "uri": "https://images.skyone.co.nz/contentful/dcojl03mw8gy/593fHeUTE88UEqJhy6faGg/991571d0ef4fcea278edbe1c7669ca58/Discovery_Turbo.png" + }, + "slotsForDay": { + "slots": [ + { + "id": "IBMS_55296231", + "startMs": 1765534800000, + "endMs": 1765538100000, + "live": false, + "nzBsaRatingString": "M", + "programme": { + "id": "mac_11316250", + "title": "Street Outlaws", + "synopsis": "Let's Get Ready To Crumble: When Farmtruck finds a fleet of old cop cars at the local salvage yard, he and AZN decide that the best use for them for a giant demolition derby. S5 E33" + } + }, + { + "id": "IBMS_55296232", + "startMs": 1765538100000, + "endMs": 1765541100000, + "live": false, + "nzBsaRatingString": "M", + "programme": { + "id": "mac_10936345", + "title": "Fast N' Loud", + "synopsis": "Fast & Furious Fairmont: Richard transforms a 1978 Ford Fairmont into a cool, mirrored drift car. Richard flips a rare 1967 Corvette Stingray complete with tank sticker. S1 E12" + } + }, + { + "id": "IBMS_55296233", + "startMs": 1765541100000, + "endMs": 1765542600000, + "live": false, + "nzBsaRatingString": "PG", + "programme": { + "id": "mac_11850085", + "title": "Diners, Drive-Ins, & Dives", + "synopsis": "Thai Pie And Fries: Guy Fieri dives into righteous ribs in San Diego and gets cosy with mouth-watering meat pies and bison chili fries in New Mexico. S36 E8" + } + }, + { + "id": "IBMS_55296234", + "startMs": 1765542600000, + "endMs": 1765544100000, + "live": false, + "nzBsaRatingString": "PG", + "programme": { + "id": "mac_11582317", + "title": "Diners, Drive-Ins, & Dives", + "synopsis": "Barbecue Batter And Beer Can Chicken: Guy Fieri grabs some crazy grub! In Hawaii he finds a funky joint serving beer can chicken. S27 E3" + } + }, + { + "id": "IBMS_55296235", + "startMs": 1765544100000, + "endMs": 1765547100000, + "live": false, + "nzBsaRatingString": "PG", + "programme": { + "id": "mac_11510768", + "title": "Wheeler Dealers", + "synopsis": "TVR Griffith: Mike and Elvis take a gamble on a TVR Griffith. The guys have to pick it apart before restoring and testing the sports car. S17 E2" + } + }, + { + "id": "IBMS_55296236", + "startMs": 1765547100000, + "endMs": 1765549800000, + "live": false, + "nzBsaRatingString": "PG", + "programme": { + "id": "mac_11720076", + "title": "Kindig Customs", + "synopsis": "A Week In The Life: A look at one week from Monday to Friday includes multiple stories of what really happens behind the scenes of the show and projects underway." + } + }, + { + "id": "IBMS_55296237", + "startMs": 1765549800000, + "endMs": 1765552800000, + "live": false, + "nzBsaRatingString": "PG", + "programme": { + "id": "mac_11641563", + "title": "Shorty's Dream Shop", + "synopsis": "Pauls 59 Impala Lowrider: Paul decides to take one of his prized '59s and go full lowrider with hydraulics and a full custom lowrider paint job. S1 E10" + } + }, + { + "id": "IBMS_55296238", + "startMs": 1765552800000, + "endMs": 1765555800000, + "live": false, + "nzBsaRatingString": "PG", + "programme": { + "id": "mac_11658359", + "title": "Texas Metal's Loud And Lifted", + "synopsis": "Hummer H1 King: Social media star Liver King not only wants Mod Mafia to beef up his prized 2001 H1 Hummer's performance, he wants to customise it for his lifestyle. S1 E8" + } + }, + { + "id": "IBMS_55296239", + "startMs": 1765555800000, + "endMs": 1765557300000, + "live": false, + "nzBsaRatingString": "PG", + "programme": { + "id": "mac_11850085", + "title": "Diners, Drive-Ins, & Dives", + "synopsis": "Thai Pie And Fries: Guy Fieri dives into righteous ribs in San Diego and gets cosy with mouth-watering meat pies and bison chili fries in New Mexico. S36 E8" + } + }, + { + "id": "IBMS_55296240", + "startMs": 1765557300000, + "endMs": 1765558800000, + "live": false, + "nzBsaRatingString": "PG", + "programme": { + "id": "mac_11582317", + "title": "Diners, Drive-Ins, & Dives", + "synopsis": "Barbecue Batter And Beer Can Chicken: Guy Fieri grabs some crazy grub! In Hawaii he finds a funky joint serving beer can chicken. S27 E3" + } + }, + { + "id": "IBMS_55296241", + "startMs": 1765558800000, + "endMs": 1765560300000, + "live": false, + "nzBsaRatingString": "PG", + "programme": { + "id": "mac_11466857", + "title": "Man V. Food With Adam Richman", + "synopsis": "Puerto Rico: Adam is in San Juan, Puerto Rico, for a deep-fried pork chop, a steak sandwich and his biggest challenge yet: a nine-pound steak platter! S2 E26" + } + }, + { + "id": "IBMS_55296242", + "startMs": 1765560300000, + "endMs": 1765563600000, + "live": false, + "nzBsaRatingString": "PG", + "programme": { + "id": "mac_11510768", + "title": "Wheeler Dealers", + "synopsis": "TVR Griffith: Mike and Elvis take a gamble on a TVR Griffith. The guys have to pick it apart before restoring and testing the sports car. S17 E2" + } + }, + { + "id": "IBMS_55296243", + "startMs": 1765563600000, + "endMs": 1765566900000, + "live": false, + "nzBsaRatingString": "PG", + "programme": { + "id": "mac_11658359", + "title": "Texas Metal's Loud And Lifted", + "synopsis": "Hummer H1 King: Social media star Liver King not only wants Mod Mafia to beef up his prized 2001 H1 Hummer's performance, he wants to customise it for his lifestyle. S1 E8" + } + }, + { + "id": "IBMS_55296244", + "startMs": 1765566900000, + "endMs": 1765568700000, + "live": false, + "nzBsaRatingString": "PG", + "programme": { + "id": "mac_11850085", + "title": "Diners, Drive-Ins, & Dives", + "synopsis": "Thai Pie And Fries: Guy Fieri dives into righteous ribs in San Diego and gets cosy with mouth-watering meat pies and bison chili fries in New Mexico. S36 E8" + } + }, + { + "id": "IBMS_55296245", + "startMs": 1765568700000, + "endMs": 1765570500000, + "live": false, + "nzBsaRatingString": "PG", + "programme": { + "id": "mac_11582317", + "title": "Diners, Drive-Ins, & Dives", + "synopsis": "Barbecue Batter And Beer Can Chicken: Guy Fieri grabs some crazy grub! In Hawaii he finds a funky joint serving beer can chicken. S27 E3" + } + }, + { + "id": "IBMS_55296246", + "startMs": 1765570500000, + "endMs": 1765573800000, + "live": false, + "nzBsaRatingString": "PG", + "programme": { + "id": "mac_11720076", + "title": "Kindig Customs", + "synopsis": "A Week In The Life: A look at one week from Monday to Friday includes multiple stories of what really happens behind the scenes of the show and projects underway." + } + }, + { + "id": "IBMS_55296247", + "startMs": 1765573800000, + "endMs": 1765575600000, + "live": false, + "nzBsaRatingString": "PG", + "programme": { + "id": "mac_11530946", + "title": "Hot Rod Garage", + "synopsis": "Cheap Hot Muscle 2004 Mustang Gt: Tony Angelo and Lucky Costa pick up a 2004 Mustang GT for a low price. S8 E2" + } + }, + { + "id": "IBMS_55296248", + "startMs": 1765575600000, + "endMs": 1765577100000, + "live": false, + "nzBsaRatingString": "PG", + "programme": { + "id": "mac_11530959", + "title": "Hot Rod Garage", + "synopsis": "Amc 401 V8 Racing Engine Build: The AMC V-8 is known for being a strong engine that isn’t durable. S8 E3" + } + }, + { + "id": "IBMS_55296249", + "startMs": 1765577100000, + "endMs": 1765587300000, + "live": false, + "nzBsaRatingString": "M", + "programme": { + "id": "mac_11719961", + "title": "Street Outlaws: Fastest In America", + "synopsis": "Small Tires, Big Mouths: On Night Two, drivers compete on small tires but when Cali Nate pushes limits, tempers flare and drivers call foul. S3 E2" + } + }, + { + "id": "IBMS_55296250", + "startMs": 1765587300000, + "endMs": 1765590600000, + "live": false, + "nzBsaRatingString": "M", + "programme": { + "id": "mac_11736615", + "title": "Street Outlaws: Locals Only", + "synopsis": "Don't Knock Doc: Ohio locals race for $5,000 and a chance to face Street Outlaw Doc. Also, with the recent loss of a friend, one is racing for a cause. S2 E1" + } + }, + { + "id": "IBMS_55296251", + "startMs": 1765590600000, + "endMs": 1765593900000, + "live": false, + "nzBsaRatingString": "M", + "programme": { + "id": "mac_11736642", + "title": "Street Outlaws: Locals Only", + "synopsis": "Virginia Is For Racers: Some of the fastest small-tire racers show off their skills, and the competition is fierce. One cocky racer makes it through and faces Boddie Jr. S2 E2" + } + }, + { + "id": "IBMS_55296252", + "startMs": 1765593900000, + "endMs": 1765597200000, + "live": false, + "nzBsaRatingString": "PG", + "programme": { + "id": "mac_11720077", + "title": "Texas Metal's Loud And Lifted", + "synopsis": "73 COE Complete: 1 Way Diesel pushes to new heights customizing a '73 Peterbilt COE, and Wide Open Garage has their hands full building out a lifted F-450. S2 E2" + } + }, + { + "id": "IBMS_55296253", + "startMs": 1765597200000, + "endMs": 1765599000000, + "live": false, + "nzBsaRatingString": "PG", + "programme": { + "id": "mac_11850093", + "title": "Diners, Drive-Ins, & Dives", + "synopsis": "West Coast Wonders: Guy Fieri cruises California for some West Coast wonders. They include a charcuterie cornucopia in Healdsburg and a taste of New Orleans in San Diego. S36 E9" + } + }, + { + "id": "IBMS_55296254", + "startMs": 1765599000000, + "endMs": 1765600500000, + "live": false, + "nzBsaRatingString": "PG", + "programme": { + "id": "mac_11587814", + "title": "Diners, Drive-Ins, & Dives", + "synopsis": "Ocean Coasts And Great Lakes: Guy seeks out dynamite dishes from the coasts to the Great Lakes. He discovers outrageous octopus tostadas and gourmet grilled cheese sandwiches. S27 E4" + } + }, + { + "id": "IBMS_55296255", + "startMs": 1765600500000, + "endMs": 1765604100000, + "live": false, + "nzBsaRatingString": "PG", + "programme": { + "id": "mac_11850094", + "title": "Bbq Brawl: Flay V. Chauhan V. Lofaso", + "synopsis": "To Meat Or Not To Meat: The Brawlers step out of their comfort zone for a baking challenge. Bobby, Maneet and Antonia need all hands on deck in a veggie-forward team brawl. S6 E7" + } + }, + { + "id": "IBMS_55296256", + "startMs": 1765604100000, + "endMs": 1765607400000, + "live": false, + "nzBsaRatingString": "M", + "programme": { + "id": "mac_11299349", + "title": "Airplane Repo", + "synopsis": "Ken Gets Played: A debtor suddenly swipes the helicopter that Ken and Danny were only seconds away from repossessing. S2 E9" + } + }, + { + "id": "IBMS_55296257", + "startMs": 1765607400000, + "endMs": 1765611000000, + "live": false, + "nzBsaRatingString": "PG", + "programme": { + "id": "mac_10891471", + "title": "Extreme Rvs", + "synopsis": "The Rockin' Rollers And More: The crew at Hemphill Brothers create their latest and greatest crew and band buses. Jay Shafer shows off the Tumbleweed Tiny House. S1 E3" + } + }, + { + "id": "IBMS_55296258", + "startMs": 1765611000000, + "endMs": 1765614600000, + "live": false, + "nzBsaRatingString": "PG", + "programme": { + "id": "mac_11686391", + "title": "Faster With Newbern And Cotten", + "synopsis": "Crown Victorious: Cheap Racing Fun!: With a handful of bolt-on upgrades, the guys turn a Ford Crown Victoria P71 Police Interceptor into a ripper around Willow Springs. S1 E4" + } + }, + { + "id": "IBMS_55296259", + "startMs": 1765614600000, + "endMs": 1765617900000, + "live": false, + "nzBsaRatingString": "PG", + "programme": { + "id": "mac_11587836", + "title": "Holiday Hooptie Challenge II", + "synopsis": "The new year brings a new challenge, and we see if your favourite MT hosts have the endurance to take their hoopties to a whole new level. S E0" + } + }, + { + "id": "IBMS_55296260", + "startMs": 1765617900000, + "endMs": 1765621200000, + "live": false, + "nzBsaRatingString": "PG", + "programme": { + "id": "mac_11720076", + "title": "Kindig Customs", + "synopsis": "A Week In The Life: A look at one week from Monday to Friday includes multiple stories of what really happens behind the scenes of the show and projects underway." + } + }, + { + "id": "IBMS_55296261", + "startMs": 1765621200000, + "endMs": 1765624500000, + "live": false, + "nzBsaRatingString": "PG", + "programme": { + "id": "mac_11658359", + "title": "Texas Metal's Loud And Lifted", + "synopsis": "Hummer H1 King: Social media star Liver King not only wants Mod Mafia to beef up his prized 2001 H1 Hummer's performance, he wants to customise it for his lifestyle. S1 E8" + } + } + ] + } + }, + { + "id": "ANIM", + "title": "Animal Planet", + "number": 76, + "tileImage": { + "uri": "https://images.skyone.co.nz/contentful/dcojl03mw8gy/2OVeEOf8lRvWR2EzTOYJMx/13c19a41c27e194ec3229b705b1ae82b/Animal_Planet.png" + }, + "slotsForDay": { + "slots": [ + { + "id": "IBMS_54954069", + "startMs": 1765537200000, + "endMs": 1765540200000, + "live": false, + "nzBsaRatingString": "PG", + "programme": { + "id": "mac_11128922", + "title": "The Zoo", + "synopsis": "Miracle Cub: The ingenuity of zoo staff is put to the test as they devise a treatment for a newborn snow leopard cub struggling to walk. S2 E1" + } + }, + { + "id": "IBMS_54954070", + "startMs": 1765540200000, + "endMs": 1765543200000, + "live": false, + "nzBsaRatingString": "M", + "programme": { + "id": "mac_10799835", + "title": "Lone Star Law", + "synopsis": "To Catch A Poacher: A team of Wardens deploy on a multi-county night operation to stop spot lighters and road hunters. Texas Game Wardens check teal hunters on opening weekend. S1 E7" + } + }, + { + "id": "IBMS_54954071", + "startMs": 1765543200000, + "endMs": 1765546200000, + "live": false, + "nzBsaRatingString": "M", + "programme": { + "id": "mac_11481260", + "title": "Lone Star Law", + "synopsis": "Tempers Are Rising: Warden Boone is on a mission to arrest a trio of armed robbers on the run. And, warden Inman investigates a group of suspected deer hunters for trespassing. S6 E7" + } + }, + { + "id": "IBMS_54954072", + "startMs": 1765546200000, + "endMs": 1765549200000, + "live": false, + "nzBsaRatingString": "M", + "programme": { + "id": "mac_10853644", + "title": "Animal Cops Phoenix", + "synopsis": "Kittens On A Hot Roof: Investigators Ruthie and Kelly fight extreme heat on a roof to save four kittens. Mark rescues an abandoned Chihuahua whose hind legs were crushed by a car. S20 E5" + } + }, + { + "id": "IBMS_54954073", + "startMs": 1765549200000, + "endMs": 1765552200000, + "live": false, + "nzBsaRatingString": "M", + "programme": { + "id": "mac_11670888", + "title": "Expedition Bigfoot", + "synopsis": "Nocturnal Nightmare: When a Bigfoot tracker is taken from Prince of Wales Island, the team decides to split up. S4 E7" + } + }, + { + "id": "IBMS_54954074", + "startMs": 1765552200000, + "endMs": 1765555200000, + "live": false, + "nzBsaRatingString": "PG", + "programme": { + "id": "mac_10820345", + "title": "My Cat From Hell", + "synopsis": "Kitty Jail: Lara and David argue about locking Finn up in their guest bathroom, also known as kitty jail. Nancy and James are helpless as Molly chews on EVERYTHING. S3 E4" + } + }, + { + "id": "IBMS_54954075", + "startMs": 1765555200000, + "endMs": 1765558800000, + "live": false, + "nzBsaRatingString": "M", + "programme": { + "id": "mac_10820177", + "title": "Dr. Jeff: Rocky Mountain Vet", + "synopsis": "Feline Face Lift: Rookie vet Dr. Amy's surgery skills are pushed to the limit when fat cat Chubbs is rushed into the clinic with a serious facial injury. S1 E6" + } + }, + { + "id": "IBMS_54954076", + "startMs": 1765558800000, + "endMs": 1765562400000, + "live": false, + "nzBsaRatingString": "M", + "programme": { + "id": "mac_11540887", + "title": "Alaskan Killer Bigfoot", + "synopsis": "It Knows We're Here: The first days in Portlock have left the team members distinctly unsettled as they discover evidence of Nantinaq's hunting habits. S1 E2" + } + }, + { + "id": "IBMS_54954077", + "startMs": 1765562400000, + "endMs": 1765565400000, + "live": false, + "nzBsaRatingString": "M", + "programme": { + "id": "mac_11662548", + "title": "Expedition Bigfoot", + "synopsis": "Dual Pursuit: Evidence of a cloaked Bigfoot leads the team to investigate near an abandoned mine, and Bryce stumbles across evidence of a possible missing person. S4 E4" + } + }, + { + "id": "IBMS_54954078", + "startMs": 1765565400000, + "endMs": 1765568400000, + "live": false, + "nzBsaRatingString": "M", + "programme": { + "id": "mac_11670569", + "title": "Expedition Bigfoot", + "synopsis": "Low Tide, High Danger: A team member finds themselves trapped after pursuing a possible Bigfoot on a nearby island, and a witness reveals terrifying information. S4 E5" + } + }, + { + "id": "IBMS_54954079", + "startMs": 1765568400000, + "endMs": 1765571400000, + "live": false, + "nzBsaRatingString": "M", + "programme": { + "id": "mac_11670676", + "title": "Expedition Bigfoot", + "synopsis": "Tracking Terror: Strange sounds lead to a disturbing discovery, and the team tracks a mysterious creature as it makes its way to the mainland. S4 E6" + } + }, + { + "id": "IBMS_54954080", + "startMs": 1765571400000, + "endMs": 1765574400000, + "live": false, + "nzBsaRatingString": "M", + "programme": { + "id": "mac_11670888", + "title": "Expedition Bigfoot", + "synopsis": "Nocturnal Nightmare: When a Bigfoot tracker is taken from Prince of Wales Island, the team decides to split up. S4 E7" + } + }, + { + "id": "IBMS_54954081", + "startMs": 1765574400000, + "endMs": 1765577400000, + "live": false, + "nzBsaRatingString": "PG", + "programme": { + "id": "mac_10820289", + "title": "My Cat From Hell", + "synopsis": "Spitting Mad: Polly vomits and attacks Dorothy and Travis. Black Rose and Mathilda, battle for control over Steve and Dierdre's home. S2 E6" + } + }, + { + "id": "IBMS_54954082", + "startMs": 1765577400000, + "endMs": 1765580400000, + "live": false, + "nzBsaRatingString": "PG", + "programme": { + "id": "mac_10820297", + "title": "My Cat From Hell", + "synopsis": "Cat Fight!: Emile and Mike can't leave their two cats alone as one will viciously attack the other. Justin and Susanne can't agree on how to handle their energetic Bengal cat. S3 E1" + } + }, + { + "id": "IBMS_54954083", + "startMs": 1765580400000, + "endMs": 1765583400000, + "live": false, + "nzBsaRatingString": "PG", + "programme": { + "id": "mac_10820305", + "title": "My Cat From Hell", + "synopsis": "My Cat Or My Family: Xena used to be a sweet cuddly kitten but now she's turned into a mean, demon cat. A newly adopted kitten has changed the mood for Nick and Julie's cat, Gigi. S3 E2" + } + }, + { + "id": "IBMS_54954084", + "startMs": 1765583400000, + "endMs": 1765586400000, + "live": false, + "nzBsaRatingString": "PG", + "programme": { + "id": "mac_10820336", + "title": "My Cat From Hell", + "synopsis": "Kitty Dearest: Travis and Diane share joint custody of Oscar, but she can't take his obnoxious behaviour anymore. Vincent and Esther disagree on their approach in dealing with their cat. S3 E3" + } + }, + { + "id": "IBMS_54954085", + "startMs": 1765586400000, + "endMs": 1765589400000, + "live": false, + "nzBsaRatingString": "PG", + "programme": { + "id": "mac_10820345", + "title": "My Cat From Hell", + "synopsis": "Kitty Jail: Lara and David argue about locking Finn up in their guest bathroom, also known as kitty jail. Nancy and James are helpless as Molly chews on EVERYTHING. S3 E4" + } + }, + { + "id": "IBMS_54954086", + "startMs": 1765589400000, + "endMs": 1765592400000, + "live": false, + "nzBsaRatingString": "PG", + "programme": { + "id": "mac_11453310", + "title": "Pit Bulls & Parolees", + "synopsis": "Escaping Death: When an aggressive dog is in danger of being put down, Tia heads to South Carolina to save him. Plus, parolee Toney Converse takes on more responsibility. S11 E8" + } + }, + { + "id": "IBMS_54954087", + "startMs": 1765592400000, + "endMs": 1765595400000, + "live": false, + "nzBsaRatingString": "PG", + "programme": { + "id": "mac_11466798", + "title": "Pit Bulls & Parolees", + "synopsis": "The Villalobos Bowl: Before heading to New York City's Dog Bowl, Mariah and M2 prepare their most eligible rescues for the big day. Later, Tony and Earl discover a wounded stray. S11 E14" + } + }, + { + "id": "IBMS_54954088", + "startMs": 1765595400000, + "endMs": 1765598400000, + "live": false, + "nzBsaRatingString": "PG", + "programme": { + "id": "mac_11481221", + "title": "Pit Bulls & Parolees", + "synopsis": "Unexpected Development: Moe and Lizzy reveal they are expecting a child and the family band together to host a gender party. Plus, Lizzy goes the extra mile for her favourite dog. S11 E15" + } + }, + { + "id": "IBMS_54954089", + "startMs": 1765598400000, + "endMs": 1765601400000, + "live": false, + "nzBsaRatingString": "PG", + "programme": { + "id": "mac_11423629", + "title": "Pit Bulls & Parolees", + "synopsis": "Dogs In Prison: A Pennsylvania prison offers to take 20 dogs from Villalobos. An emaciated pit bull that was left on the side of the road fights for its life. S11 E4" + } + }, + { + "id": "IBMS_54954090", + "startMs": 1765601400000, + "endMs": 1765604400000, + "live": false, + "nzBsaRatingString": "PG", + "programme": { + "id": "mac_11446533", + "title": "Pit Bulls & Parolees", + "synopsis": "You Are Free: Tania struggles to rescue a puppy hiding under a shed. A potential adopter seeks a companion for her dog, and a beloved employee learns he's finally off parole. S11 E5" + } + }, + { + "id": "IBMS_54954091", + "startMs": 1765604400000, + "endMs": 1765607400000, + "live": false, + "nzBsaRatingString": "PG", + "programme": { + "id": "mac_11232875", + "title": "Crikey! It's The Irwins", + "synopsis": "Bindi & The Otters: Wes and Robert remove eggs from the nest of dangerous saltwater crocs Terra and Bosco. Meanwhile, Bindi tends to the training of otters Percival and Daisy. S1 E13" + } + }, + { + "id": "IBMS_54954092", + "startMs": 1765607400000, + "endMs": 1765611000000, + "live": false, + "nzBsaRatingString": "PG", + "programme": { + "id": "mac_11388311", + "title": "The Zoo", + "synopsis": "Wallaby In The City: The staff head to Manhattan to rescue a wallaby living in an apartment. A fruit bat learns to spread her wings, and some alligators move into their summer home. S4 E7" + } + }, + { + "id": "IBMS_54954093", + "startMs": 1765611000000, + "endMs": 1765614600000, + "live": false, + "nzBsaRatingString": "PG", + "programme": { + "id": "mac_10976299", + "title": "My Cat From Hell", + "synopsis": "Bully Cat: Jackson comes to the aid of a couple afraid to have a child for fear of their aggressive cat, Martini. S8 E10" + } + }, + { + "id": "IBMS_54954094", + "startMs": 1765614600000, + "endMs": 1765617600000, + "live": false, + "nzBsaRatingString": "PG", + "programme": { + "id": "mac_11587176", + "title": "Legendary Locations", + "synopsis": "Can You Dig It: Josh Gates digs deep to uncover the buried secrets of six legendary locations. Places include a treacherous island prison in Ireland. S2 E9" + } + }, + { + "id": "IBMS_54954095", + "startMs": 1765617600000, + "endMs": 1765620600000, + "live": false, + "nzBsaRatingString": "M", + "programme": { + "id": "mac_11670917", + "title": "Expedition Bigfoot", + "synopsis": "The Hand Of Bigfoot: Following their discovery of mysterious handprints, the team races against the sun to find definitive proof of Bigfoot in Alaska. S4 E8" + } + }, + { + "id": "IBMS_54954096", + "startMs": 1765620600000, + "endMs": 1765623600000, + "live": false, + "nzBsaRatingString": "PG", + "programme": { + "id": "mac_10831800", + "title": "My Cat From Hell", + "synopsis": "Roscoe The Menace: Terror cat, Mufasa, is threatening the planning of Rudy and Andrea's perfect wedding. Ruben and Danielle's cat Roscoe is a menace. S3 E5" + } + }, + { + "id": "IBMS_54954097", + "startMs": 1765623600000, + "endMs": 1765626600000, + "live": false, + "nzBsaRatingString": "PG", + "programme": { + "id": "mac_11232875", + "title": "Crikey! It's The Irwins", + "synopsis": "Bindi & The Otters: Wes and Robert remove eggs from the nest of dangerous saltwater crocs Terra and Bosco. Meanwhile, Bindi tends to the training of otters Percival and Daisy. S1 E13" + } + } + ] + } + }, + { + "id": "CNTV", + "title": "Country TV", + "number": 81, + "tileImage": { + "uri": "https://images.skyone.co.nz/contentful/dcojl03mw8gy/5vqqGf82aldmBZB5c2Um5y/12413977f84a8dd8cc1f86e2bd859339/Country_TV.png" + }, + "slotsForDay": { + "slots": [ + { + "id": "IBMS_55092401", + "startMs": 1765535400000, + "endMs": 1765539000000, + "live": false, + "nzBsaRatingString": "G", + "programme": { + "id": "mac_ptc1890768758", + "title": "Longines League Of Nations", + "synopsis": "Highlights from the Longines League of Nations 2025 season. Today we come from St Tropez-Gassin, France. L4." + } + }, + { + "id": "IBMS_55092402", + "startMs": 1765539000000, + "endMs": 1765542600000, + "live": false, + "nzBsaRatingString": "G", + "programme": { + "id": "mac_ptc153164558", + "title": "Landline", + "synopsis": "Landline brings you informative, topical and heartwarming stories from across the Tasman. Plus commodities and financial updates as it affects Australian Farmers. Exclusive to Country TV." + } + }, + { + "id": "IBMS_55092403", + "startMs": 1765542600000, + "endMs": 1765544400000, + "live": false, + "nzBsaRatingString": "G", + "programme": { + "id": "mac_ptc1091379763", + "title": "Farmweek", + "synopsis": "A weekly agricultural news show devoted to keeping the agricultural community up-to-date on government agricultural programmes, changes in U.S. farm policy, and general agricultural news. S19." + } + }, + { + "id": "IBMS_55092404", + "startMs": 1765544400000, + "endMs": 1765546200000, + "live": false, + "nzBsaRatingString": "G", + "programme": { + "id": "mac_ptc537597310", + "title": "Steven Raichlen's Project Smoke", + "synopsis": "Using cool tools, fragrant fuels, and a world-class collection of smokers and grills, Steven Raichlen takes you on a tour of traditional and cutting-edge smoking techniques with the intelligence, substance, and style." + } + }, + { + "id": "IBMS_55092405", + "startMs": 1765546200000, + "endMs": 1765548000000, + "live": false, + "nzBsaRatingString": "G", + "programme": { + "id": "mac_ptc1339257836", + "title": "Ag PhD", + "synopsis": "Brothers Brian & Darren Hefty host a show full of unbiased information for farmers, helping them to produce better and more profitable crops. S24." + } + }, + { + "id": "IBMS_55092406", + "startMs": 1765548000000, + "endMs": 1765549800000, + "live": false, + "nzBsaRatingString": "G", + "programme": { + "id": "mac_ptc93735021", + "title": "Welcome to my Farm", + "synopsis": "Join Lisa Steele as she welcomes viewers to her farm in the woods of Maine. Each week, Lisa cooks and DIYs her way from the coop and garden to the kitchen and visits nearby locales to gather fresh, seasonal ingredients for delicious recipes. S2" + } + }, + { + "id": "IBMS_55092407", + "startMs": 1765549800000, + "endMs": 1765551600000, + "live": false, + "nzBsaRatingString": "G", + "programme": { + "id": "mac_ptc2101382556", + "title": "Modern Pioneering With Georgia Pell", + "synopsis": "Georgia visits two women who are reclaiming the land that their ancestors once worked, while serving their community through food, farming and ranching. S2 Ep 4." + } + }, + { + "id": "IBMS_55092408", + "startMs": 1765551600000, + "endMs": 1765555200000, + "live": false, + "nzBsaRatingString": "G", + "programme": { + "id": "mac_ptc1527805760", + "title": "RV Explorer - Chasing the Sunset", + "synopsis": "It’s a long drive from Auckland to Pipiriki, but Jonathon and Anne Marie enjoyed travelling through the Central Plateau, on to Taumaranui, then stopping for the night at Pipiriki, in the far reaches of the Whanganui River. S1 Ep 2." + } + }, + { + "id": "IBMS_55092409", + "startMs": 1765555200000, + "endMs": 1765557000000, + "live": false, + "nzBsaRatingString": "G", + "programme": { + "id": "mac_ptc1432580802", + "title": "Fishy Business", + "synopsis": "Adam and Darren share some of the great fishing and diving highlights of recent shows with out takes and unseen clips. S7 Ep 10." + } + }, + { + "id": "IBMS_55092410", + "startMs": 1765557000000, + "endMs": 1765558800000, + "live": false, + "nzBsaRatingString": "G", + "programme": { + "id": "mac_ptc828019387", + "title": "Big Coast", + "synopsis": "August is commonly referred to as Hawgust in these parts…when the biggest and strongest Chinook salmon of the season run Southbound! S16 Ep 9." + } + }, + { + "id": "IBMS_55092411", + "startMs": 1765558800000, + "endMs": 1765562400000, + "live": false, + "nzBsaRatingString": "G", + "programme": { + "id": "mac_ptc774258490", + "title": "Landline", + "synopsis": "Landline brings you informative, topical and heartwarming stories from across the Tasman. Plus commodities and financial updates as it affects Australian Farmers. Exclusive to Country TV." + } + }, + { + "id": "IBMS_55092412", + "startMs": 1765562400000, + "endMs": 1765564200000, + "live": false, + "nzBsaRatingString": "G", + "programme": { + "id": "mac_ptc436197617", + "title": "Farmweek", + "synopsis": "A weekly agricultural news show devoted to keeping the agricultural community up-to-date on government agricultural programmes, changes in U.S. farm policy, and general agricultural news. S19." + } + }, + { + "id": "IBMS_55092413", + "startMs": 1765564200000, + "endMs": 1765566000000, + "live": false, + "nzBsaRatingString": "G", + "programme": { + "id": "mac_ptc848672743", + "title": "Steven Raichlen's Project Smoke", + "synopsis": "Using cool tools, fragrant fuels, and a world-class collection of smokers and grills, Steven Raichlen takes you on a tour of traditional and cutting-edge smoking techniques with the intelligence, substance, and style." + } + }, + { + "id": "IBMS_55092414", + "startMs": 1765566000000, + "endMs": 1765567800000, + "live": false, + "nzBsaRatingString": "G", + "programme": { + "id": "mac_ptc2081378317", + "title": "Ag PhD", + "synopsis": "Brothers Brian & Darren Hefty host a show full of unbiased information for farmers, helping them to produce better and more profitable crops. S24." + } + }, + { + "id": "IBMS_55092415", + "startMs": 1765567800000, + "endMs": 1765569600000, + "live": false, + "nzBsaRatingString": "G", + "programme": { + "id": "mac_ptc1052457168", + "title": "Welcome to my Farm", + "synopsis": "Join Lisa Steele as she welcomes viewers to her farm in the woods of Maine. Each week, Lisa cooks and DIYs her way from the coop and garden to the kitchen and visits nearby locales to gather fresh, seasonal ingredients for delicious recipes. S2" + } + }, + { + "id": "IBMS_55365998", + "startMs": 1765569600000, + "endMs": 1765573200000, + "live": false, + "nzBsaRatingString": null, + "programme": { + "id": "mac_ptc452295330", + "title": "Maeza Grand Prix 2025", + "synopsis": "Highlights of the CSI3* Maeza Asturias Event 2025." + } + }, + { + "id": "IBMS_55092417", + "startMs": 1765573200000, + "endMs": 1765575000000, + "live": false, + "nzBsaRatingString": "G", + "programme": { + "id": "mac_ptc1668448719", + "title": "Young Riders", + "synopsis": "Our Young Riders are fine tuning themselves and their horses for the biggest annual equestrian event, Sam shares some tips with Annie and Tessa, and is Sophia ready for a comeback? S4 Ep7." + } + }, + { + "id": "IBMS_55092418", + "startMs": 1765575000000, + "endMs": 1765576800000, + "live": false, + "nzBsaRatingString": "G", + "programme": { + "id": "mac_ptc250988802", + "title": "Jump Saudi", + "synopsis": "Highlights from Jump Saudi 2024 season." + } + }, + { + "id": "IBMS_55092419", + "startMs": 1765576800000, + "endMs": 1765580400000, + "live": false, + "nzBsaRatingString": "G", + "programme": { + "id": "mac_ptc484900072", + "title": "Longines League Of Nations", + "synopsis": "Highlights from the Longines League of Nations 2025 season. Today we come from St Tropez-Gassin, France. L4." + } + }, + { + "id": "IBMS_55092420", + "startMs": 1765580400000, + "endMs": 1765582200000, + "live": false, + "nzBsaRatingString": "G", + "programme": { + "id": "mac_ptc880496385", + "title": "Bluegrass Ridge", + "synopsis": "A weekly half hour program hosted by I.B.M.A. (International Bluegrass Music Association) bluegrass music artists NU-BLU, plus interviews and behind the scenes video shoots. S18." + } + }, + { + "id": "IBMS_55092421", + "startMs": 1765582200000, + "endMs": 1765584000000, + "live": false, + "nzBsaRatingString": "G", + "programme": { + "id": "mac_ptc1007641348", + "title": "Jimmy Bowen & Friends", + "synopsis": "Jimmy Bowen performs live with a featured guest artist each week. S10." + } + }, + { + "id": "IBMS_55092422", + "startMs": 1765584000000, + "endMs": 1765587600000, + "live": false, + "nzBsaRatingString": "G", + "programme": { + "id": "mac_ptc1792094610", + "title": "NZ Rally Championships", + "synopsis": "6 Rounds across both Islands in the New Zealand Rally championship. Watch Hayden Padden try and win it again, can he beat the up and coming young guns. 3 rounds in the South Island on some of the best roads in the world" + } + }, + { + "id": "IBMS_55092423", + "startMs": 1765587600000, + "endMs": 1765591200000, + "live": false, + "nzBsaRatingString": "G", + "programme": { + "id": "mac_ptc1216337580", + "title": "British Rally Championships", + "synopsis": "The British Rallycross championship is 6 rounds from three venues featuring the fastest Rallycross cars in the world. Action packed 3 minute races to find out who will be British Rallycross champion." + } + }, + { + "id": "IBMS_55092424", + "startMs": 1765591200000, + "endMs": 1765594800000, + "live": false, + "nzBsaRatingString": "G", + "programme": { + "id": "mac_ptc54130330", + "title": "Pro Bull Riders - Teams", + "synopsis": "Each event, comprising three competition days, will feature all eight (8) teams in a head-to-head game match-up, with the weekly event winner determined by team performance across its three games and special bonus rounds. 2025." + } + }, + { + "id": "IBMS_55092425", + "startMs": 1765594800000, + "endMs": 1765598400000, + "live": false, + "nzBsaRatingString": "G", + "programme": { + "id": "mac_ptc1543823737", + "title": "Circuit Boats", + "synopsis": "Highlights from the Circuit Boat Championship 2025 season." + } + }, + { + "id": "IBMS_55092426", + "startMs": 1765598400000, + "endMs": 1765602000000, + "live": false, + "nzBsaRatingString": "G", + "programme": { + "id": "mac_ptc1302576653", + "title": "NZ Jet Sprint Championships", + "synopsis": "Some of the fastest action on water anywhere. This unique action filled sport invented in New Zealand is fast, furious and edge of the seat stuff." + } + }, + { + "id": "IBMS_55092427", + "startMs": 1765602000000, + "endMs": 1765603800000, + "live": false, + "nzBsaRatingString": "G", + "programme": { + "id": "mac_ptc2135254066", + "title": "Country Fix", + "synopsis": "A weekly half hour program hosted by the country music artists themselves. Country Fix features music videos and from Country’s biggest artists like Thomas Rhett, Tim McGraw, Kacey Musgraves, Carrie Underwood, etc. Each" + } + }, + { + "id": "IBMS_55092428", + "startMs": 1765603800000, + "endMs": 1765605600000, + "live": false, + "nzBsaRatingString": "G", + "programme": { + "id": "mac_ptc605739976", + "title": "Bluegrass Ridge", + "synopsis": "A weekly half hour program hosted by I.B.M.A. (International Bluegrass Music Association) bluegrass music artists NU-BLU, plus interviews and behind the scenes video shoots. S18." + } + }, + { + "id": "IBMS_55092429", + "startMs": 1765605600000, + "endMs": 1765607400000, + "live": false, + "nzBsaRatingString": "G", + "programme": { + "id": "mac_ptc117186519", + "title": "Jimmy Bowen & Friends", + "synopsis": "Jimmy Bowen performs live with a featured guest artist each week. S10." + } + }, + { + "id": "IBMS_55092430", + "startMs": 1765607400000, + "endMs": 1765609200000, + "live": false, + "nzBsaRatingString": "G", + "programme": { + "id": "mac_ptc1905734315", + "title": "Country Classics", + "synopsis": "A weekly half hour program hosted by Rooster 101 Cayman radio DJ, Bob Moseley.  Country Classics features music videos and interviews from country classic stars such as George Strait, Willie Nelson, George Jones, Tanya T" + } + }, + { + "id": "IBMS_55092431", + "startMs": 1765609200000, + "endMs": 1765612800000, + "live": false, + "nzBsaRatingString": "G", + "programme": { + "id": "mac_ptc716584356", + "title": "NZ Rally Championships", + "synopsis": "6 Rounds across both Islands in the New Zealand Rally championship. Watch Hayden Padden try and win it again, can he beat the up and coming young guns. 3 rounds in the South Island on some of the best roads in the world" + } + }, + { + "id": "IBMS_55092432", + "startMs": 1765612800000, + "endMs": 1765616400000, + "live": false, + "nzBsaRatingString": "G", + "programme": { + "id": "mac_ptc1545880777", + "title": "RV Explorer - Chasing the Sunset", + "synopsis": "It’s a long drive from Auckland to Pipiriki, but Jonathon and Anne Marie enjoyed travelling through the Central Plateau, on to Taumaranui, then stopping for the night at Pipiriki, in the far reaches of the Whanganui River. S1 Ep 2." + } + }, + { + "id": "IBMS_55092433", + "startMs": 1765616400000, + "endMs": 1765618200000, + "live": false, + "nzBsaRatingString": "G", + "programme": { + "id": "mac_ptc872692414", + "title": "Steven Raichlen's Planet Barbecue", + "synopsis": "The sizzling new series that explores the world of live-fire cooking. Each week, we focus on a different grill culture, from Mexican to Argentinian to Thai, with guest grill masters and hunger-inducing field trips. Taped" + } + }, + { + "id": "IBMS_55092434", + "startMs": 1765618200000, + "endMs": 1765620000000, + "live": false, + "nzBsaRatingString": "G", + "programme": { + "id": "mac_ptc352491027", + "title": "Big Coast", + "synopsis": "August is commonly referred to as Hawgust in these parts…when the biggest and strongest Chinook salmon of the season run Southbound! S16 Ep 9." + } + }, + { + "id": "IBMS_55092435", + "startMs": 1765620000000, + "endMs": 1765621800000, + "live": false, + "nzBsaRatingString": "G", + "programme": { + "id": "mac_ptc34143393", + "title": "Fishy Business", + "synopsis": "Adam and Darren share some of the great fishing and diving highlights of recent shows with out takes and unseen clips. S7 Ep 10." + } + }, + { + "id": "IBMS_55092436", + "startMs": 1765621800000, + "endMs": 1765625400000, + "live": false, + "nzBsaRatingString": "PG", + "programme": { + "id": "mac_ptc1610312530", + "title": "Bush Bee Man", + "synopsis": "Hosted by Riverland farmer Mark, we follow his journey into the wacky and wonderful world of bee keeping. It’s a world full of characters and tips Mark discovery in his journey to become the Bush Bee man." + } + } + ] + } + }, + { + "id": "0057", + "title": "Face TV", + "number": 83, + "tileImage": { + "uri": "https://images.skyone.co.nz/contentful/dcojl03mw8gy/5Rk6qa6HHJpKVdycqtva8L/45f6b2216bcf32ec743da0bb95af4024/FACE_TV_BLANK_RGB.png" + }, + "slotsForDay": { + "slots": [ + { + "id": "IBMS_55353803", + "startMs": 1765537200000, + "endMs": 1765539000000, + "live": false, + "nzBsaRatingString": "G", + "programme": { + "id": "mac_ptc571405884", + "title": "Health, Wellbeing & Lifestyle", + "synopsis": "A show that educates, inspires the community on Health, Wellingbeing & Lifestyle" + } + }, + { + "id": "IBMS_55353804", + "startMs": 1765539000000, + "endMs": 1765540800000, + "live": false, + "nzBsaRatingString": "G", + "programme": { + "id": "mac_ptc1671947880", + "title": "Marlaina's Kitchen", + "synopsis": "\"Spice is nice\" Join us in Marlaina's Kitchen for ways to spice up your life" + } + }, + { + "id": "IBMS_55353805", + "startMs": 1765540800000, + "endMs": 1765542600000, + "live": false, + "nzBsaRatingString": "G", + "programme": { + "id": "mac_ptc137206990", + "title": "BTS with Jess", + "synopsis": "A show about youth arts, interviews and demonstrations of art creation." + } + }, + { + "id": "IBMS_55353806", + "startMs": 1765542600000, + "endMs": 1765544400000, + "live": false, + "nzBsaRatingString": "G", + "programme": { + "id": "mac_ptc837621263", + "title": "Cycle with Serafina", + "synopsis": "Join Serafina as she shares, promotes and inspires cycling around Australia and New Zealand." + } + }, + { + "id": "IBMS_55353807", + "startMs": 1765544400000, + "endMs": 1765546200000, + "live": false, + "nzBsaRatingString": "G", + "programme": { + "id": "mac_ptc1420916584", + "title": "Foreign Influence", + "synopsis": "Hosted by Elina Reddy - What do recent immigrants think of their lives in Australia" + } + }, + { + "id": "IBMS_55353808", + "startMs": 1765546200000, + "endMs": 1765548000000, + "live": false, + "nzBsaRatingString": "PG", + "programme": { + "id": "mac_ptc947928922", + "title": "Let's Glam It Up!", + "synopsis": "A local fashion and beauty show" + } + }, + { + "id": "IBMS_55353809", + "startMs": 1765548000000, + "endMs": 1765549800000, + "live": false, + "nzBsaRatingString": "G", + "programme": { + "id": "mac_ptc1963722776", + "title": "Get Hooked", + "synopsis": "Get Hooked with Skip - Follow Skip & her women crew on fishing adventures around Australia" + } + }, + { + "id": "IBMS_55353810", + "startMs": 1765549800000, + "endMs": 1765551600000, + "live": false, + "nzBsaRatingString": "G", + "programme": { + "id": "mac_ptc1759819355", + "title": "In Good Shape" + } + }, + { + "id": "IBMS_55353811", + "startMs": 1765551600000, + "endMs": 1765553400000, + "live": false, + "nzBsaRatingString": "G", + "programme": { + "id": "mac_ptc1557717251", + "title": "Infomercials", + "synopsis": "Products from Global Shop Direct" + } + }, + { + "id": "IBMS_55353812", + "startMs": 1765553400000, + "endMs": 1765558800000, + "live": false, + "nzBsaRatingString": "PG", + "programme": { + "id": "mac_ptc1009157745", + "title": "Classic Movies" + } + }, + { + "id": "IBMS_55353813", + "startMs": 1765558800000, + "endMs": 1765560600000, + "live": false, + "nzBsaRatingString": "G", + "programme": { + "id": "mac_ptc1311368571", + "title": "Happy Fisherman", + "synopsis": "Hosted by Tibby Flora, all about fishing and angling adventures" + } + }, + { + "id": "IBMS_55353814", + "startMs": 1765560600000, + "endMs": 1765562400000, + "live": false, + "nzBsaRatingString": "PG", + "programme": { + "id": "mac_ptc1505102197", + "title": "Legends with BEVO", + "synopsis": "Bevan \"Bevo\" Jones interviews Sports and Comedy legends" + } + }, + { + "id": "IBMS_55353815", + "startMs": 1765562400000, + "endMs": 1765564200000, + "live": false, + "nzBsaRatingString": "G", + "programme": { + "id": "mac_ptc609008527", + "title": "Tomorrow Today", + "synopsis": "Tomorrow Today: A DW programme on the future" + } + }, + { + "id": "IBMS_55353816", + "startMs": 1765564200000, + "endMs": 1765566000000, + "live": false, + "nzBsaRatingString": "G", + "programme": { + "id": "mac_ptc1890013689", + "title": "Focus On Europe", + "synopsis": "Keen on Europe and its culture?. You'll like Focus on Europe" + } + }, + { + "id": "IBMS_55353817", + "startMs": 1765566000000, + "endMs": 1765567800000, + "live": false, + "nzBsaRatingString": "G", + "programme": { + "id": "mac_ptc872431531", + "title": "30 with Guyon Espiner", + "synopsis": "Guyon Espiner taks in-depth to some of the most interesting & influential people in our world." + } + }, + { + "id": "IBMS_55353818", + "startMs": 1765567800000, + "endMs": 1765569600000, + "live": false, + "nzBsaRatingString": "G", + "programme": { + "id": "mac_ptc382450728", + "title": "Global Us", + "synopsis": "Global Us provides unexpected insights and exemplary solutions" + } + }, + { + "id": "IBMS_55353819", + "startMs": 1765569600000, + "endMs": 1765573200000, + "live": false, + "nzBsaRatingString": "G", + "programme": { + "id": "mac_ptc1353431408", + "title": "Democracy Now", + "synopsis": "Democracy Now: Democracy USA style." + } + }, + { + "id": "IBMS_55353820", + "startMs": 1765573200000, + "endMs": 1765578600000, + "live": false, + "nzBsaRatingString": "G", + "programme": { + "id": "mac_ptc88202322", + "title": "Retro Motorsport", + "synopsis": "A look back and a catch up on some of our exciting historic racing moments." + } + }, + { + "id": "IBMS_55353821", + "startMs": 1765578600000, + "endMs": 1765580400000, + "live": false, + "nzBsaRatingString": "G", + "programme": { + "id": "mac_ptc1558308672", + "title": "Infomercials", + "synopsis": "Products from Global Shop Direct" + } + }, + { + "id": "IBMS_55353822", + "startMs": 1765580400000, + "endMs": 1765582200000, + "live": false, + "nzBsaRatingString": "G", + "programme": { + "id": "mac_ptc1890058823", + "title": "DW Documentary", + "synopsis": "Another two 30 minute, fascinating documentaries from DW" + } + }, + { + "id": "IBMS_55353823", + "startMs": 1765582200000, + "endMs": 1765584000000, + "live": false, + "nzBsaRatingString": "G", + "programme": { + "id": "mac_ptc777331416", + "title": "Boating NZ", + "synopsis": "The latest in boating news from the boating Magazine Boating NZ" + } + }, + { + "id": "IBMS_55353824", + "startMs": 1765584000000, + "endMs": 1765585800000, + "live": false, + "nzBsaRatingString": "G", + "programme": { + "id": "mac_ptc2025028246", + "title": "Bumper2Bumper", + "synopsis": "Classic Car TV Show with classic car culture" + } + }, + { + "id": "IBMS_55353825", + "startMs": 1765585800000, + "endMs": 1765587600000, + "live": false, + "nzBsaRatingString": "G", + "programme": { + "id": "mac_ptc992169485", + "title": "Classic Restos", + "synopsis": "From Australia its restoration of the classics. Cars that is." + } + }, + { + "id": "IBMS_55353826", + "startMs": 1765587600000, + "endMs": 1765591200000, + "live": false, + "nzBsaRatingString": "G", + "programme": { + "id": "mac_ptc788958122", + "title": "Tarmac Life", + "synopsis": "New Zealand's Premier Motoring Show" + } + }, + { + "id": "IBMS_55353827", + "startMs": 1765591200000, + "endMs": 1765593000000, + "live": false, + "nzBsaRatingString": "G", + "programme": { + "id": "mac_ptc1234501843", + "title": "Infomercials", + "synopsis": "Products from Global Shop Direct" + } + }, + { + "id": "IBMS_55353828", + "startMs": 1765593000000, + "endMs": 1765596600000, + "live": false, + "nzBsaRatingString": "G", + "programme": { + "id": "mac_ptc1924178790", + "title": "SupercarsNZ", + "synopsis": "Highlights from NZ Supercars SIM Racing" + } + }, + { + "id": "IBMS_55353829", + "startMs": 1765596600000, + "endMs": 1765602000000, + "live": false, + "nzBsaRatingString": "G", + "programme": { + "id": "mac_ptc851918343", + "title": "Retro Motorsport", + "synopsis": "A look back and a catch up on some of our exciting historic racing moments." + } + }, + { + "id": "IBMS_55353830", + "startMs": 1765602000000, + "endMs": 1765605600000, + "live": false, + "nzBsaRatingString": "G", + "programme": { + "id": "mac_ptc782502723", + "title": "ECO Africa ECO India", + "synopsis": "Another two 30 minute, fascinating documentaries from DW" + } + }, + { + "id": "IBMS_55353831", + "startMs": 1765605600000, + "endMs": 1765611000000, + "live": false, + "nzBsaRatingString": "PG", + "programme": { + "id": "mac_ptc1009157745", + "title": "Classic Movies" + } + }, + { + "id": "IBMS_55353832", + "startMs": 1765611000000, + "endMs": 1765618200000, + "live": false, + "nzBsaRatingString": "PG", + "programme": { + "id": "mac_ptc1539666694", + "title": "Saturday Night at the Movies" + } + }, + { + "id": "IBMS_55353833", + "startMs": 1765618200000, + "endMs": 1765623600000, + "live": false, + "nzBsaRatingString": "PG", + "programme": { + "id": "mac_ptc1009157745", + "title": "Classic Movies" + } + }, + { + "id": "IBMS_55353834", + "startMs": 1765623600000, + "endMs": 1765625400000, + "live": false, + "nzBsaRatingString": "G", + "programme": { + "id": "mac_ptc156533977", + "title": "DW Documentary", + "synopsis": "Another two 30 minute, fascinating documentaries from DW" + } + } + ] + } + }, + { + "id": "NEWS", + "title": "Sky News", + "number": 85, + "tileImage": { + "uri": "https://images.skyone.co.nz/contentful/dcojl03mw8gy/517TOXDfiWc7rG4t0iC0r2/4060217d7e846753cb73cca856ce8aeb/Sky_News.png" + }, + "slotsForDay": { + "slots": [ + { + "id": "IBMS_55381296", + "startMs": 1765535400000, + "endMs": 1765538100000, + "live": false, + "nzBsaRatingString": null, + "programme": { + "id": "mac_ptc484479690", + "title": "The Media Show", + "synopsis": "Jack Houghton dissects the highs and lows of news reporting, calls out fake news and puts media behaviour under the spotlight." + } + }, + { + "id": "IBMS_55381297", + "startMs": 1765538100000, + "endMs": 1765540800000, + "live": false, + "nzBsaRatingString": null, + "programme": { + "id": "mac_ptc832620369", + "title": "NewsNight", + "synopsis": "The latest late night news, sport and business including live coverage of key news events and analysis." + } + }, + { + "id": "IBMS_55381298", + "startMs": 1765540800000, + "endMs": 1765544400000, + "live": false, + "nzBsaRatingString": null, + "programme": { + "id": "mac_ptc718465049", + "title": "NewsNight", + "synopsis": "The latest late night news, sport and business including live coverage of key news events and analysis." + } + }, + { + "id": "IBMS_55381299", + "startMs": 1765544400000, + "endMs": 1765548000000, + "live": false, + "nzBsaRatingString": null, + "programme": { + "id": "mac_ptc630633269", + "title": "NewsNight", + "synopsis": "The latest late night news, sport and business including live coverage of key news events and analysis." + } + }, + { + "id": "IBMS_55381300", + "startMs": 1765548000000, + "endMs": 1765551600000, + "live": false, + "nzBsaRatingString": null, + "programme": { + "id": "mac_ptc1549132252", + "title": "Sky News UK LIVE", + "synopsis": "Britain's award winning SKY NEWS brings you the latest news from across the world and the UK." + } + }, + { + "id": "IBMS_55381301", + "startMs": 1765551600000, + "endMs": 1765555200000, + "live": false, + "nzBsaRatingString": null, + "programme": { + "id": "mac_ptc726502608", + "title": "Sky News UK LIVE", + "synopsis": "Britain's award winning SKY NEWS brings you the latest news from across the world and the UK." + } + }, + { + "id": "IBMS_55381302", + "startMs": 1765555200000, + "endMs": 1765558800000, + "live": false, + "nzBsaRatingString": null, + "programme": { + "id": "mac_ptc2014729058", + "title": "Sky News UK LIVE", + "synopsis": "Britain's award winning SKY NEWS brings you the latest news from across the world and the UK." + } + }, + { + "id": "IBMS_55381303", + "startMs": 1765558800000, + "endMs": 1765562400000, + "live": false, + "nzBsaRatingString": null, + "programme": { + "id": "mac_ptc1184222022", + "title": "Sky News UK LIVE", + "synopsis": "Britain's award winning SKY NEWS brings you the latest news from across the world and the UK." + } + }, + { + "id": "IBMS_55381304", + "startMs": 1765562400000, + "endMs": 1765566000000, + "live": false, + "nzBsaRatingString": null, + "programme": { + "id": "mac_ptc1838695896", + "title": "Sky News UK LIVE", + "synopsis": "Britain's award winning SKY NEWS brings you the latest news from across the world and the UK." + } + }, + { + "id": "IBMS_55381305", + "startMs": 1765566000000, + "endMs": 1765569600000, + "live": false, + "nzBsaRatingString": null, + "programme": { + "id": "mac_ptc2135376056", + "title": "Weekend First Edition", + "synopsis": "Start your news day with Alex Thomas as he brings you the most up-to-date news and headlines from across Australia and the world." + } + }, + { + "id": "IBMS_55381306", + "startMs": 1765569600000, + "endMs": 1765573200000, + "live": false, + "nzBsaRatingString": null, + "programme": { + "id": "mac_ptc1147251849", + "title": "Weekend First Edition", + "synopsis": "Start your news day with Alex Thomas as he brings you the most up-to-date news and headlines from across Australia and the world." + } + }, + { + "id": "IBMS_55381307", + "startMs": 1765573200000, + "endMs": 1765576800000, + "live": false, + "nzBsaRatingString": null, + "programme": { + "id": "mac_ptc1330343194", + "title": "Weekend First Edition", + "synopsis": "Start your news day with Alex Thomas as he brings you the most up-to-date news and headlines from across Australia and the world." + } + }, + { + "id": "IBMS_55381308", + "startMs": 1765576800000, + "endMs": 1765580400000, + "live": false, + "nzBsaRatingString": null, + "programme": { + "id": "mac_ptc1531288385", + "title": "Weekend First Edition", + "synopsis": "Start your news day with Alex Thomas as he brings you the most up-to-date news and headlines from across Australia and the world." + } + }, + { + "id": "IBMS_55381309", + "startMs": 1765580400000, + "endMs": 1765584000000, + "live": false, + "nzBsaRatingString": null, + "programme": { + "id": "mac_ptc78314048", + "title": "Weekend Newsday", + "synopsis": "Jaynie Seal drives the news as it happens including sharp analysis, detailed interviews and everything you need to stay across latest developments." + } + }, + { + "id": "IBMS_55381310", + "startMs": 1765584000000, + "endMs": 1765587600000, + "live": false, + "nzBsaRatingString": null, + "programme": { + "id": "mac_ptc571884420", + "title": "Danica De Giorgio", + "synopsis": "Encore: Friday’s first dose of fearless opinions with Danica and her team of contributors." + } + }, + { + "id": "IBMS_55381311", + "startMs": 1765587600000, + "endMs": 1765591200000, + "live": false, + "nzBsaRatingString": null, + "programme": { + "id": "mac_ptc186613864", + "title": "Weekend Newsday", + "synopsis": "Jaynie Seal drives the news as it happens including sharp analysis, detailed interviews and everything you need to stay across latest developments." + } + }, + { + "id": "IBMS_55381312", + "startMs": 1765591200000, + "endMs": 1765594800000, + "live": false, + "nzBsaRatingString": null, + "programme": { + "id": "mac_ptc1589767804", + "title": "Weekend Newsday", + "synopsis": "Jaynie Seal drives the news as it happens including sharp analysis, detailed interviews and everything you need to stay across latest developments." + } + }, + { + "id": "IBMS_55381313", + "startMs": 1765594800000, + "endMs": 1765598400000, + "live": false, + "nzBsaRatingString": null, + "programme": { + "id": "mac_ptc965299284", + "title": "Steve Price", + "synopsis": "Encore: One of Australia’s most experienced journalists, Steve Price, with his no-nonsense opinions on the day’s biggest news." + } + }, + { + "id": "IBMS_55381314", + "startMs": 1765598400000, + "endMs": 1765602000000, + "live": false, + "nzBsaRatingString": null, + "programme": { + "id": "mac_ptc2115580473", + "title": "Weekend Newsday", + "synopsis": "Jaynie Seal drives the news as it happens including sharp analysis, detailed interviews and everything you need to stay across latest developments." + } + }, + { + "id": "IBMS_55381315", + "startMs": 1765602000000, + "endMs": 1765605600000, + "live": false, + "nzBsaRatingString": null, + "programme": { + "id": "mac_ptc1843169879", + "title": "Weekend Newsday", + "synopsis": "Jaynie Seal drives the news as it happens including sharp analysis, detailed interviews and everything you need to stay across latest developments." + } + }, + { + "id": "IBMS_55381316", + "startMs": 1765605600000, + "endMs": 1765609200000, + "live": false, + "nzBsaRatingString": null, + "programme": { + "id": "mac_ptc525104472", + "title": "NewsNight", + "synopsis": "The latest news, sport and business including live coverage of key news events and analysis." + } + }, + { + "id": "IBMS_55381317", + "startMs": 1765609200000, + "endMs": 1765612800000, + "live": false, + "nzBsaRatingString": null, + "programme": { + "id": "mac_ptc408358090", + "title": "The World According To Rowan Dean", + "synopsis": "Encore: Unique views and provocative insights from the original outsider, Rowan Dean." + } + }, + { + "id": "IBMS_55381318", + "startMs": 1765612800000, + "endMs": 1765616400000, + "live": false, + "nzBsaRatingString": null, + "programme": { + "id": "mac_ptc2119131834", + "title": "The U.S. Report", + "synopsis": "Encore: James Morrow takes a deep dive into U.S. politics, giving his unique and hilarious perspective on all things White House and Capitol Hill." + } + }, + { + "id": "IBMS_55381319", + "startMs": 1765616400000, + "endMs": 1765618200000, + "live": false, + "nzBsaRatingString": null, + "programme": { + "id": "mac_ptc82568840", + "title": "LEFTIES LOSING IT", + "synopsis": "Encore: The name says it all! Rita Panahi’s unique take on what’s winding people up." + } + }, + { + "id": "IBMS_55381320", + "startMs": 1765618200000, + "endMs": 1765620900000, + "live": false, + "nzBsaRatingString": null, + "programme": { + "id": "mac_ptc1426840429", + "title": "The Media Show", + "synopsis": "Encore: Jack Houghton dissects the highs and lows of news reporting, calls out fake news and puts media behaviour under the spotlight." + } + }, + { + "id": "IBMS_55381321", + "startMs": 1765620900000, + "endMs": 1765623600000, + "live": false, + "nzBsaRatingString": null, + "programme": { + "id": "mac_ptc540670041", + "title": "NewsNight", + "synopsis": "The latest late night news, sport and business including live coverage of key news events and analysis." + } + }, + { + "id": "IBMS_55381322", + "startMs": 1765623600000, + "endMs": 1765627200000, + "live": false, + "nzBsaRatingString": null, + "programme": { + "id": "mac_ptc861981041", + "title": "NewsNight", + "synopsis": "The latest late night news, sport and business including live coverage of key news events and analysis." + } + } + ] + } + }, + { + "id": "GOTV", + "title": "Parliament", + "number": 86, + "tileImage": { + "uri": "https://images.skyone.co.nz/contentful/dcojl03mw8gy/1UFflA9n9TaDbL2V7HuaIe/9c7ec5bd5ef311288270959a8599850f/Parliament_TV.png" + }, + "slotsForDay": { + "slots": [ + { + "id": "IBMS_55250744", + "startMs": 1765472400000, + "endMs": 1765558800000, + "live": false, + "nzBsaRatingString": "G", + "programme": { + "id": "mac_ptc114828071", + "title": "arTVox: NZ art, Into the Light", + "synopsis": "The next sitting of the House of Representatives will start at 2pm on 16 December 2025. Details subject to change. For more information, go to www.parliament.nz" + } + }, + { + "id": "IBMS_55250745", + "startMs": 1765558800000, + "endMs": 1765645200000, + "live": false, + "nzBsaRatingString": "G", + "programme": { + "id": "mac_ptc348206700", + "title": "arTVox: NZ art, Into the Light", + "synopsis": "The next sitting of the House of Representatives will start at 2pm on 16 December 2025. Details subject to change. For more information, go to www.parliament.nz" + } + } + ] + } + }, + { + "id": "CNNS", + "title": "CNN", + "number": 87, + "tileImage": { + "uri": "https://images.skyone.co.nz/contentful/dcojl03mw8gy/4i9O0yxfPsllklNYOY1JEt/40fd8d535615038b066a2241378cadbf/CNN.png" + }, + "slotsForDay": { + "slots": [ + { + "id": "IBMS_55195113", + "startMs": 1765537200000, + "endMs": 1765540800000, + "live": false, + "nzBsaRatingString": null, + "programme": { + "id": "mac_ptc1377358409", + "title": "CNN This Morning", + "synopsis": "CNN This Morning: Start your day with Audie Cornish bringing you the latest headlines and analysis." + } + }, + { + "id": "IBMS_55195114", + "startMs": 1765540800000, + "endMs": 1765544400000, + "live": false, + "nzBsaRatingString": null, + "programme": { + "id": "mac_ptc389959233", + "title": "CNN News Central", + "synopsis": "CNN News Central: Stay up to date with John Berman, Kate Bolduan and Sara Sidner from CNN's immersive news hub." + } + }, + { + "id": "IBMS_55195115", + "startMs": 1765544400000, + "endMs": 1765546200000, + "live": false, + "nzBsaRatingString": null, + "programme": { + "id": "mac_ptc1642198018", + "title": "CNN News Central (AM) (30m)", + "synopsis": "CNN News Central (AM) (30m): The latest, up-to-date news stories from around the globe." + } + }, + { + "id": "IBMS_55195116", + "startMs": 1765546200000, + "endMs": 1765548000000, + "live": false, + "nzBsaRatingString": null, + "programme": { + "id": "mac_ptc1719581605", + "title": "World Sport", + "synopsis": "World Sport: Daily sports show features major stories and issues making news in the world of sports." + } + }, + { + "id": "IBMS_55195117", + "startMs": 1765548000000, + "endMs": 1765550700000, + "live": false, + "nzBsaRatingString": null, + "programme": { + "id": "mac_ptc1775658292", + "title": "Connect the World", + "synopsis": "Connect the World: Becky Anderson explores diverse perspectives and explains global issues of the day." + } + }, + { + "id": "IBMS_55195118", + "startMs": 1765550700000, + "endMs": 1765551600000, + "live": false, + "nzBsaRatingString": null, + "programme": { + "id": "mac_ptc607055604", + "title": "World Sport", + "synopsis": "World Sport: Daily sports show features major stories and issues making news in the world of sports." + } + }, + { + "id": "IBMS_55195119", + "startMs": 1765551600000, + "endMs": 1765555200000, + "live": false, + "nzBsaRatingString": null, + "programme": { + "id": "mac_ptc933322811", + "title": "Connect the World", + "synopsis": "Connect the World: Becky Anderson explores diverse perspectives and explains global issues of the day." + } + }, + { + "id": "IBMS_55195120", + "startMs": 1765555200000, + "endMs": 1765558800000, + "live": false, + "nzBsaRatingString": null, + "programme": { + "id": "mac_ptc1670985055", + "title": "One World", + "synopsis": "One World: Zain Asher and Bianna Golodryga cover the top global and national issues of the day." + } + }, + { + "id": "IBMS_55195121", + "startMs": 1765558800000, + "endMs": 1765562400000, + "live": false, + "nzBsaRatingString": null, + "programme": { + "id": "mac_ptc181712847", + "title": "One World", + "synopsis": "One World: Zain Asher and Bianna Golodryga cover the top global and national issues of the day." + } + }, + { + "id": "IBMS_55195122", + "startMs": 1765562400000, + "endMs": 1765566000000, + "live": false, + "nzBsaRatingString": null, + "programme": { + "id": "mac_ptc1747957245", + "title": "Amanpour", + "synopsis": "Amanpour: Christiane Amanpour provides her powerful interview skills and provocative analysis on global stories that matter to you." + } + }, + { + "id": "IBMS_55195123", + "startMs": 1765566000000, + "endMs": 1765569600000, + "live": false, + "nzBsaRatingString": null, + "programme": { + "id": "mac_ptc720322122", + "title": "Isa Soares Tonight", + "synopsis": "Isa Soares Tonight: Isa Soares deep dives into today's top stories with insightful conversations and reports from around the world." + } + }, + { + "id": "IBMS_55195124", + "startMs": 1765569600000, + "endMs": 1765573200000, + "live": false, + "nzBsaRatingString": null, + "programme": { + "id": "mac_ptc661632197", + "title": "What We Know with Max Foster", + "synopsis": "What We Know with Max Foster: Max Foster has a definitive roundup of the day's top stories, giving you the urgent need-to-know context, plus a deeper dive into the questions sparking debate around" + } + }, + { + "id": "IBMS_55195125", + "startMs": 1765573200000, + "endMs": 1765576800000, + "live": false, + "nzBsaRatingString": null, + "programme": { + "id": "mac_ptc1593101335", + "title": "Quest Means Business", + "synopsis": "Quest Means Business: Richard Quest speaks to the top names in global business to bring viewers the bottom line." + } + }, + { + "id": "IBMS_55195126", + "startMs": 1765576800000, + "endMs": 1765578600000, + "live": false, + "nzBsaRatingString": null, + "programme": { + "id": "mac_ptc1070706762", + "title": "The Lead with Jake Tapper (30m)", + "synopsis": "The Lead with Jake Tapper (30m): The latest, up-to-date news stories from around the globe." + } + }, + { + "id": "IBMS_55195127", + "startMs": 1765578600000, + "endMs": 1765580400000, + "live": false, + "nzBsaRatingString": null, + "programme": { + "id": "mac_ptc477010348", + "title": "World Sport", + "synopsis": "World Sport: Daily sports show features major stories and issues making news in the world of sports." + } + }, + { + "id": "IBMS_55195128", + "startMs": 1765580400000, + "endMs": 1765584000000, + "live": false, + "nzBsaRatingString": null, + "programme": { + "id": "mac_ptc1972708173", + "title": "The Brief with Jim Sciutto", + "synopsis": "The Brief with Jim Sciutto: The best of CNN's reporting from correspondents across the world, to guide global audiences through the fast-paced news cycle with insight, analysis and hard-hitting" + } + }, + { + "id": "IBMS_55195129", + "startMs": 1765584000000, + "endMs": 1765587600000, + "live": false, + "nzBsaRatingString": null, + "programme": { + "id": "mac_ptc1360668811", + "title": "Erin Burnett OutFront", + "synopsis": "Erin Burnett OutFront: Erin Burnett stays ahead of the headlines, delivering a show that's in-depth and informative." + } + }, + { + "id": "IBMS_55195130", + "startMs": 1765587600000, + "endMs": 1765591200000, + "live": false, + "nzBsaRatingString": null, + "programme": { + "id": "mac_ptc334195105", + "title": "Anderson Cooper 360", + "synopsis": "Anderson Cooper 360: Anderson Cooper takes you beyond the headlines with in-depth reporting and investigations." + } + }, + { + "id": "IBMS_55195131", + "startMs": 1765591200000, + "endMs": 1765594800000, + "live": false, + "nzBsaRatingString": null, + "programme": { + "id": "mac_ptc1888228074", + "title": "The Source with Kaitlan Collins", + "synopsis": "The Source with Kaitlan Collins: Kaitlan Collins goes straight to the source for the best reporting on the day's biggest stories." + } + }, + { + "id": "IBMS_55195132", + "startMs": 1765594800000, + "endMs": 1765598400000, + "live": false, + "nzBsaRatingString": null, + "programme": { + "id": "mac_ptc162529325", + "title": "CNN NewsNight", + "synopsis": "CNN NewsNight: Abby Phillip leads a roundtable discussion on the day's biggest stories and issues shaping our world." + } + }, + { + "id": "IBMS_55195133", + "startMs": 1765598400000, + "endMs": 1765602000000, + "live": false, + "nzBsaRatingString": null, + "programme": { + "id": "mac_ptc1120616226", + "title": "Laura Coates Live", + "synopsis": "Laura Coates Live: Laura Coates goes inside the story with a relentless pursuit of the facts." + } + }, + { + "id": "IBMS_55195134", + "startMs": 1765602000000, + "endMs": 1765605600000, + "live": false, + "nzBsaRatingString": null, + "programme": { + "id": "mac_ptc1733984074", + "title": "The Story Is With Elex Michaelson", + "synopsis": "The Story Is With Elex Michaelson: Elex Michaelson tackles the breaking stories making headlines with sharp analysis, fresh perspective, and a dose of humor." + } + }, + { + "id": "IBMS_55195135", + "startMs": 1765605600000, + "endMs": 1765607400000, + "live": false, + "nzBsaRatingString": null, + "programme": { + "id": "mac_ptc1453693866", + "title": "The Story Is With Elex Michaelson", + "synopsis": "The Story Is With Elex Michaelson: Elex Michaelson tackles the breaking stories making headlines with sharp analysis, fresh perspective, and a dose of humor." + } + }, + { + "id": "IBMS_55195136", + "startMs": 1765607400000, + "endMs": 1765609200000, + "live": false, + "nzBsaRatingString": null, + "programme": { + "id": "mac_ptc831139745", + "title": "Seasons", + "synopsis": "Seasons: A brand-new global series on CNN that explores the shifting trends shaping global culture—across fashion, travel, food, technology, design, and art." + } + }, + { + "id": "IBMS_55195137", + "startMs": 1765609200000, + "endMs": 1765611000000, + "live": false, + "nzBsaRatingString": null, + "programme": { + "id": "mac_ptc1392540256", + "title": "CNN Newsroom (CNNI)", + "synopsis": "CNN Newsroom (CNNI): Live context and clarity to the day's top stories from around the world." + } + }, + { + "id": "IBMS_55195138", + "startMs": 1765611000000, + "endMs": 1765612800000, + "live": false, + "nzBsaRatingString": null, + "programme": { + "id": "mac_ptc966163645", + "title": "African Voices Changemakers", + "synopsis": "African Voices Changemakers: African Voices starts a new chapter as we focus on some of the Changemakers who are coming up with innovative ways to have a positive impact on their communities." + } + }, + { + "id": "IBMS_55195139", + "startMs": 1765612800000, + "endMs": 1765614600000, + "live": false, + "nzBsaRatingString": null, + "programme": { + "id": "mac_ptc1717119536", + "title": "CNN Newsroom (CNNI)", + "synopsis": "CNN Newsroom (CNNI): Live context and clarity to the day's top stories from around the world." + } + }, + { + "id": "IBMS_55195140", + "startMs": 1765614600000, + "endMs": 1765616400000, + "live": false, + "nzBsaRatingString": null, + "programme": { + "id": "mac_ptc1819577007", + "title": "Connecting Africa", + "synopsis": "Connecting Africa: We profile the people, projects and companies revolutionising African business and bringing the continent together." + } + }, + { + "id": "IBMS_55195141", + "startMs": 1765616400000, + "endMs": 1765618200000, + "live": false, + "nzBsaRatingString": null, + "programme": { + "id": "mac_ptc1484895277", + "title": "CNN Newsroom (CNNI)", + "synopsis": "CNN Newsroom (CNNI): Live context and clarity to the day's top stories from around the world." + } + }, + { + "id": "IBMS_55195142", + "startMs": 1765618200000, + "endMs": 1765620000000, + "live": false, + "nzBsaRatingString": null, + "programme": { + "id": "mac_ptc1631173654", + "title": "CNN Creators", + "synopsis": "CNN Creators: Live from Doha, Qatar, CNN Creators follows a team of digital-native storytellers as they navigate the stories that matter most, with a focus on tech, art, culture, sport, and social trends." + } + }, + { + "id": "IBMS_55195143", + "startMs": 1765620000000, + "endMs": 1765623600000, + "live": false, + "nzBsaRatingString": null, + "programme": { + "id": "mac_ptc728784302", + "title": "CNN Newsroom (CNNI)", + "synopsis": "CNN Newsroom (CNNI): Live context and clarity to the day's top stories from around the world." + } + }, + { + "id": "IBMS_55195144", + "startMs": 1765623600000, + "endMs": 1765625400000, + "live": false, + "nzBsaRatingString": null, + "programme": { + "id": "mac_ptc1095064652", + "title": "African Voices Changemakers", + "synopsis": "African Voices Changemakers: African Voices starts a new chapter as we focus on some of the Changemakers who are coming up with innovative ways to have a positive impact on their communities." + } + } + ] + } + }, + { + "id": "FOXN", + "title": "Fox News", + "number": 88, + "tileImage": { + "uri": "https://images.skyone.co.nz/contentful/dcojl03mw8gy/3l0hPSRwt9duYgnrCoFPSz/ccf7717a30f0e36603726ffa3be6a9db/Fox_News_Channel.png" + }, + "slotsForDay": { + "slots": [ + { + "id": "IBMS_54887730", + "startMs": 1765537200000, + "endMs": 1765540800000, + "live": false, + "nzBsaRatingString": null, + "programme": { + "id": "mac_ptc619314603", + "title": "FOX & Friends", + "synopsis": "Anchors Steve Doocy, Ainsley Earhardt and Brian Kilmeade highlight the latest in news, weather, sports and entertainment with a casual and spontaneous discourse." + } + }, + { + "id": "IBMS_54887731", + "startMs": 1765540800000, + "endMs": 1765544400000, + "live": false, + "nzBsaRatingString": null, + "programme": { + "id": "mac_ptc1227903799", + "title": "FOX & Friends", + "synopsis": "Anchors Steve Doocy, Ainsley Earhardt and Brian Kilmeade highlight the latest in news, weather, sports and entertainment with a casual and spontaneous discourse." + } + }, + { + "id": "IBMS_54887732", + "startMs": 1765544400000, + "endMs": 1765548000000, + "live": false, + "nzBsaRatingString": null, + "programme": { + "id": "mac_ptc959600863", + "title": "FOX & Friends", + "synopsis": "Anchors Steve Doocy, Ainsley Earhardt and Brian Kilmeade highlight the latest in news, weather, sports and entertainment with a casual and spontaneous discourse." + } + }, + { + "id": "IBMS_54887733", + "startMs": 1765548000000, + "endMs": 1765551600000, + "live": false, + "nzBsaRatingString": null, + "programme": { + "id": "mac_ptc722700872", + "title": "America's Newsroom", + "synopsis": "The people making headlines, the events shaping our world and the news that matters to you only on 'America's Newsroom'." + } + }, + { + "id": "IBMS_54887734", + "startMs": 1765551600000, + "endMs": 1765555200000, + "live": false, + "nzBsaRatingString": null, + "programme": { + "id": "mac_ptc1627068847", + "title": "America's Newsroom", + "synopsis": "The people making headlines, the events shaping our world and the news that matters to you only on 'America's Newsroom'." + } + }, + { + "id": "IBMS_54887735", + "startMs": 1765555200000, + "endMs": 1765558800000, + "live": false, + "nzBsaRatingString": null, + "programme": { + "id": "mac_ptc194741058", + "title": "The Faulkner Focus", + "synopsis": "Harris Faulkner puts the issues under the spotlight with 'The Faulkner Focus'" + } + }, + { + "id": "IBMS_54887736", + "startMs": 1765558800000, + "endMs": 1765562400000, + "live": false, + "nzBsaRatingString": null, + "programme": { + "id": "mac_ptc86875815", + "title": "Outnumbered", + "synopsis": "Featuring an ensemble of four female panelists and one rotating male, the show will tackle top new headlines from all angles and perspectives." + } + }, + { + "id": "IBMS_54887737", + "startMs": 1765562400000, + "endMs": 1765566000000, + "live": false, + "nzBsaRatingString": null, + "programme": { + "id": "mac_ptc302383415", + "title": "America Reports", + "synopsis": "A look at the latest news and headlines with Sandra Smith and John Roberts." + } + }, + { + "id": "IBMS_54887738", + "startMs": 1765566000000, + "endMs": 1765569600000, + "live": false, + "nzBsaRatingString": null, + "programme": { + "id": "mac_ptc1358113021", + "title": "America Reports", + "synopsis": "A look at the latest news and headlines with Sandra Smith and John Roberts." + } + }, + { + "id": "IBMS_54887739", + "startMs": 1765569600000, + "endMs": 1765573200000, + "live": false, + "nzBsaRatingString": null, + "programme": { + "id": "mac_ptc1336479986", + "title": "The Story with Martha MacCallum", + "synopsis": "Martha MacCallum will take you deeper than ever before into the stories that matter to you. “The Story” delivers unique reporting with guests that keep viewers informed on all the critical issues and key developments they need to know." + } + }, + { + "id": "IBMS_54887740", + "startMs": 1765573200000, + "endMs": 1765576800000, + "live": false, + "nzBsaRatingString": null, + "programme": { + "id": "mac_ptc288444816", + "title": "Your World", + "synopsis": "Your World, anchored by Neil Cavuto, covers all of the day's political and business news from Main Street to Wall Street." + } + }, + { + "id": "IBMS_54887741", + "startMs": 1765576800000, + "endMs": 1765580400000, + "live": false, + "nzBsaRatingString": null, + "programme": { + "id": "mac_ptc1652471797", + "title": "The Five", + "synopsis": "The Five is an opinion show featuring a roundtable ensemble with Greg Gutfeld, Dana Perino, Juan Williams and Jesse Watters who discuss, debate and at times debunk the hot news stories, controversies and issues of the day.?" + } + }, + { + "id": "IBMS_54887742", + "startMs": 1765580400000, + "endMs": 1765584000000, + "live": false, + "nzBsaRatingString": null, + "programme": { + "id": "mac_ptc124655290", + "title": "Special Report", + "synopsis": "Join host Bret Baier and Fox's Team Washington to find out what's happening inside the Beltway and on the world stage." + } + }, + { + "id": "IBMS_54887743", + "startMs": 1765584000000, + "endMs": 1765587600000, + "live": false, + "nzBsaRatingString": null, + "programme": { + "id": "mac_ptc542652956", + "title": "The Ingraham Angle", + "synopsis": "The Ingraham Angle cuts through the Washington chatter speaking directly with unexpected voices and the actual people who are impacted by the news of the day." + } + }, + { + "id": "IBMS_54887744", + "startMs": 1765587600000, + "endMs": 1765591200000, + "live": false, + "nzBsaRatingString": null, + "programme": { + "id": "mac_ptc1365373477", + "title": "Jesse Watters Primetime", + "synopsis": "Jesse Watters brings his fresh take to Primetime. Each night, he’ll speak with newsmakers from across the country and give Americans a show where straight talk is the only talk, and the obvious will never be left unsaid." + } + }, + { + "id": "IBMS_54887745", + "startMs": 1765591200000, + "endMs": 1765594800000, + "live": false, + "nzBsaRatingString": null, + "programme": { + "id": "mac_ptc1626905454", + "title": "Hannity", + "synopsis": "Candid, controversial, and completely unleashed, Sean brings you political news of the day!" + } + }, + { + "id": "IBMS_54887746", + "startMs": 1765594800000, + "endMs": 1765598400000, + "live": false, + "nzBsaRatingString": null, + "programme": { + "id": "mac_ptc633913747", + "title": "Gutfeld!", + "synopsis": "Gutfeld! looks at the news of the day through a satiric lens fused with pop culture and features refreshing takes on the day’s top headlines from FNC personalities, authors, politicians, veterans and comedians." + } + }, + { + "id": "IBMS_54887747", + "startMs": 1765598400000, + "endMs": 1765602000000, + "live": false, + "nzBsaRatingString": null, + "programme": { + "id": "mac_ptc1081743457", + "title": "Fox News @ Night", + "synopsis": "Fox News @ Night is an hour of hard news and analysis of the most compelling stories from Washington and across the country." + } + }, + { + "id": "IBMS_54887748", + "startMs": 1765602000000, + "endMs": 1765605600000, + "live": false, + "nzBsaRatingString": null, + "programme": { + "id": "mac_ptc1077593215", + "title": "The Five", + "synopsis": "The Five is an opinion show featuring a roundtable ensemble with Greg Gutfeld, Dana Perino, Juan Williams and Jesse Watters who discuss, debate and at times debunk the hot news stories, controversies and issues of the day.?" + } + }, + { + "id": "IBMS_54887749", + "startMs": 1765605600000, + "endMs": 1765609200000, + "live": false, + "nzBsaRatingString": null, + "programme": { + "id": "mac_ptc763984909", + "title": "Jesse Watters Primetime", + "synopsis": "Jesse Watters brings his fresh take to Primetime. Each night, he’ll speak with newsmakers from across the country and give Americans a show where straight talk is the only talk, and the obvious will never be left unsaid." + } + }, + { + "id": "IBMS_54887750", + "startMs": 1765609200000, + "endMs": 1765612800000, + "live": false, + "nzBsaRatingString": null, + "programme": { + "id": "mac_ptc2072164733", + "title": "Hannity", + "synopsis": "Candid, controversial, and completely unleashed, Sean brings you political news of the day!" + } + }, + { + "id": "IBMS_54887751", + "startMs": 1765612800000, + "endMs": 1765616400000, + "live": false, + "nzBsaRatingString": null, + "programme": { + "id": "mac_ptc1343637742", + "title": "Gutfeld!", + "synopsis": "Gutfeld! looks at the news of the day through a satiric lens fused with pop culture and features refreshing takes on the day’s top headlines from FNC personalities, authors, politicians, veterans and comedians." + } + }, + { + "id": "IBMS_54887752", + "startMs": 1765616400000, + "endMs": 1765620000000, + "live": false, + "nzBsaRatingString": null, + "programme": { + "id": "mac_ptc10575778", + "title": "The Ingraham Angle", + "synopsis": "The Ingraham Angle cuts through the Washington chatter speaking directly with unexpected voices and the actual people who are impacted by the news of the day." + } + }, + { + "id": "IBMS_55376692", + "startMs": 1765620000000, + "endMs": 1765623600000, + "live": false, + "nzBsaRatingString": null, + "programme": { + "id": "mac_ptc567982353", + "title": "The Five", + "synopsis": "The Five is an opinion show featuring a roundtable ensemble with The Cast who discuss, debate and at times debunk the hot news stories, controversies and issues of the day." + } + }, + { + "id": "IBMS_55376694", + "startMs": 1765623600000, + "endMs": 1765638000000, + "live": false, + "nzBsaRatingString": null, + "programme": { + "id": "mac_ptc930963212", + "title": "Fox & Friends Weekend", + "synopsis": "Hosts Rachel Campos-Duffy, Griff Jenkins & Charlie Hurt" + } + } + ] + } + }, + { + "id": "BBCV", + "title": "BBC World News", + "number": 89, + "tileImage": { + "uri": "https://images.skyone.co.nz/contentful/dcojl03mw8gy/8qUWsA9yKV9JIxpHTArfX/9a6a6f82a7544af9f3bc6186aee073cd/BBC-News-New.png" + }, + "slotsForDay": { + "slots": [ + { + "id": "IBMS_55297542", + "startMs": 1765537200000, + "endMs": 1765539000000, + "live": false, + "nzBsaRatingString": null, + "programme": { + "id": "mac_ptc1048452718", + "title": "BBC News", + "synopsis": "The latest news from the BBC." + } + }, + { + "id": "IBMS_55297543", + "startMs": 1765539000000, + "endMs": 1765539900000, + "live": false, + "nzBsaRatingString": null, + "programme": { + "id": "mac_ptc173313587", + "title": "Business Today", + "synopsis": "Business Today. Bringing the latest business news and up-to-date informed analysis from London and around the world." + } + }, + { + "id": "IBMS_55297544", + "startMs": 1765539900000, + "endMs": 1765540800000, + "live": false, + "nzBsaRatingString": null, + "programme": { + "id": "mac_ptc740676990", + "title": "BBC News", + "synopsis": "The latest news from the BBC." + } + }, + { + "id": "IBMS_55297545", + "startMs": 1765540800000, + "endMs": 1765542600000, + "live": false, + "nzBsaRatingString": null, + "programme": { + "id": "mac_ptc440136154", + "title": "BBC News Now", + "synopsis": "All the big stories, live as they happen, presented by Lucy Hockings." + } + }, + { + "id": "IBMS_55297546", + "startMs": 1765542600000, + "endMs": 1765544400000, + "live": false, + "nzBsaRatingString": null, + "programme": { + "id": "mac_ptc1722394948", + "title": "BBC News Now", + "synopsis": "All the big stories, live as they happen, presented by Lucy Hockings." + } + }, + { + "id": "IBMS_55297547", + "startMs": 1765544400000, + "endMs": 1765546200000, + "live": false, + "nzBsaRatingString": null, + "programme": { + "id": "mac_ptc587334895", + "title": "BBC News Now", + "synopsis": "All the big stories, live as they happen, presented by Lucy Hockings." + } + }, + { + "id": "IBMS_55297548", + "startMs": 1765546200000, + "endMs": 1765548000000, + "live": false, + "nzBsaRatingString": null, + "programme": { + "id": "mac_ptc192751786", + "title": "BBC News Now", + "synopsis": "All the big stories, live as they happen, presented by Lucy Hockings." + } + }, + { + "id": "IBMS_55297549", + "startMs": 1765548000000, + "endMs": 1765549800000, + "live": false, + "nzBsaRatingString": null, + "programme": { + "id": "mac_ptc947024317", + "title": "BBC News Now", + "synopsis": "All the big stories, live as they happen, presented by Lucy Hockings." + } + }, + { + "id": "IBMS_55297550", + "startMs": 1765549800000, + "endMs": 1765550700000, + "live": false, + "nzBsaRatingString": null, + "programme": { + "id": "mac_ptc275015782", + "title": "Business Today - NYSE Opening Bell", + "synopsis": "Business Today. Bringing the latest business news and up-to-date informed analysis from New York and around the world." + } + }, + { + "id": "IBMS_55297551", + "startMs": 1765550700000, + "endMs": 1765551600000, + "live": false, + "nzBsaRatingString": null, + "programme": { + "id": "mac_ptc1949615772", + "title": "BBC News Now", + "synopsis": "All the big stories, live as they happen, presented by Lucy Hockings." + } + }, + { + "id": "IBMS_55297552", + "startMs": 1765551600000, + "endMs": 1765553400000, + "live": false, + "nzBsaRatingString": null, + "programme": { + "id": "mac_ptc1370272714", + "title": "Verified Live", + "synopsis": "Matthew Amroliwala presents all the latest global and UK news, live from London." + } + }, + { + "id": "IBMS_55297553", + "startMs": 1765553400000, + "endMs": 1765555200000, + "live": false, + "nzBsaRatingString": null, + "programme": { + "id": "mac_ptc910847317", + "title": "Verified Live", + "synopsis": "Matthew Amroliwala presents all the latest global and UK news, live from London." + } + }, + { + "id": "IBMS_55297554", + "startMs": 1765555200000, + "endMs": 1765557000000, + "live": false, + "nzBsaRatingString": null, + "programme": { + "id": "mac_ptc271416560", + "title": "Verified Live", + "synopsis": "Matthew Amroliwala presents all the latest global and UK news, live from London." + } + }, + { + "id": "IBMS_55297555", + "startMs": 1765557000000, + "endMs": 1765558800000, + "live": false, + "nzBsaRatingString": null, + "programme": { + "id": "mac_ptc854464419", + "title": "Verified Live", + "synopsis": "Matthew Amroliwala presents all the latest global and UK news, live from London." + } + }, + { + "id": "IBMS_55297556", + "startMs": 1765558800000, + "endMs": 1765560600000, + "live": false, + "nzBsaRatingString": null, + "programme": { + "id": "mac_ptc142935429", + "title": "Verified Live", + "synopsis": "Matthew Amroliwala presents all the latest global and UK news, live from London." + } + }, + { + "id": "IBMS_55297557", + "startMs": 1765560600000, + "endMs": 1765562400000, + "live": false, + "nzBsaRatingString": null, + "programme": { + "id": "mac_ptc1693213107", + "title": "Focus on Africa", + "synopsis": "The biggest African and international stories from the BBC." + } + }, + { + "id": "IBMS_55297558", + "startMs": 1765562400000, + "endMs": 1765564200000, + "live": false, + "nzBsaRatingString": null, + "programme": { + "id": "mac_ptc632959402", + "title": "The World Today with Maryam Moshiri", + "synopsis": "Watch the best of the BBC's journalism from around the world." + } + }, + { + "id": "IBMS_55297559", + "startMs": 1765564200000, + "endMs": 1765566000000, + "live": false, + "nzBsaRatingString": null, + "programme": { + "id": "mac_ptc576471545", + "title": "The World Today with Maryam Moshiri", + "synopsis": "Watch the best of the BBC's journalism from around the world." + } + }, + { + "id": "IBMS_55297560", + "startMs": 1765566000000, + "endMs": 1765567800000, + "live": false, + "nzBsaRatingString": null, + "programme": { + "id": "mac_ptc814095947", + "title": "The World Today with Maryam Moshiri", + "synopsis": "Watch the best of the BBC's journalism from around the world." + } + }, + { + "id": "IBMS_55297561", + "startMs": 1765567800000, + "endMs": 1765569600000, + "live": false, + "nzBsaRatingString": null, + "programme": { + "id": "mac_ptc348918965", + "title": "The World Today with Maryam Moshiri", + "synopsis": "Watch the best of the BBC's journalism from around the world." + } + }, + { + "id": "IBMS_55297562", + "startMs": 1765569600000, + "endMs": 1765571400000, + "live": false, + "nzBsaRatingString": null, + "programme": { + "id": "mac_ptc144063842", + "title": "The Context", + "synopsis": "A regular panel of guests from across the political spectrum discuss the biggest international stories of the day." + } + }, + { + "id": "IBMS_55297563", + "startMs": 1765571400000, + "endMs": 1765573200000, + "live": false, + "nzBsaRatingString": null, + "programme": { + "id": "mac_ptc1144613283", + "title": "The Context", + "synopsis": "A regular panel of guests from across the political spectrum discuss the biggest international stories of the day." + } + }, + { + "id": "IBMS_55297564", + "startMs": 1765573200000, + "endMs": 1765575000000, + "live": false, + "nzBsaRatingString": null, + "programme": { + "id": "mac_ptc169692380", + "title": "The Context USA", + "synopsis": "Special coverage from Washington DC and London, focusing on President Trump's second term." + } + }, + { + "id": "IBMS_55297565", + "startMs": 1765575000000, + "endMs": 1765576800000, + "live": false, + "nzBsaRatingString": null, + "programme": { + "id": "mac_ptc1333770318", + "title": "The Context USA", + "synopsis": "Special coverage from Washington DC and London, focusing on President Trump's second term." + } + }, + { + "id": "IBMS_55297566", + "startMs": 1765576800000, + "endMs": 1765578600000, + "live": false, + "nzBsaRatingString": null, + "programme": { + "id": "mac_ptc675206547", + "title": "BBC World News America", + "synopsis": "In-depth reports on the major international and US news of the day presented from Washington DC." + } + }, + { + "id": "IBMS_55297567", + "startMs": 1765578600000, + "endMs": 1765580400000, + "live": false, + "nzBsaRatingString": null, + "programme": { + "id": "mac_ptc1454326552", + "title": "Talking Business", + "synopsis": "Examining the business stories and economic trends that are re-shaping our world." + } + }, + { + "id": "IBMS_55297568", + "startMs": 1765580400000, + "endMs": 1765582200000, + "live": false, + "nzBsaRatingString": null, + "programme": { + "id": "mac_ptc35285229", + "title": "BBC World News America", + "synopsis": "In-depth reports on the major international and US news of the day presented from Washington DC." + } + }, + { + "id": "IBMS_55297569", + "startMs": 1765582200000, + "endMs": 1765584000000, + "live": false, + "nzBsaRatingString": null, + "programme": { + "id": "mac_ptc1267478384", + "title": "The President's Path", + "synopsis": "Join Caitríona Perry and Sumi Somaskanda for a dynamic weekly discussion on the US presidency." + } + }, + { + "id": "IBMS_55297570", + "startMs": 1765584000000, + "endMs": 1765585800000, + "live": false, + "nzBsaRatingString": null, + "programme": { + "id": "mac_ptc1237738196", + "title": "BBC News", + "synopsis": "The latest news from the BBC." + } + }, + { + "id": "IBMS_55297571", + "startMs": 1765585800000, + "endMs": 1765587600000, + "live": false, + "nzBsaRatingString": null, + "programme": { + "id": "mac_ptc1517460279", + "title": "Tech Now", + "synopsis": "Tech Now explores the latest innovation and technology shaping our lives. Bringing you the inside track on global trends and advancements happening in the tech space today." + } + }, + { + "id": "IBMS_55297572", + "startMs": 1765587600000, + "endMs": 1765589400000, + "live": false, + "nzBsaRatingString": null, + "programme": { + "id": "mac_ptc1627679662", + "title": "BBC News", + "synopsis": "The latest news from the BBC." + } + }, + { + "id": "IBMS_55297573", + "startMs": 1765589400000, + "endMs": 1765591200000, + "live": false, + "nzBsaRatingString": null, + "programme": { + "id": "mac_ptc1090818234", + "title": "Nobel Minds", + "synopsis": "This year's Nobel Laureates discuss the work that won them their prizes, and how it might benefit humanity, presented by Lucy Hockings from the Royal Library in Stockholm." + } + }, + { + "id": "IBMS_55297574", + "startMs": 1765591200000, + "endMs": 1765593000000, + "live": false, + "nzBsaRatingString": null, + "programme": { + "id": "mac_ptc188017149", + "title": "BBC News", + "synopsis": "The latest news from the BBC." + } + }, + { + "id": "IBMS_55297575", + "startMs": 1765593000000, + "endMs": 1765594800000, + "live": false, + "nzBsaRatingString": null, + "programme": { + "id": "mac_ptc1090870021", + "title": "World Questions", + "synopsis": "Jonny Dymond and a panel of Kenya's leading figures debate questions from an audience in Nairobi." + } + }, + { + "id": "IBMS_55297576", + "startMs": 1765594800000, + "endMs": 1765596600000, + "live": false, + "nzBsaRatingString": null, + "programme": { + "id": "mac_ptc2135415522", + "title": "BBC News", + "synopsis": "The latest news from the BBC." + } + }, + { + "id": "IBMS_55297577", + "startMs": 1765596600000, + "endMs": 1765598400000, + "live": false, + "nzBsaRatingString": null, + "programme": { + "id": "mac_ptc958646818", + "title": "The Media Show", + "synopsis": "A global, topical weekly show that lifts the hood on the entertainment and news business. The Media Show explores the companies and personalities who command our attention." + } + }, + { + "id": "IBMS_55297578", + "startMs": 1765598400000, + "endMs": 1765600200000, + "live": false, + "nzBsaRatingString": null, + "programme": { + "id": "mac_ptc1051881766", + "title": "BBC News", + "synopsis": "The latest news from the BBC." + } + }, + { + "id": "IBMS_55297579", + "startMs": 1765600200000, + "endMs": 1765602000000, + "live": false, + "nzBsaRatingString": null, + "programme": { + "id": "mac_ptc1780461229", + "title": "The Travel Show", + "synopsis": "The Peak District is Britain's first national park and is about to turn 75 years old. Roma Wells travels through its crags and rolling hills." + } + }, + { + "id": "IBMS_55297580", + "startMs": 1765602000000, + "endMs": 1765603800000, + "live": false, + "nzBsaRatingString": null, + "programme": { + "id": "mac_ptc1467386404", + "title": "BBC News", + "synopsis": "The latest news from the BBC." + } + }, + { + "id": "IBMS_55297581", + "startMs": 1765603800000, + "endMs": 1765605600000, + "live": false, + "nzBsaRatingString": null, + "programme": { + "id": "mac_ptc2143087796", + "title": "AI Decoded", + "synopsis": "Join our AI Decoded team as we unpack and take a deep dive into the world of artificial intelligence." + } + }, + { + "id": "IBMS_55297582", + "startMs": 1765605600000, + "endMs": 1765607400000, + "live": false, + "nzBsaRatingString": null, + "programme": { + "id": "mac_ptc1113408763", + "title": "BBC News", + "synopsis": "The latest news from the BBC." + } + }, + { + "id": "IBMS_55297583", + "startMs": 1765607400000, + "endMs": 1765609200000, + "live": false, + "nzBsaRatingString": null, + "programme": { + "id": "mac_ptc1014867057", + "title": "Tech Now", + "synopsis": "Tech Now explores the latest innovation and technology shaping our lives. Bringing you the inside track on global trends and advancements happening in the tech space today." + } + }, + { + "id": "IBMS_55297584", + "startMs": 1765609200000, + "endMs": 1765611000000, + "live": false, + "nzBsaRatingString": null, + "programme": { + "id": "mac_ptc785845825", + "title": "BBC News", + "synopsis": "The latest news from the BBC." + } + }, + { + "id": "IBMS_55297585", + "startMs": 1765611000000, + "endMs": 1765612800000, + "live": false, + "nzBsaRatingString": null, + "programme": { + "id": "mac_ptc596594329", + "title": "Nobel Minds", + "synopsis": "This year's Nobel Laureates discuss the work that won them their prizes, and how it might benefit humanity, presented by Lucy Hockings from the Royal Library in Stockholm." + } + }, + { + "id": "IBMS_55297586", + "startMs": 1765612800000, + "endMs": 1765614600000, + "live": false, + "nzBsaRatingString": null, + "programme": { + "id": "mac_ptc984601560", + "title": "BBC News", + "synopsis": "The latest news from the BBC." + } + }, + { + "id": "IBMS_55297587", + "startMs": 1765614600000, + "endMs": 1765616400000, + "live": false, + "nzBsaRatingString": null, + "programme": { + "id": "mac_ptc1610828139", + "title": "Global Eye", + "synopsis": "A weekly programme from the BBC World Service, bringing forensic journalism from all corners of the world." + } + }, + { + "id": "IBMS_55297588", + "startMs": 1765616400000, + "endMs": 1765620000000, + "live": false, + "nzBsaRatingString": null, + "programme": { + "id": "mac_ptc299883948", + "title": "BBC News", + "synopsis": "The latest news from the BBC." + } + }, + { + "id": "IBMS_55297589", + "startMs": 1765620000000, + "endMs": 1765621800000, + "live": false, + "nzBsaRatingString": null, + "programme": { + "id": "mac_ptc1488645969", + "title": "BBC News", + "synopsis": "The latest news from the BBC." + } + }, + { + "id": "IBMS_55297590", + "startMs": 1765621800000, + "endMs": 1765623600000, + "live": false, + "nzBsaRatingString": null, + "programme": { + "id": "mac_ptc2125588409", + "title": "Talking Business", + "synopsis": "Examining the business stories and economic trends that are re-shaping our world." + } + }, + { + "id": "IBMS_55297591", + "startMs": 1765623600000, + "endMs": 1765625400000, + "live": false, + "nzBsaRatingString": null, + "programme": { + "id": "mac_ptc1466698615", + "title": "BBC News", + "synopsis": "The latest news from the BBC." + } + } + ] + } + }, + { + "id": "0062", + "title": "Al Jazeera", + "number": 90, + "tileImage": { + "uri": "https://images.skyone.co.nz/contentful/dcojl03mw8gy/5JHKh7IzwqsfGHfyIt4rMT/8999e06fda2800b63ad0c085fbfbc739/Aljazeera.png" + }, + "slotsForDay": { + "slots": [ + { + "id": "IBMS_55223130", + "startMs": 1765537200000, + "endMs": 1765539000000, + "live": false, + "nzBsaRatingString": "G", + "programme": { + "id": "mac_ptc1117496574", + "title": "News Live", + "synopsis": "Up-to-date news and analysis from around the world." + } + }, + { + "id": "IBMS_55384965", + "startMs": 1765539000000, + "endMs": 1765540800000, + "live": false, + "nzBsaRatingString": "G", + "programme": { + "id": "mac_ptc1356730837", + "title": "Counting the Cost", + "synopsis": "India is deepening economic ties with Russia, but can it balance those relations with the U.S.?" + } + }, + { + "id": "IBMS_55223132", + "startMs": 1765540800000, + "endMs": 1765542600000, + "live": false, + "nzBsaRatingString": "G", + "programme": { + "id": "mac_ptc866511875", + "title": "The Bottom Line", + "synopsis": "Al Jazeera English gets to the bottom line on US politics and policies and how they affect the world." + } + }, + { + "id": "IBMS_55386087", + "startMs": 1765542600000, + "endMs": 1765544400000, + "live": false, + "nzBsaRatingString": "G", + "programme": { + "id": "mac_ptc827121087", + "title": "Talk to Al Jazeera", + "synopsis": "Spain’s foreign minister on Trump’s new security strategy and whether Europe is now a partner, a rival, or collateral in Washington’s power play." + } + }, + { + "id": "IBMS_55223134", + "startMs": 1765544400000, + "endMs": 1765548000000, + "live": false, + "nzBsaRatingString": "G", + "programme": { + "id": "mac_ptc193051424", + "title": "Newshour", + "synopsis": "Up-to-date news and analysis from around the world." + } + }, + { + "id": "IBMS_55363071", + "startMs": 1765548000000, + "endMs": 1765549800000, + "live": false, + "nzBsaRatingString": "G", + "programme": { + "id": "mac_ptc1192514273", + "title": "Russia's Shadow On Africa", + "synopsis": "Is Russia’s presence in the Central African Republic a stabilising force or a template for its expanding influence that’s already reshaping African geopolitics?" + } + }, + { + "id": "IBMS_55223136", + "startMs": 1765549800000, + "endMs": 1765551600000, + "live": false, + "nzBsaRatingString": "G", + "programme": { + "id": "mac_ptc360174014", + "title": "The Stream", + "synopsis": "The Stream is where Al Jazeera's audience becomes a global community." + } + }, + { + "id": "IBMS_55223137", + "startMs": 1765551600000, + "endMs": 1765553400000, + "live": false, + "nzBsaRatingString": "G", + "programme": { + "id": "mac_ptc716004429", + "title": "Newshour", + "synopsis": "Up-to-date news and analysis from around the world." + } + }, + { + "id": "IBMS_55223241", + "startMs": 1765553400000, + "endMs": 1765555200000, + "live": false, + "nzBsaRatingString": "GVC", + "programme": { + "id": "mac_ptc429971544", + "title": "Fault Lines", + "synopsis": "Fault Lines travels to Iran with exclusive access to survivors and officials, investigating the human cost of US and Israeli attacks and the risk of another war" + } + }, + { + "id": "IBMS_55223138", + "startMs": 1765555200000, + "endMs": 1765557000000, + "live": false, + "nzBsaRatingString": "G", + "programme": { + "id": "mac_ptc267296604", + "title": "News Live", + "synopsis": "Up-to-date news and analysis from around the world." + } + }, + { + "id": "IBMS_55300935", + "startMs": 1765557000000, + "endMs": 1765558800000, + "live": false, + "nzBsaRatingString": "GVL", + "programme": { + "id": "mac_ptc16974385", + "title": "101 East", + "synopsis": "101 East investigates Catholic exorcisms in the Philippines, and their impact on the faithful and the vulnerable." + } + }, + { + "id": "IBMS_55223140", + "startMs": 1765558800000, + "endMs": 1765560600000, + "live": false, + "nzBsaRatingString": "G", + "programme": { + "id": "mac_ptc506257156", + "title": "News Live", + "synopsis": "Up-to-date news and analysis from around the world." + } + }, + { + "id": "IBMS_55363059", + "startMs": 1765560600000, + "endMs": 1765562400000, + "live": false, + "nzBsaRatingString": "G", + "programme": { + "id": "mac_ptc1111158869", + "title": "The Stream", + "synopsis": "Today on The Stream: We look at the sectarianism that persists in Lebanon, undermining the country's unity and stirring intense bickering online." + } + }, + { + "id": "IBMS_55223142", + "startMs": 1765562400000, + "endMs": 1765566000000, + "live": false, + "nzBsaRatingString": "G", + "programme": { + "id": "mac_ptc1301332555", + "title": "Newshour", + "synopsis": "Up-to-date news and analysis from around the world." + } + }, + { + "id": "IBMS_55223143", + "startMs": 1765566000000, + "endMs": 1765567800000, + "live": false, + "nzBsaRatingString": "G", + "programme": { + "id": "mac_ptc453547058", + "title": "News Live", + "synopsis": "Up-to-date news and analysis from around the world." + } + }, + { + "id": "IBMS_55352358", + "startMs": 1765567800000, + "endMs": 1765569600000, + "live": false, + "nzBsaRatingString": "G", + "programme": { + "id": "mac_ptc888260471", + "title": "The Bottom Line", + "synopsis": "Can the Trumpian style of peacemaking - long on ceremony, short on substance – achieve a lasting peace between Russia & Ukraine?" + } + }, + { + "id": "IBMS_55223145", + "startMs": 1765569600000, + "endMs": 1765571400000, + "live": false, + "nzBsaRatingString": "G", + "programme": { + "id": "mac_ptc2035501466", + "title": "News Live", + "synopsis": "Up-to-date news and analysis from around the world." + } + }, + { + "id": "IBMS_55223146", + "startMs": 1765571400000, + "endMs": 1765573200000, + "live": false, + "nzBsaRatingString": "G", + "programme": { + "id": "mac_ptc1676358372", + "title": "Inside Story", + "synopsis": "Beyond the headlines to the heart of the news of the day. Al Jazeera gets the Inside Story from some of the best minds in the Middle East and beyond." + } + }, + { + "id": "IBMS_55223147", + "startMs": 1765573200000, + "endMs": 1765575000000, + "live": false, + "nzBsaRatingString": "G", + "programme": { + "id": "mac_ptc2078915543", + "title": "Newshour", + "synopsis": "Up-to-date news and analysis from around the world." + } + }, + { + "id": "IBMS_55384977", + "startMs": 1765575000000, + "endMs": 1765576800000, + "live": false, + "nzBsaRatingString": "G", + "programme": { + "id": "mac_ptc216995311", + "title": "Counting the Cost", + "synopsis": "India is deepening economic ties with Russia, but can it balance those relations with the U.S." + } + }, + { + "id": "IBMS_55223148", + "startMs": 1765576800000, + "endMs": 1765578600000, + "live": false, + "nzBsaRatingString": "G", + "programme": { + "id": "mac_ptc425387885", + "title": "News Live", + "synopsis": "Up-to-date news and analysis from around the world." + } + }, + { + "id": "IBMS_55223149", + "startMs": 1765578600000, + "endMs": 1765580400000, + "live": false, + "nzBsaRatingString": "G", + "programme": { + "id": "mac_ptc1570948451", + "title": "Counting the Cost", + "synopsis": "The show features the economical stories that shape our world and has an effect on the lives of the common human beings." + } + }, + { + "id": "IBMS_55223150", + "startMs": 1765580400000, + "endMs": 1765582200000, + "live": false, + "nzBsaRatingString": "G", + "programme": { + "id": "mac_ptc1833893838", + "title": "News Live", + "synopsis": "Up-to-date news and analysis from around the world." + } + }, + { + "id": "IBMS_55223151", + "startMs": 1765582200000, + "endMs": 1765584000000, + "live": false, + "nzBsaRatingString": "G", + "programme": { + "id": "mac_ptc2097438532", + "title": "Witness", + "synopsis": "After al-Assad's fall, a lawyer uncovers files from a notorious prison that reveals the fate of Syria's disappeared." + } + }, + { + "id": "IBMS_55223152", + "startMs": 1765584000000, + "endMs": 1765585800000, + "live": false, + "nzBsaRatingString": "G", + "programme": { + "id": "mac_ptc1408602995", + "title": "News Live", + "synopsis": "Up-to-date news and analysis from around the world." + } + }, + { + "id": "IBMS_55363061", + "startMs": 1765585800000, + "endMs": 1765587600000, + "live": false, + "nzBsaRatingString": "G", + "programme": { + "id": "mac_ptc1323088411", + "title": "The Stream", + "synopsis": "Today on The Stream: We look at the sectarianism that persists in Lebanon, undermining the country's unity and stirring intense bickering online." + } + }, + { + "id": "IBMS_55345230", + "startMs": 1765587600000, + "endMs": 1765589400000, + "live": false, + "nzBsaRatingString": "G", + "programme": { + "id": "mac_ptc1684485342", + "title": "Al Jazeera World", + "synopsis": "The story of Chile’s Palestino FC, where football, identity and resistance collide, and every match becomes a powerful act of Palestinian representation." + } + }, + { + "id": "IBMS_55223154", + "startMs": 1765589400000, + "endMs": 1765591200000, + "live": false, + "nzBsaRatingString": "G", + "programme": { + "id": "mac_ptc2109265038", + "title": "A Very British Way of Torture", + "synopsis": "The shocking story of how Britain secretly used torture in its war against the Kenyan anti-colonialist Mau Mau movement in the 1950s." + } + }, + { + "id": "IBMS_55223155", + "startMs": 1765591200000, + "endMs": 1765594800000, + "live": false, + "nzBsaRatingString": "G", + "programme": { + "id": "mac_ptc2011333303", + "title": "News Live", + "synopsis": "Up-to-date news and analysis from around the world." + } + }, + { + "id": "IBMS_55223156", + "startMs": 1765594800000, + "endMs": 1765596600000, + "live": false, + "nzBsaRatingString": "G", + "programme": { + "id": "mac_ptc318185263", + "title": "News Live", + "synopsis": "Up-to-date news and analysis from around the world." + } + }, + { + "id": "IBMS_55384941", + "startMs": 1765596600000, + "endMs": 1765598400000, + "live": false, + "nzBsaRatingString": "G", + "programme": { + "id": "mac_ptc1563605860", + "title": "UpFront", + "synopsis": "Marc Lamont Hill asks historian Alan McPherson how Trump’s Venezuela regime change policy fits into a broader history of US meddling in Latin America." + } + }, + { + "id": "IBMS_55223158", + "startMs": 1765598400000, + "endMs": 1765600200000, + "live": false, + "nzBsaRatingString": "G", + "programme": { + "id": "mac_ptc112950013", + "title": "News Live", + "synopsis": "Up-to-date news and analysis from around the world." + } + }, + { + "id": "IBMS_55223159", + "startMs": 1765600200000, + "endMs": 1765602000000, + "live": false, + "nzBsaRatingString": "G", + "programme": { + "id": "mac_ptc234309045", + "title": "UpFront", + "synopsis": "Frank, blunt and UpFront, Marc Lamont Hill cuts through the headlines to get to the heart of the matter with influential guests and newsmakers." + } + }, + { + "id": "IBMS_55223160", + "startMs": 1765602000000, + "endMs": 1765603800000, + "live": false, + "nzBsaRatingString": "G", + "programme": { + "id": "mac_ptc907521072", + "title": "News Live", + "synopsis": "Up-to-date news and analysis from around the world." + } + }, + { + "id": "IBMS_55223243", + "startMs": 1765603800000, + "endMs": 1765605600000, + "live": false, + "nzBsaRatingString": "GVC", + "programme": { + "id": "mac_ptc450397814", + "title": "Fault Lines", + "synopsis": "Fault Lines travels to Iran with exclusive access to survivors and officials, investigating the human cost of US and Israeli attacks and the risk of another war" + } + }, + { + "id": "IBMS_55223162", + "startMs": 1765605600000, + "endMs": 1765607400000, + "live": false, + "nzBsaRatingString": "G", + "programme": { + "id": "mac_ptc977657627", + "title": "News Live", + "synopsis": "Up-to-date news and analysis from around the world." + } + }, + { + "id": "IBMS_55223163", + "startMs": 1765607400000, + "endMs": 1765609200000, + "live": false, + "nzBsaRatingString": "G", + "programme": { + "id": "mac_ptc717950098", + "title": "The Bottom Line", + "synopsis": "Al Jazeera English gets to the bottom line on US politics and policies and how they affect the world." + } + }, + { + "id": "IBMS_55223164", + "startMs": 1765609200000, + "endMs": 1765612800000, + "live": false, + "nzBsaRatingString": "G", + "programme": { + "id": "mac_ptc511243642", + "title": "Newshour", + "synopsis": "Up-to-date news and analysis from around the world." + } + }, + { + "id": "IBMS_55223165", + "startMs": 1765612800000, + "endMs": 1765614600000, + "live": false, + "nzBsaRatingString": "G", + "programme": { + "id": "mac_ptc1293248032", + "title": "News Live", + "synopsis": "Up-to-date news and analysis from around the world." + } + }, + { + "id": "IBMS_55386089", + "startMs": 1765614600000, + "endMs": 1765616400000, + "live": false, + "nzBsaRatingString": "G", + "programme": { + "id": "mac_ptc18860290", + "title": "Talk to Al Jazeera", + "synopsis": "Spain’s foreign minister on Trump’s new security strategy and whether Europe is now a partner, a rival, or collateral in Washington’s power play." + } + }, + { + "id": "IBMS_55223167", + "startMs": 1765616400000, + "endMs": 1765618200000, + "live": false, + "nzBsaRatingString": "G", + "programme": { + "id": "mac_ptc852443098", + "title": "News Live", + "synopsis": "Up-to-date news and analysis from around the world." + } + }, + { + "id": "IBMS_55223168", + "startMs": 1765618200000, + "endMs": 1765620000000, + "live": false, + "nzBsaRatingString": "G", + "programme": { + "id": "mac_ptc1729081430", + "title": "The Stream", + "synopsis": "The Stream is where Al Jazeera's audience becomes a global community." + } + }, + { + "id": "IBMS_55223169", + "startMs": 1765620000000, + "endMs": 1765623600000, + "live": false, + "nzBsaRatingString": "G", + "programme": { + "id": "mac_ptc915662204", + "title": "Newshour", + "synopsis": "Up-to-date news and analysis from around the world." + } + }, + { + "id": "IBMS_55223170", + "startMs": 1765623600000, + "endMs": 1765625400000, + "live": false, + "nzBsaRatingString": "G", + "programme": { + "id": "mac_ptc1473872117", + "title": "News Live", + "synopsis": "Up-to-date news and analysis from around the world." + } + } + ] + } + }, + { + "id": "CBNC", + "title": "CNBC", + "number": 91, + "tileImage": { + "uri": "https://images.skyone.co.nz/contentful/dcojl03mw8gy/1w2wtpDCqFP7zcyUfGyOPW/69bf3acaf716accb0f5612b8c9041a11/91_CNBC_320x320.png" + }, + "slotsForDay": { + "slots": [ + { + "id": "IBMS_55352175", + "startMs": 1765537200000, + "endMs": 1765539000000, + "live": false, + "nzBsaRatingString": null, + "programme": { + "id": "mac_ptc705976417", + "title": "US Squawk Box", + "synopsis": "“Squawk Box” is the ultimate pre-market morning news and talk program, where the biggest names in business and politics tell their most important stories." + } + }, + { + "id": "IBMS_55352176", + "startMs": 1765539000000, + "endMs": 1765540800000, + "live": false, + "nzBsaRatingString": null, + "programme": { + "id": "mac_ptc652097152", + "title": "US Squawk Box", + "synopsis": "“Squawk Box” is the ultimate pre-market morning news and talk program, where the biggest names in business and politics tell their most important stories." + } + }, + { + "id": "IBMS_55352177", + "startMs": 1765540800000, + "endMs": 1765542600000, + "live": false, + "nzBsaRatingString": null, + "programme": { + "id": "mac_ptc629794373", + "title": "US Squawk Box", + "synopsis": "“Squawk Box” is the ultimate pre-market morning news and talk program, where the biggest names in business and politics tell their most important stories." + } + }, + { + "id": "IBMS_55352178", + "startMs": 1765542600000, + "endMs": 1765544400000, + "live": false, + "nzBsaRatingString": null, + "programme": { + "id": "mac_ptc526431081", + "title": "US Squawk Box", + "synopsis": "“Squawk Box” is the ultimate pre-market morning news and talk program, where the biggest names in business and politics tell their most important stories." + } + }, + { + "id": "IBMS_55352179", + "startMs": 1765544400000, + "endMs": 1765546200000, + "live": false, + "nzBsaRatingString": null, + "programme": { + "id": "mac_ptc338274118", + "title": "US Squawk Box", + "synopsis": "“Squawk Box” is the ultimate pre-market morning news and talk program, where the biggest names in business and politics tell their most important stories." + } + }, + { + "id": "IBMS_55352180", + "startMs": 1765546200000, + "endMs": 1765548000000, + "live": false, + "nzBsaRatingString": null, + "programme": { + "id": "mac_ptc1067526299", + "title": "US Squawk Box", + "synopsis": "“Squawk Box” is the ultimate pre-market morning news and talk program, where the biggest names in business and politics tell their most important stories." + } + }, + { + "id": "IBMS_55352181", + "startMs": 1765548000000, + "endMs": 1765549800000, + "live": false, + "nzBsaRatingString": null, + "programme": { + "id": "mac_ptc798573142", + "title": "Squawk On The Street", + "synopsis": "Headquartered live on the floor of the New York Stock Exchange(NYSE)where the biggest companies in the world trade,“Squawk On The Street\"tracks the action of every stock and gives you access to the treasury,currency and commodity action in real time." + } + }, + { + "id": "IBMS_55352182", + "startMs": 1765549800000, + "endMs": 1765551600000, + "live": false, + "nzBsaRatingString": null, + "programme": { + "id": "mac_ptc577628265", + "title": "Squawk On The Street", + "synopsis": "Headquartered live on the floor of the New York Stock Exchange(NYSE)where the biggest companies in the world trade,“Squawk On The Street\"tracks the action of every stock and gives you access to the treasury,currency and commodity action in real time." + } + }, + { + "id": "IBMS_55352183", + "startMs": 1765551600000, + "endMs": 1765553400000, + "live": false, + "nzBsaRatingString": null, + "programme": { + "id": "mac_ptc612486381", + "title": "Squawk On The Street", + "synopsis": "Headquartered live on the floor of the New York Stock Exchange(NYSE)where the biggest companies in the world trade,“Squawk On The Street\"tracks the action of every stock and gives you access to the treasury,currency and commodity action in real time." + } + }, + { + "id": "IBMS_55352184", + "startMs": 1765553400000, + "endMs": 1765555200000, + "live": false, + "nzBsaRatingString": null, + "programme": { + "id": "mac_ptc497822271", + "title": "Squawk On The Street", + "synopsis": "Headquartered live on the floor of the New York Stock Exchange(NYSE)where the biggest companies in the world trade,“Squawk On The Street\"tracks the action of every stock and gives you access to the treasury,currency and commodity action in real time." + } + }, + { + "id": "IBMS_55352185", + "startMs": 1765555200000, + "endMs": 1765557000000, + "live": false, + "nzBsaRatingString": null, + "programme": { + "id": "mac_ptc569451706", + "title": "Money Movers", + "synopsis": "“Money Movers” provides investors with real-time analysis of the stories and the people attracting the attention of the markets each day.ho play a relevant role in how money is moving." + } + }, + { + "id": "IBMS_55352186", + "startMs": 1765557000000, + "endMs": 1765558800000, + "live": false, + "nzBsaRatingString": null, + "programme": { + "id": "mac_ptc716759202", + "title": "Money Movers", + "synopsis": "“Money Movers” provides investors with real-time analysis of the stories and the people attracting the attention of the markets each day.ho play a relevant role in how money is moving." + } + }, + { + "id": "IBMS_55352187", + "startMs": 1765558800000, + "endMs": 1765560600000, + "live": false, + "nzBsaRatingString": null, + "programme": { + "id": "mac_ptc1853807149", + "title": "Halftime Report", + "synopsis": "\"Halftime Report\" is on the front lines of CNBC's market coverage. Host CNBC’s Scott Wapner and the Street's top investors get to the heart of the action as it's happening and help set the agenda for the rest of the day" + } + }, + { + "id": "IBMS_55352188", + "startMs": 1765560600000, + "endMs": 1765562400000, + "live": false, + "nzBsaRatingString": null, + "programme": { + "id": "mac_ptc60822264", + "title": "Halftime Report", + "synopsis": "\"Halftime Report\" is on the front lines of CNBC's market coverage. Host CNBC’s Scott Wapner and the Street's top investors get to the heart of the action as it's happening and help set the agenda for the rest of the day" + } + }, + { + "id": "IBMS_55352189", + "startMs": 1765562400000, + "endMs": 1765564200000, + "live": false, + "nzBsaRatingString": null, + "programme": { + "id": "mac_ptc413875180", + "title": "The Exchange", + "synopsis": "CNBC’s ‘The Exchange’ is the newsroom-based program for today’s investor. The show focuses on in-depth reporting around the most important and interesting stories to today’s markets and investors." + } + }, + { + "id": "IBMS_55352190", + "startMs": 1765564200000, + "endMs": 1765566000000, + "live": false, + "nzBsaRatingString": null, + "programme": { + "id": "mac_ptc1099067703", + "title": "The Exchange", + "synopsis": "CNBC’s “The Exchange” is the newsroom-based program for today’s Investor. The show focuses on in-depth reporting around the most important and interesting stories to today’s markets and investors." + } + }, + { + "id": "IBMS_55352191", + "startMs": 1765566000000, + "endMs": 1765567800000, + "live": false, + "nzBsaRatingString": null, + "programme": { + "id": "mac_ptc701779693", + "title": "Power Lunch", + "synopsis": "CNBC's Kelly Evans and Brian Sullivan take you through the heart of the business day bringing you the latest developments and instant analysis on the stocks and stories driving the day’s agenda." + } + }, + { + "id": "IBMS_55352192", + "startMs": 1765567800000, + "endMs": 1765569600000, + "live": false, + "nzBsaRatingString": null, + "programme": { + "id": "mac_ptc1415260975", + "title": "Power Lunch", + "synopsis": "CNBC's Kelly Evans and Brian Sullivan take you through the heart of the business day bringing you the latest developments and instant analysis on the stocks and stories driving the day’s agenda." + } + }, + { + "id": "IBMS_55352193", + "startMs": 1765569600000, + "endMs": 1765571400000, + "live": false, + "nzBsaRatingString": null, + "programme": { + "id": "mac_ptc129775992", + "title": "Closing Bell", + "synopsis": "Anything can happen between the bells of the trading day. But what happens during the last hour could be what matters most. Hosted by CNBC’s Scott Wapner, “Closing Bell” guides you through the most important hour of the trading day." + } + }, + { + "id": "IBMS_55352194", + "startMs": 1765571400000, + "endMs": 1765573200000, + "live": false, + "nzBsaRatingString": null, + "programme": { + "id": "mac_ptc916398820", + "title": "Closing Bell", + "synopsis": "Anything can happen between the bells of the trading day. But what happens during the last hour could be what matters most. Hosted by CNBC’s Scott Wapner, “Closing Bell” guides you through the most important hour of the trading day." + } + }, + { + "id": "IBMS_55352195", + "startMs": 1765573200000, + "endMs": 1765575000000, + "live": false, + "nzBsaRatingString": null, + "programme": { + "id": "mac_ptc1324370217", + "title": "Closing Bell: Overtime", + "synopsis": "When the bell rings, the action does not end. “Closing Bell: Overtime” takes you through all of the after-hours moves including breaking news, corporate earnings and post-market trading." + } + }, + { + "id": "IBMS_55352196", + "startMs": 1765575000000, + "endMs": 1765576800000, + "live": false, + "nzBsaRatingString": null, + "programme": { + "id": "mac_ptc438397593", + "title": "Closing Bell: Overtime", + "synopsis": "When the bell rings, the action does not end. “Closing Bell: Overtime” takes you through all of the after-hours moves including breaking news, corporate earnings and post-market trading." + } + }, + { + "id": "IBMS_55352197", + "startMs": 1765576800000, + "endMs": 1765578600000, + "live": false, + "nzBsaRatingString": null, + "programme": { + "id": "mac_ptc2046270529", + "title": "Fast Money", + "synopsis": "“Fast Money” is America’s post-market show. Hosted by Melissa Lee and a roundtable of top traders, “Fast Money” breaks through the noise of the day, to bring you the actionable news that matters most to investors." + } + }, + { + "id": "IBMS_55352198", + "startMs": 1765578600000, + "endMs": 1765580400000, + "live": false, + "nzBsaRatingString": null, + "programme": { + "id": "mac_ptc678667493", + "title": "Fast Money", + "synopsis": "“Fast Money” is America’s post-market show. Hosted by Melissa Lee and a roundtable of top traders, “Fast Money” breaks through the noise of the day, to bring you the actionable news that matters most to investors." + } + }, + { + "id": "IBMS_55352199", + "startMs": 1765580400000, + "endMs": 1765582200000, + "live": false, + "nzBsaRatingString": null, + "programme": { + "id": "mac_ptc688394588", + "title": "Mad Money", + "synopsis": "“Mad Money” with Jim Cramer takes viewers inside the mind of one of Wall Street's most respected and successful money managers." + } + }, + { + "id": "IBMS_55352200", + "startMs": 1765582200000, + "endMs": 1765584000000, + "live": false, + "nzBsaRatingString": null, + "programme": { + "id": "mac_ptc868146194", + "title": "Mad Money", + "synopsis": "“Mad Money” with Jim Cramer takes viewers inside the mind of one of Wall Street's most respected and successful money managers." + } + }, + { + "id": "IBMS_55352201", + "startMs": 1765584000000, + "endMs": 1765587600000, + "live": false, + "nzBsaRatingString": null, + "programme": { + "id": "mac_ptc291179704", + "title": "Closing Bell: Overtime rpt", + "synopsis": "When the bell rings, the action does not end. “Closing Bell: Overtime” takes you through all of the after-hours moves including breaking news, corporate earnings and post-market trading." + } + }, + { + "id": "IBMS_55352202", + "startMs": 1765587600000, + "endMs": 1765594800000, + "live": false, + "nzBsaRatingString": null, + "programme": { + "id": "mac_ptc1798973732", + "title": "CNBC Sports - PGA TOUR", + "synopsis": "Highlights from the latest PGA TOUR tournament." + } + }, + { + "id": "IBMS_55352203", + "startMs": 1765594800000, + "endMs": 1765596600000, + "live": false, + "nzBsaRatingString": null, + "programme": { + "id": "mac_ptc1079510121", + "title": "CNBC Sports", + "synopsis": "UIM MotoSurf World Championship: MotoSurf racing was established in the Czech Republic back in 2012. In its quite short history, the MotoSurf racing has spread all over the world." + } + }, + { + "id": "IBMS_55352204", + "startMs": 1765596600000, + "endMs": 1765598400000, + "live": false, + "nzBsaRatingString": null, + "programme": { + "id": "mac_ptc1794430922", + "title": "CNBC Sports", + "synopsis": "UIM MotoSurf World Championship: MotoSurf racing was established in the Czech Republic back in 2012. In its quite short history, the MotoSurf racing has spread all over the world." + } + }, + { + "id": "IBMS_55352205", + "startMs": 1765598400000, + "endMs": 1765602000000, + "live": false, + "nzBsaRatingString": null, + "programme": { + "id": "mac_ptc1947754874", + "title": "Cape To Cape", + "synopsis": "Welcome to the home of Cape to Cape, Australia’s largest and most popular four day MTB stage race." + } + }, + { + "id": "IBMS_55352206", + "startMs": 1765602000000, + "endMs": 1765605600000, + "live": false, + "nzBsaRatingString": null, + "programme": { + "id": "mac_ptc1778143879", + "title": "Late Night with Seth Meyers", + "synopsis": "Emmy Award-nominated “Late Night with Seth Meyers,” hosted by award-winning writer and performer Seth Meyers, is home to incisive humor, topical jokes and A-list celebrity guests." + } + }, + { + "id": "IBMS_55352207", + "startMs": 1765605600000, + "endMs": 1765609200000, + "live": false, + "nzBsaRatingString": null, + "programme": { + "id": "mac_ptc1955111917", + "title": "Late Night with Seth Meyers", + "synopsis": "Emmy Award-nominated “Late Night with Seth Meyers,” hosted by award-winning writer and performer Seth Meyers, is home to incisive humor, topical jokes and A-list celebrity guests." + } + }, + { + "id": "IBMS_55352208", + "startMs": 1765609200000, + "endMs": 1765611000000, + "live": false, + "nzBsaRatingString": null, + "programme": { + "id": "mac_ptc1264464357", + "title": "CNBC Meets", + "synopsis": "CNBC’s Tania Bryer gets 'up close and personal' with some of the world's most famous faces from the world of business, politics, sport, and the arts." + } + }, + { + "id": "IBMS_55352209", + "startMs": 1765611000000, + "endMs": 1765612800000, + "live": false, + "nzBsaRatingString": null, + "programme": { + "id": "mac_ptc1009945641", + "title": "Managing Asia", + "synopsis": "CNBC’s longest running feature show. For over 20 years Christine Tan has been talking to people who are shaping, governing and leading the Asia-Pacific region in this multi-award award winning show." + } + }, + { + "id": "IBMS_55352210", + "startMs": 1765612800000, + "endMs": 1765614600000, + "live": false, + "nzBsaRatingString": null, + "programme": { + "id": "mac_ptc478660946", + "title": "Executive Decisions", + "synopsis": "‘Executive Decisions’ is a CNBC podcast offering a rare window into the minds of top decision-makers. Hosted by Steve Sedgwick, each episode explores the pivotal choices that shape the careers and legacies of business leaders and policymakers." + } + }, + { + "id": "IBMS_55352211", + "startMs": 1765614600000, + "endMs": 1765616400000, + "live": false, + "nzBsaRatingString": null, + "programme": { + "id": "mac_ptc512831363", + "title": "CNBC Sport: On The Record", + "synopsis": "CNBC Sport: On The Record explores the convergence of sports, business, and investing. Each week, we sit down with the biggest names in sports - from league commissioners, team owners, influential media executives and top athletes" + } + }, + { + "id": "IBMS_55352212", + "startMs": 1765616400000, + "endMs": 1765620000000, + "live": false, + "nzBsaRatingString": null, + "programme": { + "id": "mac_ptc236185375", + "title": "The Tonight Show Starring Jimmy Fallon", + "synopsis": "Emmy Award- and Grammy Award-winning comedian Jimmy Fallon brings a high-tempo energy to the storied NBC franchise with his welcoming interview style, love of audience participation, spot-on impersonations and innovative sketches." + } + }, + { + "id": "IBMS_55352213", + "startMs": 1765620000000, + "endMs": 1765623600000, + "live": false, + "nzBsaRatingString": null, + "programme": { + "id": "mac_ptc1870433489", + "title": "The Tonight Show Starring Jimmy Fallon", + "synopsis": "Emmy Award- and Grammy Award-winning comedian Jimmy Fallon brings a high-tempo energy to the storied NBC franchise with his welcoming interview style, love of audience participation, spot-on impersonations and innovative sketches." + } + }, + { + "id": "IBMS_55352214", + "startMs": 1765623600000, + "endMs": 1765625400000, + "live": false, + "nzBsaRatingString": null, + "programme": { + "id": "mac_ptc740671637", + "title": "CNBC Meets", + "synopsis": "CNBC’s Tania Bryer gets 'up close and personal' with some of the world's most famous faces from the world of business, politics, sport, and the arts." + } + } + ] + } + }, + { + "id": "0021", + "title": "Sky Kids", + "number": 101, + "tileImage": { + "uri": "https://images.skyone.co.nz/contentful/dcojl03mw8gy/1ttwBxbybmb4Q3PFEws6E1/48f5046e1ffbdb403c96d2686fc55bda/Sky_kids_flat_1920x1080.png" + }, + "slotsForDay": { + "slots": [ + { + "id": "IBMS_55160402", + "startMs": 1765537200000, + "endMs": 1765538700000, + "live": false, + "nzBsaRatingString": "G", + "programme": { + "id": "mac_10965120", + "title": "Candy Bar Creep Show / Monster in the Garage", + "synopsis": "On the hunt for Reptar candy bars, the Rugrats enter the haunted house. / When adults blame Spike for mysterious accidents in the garage, the Rugrats decide to investigate." + } + }, + { + "id": "IBMS_55160446", + "startMs": 1765538700000, + "endMs": 1765540200000, + "live": false, + "nzBsaRatingString": "G", + "programme": { + "id": "mac_10663646", + "title": "Diamond Fever / The Pet", + "synopsis": "CatDog discover diamonds in the backyard, and Cat gets too greedy for his own good. / CatDog find a wounded cockroach at the dump and decide to nurse it back to health." + } + }, + { + "id": "IBMS_55159822", + "startMs": 1765540200000, + "endMs": 1765541700000, + "live": false, + "nzBsaRatingString": "G", + "programme": { + "id": "mac_10665094", + "title": "Arrgh! / Rock Bottom", + "synopsis": "When a pirate game leads to a real treasure hunt, Mr. Krabs gets a little too obsessed with finding the loot. / SpongeBob boards the wrong bus and ends up lost in a mysterious part of the sea." + } + }, + { + "id": "IBMS_55160490", + "startMs": 1765541700000, + "endMs": 1765543200000, + "live": false, + "nzBsaRatingString": "G", + "programme": { + "id": "mac_10968872", + "title": "Overnight Success / Ties That Bind", + "synopsis": "Lincoln finally has a sleepover with Clyde, but jealousy flares as his sisters try to steal the fun. / Lincoln overhears his parents plotting to \"get rid\" of a kid, so he and his sisters must behave." + } + }, + { + "id": "IBMS_55160534", + "startMs": 1765543200000, + "endMs": 1765544700000, + "live": false, + "nzBsaRatingString": "PG", + "programme": { + "id": "mac_10665346", + "title": "The Gauntlet", + "synopsis": "After April receives a warning from her imprisoned father, she and the Turtles embark on a mission to save him and stop the Kraang from detonating a mutagen bomb in the city." + } + }, + { + "id": "IBMS_55160573", + "startMs": 1765544700000, + "endMs": 1765545900000, + "live": false, + "nzBsaRatingString": "G", + "programme": { + "id": "mac_11435687", + "title": "The Gold Medal Games", + "synopsis": "It's time for the Gold Medal Games, and Blaze is ready to compete. But when Crusher cheats and sends his rival flying far away, Blaze has to speed back to Axle City to win that medal!" + } + }, + { + "id": "IBMS_55160574", + "startMs": 1765545900000, + "endMs": 1765547100000, + "live": false, + "nzBsaRatingString": "G", + "programme": { + "id": "mac_11435688", + "title": "The Great Space Race", + "synopsis": "Blaze and AJ take off into space for a race that's out of this world! Along the way to Planet Victory, they meet friendly aliens, dodge asteroids, and face off against Crusher's space ship!" + } + }, + { + "id": "IBMS_55160618", + "startMs": 1765547100000, + "endMs": 1765548600000, + "live": false, + "nzBsaRatingString": "G", + "programme": { + "id": "mac_11385160", + "title": "The Starlight Cupcake Surprise!/ Summer Slushies!", + "synopsis": "The crew accidentally delivers unfrosted cupcakes. / Butterbean faces a chilly challenge when her freezer breaks, and borrowing Ms Marmalady's is the only option." + } + }, + { + "id": "IBMS_55159994", + "startMs": 1765548600000, + "endMs": 1765550100000, + "live": false, + "nzBsaRatingString": "G", + "programme": { + "id": "mac_10968779", + "title": "Pups Save a Pool Day/ Circus Pup-Formers", + "synopsis": "It's a hot day, and the pups are at the water park - but the pool is empty because the water tower has tilted and bent a pipe. Next, the circus needs saving when the animals don't show up in time." + } + }, + { + "id": "IBMS_55173957", + "startMs": 1765550100000, + "endMs": 1765551600000, + "live": false, + "nzBsaRatingString": "G", + "programme": { + "id": "mac_10968780", + "title": "Pups Save the Easter Egg Hunt", + "synopsis": "It's Adventure Bay's annual Easter Egg hunt and the pups are helping Mayor Goodway with the egg decorating." + } + }, + { + "id": "IBMS_55160662", + "startMs": 1765551600000, + "endMs": 1765552800000, + "live": false, + "nzBsaRatingString": "G", + "programme": { + "id": "mac_11448278", + "title": "Song Time with Blue", + "synopsis": "It's a music filled day at the Blue's Clues house as we try to figure out what song Blue wants to sing." + } + }, + { + "id": "IBMS_55160706", + "startMs": 1765552800000, + "endMs": 1765554300000, + "live": false, + "nzBsaRatingString": "G", + "programme": { + "id": "mac_11852397", + "title": "Tiny Dancer/ The Sleepy Sun", + "synopsis": "A tiny dancer inside Dora's music box comes alive, but her magic Adelita boots run away, starting an adventure. Then, the sun won't set because it can't fall asleep without its missing Pillow Cloud." + } + }, + { + "id": "IBMS_55159910", + "startMs": 1765554300000, + "endMs": 1765555800000, + "live": false, + "nzBsaRatingString": "G", + "programme": { + "id": "mac_10665094", + "title": "Arrgh! / Rock Bottom", + "synopsis": "When a pirate game leads to a real treasure hunt, Mr. Krabs gets a little too obsessed with finding the loot. / SpongeBob boards the wrong bus and ends up lost in a mysterious part of the sea." + } + }, + { + "id": "IBMS_55160768", + "startMs": 1765555800000, + "endMs": 1765557300000, + "live": false, + "nzBsaRatingString": "G", + "programme": { + "id": "mac_10968872", + "title": "Overnight Success / Ties That Bind", + "synopsis": "Lincoln finally has a sleepover with Clyde, but jealousy flares as his sisters try to steal the fun. / Lincoln overhears his parents plotting to \"get rid\" of a kid, so he and his sisters must behave." + } + }, + { + "id": "IBMS_55160812", + "startMs": 1765557300000, + "endMs": 1765558800000, + "live": false, + "nzBsaRatingString": "PG", + "programme": { + "id": "mac_10665346", + "title": "The Gauntlet", + "synopsis": "After April receives a warning from her imprisoned father, she and the Turtles embark on a mission to save him and stop the Kraang from detonating a mutagen bomb in the city." + } + }, + { + "id": "IBMS_55206984", + "startMs": 1765558800000, + "endMs": 1765559100000, + "live": false, + "nzBsaRatingString": "G", + "programme": { + "id": "mac_11857994", + "title": "Myf Warhurst: The Sloth Who Came To Stay", + "synopsis": "With Humpty by her side and another special toy guest, Myf Warhurst reads 'The Sloth Who Came To Stay' by Margaret Wild - a book about enjoying life at a leisurely pace." + } + }, + { + "id": "IBMS_55206985", + "startMs": 1765559100000, + "endMs": 1765560300000, + "live": false, + "nzBsaRatingString": "G", + "programme": { + "id": "mac_11710770", + "title": "Papa's Tongan Birthday", + "synopsis": "It's a rugby pass and kick challenge for our athletes as they compete for ingredients so their bakers can create a Tongan inspired birthday cake." + } + }, + { + "id": "IBMS_55161102", + "startMs": 1765560300000, + "endMs": 1765561500000, + "live": false, + "nzBsaRatingString": "G", + "programme": { + "id": "mac_11435687", + "title": "The Gold Medal Games", + "synopsis": "It's time for the Gold Medal Games, and Blaze is ready to compete. But when Crusher cheats and sends his rival flying far away, Blaze has to speed back to Axle City to win that medal!" + } + }, + { + "id": "IBMS_55161103", + "startMs": 1765561500000, + "endMs": 1765562700000, + "live": false, + "nzBsaRatingString": "G", + "programme": { + "id": "mac_11435688", + "title": "The Great Space Race", + "synopsis": "Blaze and AJ take off into space for a race that's out of this world! Along the way to Planet Victory, they meet friendly aliens, dodge asteroids, and face off against Crusher's space ship!" + } + }, + { + "id": "IBMS_55161140", + "startMs": 1765562700000, + "endMs": 1765564200000, + "live": false, + "nzBsaRatingString": "G", + "programme": { + "id": "mac_10965120", + "title": "Candy Bar Creep Show / Monster in the Garage", + "synopsis": "On the hunt for Reptar candy bars, the Rugrats enter the haunted house. / When adults blame Spike for mysterious accidents in the garage, the Rugrats decide to investigate." + } + }, + { + "id": "IBMS_55161141", + "startMs": 1765564200000, + "endMs": 1765565700000, + "live": false, + "nzBsaRatingString": "G", + "programme": { + "id": "mac_10663646", + "title": "Diamond Fever / The Pet", + "synopsis": "CatDog discover diamonds in the backyard, and Cat gets too greedy for his own good. / CatDog find a wounded cockroach at the dump and decide to nurse it back to health." + } + }, + { + "id": "IBMS_55182596", + "startMs": 1765565700000, + "endMs": 1765567200000, + "live": false, + "nzBsaRatingString": "G", + "programme": { + "id": "mac_10665094", + "title": "Arrgh! / Rock Bottom", + "synopsis": "When a pirate game leads to a real treasure hunt, Mr. Krabs gets a little too obsessed with finding the loot. / SpongeBob boards the wrong bus and ends up lost in a mysterious part of the sea." + } + }, + { + "id": "IBMS_55182620", + "startMs": 1765567200000, + "endMs": 1765568700000, + "live": false, + "nzBsaRatingString": "G", + "programme": { + "id": "mac_10665095", + "title": "Texas / Walking Small", + "synopsis": "Sandy feels homesick, so SpongeBob and Patrick go to great lengths to cheer her up with a surprise. / The evil Plankton is up to no good once again when he tries to manipulate SpongeBob." + } + }, + { + "id": "IBMS_55177668", + "startMs": 1765568700000, + "endMs": 1765570200000, + "live": false, + "nzBsaRatingString": "G", + "programme": { + "id": "mac_10968866", + "title": "Driving Miss Hazy / No Guts, No Glori", + "synopsis": "Sick of doing favours to get a ride from Lori, Lincoln decides it's time to help Leni pass her driver's test. / Lincoln teams up with his sisters to topple Lori's reign as their tyrant babysitter." + } + }, + { + "id": "IBMS_55176339", + "startMs": 1765570200000, + "endMs": 1765571700000, + "live": false, + "nzBsaRatingString": "PG", + "programme": { + "id": "mac_10665342", + "title": "I Think His Name is Baxter Stockman", + "synopsis": "When the Turtles sneak out against Splinter's wishes, they battle Baxter Stockman, a deranged inventor in mechanical battle armor." + } + }, + { + "id": "IBMS_55176342", + "startMs": 1765571700000, + "endMs": 1765573200000, + "live": false, + "nzBsaRatingString": "PG", + "programme": { + "id": "mac_10665343", + "title": "Metalhead", + "synopsis": "Weary of using his simple bo staff to fight the technologically advanced Kraang, Donatello creates Metalhead, a remote-controlled robot turtle to fight in his place." + } + }, + { + "id": "IBMS_55176411", + "startMs": 1765573200000, + "endMs": 1765574700000, + "live": false, + "nzBsaRatingString": "PG", + "programme": { + "id": "mac_10519503", + "title": "The Southern Air Temple", + "synopsis": "Aang returns to the Southern Air Temple, only to uncover tragic ruins and a haunting truth, while Zuko enters a fiery duel with Commander Zhao, desperate to reclaim his lost honour." + } + }, + { + "id": "IBMS_55176473", + "startMs": 1765574700000, + "endMs": 1765576200000, + "live": false, + "nzBsaRatingString": "G", + "programme": { + "id": "mac_10965114", + "title": "At the Movies / Slumber Party", + "synopsis": "The Rugrats set off on a quest to watch Reptar, leaving a path of destruction in their wake. / When Angelica wants the window open at their sleepover, Tommy's dreams take a bizarre turn." + } + }, + { + "id": "IBMS_55176474", + "startMs": 1765576200000, + "endMs": 1765577700000, + "live": false, + "nzBsaRatingString": "G", + "programme": { + "id": "mac_10965115", + "title": "Baby Commercial / Little Dude", + "synopsis": "Phil and Lil star in a diaper commercial and do anything but stick to the script. / Didi brings Tommy to the school where she teaches, and he becomes the coolest baby in class." + } + }, + { + "id": "IBMS_55177222", + "startMs": 1765577700000, + "endMs": 1765578900000, + "live": false, + "nzBsaRatingString": "G", + "programme": { + "id": "mac_11386117", + "title": "Pups Save an Extreme Lunch/ Pups Save a Cat Burglar", + "synopsis": "Daring Danny X's new stunt flips from going well to disaster when he stops midway across the canyon for his extreme lunch. Mayor Humdinger's attempt to cheat during Pie Swap Day is derailed by a bear." + } + }, + { + "id": "IBMS_55177223", + "startMs": 1765578900000, + "endMs": 1765580400000, + "live": false, + "nzBsaRatingString": "G", + "programme": { + "id": "mac_11386118", + "title": "Sea Patrol: Pups Save the Flying Diving Bell/Pups Save a Soggy Farm", + "synopsis": "Farmer Yumi and Mayor Goodway are scuba diving, unaware that an underwater volcano is about to erupt. Farmer Al wakes up to find his farmland has turned into a lake." + } + }, + { + "id": "IBMS_55177837", + "startMs": 1765580400000, + "endMs": 1765581900000, + "live": false, + "nzBsaRatingString": "G", + "programme": { + "id": "mac_11415876", + "title": "Blue's Big Dance Party", + "synopsis": "Show us your dance moves! Josh and Blue are having a dance party and we play Blue's Clues to figure out Blue's favourite dance." + } + }, + { + "id": "IBMS_55177838", + "startMs": 1765581900000, + "endMs": 1765583400000, + "live": false, + "nzBsaRatingString": "G", + "programme": { + "id": "mac_11415877", + "title": "Welcome to Blues Bistro", + "synopsis": "Welcome to Blue's Bistro - a very fancy restaurant! While playing Blue's Clues to figure out what Blue wants to eat, we help Josh take our friends' orders." + } + }, + { + "id": "IBMS_55178106", + "startMs": 1765583400000, + "endMs": 1765584900000, + "live": false, + "nzBsaRatingString": "G", + "programme": { + "id": "mac_11385156", + "title": "The Sweetest Ride!/ A Grilled Cheese for the Big Cheese!", + "synopsis": "Butterbean's delivery troubles spark a brilliant idea, a truck makeover to save the day! / Butterbean has an important mission: deliver lunch to the president, but can she make it on time?" + } + }, + { + "id": "IBMS_55178107", + "startMs": 1765584900000, + "endMs": 1765586100000, + "live": false, + "nzBsaRatingString": "G", + "programme": { + "id": "mac_11385157", + "title": "Wedding Cake Switcheroo!/ Fairy Berry Parfait!", + "synopsis": "Ms. Marmalady switches her disastrous wedding cake with Butterbean's beautiful cake. / Butterbean's parfait plans go sour when Ms Marmalady snatches up all the yoghurt she needs." + } + }, + { + "id": "IBMS_55178202", + "startMs": 1765586100000, + "endMs": 1765587300000, + "live": false, + "nzBsaRatingString": "G", + "programme": { + "id": "mac_11852393", + "title": "Rainbow's Lost Colors/ Boots' Rubber Band Ball", + "synopsis": "The twins see their first rainbow, but it's missing some colours, so Dora sets out to make it beautiful again. Boots must ask Cynthia the Centipede for his rubber band ball back after it bounces away." + } + }, + { + "id": "IBMS_55178203", + "startMs": 1765587300000, + "endMs": 1765588800000, + "live": false, + "nzBsaRatingString": "G", + "programme": { + "id": "mac_11852394", + "title": "Croc-A-Bye Baby/ Wanna Eampanada?/ If The Boot Fits/ Pinata Party", + "synopsis": "Dora and Boots babysit rowdy crocs. The Grumpy Old Troll needs convincing to try Benny's food, Boots tests Tico's wacky new boots, and at the twins' first pinata party, no one can get the treats." + } + }, + { + "id": "IBMS_55178268", + "startMs": 1765588800000, + "endMs": 1765590300000, + "live": false, + "nzBsaRatingString": "G", + "programme": { + "id": "mac_11657018", + "title": "Paramedic Power", + "synopsis": "When Blaze's friends need help, Ambulance Blaze, Paramedic AJ and Paramedic Gabby have all the tools they need to save the day!" + } + }, + { + "id": "IBMS_55178269", + "startMs": 1765590300000, + "endMs": 1765591800000, + "live": false, + "nzBsaRatingString": "G", + "programme": { + "id": "mac_11657019", + "title": "The Snowflake Games", + "synopsis": "It's a head-to-head showdown when Blaze and Crusher enter...The Snowflake Games! Who will win the most winter sports and receive the prized Snowflake Medal?" + } + }, + { + "id": "IBMS_55180976", + "startMs": 1765591800000, + "endMs": 1765593300000, + "live": false, + "nzBsaRatingString": "G", + "programme": { + "id": "mac_11386117", + "title": "Pups Save an Extreme Lunch/ Pups Save a Cat Burglar", + "synopsis": "Daring Danny X's new stunt flips from going well to disaster when he stops midway across the canyon for his extreme lunch. Mayor Humdinger's attempt to cheat during Pie Swap Day is derailed by a bear." + } + }, + { + "id": "IBMS_55180977", + "startMs": 1765593300000, + "endMs": 1765594800000, + "live": false, + "nzBsaRatingString": "G", + "programme": { + "id": "mac_11386118", + "title": "Sea Patrol: Pups Save the Flying Diving Bell/Pups Save a Soggy Farm", + "synopsis": "Farmer Yumi and Mayor Goodway are scuba diving, unaware that an underwater volcano is about to erupt. Farmer Al wakes up to find his farmland has turned into a lake." + } + }, + { + "id": "IBMS_55181112", + "startMs": 1765594800000, + "endMs": 1765596300000, + "live": false, + "nzBsaRatingString": "PG", + "programme": { + "id": "mac_10665342", + "title": "I Think His Name is Baxter Stockman", + "synopsis": "When the Turtles sneak out against Splinter's wishes, they battle Baxter Stockman, a deranged inventor in mechanical battle armor." + } + }, + { + "id": "IBMS_55181113", + "startMs": 1765596300000, + "endMs": 1765597800000, + "live": false, + "nzBsaRatingString": "PG", + "programme": { + "id": "mac_10665343", + "title": "Metalhead", + "synopsis": "Weary of using his simple bo staff to fight the technologically advanced Kraang, Donatello creates Metalhead, a remote-controlled robot turtle to fight in his place." + } + }, + { + "id": "IBMS_55181519", + "startMs": 1765597800000, + "endMs": 1765599300000, + "live": false, + "nzBsaRatingString": "PG", + "programme": { + "id": "mac_10519503", + "title": "The Southern Air Temple", + "synopsis": "Aang returns to the Southern Air Temple, only to uncover tragic ruins and a haunting truth, while Zuko enters a fiery duel with Commander Zhao, desperate to reclaim his lost honour." + } + }, + { + "id": "IBMS_55181819", + "startMs": 1765599300000, + "endMs": 1765600500000, + "live": false, + "nzBsaRatingString": "G", + "programme": { + "id": "mac_10968866", + "title": "Driving Miss Hazy / No Guts, No Glori", + "synopsis": "Sick of doing favours to get a ride from Lori, Lincoln decides it's time to help Leni pass her driver's test. / Lincoln teams up with his sisters to topple Lori's reign as their tyrant babysitter." + } + }, + { + "id": "IBMS_55178641", + "startMs": 1765600500000, + "endMs": 1765603500000, + "live": false, + "nzBsaRatingString": "G", + "programme": { + "id": "mac_11446950", + "title": "PAW Patrol: Mighty Pups" + } + }, + { + "id": "IBMS_55207042", + "startMs": 1765603500000, + "endMs": 1765603800000, + "live": false, + "nzBsaRatingString": "G", + "programme": { + "id": "mac_11795496", + "title": "Ai", + "synopsis": "Worried about their jobs as artists, Penny and the crew go to war with an AI art machine. Does it stand a chance against The Drawing Show team's collective creativity?" + } + }, + { + "id": "IBMS_55207116", + "startMs": 1765603800000, + "endMs": 1765604400000, + "live": false, + "nzBsaRatingString": "G", + "programme": { + "id": "mac_11618019", + "title": "No Game", + "synopsis": "Tired of this weird game, Josh decides it's time to go home. However, he's soon running for his life from creatures emerging from a strange bone-lined fort. S1 Ep3" + } + }, + { + "id": "IBMS_55207117", + "startMs": 1765604400000, + "endMs": 1765605000000, + "live": false, + "nzBsaRatingString": "G", + "programme": { + "id": "mac_11618020", + "title": "The Strange Village", + "synopsis": "Josh, Kazumi, Rangi, Kura, and Toro search the ponaturi's village for the godstick. They think they're alone and safe, but one old ponaturi warrior is still there. S1 Ep4" + } + }, + { + "id": "IBMS_55178755", + "startMs": 1765605000000, + "endMs": 1765606500000, + "live": false, + "nzBsaRatingString": "G", + "programme": { + "id": "mac_10665086", + "title": "Nature Pants / Opposite Day", + "synopsis": "SpongeBob leaves the industrial grind behind to live freely among the jellyfish. / Fed up with SpongeBob and Patrick's antics, Squidward decides it's time to move." + } + }, + { + "id": "IBMS_55178756", + "startMs": 1765606500000, + "endMs": 1765608000000, + "live": false, + "nzBsaRatingString": "G", + "programme": { + "id": "mac_10665087", + "title": "Culture Shock / F.U.N.", + "synopsis": "There's a talent show at the Krusty Krab, and Squidward's decided he's in charge. / The evil Plankton hatches a scheme to steal a Krabby Patty." + } + }, + { + "id": "IBMS_55178757", + "startMs": 1765608000000, + "endMs": 1765609200000, + "live": false, + "nzBsaRatingString": "G", + "programme": { + "id": "mac_10665088", + "title": "MuscleBob BuffPants / Squidward, the Unfriendly Ghost", + "synopsis": "SpongeBob tries to get fit for attention but opts for the easy way when exercise proves tough. / Thinking he's killed Squidward, SpongeBob is haunted by his \"ghost\" along with Patrick." + } + }, + { + "id": "IBMS_55178758", + "startMs": 1765609200000, + "endMs": 1765610700000, + "live": false, + "nzBsaRatingString": "G", + "programme": { + "id": "mac_10665089", + "title": "The Chaperone / Employee of the Month", + "synopsis": "When Mr. Krab's daughter Pearl is stood up, SpongeBob steps in to save the day. / After SpongeBob teases Squidward that he could never win Employee of the Month, Squidward accepts the challenge." + } + }, + { + "id": "IBMS_55181334", + "startMs": 1765610700000, + "endMs": 1765611900000, + "live": false, + "nzBsaRatingString": "G", + "programme": { + "id": "mac_10965114", + "title": "At the Movies / Slumber Party", + "synopsis": "The Rugrats set off on a quest to watch Reptar, leaving a path of destruction in their wake. / When Angelica wants the window open at their sleepover, Tommy's dreams take a bizarre turn." + } + }, + { + "id": "IBMS_55181335", + "startMs": 1765611900000, + "endMs": 1765613400000, + "live": false, + "nzBsaRatingString": "G", + "programme": { + "id": "mac_10965115", + "title": "Baby Commercial / Little Dude", + "synopsis": "Phil and Lil star in a diaper commercial and do anything but stick to the script. / Didi brings Tommy to the school where she teaches, and he becomes the coolest baby in class." + } + }, + { + "id": "IBMS_55181432", + "startMs": 1765613400000, + "endMs": 1765614900000, + "live": false, + "nzBsaRatingString": "PG", + "programme": { + "id": "mac_10519503", + "title": "The Southern Air Temple", + "synopsis": "Aang returns to the Southern Air Temple, only to uncover tragic ruins and a haunting truth, while Zuko enters a fiery duel with Commander Zhao, desperate to reclaim his lost honour." + } + }, + { + "id": "IBMS_55181448", + "startMs": 1765614900000, + "endMs": 1765616400000, + "live": false, + "nzBsaRatingString": "G", + "programme": { + "id": "mac_10968866", + "title": "Driving Miss Hazy / No Guts, No Glori", + "synopsis": "Sick of doing favours to get a ride from Lori, Lincoln decides it's time to help Leni pass her driver's test. / Lincoln teams up with his sisters to topple Lori's reign as their tyrant babysitter." + } + }, + { + "id": "IBMS_55181144", + "startMs": 1765616400000, + "endMs": 1765617600000, + "live": false, + "nzBsaRatingString": "PG", + "programme": { + "id": "mac_10665342", + "title": "I Think His Name is Baxter Stockman", + "synopsis": "When the Turtles sneak out against Splinter's wishes, they battle Baxter Stockman, a deranged inventor in mechanical battle armor." + } + }, + { + "id": "IBMS_55181145", + "startMs": 1765617600000, + "endMs": 1765619100000, + "live": false, + "nzBsaRatingString": "PG", + "programme": { + "id": "mac_10665343", + "title": "Metalhead", + "synopsis": "Weary of using his simple bo staff to fight the technologically advanced Kraang, Donatello creates Metalhead, a remote-controlled robot turtle to fight in his place." + } + }, + { + "id": "IBMS_55181072", + "startMs": 1765619100000, + "endMs": 1765620600000, + "live": false, + "nzBsaRatingString": "G", + "programme": { + "id": "mac_11386117", + "title": "Pups Save an Extreme Lunch/ Pups Save a Cat Burglar", + "synopsis": "Daring Danny X's new stunt flips from going well to disaster when he stops midway across the canyon for his extreme lunch. Mayor Humdinger's attempt to cheat during Pie Swap Day is derailed by a bear." + } + }, + { + "id": "IBMS_55181079", + "startMs": 1765620600000, + "endMs": 1765622100000, + "live": false, + "nzBsaRatingString": "G", + "programme": { + "id": "mac_11386118", + "title": "Sea Patrol: Pups Save the Flying Diving Bell/Pups Save a Soggy Farm", + "synopsis": "Farmer Yumi and Mayor Goodway are scuba diving, unaware that an underwater volcano is about to erupt. Farmer Al wakes up to find his farmland has turned into a lake." + } + }, + { + "id": "IBMS_55181188", + "startMs": 1765622100000, + "endMs": 1765624800000, + "live": false, + "nzBsaRatingString": "G", + "programme": { + "id": "mac_11446950", + "title": "PAW Patrol: Mighty Pups" + } + } + ] + } + }, + { + "id": "0166", + "title": "CBeebies", + "number": 103, + "tileImage": { + "uri": "https://images.skyone.co.nz/contentful/dcojl03mw8gy/6x6SVtdBYcIL4FemJah3oh/bc6ba686f00a2c7495eb83703ea80d84/Ceebies.png" + }, + "slotsForDay": { + "slots": [ + { + "id": "IBMS_55378466", + "startMs": 1765537200000, + "endMs": 1765537500000, + "live": false, + "nzBsaRatingString": "G", + "programme": { + "id": "mac_11739964", + "title": "Hey Duggee: Songs", + "synopsis": "The First Day Song: Are you feeling very nervous? Sing along with Duggee and the Squirrels to the First Day song. S1 E37" + } + }, + { + "id": "IBMS_55378467", + "startMs": 1765537500000, + "endMs": 1765537800000, + "live": false, + "nzBsaRatingString": "G", + "programme": { + "id": "mac_11810685", + "title": "Hey Duggee's Squirrel Club", + "synopsis": "I'm Hungry: King Tiger and the Jelly wonder what Duggee has planned for today. Tag wants a snack, Enid has a musical cheese chase, and Norrie has a haircut. S1 E5" + } + }, + { + "id": "IBMS_55378468", + "startMs": 1765537800000, + "endMs": 1765538400000, + "live": false, + "nzBsaRatingString": "G", + "programme": { + "id": "mac_11740374", + "title": "Bluey", + "synopsis": "Calypso: At school, Bluey and her friends enjoy various games. Teacher Calypso keeps her charges on track with a wise word and a song all except the mysterious Pretzel. S1 E17" + } + }, + { + "id": "IBMS_55378469", + "startMs": 1765538400000, + "endMs": 1765539000000, + "live": false, + "nzBsaRatingString": "G", + "programme": { + "id": "mac_11783268", + "title": "Andy's Safari Adventures", + "synopsis": "Andy and the Treeshrew: Andy heads to the rainforests of Borneo in search of a treeshrew and its favourite food, mangosteens. S1 E20" + } + }, + { + "id": "IBMS_55378470", + "startMs": 1765539000000, + "endMs": 1765539600000, + "live": false, + "nzBsaRatingString": "G", + "programme": { + "id": "mac_11776151", + "title": "Andy's Dino Toybox", + "synopsis": "Dino Racing: Who's the fastest dinosaur around? There's only one way to find out - it's time for dino racing! S1 E10" + } + }, + { + "id": "IBMS_55378471", + "startMs": 1765539600000, + "endMs": 1765539900000, + "live": false, + "nzBsaRatingString": "G", + "programme": { + "id": "mac_11741259", + "title": "Number 1 Newton Avenue", + "synopsis": "Wrong Way: Libby has made a mini golf course out of cardboard in the shared garden. Libby tries to instruct her mum on how to navigate the course but ends up confusing herself as there are too many instructions. S1 E8" + } + }, + { + "id": "IBMS_55378472", + "startMs": 1765539900000, + "endMs": 1765540200000, + "live": false, + "nzBsaRatingString": "G", + "programme": { + "id": "mac_11740727", + "title": "Andy's Secret Hideout", + "synopsis": "Spiders: Meet some scary spiders with Andy! S1 E15" + } + }, + { + "id": "IBMS_55378473", + "startMs": 1765540200000, + "endMs": 1765540800000, + "live": false, + "nzBsaRatingString": "G", + "programme": { + "id": "mac_11740124", + "title": "Dog Squad", + "synopsis": "Mission: Pet Shop: Mum gives Rayane and his hearing dog Diesel a mission to get some dog food and a new toy from the pet shop. S1 E13" + } + }, + { + "id": "IBMS_55378474", + "startMs": 1765540800000, + "endMs": 1765541400000, + "live": false, + "nzBsaRatingString": "G", + "programme": { + "id": "mac_11741238", + "title": "Bluey", + "synopsis": "Magic: Bluey teaches Bingo how to use magic so she can make Mum play with her. S3 E10" + } + }, + { + "id": "IBMS_55378475", + "startMs": 1765541400000, + "endMs": 1765541700000, + "live": false, + "nzBsaRatingString": "G", + "programme": { + "id": "mac_11740438", + "title": "Supertato", + "synopsis": "Double Doughnut Rescue: Supertato almost quits being a superhero when he can't save two friends at the same time. S1 E13" + } + }, + { + "id": "IBMS_55378476", + "startMs": 1765541700000, + "endMs": 1765542300000, + "live": false, + "nzBsaRatingString": "G", + "programme": { + "id": "mac_11740262", + "title": "Thomas & Friends", + "synopsis": "Other Side Of The Mountain: Ryan and Daisy Join Thomas the Tank Engine and his other engine friends as they work on the busy railways of the Island of Sodor under the supervision of Sir Topham Hatt, the 'Fat Controller.'. S19 E29" + } + }, + { + "id": "IBMS_55378477", + "startMs": 1765542300000, + "endMs": 1765542900000, + "live": false, + "nzBsaRatingString": "G", + "programme": { + "id": "mac_11816450", + "title": "Stan Can", + "synopsis": "Leaves: There are leaves all over the place, Stanley tries to gather them up in his van with his leaf blower, but it is harder than he thought and fills Myrtle's house with them instead. S1 E30" + } + }, + { + "id": "IBMS_55378478", + "startMs": 1765542900000, + "endMs": 1765543200000, + "live": false, + "nzBsaRatingString": "G", + "programme": { + "id": "mac_11740179", + "title": "Hey Duggee: Songs", + "synopsis": "Halloween Song: Time to get your funky Halloween moves on with Hedgley the hedgehog. S1 E46" + } + }, + { + "id": "IBMS_55378479", + "startMs": 1765543200000, + "endMs": 1765543500000, + "live": false, + "nzBsaRatingString": "G", + "programme": { + "id": "mac_11837365", + "title": "Hey Duggee", + "synopsis": "The Cheerleading Badge: The Squirrels find Duggee's cheerleader pompoms, so he shows them his old moves. Time to practice: Duggee at the chess board, the Squirrels as a squad. There's a big match ahead S5 E11" + } + }, + { + "id": "IBMS_55378480", + "startMs": 1765543500000, + "endMs": 1765544100000, + "live": false, + "nzBsaRatingString": "G", + "programme": { + "id": "mac_11741057", + "title": "Sarah & Duck", + "synopsis": "Tummy Talk: When Sarah forgets her sandwich, her rumbling tummy inadvertently starts a conversation. S2 E35" + } + }, + { + "id": "IBMS_55378481", + "startMs": 1765544100000, + "endMs": 1765544400000, + "live": false, + "nzBsaRatingString": "G", + "programme": { + "id": "mac_11783544", + "title": "Kit & Pup", + "synopsis": "Heavy and Light: Kit and Pup are at the beach. Can you see who is carrying the heavy object and who is carrying the light object? S1 E9" + } + }, + { + "id": "IBMS_55378482", + "startMs": 1765544400000, + "endMs": 1765545000000, + "live": false, + "nzBsaRatingString": "G", + "programme": { + "id": "mac_11741393", + "title": "Go Jetters", + "synopsis": "Middle of the World City: Ecuador: After hearing about how the Monument to the Equator in Ciudad Mitad del Mundo is in the wrong location, Glitch and his Glitchbots pretend to be the Go Jetters and move the monument onto the equator. S3 E7" + } + }, + { + "id": "IBMS_55378483", + "startMs": 1765545000000, + "endMs": 1765545900000, + "live": false, + "nzBsaRatingString": "G", + "programme": { + "id": "mac_11776412", + "title": "Catie's Amazing Machines", + "synopsis": "Off-Road Machines: CBeebies rally driver Catie shows off three amazing off-road machines. S1 E10" + } + }, + { + "id": "IBMS_55378484", + "startMs": 1765545900000, + "endMs": 1765547400000, + "live": false, + "nzBsaRatingString": "G", + "programme": { + "id": "mac_11741143", + "title": "Swashbuckle", + "synopsis": "Green Fingered Pirates: Cook and Line give Captain HeyHo a new plant, Keith. The captain suggests that by playing calming music they could help their new plant grow. S6 E8" + } + }, + { + "id": "IBMS_55378485", + "startMs": 1765547400000, + "endMs": 1765547700000, + "live": false, + "nzBsaRatingString": "G", + "programme": { + "id": "mac_11740787", + "title": "Andy's Secret Hideout", + "synopsis": "Skunk: Andy finds a smelly skunk in his trunk! S1 E5" + } + }, + { + "id": "IBMS_55378486", + "startMs": 1765547700000, + "endMs": 1765548000000, + "live": false, + "nzBsaRatingString": "G", + "programme": { + "id": "mac_11793592", + "title": "Yakka Dee", + "synopsis": "Chicken: Dee encourages a friend to say 'chicken' and we go on a whirlwind word adventure. We see lots of chickens - a brown chicken, a white chicken, a clucking chicken and some friendly chickens. S4 E5" + } + }, + { + "id": "IBMS_55378487", + "startMs": 1765548000000, + "endMs": 1765548300000, + "live": false, + "nzBsaRatingString": "G", + "programme": { + "id": "mac_11741238", + "title": "Bluey", + "synopsis": "Magic: Bluey teaches Bingo how to use magic so she can make Mum play with her. S3 E10" + } + }, + { + "id": "IBMS_55378488", + "startMs": 1765548300000, + "endMs": 1765550100000, + "live": false, + "nzBsaRatingString": "G", + "programme": { + "id": "mac_11740146", + "title": "In The Night Garden", + "synopsis": "Wave To The Wottingers: The Pontipines set out on a walk, but everywhere they go the Wottingers get there first. . S2 E7" + } + }, + { + "id": "IBMS_55378489", + "startMs": 1765550100000, + "endMs": 1765550700000, + "live": false, + "nzBsaRatingString": "G", + "programme": { + "id": "mac_11740051", + "title": "My World Kitchen", + "synopsis": "Vinnie's Bristolian Asparagus Tart: Vinnie's tarts are made of puff pastry with a cream cheese and asparagus topping. Yum! S4 E2" + } + }, + { + "id": "IBMS_55378490", + "startMs": 1765550700000, + "endMs": 1765551600000, + "live": false, + "nzBsaRatingString": "G", + "programme": { + "id": "mac_11783084", + "title": "Andy's Safari Adventures", + "synopsis": "Andy and the Bowerbird: Disaster strikes at Safari World when Andy accidentally breaks a Bowerbird nest that Mr Hammond was going to put on display. S1 E12" + } + }, + { + "id": "IBMS_55378491", + "startMs": 1765551600000, + "endMs": 1765552200000, + "live": false, + "nzBsaRatingString": "G", + "programme": { + "id": "mac_11740725", + "title": "Hey Duggee", + "synopsis": "The Lost Property Badge: The Squirrels lose Tag in the Clubhouse but to find him they're going to have to figure out where the Lost Property room is. S4 E12" + } + }, + { + "id": "IBMS_55378492", + "startMs": 1765552200000, + "endMs": 1765552500000, + "live": false, + "nzBsaRatingString": "G", + "programme": { + "id": "mac_11741414", + "title": "Sarah & Duck", + "synopsis": "The Mouse's Birthday: Sarah's hoping for a nice quiet birthday, but is not getting her wish once her friends arrive S2 E5" + } + }, + { + "id": "IBMS_55378493", + "startMs": 1765552500000, + "endMs": 1765553400000, + "live": false, + "nzBsaRatingString": "G", + "programme": { + "id": "mac_11776644", + "title": "My Pet And Me: Teeny Tiny Creatures", + "synopsis": "Newts: Freddie finds out all about newts. Chantelle is at Dartmoor Zoo to meet Kira and two very special salamanders, while Rory and his son Sandy are at Gartcosh Nature Reserve to meet a very special newt. S2 E5" + } + }, + { + "id": "IBMS_55378494", + "startMs": 1765553400000, + "endMs": 1765554000000, + "live": false, + "nzBsaRatingString": "G", + "programme": { + "id": "mac_11739971", + "title": "Thomas & Friends", + "synopsis": "Philip To The Rescue: James pulls a very long train and comes off the rails. S19 E26" + } + }, + { + "id": "IBMS_55378495", + "startMs": 1765554000000, + "endMs": 1765554600000, + "live": false, + "nzBsaRatingString": "G", + "programme": { + "id": "mac_11741157", + "title": "Bluey", + "synopsis": "Trains: All aboard the Dad Train! Bingo goes from home to daycare to her job at the vet every morning, but there's trouble on the line as a mischievous Bluey throws everyone off schedule. S2 E15" + } + }, + { + "id": "IBMS_55378496", + "startMs": 1765554600000, + "endMs": 1765554900000, + "live": false, + "nzBsaRatingString": "G", + "programme": { + "id": "mac_11845172", + "title": "Supertato", + "synopsis": "Robotato: Evil Pea has trapped Supertato and replaced him with an evil robot lookalike called Robotato. S2 E16" + } + }, + { + "id": "IBMS_55378497", + "startMs": 1765554900000, + "endMs": 1765555800000, + "live": false, + "nzBsaRatingString": "G", + "programme": { + "id": "mac_11740832", + "title": "My Pet And Me", + "synopsis": "Felix the Station Cat: Ferne visits a train station and meets a special cat called Felix who lives there. S3 E3" + } + }, + { + "id": "IBMS_55378498", + "startMs": 1765555800000, + "endMs": 1765556700000, + "live": false, + "nzBsaRatingString": "G", + "programme": { + "id": "mac_11782901", + "title": "Go Jetters", + "synopsis": "Venice, Italy: The Go Jetters get a sinking feeling when Glitch turns the canals of Venice into roads. S2 E8" + } + }, + { + "id": "IBMS_55378499", + "startMs": 1765556700000, + "endMs": 1765557000000, + "live": false, + "nzBsaRatingString": "G", + "programme": { + "id": "mac_11816533", + "title": "Stan Can", + "synopsis": "Sleepover: Stanley helps Hettie with a sleepover at the museum for some of the children. They do a treasure hunt and a night-time picnic, but antics ensue when they clean up after themselves. S1 E37" + } + }, + { + "id": "IBMS_55378500", + "startMs": 1765557000000, + "endMs": 1765558800000, + "live": false, + "nzBsaRatingString": "G", + "programme": { + "id": "mac_11776418", + "title": "In The Night Garden", + "synopsis": "Catch The Ninky Nonk, Tombliboos: Makka Pakka takes a ride on the Ninky Nonk. The Tombliboos rode on the Pinky Ponk and decide to join him. S4 E16" + } + }, + { + "id": "IBMS_55378501", + "startMs": 1765558800000, + "endMs": 1765559100000, + "live": false, + "nzBsaRatingString": "G", + "programme": { + "id": "mac_11741704", + "title": "Roots & Fruits", + "synopsis": "Artichoke: Little artichoke sings about being the rhyming queen. S1 E16" + } + }, + { + "id": "IBMS_55378502", + "startMs": 1765559100000, + "endMs": 1765560000000, + "live": false, + "nzBsaRatingString": "G", + "programme": { + "id": "mac_11823498", + "title": "Andy's Wild Adventures", + "synopsis": "Chimpanzees: Andy and Kip head to the jungles of Africa in search of chimpanzees. S1 E26" + } + }, + { + "id": "IBMS_55378503", + "startMs": 1765560000000, + "endMs": 1765560300000, + "live": false, + "nzBsaRatingString": "G", + "programme": { + "id": "mac_11740348", + "title": "Bluey", + "synopsis": "Born Yesterday: Dad pretends he was born yesterday. Bluey and Bingo have to guide him through his day. S3 E6" + } + }, + { + "id": "IBMS_55378504", + "startMs": 1765560300000, + "endMs": 1765560900000, + "live": false, + "nzBsaRatingString": "G", + "programme": { + "id": "mac_11741055", + "title": "Bluey", + "synopsis": "Mini Bluey: Dad complains about how dissimilar Bluey and Bingo are. S3 E7" + } + }, + { + "id": "IBMS_55378505", + "startMs": 1765560900000, + "endMs": 1765561200000, + "live": false, + "nzBsaRatingString": "G", + "programme": { + "id": "mac_11741150", + "title": "Bluey", + "synopsis": "Unicorse: Bluey can't get to sleep, so Mum reads her one last story. S3 E8" + } + }, + { + "id": "IBMS_55378506", + "startMs": 1765561200000, + "endMs": 1765561800000, + "live": false, + "nzBsaRatingString": "G", + "programme": { + "id": "mac_11741194", + "title": "Bluey", + "synopsis": "Curry Quest: Bingo and Dad must brave a swooping magpie protecting its nest. S3 E9" + } + }, + { + "id": "IBMS_55378507", + "startMs": 1765561800000, + "endMs": 1765562100000, + "live": false, + "nzBsaRatingString": "G", + "programme": { + "id": "mac_11741238", + "title": "Bluey", + "synopsis": "Magic: Bluey teaches Bingo how to use magic so she can make Mum play with her. S3 E10" + } + }, + { + "id": "IBMS_55378508", + "startMs": 1765562100000, + "endMs": 1765562700000, + "live": false, + "nzBsaRatingString": "G", + "programme": { + "id": "mac_11740232", + "title": "Bluey", + "synopsis": "Favourite Thing: When Bluey accidentally makes Bingo upset playing a game at dinner, she will do anything to make her happy again - even changing the rules of the game. But nothing seems to work. S2 E7" + } + }, + { + "id": "IBMS_55378509", + "startMs": 1765562700000, + "endMs": 1765563000000, + "live": false, + "nzBsaRatingString": "G", + "programme": { + "id": "mac_11740396", + "title": "Bluey", + "synopsis": "BBQ: It's lunchtime on Bluey's deck! But the BBQ needs a salad, so Bingo's relaxing sit-down will have to wait until she finds every colour of capsicum her cousins asked for! S1 E7" + } + }, + { + "id": "IBMS_55378510", + "startMs": 1765563000000, + "endMs": 1765564200000, + "live": false, + "nzBsaRatingString": "G", + "programme": { + "id": "mac_11776635", + "title": "My Pet And Me: Teeny Tiny Creatures", + "synopsis": "Ants: Presented by Rory and Nina, each episode focuses on one type of creature- we learn how to identify it, what it eats, what eats it and what role it plays in the wider environment. S1 E10" + } + }, + { + "id": "IBMS_55378511", + "startMs": 1765564200000, + "endMs": 1765564500000, + "live": false, + "nzBsaRatingString": "G", + "programme": { + "id": "mac_11782960", + "title": "Yakka Dee", + "synopsis": "Chair: Dee encourages a friend to say 'chair', and we go on a whirlwind word adventure. S6 E18" + } + }, + { + "id": "IBMS_55378512", + "startMs": 1765564500000, + "endMs": 1765565100000, + "live": false, + "nzBsaRatingString": "G", + "programme": { + "id": "mac_11740632", + "title": "Go Jetters", + "synopsis": "Horsetail Fall, California: Can the team save snowy Princess Glorinda and Firefall at the Yosemite National park? S2 E50" + } + }, + { + "id": "IBMS_55378513", + "startMs": 1765565100000, + "endMs": 1765566000000, + "live": false, + "nzBsaRatingString": "G", + "programme": { + "id": "mac_11740078", + "title": "Thomas & Friends", + "synopsis": "Thomas The Babysitter: Thomas, Annie and Clarabel have to deal with a noisy baby. S19 E27" + } + }, + { + "id": "IBMS_55378514", + "startMs": 1765566000000, + "endMs": 1765566300000, + "live": false, + "nzBsaRatingString": "G", + "programme": { + "id": "mac_11740138", + "title": "Andy's Secret Hideout", + "synopsis": "The Stick Insect: There's a stowaway in the hideout - a camouflaged stick insect! Andy meets some other animals that are masters of disguise. S2 E7" + } + }, + { + "id": "IBMS_55378515", + "startMs": 1765566300000, + "endMs": 1765566600000, + "live": false, + "nzBsaRatingString": "G", + "programme": { + "id": "mac_11740071", + "title": "Hey Duggee: Songs", + "synopsis": "The Getting Ready Song: Are you pumped? Get ready with Bug from your head to your toes. S1 E38" + } + }, + { + "id": "IBMS_55378516", + "startMs": 1765566600000, + "endMs": 1765566900000, + "live": false, + "nzBsaRatingString": "G", + "programme": { + "id": "mac_11782742", + "title": "Hey Duggee", + "synopsis": "The Stick Badge: Duggee and the squirrels prepare for a campfire by collecting sticks of all sizes. S2 E31" + } + }, + { + "id": "IBMS_55378517", + "startMs": 1765566900000, + "endMs": 1765567200000, + "live": false, + "nzBsaRatingString": "G", + "programme": { + "id": "mac_11782782", + "title": "Hey Duggee", + "synopsis": "The Voice Badge: Duggee explains why animals all have different voices. S2 E32" + } + }, + { + "id": "IBMS_55378518", + "startMs": 1765567200000, + "endMs": 1765567800000, + "live": false, + "nzBsaRatingString": "G", + "programme": { + "id": "mac_11782840", + "title": "Hey Duggee", + "synopsis": "The Island Badge: Duggee and the Squirrels are out doing a bit of sailing. What fun! S2 E33" + } + }, + { + "id": "IBMS_55378519", + "startMs": 1765567800000, + "endMs": 1765568100000, + "live": false, + "nzBsaRatingString": "G", + "programme": { + "id": "mac_11783082", + "title": "Hey Duggee", + "synopsis": "The Sleeping Badge: Tag is having trouble sleeping, so Duggee offers him a few tricks to help him. S2 E34" + } + }, + { + "id": "IBMS_55378520", + "startMs": 1765568100000, + "endMs": 1765568700000, + "live": false, + "nzBsaRatingString": "G", + "programme": { + "id": "mac_11783164", + "title": "Hey Duggee", + "synopsis": "The Brave Banana Badge: When thunder and lightning scares the squirrels, Duggee teaches them about bravery. S2 E35" + } + }, + { + "id": "IBMS_55378521", + "startMs": 1765568700000, + "endMs": 1765569900000, + "live": false, + "nzBsaRatingString": "G", + "programme": { + "id": "mac_11810760", + "title": "Swashbuckle", + "synopsis": "Sinker's Twin: Captain Sinker's identical twin sister is coming to stay, so Cook and Line must prepare. S2 E21" + } + }, + { + "id": "IBMS_55378522", + "startMs": 1765569900000, + "endMs": 1765570500000, + "live": false, + "nzBsaRatingString": "G", + "programme": { + "id": "mac_11741281", + "title": "Bluey", + "synopsis": "Chest: Dad tries to teach Bluey how to play chess, but Mum thinks she is still too young. S3 E11" + } + }, + { + "id": "IBMS_55378523", + "startMs": 1765570500000, + "endMs": 1765570800000, + "live": false, + "nzBsaRatingString": "G", + "programme": { + "id": "mac_11740439", + "title": "Supertato", + "synopsis": "Evil Pea Takes a Break: Evil Pea's spa break is ruined when the Cobs try to trick Supertato while she's gone. S1 E14" + } + }, + { + "id": "IBMS_55378524", + "startMs": 1765570800000, + "endMs": 1765571700000, + "live": false, + "nzBsaRatingString": "G", + "programme": { + "id": "mac_11740436", + "title": "Thomas & Friends", + "synopsis": "No Help At All: Bill and Ben are fed up with Timothy so they trick the Fat Controller into sending Timothy to help at Brendam Docks. S19 E30" + } + }, + { + "id": "IBMS_55378525", + "startMs": 1765571700000, + "endMs": 1765572000000, + "live": false, + "nzBsaRatingString": "G", + "programme": { + "id": "mac_11816452", + "title": "Stan Can", + "synopsis": "Bus-Train: Cynthia is working on the bus so asks Stanley to take her passengers to the community centre. He uses Amare's tractor and trailer, his car, a boat, and a bath to make a Bus-Train. S1 E31" + } + }, + { + "id": "IBMS_55378526", + "startMs": 1765572000000, + "endMs": 1765572300000, + "live": false, + "nzBsaRatingString": "G", + "programme": { + "id": "mac_11740269", + "title": "Hey Duggee: Songs", + "synopsis": "Twelve Days Of Christmas: Celebrate the Twelve Days of Christmas with Duggee and the Squirrels. S1 E47" + } + }, + { + "id": "IBMS_55378527", + "startMs": 1765572300000, + "endMs": 1765572900000, + "live": false, + "nzBsaRatingString": "G", + "programme": { + "id": "mac_11836908", + "title": "Hey Duggee", + "synopsis": "The Waiting Badge: When they're accidentally shut in the shed, Duggee shows the Squirrels how to make the time pass with calm breathing and made-up games. The Squirrels cope so well. Does Duggee? S5 E12" + } + }, + { + "id": "IBMS_55378528", + "startMs": 1765572900000, + "endMs": 1765573200000, + "live": false, + "nzBsaRatingString": "G", + "programme": { + "id": "mac_11741152", + "title": "Sarah & Duck", + "synopsis": "Moon's Exhibition: A trip to the art gallery unexpectedly helps Duck with the hunt for his lost toy Rhino. S2 E36" + } + }, + { + "id": "IBMS_55378529", + "startMs": 1765573200000, + "endMs": 1765573500000, + "live": false, + "nzBsaRatingString": "G", + "programme": { + "id": "mac_11793585", + "title": "Kit & Pup", + "synopsis": "Inside and Outside: Kit and Pup are playing with a cardboard box. Can you see who is playing inside and who is playing outside the box? S1 E10" + } + }, + { + "id": "IBMS_55378530", + "startMs": 1765573500000, + "endMs": 1765574400000, + "live": false, + "nzBsaRatingString": "G", + "programme": { + "id": "mac_11776214", + "title": "Catie's Amazing Machines", + "synopsis": "Three-Wheeled Machines: CBeebies rally driver Catie shows off three amazing machines that have only three wheels. S1 E6" + } + }, + { + "id": "IBMS_55378531", + "startMs": 1765574400000, + "endMs": 1765575300000, + "live": false, + "nzBsaRatingString": "G", + "programme": { + "id": "mac_11776276", + "title": "Catie's Amazing Machines", + "synopsis": "Farm Machines: CBeebies rally driver Catie shows off three amazing machines that are used on farms. S1 E7" + } + }, + { + "id": "IBMS_55378532", + "startMs": 1765575300000, + "endMs": 1765576200000, + "live": false, + "nzBsaRatingString": "G", + "programme": { + "id": "mac_11776301", + "title": "Catie's Amazing Machines", + "synopsis": "Water Machines: CBeebies rally driver Catie shows off three amazing machines that all belong on water. S1 E8" + } + }, + { + "id": "IBMS_55378533", + "startMs": 1765576200000, + "endMs": 1765576500000, + "live": false, + "nzBsaRatingString": "G", + "programme": { + "id": "mac_11793602", + "title": "Yakka Dee", + "synopsis": "Glasses: Dee encourages a friend to say 'glasses' and we go on a whirlwind word adventure. S4 E6" + } + }, + { + "id": "IBMS_55378534", + "startMs": 1765576500000, + "endMs": 1765577100000, + "live": false, + "nzBsaRatingString": "G", + "programme": { + "id": "mac_11741281", + "title": "Bluey", + "synopsis": "Chest: Dad tries to teach Bluey how to play chess, but Mum thinks she is still too young. S3 E11" + } + }, + { + "id": "IBMS_55378535", + "startMs": 1765577100000, + "endMs": 1765578900000, + "live": false, + "nzBsaRatingString": "G", + "programme": { + "id": "mac_11740237", + "title": "In The Night Garden", + "synopsis": "Runaway Og-Pog: Makka Pakka's Og-pog runs away by itself. S2 E8" + } + }, + { + "id": "IBMS_55378536", + "startMs": 1765578900000, + "endMs": 1765579500000, + "live": false, + "nzBsaRatingString": "G", + "programme": { + "id": "mac_11740148", + "title": "My World Kitchen", + "synopsis": "Zahra-Rose's Somalian Nafaqo: Zahra-Rose's dish is Somalian nafaqo, made using mashed potato stuffed with boiled egg. S4 E3" + } + }, + { + "id": "IBMS_55378537", + "startMs": 1765579500000, + "endMs": 1765580400000, + "live": false, + "nzBsaRatingString": "G", + "programme": { + "id": "mac_11783166", + "title": "Andy's Safari Adventures", + "synopsis": "Andy and the Hermit Crab: Andy works at Safari world, the biggest and best safari park on the planet, home to animals from all over the globe. S1 E13" + } + }, + { + "id": "IBMS_55378538", + "startMs": 1765580400000, + "endMs": 1765580700000, + "live": false, + "nzBsaRatingString": "G", + "programme": { + "id": "mac_11740918", + "title": "Sarah & Duck", + "synopsis": "Outside Outside: The Shallots want to explore beyond the front garden, so Sarah comes up with a plan. S2 E1" + } + }, + { + "id": "IBMS_55378539", + "startMs": 1765580700000, + "endMs": 1765581300000, + "live": false, + "nzBsaRatingString": "G", + "programme": { + "id": "mac_11741254", + "title": "Sarah & Duck", + "synopsis": "Umbrella Bubbles: After getting muddy, Umbrella has to brave his fear of getting wet and take his first bath! S2 E2" + } + }, + { + "id": "IBMS_55378540", + "startMs": 1765581300000, + "endMs": 1765581600000, + "live": false, + "nzBsaRatingString": "G", + "programme": { + "id": "mac_11741291", + "title": "Sarah & Duck", + "synopsis": "Cloud Tower: A search for shade on a hot day leads Sarah and Duck to discover a fascinating tower in the park. S2 E3" + } + }, + { + "id": "IBMS_55378541", + "startMs": 1765581600000, + "endMs": 1765582200000, + "live": false, + "nzBsaRatingString": "G", + "programme": { + "id": "mac_11741379", + "title": "Sarah & Duck", + "synopsis": "Sound Jumble: When Sarah hears some interesting music on the radio, she and Duck try to recreate it. S2 E4" + } + }, + { + "id": "IBMS_55378542", + "startMs": 1765582200000, + "endMs": 1765582500000, + "live": false, + "nzBsaRatingString": "G", + "programme": { + "id": "mac_11741414", + "title": "Sarah & Duck", + "synopsis": "The Mouse's Birthday: Sarah's hoping for a nice quiet birthday, but is not getting her wish once her friends arrive S2 E5" + } + }, + { + "id": "IBMS_55378543", + "startMs": 1765582500000, + "endMs": 1765583100000, + "live": false, + "nzBsaRatingString": "G", + "programme": { + "id": "mac_11740048", + "title": "Bluey", + "synopsis": "Spy Game: When Bingo stops playing Bluey's spy game, their grown-up controlling device stops working properly! Bluey now sees how important Bingo is and needs to win her back! S1 E13" + } + }, + { + "id": "IBMS_55378544", + "startMs": 1765583100000, + "endMs": 1765583400000, + "live": false, + "nzBsaRatingString": "G", + "programme": { + "id": "mac_11740145", + "title": "Bluey", + "synopsis": "Takeaway: Forced to wait five minutes in front of a restaurant for their takeaway, Bluey and Bingo become restless for entertainment, pushing the very limits of Dad's patience. S1 E14" + } + }, + { + "id": "IBMS_55378545", + "startMs": 1765583400000, + "endMs": 1765584000000, + "live": false, + "nzBsaRatingString": "G", + "programme": { + "id": "mac_11740236", + "title": "Bluey", + "synopsis": "Butterflies: Playing 'Butterflies' in the backyard is great fun, until Bluey runs away with Judo leaving Bingo all alone. Now poor Bingo's heartbroken and Bluey needs to make amends. S1 E15" + } + }, + { + "id": "IBMS_55378546", + "startMs": 1765584000000, + "endMs": 1765584300000, + "live": false, + "nzBsaRatingString": "G", + "programme": { + "id": "mac_11740325", + "title": "Bluey", + "synopsis": "Yoga Ball: Bingo loves playing with Dad, but sometimes he forgets Bingo is smaller than her sister. Mum teaches Bingo how to use her big girl bark to keep the fun within her limits. S1 E16" + } + }, + { + "id": "IBMS_55378547", + "startMs": 1765584300000, + "endMs": 1765585200000, + "live": false, + "nzBsaRatingString": "G", + "programme": { + "id": "mac_11783087", + "title": "Go Jetters", + "synopsis": "Seattle Space Needle, USA: The team goes where no Go Jetter has gone before, when Glitch tries to launch into space. S2 E9" + } + }, + { + "id": "IBMS_55378548", + "startMs": 1765585200000, + "endMs": 1765585800000, + "live": false, + "nzBsaRatingString": "G", + "programme": { + "id": "mac_11816560", + "title": "Stan Can", + "synopsis": "Mayor Stan: Myrtle declares Stanley Mayor for a day. He soon finds there is a dance class and new barn to open with lots of ribbon cutting, and he even fits in making a Bowling alley. S1 E38" + } + }, + { + "id": "IBMS_55378549", + "startMs": 1765585800000, + "endMs": 1765587600000, + "live": false, + "nzBsaRatingString": "G", + "programme": { + "id": "mac_11776487", + "title": "In The Night Garden", + "synopsis": "Hide And Seek: The Pontipine children hide from the Wottingers and all end up in Upsy Daisy's bed. S4 E17" + } + }, + { + "id": "IBMS_55378550", + "startMs": 1765587600000, + "endMs": 1765587900000, + "live": false, + "nzBsaRatingString": "G", + "programme": { + "id": "mac_11741704", + "title": "Roots & Fruits", + "synopsis": "Artichoke: Little artichoke sings about being the rhyming queen. S1 E16" + } + }, + { + "id": "IBMS_55378551", + "startMs": 1765587900000, + "endMs": 1765588800000, + "live": false, + "nzBsaRatingString": "G", + "programme": { + "id": "mac_11823498", + "title": "Andy's Wild Adventures", + "synopsis": "Chimpanzees: Andy and Kip head to the jungles of Africa in search of chimpanzees. S1 E26" + } + }, + { + "id": "IBMS_55378552", + "startMs": 1765588800000, + "endMs": 1765589100000, + "live": false, + "nzBsaRatingString": "G", + "programme": { + "id": "mac_11740348", + "title": "Bluey", + "synopsis": "Born Yesterday: Dad pretends he was born yesterday. Bluey and Bingo have to guide him through his day. S3 E6" + } + }, + { + "id": "IBMS_55378553", + "startMs": 1765589100000, + "endMs": 1765589700000, + "live": false, + "nzBsaRatingString": "G", + "programme": { + "id": "mac_11741055", + "title": "Bluey", + "synopsis": "Mini Bluey: Dad complains about how dissimilar Bluey and Bingo are. S3 E7" + } + }, + { + "id": "IBMS_55378554", + "startMs": 1765589700000, + "endMs": 1765590000000, + "live": false, + "nzBsaRatingString": "G", + "programme": { + "id": "mac_11741150", + "title": "Bluey", + "synopsis": "Unicorse: Bluey can't get to sleep, so Mum reads her one last story. S3 E8" + } + }, + { + "id": "IBMS_55378555", + "startMs": 1765590000000, + "endMs": 1765590600000, + "live": false, + "nzBsaRatingString": "G", + "programme": { + "id": "mac_11741194", + "title": "Bluey", + "synopsis": "Curry Quest: Bingo and Dad must brave a swooping magpie protecting its nest. S3 E9" + } + }, + { + "id": "IBMS_55378556", + "startMs": 1765590600000, + "endMs": 1765590900000, + "live": false, + "nzBsaRatingString": "G", + "programme": { + "id": "mac_11741238", + "title": "Bluey", + "synopsis": "Magic: Bluey teaches Bingo how to use magic so she can make Mum play with her. S3 E10" + } + }, + { + "id": "IBMS_55378557", + "startMs": 1765590900000, + "endMs": 1765591500000, + "live": false, + "nzBsaRatingString": "G", + "programme": { + "id": "mac_11740232", + "title": "Bluey", + "synopsis": "Favourite Thing: When Bluey accidentally makes Bingo upset playing a game at dinner, she will do anything to make her happy again - even changing the rules of the game. But nothing seems to work. S2 E7" + } + }, + { + "id": "IBMS_55378558", + "startMs": 1765591500000, + "endMs": 1765591800000, + "live": false, + "nzBsaRatingString": "G", + "programme": { + "id": "mac_11740396", + "title": "Bluey", + "synopsis": "BBQ: It's lunchtime on Bluey's deck! But the BBQ needs a salad, so Bingo's relaxing sit-down will have to wait until she finds every colour of capsicum her cousins asked for! S1 E7" + } + }, + { + "id": "IBMS_55378559", + "startMs": 1765591800000, + "endMs": 1765592700000, + "live": false, + "nzBsaRatingString": "G", + "programme": { + "id": "mac_11776635", + "title": "My Pet And Me: Teeny Tiny Creatures", + "synopsis": "Ants: Presented by Rory and Nina, each episode focuses on one type of creature- we learn how to identify it, what it eats, what eats it and what role it plays in the wider environment. S1 E10" + } + }, + { + "id": "IBMS_55378560", + "startMs": 1765592700000, + "endMs": 1765593000000, + "live": false, + "nzBsaRatingString": "G", + "programme": { + "id": "mac_11782960", + "title": "Yakka Dee", + "synopsis": "Chair: Dee encourages a friend to say 'chair', and we go on a whirlwind word adventure. S6 E18" + } + }, + { + "id": "IBMS_55378561", + "startMs": 1765593000000, + "endMs": 1765593900000, + "live": false, + "nzBsaRatingString": "G", + "programme": { + "id": "mac_11740632", + "title": "Go Jetters", + "synopsis": "Horsetail Fall, California: Can the team save snowy Princess Glorinda and Firefall at the Yosemite National park? S2 E50" + } + }, + { + "id": "IBMS_55378562", + "startMs": 1765593900000, + "endMs": 1765594500000, + "live": false, + "nzBsaRatingString": "G", + "programme": { + "id": "mac_11740078", + "title": "Thomas & Friends", + "synopsis": "Thomas The Babysitter: Thomas, Annie and Clarabel have to deal with a noisy baby. S19 E27" + } + }, + { + "id": "IBMS_55378563", + "startMs": 1765594500000, + "endMs": 1765594800000, + "live": false, + "nzBsaRatingString": "G", + "programme": { + "id": "mac_11740138", + "title": "Andy's Secret Hideout", + "synopsis": "The Stick Insect: There's a stowaway in the hideout - a camouflaged stick insect! Andy meets some other animals that are masters of disguise. S2 E7" + } + }, + { + "id": "IBMS_55378564", + "startMs": 1765594800000, + "endMs": 1765595100000, + "live": false, + "nzBsaRatingString": "G", + "programme": { + "id": "mac_11740071", + "title": "Hey Duggee: Songs", + "synopsis": "The Getting Ready Song: Are you pumped? Get ready with Bug from your head to your toes. S1 E38" + } + }, + { + "id": "IBMS_55378565", + "startMs": 1765595100000, + "endMs": 1765595400000, + "live": false, + "nzBsaRatingString": "G", + "programme": { + "id": "mac_11782742", + "title": "Hey Duggee", + "synopsis": "The Stick Badge: Duggee and the squirrels prepare for a campfire by collecting sticks of all sizes. S2 E31" + } + }, + { + "id": "IBMS_55378566", + "startMs": 1765595400000, + "endMs": 1765595700000, + "live": false, + "nzBsaRatingString": "G", + "programme": { + "id": "mac_11782782", + "title": "Hey Duggee", + "synopsis": "The Voice Badge: Duggee explains why animals all have different voices. S2 E32" + } + }, + { + "id": "IBMS_55378567", + "startMs": 1765595700000, + "endMs": 1765596300000, + "live": false, + "nzBsaRatingString": "G", + "programme": { + "id": "mac_11782840", + "title": "Hey Duggee", + "synopsis": "The Island Badge: Duggee and the Squirrels are out doing a bit of sailing. What fun! S2 E33" + } + }, + { + "id": "IBMS_55378568", + "startMs": 1765596300000, + "endMs": 1765596600000, + "live": false, + "nzBsaRatingString": "G", + "programme": { + "id": "mac_11783082", + "title": "Hey Duggee", + "synopsis": "The Sleeping Badge: Tag is having trouble sleeping, so Duggee offers him a few tricks to help him. S2 E34" + } + }, + { + "id": "IBMS_55378569", + "startMs": 1765596600000, + "endMs": 1765597200000, + "live": false, + "nzBsaRatingString": "G", + "programme": { + "id": "mac_11783164", + "title": "Hey Duggee", + "synopsis": "The Brave Banana Badge: When thunder and lightning scares the squirrels, Duggee teaches them about bravery. S2 E35" + } + }, + { + "id": "IBMS_55378570", + "startMs": 1765597200000, + "endMs": 1765598700000, + "live": false, + "nzBsaRatingString": "G", + "programme": { + "id": "mac_11810760", + "title": "Swashbuckle", + "synopsis": "Sinker's Twin: Captain Sinker's identical twin sister is coming to stay, so Cook and Line must prepare. S2 E21" + } + }, + { + "id": "IBMS_55378571", + "startMs": 1765598700000, + "endMs": 1765599000000, + "live": false, + "nzBsaRatingString": "G", + "programme": { + "id": "mac_11741281", + "title": "Bluey", + "synopsis": "Chest: Dad tries to teach Bluey how to play chess, but Mum thinks she is still too young. S3 E11" + } + }, + { + "id": "IBMS_55378572", + "startMs": 1765599000000, + "endMs": 1765599600000, + "live": false, + "nzBsaRatingString": "G", + "programme": { + "id": "mac_11740439", + "title": "Supertato", + "synopsis": "Evil Pea Takes a Break: Evil Pea's spa break is ruined when the Cobs try to trick Supertato while she's gone. S1 E14" + } + }, + { + "id": "IBMS_55378573", + "startMs": 1765599600000, + "endMs": 1765600200000, + "live": false, + "nzBsaRatingString": "G", + "programme": { + "id": "mac_11740436", + "title": "Thomas & Friends", + "synopsis": "No Help At All: Bill and Ben are fed up with Timothy so they trick the Fat Controller into sending Timothy to help at Brendam Docks. S19 E30" + } + }, + { + "id": "IBMS_55378574", + "startMs": 1765600200000, + "endMs": 1765600800000, + "live": false, + "nzBsaRatingString": "G", + "programme": { + "id": "mac_11816452", + "title": "Stan Can", + "synopsis": "Bus-Train: Cynthia is working on the bus so asks Stanley to take her passengers to the community centre. He uses Amare's tractor and trailer, his car, a boat, and a bath to make a Bus-Train. S1 E31" + } + }, + { + "id": "IBMS_55378575", + "startMs": 1765600800000, + "endMs": 1765601100000, + "live": false, + "nzBsaRatingString": "G", + "programme": { + "id": "mac_11740269", + "title": "Hey Duggee: Songs", + "synopsis": "Twelve Days Of Christmas: Celebrate the Twelve Days of Christmas with Duggee and the Squirrels. S1 E47" + } + }, + { + "id": "IBMS_55378576", + "startMs": 1765601100000, + "endMs": 1765601400000, + "live": false, + "nzBsaRatingString": "G", + "programme": { + "id": "mac_11836908", + "title": "Hey Duggee", + "synopsis": "The Waiting Badge: When they're accidentally shut in the shed, Duggee shows the Squirrels how to make the time pass with calm breathing and made-up games. The Squirrels cope so well. Does Duggee? S5 E12" + } + }, + { + "id": "IBMS_55378577", + "startMs": 1765601400000, + "endMs": 1765602000000, + "live": false, + "nzBsaRatingString": "G", + "programme": { + "id": "mac_11741152", + "title": "Sarah & Duck", + "synopsis": "Moon's Exhibition: A trip to the art gallery unexpectedly helps Duck with the hunt for his lost toy Rhino. S2 E36" + } + }, + { + "id": "IBMS_55378578", + "startMs": 1765602000000, + "endMs": 1765602300000, + "live": false, + "nzBsaRatingString": "G", + "programme": { + "id": "mac_11793585", + "title": "Kit & Pup", + "synopsis": "Inside and Outside: Kit and Pup are playing with a cardboard box. Can you see who is playing inside and who is playing outside the box? S1 E10" + } + }, + { + "id": "IBMS_55378579", + "startMs": 1765602300000, + "endMs": 1765603200000, + "live": false, + "nzBsaRatingString": "G", + "programme": { + "id": "mac_11776214", + "title": "Catie's Amazing Machines", + "synopsis": "Three-Wheeled Machines: CBeebies rally driver Catie shows off three amazing machines that have only three wheels. S1 E6" + } + }, + { + "id": "IBMS_55378580", + "startMs": 1765603200000, + "endMs": 1765604100000, + "live": false, + "nzBsaRatingString": "G", + "programme": { + "id": "mac_11776276", + "title": "Catie's Amazing Machines", + "synopsis": "Farm Machines: CBeebies rally driver Catie shows off three amazing machines that are used on farms. S1 E7" + } + }, + { + "id": "IBMS_55378581", + "startMs": 1765604100000, + "endMs": 1765605000000, + "live": false, + "nzBsaRatingString": "G", + "programme": { + "id": "mac_11776301", + "title": "Catie's Amazing Machines", + "synopsis": "Water Machines: CBeebies rally driver Catie shows off three amazing machines that all belong on water. S1 E8" + } + }, + { + "id": "IBMS_55378582", + "startMs": 1765605000000, + "endMs": 1765605300000, + "live": false, + "nzBsaRatingString": "G", + "programme": { + "id": "mac_11793602", + "title": "Yakka Dee", + "synopsis": "Glasses: Dee encourages a friend to say 'glasses' and we go on a whirlwind word adventure. S4 E6" + } + }, + { + "id": "IBMS_55378583", + "startMs": 1765605300000, + "endMs": 1765605900000, + "live": false, + "nzBsaRatingString": "G", + "programme": { + "id": "mac_11741281", + "title": "Bluey", + "synopsis": "Chest: Dad tries to teach Bluey how to play chess, but Mum thinks she is still too young. S3 E11" + } + }, + { + "id": "IBMS_55378584", + "startMs": 1765605900000, + "endMs": 1765607700000, + "live": false, + "nzBsaRatingString": "G", + "programme": { + "id": "mac_11740237", + "title": "In The Night Garden", + "synopsis": "Runaway Og-Pog: Makka Pakka's Og-pog runs away by itself. S2 E8" + } + }, + { + "id": "IBMS_55378585", + "startMs": 1765607700000, + "endMs": 1765608300000, + "live": false, + "nzBsaRatingString": "G", + "programme": { + "id": "mac_11740148", + "title": "My World Kitchen", + "synopsis": "Zahra-Rose's Somalian Nafaqo: Zahra-Rose's dish is Somalian nafaqo, made using mashed potato stuffed with boiled egg. S4 E3" + } + }, + { + "id": "IBMS_55378586", + "startMs": 1765608300000, + "endMs": 1765609200000, + "live": false, + "nzBsaRatingString": "G", + "programme": { + "id": "mac_11783166", + "title": "Andy's Safari Adventures", + "synopsis": "Andy and the Hermit Crab: Andy works at Safari world, the biggest and best safari park on the planet, home to animals from all over the globe. S1 E13" + } + }, + { + "id": "IBMS_55378587", + "startMs": 1765609200000, + "endMs": 1765609500000, + "live": false, + "nzBsaRatingString": "G", + "programme": { + "id": "mac_11740918", + "title": "Sarah & Duck", + "synopsis": "Outside Outside: The Shallots want to explore beyond the front garden, so Sarah comes up with a plan. S2 E1" + } + }, + { + "id": "IBMS_55378588", + "startMs": 1765609500000, + "endMs": 1765610100000, + "live": false, + "nzBsaRatingString": "G", + "programme": { + "id": "mac_11741254", + "title": "Sarah & Duck", + "synopsis": "Umbrella Bubbles: After getting muddy, Umbrella has to brave his fear of getting wet and take his first bath! S2 E2" + } + }, + { + "id": "IBMS_55378589", + "startMs": 1765610100000, + "endMs": 1765610400000, + "live": false, + "nzBsaRatingString": "G", + "programme": { + "id": "mac_11741291", + "title": "Sarah & Duck", + "synopsis": "Cloud Tower: A search for shade on a hot day leads Sarah and Duck to discover a fascinating tower in the park. S2 E3" + } + }, + { + "id": "IBMS_55378590", + "startMs": 1765610400000, + "endMs": 1765611000000, + "live": false, + "nzBsaRatingString": "G", + "programme": { + "id": "mac_11741379", + "title": "Sarah & Duck", + "synopsis": "Sound Jumble: When Sarah hears some interesting music on the radio, she and Duck try to recreate it. S2 E4" + } + }, + { + "id": "IBMS_55378591", + "startMs": 1765611000000, + "endMs": 1765611300000, + "live": false, + "nzBsaRatingString": "G", + "programme": { + "id": "mac_11741414", + "title": "Sarah & Duck", + "synopsis": "The Mouse's Birthday: Sarah's hoping for a nice quiet birthday, but is not getting her wish once her friends arrive S2 E5" + } + }, + { + "id": "IBMS_55378592", + "startMs": 1765611300000, + "endMs": 1765611900000, + "live": false, + "nzBsaRatingString": "G", + "programme": { + "id": "mac_11740048", + "title": "Bluey", + "synopsis": "Spy Game: When Bingo stops playing Bluey's spy game, their grown-up controlling device stops working properly! Bluey now sees how important Bingo is and needs to win her back! S1 E13" + } + }, + { + "id": "IBMS_55378593", + "startMs": 1765611900000, + "endMs": 1765612200000, + "live": false, + "nzBsaRatingString": "G", + "programme": { + "id": "mac_11740145", + "title": "Bluey", + "synopsis": "Takeaway: Forced to wait five minutes in front of a restaurant for their takeaway, Bluey and Bingo become restless for entertainment, pushing the very limits of Dad's patience. S1 E14" + } + }, + { + "id": "IBMS_55378594", + "startMs": 1765612200000, + "endMs": 1765612800000, + "live": false, + "nzBsaRatingString": "G", + "programme": { + "id": "mac_11740236", + "title": "Bluey", + "synopsis": "Butterflies: Playing 'Butterflies' in the backyard is great fun, until Bluey runs away with Judo leaving Bingo all alone. Now poor Bingo's heartbroken and Bluey needs to make amends. S1 E15" + } + }, + { + "id": "IBMS_55378595", + "startMs": 1765612800000, + "endMs": 1765613400000, + "live": false, + "nzBsaRatingString": "G", + "programme": { + "id": "mac_11740325", + "title": "Bluey", + "synopsis": "Yoga Ball: Bingo loves playing with Dad, but sometimes he forgets Bingo is smaller than her sister. Mum teaches Bingo how to use her big girl bark to keep the fun within her limits. S1 E16" + } + }, + { + "id": "IBMS_55378596", + "startMs": 1765613400000, + "endMs": 1765614000000, + "live": false, + "nzBsaRatingString": "G", + "programme": { + "id": "mac_11783087", + "title": "Go Jetters", + "synopsis": "Seattle Space Needle, USA: The team goes where no Go Jetter has gone before, when Glitch tries to launch into space. S2 E9" + } + }, + { + "id": "IBMS_55378597", + "startMs": 1765614000000, + "endMs": 1765614600000, + "live": false, + "nzBsaRatingString": "G", + "programme": { + "id": "mac_11816560", + "title": "Stan Can", + "synopsis": "Mayor Stan: Myrtle declares Stanley Mayor for a day. He soon finds there is a dance class and new barn to open with lots of ribbon cutting, and he even fits in making a Bowling alley. S1 E38" + } + }, + { + "id": "IBMS_55378598", + "startMs": 1765614600000, + "endMs": 1765616400000, + "live": false, + "nzBsaRatingString": "G", + "programme": { + "id": "mac_11776487", + "title": "In The Night Garden", + "synopsis": "Hide And Seek: The Pontipine children hide from the Wottingers and all end up in Upsy Daisy's bed. S4 E17" + } + }, + { + "id": "IBMS_55378599", + "startMs": 1765616400000, + "endMs": 1765616700000, + "live": false, + "nzBsaRatingString": "G", + "programme": { + "id": "mac_11741704", + "title": "Roots & Fruits", + "synopsis": "Artichoke: Little artichoke sings about being the rhyming queen. S1 E16" + } + }, + { + "id": "IBMS_55378600", + "startMs": 1765616700000, + "endMs": 1765617600000, + "live": false, + "nzBsaRatingString": "G", + "programme": { + "id": "mac_11823498", + "title": "Andy's Wild Adventures", + "synopsis": "Chimpanzees: Andy and Kip head to the jungles of Africa in search of chimpanzees. S1 E26" + } + }, + { + "id": "IBMS_55378601", + "startMs": 1765617600000, + "endMs": 1765617900000, + "live": false, + "nzBsaRatingString": "G", + "programme": { + "id": "mac_11740348", + "title": "Bluey", + "synopsis": "Born Yesterday: Dad pretends he was born yesterday. Bluey and Bingo have to guide him through his day. S3 E6" + } + }, + { + "id": "IBMS_55378602", + "startMs": 1765617900000, + "endMs": 1765618500000, + "live": false, + "nzBsaRatingString": "G", + "programme": { + "id": "mac_11741055", + "title": "Bluey", + "synopsis": "Mini Bluey: Dad complains about how dissimilar Bluey and Bingo are. S3 E7" + } + }, + { + "id": "IBMS_55378603", + "startMs": 1765618500000, + "endMs": 1765618800000, + "live": false, + "nzBsaRatingString": "G", + "programme": { + "id": "mac_11741150", + "title": "Bluey", + "synopsis": "Unicorse: Bluey can't get to sleep, so Mum reads her one last story. S3 E8" + } + }, + { + "id": "IBMS_55378604", + "startMs": 1765618800000, + "endMs": 1765619400000, + "live": false, + "nzBsaRatingString": "G", + "programme": { + "id": "mac_11741194", + "title": "Bluey", + "synopsis": "Curry Quest: Bingo and Dad must brave a swooping magpie protecting its nest. S3 E9" + } + }, + { + "id": "IBMS_55378605", + "startMs": 1765619400000, + "endMs": 1765619700000, + "live": false, + "nzBsaRatingString": "G", + "programme": { + "id": "mac_11741238", + "title": "Bluey", + "synopsis": "Magic: Bluey teaches Bingo how to use magic so she can make Mum play with her. S3 E10" + } + }, + { + "id": "IBMS_55378606", + "startMs": 1765619700000, + "endMs": 1765620300000, + "live": false, + "nzBsaRatingString": "G", + "programme": { + "id": "mac_11740232", + "title": "Bluey", + "synopsis": "Favourite Thing: When Bluey accidentally makes Bingo upset playing a game at dinner, she will do anything to make her happy again - even changing the rules of the game. But nothing seems to work. S2 E7" + } + }, + { + "id": "IBMS_55378607", + "startMs": 1765620300000, + "endMs": 1765620900000, + "live": false, + "nzBsaRatingString": "G", + "programme": { + "id": "mac_11740396", + "title": "Bluey", + "synopsis": "BBQ: It's lunchtime on Bluey's deck! But the BBQ needs a salad, so Bingo's relaxing sit-down will have to wait until she finds every colour of capsicum her cousins asked for! S1 E7" + } + }, + { + "id": "IBMS_55378608", + "startMs": 1765620900000, + "endMs": 1765621800000, + "live": false, + "nzBsaRatingString": "G", + "programme": { + "id": "mac_11776635", + "title": "My Pet And Me: Teeny Tiny Creatures", + "synopsis": "Ants: Presented by Rory and Nina, each episode focuses on one type of creature- we learn how to identify it, what it eats, what eats it and what role it plays in the wider environment. S1 E10" + } + }, + { + "id": "IBMS_55378609", + "startMs": 1765621800000, + "endMs": 1765622100000, + "live": false, + "nzBsaRatingString": "G", + "programme": { + "id": "mac_11782960", + "title": "Yakka Dee", + "synopsis": "Chair: Dee encourages a friend to say 'chair', and we go on a whirlwind word adventure. S6 E18" + } + }, + { + "id": "IBMS_55378610", + "startMs": 1765622100000, + "endMs": 1765623000000, + "live": false, + "nzBsaRatingString": "G", + "programme": { + "id": "mac_11740632", + "title": "Go Jetters", + "synopsis": "Horsetail Fall, California: Can the team save snowy Princess Glorinda and Firefall at the Yosemite National park? S2 E50" + } + }, + { + "id": "IBMS_55378611", + "startMs": 1765623000000, + "endMs": 1765623600000, + "live": false, + "nzBsaRatingString": "G", + "programme": { + "id": "mac_11740078", + "title": "Thomas & Friends", + "synopsis": "Thomas The Babysitter: Thomas, Annie and Clarabel have to deal with a noisy baby. S19 E27" + } + }, + { + "id": "IBMS_55378612", + "startMs": 1765623600000, + "endMs": 1765623900000, + "live": false, + "nzBsaRatingString": "G", + "programme": { + "id": "mac_11740138", + "title": "Andy's Secret Hideout", + "synopsis": "The Stick Insect: There's a stowaway in the hideout - a camouflaged stick insect! Andy meets some other animals that are masters of disguise. S2 E7" + } + } + ] + } + }, + { + "id": "STPH", + "title": "Star Plus Hindi", + "number": 150, + "tileImage": { + "uri": "https://images.skyone.co.nz/contentful/dcojl03mw8gy/3CaqX6L8yd9SvFRIRBwfYg/973239fd121dc901135ccb08f539e9a6/star_plus.png" + }, + "slotsForDay": { + "slots": [ + { + "id": "IBMS_55360365", + "startMs": 1765537200000, + "endMs": 1765540800000, + "live": false, + "nzBsaRatingString": "G", + "programme": { + "id": "mac_ptc1638688525", + "title": "Jhanak", + "synopsis": "Jhanak faces obstacles and unexpected danger in her efforts to become a dancer." + } + }, + { + "id": "IBMS_55360366", + "startMs": 1765540800000, + "endMs": 1765542600000, + "live": false, + "nzBsaRatingString": "G", + "programme": { + "id": "mac_ptc1392008836", + "title": "Kyunki Saas Bhi Kabhi Bahu Thi", + "synopsis": "Tulsi and Mihir Virani guide their family which has endured a lengthy passage of time." + } + }, + { + "id": "IBMS_55360367", + "startMs": 1765542600000, + "endMs": 1765544400000, + "live": false, + "nzBsaRatingString": "G", + "programme": { + "id": "mac_ptc2080076937", + "title": "Yeh Rishta Kya Kehlata Hai", + "synopsis": "While Dr Abhimanyu gets attracted to Akshara, Arohi begins to fall in love with him." + } + }, + { + "id": "IBMS_55360368", + "startMs": 1765544400000, + "endMs": 1765546200000, + "live": false, + "nzBsaRatingString": "G", + "programme": { + "id": "mac_ptc1613397838", + "title": "Sampoorna", + "synopsis": "Mitti Kapoor Malhotra navigates personal and family challenges amid serious allegations." + } + }, + { + "id": "IBMS_55360369", + "startMs": 1765546200000, + "endMs": 1765548000000, + "live": false, + "nzBsaRatingString": "G", + "programme": { + "id": "mac_ptc1177945", + "title": "Maana Ke Hum Yaar Nahi", + "synopsis": "Khushi, everyone's favourite, unwittingly connects with conman Krishna." + } + }, + { + "id": "IBMS_55360370", + "startMs": 1765548000000, + "endMs": 1765549800000, + "live": false, + "nzBsaRatingString": "G", + "programme": { + "id": "mac_ptc689192689", + "title": "Shehzaadi... Hai Tu Dil Ki", + "synopsis": "This is Entertainment Category" + } + }, + { + "id": "IBMS_55360371", + "startMs": 1765549800000, + "endMs": 1765551600000, + "live": false, + "nzBsaRatingString": "G", + "programme": { + "id": "mac_ptc983789051", + "title": "Advocate Anjali Awasthi", + "synopsis": "Lawyer Anjali Awasthi takes on a challenging case that could help her achieve recognition." + } + }, + { + "id": "IBMS_55360372", + "startMs": 1765551600000, + "endMs": 1765555200000, + "live": false, + "nzBsaRatingString": "G", + "programme": { + "id": "mac_ptc1123647051", + "title": "Udne Ki Aasha", + "synopsis": "An aspirational Saili tries to turn her unmotivated husband into a competent person." + } + }, + { + "id": "IBMS_55360373", + "startMs": 1765555200000, + "endMs": 1765557000000, + "live": false, + "nzBsaRatingString": "G", + "programme": { + "id": "mac_ptc524512297", + "title": "Yeh Rishta Kya Kehlata Hai", + "synopsis": "While Dr Abhimanyu gets attracted to Akshara, Arohi begins to fall in love with him." + } + }, + { + "id": "IBMS_55360374", + "startMs": 1765557000000, + "endMs": 1765559100000, + "live": false, + "nzBsaRatingString": "G", + "programme": { + "id": "mac_ptc408014409", + "title": "Anupamaa", + "synopsis": "Anupamaa feels unappreciated by her family and sets out to live life on her own terms." + } + }, + { + "id": "IBMS_55360375", + "startMs": 1765559100000, + "endMs": 1765561200000, + "live": false, + "nzBsaRatingString": "G", + "programme": { + "id": "mac_ptc447854757", + "title": "Kyunki Saas Bhi Kabhi Bahu Thi", + "synopsis": "Tulsi and Mihir Virani guide their family which has endured a lengthy passage of time." + } + }, + { + "id": "IBMS_55360376", + "startMs": 1765561200000, + "endMs": 1765564200000, + "live": false, + "nzBsaRatingString": "G", + "programme": { + "id": "mac_ptc1143365015", + "title": "Jhanak", + "synopsis": "Jhanak faces obstacles and unexpected danger in her efforts to become a dancer." + } + }, + { + "id": "IBMS_55360377", + "startMs": 1765564200000, + "endMs": 1765564500000, + "live": false, + "nzBsaRatingString": "G", + "programme": { + "id": "mac_ptc689867563", + "title": "Jhanak", + "synopsis": "Jhanak faces obstacles and unexpected danger in her efforts to become a dancer." + } + }, + { + "id": "IBMS_55360378", + "startMs": 1765564500000, + "endMs": 1765566000000, + "live": false, + "nzBsaRatingString": "G", + "programme": { + "id": "mac_ptc1748883382", + "title": "Yeh Rishta Kya Kehlata Hai", + "synopsis": "While Dr Abhimanyu gets attracted to Akshara, Arohi begins to fall in love with him." + } + }, + { + "id": "IBMS_55360379", + "startMs": 1765566000000, + "endMs": 1765567800000, + "live": false, + "nzBsaRatingString": "G", + "programme": { + "id": "mac_ptc1886769958", + "title": "Maana Ke Hum Yaar Nahi", + "synopsis": "Khushi, everyone's favourite, unwittingly connects with conman Krishna." + } + }, + { + "id": "IBMS_55360380", + "startMs": 1765567800000, + "endMs": 1765569600000, + "live": false, + "nzBsaRatingString": "G", + "programme": { + "id": "mac_ptc1036850035", + "title": "Advocate Anjali Awasthi", + "synopsis": "Lawyer Anjali Awasthi takes on a challenging case that could help her achieve recognition." + } + }, + { + "id": "IBMS_55360381", + "startMs": 1765569600000, + "endMs": 1765571400000, + "live": false, + "nzBsaRatingString": "G", + "programme": { + "id": "mac_ptc1576033150", + "title": "Sampoorna", + "synopsis": "Mitti Kapoor Malhotra navigates personal and family challenges amid serious allegations." + } + }, + { + "id": "IBMS_55360382", + "startMs": 1765571400000, + "endMs": 1765573200000, + "live": false, + "nzBsaRatingString": "G", + "programme": { + "id": "mac_ptc363900635", + "title": "Anupamaa", + "synopsis": "Anupamaa feels unappreciated by her family and sets out to live life on her own terms." + } + }, + { + "id": "IBMS_55360383", + "startMs": 1765573200000, + "endMs": 1765576800000, + "live": false, + "nzBsaRatingString": "G", + "programme": { + "id": "mac_ptc2100527610", + "title": "Jhanak", + "synopsis": "Jhanak faces obstacles and unexpected danger in her efforts to become a dancer." + } + }, + { + "id": "IBMS_55360384", + "startMs": 1765576800000, + "endMs": 1765578600000, + "live": false, + "nzBsaRatingString": "G", + "programme": { + "id": "mac_ptc2004103724", + "title": "Kyunki Saas Bhi Kabhi Bahu Thi", + "synopsis": "Tulsi and Mihir Virani guide their family which has endured a lengthy passage of time." + } + }, + { + "id": "IBMS_55360385", + "startMs": 1765578600000, + "endMs": 1765580400000, + "live": false, + "nzBsaRatingString": "G", + "programme": { + "id": "mac_ptc1695008566", + "title": "Shehzaadi... Hai Tu Dil Ki", + "synopsis": "This is Entertainment Category" + } + }, + { + "id": "IBMS_55360386", + "startMs": 1765580400000, + "endMs": 1765584000000, + "live": false, + "nzBsaRatingString": "G", + "programme": { + "id": "mac_ptc1168987954", + "title": "Udne Ki Aasha", + "synopsis": "An aspirational Saili tries to turn her unmotivated husband into a competent person." + } + }, + { + "id": "IBMS_55360387", + "startMs": 1765584000000, + "endMs": 1765585800000, + "live": false, + "nzBsaRatingString": "G", + "programme": { + "id": "mac_ptc886301418", + "title": "Advocate Anjali Awasthi", + "synopsis": "Lawyer Anjali Awasthi takes on a challenging case that could help her achieve recognition." + } + }, + { + "id": "IBMS_55360388", + "startMs": 1765585800000, + "endMs": 1765587600000, + "live": false, + "nzBsaRatingString": "G", + "programme": { + "id": "mac_ptc2099298344", + "title": "Anupamaa", + "synopsis": "Anupamaa feels unappreciated by her family and sets out to live life on her own terms." + } + }, + { + "id": "IBMS_55360389", + "startMs": 1765587600000, + "endMs": 1765591200000, + "live": false, + "nzBsaRatingString": "G", + "programme": { + "id": "mac_ptc2065423374", + "title": "Jhanak", + "synopsis": "Jhanak faces obstacles and unexpected danger in her efforts to become a dancer." + } + }, + { + "id": "IBMS_55360390", + "startMs": 1765591200000, + "endMs": 1765593000000, + "live": false, + "nzBsaRatingString": "G", + "programme": { + "id": "mac_ptc757457879", + "title": "Sampoorna", + "synopsis": "Mitti Kapoor Malhotra navigates personal and family challenges amid serious allegations." + } + }, + { + "id": "IBMS_55360391", + "startMs": 1765593000000, + "endMs": 1765594800000, + "live": false, + "nzBsaRatingString": "G", + "programme": { + "id": "mac_ptc555654265", + "title": "Kyunki Saas Bhi Kabhi Bahu Thi", + "synopsis": "Tulsi and Mihir Virani guide their family which has endured a lengthy passage of time." + } + }, + { + "id": "IBMS_55360392", + "startMs": 1765594800000, + "endMs": 1765598400000, + "live": false, + "nzBsaRatingString": "G", + "programme": { + "id": "mac_ptc53481071", + "title": "Udne Ki Aasha", + "synopsis": "An aspirational Saili tries to turn her unmotivated husband into a competent person." + } + }, + { + "id": "IBMS_55360393", + "startMs": 1765598400000, + "endMs": 1765600200000, + "live": false, + "nzBsaRatingString": "G", + "programme": { + "id": "mac_ptc1472761082", + "title": "Advocate Anjali Awasthi", + "synopsis": "Lawyer Anjali Awasthi takes on a challenging case that could help her achieve recognition." + } + }, + { + "id": "IBMS_55360394", + "startMs": 1765600200000, + "endMs": 1765602000000, + "live": false, + "nzBsaRatingString": "G", + "programme": { + "id": "mac_ptc1132716582", + "title": "Shehzaadi... Hai Tu Dil Ki", + "synopsis": "This is Entertainment Category" + } + }, + { + "id": "IBMS_55360395", + "startMs": 1765602000000, + "endMs": 1765603800000, + "live": false, + "nzBsaRatingString": "G", + "programme": { + "id": "mac_ptc1108761318", + "title": "Sampoorna", + "synopsis": "Mitti Kapoor Malhotra navigates personal and family challenges amid serious allegations." + } + }, + { + "id": "IBMS_55360396", + "startMs": 1765603800000, + "endMs": 1765605600000, + "live": false, + "nzBsaRatingString": "G", + "programme": { + "id": "mac_ptc728363119", + "title": "Yeh Rishta Kya Kehlata Hai", + "synopsis": "While Dr Abhimanyu gets attracted to Akshara, Arohi begins to fall in love with him." + } + }, + { + "id": "IBMS_55360397", + "startMs": 1765605600000, + "endMs": 1765607400000, + "live": false, + "nzBsaRatingString": "G", + "programme": { + "id": "mac_ptc1994653336", + "title": "Anupamaa", + "synopsis": "Anupamaa feels unappreciated by her family and sets out to live life on her own terms." + } + }, + { + "id": "IBMS_55360398", + "startMs": 1765607400000, + "endMs": 1765611000000, + "live": false, + "nzBsaRatingString": "G", + "programme": { + "id": "mac_ptc382085933", + "title": "Jhanak", + "synopsis": "Jhanak faces obstacles and unexpected danger in her efforts to become a dancer." + } + }, + { + "id": "IBMS_55360399", + "startMs": 1765611000000, + "endMs": 1765612800000, + "live": false, + "nzBsaRatingString": "G", + "programme": { + "id": "mac_ptc2142677143", + "title": "Maana Ke Hum Yaar Nahi", + "synopsis": "Khushi, everyone's favourite, unwittingly connects with conman Krishna." + } + }, + { + "id": "IBMS_55360400", + "startMs": 1765612800000, + "endMs": 1765614600000, + "live": false, + "nzBsaRatingString": "G", + "programme": { + "id": "mac_ptc1425725345", + "title": "Advocate Anjali Awasthi", + "synopsis": "Lawyer Anjali Awasthi takes on a challenging case that could help her achieve recognition." + } + }, + { + "id": "IBMS_55360401", + "startMs": 1765614600000, + "endMs": 1765616400000, + "live": false, + "nzBsaRatingString": "G", + "programme": { + "id": "mac_ptc1057778948", + "title": "Sampoorna", + "synopsis": "Mitti Kapoor Malhotra navigates personal and family challenges amid serious allegations." + } + }, + { + "id": "IBMS_55360402", + "startMs": 1765616400000, + "endMs": 1765618200000, + "live": false, + "nzBsaRatingString": "G", + "programme": { + "id": "mac_ptc78493958", + "title": "Shehzaadi... Hai Tu Dil Ki", + "synopsis": "This is Entertainment Category" + } + }, + { + "id": "IBMS_55360403", + "startMs": 1765618200000, + "endMs": 1765620000000, + "live": false, + "nzBsaRatingString": "G", + "programme": { + "id": "mac_ptc1783175004", + "title": "Anupamaa", + "synopsis": "Anupamaa feels unappreciated by her family and sets out to live life on her own terms." + } + }, + { + "id": "IBMS_55360404", + "startMs": 1765620000000, + "endMs": 1765623600000, + "live": false, + "nzBsaRatingString": "G", + "programme": { + "id": "mac_ptc1952063097", + "title": "Udne Ki Aasha", + "synopsis": "An aspirational Saili tries to turn her unmotivated husband into a competent person." + } + }, + { + "id": "IBMS_55360405", + "startMs": 1765623600000, + "endMs": 1765627200000, + "live": false, + "nzBsaRatingString": "G", + "programme": { + "id": "mac_ptc862275294", + "title": "Jhanak", + "synopsis": "Jhanak faces obstacles and unexpected danger in her efforts to become a dancer." + } + } + ] + } + }, + { + "id": "0107", + "title": "Colors", + "number": 151, + "tileImage": { + "uri": "https://images.skyone.co.nz/contentful/dcojl03mw8gy/2T1TZskJ3xM0cKizjkRd4c/b588b72a00ac6d91884d712f7fc8d9cb/151_Colors_320x320.png" + }, + "slotsForDay": { + "slots": [ + { + "id": "IBMS_55325809", + "startMs": 1765537200000, + "endMs": 1765539000000, + "live": false, + "nzBsaRatingString": "M", + "programme": { + "id": "mac_ptc1414542373", + "title": "Tuu Juliet Jatt Di", + "synopsis": "This is a Network Series Category" + } + }, + { + "id": "IBMS_55325810", + "startMs": 1765539000000, + "endMs": 1765540800000, + "live": false, + "nzBsaRatingString": "M", + "programme": { + "id": "mac_ptc1679537124", + "title": "Mannat Harr Khushi Paane Ki", + "synopsis": "Chef Mannat's dreams clash with her employer, who is her secret birth mother and nemesis." + } + }, + { + "id": "IBMS_55325811", + "startMs": 1765540800000, + "endMs": 1765542600000, + "live": false, + "nzBsaRatingString": "M", + "programme": { + "id": "mac_ptc1816413870", + "title": "Shiv-Shakti Tap..Tyaag..Tandav", + "synopsis": "Lord Shiva and Goddess Paravati navigate their union and perform duties for humanity." + } + }, + { + "id": "IBMS_55325812", + "startMs": 1765542600000, + "endMs": 1765544400000, + "live": false, + "nzBsaRatingString": "M", + "programme": { + "id": "mac_ptc2054443156", + "title": "Binddii", + "synopsis": "A prison-born girl discovers her father's betrayal and fights to free her mother." + } + }, + { + "id": "IBMS_55325813", + "startMs": 1765544400000, + "endMs": 1765548000000, + "live": false, + "nzBsaRatingString": "M", + "programme": { + "id": "mac_ptc382627646", + "title": "Mangal Lakshmi", + "synopsis": "Mangal sets off on a journey to find an ideal match for Lakshmi." + } + }, + { + "id": "IBMS_55325814", + "startMs": 1765548000000, + "endMs": 1765551600000, + "live": false, + "nzBsaRatingString": "M", + "programme": { + "id": "mac_ptc1469690842", + "title": "Seher Hone Ko Hai", + "synopsis": "This is Drama Category" + } + }, + { + "id": "IBMS_55325815", + "startMs": 1765551600000, + "endMs": 1765555200000, + "live": false, + "nzBsaRatingString": "M", + "programme": { + "id": "mac_ptc1743787401", + "title": "Deewangi - Dil Bhi Kaatil Iraade Bhi", + "synopsis": "This is Drama Category" + } + }, + { + "id": "IBMS_55325816", + "startMs": 1765555200000, + "endMs": 1765557000000, + "live": false, + "nzBsaRatingString": "M", + "programme": { + "id": "mac_ptc452431127", + "title": "Shiv-Shakti Tap..Tyaag..Tandav", + "synopsis": "Lord Shiva and Goddess Paravati navigate their union and perform duties for humanity." + } + }, + { + "id": "IBMS_55325817", + "startMs": 1765557000000, + "endMs": 1765558800000, + "live": false, + "nzBsaRatingString": "M", + "programme": { + "id": "mac_ptc1661118558", + "title": "Mannat Harr Khushi Paane Ki", + "synopsis": "Chef Mannat's dreams clash with her employer, who is her secret birth mother and nemesis." + } + }, + { + "id": "IBMS_55325818", + "startMs": 1765558800000, + "endMs": 1765560600000, + "live": false, + "nzBsaRatingString": "M", + "programme": { + "id": "mac_ptc1461180588", + "title": "Tuu Juliet Jatt Di", + "synopsis": "This is a Network Series Category" + } + }, + { + "id": "IBMS_55325819", + "startMs": 1765560600000, + "endMs": 1765562400000, + "live": false, + "nzBsaRatingString": "M", + "programme": { + "id": "mac_ptc1300740940", + "title": "Binddii", + "synopsis": "A prison-born girl discovers her father's betrayal and fights to free her mother." + } + }, + { + "id": "IBMS_55325820", + "startMs": 1765562400000, + "endMs": 1765564200000, + "live": false, + "nzBsaRatingString": "M", + "programme": { + "id": "mac_ptc1956341344", + "title": "Noyontara", + "synopsis": "Noyontara's spirit-seeing gift reveals veiled mysteries and family secrets." + } + }, + { + "id": "IBMS_55325821", + "startMs": 1765564200000, + "endMs": 1765566000000, + "live": false, + "nzBsaRatingString": "M", + "programme": { + "id": "mac_ptc979770890", + "title": "Mannat Harr Khushi Paane Ki", + "synopsis": "Chef Mannat's dreams clash with her employer, who is her secret birth mother and nemesis." + } + }, + { + "id": "IBMS_55325822", + "startMs": 1765566000000, + "endMs": 1765569600000, + "live": false, + "nzBsaRatingString": "M", + "programme": { + "id": "mac_ptc368476681", + "title": "Mangal Lakshmi", + "synopsis": "Mangal sets off on a journey to find an ideal match for Lakshmi." + } + }, + { + "id": "IBMS_55325823", + "startMs": 1765569600000, + "endMs": 1765573200000, + "live": false, + "nzBsaRatingString": "M", + "programme": { + "id": "mac_ptc2112026076", + "title": "Seher Hone Ko Hai", + "synopsis": "This is Drama Category" + } + }, + { + "id": "IBMS_55325824", + "startMs": 1765573200000, + "endMs": 1765575000000, + "live": false, + "nzBsaRatingString": "M", + "programme": { + "id": "mac_ptc110855173", + "title": "Tuu Juliet Jatt Di", + "synopsis": "This is a Network Series Category" + } + }, + { + "id": "IBMS_55325825", + "startMs": 1765575000000, + "endMs": 1765576800000, + "live": false, + "nzBsaRatingString": "M", + "programme": { + "id": "mac_ptc1479654877", + "title": "Shiv-Shakti Tap..Tyaag..Tandav", + "synopsis": "Lord Shiva and Goddess Paravati navigate their union and perform duties for humanity." + } + }, + { + "id": "IBMS_55325826", + "startMs": 1765576800000, + "endMs": 1765578600000, + "live": false, + "nzBsaRatingString": "M", + "programme": { + "id": "mac_ptc129641029", + "title": "Noyontara", + "synopsis": "Noyontara's spirit-seeing gift reveals veiled mysteries and family secrets." + } + }, + { + "id": "IBMS_55325827", + "startMs": 1765578600000, + "endMs": 1765580400000, + "live": false, + "nzBsaRatingString": "M", + "programme": { + "id": "mac_ptc837983245", + "title": "Binddii", + "synopsis": "A prison-born girl discovers her father's betrayal and fights to free her mother." + } + }, + { + "id": "IBMS_55325828", + "startMs": 1765580400000, + "endMs": 1765582200000, + "live": false, + "nzBsaRatingString": "M", + "programme": { + "id": "mac_ptc529354214", + "title": "Mannat Harr Khushi Paane Ki", + "synopsis": "Chef Mannat's dreams clash with her employer, who is her secret birth mother and nemesis." + } + }, + { + "id": "IBMS_55325829", + "startMs": 1765582200000, + "endMs": 1765587600000, + "live": false, + "nzBsaRatingString": "M", + "programme": { + "id": "mac_ptc1362437602", + "title": "Laughter Chefs Unlimited Entertainment", + "synopsis": "The contestants are surprised when they are tasked with baking a cake." + } + }, + { + "id": "IBMS_55325830", + "startMs": 1765587600000, + "endMs": 1765589400000, + "live": false, + "nzBsaRatingString": "M", + "programme": { + "id": "mac_ptc2099020844", + "title": "Noyontara", + "synopsis": "Noyontara's spirit-seeing gift reveals veiled mysteries and family secrets." + } + }, + { + "id": "IBMS_55325831", + "startMs": 1765589400000, + "endMs": 1765591200000, + "live": false, + "nzBsaRatingString": "M", + "programme": { + "id": "mac_ptc387751014", + "title": "Shiv-Shakti Tap..Tyaag..Tandav", + "synopsis": "Lord Shiva and Goddess Paravati navigate their union and perform duties for humanity." + } + }, + { + "id": "IBMS_55325832", + "startMs": 1765591200000, + "endMs": 1765593000000, + "live": false, + "nzBsaRatingString": "M", + "programme": { + "id": "mac_ptc443242945", + "title": "Binddii", + "synopsis": "A prison-born girl discovers her father's betrayal and fights to free her mother." + } + }, + { + "id": "IBMS_55325833", + "startMs": 1765593000000, + "endMs": 1765596600000, + "live": false, + "nzBsaRatingString": "M", + "programme": { + "id": "mac_ptc753144037", + "title": "Mangal Lakshmi", + "synopsis": "Mangal sets off on a journey to find an ideal match for Lakshmi." + } + }, + { + "id": "IBMS_55325834", + "startMs": 1765596600000, + "endMs": 1765598400000, + "live": false, + "nzBsaRatingString": "M", + "programme": { + "id": "mac_ptc1988264408", + "title": "Tuu Juliet Jatt Di", + "synopsis": "This is a Network Series Category" + } + }, + { + "id": "IBMS_55325835", + "startMs": 1765598400000, + "endMs": 1765600200000, + "live": false, + "nzBsaRatingString": "M", + "programme": { + "id": "mac_ptc394520533", + "title": "Mannat Harr Khushi Paane Ki", + "synopsis": "Chef Mannat's dreams clash with her employer, who is her secret birth mother and nemesis." + } + }, + { + "id": "IBMS_55325836", + "startMs": 1765600200000, + "endMs": 1765602000000, + "live": false, + "nzBsaRatingString": "M", + "programme": { + "id": "mac_ptc957468686", + "title": "Noyontara", + "synopsis": "Noyontara's spirit-seeing gift reveals veiled mysteries and family secrets." + } + }, + { + "id": "IBMS_55325837", + "startMs": 1765602000000, + "endMs": 1765603800000, + "live": false, + "nzBsaRatingString": "M", + "programme": { + "id": "mac_ptc1835538298", + "title": "Tuu Juliet Jatt Di", + "synopsis": "This is a Network Series Category" + } + }, + { + "id": "IBMS_55325838", + "startMs": 1765603800000, + "endMs": 1765605600000, + "live": false, + "nzBsaRatingString": "M", + "programme": { + "id": "mac_ptc662592355", + "title": "Mannat Harr Khushi Paane Ki", + "synopsis": "Chef Mannat's dreams clash with her employer, who is her secret birth mother and nemesis." + } + }, + { + "id": "IBMS_55325839", + "startMs": 1765605600000, + "endMs": 1765607400000, + "live": false, + "nzBsaRatingString": "M", + "programme": { + "id": "mac_ptc483383943", + "title": "Shiv-Shakti Tap..Tyaag..Tandav", + "synopsis": "Lord Shiva and Goddess Paravati navigate their union and perform duties for humanity." + } + }, + { + "id": "IBMS_55325840", + "startMs": 1765607400000, + "endMs": 1765609200000, + "live": false, + "nzBsaRatingString": "M", + "programme": { + "id": "mac_ptc585752566", + "title": "Binddii", + "synopsis": "A prison-born girl discovers her father's betrayal and fights to free her mother." + } + }, + { + "id": "IBMS_55325841", + "startMs": 1765609200000, + "endMs": 1765614600000, + "live": false, + "nzBsaRatingString": "M", + "programme": { + "id": "mac_ptc1427466917", + "title": "Laughter Chefs Unlimited Entertainment", + "synopsis": "The contestants must impress the judges with a milk-centric delicacy." + } + }, + { + "id": "IBMS_55325842", + "startMs": 1765614600000, + "endMs": 1765616400000, + "live": false, + "nzBsaRatingString": "M", + "programme": { + "id": "mac_ptc1709099385", + "title": "Noyontara", + "synopsis": "Noyontara's spirit-seeing gift reveals veiled mysteries and family secrets." + } + }, + { + "id": "IBMS_55325843", + "startMs": 1765616400000, + "endMs": 1765618200000, + "live": false, + "nzBsaRatingString": "M", + "programme": { + "id": "mac_ptc819786275", + "title": "Mannat Harr Khushi Paane Ki", + "synopsis": "Chef Mannat's dreams clash with her employer, who is her secret birth mother and nemesis." + } + }, + { + "id": "IBMS_55325844", + "startMs": 1765618200000, + "endMs": 1765620000000, + "live": false, + "nzBsaRatingString": "M", + "programme": { + "id": "mac_ptc849623892", + "title": "Binddii", + "synopsis": "A prison-born girl discovers her father's betrayal and fights to free her mother." + } + }, + { + "id": "IBMS_55325845", + "startMs": 1765620000000, + "endMs": 1765621800000, + "live": false, + "nzBsaRatingString": "M", + "programme": { + "id": "mac_ptc551074928", + "title": "Binddii", + "synopsis": "A prison-born girl discovers her father's betrayal and fights to free her mother." + } + }, + { + "id": "IBMS_55325846", + "startMs": 1765621800000, + "endMs": 1765623600000, + "live": false, + "nzBsaRatingString": "M", + "programme": { + "id": "mac_ptc898705434", + "title": "Noyontara", + "synopsis": "Noyontara's spirit-seeing gift reveals veiled mysteries and family secrets." + } + }, + { + "id": "IBMS_55325847", + "startMs": 1765623600000, + "endMs": 1765625400000, + "live": false, + "nzBsaRatingString": "M", + "programme": { + "id": "mac_ptc779425237", + "title": "Tuu Juliet Jatt Di", + "synopsis": "This is a Network Series Category" + } + } + ] + } + }, + { + "id": "0108", + "title": "Star Gold", + "number": 152, + "tileImage": { + "uri": "https://images.skyone.co.nz/contentful/dcojl03mw8gy/7yhnz1jA37LRKMsxgYUiEj/30b37291624d9d6b341461f20c95ee8c/Star_Gold.png" + }, + "slotsForDay": { + "slots": [ + { + "id": "IBMS_55355776", + "startMs": 1765536300000, + "endMs": 1765546200000, + "live": false, + "nzBsaRatingString": "PG", + "programme": { + "id": "mac_ptc130850486", + "title": "Garam Masala" + } + }, + { + "id": "IBMS_55355777", + "startMs": 1765546200000, + "endMs": 1765558800000, + "live": false, + "nzBsaRatingString": "M", + "programme": { + "id": "mac_ptc194231902", + "title": "Kabhi Alvida Naa Kehna" + } + }, + { + "id": "IBMS_55355778", + "startMs": 1765558800000, + "endMs": 1765566900000, + "live": false, + "nzBsaRatingString": "M", + "programme": { + "id": "mac_ptc110115025", + "title": "Nani's Dasara" + } + }, + { + "id": "IBMS_55355779", + "startMs": 1765566900000, + "endMs": 1765578600000, + "live": false, + "nzBsaRatingString": "PG", + "programme": { + "id": "mac_ptc91346932", + "title": "Fighter" + } + }, + { + "id": "IBMS_55355780", + "startMs": 1765578600000, + "endMs": 1765587600000, + "live": false, + "nzBsaRatingString": "PG", + "programme": { + "id": "mac_ptc1384490460", + "title": "Saat Uchakkey" + } + }, + { + "id": "IBMS_55355781", + "startMs": 1765587600000, + "endMs": 1765591200000, + "live": false, + "nzBsaRatingString": "M", + "programme": { + "id": "mac_ptc433531046", + "title": "Koffee With Karan", + "synopsis": "Celebrities make themselves comfortable on Karan's couch to spill the tea over a cup of ``Koffee.''" + } + }, + { + "id": "IBMS_55355782", + "startMs": 1765591200000, + "endMs": 1765603800000, + "live": false, + "nzBsaRatingString": "M", + "programme": { + "id": "mac_ptc1538946479", + "title": "The Burning Train" + } + }, + { + "id": "IBMS_55355783", + "startMs": 1765603800000, + "endMs": 1765611900000, + "live": false, + "nzBsaRatingString": "PG", + "programme": { + "id": "mac_ptc1111935313", + "title": "The Legend of Michael Mishra" + } + }, + { + "id": "IBMS_55355784", + "startMs": 1765611900000, + "endMs": 1765622700000, + "live": false, + "nzBsaRatingString": "M", + "programme": { + "id": "mac_ptc581393300", + "title": "Pyar To Hona Hi Tha" + } + }, + { + "id": "IBMS_55355785", + "startMs": 1765622700000, + "endMs": 1765634400000, + "live": false, + "nzBsaRatingString": "PG", + "programme": { + "id": "mac_ptc882948316", + "title": "Dil To Pagal Hai" + } + } + ] + } + }, + { + "id": "SHIN", + "title": "SHINE", + "number": 201, + "tileImage": { + "uri": "https://images.skyone.co.nz/contentful/dcojl03mw8gy/x349jXjHaIXWCjnv7Fz9y/bec742a902259c336e3eae5b753e4753/Shine.png" + }, + "slotsForDay": { + "slots": [ + { + "id": "IBMS_55341430", + "startMs": 1765537200000, + "endMs": 1765539000000, + "live": false, + "nzBsaRatingString": "PG", + "programme": { + "id": "mac_ptc1699341397", + "title": "Legacy TV", + "synopsis": "Kiwi preaching from John Faiz of Legacy Church. Birthed out of a desire to reach lost people and serve the poor, Legacy is growing a vibrant, multicultural church in the city of Palmerston North." + } + }, + { + "id": "IBMS_55341431", + "startMs": 1765539000000, + "endMs": 1765540800000, + "live": false, + "nzBsaRatingString": "PG", + "programme": { + "id": "mac_ptc1704799165", + "title": "Finding The Light", + "synopsis": "Lizzie Oakes talks with Jared Van Berkel, a media missionary. Jared talks of losing his Dad when he was a young teen and how decades later God’s love ultimately invaded the pain in his heart." + } + }, + { + "id": "IBMS_55341432", + "startMs": 1765540800000, + "endMs": 1765544400000, + "live": false, + "nzBsaRatingString": "G", + "programme": { + "id": "mac_ptc1935813283", + "title": "Grace At Your Place", + "synopsis": "Join us wherever you are for Church At Home here on Shine TV. Enjoy worship and teaching from Grace Vineyard Church in Christchurch." + } + }, + { + "id": "IBMS_55341433", + "startMs": 1765544400000, + "endMs": 1765546200000, + "live": false, + "nzBsaRatingString": "PG", + "programme": { + "id": "mac_ptc57473135", + "title": "New Creation TV", + "synopsis": "Pastor Joseph Prince preaches dynamic messages on the pure Gospel of the grace of God. His desire is to help believers understand grace and how greatly blessed and deeply loved they are by God." + } + }, + { + "id": "IBMS_55341434", + "startMs": 1765546200000, + "endMs": 1765548000000, + "live": false, + "nzBsaRatingString": "G", + "programme": { + "id": "mac_ptc629648831", + "title": "Sanctuary on Shine", + "synopsis": "New Zealand's Worship Station on Shine TV. Enjoy some of the best worship music videos with captioned lyrics to help draw you deeper into the presence of God. Listen to more at yoursanctuary.co.nz" + } + }, + { + "id": "IBMS_55341435", + "startMs": 1765548000000, + "endMs": 1765557000000, + "live": false, + "nzBsaRatingString": "M", + "programme": { + "id": "mac_ptc1402492619", + "title": "The Shack" + } + }, + { + "id": "IBMS_55341436", + "startMs": 1765557000000, + "endMs": 1765558800000, + "live": false, + "nzBsaRatingString": "PG", + "programme": { + "id": "mac_ptc1210616886", + "title": "Legacy TV", + "synopsis": "Kiwi preaching from John Faiz of Legacy Church. Birthed out of a desire to reach lost people and serve the poor, Legacy is growing a vibrant, multicultural church in the city of Palmerston North." + } + }, + { + "id": "IBMS_55341437", + "startMs": 1765558800000, + "endMs": 1765558980000, + "live": false, + "nzBsaRatingString": "G", + "programme": { + "id": "mac_ptc1793239348", + "title": "God's Word Fresh 4 U Today", + "synopsis": "Berni Dymet has an inspiring and on-point message each day - fresh from God's timeless Word for today's busy world." + } + }, + { + "id": "IBMS_55341438", + "startMs": 1765558980000, + "endMs": 1765560780000, + "live": false, + "nzBsaRatingString": "G", + "programme": { + "id": "mac_ptc2069193388", + "title": "Lessons from the Bible", + "synopsis": "Have you ever wondered what kind of person makes a good friend? Join Doug, Amelia, Dusty, as they explore this question. Learn about one of the best friendships in the Bible: David and Jonathan." + } + }, + { + "id": "IBMS_55341439", + "startMs": 1765560780000, + "endMs": 1765562400000, + "live": false, + "nzBsaRatingString": "G", + "programme": { + "id": "mac_ptc1162389333", + "title": "The Blello Show", + "synopsis": "Who hates not being understood by someone? There are so many different ways to communicate, but have you tried the voice modifier?" + } + }, + { + "id": "IBMS_55341440", + "startMs": 1765562400000, + "endMs": 1765564200000, + "live": false, + "nzBsaRatingString": "PG", + "programme": { + "id": "mac_ptc1150424636", + "title": "Torchlighters", + "synopsis": "An action-packed animated series featuring real-life heroes of the faith. Highlighting the life-changing experiences of Christian men, women and children who dedicated themselves to God's call." + } + }, + { + "id": "IBMS_55341441", + "startMs": 1765564200000, + "endMs": 1765566000000, + "live": false, + "nzBsaRatingString": "PG", + "programme": { + "id": "mac_ptc2019154969", + "title": "Superbook", + "synopsis": "Superbook sends them back to a time when the world was fraught with evil. So evil, in fact, that God vows to destroy the world, saving only Noah, his family and a menagerie of animal species." + } + }, + { + "id": "IBMS_55341442", + "startMs": 1765566000000, + "endMs": 1765567800000, + "live": false, + "nzBsaRatingString": "G", + "programme": { + "id": "mac_ptc424216516", + "title": "Whirl", + "synopsis": "Whirl is a Bible-based cartoon series about the loveable, sometimes overly-enthusiastic kids of First Second Church. In each episode, the kids tackle a different theme central to Christian values." + } + }, + { + "id": "IBMS_55341443", + "startMs": 1765567800000, + "endMs": 1765569600000, + "live": false, + "nzBsaRatingString": "G", + "programme": { + "id": "mac_ptc1408972502", + "title": "ARISE Kids TV", + "synopsis": "Your one stop shop kiwi kids content.. Jam packed full of faith, fun delivered by your favourite friends! We believe in the next generation and its our mandate to inspire, connect and empower them." + } + }, + { + "id": "IBMS_55341444", + "startMs": 1765569600000, + "endMs": 1765571400000, + "live": false, + "nzBsaRatingString": "G", + "programme": { + "id": "mac_ptc1764565871", + "title": "The Wingfeather Saga", + "synopsis": "Freed from lockdown, the Igiby kids play a game of Zibzy and discover a secret map." + } + }, + { + "id": "IBMS_55341445", + "startMs": 1765571400000, + "endMs": 1765573200000, + "live": false, + "nzBsaRatingString": "PG", + "programme": { + "id": "mac_ptc537858176", + "title": "Centuries Collide", + "synopsis": "Known today as the father of modern Chemistry, Robert Boyle defined what we know as the scientific method, all the while predicting the future of science in a way that seems almost supernatural." + } + }, + { + "id": "IBMS_55341446", + "startMs": 1765573200000, + "endMs": 1765576800000, + "live": false, + "nzBsaRatingString": "PG", + "programme": { + "id": "mac_ptc2129348152", + "title": "Life FM Presents", + "synopsis": "Life FM brings you the best current Christian music videos with a bit of banter, fun, games and faith from the Life FM studio." + } + }, + { + "id": "IBMS_55341447", + "startMs": 1765576800000, + "endMs": 1765578600000, + "live": false, + "nzBsaRatingString": "PG", + "programme": { + "id": "mac_ptc975432627", + "title": "Studio 5", + "synopsis": "Studio 5 explores the intersection of celebrity, popular culture and faith. Take an inside look at movies, music, sports and television through artists at the forefront of the entertainment industry." + } + }, + { + "id": "IBMS_55341448", + "startMs": 1765578600000, + "endMs": 1765580400000, + "live": false, + "nzBsaRatingString": "G", + "programme": { + "id": "mac_ptc181425792", + "title": "Life TV with Paul de Jong", + "synopsis": "As children, our lives begin in a state of wonder with the world as our playground. But for many of us, as we grow our imaginations are left behind. In this series we look at re-awakening wonder." + } + }, + { + "id": "IBMS_55341449", + "startMs": 1765580400000, + "endMs": 1765585800000, + "live": false, + "nzBsaRatingString": "G", + "programme": { + "id": "mac_ptc1180940644", + "title": "Christmas on Call" + } + }, + { + "id": "IBMS_55341450", + "startMs": 1765585800000, + "endMs": 1765591200000, + "live": false, + "nzBsaRatingString": "G", + "programme": { + "id": "mac_ptc158793684", + "title": "Long Lost Christmas" + } + }, + { + "id": "IBMS_55341451", + "startMs": 1765591200000, + "endMs": 1765593000000, + "live": false, + "nzBsaRatingString": "G", + "programme": { + "id": "mac_ptc468228967", + "title": "It Must Be Christmas", + "synopsis": "Virtuoso tenor David Phelps showcases his powerhouse vocals and nostalgic, jazz flair with these newly-arranged Christmas selections." + } + }, + { + "id": "IBMS_55341452", + "startMs": 1765593000000, + "endMs": 1765594800000, + "live": false, + "nzBsaRatingString": "G", + "programme": { + "id": "mac_ptc198077604", + "title": "Colour In Your Life", + "synopsis": "Master artist Graham Stevenson films artists in their studios to preserve their knowledge and craft for future generations." + } + }, + { + "id": "IBMS_55341453", + "startMs": 1765594800000, + "endMs": 1765596600000, + "live": false, + "nzBsaRatingString": "PG", + "programme": { + "id": "mac_ptc1329534265", + "title": "Miracle Living Today", + "synopsis": "Have you ever asked for a miracle in your life? Many people have experienced the miraculous intervention of God. Join hosts Gordon Robertson and Ashley Key as they share inspirational true stories." + } + }, + { + "id": "IBMS_55341454", + "startMs": 1765596600000, + "endMs": 1765598400000, + "live": false, + "nzBsaRatingString": "PG", + "programme": { + "id": "mac_ptc1634330099", + "title": "Jerusalem Dateline", + "synopsis": "Chris Mitchell brings timely reports on events in the Middle East. Bringing a Biblical and prophetic perspective to these daily news events that shape our world." + } + }, + { + "id": "IBMS_55341455", + "startMs": 1765598400000, + "endMs": 1765600200000, + "live": false, + "nzBsaRatingString": "PG", + "programme": { + "id": "mac_ptc1220653950", + "title": "The Way of the Master", + "synopsis": "A pastor is used by God to rescue a baby in Saint Louis." + } + }, + { + "id": "IBMS_55341456", + "startMs": 1765600200000, + "endMs": 1765602000000, + "live": false, + "nzBsaRatingString": "G", + "programme": { + "id": "mac_ptc456252927", + "title": "Give Me An Answer", + "synopsis": "Engaging Skeptics, Exploring Faith, Doubts, and Reason. Real Answers to tough questions about Christianity. Cliffe and son Stuart Knechtle handles these and other tough questions everywhere they go." + } + }, + { + "id": "IBMS_55341457", + "startMs": 1765602000000, + "endMs": 1765603500000, + "live": false, + "nzBsaRatingString": "PG", + "programme": { + "id": "mac_ptc1579710732", + "title": "Christian World News", + "synopsis": "George Thomas and Wendy Griffith round up recent events affecting Christians around the globe. Stories focus on international missions, revival and provide in-depth coverage of Christians worldwide." + } + }, + { + "id": "IBMS_55341458", + "startMs": 1765603500000, + "endMs": 1765605000000, + "live": false, + "nzBsaRatingString": "PG", + "programme": { + "id": "mac_ptc1787699261", + "title": "Studio 5", + "synopsis": "Studio 5 explores the intersection of celebrity, popular culture and faith. Take an inside look at movies, music, sports and television through artists at the forefront of the entertainment industry." + } + }, + { + "id": "IBMS_55341459", + "startMs": 1765605000000, + "endMs": 1765607400000, + "live": false, + "nzBsaRatingString": "G", + "programme": { + "id": "mac_ptc1980592916", + "title": "Ready, Set, Glow", + "synopsis": "In this episode, Wes Brown meets four families whose bonds are strengthened each year as they make new memories building exceptional holiday light displays." + } + }, + { + "id": "IBMS_55341460", + "startMs": 1765607400000, + "endMs": 1765612800000, + "live": false, + "nzBsaRatingString": "G", + "programme": { + "id": "mac_ptc763611904", + "title": "Three Wise Men and a Baby" + } + }, + { + "id": "IBMS_55341461", + "startMs": 1765612800000, + "endMs": 1765618200000, + "live": false, + "nzBsaRatingString": "PG", + "programme": { + "id": "mac_ptc1745371464", + "title": "A Merry Scottish Christmas" + } + }, + { + "id": "IBMS_55341462", + "startMs": 1765618200000, + "endMs": 1765620000000, + "live": false, + "nzBsaRatingString": "G", + "programme": { + "id": "mac_ptc553340992", + "title": "The River Church", + "synopsis": "The River Church based in Pakuranga, Auckland is a church that loves God, and loves people — and believe that with God all things are possible!" + } + }, + { + "id": "IBMS_55341463", + "startMs": 1765620000000, + "endMs": 1765622700000, + "live": false, + "nzBsaRatingString": "G", + "programme": { + "id": "mac_ptc1979848582", + "title": "Bethlehem Baptist Church", + "synopsis": "Bethlehem Baptist Church are all about encouraging people, real community, and encountering God every day. Seeking to build a strong community of believers in Tauranga and beyond." + } + }, + { + "id": "IBMS_55341464", + "startMs": 1765622700000, + "endMs": 1765623600000, + "live": false, + "nzBsaRatingString": "G", + "programme": { + "id": "mac_ptc155106328", + "title": "Eyewitness Bible: Christmas", + "synopsis": "Told from the perspective of different individuals: the prophet Isaiah, a Magi, Elizabeth, Mary's mother, Mary, Joseph, a tax collector, King Herod, a shepherd, and an angel." + } + }, + { + "id": "IBMS_55341465", + "startMs": 1765623600000, + "endMs": 1765625400000, + "live": false, + "nzBsaRatingString": "G", + "programme": { + "id": "mac_ptc873020163", + "title": "Running With Fire", + "synopsis": "Insightful and practical preaching from Pastor Tak Bhana of Auckland's Church Unlimited. These messages are biblical, relevant and practical, and will help you achieve God's plan for your life." + } + } + ] + } + }, + { + "id": "0015", + "title": "DAYSTAR", + "number": 202, + "tileImage": { + "uri": "https://images.skyone.co.nz/contentful/dcojl03mw8gy/74ZiW6p2Sd8RfvKXMSu1v7/e45919c87b82d0f4a5f9ab2a65862e37/DAYSTAR.png" + }, + "slotsForDay": { + "slots": [ + { + "id": "IBMS_55348723", + "startMs": 1765537200000, + "endMs": 1765539000000, + "live": false, + "nzBsaRatingString": "G", + "programme": { + "id": "mac_ptc1409916943", + "title": "Joni Table Talk", + "synopsis": "Joshua Broome shares his powerful journey out of the porn industry and into ministry, reminding us why no one is excluded from God's grace." + } + }, + { + "id": "IBMS_55348724", + "startMs": 1765539000000, + "endMs": 1765540800000, + "live": false, + "nzBsaRatingString": "G", + "programme": { + "id": "mac_ptc1448978335", + "title": "Jesus the Healer with Nancy Dufresne", + "synopsis": "Host Nancy Dufresne shares messages addressing the topics of faith, healing, renewing the mind, following the Holy Spirit and a life in Christ." + } + }, + { + "id": "IBMS_55348725", + "startMs": 1765540800000, + "endMs": 1765542600000, + "live": false, + "nzBsaRatingString": "G", + "programme": { + "id": "mac_ptc1465874787", + "title": "Reflections", + "synopsis": "Daily devotion featuring scenic landscapes from around the world, accompanied by hymns and songs of worship along with scripture from the Holy Bible." + } + }, + { + "id": "IBMS_55348726", + "startMs": 1765542600000, + "endMs": 1765544400000, + "live": false, + "nzBsaRatingString": "G", + "programme": { + "id": "mac_ptc1990102331", + "title": "Reflections", + "synopsis": "Daily devotion featuring scenic landscapes from around the world, accompanied by hymns and songs of worship along with scripture from the Holy Bible." + } + }, + { + "id": "IBMS_55348727", + "startMs": 1765544400000, + "endMs": 1765546200000, + "live": false, + "nzBsaRatingString": "G", + "programme": { + "id": "mac_ptc164623555", + "title": "Reflections", + "synopsis": "Daily devotion featuring scenic landscapes from around the world, accompanied by hymns and songs of worship along with scripture from the Holy Bible." + } + }, + { + "id": "IBMS_55348728", + "startMs": 1765546200000, + "endMs": 1765549800000, + "live": false, + "nzBsaRatingString": "G", + "programme": { + "id": "mac_ptc519451617", + "title": "Reflections", + "synopsis": "Daily devotion featuring scenic landscapes from around the world, accompanied by hymns and songs of worship along with scripture from the Holy Bible." + } + }, + { + "id": "IBMS_55348729", + "startMs": 1765549800000, + "endMs": 1765551600000, + "live": false, + "nzBsaRatingString": "G", + "programme": { + "id": "mac_ptc1544113986", + "title": "Reflections", + "synopsis": "Daily devotion featuring scenic landscapes from around the world, accompanied by hymns and songs of worship along with scripture from the Holy Bible." + } + }, + { + "id": "IBMS_55348730", + "startMs": 1765551600000, + "endMs": 1765553400000, + "live": false, + "nzBsaRatingString": "G", + "programme": { + "id": "mac_ptc800124121", + "title": "Kingdom Connection with Franklin", + "synopsis": "Pastor Jentezen Franklin presents life-changing, sensible messages, including dramatic plays, musical acts and commanding storytelling with the Gospel." + } + }, + { + "id": "IBMS_55348731", + "startMs": 1765553400000, + "endMs": 1765555200000, + "live": false, + "nzBsaRatingString": "G", + "programme": { + "id": "mac_ptc666651084", + "title": "Voice of God with Joseph Z", + "synopsis": "Joseph Z and Rick Renner continue discussing their journey at Noah's Ark." + } + }, + { + "id": "IBMS_55348732", + "startMs": 1765555200000, + "endMs": 1765557000000, + "live": false, + "nzBsaRatingString": "G", + "programme": { + "id": "mac_ptc85817681", + "title": "Joni Table Talk", + "synopsis": "Kimberly and Andrew Haar share their incredible testimony of healing after trauma and near death experience from her new book Healing from Life's Deepest Hurts." + } + }, + { + "id": "IBMS_55348733", + "startMs": 1765557000000, + "endMs": 1765558800000, + "live": false, + "nzBsaRatingString": "G", + "programme": { + "id": "mac_ptc1717426380", + "title": "Joel Osteen", + "synopsis": "Pastor Joel Osteen shepherds the largest and fastest growing congregation in America, following in step with his father's lead when he founded Lakewood Church." + } + }, + { + "id": "IBMS_55388428", + "startMs": 1765558800000, + "endMs": 1765560600000, + "live": false, + "nzBsaRatingString": "G", + "programme": { + "id": "mac_ptc1305279134", + "title": "Life Today with James & Betty Robison", + "synopsis": "Sheila looks through the eyes of mothers whose children are suffering to see the need and opportunity to share the love of God in word and deed." + } + }, + { + "id": "IBMS_55388429", + "startMs": 1765560600000, + "endMs": 1765562400000, + "live": false, + "nzBsaRatingString": "G", + "programme": { + "id": "mac_ptc1731947836", + "title": "Gospel Truth with Andrew Wommack", + "synopsis": "Andrew Wommack shares religious messages about God's Word and discusses how he believes in God's power and his profound teachings." + } + }, + { + "id": "IBMS_55388430", + "startMs": 1765562400000, + "endMs": 1765564200000, + "live": false, + "nzBsaRatingString": "G", + "programme": { + "id": "mac_ptc842805011", + "title": "Jewish Voice with Jonathan Bernis", + "synopsis": "Jonathan Bernis and Jewish Voice Ministries help to bring clean water to the poverty stricken Jews of Ethiopia." + } + }, + { + "id": "IBMS_55388431", + "startMs": 1765564200000, + "endMs": 1765566000000, + "live": false, + "nzBsaRatingString": "G", + "programme": { + "id": "mac_ptc1817415514", + "title": "Jesus the Healer with Nancy Dufresne", + "synopsis": "Host Nancy Dufresne shares messages addressing the topics of faith, healing, renewing the mind, following the Holy Spirit and a life in Christ." + } + }, + { + "id": "IBMS_55388432", + "startMs": 1765566000000, + "endMs": 1765567800000, + "live": false, + "nzBsaRatingString": "G", + "programme": { + "id": "mac_ptc903503186", + "title": "Kenneth Copeland", + "synopsis": "What are you believing for? Kenneth Copeland shows you how your confession of faith activates Your Covenant of BLESSING." + } + }, + { + "id": "IBMS_55388433", + "startMs": 1765567800000, + "endMs": 1765569600000, + "live": false, + "nzBsaRatingString": "G", + "programme": { + "id": "mac_ptc522320381", + "title": "Creflo Dollar", + "synopsis": "Dr. Creflo Dollar ministers to people from all backgrounds with hopes for change; Creflo helps viewers find ways to renew their faith, mind, and spirit." + } + }, + { + "id": "IBMS_55388434", + "startMs": 1765569600000, + "endMs": 1765571400000, + "live": false, + "nzBsaRatingString": "G", + "programme": { + "id": "mac_ptc1987353320", + "title": "Roots & Reflections", + "synopsis": "A look into the daily lives of the citizens of Israel, including Jews and Arabs that live happily alongside one another, touching on the history of the country." + } + }, + { + "id": "IBMS_55388435", + "startMs": 1765571400000, + "endMs": 1765573200000, + "live": false, + "nzBsaRatingString": "G", + "programme": { + "id": "mac_ptc1490484054", + "title": "Rick Renner", + "synopsis": "Join Rick as he talks about the holy moment that took place in Bethlehem nearly 2,000 years ago when Light came into this world." + } + }, + { + "id": "IBMS_55388436", + "startMs": 1765573200000, + "endMs": 1765575000000, + "live": false, + "nzBsaRatingString": "G", + "programme": { + "id": "mac_ptc1812716518", + "title": "Marcus Lamb", + "synopsis": "Marcus Lamb preaches a powerful sermon about how the resurrection of Jesus Christ changed everything at Calvary Temple Worship Center in Hyderabad, India." + } + }, + { + "id": "IBMS_55388437", + "startMs": 1765575000000, + "endMs": 1765576800000, + "live": false, + "nzBsaRatingString": "G", + "programme": { + "id": "mac_ptc1863184567", + "title": "Marcus Lamb", + "synopsis": "Experience the glory of God as Marcus Lamb reveals how His presence can transform your life for eternity." + } + }, + { + "id": "IBMS_55388438", + "startMs": 1765576800000, + "endMs": 1765578600000, + "live": false, + "nzBsaRatingString": "G", + "programme": { + "id": "mac_ptc69466653", + "title": "Gary Keesee, Fixing the Money Thing", + "synopsis": "Pastor Gary Keesee provides insights and solutions on the topics of finances, family and faith." + } + }, + { + "id": "IBMS_55388439", + "startMs": 1765578600000, + "endMs": 1765580400000, + "live": false, + "nzBsaRatingString": "G", + "programme": { + "id": "mac_ptc126799300", + "title": "Jewish Voice with Jonathan Bernis", + "synopsis": "Don't fall for a history rewrite; the truth about Israel is discussed." + } + }, + { + "id": "IBMS_55388440", + "startMs": 1765580400000, + "endMs": 1765582200000, + "live": false, + "nzBsaRatingString": "G", + "programme": { + "id": "mac_ptc2108327105", + "title": "Sid Roth's It's Supernatural!", + "synopsis": "Messianic-Jewish host Sid Roth features a wide array of guests who have experienced divine visitations, deliverance and other supernatural events." + } + }, + { + "id": "IBMS_55388441", + "startMs": 1765582200000, + "endMs": 1765584000000, + "live": false, + "nzBsaRatingString": "G", + "programme": { + "id": "mac_ptc68467458", + "title": "Today with Marilyn and Sarah", + "synopsis": "Marilyn Hickey and Sarah Bowling spread practical messages from the Bible, with appearances from inspirational guests and reports from around the world." + } + }, + { + "id": "IBMS_55388442", + "startMs": 1765584000000, + "endMs": 1765585800000, + "live": false, + "nzBsaRatingString": "G", + "programme": { + "id": "mac_ptc1692444005", + "title": "Voice of God with Joseph Z", + "synopsis": "Joseph Z and Rick Renner continue discussing their journey at Noah's Ark." + } + }, + { + "id": "IBMS_55388443", + "startMs": 1765585800000, + "endMs": 1765587600000, + "live": false, + "nzBsaRatingString": "G", + "programme": { + "id": "mac_ptc1357507009", + "title": "Larry & Tiz Huch", + "synopsis": "Pastor Larry Huch instructs viewers on how to enter into a realm of blessing and revelation through the studies of the Jewish roots of the Christian faith." + } + }, + { + "id": "IBMS_55388444", + "startMs": 1765587600000, + "endMs": 1765589400000, + "live": false, + "nzBsaRatingString": "G", + "programme": { + "id": "mac_ptc1807419447", + "title": "Rick Renner", + "synopsis": "Join Rick as he talks about the holy moment that took place in Bethlehem nearly 2,000 years ago when Light came into this world." + } + }, + { + "id": "IBMS_55388445", + "startMs": 1765589400000, + "endMs": 1765591200000, + "live": false, + "nzBsaRatingString": "G", + "programme": { + "id": "mac_ptc1246064013", + "title": "Believers' Walk of Faith with Bill", + "synopsis": "Bill Winston delivers the gospel of Jesus Christ worldwide, enabling people to know Christ and become stronger Christians." + } + }, + { + "id": "IBMS_55388446", + "startMs": 1765591200000, + "endMs": 1765593000000, + "live": false, + "nzBsaRatingString": "G", + "programme": { + "id": "mac_ptc1143736598", + "title": "PSB with Shawn Baker", + "synopsis": "Pastor Shawn Baker challenges any and all to get closer to God and to learn how to embrace the life that He has prepared for every single person." + } + }, + { + "id": "IBMS_55388447", + "startMs": 1765593000000, + "endMs": 1765594800000, + "live": false, + "nzBsaRatingString": "G", + "programme": { + "id": "mac_ptc1768872972", + "title": "Dr. David Jeremiah", + "synopsis": "Dr. David Jeremiah, senior pastor of Shadow Mountain Community Church in El Cajon, Calif., delivers the unchanging Word of God to an ever-changing world." + } + }, + { + "id": "IBMS_55388448", + "startMs": 1765594800000, + "endMs": 1765596600000, + "live": false, + "nzBsaRatingString": "G", + "programme": { + "id": "mac_ptc1384942512", + "title": "Bearded Bible Brothers", + "synopsis": "Joshua and Caleb Colson travel around the world to share teachings from the Bible that emphasize Israel, prophecy and the Jewish roots of Christianity." + } + }, + { + "id": "IBMS_55388449", + "startMs": 1765596600000, + "endMs": 1765598400000, + "live": false, + "nzBsaRatingString": "G", + "programme": { + "id": "mac_ptc672090243", + "title": "Love a Child", + "synopsis": "Missionaries work to share hope and spread the message of God's love by feeding and educating over 5,000 orphaned children who live in extreme poverty in Haiti." + } + }, + { + "id": "IBMS_55388450", + "startMs": 1765598400000, + "endMs": 1765600200000, + "live": false, + "nzBsaRatingString": "G", + "programme": { + "id": "mac_ptc1659205477", + "title": "Breakthrough with Rod Parsley", + "synopsis": "Prominent Christian minister Rod Parsley, of the Pentecostal World Harvest Church in Columbus, Ohio, delivers powerful biblical messages." + } + }, + { + "id": "IBMS_55388451", + "startMs": 1765600200000, + "endMs": 1765602000000, + "live": false, + "nzBsaRatingString": "G", + "programme": { + "id": "mac_ptc548361528", + "title": "Reflections", + "synopsis": "Daily devotion featuring scenic landscapes from around the world, accompanied by hymns and songs of worship along with scripture from the Holy Bible." + } + }, + { + "id": "IBMS_55388452", + "startMs": 1765602000000, + "endMs": 1765603800000, + "live": false, + "nzBsaRatingString": "G", + "programme": { + "id": "mac_ptc1731947836", + "title": "Gospel Truth with Andrew Wommack", + "synopsis": "Andrew Wommack shares religious messages about God's Word and discusses how he believes in God's power and his profound teachings." + } + }, + { + "id": "IBMS_55388453", + "startMs": 1765603800000, + "endMs": 1765605600000, + "live": false, + "nzBsaRatingString": "G", + "programme": { + "id": "mac_ptc1691066693", + "title": "Joni Table Talk", + "synopsis": "With insight from \"It's Never Wrong to Do the Right Thing,\" Nicole C. Mullen shares how the legacies of Biblical heroes sparked her journey into bold obedience." + } + }, + { + "id": "IBMS_55388454", + "startMs": 1765605600000, + "endMs": 1765607400000, + "live": false, + "nzBsaRatingString": "G", + "programme": { + "id": "mac_ptc1693354946", + "title": "Marcus Lamb", + "synopsis": "Marcus Lamb preaches a powerful sermon about how the resurrection of Jesus Christ changed everything at Calvary Temple Worship Center in Hyderabad, India." + } + }, + { + "id": "IBMS_55388455", + "startMs": 1765607400000, + "endMs": 1765609200000, + "live": false, + "nzBsaRatingString": "G", + "programme": { + "id": "mac_ptc1321655245", + "title": "Marcus Lamb", + "synopsis": "Experience the glory of God as Marcus Lamb reveals how His presence can transform your life for eternity." + } + }, + { + "id": "IBMS_55388456", + "startMs": 1765609200000, + "endMs": 1765611000000, + "live": false, + "nzBsaRatingString": "G", + "programme": { + "id": "mac_ptc1778334254", + "title": "Christ in Prophecy", + "synopsis": "Minister Tim Moore seeks to uncover the Biblical prophecies as they relate to today's news, giving emphasis on the soon return of Jesus and the end times." + } + }, + { + "id": "IBMS_55388457", + "startMs": 1765611000000, + "endMs": 1765612800000, + "live": false, + "nzBsaRatingString": "G", + "programme": { + "id": "mac_ptc44314486", + "title": "The Jewish Jesus", + "synopsis": "Rabbi Schneider discusses the invisible attributes of God, including creation, the roles of Jews and Gentiles, and the virtues of humilty and gentleness." + } + }, + { + "id": "IBMS_55388458", + "startMs": 1765612800000, + "endMs": 1765614600000, + "live": false, + "nzBsaRatingString": "G", + "programme": { + "id": "mac_ptc1763269587", + "title": "Voice of God with Joseph Z", + "synopsis": "Joseph Z's faith-filled journalism and Bible teaching for the Last Days will provide prophetic insights and predictions of global events." + } + }, + { + "id": "IBMS_55388459", + "startMs": 1765614600000, + "endMs": 1765616400000, + "live": false, + "nzBsaRatingString": "G", + "programme": { + "id": "mac_ptc423986764", + "title": "Kenneth Copeland", + "synopsis": "Kenneth and Gloria Copeland teach principles of victorious Christian living through the uncompromising Word of God." + } + }, + { + "id": "IBMS_55388460", + "startMs": 1765616400000, + "endMs": 1765618200000, + "live": false, + "nzBsaRatingString": "G", + "programme": { + "id": "mac_ptc1415554631", + "title": "Healing Time with Dr. Doug Weiss", + "synopsis": "Dr. Weiss explains and encourages the practice of spouses praising each other in marriage." + } + }, + { + "id": "IBMS_55388461", + "startMs": 1765618200000, + "endMs": 1765620000000, + "live": false, + "nzBsaRatingString": "G", + "programme": { + "id": "mac_ptc454417211", + "title": "Joni Table Talk", + "synopsis": "With insight from \"It's Never Wrong to Do the Right Thing,\" Nicole C. Mullen shares how the legacies of Biblical heroes sparked her journey into bold obedience." + } + }, + { + "id": "IBMS_55388462", + "startMs": 1765620000000, + "endMs": 1765621800000, + "live": false, + "nzBsaRatingString": "G", + "programme": { + "id": "mac_ptc234528655", + "title": "Marcus Lamb", + "synopsis": "Marcus Lamb preaches a powerful sermon about how the resurrection of Jesus Christ changed everything at Calvary Temple Worship Center in Hyderabad, India." + } + }, + { + "id": "IBMS_55388463", + "startMs": 1765621800000, + "endMs": 1765623600000, + "live": false, + "nzBsaRatingString": "G", + "programme": { + "id": "mac_ptc347218791", + "title": "Marcus Lamb", + "synopsis": "Experience the glory of God as Marcus Lamb reveals how His presence can transform your life for eternity." + } + }, + { + "id": "IBMS_55388464", + "startMs": 1765623600000, + "endMs": 1765625400000, + "live": false, + "nzBsaRatingString": "G", + "programme": { + "id": "mac_ptc174848680", + "title": "Joni Table Talk", + "synopsis": "With insights from his book \"Forgiveness for Everyone,\" Dr. Doug Weiss reveals how forgiveness can unlock healing and growth in every area of your life." + } + } + ] + } + }, + { + "id": "0099", + "title": "Hope Channel", + "number": 204, + "tileImage": { + "uri": "https://images.skyone.co.nz/contentful/dcojl03mw8gy/4wnpgxJygOpGVBsF5Ku2x8/2dea23804a9c9a960649402a2b9342dc/Hope_Channel.png" + }, + "slotsForDay": { + "slots": [ + { + "id": "IBMS_55287369", + "startMs": 1765537200000, + "endMs": 1765540800000, + "live": false, + "nzBsaRatingString": "G", + "programme": { + "id": "mac_ptc1085424699", + "title": "Go Healthy For Good", + "synopsis": "Today's episode is part 2 of a series of 4 episodes devoted to helping you control you blood pressure naturally." + } + }, + { + "id": "IBMS_55287370", + "startMs": 1765540800000, + "endMs": 1765542600000, + "live": false, + "nzBsaRatingString": "PGC", + "programme": { + "id": "mac_ptc1966496477", + "title": "Unearthed - Docco", + "synopsis": "Beneath Jerusalems streets lie tunnels that reveal the glory of the Second Temple. Walk the ancient stones and encounter history at the heart of the Holy City." + } + }, + { + "id": "IBMS_55287372", + "startMs": 1765542600000, + "endMs": 1765544100000, + "live": false, + "nzBsaRatingString": "G", + "programme": { + "id": "mac_ptc1287796497", + "title": "The Master's Brush", + "synopsis": "Discover the stories behind the paintings of Christian artist Nathan Greene, and hear of the lives that have been touched as a result of his work" + } + }, + { + "id": "IBMS_55287373", + "startMs": 1765544100000, + "endMs": 1765546500000, + "live": false, + "nzBsaRatingString": "PGC", + "programme": { + "id": "mac_ptc858474170", + "title": "New Perceptions", + "synopsis": "How do you prepare for a storm that you know is coming? A dark time, fast approaching, unavoidable now! Can anyone help you through it?" + } + }, + { + "id": "IBMS_55287375", + "startMs": 1765546500000, + "endMs": 1765548000000, + "live": false, + "nzBsaRatingString": "G", + "programme": { + "id": "mac_ptc34156081", + "title": "Archaeology and Jesus", + "synopsis": "Go deep underground to see the fulfillment of the last prophecy of Jesus while exploring the city that \"didn't exist.\"" + } + }, + { + "id": "IBMS_55287376", + "startMs": 1765548000000, + "endMs": 1765549800000, + "live": false, + "nzBsaRatingString": "G", + "programme": { + "id": "mac_ptc1295076445", + "title": "Mad About Marriage", + "synopsis": "Money is a big argument for many couples. Financial expert Greg Johnson, founder of New Era Financial Services, offers some advice on how to stop those arguments on this episode of Mad About Marriag" + } + }, + { + "id": "IBMS_55287378", + "startMs": 1765549800000, + "endMs": 1765551600000, + "live": false, + "nzBsaRatingString": "G", + "programme": { + "id": "mac_ptc1528057007", + "title": "Faith Development", + "synopsis": "Karen Holford looks at the question of what is God really like." + } + }, + { + "id": "IBMS_55287380", + "startMs": 1765551600000, + "endMs": 1765553400000, + "live": false, + "nzBsaRatingString": "G", + "programme": { + "id": "mac_ptc283507936", + "title": "It Is Written", + "synopsis": "Join John Bradshaw and guest Dr. Frank Hasel as they discuss the importance of expressing appreciation for our blessings" + } + }, + { + "id": "IBMS_55287381", + "startMs": 1765553400000, + "endMs": 1765555200000, + "live": false, + "nzBsaRatingString": "MC", + "programme": { + "id": "mac_ptc2063428698", + "title": "Loma Linda 362", + "synopsis": "In part 2 of Baby Fae's story, we see the public outcry, a mother's heartbreak, and the amazing beginning of successful infant-heart transplants. Viewer discretion is advised for graphic surgical sc" + } + }, + { + "id": "IBMS_55287383", + "startMs": 1765555200000, + "endMs": 1765558800000, + "live": false, + "nzBsaRatingString": "G", + "programme": { + "id": "mac_ptc1949307678", + "title": "Table Talk - Righteousness", + "synopsis": "The team at Lightbearers Ministry get together round the table to have an open and honest discussion about significant issues and doctrines presented in Scripture. Today - Two Religions" + } + }, + { + "id": "IBMS_55287384", + "startMs": 1765558800000, + "endMs": 1765560600000, + "live": false, + "nzBsaRatingString": "G", + "programme": { + "id": "mac_ptc1456053240", + "title": "Chosen", + "synopsis": "God sees your hurt and pain; He feels your sorrow. One day soon He will do away with all suffering forever. Woo Hoo!" + } + }, + { + "id": "IBMS_55287386", + "startMs": 1765560600000, + "endMs": 1765562100000, + "live": false, + "nzBsaRatingString": "PGC", + "programme": { + "id": "mac_ptc1931433605", + "title": "Country Wisdom", + "synopsis": "Patty Hearst became a slave to an idea, as did those held in a bank vault in Stockholm Sweden. Let your eyes be opened to deception, and the pathway God has prepared for you." + } + }, + { + "id": "IBMS_55287387", + "startMs": 1765562100000, + "endMs": 1765564500000, + "live": false, + "nzBsaRatingString": "G", + "programme": { + "id": "mac_ptc1742706087", + "title": "Incarnate", + "synopsis": "The Spirit assures us of faith in Jesus and guides us to love. Find confidence in Christ and live His truth with joy." + } + }, + { + "id": "IBMS_55287389", + "startMs": 1765564500000, + "endMs": 1765566000000, + "live": false, + "nzBsaRatingString": "G", + "programme": { + "id": "mac_ptc1626893426", + "title": "Naturally Gourmet", + "synopsis": "Join host Karen Houghton as she demonstrates how to make delicious and healthy food. Today - Bread" + } + }, + { + "id": "IBMS_55287391", + "startMs": 1765566000000, + "endMs": 1765569600000, + "live": false, + "nzBsaRatingString": "G", + "programme": { + "id": "mac_ptc1960983385", + "title": "Amazing Adventures", + "synopsis": "Doug Batchelor presents a unique study experience for children, filled with amazing facts and spiritual discoveries, today finding out about death and hell" + } + }, + { + "id": "IBMS_55287392", + "startMs": 1765569600000, + "endMs": 1765571400000, + "live": false, + "nzBsaRatingString": "G", + "programme": { + "id": "mac_ptc1096676678", + "title": "The Evidence", + "synopsis": "Dwight Nelson looks into Art and Inspiration - A scriptwriter, a fine artist, and a script consultant talk about their art and God." + } + }, + { + "id": "IBMS_55287394", + "startMs": 1765571400000, + "endMs": 1765573200000, + "live": false, + "nzBsaRatingString": "G", + "programme": { + "id": "mac_ptc20967225", + "title": "Living Free", + "synopsis": "Many who smoke have already decided that they intend to quit nicotine. No one needs to live in survival mode. Vicki reveals how we are engineered for success" + } + }, + { + "id": "IBMS_55287395", + "startMs": 1765573200000, + "endMs": 1765576800000, + "live": false, + "nzBsaRatingString": "G", + "programme": { + "id": "mac_ptc500897575", + "title": "Hope Sabbath School", + "synopsis": "When tribes clash over a misunderstanding Joshua shows the way to peace. Learn how listening and grace can heal conflict. Live in harmony under Gods guidance." + } + }, + { + "id": "IBMS_55287397", + "startMs": 1765576800000, + "endMs": 1765578600000, + "live": false, + "nzBsaRatingString": "G", + "programme": { + "id": "mac_ptc736061323", + "title": "Hope Church", + "synopsis": "The shepherds went to see the newborn King and couldn't keep it to themselves, sharing the good news in this Christmas episode featuring an original song." + } + }, + { + "id": "IBMS_55287398", + "startMs": 1765578600000, + "endMs": 1765580400000, + "live": false, + "nzBsaRatingString": "G", + "programme": { + "id": "mac_ptc1195968127", + "title": "Archaeology and Jesus", + "synopsis": "Go deep underground to see the fulfillment of the last prophecy of Jesus while exploring the city that \"didn't exist.\"" + } + }, + { + "id": "IBMS_55287400", + "startMs": 1765580400000, + "endMs": 1765582200000, + "live": false, + "nzBsaRatingString": "G", + "programme": { + "id": "mac_ptc783659942", + "title": "It Is Written", + "synopsis": "Join John Bradshaw and guest Dr. Frank Hasel as they discuss the importance of expressing appreciation for our blessings" + } + }, + { + "id": "IBMS_55287402", + "startMs": 1765582200000, + "endMs": 1765584000000, + "live": false, + "nzBsaRatingString": "G", + "programme": { + "id": "mac_ptc1582180965", + "title": "Body of Evidence", + "synopsis": "The heart and blood vessels make up the most vitally important organ sytem. DrMenton and his students explain this complex system - part 1" + } + }, + { + "id": "IBMS_55287403", + "startMs": 1765584000000, + "endMs": 1765587600000, + "live": false, + "nzBsaRatingString": "G", + "programme": { + "id": "mac_ptc1604094686", + "title": "Scotland's Wild Heart", + "synopsis": "The Scottish Highlands is home, not just to many wonderful creatures, but also to people, who carve out livelihoods in one of the wildest places in Western Europe" + } + }, + { + "id": "IBMS_55287405", + "startMs": 1765587600000, + "endMs": 1765591200000, + "live": false, + "nzBsaRatingString": "G", + "programme": { + "id": "mac_ptc775237998", + "title": "Love Me", + "synopsis": "Learn how life and health are connected, through these health-focused messages and songs" + } + }, + { + "id": "IBMS_55287406", + "startMs": 1765591200000, + "endMs": 1765593000000, + "live": false, + "nzBsaRatingString": "G", + "programme": { + "id": "mac_ptc897184647", + "title": "The Master's Brush", + "synopsis": "Discover the stories behind the paintings of Christian artist Nathan Greene, and hear of the lives that have been touched as a result of his work" + } + }, + { + "id": "IBMS_55287408", + "startMs": 1765593000000, + "endMs": 1765594800000, + "live": false, + "nzBsaRatingString": "PGC", + "programme": { + "id": "mac_ptc535368737", + "title": "Unearthed - Docco", + "synopsis": "Beneath Jerusalems streets lie tunnels that reveal the glory of the Second Temple. Walk the ancient stones and encounter history at the heart of the Holy City." + } + }, + { + "id": "IBMS_55287409", + "startMs": 1765594800000, + "endMs": 1765596600000, + "live": false, + "nzBsaRatingString": "PGC", + "programme": { + "id": "mac_ptc1651134564", + "title": "Frequently Asked Questions", + "synopsis": "Ron Clouzet finds answers to some of the most frequently asked questions about religion, the Bible, and philosophy." + } + }, + { + "id": "IBMS_55287411", + "startMs": 1765596600000, + "endMs": 1765598400000, + "live": false, + "nzBsaRatingString": "G", + "programme": { + "id": "mac_ptc2101373161", + "title": "Line Upon Line", + "synopsis": "\"Is it wrong, as a single woman who has a desire to have a child or children through IVF?\" Pastors John and Wes offer Bible answers to this question and more." + } + }, + { + "id": "IBMS_55287413", + "startMs": 1765598400000, + "endMs": 1765602000000, + "live": false, + "nzBsaRatingString": "PGC", + "programme": { + "id": "mac_ptc936946887", + "title": "Prophecy Unsealed", + "synopsis": "Brian McMahon explains the meaning of the millennium and asks some important question: What happens after Christ returns? What happens to Satan? When does God make the earth new?" + } + }, + { + "id": "IBMS_55287414", + "startMs": 1765602000000, + "endMs": 1765605600000, + "live": false, + "nzBsaRatingString": "G", + "programme": { + "id": "mac_ptc1613476867", + "title": "Kew Gardens - Season By Season", + "synopsis": "Go behind closed doors at Kew Gardens, the most iconic garden in the world, for an inside look at life at this unique botanical institution across one entire year." + } + }, + { + "id": "IBMS_55287416", + "startMs": 1765605600000, + "endMs": 1765607400000, + "live": false, + "nzBsaRatingString": "G", + "programme": { + "id": "mac_ptc89549214", + "title": "Wahroonga On the Road USA", + "synopsis": "Join Lloyd Grolimund as he travels to some of North America's magnificent landmarks and considers the 7th day Sabbath." + } + }, + { + "id": "IBMS_55287417", + "startMs": 1765607400000, + "endMs": 1765609200000, + "live": false, + "nzBsaRatingString": "G", + "programme": { + "id": "mac_ptc2044655861", + "title": "The Incredible Journey", + "synopsis": "At Middle Island near Warrnambool in the Australian, a penguin colony was facing certain extinction. But then the unlikeliest hero stepped in and saved the day. Gary Kent shares this story." + } + }, + { + "id": "IBMS_55287419", + "startMs": 1765609200000, + "endMs": 1765614600000, + "live": false, + "nzBsaRatingString": "G", + "programme": { + "id": "mac_ptc720390930", + "title": "Never Give Up - Movie" + } + }, + { + "id": "IBMS_55287420", + "startMs": 1765614600000, + "endMs": 1765616400000, + "live": false, + "nzBsaRatingString": "PGC", + "programme": { + "id": "mac_ptc668416305", + "title": "Authentic", + "synopsis": "A lot of people have rather grandiose ideas about their importance. Friedrich Nietzsche thought that the world should've started counting time from his birth, instead of Christ's." + } + }, + { + "id": "IBMS_55287422", + "startMs": 1765616400000, + "endMs": 1765618200000, + "live": false, + "nzBsaRatingString": "G", + "programme": { + "id": "mac_ptc1558371066", + "title": "Living Free", + "synopsis": "Many who smoke have already decided that they intend to quit nicotine. No one needs to live in survival mode. Vicki reveals how we are engineered for success" + } + }, + { + "id": "IBMS_55287423", + "startMs": 1765618200000, + "endMs": 1765620000000, + "live": false, + "nzBsaRatingString": "PG", + "programme": { + "id": "mac_ptc238387816", + "title": "Mountain Vets", + "synopsis": "As spring begins the vets face tough births, fragile lambs, tiny pets and greedy cows while bringing skill and compassion to farmers and families in need." + } + }, + { + "id": "IBMS_55287425", + "startMs": 1765620000000, + "endMs": 1765621800000, + "live": false, + "nzBsaRatingString": "G", + "programme": { + "id": "mac_ptc1072569264", + "title": "The Evidence", + "synopsis": "Dwight Nelson looks into Art and Inspiration - A scriptwriter, a fine artist, and a script consultant talk about their art and God." + } + }, + { + "id": "IBMS_55287427", + "startMs": 1765621800000, + "endMs": 1765625400000, + "live": false, + "nzBsaRatingString": "G", + "programme": { + "id": "mac_ptc1599761256", + "title": "Answers In Genesis", + "synopsis": "Dr David Menton explores the science behind Darwin's theory of evolution, and his effect on science in general." + } + } + ] + } + }, + { + "id": "0131", + "title": "Firstlight", + "number": 206, + "tileImage": { + "uri": "https://images.skyone.co.nz/contentful/dcojl03mw8gy/7uuRy3a9Q87uoi6B5Ic5bZ/7d4c1ba18fb6b3367d3385dad9e69e0d/Firstlight.png" + }, + "slotsForDay": { + "slots": [ + { + "id": "IBMS_55333987", + "startMs": 1765537200000, + "endMs": 1765539900000, + "live": false, + "nzBsaRatingString": "G", + "programme": { + "id": "mac_ptc1097594070", + "title": "Amazing Facts-Cover to Cover", + "synopsis": "Join Doug Batchelor for this wonderful series as he looks at the stories and characters in the Bible which teach us about Jesus and the plan of salvation. S1E15" + } + }, + { + "id": "IBMS_55333988", + "startMs": 1765539900000, + "endMs": 1765540800000, + "live": false, + "nzBsaRatingString": "G", + "programme": { + "id": "mac_ptc2118722746", + "title": "Creation Scapes", + "synopsis": "A journey through Gods creation with music videos that mix scenic views with hymns of praise. S1E109" + } + }, + { + "id": "IBMS_55333989", + "startMs": 1765540800000, + "endMs": 1765542600000, + "live": false, + "nzBsaRatingString": "G", + "programme": { + "id": "mac_ptc1855404020", + "title": "GMI", + "synopsis": "In this series Karen Styer presents the importance and meaning of the Sanctuary and how it applies to our everyday lives. S1E7" + } + }, + { + "id": "IBMS_55333990", + "startMs": 1765542600000, + "endMs": 1765543500000, + "live": false, + "nzBsaRatingString": "G", + "programme": { + "id": "mac_ptc1050505152", + "title": "The Preparation Ministry", + "synopsis": "Join Renier Horn & discover what Jesus meant when He said to love God with all your heart & love your neighbour as yourself & if this overrides the ten commandments. S1E1" + } + }, + { + "id": "IBMS_55333991", + "startMs": 1765543500000, + "endMs": 1765544400000, + "live": false, + "nzBsaRatingString": "G", + "programme": { + "id": "mac_ptc1557779472", + "title": "Creation Scapes", + "synopsis": "A journey through Gods creation with music videos that mix scenic views with hymns of praise. S1E106" + } + }, + { + "id": "IBMS_55333992", + "startMs": 1765544400000, + "endMs": 1765548000000, + "live": false, + "nzBsaRatingString": "G", + "programme": { + "id": "mac_ptc944754915", + "title": "Anchor 2024", + "synopsis": "In this series Stephen Bohr unpacks the profound messages, historical fulfillments, & end-time significance of Daniel's prophecies. S1E14" + } + }, + { + "id": "IBMS_55333993", + "startMs": 1765548000000, + "endMs": 1765549800000, + "live": false, + "nzBsaRatingString": "G", + "programme": { + "id": "mac_ptc901786147", + "title": "Receiving the Word", + "synopsis": "Jym Tayag talks about experiencing the love of God and being filled with His Spirit, compelling us to live for Him - Part 2. S1E2" + } + }, + { + "id": "IBMS_55333994", + "startMs": 1765549800000, + "endMs": 1765553400000, + "live": false, + "nzBsaRatingString": "G", + "programme": { + "id": "mac_ptc2104356439", + "title": "Rev 18", + "synopsis": "Mark Sandoval reminds us of the changes that take place in our lives when we surrender fully to God's power & work in us. S1E11" + } + }, + { + "id": "IBMS_55333995", + "startMs": 1765553400000, + "endMs": 1765557000000, + "live": false, + "nzBsaRatingString": "G", + "programme": { + "id": "mac_ptc1996825921", + "title": "Behold the Lamb", + "synopsis": "Kenny & Chris Shelton offer vital encouragement & practical counsel to help God's people prepare their hearts for the challenges ahead. S1E1" + } + }, + { + "id": "IBMS_55333996", + "startMs": 1765557000000, + "endMs": 1765558800000, + "live": false, + "nzBsaRatingString": "G", + "programme": { + "id": "mac_ptc1697380129", + "title": "Receiving the Word", + "synopsis": "Mike Thompson urges us to experience the power of God in our lives, through the study of His Word, in order to stand firm in the last days-Part 2. S1E343" + } + }, + { + "id": "IBMS_55333997", + "startMs": 1765558800000, + "endMs": 1765560600000, + "live": false, + "nzBsaRatingString": "G", + "programme": { + "id": "mac_ptc922722908", + "title": "Secrets Unsealed", + "synopsis": "Stephen Bohr, CA Murray & David Salazar look at various topics and provide answers to questions that have been sent in. S6E38" + } + }, + { + "id": "IBMS_55333998", + "startMs": 1765560600000, + "endMs": 1765563300000, + "live": false, + "nzBsaRatingString": "G", + "programme": { + "id": "mac_ptc1240509328", + "title": "Belt of Truth", + "synopsis": "Is the Earth Flat & did anyone really go to the moon. Scott Ritsema & Jim Burr discuss these two controversial topics. S1E1" + } + }, + { + "id": "IBMS_55333999", + "startMs": 1765563300000, + "endMs": 1765564200000, + "live": false, + "nzBsaRatingString": "G", + "programme": { + "id": "mac_ptc1695725416", + "title": "Creation Scapes", + "synopsis": "A journey through Gods creation with music videos that mix scenic views with hymns of praise. S1E105" + } + }, + { + "id": "IBMS_55334000", + "startMs": 1765564200000, + "endMs": 1765567800000, + "live": false, + "nzBsaRatingString": "G", + "programme": { + "id": "mac_ptc1610479559", + "title": "Thompsonville SDA Church", + "synopsis": "Terry Shelton shares the importance of studying the truth of God's Word & being empowered by the Holy Spirit to spread these truths. S1E1" + } + }, + { + "id": "IBMS_55334001", + "startMs": 1765567800000, + "endMs": 1765569600000, + "live": false, + "nzBsaRatingString": "G", + "programme": { + "id": "mac_ptc2137750816", + "title": "A Day With the King", + "synopsis": "Natalee McLean and Cecily Harker teach children about the Sabbath, Ps Rick Ferret leads out in the singing and there is story time with Dr John Hammond. S3E04" + } + }, + { + "id": "IBMS_55334002", + "startMs": 1765569600000, + "endMs": 1765571400000, + "live": false, + "nzBsaRatingString": "G", + "programme": { + "id": "mac_ptc678960159", + "title": "White Horse Media", + "synopsis": "In a world quick to point fingers & cast stones, one simple phrase echoes through time, but its true meaning might surprise you - Part 2. S1E2" + } + }, + { + "id": "IBMS_55334003", + "startMs": 1765571400000, + "endMs": 1765573200000, + "live": false, + "nzBsaRatingString": "G", + "programme": { + "id": "mac_ptc1636746032", + "title": "Classic Sermons", + "synopsis": "The founder, speaker & director of Amazing Facts for nearly 30 years was Joe Crews (1964-94). His powerful sermons set the pace for other ministries. S1 E18" + } + }, + { + "id": "IBMS_55334004", + "startMs": 1765573200000, + "endMs": 1765576800000, + "live": false, + "nzBsaRatingString": "G", + "programme": { + "id": "mac_ptc977877685", + "title": "3ABN Panel", + "synopsis": "Join the 3ABN Panel for the Sabbath School Study Hour-The topic this quarter is Lessons of Faith from Joshua." + } + }, + { + "id": "IBMS_55334005", + "startMs": 1765576800000, + "endMs": 1765580400000, + "live": false, + "nzBsaRatingString": "G", + "programme": { + "id": "mac_ptc1930171068", + "title": "3ABN Worship Hour", + "synopsis": "Jill Morikone powerfully declares that obedience to God?s law is not about legalism, but about relationship. S1E117" + } + }, + { + "id": "IBMS_55334006", + "startMs": 1765580400000, + "endMs": 1765585800000, + "live": false, + "nzBsaRatingString": "G", + "programme": { + "id": "mac_ptc2140851813", + "title": "The Great Reset", + "synopsis": "In this series John Bradshaw looks at the master plan for the days ahead, with the Bible providing clarity and hope, as we live in this unprecedented age. S1E3" + } + }, + { + "id": "IBMS_55334007", + "startMs": 1765585800000, + "endMs": 1765587600000, + "live": false, + "nzBsaRatingString": "G", + "programme": { + "id": "mac_ptc951706114", + "title": "Help in Daily Living", + "synopsis": "Young people from the Fountainview Academy share testimonies and songs as they develop their daily relationship with Jesus. S1 E5" + } + }, + { + "id": "IBMS_55334008", + "startMs": 1765587600000, + "endMs": 1765589400000, + "live": false, + "nzBsaRatingString": "G", + "programme": { + "id": "mac_ptc39196277", + "title": "Practical Truth for our Day - 2", + "synopsis": "Eugene Prewitt talks about listening to the spirit of God, surrendering all to Him and experiencing a meaningful relationship with Jesus. S1E3" + } + }, + { + "id": "IBMS_55334009", + "startMs": 1765589400000, + "endMs": 1765591200000, + "live": false, + "nzBsaRatingString": "G", + "programme": { + "id": "mac_ptc1085181020", + "title": "Amazing Facts Doug Batchelor", + "synopsis": "Doug Batchelor delves into the intriguing connections between Babylon and the United States through the lens of biblical prophecy - Part 2. S1E30" + } + }, + { + "id": "IBMS_55334010", + "startMs": 1765591200000, + "endMs": 1765594800000, + "live": false, + "nzBsaRatingString": "G", + "programme": { + "id": "mac_ptc1458412521", + "title": "Red River Outpost", + "synopsis": "Barbara O'Neill exposes the great deception behind cholesterol, fat, & heart disease, & reveals what really causes cardiovascular problems. S1E3" + } + }, + { + "id": "IBMS_55334011", + "startMs": 1765594800000, + "endMs": 1765598400000, + "live": false, + "nzBsaRatingString": "G", + "programme": { + "id": "mac_ptc1087862103", + "title": "Revelation of Jesus Christ..", + "synopsis": "Pastor Kenneth Cox gives a Bible study on chapter 14 of the book of Revelation looking at the third angel's message. S1 E20" + } + }, + { + "id": "IBMS_55334012", + "startMs": 1765598400000, + "endMs": 1765602000000, + "live": false, + "nzBsaRatingString": "G", + "programme": { + "id": "mac_ptc375763858", + "title": "Revelation Today in Charlotte", + "synopsis": "Join Ron Halvorsen to discover what Bible prophecies tell us about where we are in the stream of time. S1 E3" + } + }, + { + "id": "IBMS_55334013", + "startMs": 1765602000000, + "endMs": 1765605600000, + "live": false, + "nzBsaRatingString": "G", + "programme": { + "id": "mac_ptc851889429", + "title": "It Is Written USA", + "synopsis": "John Bradshaw shares an encouraging message of believing in the salvation of Jesus & yeilding our lives to Him daily. S1E2" + } + }, + { + "id": "IBMS_55334014", + "startMs": 1765605600000, + "endMs": 1765607400000, + "live": false, + "nzBsaRatingString": "G", + "programme": { + "id": "mac_ptc1825972722", + "title": "Pathway to Paradise", + "synopsis": "Tim & Stacey discuss the dangers of hovering over your children at the wrong time, place, & stage of your parenting journey. S1E71" + } + }, + { + "id": "IBMS_55334015", + "startMs": 1765607400000, + "endMs": 1765612800000, + "live": false, + "nzBsaRatingString": "G", + "programme": { + "id": "mac_ptc1372670852", + "title": "What Is Truth", + "synopsis": "Robert and Marlou talk with Eric Wilson who spent 25 years deeply involved in martial arts before God brought him out of this. S1E42" + } + }, + { + "id": "IBMS_55334016", + "startMs": 1765612800000, + "endMs": 1765616400000, + "live": false, + "nzBsaRatingString": "G", + "programme": { + "id": "mac_ptc1960019056", + "title": "Elijah Reformation", + "synopsis": "Paul Klix reminds us of the importance of making decisions for our families that will protect them from sinful influences. S1E5" + } + }, + { + "id": "IBMS_55334017", + "startMs": 1765616400000, + "endMs": 1765620000000, + "live": false, + "nzBsaRatingString": "G", + "programme": { + "id": "mac_ptc865154241", + "title": "A False View 06", + "synopsis": "In this series Andreas Mellas looks at the Book of Malachi and the parallel message given to Israel of old with the message to the remnant in the last days. S1E6" + } + }, + { + "id": "IBMS_55334018", + "startMs": 1765620000000, + "endMs": 1765621800000, + "live": false, + "nzBsaRatingString": "G", + "programme": { + "id": "mac_ptc1798658859", + "title": "The Incredible Journey", + "synopsis": "Join Gary Kent as he looks at the amazing story of the evacuation of Dunkirk and gives an encouraging message of hope. S1E141" + } + }, + { + "id": "IBMS_55334019", + "startMs": 1765621800000, + "endMs": 1765623600000, + "live": false, + "nzBsaRatingString": "G", + "programme": { + "id": "mac_ptc204544833", + "title": "In Search of the Truth", + "synopsis": "Join Charles and Karen Byrd as they search for the truth about our final home. S1 E3" + } + }, + { + "id": "IBMS_55334020", + "startMs": 1765623600000, + "endMs": 1765629000000, + "live": false, + "nzBsaRatingString": "G", + "programme": { + "id": "mac_ptc382522958", + "title": "Revelation Speaks Hope", + "synopsis": "In an age of uncertainty the Bible provides solid answers. The Book of Revelation & the rest of the Bible give hope & answers to life's most crucial questions. S1 E15" + } + } + ] + } + }, + { + "id": "CGTN", + "title": "CGTN Documentary", + "number": 309, + "tileImage": { + "uri": "https://images.skyone.co.nz/contentful/dcojl03mw8gy/4FcZk6nJq9ylM3qvTaKz1w/d007e69c59805c34b248833e2ff70736/CGTN_Documentary.png" + }, + "slotsForDay": { + "slots": [ + { + "id": "IBMS_55179764", + "startMs": 1765537200000, + "endMs": 1765540800000, + "live": false, + "nzBsaRatingString": null, + "programme": { + "id": "mac_ptc1913359746", + "title": "Best Eats", + "synopsis": "Food connects people! A feast for the eyes that spotlights the cuisines of China in a way that’s bound to set the mouths of the whole globe watering!" + } + }, + { + "id": "IBMS_55179765", + "startMs": 1765540800000, + "endMs": 1765542600000, + "live": false, + "nzBsaRatingString": null, + "programme": { + "id": "mac_ptc570646038", + "title": "Youthful China", + "synopsis": "The youth of a country is the future of that country. A series of documentaries focusing on the younger generation of China in which you get to see what they are achieving and what makes them tick!" + } + }, + { + "id": "IBMS_55179766", + "startMs": 1765542600000, + "endMs": 1765544400000, + "live": false, + "nzBsaRatingString": null, + "programme": { + "id": "mac_ptc1661753757", + "title": "Pixel Collage", + "synopsis": "A well-crafted collage of selected short documentaries telling stories about all aspects of China! People, technology, culture, and wildlife, all are showcased in Internet-friendly form." + } + }, + { + "id": "IBMS_55179767", + "startMs": 1765544400000, + "endMs": 1765548000000, + "live": false, + "nzBsaRatingString": null, + "programme": { + "id": "mac_ptc774615575", + "title": "Today’s Top Pick", + "synopsis": "Documentaries in this slot are rebroadcasts of our most-viewed and most popular stories of the season. They feature important social, economic, environmental or other policy-driven issues," + } + }, + { + "id": "IBMS_55179768", + "startMs": 1765548000000, + "endMs": 1765551600000, + "live": false, + "nzBsaRatingString": null, + "programme": { + "id": "mac_ptc2027646146", + "title": "Today’s Top Pick", + "synopsis": "Documentaries in this slot are rebroadcasts of our most-viewed and most popular stories of the season. They feature important social, economic, environmental or other policy-driven issues," + } + }, + { + "id": "IBMS_55179769", + "startMs": 1765551600000, + "endMs": 1765555200000, + "live": false, + "nzBsaRatingString": null, + "programme": { + "id": "mac_ptc316777454", + "title": "Today’s Top Pick", + "synopsis": "Documentaries in this slot are rebroadcasts of our most-viewed and most popular stories of the season. They feature important social, economic, environmental or other policy-driven issues," + } + }, + { + "id": "IBMS_55179770", + "startMs": 1765555200000, + "endMs": 1765558800000, + "live": false, + "nzBsaRatingString": null, + "programme": { + "id": "mac_ptc1612230908", + "title": "Today’s Top Pick", + "synopsis": "Documentaries in this slot are rebroadcasts of our most-viewed and most popular stories of the season. They feature important social, economic, environmental or other policy-driven issues," + } + }, + { + "id": "IBMS_55179771", + "startMs": 1765558800000, + "endMs": 1765562400000, + "live": false, + "nzBsaRatingString": null, + "programme": { + "id": "mac_ptc22952183", + "title": "Today’s Top Pick", + "synopsis": "Documentaries in this slot are rebroadcasts of our most-viewed and most popular stories of the season. They feature important social, economic, environmental or other policy-driven issues," + } + }, + { + "id": "IBMS_55179772", + "startMs": 1765562400000, + "endMs": 1765566000000, + "live": false, + "nzBsaRatingString": null, + "programme": { + "id": "mac_ptc1914448262", + "title": "Today’s Top Pick", + "synopsis": "Documentaries in this slot are rebroadcasts of our most-viewed and most popular stories of the season. They feature important social, economic, environmental or other policy-driven issues," + } + }, + { + "id": "IBMS_55179773", + "startMs": 1765566000000, + "endMs": 1765569600000, + "live": false, + "nzBsaRatingString": null, + "programme": { + "id": "mac_ptc1322116110", + "title": "Today’s Top Pick", + "synopsis": "Documentaries in this slot are rebroadcasts of our most-viewed and most popular stories of the season. They feature important social, economic, environmental or other policy-driven issues," + } + }, + { + "id": "IBMS_55179774", + "startMs": 1765569600000, + "endMs": 1765573200000, + "live": false, + "nzBsaRatingString": null, + "programme": { + "id": "mac_ptc519420390", + "title": "Today’s Top Pick", + "synopsis": "Documentaries in this slot are rebroadcasts of our most-viewed and most popular stories of the season. They feature important social, economic, environmental or other policy-driven issues," + } + }, + { + "id": "IBMS_55179775", + "startMs": 1765573200000, + "endMs": 1765576800000, + "live": false, + "nzBsaRatingString": null, + "programme": { + "id": "mac_ptc1685810433", + "title": "Today’s Top Pick", + "synopsis": "Documentaries in this slot are rebroadcasts of our most-viewed and most popular stories of the season. They feature important social, economic, environmental or other policy-driven issues," + } + }, + { + "id": "IBMS_55179776", + "startMs": 1765576800000, + "endMs": 1765580400000, + "live": false, + "nzBsaRatingString": null, + "programme": { + "id": "mac_ptc1007425810", + "title": "Today’s Top Pick", + "synopsis": "Documentaries in this slot are rebroadcasts of our most-viewed and most popular stories of the season. They feature important social, economic, environmental or other policy-driven issues," + } + }, + { + "id": "IBMS_55179777", + "startMs": 1765580400000, + "endMs": 1765584000000, + "live": false, + "nzBsaRatingString": null, + "programme": { + "id": "mac_ptc561779132", + "title": "Today’s Top Pick", + "synopsis": "Documentaries in this slot are rebroadcasts of our most-viewed and most popular stories of the season. They feature important social, economic, environmental or other policy-driven issues," + } + }, + { + "id": "IBMS_55179778", + "startMs": 1765584000000, + "endMs": 1765587600000, + "live": false, + "nzBsaRatingString": null, + "programme": { + "id": "mac_ptc124110027", + "title": "Today’s Top Pick", + "synopsis": "Documentaries in this slot are rebroadcasts of our most-viewed and most popular stories of the season. They feature important social, economic, environmental or other policy-driven issues," + } + }, + { + "id": "IBMS_55179779", + "startMs": 1765587600000, + "endMs": 1765591200000, + "live": false, + "nzBsaRatingString": null, + "programme": { + "id": "mac_ptc863044976", + "title": "Today’s Top Pick", + "synopsis": "Documentaries in this slot are rebroadcasts of our most-viewed and most popular stories of the season. They feature important social, economic, environmental or other policy-driven issues," + } + }, + { + "id": "IBMS_55179780", + "startMs": 1765591200000, + "endMs": 1765594800000, + "live": false, + "nzBsaRatingString": null, + "programme": { + "id": "mac_ptc326369619", + "title": "Today’s Top Pick", + "synopsis": "Documentaries in this slot are rebroadcasts of our most-viewed and most popular stories of the season. They feature important social, economic, environmental or other policy-driven issues," + } + }, + { + "id": "IBMS_55179781", + "startMs": 1765594800000, + "endMs": 1765598400000, + "live": false, + "nzBsaRatingString": null, + "programme": { + "id": "mac_ptc730138905", + "title": "Today’s Top Pick", + "synopsis": "Documentaries in this slot are rebroadcasts of our most-viewed and most popular stories of the season. They feature important social, economic, environmental or other policy-driven issues," + } + }, + { + "id": "IBMS_55179782", + "startMs": 1765598400000, + "endMs": 1765602000000, + "live": false, + "nzBsaRatingString": null, + "programme": { + "id": "mac_ptc618680542", + "title": "Today’s Top Pick", + "synopsis": "Documentaries in this slot are rebroadcasts of our most-viewed and most popular stories of the season. They feature important social, economic, environmental or other policy-driven issues," + } + }, + { + "id": "IBMS_55179783", + "startMs": 1765602000000, + "endMs": 1765605600000, + "live": false, + "nzBsaRatingString": null, + "programme": { + "id": "mac_ptc193805917", + "title": "Today’s Top Pick", + "synopsis": "Documentaries in this slot are rebroadcasts of our most-viewed and most popular stories of the season. They feature important social, economic, environmental or other policy-driven issues," + } + }, + { + "id": "IBMS_55179784", + "startMs": 1765605600000, + "endMs": 1765609200000, + "live": false, + "nzBsaRatingString": null, + "programme": { + "id": "mac_ptc1570125179", + "title": "Today’s Top Pick", + "synopsis": "Documentaries in this slot are rebroadcasts of our most-viewed and most popular stories of the season. They feature important social, economic, environmental or other policy-driven issues," + } + }, + { + "id": "IBMS_55179785", + "startMs": 1765609200000, + "endMs": 1765612800000, + "live": false, + "nzBsaRatingString": null, + "programme": { + "id": "mac_ptc124931521", + "title": "Today’s Top Pick", + "synopsis": "Documentaries in this slot are rebroadcasts of our most-viewed and most popular stories of the season. They feature important social, economic, environmental or other policy-driven issues," + } + }, + { + "id": "IBMS_55179786", + "startMs": 1765612800000, + "endMs": 1765616400000, + "live": false, + "nzBsaRatingString": null, + "programme": { + "id": "mac_ptc901890023", + "title": "Today’s Top Pick", + "synopsis": "Documentaries in this slot are rebroadcasts of our most-viewed and most popular stories of the season. They feature important social, economic, environmental or other policy-driven issues," + } + }, + { + "id": "IBMS_55179787", + "startMs": 1765616400000, + "endMs": 1765620000000, + "live": false, + "nzBsaRatingString": null, + "programme": { + "id": "mac_ptc76048773", + "title": "Today’s Top Pick", + "synopsis": "Documentaries in this slot are rebroadcasts of our most-viewed and most popular stories of the season. They feature important social, economic, environmental or other policy-driven issues," + } + }, + { + "id": "IBMS_55179788", + "startMs": 1765620000000, + "endMs": 1765623600000, + "live": false, + "nzBsaRatingString": null, + "programme": { + "id": "mac_ptc1246839992", + "title": "Today’s Top Pick", + "synopsis": "Documentaries in this slot are rebroadcasts of our most-viewed and most popular stories of the season. They feature important social, economic, environmental or other policy-driven issues," + } + }, + { + "id": "IBMS_55179789", + "startMs": 1765623600000, + "endMs": 1765627200000, + "live": false, + "nzBsaRatingString": null, + "programme": { + "id": "mac_ptc1577402830", + "title": "Today’s Top Pick", + "synopsis": "Documentaries in this slot are rebroadcasts of our most-viewed and most popular stories of the season. They feature important social, economic, environmental or other policy-driven issues," + } + } + ] + } + }, + { + "id": "CCTV", + "title": "CGTN: China Global Television Network", + "number": 310, + "tileImage": { + "uri": "https://images.skyone.co.nz/contentful/dcojl03mw8gy/6WX5mcWvxgwBXgHmOojK1V/3d3184f94ca59ef3e4a30d7ccbe775f2/CGTN.png" + }, + "slotsForDay": { + "slots": [ + { + "id": "IBMS_55171520", + "startMs": 1765537200000, + "endMs": 1765540800000, + "live": false, + "nzBsaRatingString": null, + "programme": { + "id": "mac_ptc1951081566", + "title": "Global Business", + "synopsis": "Global Business is the flagship business show of CGTN English Channel, bringing you the latest economic data, business trends and policies." + } + }, + { + "id": "IBMS_55171521", + "startMs": 1765540800000, + "endMs": 1765544400000, + "live": false, + "nzBsaRatingString": null, + "programme": { + "id": "mac_ptc1776323496", + "title": "Africa Live", + "synopsis": "Africa Live is a news program that focuses on African issues and issues related to this diverse continent. CGTN's Nairobi-based broadcast center produces Africa Live." + } + }, + { + "id": "IBMS_55171522", + "startMs": 1765544400000, + "endMs": 1765548000000, + "live": false, + "nzBsaRatingString": null, + "programme": { + "id": "mac_ptc1928900278", + "title": "Global Business", + "synopsis": "Global Business is the flagship business show of CGTN English Channel, bringing you the latest economic data, business trends and policies." + } + }, + { + "id": "IBMS_55171523", + "startMs": 1765548000000, + "endMs": 1765549800000, + "live": false, + "nzBsaRatingString": null, + "programme": { + "id": "mac_ptc3821599", + "title": "The World Today", + "synopsis": "The World Today is the core rolling service of CGTN. keep viewers up-to-date with all the world's top stories as they happen." + } + }, + { + "id": "IBMS_55171524", + "startMs": 1765549800000, + "endMs": 1765551600000, + "live": false, + "nzBsaRatingString": null, + "programme": { + "id": "mac_ptc1522345571", + "title": "World Insight with Tian Wei", + "synopsis": "World Insight with Tian Wei is a long-running international platform for debate and intelligent discussion." + } + }, + { + "id": "IBMS_55171525", + "startMs": 1765551600000, + "endMs": 1765553400000, + "live": false, + "nzBsaRatingString": null, + "programme": { + "id": "mac_ptc418883357", + "title": "The World Today", + "synopsis": "The World Today is the core rolling service of CGTN. keep viewers up-to-date with all the world's top stories as they happen." + } + }, + { + "id": "IBMS_55171526", + "startMs": 1765553400000, + "endMs": 1765555200000, + "live": false, + "nzBsaRatingString": null, + "programme": { + "id": "mac_ptc994089780", + "title": "Dialogue", + "synopsis": "It is a prime time daily English talk show on CGTN." + } + }, + { + "id": "IBMS_55171527", + "startMs": 1765555200000, + "endMs": 1765557000000, + "live": false, + "nzBsaRatingString": null, + "programme": { + "id": "mac_ptc832674551", + "title": "Global Business", + "synopsis": "Global Business is the flagship business show of CGTN English Channel, bringing you the latest economic data, business trends and policies." + } + }, + { + "id": "IBMS_55171528", + "startMs": 1765557000000, + "endMs": 1765558800000, + "live": false, + "nzBsaRatingString": null, + "programme": { + "id": "mac_ptc1503035272", + "title": "The Point with Liu Xin", + "synopsis": "The Point with LIU Xin is a current affairs program on CGTN. The program comments on global news through LIU Xin's very own unique perspective." + } + }, + { + "id": "IBMS_55171529", + "startMs": 1765558800000, + "endMs": 1765562400000, + "live": false, + "nzBsaRatingString": null, + "programme": { + "id": "mac_ptc331042024", + "title": "Americas Now", + "synopsis": "Americas Now profiles the development, diversity and challenges facing the Americas, particularly Latin America." + } + }, + { + "id": "IBMS_55171530", + "startMs": 1765562400000, + "endMs": 1765564200000, + "live": false, + "nzBsaRatingString": null, + "programme": { + "id": "mac_ptc1000258913", + "title": "The Heat", + "synopsis": "The Heat is a daily talk show anchored from Washington, D.C. It focuses on top stories making news globally." + } + }, + { + "id": "IBMS_55171531", + "startMs": 1765564200000, + "endMs": 1765566000000, + "live": false, + "nzBsaRatingString": null, + "programme": { + "id": "mac_ptc51199968", + "title": "The World Today", + "synopsis": "The World Today is the core rolling service of CGTN. keep viewers up-to-date with all the world's top stories as they happen." + } + }, + { + "id": "IBMS_55171532", + "startMs": 1765566000000, + "endMs": 1765569600000, + "live": false, + "nzBsaRatingString": null, + "programme": { + "id": "mac_ptc2089553220", + "title": "Global Business", + "synopsis": "Global Business is the flagship business show of CGTN English Channel, bringing you the latest economic data, business trends and policies." + } + }, + { + "id": "IBMS_55171533", + "startMs": 1765569600000, + "endMs": 1765571400000, + "live": false, + "nzBsaRatingString": null, + "programme": { + "id": "mac_ptc1483752771", + "title": "The World Today", + "synopsis": "The World Today is the core rolling service of CGTN. keep viewers up-to-date with all the world's top stories as they happen." + } + }, + { + "id": "IBMS_55171534", + "startMs": 1765571400000, + "endMs": 1765573200000, + "live": false, + "nzBsaRatingString": null, + "programme": { + "id": "mac_ptc117480479", + "title": "China 24", + "synopsis": "China 24 is a prime time news program featuring in-depth reports and analysis of the stories in the headlines in China." + } + }, + { + "id": "IBMS_55171535", + "startMs": 1765573200000, + "endMs": 1765575000000, + "live": false, + "nzBsaRatingString": null, + "programme": { + "id": "mac_ptc2017855645", + "title": "The World Today", + "synopsis": "The World Today is the core rolling service of CGTN. keep viewers up-to-date with all the world's top stories as they happen." + } + }, + { + "id": "IBMS_55171536", + "startMs": 1765575000000, + "endMs": 1765576800000, + "live": false, + "nzBsaRatingString": null, + "programme": { + "id": "mac_ptc886864361", + "title": "World Insight with Tian Wei", + "synopsis": "World Insight with Tian Wei is a long-running international platform for debate and intelligent discussion." + } + }, + { + "id": "IBMS_55171537", + "startMs": 1765576800000, + "endMs": 1765577700000, + "live": false, + "nzBsaRatingString": null, + "programme": { + "id": "mac_ptc1224155510", + "title": "The World Today", + "synopsis": "The World Today is the core rolling service of CGTN. keep viewers up-to-date with all the world's top stories as they happen." + } + }, + { + "id": "IBMS_55171538", + "startMs": 1765577700000, + "endMs": 1765578600000, + "live": false, + "nzBsaRatingString": null, + "programme": { + "id": "mac_ptc328807446", + "title": "Sports Scene", + "synopsis": "Sports Scene brings you closer to all the action from all corners of the world, with highlights from across Europe, North America and China's top sports leagues." + } + }, + { + "id": "IBMS_55171539", + "startMs": 1765578600000, + "endMs": 1765580400000, + "live": false, + "nzBsaRatingString": null, + "programme": { + "id": "mac_ptc134824731", + "title": "Travelogue", + "synopsis": "Travelogue is a 30-minute travel program. Through the journeys of our intrepid hosts, we experience the beauty, culture and mystery of China, discovering how people live in this vast" + } + }, + { + "id": "IBMS_55171540", + "startMs": 1765580400000, + "endMs": 1765584000000, + "live": false, + "nzBsaRatingString": null, + "programme": { + "id": "mac_ptc1646570200", + "title": "Global Watch", + "synopsis": "GLOBAL WATCH is a 60 minute-long news program. The show stresses Chinese elements, emphasizing China's perspective, policies and stories." + } + }, + { + "id": "IBMS_55171541", + "startMs": 1765584000000, + "endMs": 1765587600000, + "live": false, + "nzBsaRatingString": null, + "programme": { + "id": "mac_ptc1910703588", + "title": "Big Story", + "synopsis": "Big Story is a documentary film program on CGTN. It explores global events with in a variety of filmic styles and featuring original, in-depth, thought-provoking storytelling." + } + }, + { + "id": "IBMS_55171542", + "startMs": 1765587600000, + "endMs": 1765589400000, + "live": false, + "nzBsaRatingString": null, + "programme": { + "id": "mac_ptc2085442268", + "title": "The World Today", + "synopsis": "The World Today is the core rolling service of CGTN. keep viewers up-to-date with all the world's top stories as they happen." + } + }, + { + "id": "IBMS_55171543", + "startMs": 1765589400000, + "endMs": 1765591200000, + "live": false, + "nzBsaRatingString": null, + "programme": { + "id": "mac_ptc1902886593", + "title": "The Heat", + "synopsis": "The Heat is a daily talk show anchored from Washington, D.C. It focuses on top stories making news globally." + } + }, + { + "id": "IBMS_55171544", + "startMs": 1765591200000, + "endMs": 1765593000000, + "live": false, + "nzBsaRatingString": null, + "programme": { + "id": "mac_ptc1059336330", + "title": "The World Today", + "synopsis": "The World Today is the core rolling service of CGTN. keep viewers up-to-date with all the world's top stories as they happen." + } + }, + { + "id": "IBMS_55171545", + "startMs": 1765593000000, + "endMs": 1765594800000, + "live": false, + "nzBsaRatingString": null, + "programme": { + "id": "mac_ptc218184850", + "title": "Sports Scene", + "synopsis": "Sports Scene brings you closer to all the action from all corners of the world, with highlights from across Europe, North America and China's top sports leagues." + } + }, + { + "id": "IBMS_55171546", + "startMs": 1765594800000, + "endMs": 1765596600000, + "live": false, + "nzBsaRatingString": null, + "programme": { + "id": "mac_ptc794252172", + "title": "The World Today", + "synopsis": "The World Today is the core rolling service of CGTN. keep viewers up-to-date with all the world's top stories as they happen." + } + }, + { + "id": "IBMS_55171547", + "startMs": 1765596600000, + "endMs": 1765598400000, + "live": false, + "nzBsaRatingString": null, + "programme": { + "id": "mac_ptc2066279685", + "title": "Biz Talk", + "synopsis": "A groundbreaking 30-minute interview show, giving an in-depth look into how top companies around the world conduct business and how policymakers view the fast-changing world economy." + } + }, + { + "id": "IBMS_55171548", + "startMs": 1765598400000, + "endMs": 1765600200000, + "live": false, + "nzBsaRatingString": null, + "programme": { + "id": "mac_ptc130037190", + "title": "The World Today", + "synopsis": "The World Today is the core rolling service of CGTN. keep viewers up-to-date with all the world's top stories as they happen." + } + }, + { + "id": "IBMS_55171549", + "startMs": 1765600200000, + "endMs": 1765602000000, + "live": false, + "nzBsaRatingString": null, + "programme": { + "id": "mac_ptc1746308890", + "title": "Inheritors", + "synopsis": "Inheritors is a multi-media product from CGTN that shines a light on China’s rich Intangible Cultural Heritage. Each 30-minute TV edition is hosted by a long-term expatriate in China" + } + }, + { + "id": "IBMS_55171550", + "startMs": 1765602000000, + "endMs": 1765602900000, + "live": false, + "nzBsaRatingString": null, + "programme": { + "id": "mac_ptc1886725603", + "title": "The World Today", + "synopsis": "The World Today is the core rolling service of CGTN. keep viewers up-to-date with all the world's top stories as they happen." + } + }, + { + "id": "IBMS_55171551", + "startMs": 1765602900000, + "endMs": 1765605600000, + "live": false, + "nzBsaRatingString": null, + "programme": { + "id": "mac_ptc1206146174", + "title": "Africa Live", + "synopsis": "Africa Live is a news program that focuses on African issues and issues related to this diverse continent. CGTN's Nairobi-based broadcast center produces Africa Live." + } + }, + { + "id": "IBMS_55171552", + "startMs": 1765605600000, + "endMs": 1765607400000, + "live": false, + "nzBsaRatingString": null, + "programme": { + "id": "mac_ptc183773904", + "title": "Asia Today", + "synopsis": "Asia Today highlights the latest news and social developments across Asia. Correspondents in over a dozen countries report on the region's top stories as they happen." + } + }, + { + "id": "IBMS_55171553", + "startMs": 1765607400000, + "endMs": 1765609200000, + "live": false, + "nzBsaRatingString": null, + "programme": { + "id": "mac_ptc714996194", + "title": "Leaders Talk", + "synopsis": "Leaders Talk is China Media Group’s new current affairs program featuring one-on-one interviews with heads of state and high-ranking government officials and heads of international organizations." + } + }, + { + "id": "IBMS_55171554", + "startMs": 1765609200000, + "endMs": 1765610100000, + "live": false, + "nzBsaRatingString": null, + "programme": { + "id": "mac_ptc706592217", + "title": "The World Today", + "synopsis": "The World Today is the core rolling service of CGTN. keep viewers up-to-date with all the world's top stories as they happen." + } + }, + { + "id": "IBMS_55171555", + "startMs": 1765610100000, + "endMs": 1765612800000, + "live": false, + "nzBsaRatingString": null, + "programme": { + "id": "mac_ptc189843105", + "title": "China 24", + "synopsis": "China 24 is a prime time news program featuring in-depth reports and analysis of the stories in the headlines in China." + } + }, + { + "id": "IBMS_55171556", + "startMs": 1765612800000, + "endMs": 1765614600000, + "live": false, + "nzBsaRatingString": null, + "programme": { + "id": "mac_ptc128231424", + "title": "The World Today", + "synopsis": "The World Today is the core rolling service of CGTN. keep viewers up-to-date with all the world's top stories as they happen." + } + }, + { + "id": "IBMS_55171557", + "startMs": 1765614600000, + "endMs": 1765616400000, + "live": false, + "nzBsaRatingString": null, + "programme": { + "id": "mac_ptc149901588", + "title": "Biz Talk", + "synopsis": "A groundbreaking 30-minute interview show, giving an in-depth look into how top companies around the world conduct business and how policymakers view the fast-changing world economy." + } + }, + { + "id": "IBMS_55171558", + "startMs": 1765616400000, + "endMs": 1765618200000, + "live": false, + "nzBsaRatingString": null, + "programme": { + "id": "mac_ptc331183057", + "title": "The World Today", + "synopsis": "The World Today is the core rolling service of CGTN. keep viewers up-to-date with all the world's top stories as they happen." + } + }, + { + "id": "IBMS_55171559", + "startMs": 1765618200000, + "endMs": 1765620000000, + "live": false, + "nzBsaRatingString": null, + "programme": { + "id": "mac_ptc2127795590", + "title": "Assignment Asia", + "synopsis": "Assignment Asia is a current affairs program that takes an in-depth look at stories from all over Asia." + } + }, + { + "id": "IBMS_55171560", + "startMs": 1765620000000, + "endMs": 1765621800000, + "live": false, + "nzBsaRatingString": null, + "programme": { + "id": "mac_ptc1657288451", + "title": "The World Today", + "synopsis": "The World Today is the core rolling service of CGTN. keep viewers up-to-date with all the world's top stories as they happen." + } + }, + { + "id": "IBMS_55171561", + "startMs": 1765621800000, + "endMs": 1765623600000, + "live": false, + "nzBsaRatingString": null, + "programme": { + "id": "mac_ptc1471653722", + "title": "Inheritors", + "synopsis": "Inheritors is a multi-media product from CGTN that shines a light on China’s rich Intangible Cultural Heritage. Each 30-minute TV edition is hosted by a long-term expatriate in China" + } + }, + { + "id": "IBMS_55171562", + "startMs": 1765623600000, + "endMs": 1765625400000, + "live": false, + "nzBsaRatingString": null, + "programme": { + "id": "mac_ptc1406678081", + "title": "The World Today", + "synopsis": "The World Today is the core rolling service of CGTN. keep viewers up-to-date with all the world's top stories as they happen." + } + } + ] + } + }, + { + "id": "RNZ1", + "title": "RNZ National", + "number": 421, + "tileImage": { + "uri": "https://images.skyone.co.nz/contentful/dcojl03mw8gy/1V7ZbPolOEosso1nx34NDy/6b94f3a549dd61832cf7a59164bf27bb/rnz-national.png" + }, + "slotsForDay": { + "slots": [ + { + "id": "IBMS_55344439", + "startMs": 1765537200000, + "endMs": 1765558800000, + "live": false, + "nzBsaRatingString": "G", + "programme": { + "id": "mac_ptc1713546265", + "title": "All Night Programme", + "synopsis": "The All Night Programme is a live-hosted programme of the best RNZ National interviews, features, music, news and weather. Daily from Midnight until 5.00am weekdays and 6.00am weekends" + } + }, + { + "id": "IBMS_55344440", + "startMs": 1765558800000, + "endMs": 1765562400000, + "live": false, + "nzBsaRatingString": "G", + "programme": { + "id": "mac_ptc2066861820", + "title": "Country Life", + "synopsis": "Country Life" + } + }, + { + "id": "IBMS_55344441", + "startMs": 1765562400000, + "endMs": 1765581000000, + "live": false, + "nzBsaRatingString": "G", + "programme": { + "id": "mac_ptc1009805546", + "title": "Saturday Morning", + "synopsis": "Presented by Susie Ferguson and Mihingarangi Forbes" + } + }, + { + "id": "IBMS_55344442", + "startMs": 1765581000000, + "endMs": 1765584360000, + "live": false, + "nzBsaRatingString": "G", + "programme": { + "id": "mac_ptc366409036", + "title": "Mapuna with Julian Wilcox", + "synopsis": "Julian talks to Maori throughout Aotearoa, from sports legends to business leaders, to artists and community advocates" + } + }, + { + "id": "IBMS_55344443", + "startMs": 1765584360000, + "endMs": 1765598400000, + "live": false, + "nzBsaRatingString": "G", + "programme": { + "id": "mac_ptc364986424", + "title": "Music 101", + "synopsis": "The best songs, music-related stories, interviews, live music, industry news and music documentaries from New Zealand and the world" + } + }, + { + "id": "IBMS_55344444", + "startMs": 1765598400000, + "endMs": 1765599000000, + "live": false, + "nzBsaRatingString": "G", + "programme": { + "id": "mac_ptc1246131111", + "title": "The World at Five", + "synopsis": "A roundup of today's news and sport (RNZ)" + } + }, + { + "id": "IBMS_55344445", + "startMs": 1765599000000, + "endMs": 1765600200000, + "live": false, + "nzBsaRatingString": "G", + "programme": { + "id": "mac_ptc1593008286", + "title": "Focus on Politics", + "synopsis": "Focus on Politics" + } + }, + { + "id": "IBMS_55344446", + "startMs": 1765600200000, + "endMs": 1765602360000, + "live": false, + "nzBsaRatingString": "G", + "programme": { + "id": "mac_ptc2027542947", + "title": "Tagata O Te Moana", + "synopsis": "A weekly Pacific magazine programme features New Zealand and regional Pacific news, issues, information and music" + } + }, + { + "id": "IBMS_55344447", + "startMs": 1765602360000, + "endMs": 1765605960000, + "live": false, + "nzBsaRatingString": "G", + "programme": { + "id": "mac_ptc948744480", + "title": "Nashville Babylon", + "synopsis": "Mark Rogers offers the very best Americana, alt country, folk soul and blues music (RNZ)" + } + }, + { + "id": "IBMS_55344448", + "startMs": 1765605960000, + "endMs": 1765623600000, + "live": false, + "nzBsaRatingString": "G", + "programme": { + "id": "mac_ptc641014546", + "title": "Saturday Night with Phil O'Brien", + "synopsis": "An evening of requests, nostalgia and musical memories (RNZ)" + } + }, + { + "id": "IBMS_55344449", + "startMs": 1765623600000, + "endMs": 1765645200000, + "live": false, + "nzBsaRatingString": "G", + "programme": { + "id": "mac_ptc1976231763", + "title": "All Night Programme", + "synopsis": "The All Night Programme is a live-hosted programme of the best RNZ National interviews, features, music, news and weather. Daily from Midnight until 5.00am weekdays and 6.00am weekends" + } + } + ] + } + }, + { + "id": "RNZ2", + "title": "RNZ Concert", + "number": 422, + "tileImage": { + "uri": "https://images.skyone.co.nz/contentful/dcojl03mw8gy/ee6VolLUo4LeQSM6Nz34U/a3359da3a155978a1dc04ec8c8a6f4c4/rnz-concert.png" + }, + "slotsForDay": { + "slots": [ + { + "id": "IBMS_55344563", + "startMs": 1765537200000, + "endMs": 1765558800000, + "live": false, + "nzBsaRatingString": "G", + "programme": { + "id": "mac_ptc1699761052", + "title": "Music Through the Night", + "synopsis": "Your aural pathway through the darkest hours. Details available on www.RNZ.co.nz/concert" + } + }, + { + "id": "IBMS_55344564", + "startMs": 1765558800000, + "endMs": 1765573200000, + "live": false, + "nzBsaRatingString": "G", + "programme": { + "id": "mac_ptc513987609", + "title": "Mornings", + "synopsis": "With Carey McDonald" + } + }, + { + "id": "IBMS_55344565", + "startMs": 1765573200000, + "endMs": 1765591200000, + "live": false, + "nzBsaRatingString": "G", + "programme": { + "id": "mac_ptc532834359", + "title": "Concert Days", + "synopsis": "Concert Days" + } + }, + { + "id": "IBMS_55344566", + "startMs": 1765591200000, + "endMs": 1765598400000, + "live": false, + "nzBsaRatingString": "G", + "programme": { + "id": "mac_ptc9204036", + "title": "Concert Afternoons", + "synopsis": "Concert Afternoons" + } + }, + { + "id": "IBMS_55344567", + "startMs": 1765598400000, + "endMs": 1765605600000, + "live": false, + "nzBsaRatingString": "G", + "programme": { + "id": "mac_ptc2033072548", + "title": "Inside Out with Nick Tipping", + "synopsis": "A journey through the jazz spectrum playing favourites, standards and new releases along the way (RNZ)" + } + }, + { + "id": "IBMS_55344568", + "startMs": 1765605600000, + "endMs": 1765618200000, + "live": false, + "nzBsaRatingString": "G", + "programme": { + "id": "mac_ptc1077385086", + "title": "The Met Opera Series", + "synopsis": "Performances from some of the world's greatest opera companies and performers" + } + }, + { + "id": "IBMS_55344569", + "startMs": 1765618200000, + "endMs": 1765623600000, + "live": false, + "nzBsaRatingString": "G", + "programme": { + "id": "mac_ptc2081466659", + "title": "Evenings", + "synopsis": "Evenings" + } + }, + { + "id": "IBMS_55344570", + "startMs": 1765623600000, + "endMs": 1765645200000, + "live": false, + "nzBsaRatingString": "G", + "programme": { + "id": "mac_ptc550615818", + "title": "Music Through the Night", + "synopsis": "Your aural pathway through the darkest hours. Details available on www.RNZ.co.nz/concert" + } + } + ] + } + }, + { + "id": "TAHU", + "title": "Tahu FM", + "number": 423, + "tileImage": { + "uri": "https://images.skyone.co.nz/contentful/dcojl03mw8gy/3alAKjAdiZUFfDBTW6uxHP/432473d4015f2e7c970158626cdaab46/tahu-fm.png" + }, + "slotsForDay": { + "slots": [ + { + "id": "IBMS_54923283", + "startMs": 1765537200000, + "endMs": 1765558800000, + "live": false, + "nzBsaRatingString": "PG", + "programme": { + "id": "mac_ptc651719279", + "title": "The Break-A-Dawn", + "synopsis": null + } + }, + { + "id": "IBMS_54923284", + "startMs": 1765558800000, + "endMs": 1765562400000, + "live": false, + "nzBsaRatingString": "PG", + "programme": { + "id": "mac_ptc1775676455", + "title": "Mo’ Maori", + "synopsis": null + } + }, + { + "id": "IBMS_54923285", + "startMs": 1765562400000, + "endMs": 1765569600000, + "live": false, + "nzBsaRatingString": "PG", + "programme": { + "id": "mac_ptc1938472878", + "title": "Just Blazin' - Hip Hop & R&B", + "synopsis": null + } + }, + { + "id": "IBMS_54923286", + "startMs": 1765569600000, + "endMs": 1765569900000, + "live": false, + "nzBsaRatingString": "PG", + "programme": { + "id": "mac_ptc264528201", + "title": "Waatea Hourly Bulletin", + "synopsis": null + } + }, + { + "id": "IBMS_54923287", + "startMs": 1765569900000, + "endMs": 1765573200000, + "live": false, + "nzBsaRatingString": "PG", + "programme": { + "id": "mac_ptc1039697857", + "title": "Mo’ Maori", + "synopsis": null + } + }, + { + "id": "IBMS_54923288", + "startMs": 1765573200000, + "endMs": 1765573500000, + "live": false, + "nzBsaRatingString": "PG", + "programme": { + "id": "mac_ptc207367125", + "title": "Waatea Hourly Bulletin", + "synopsis": null + } + }, + { + "id": "IBMS_54923289", + "startMs": 1765573500000, + "endMs": 1765576800000, + "live": false, + "nzBsaRatingString": "PG", + "programme": { + "id": "mac_ptc577819854", + "title": "Mo’ Maori", + "synopsis": null + } + }, + { + "id": "IBMS_54923290", + "startMs": 1765576800000, + "endMs": 1765577100000, + "live": false, + "nzBsaRatingString": "PG", + "programme": { + "id": "mac_ptc1307015443", + "title": "Waatea Hourly Bulletin", + "synopsis": null + } + }, + { + "id": "IBMS_54923291", + "startMs": 1765577100000, + "endMs": 1765580400000, + "live": false, + "nzBsaRatingString": "PG", + "programme": { + "id": "mac_ptc805961392", + "title": "Mo’ Maori", + "synopsis": null + } + }, + { + "id": "IBMS_54923292", + "startMs": 1765580400000, + "endMs": 1765580700000, + "live": false, + "nzBsaRatingString": "PG", + "programme": { + "id": "mac_ptc168244413", + "title": "Waatea Hourly Bulletin", + "synopsis": null + } + }, + { + "id": "IBMS_54923293", + "startMs": 1765580700000, + "endMs": 1765584000000, + "live": false, + "nzBsaRatingString": "PG", + "programme": { + "id": "mac_ptc1345917982", + "title": "Mo’ Maori", + "synopsis": null + } + }, + { + "id": "IBMS_54923294", + "startMs": 1765584000000, + "endMs": 1765584300000, + "live": false, + "nzBsaRatingString": "PG", + "programme": { + "id": "mac_ptc367837442", + "title": "Waatea Hourly Bulletin", + "synopsis": null + } + }, + { + "id": "IBMS_54923295", + "startMs": 1765584300000, + "endMs": 1765587600000, + "live": false, + "nzBsaRatingString": "PG", + "programme": { + "id": "mac_ptc1464843269", + "title": "Mo’ Maori", + "synopsis": null + } + }, + { + "id": "IBMS_54923296", + "startMs": 1765587600000, + "endMs": 1765587900000, + "live": false, + "nzBsaRatingString": "PG", + "programme": { + "id": "mac_ptc1135722877", + "title": "Waatea Hourly Bulletin", + "synopsis": null + } + }, + { + "id": "IBMS_54923297", + "startMs": 1765587900000, + "endMs": 1765594800000, + "live": false, + "nzBsaRatingString": "PG", + "programme": { + "id": "mac_ptc110987089", + "title": "Mo’ Maori", + "synopsis": null + } + }, + { + "id": "IBMS_54923298", + "startMs": 1765594800000, + "endMs": 1765623600000, + "live": false, + "nzBsaRatingString": "PG", + "programme": { + "id": "mac_ptc1240708645", + "title": "Just Blazin' - Hip Hop & R&B", + "synopsis": null + } + }, + { + "id": "IBMS_54923299", + "startMs": 1765623600000, + "endMs": 1765645200000, + "live": false, + "nzBsaRatingString": "PG", + "programme": { + "id": "mac_ptc1308319113", + "title": "The Break-A-Dawn", + "synopsis": null + } + } + ] + } + }, + { + "id": "0049", + "title": "TVNZ 1 +1", + "number": 501, + "tileImage": { + "uri": "https://images.skyone.co.nz/contentful/dcojl03mw8gy/5ozzfduk1cKgBVBm6ICyFj/b41367ba5cccff3101408646a7d5d23f/TVNZ__1.png" + }, + "slotsForDay": { + "slots": [ + { + "id": "IBMS_55333878", + "startMs": 1765533600000, + "endMs": 1765538100000, + "live": false, + "nzBsaRatingString": "G", + "programme": { + "id": "mac_ptc1579427497", + "title": "Interior Design Masters With Alan Carr", + "synopsis": "The designers must create premium hospitality suites at Twickenham for diehard rugby fans by producing a swanky bar and a stylish dining area." + } + }, + { + "id": "IBMS_55333880", + "startMs": 1765538100000, + "endMs": 1765539600000, + "live": false, + "nzBsaRatingString": "G", + "programme": { + "id": "mac_ptc1692787156", + "title": "Deal Or No Deal Australia", + "synopsis": "Join host Grant Denyer for a round of this high pressure and high stakes game show, where contestants face up to the Banker and must decide: is it deal or no deal?" + } + }, + { + "id": "IBMS_55333882", + "startMs": 1765539600000, + "endMs": 1765541700000, + "live": false, + "nzBsaRatingString": "PG", + "programme": { + "id": "mac_ptc1631283585", + "title": "Hard Quiz", + "synopsis": "What do King Henry VII, Shaquille O'Neal, dinosaurs and The Adventures of Priscilla, Queen of the Desert have in common? They're all expert topics on tonight's #HardQuiz!" + } + }, + { + "id": "IBMS_55333884", + "startMs": 1765541700000, + "endMs": 1765545000000, + "live": false, + "nzBsaRatingString": "G", + "programme": { + "id": "mac_ptc276847012", + "title": "Selling Houses Australia", + "synopsis": "After Lynda's tenants leave her Sunshine West property in disarray, Selling Houses Australia comes to the rescue." + } + }, + { + "id": "IBMS_55333886", + "startMs": 1765545000000, + "endMs": 1765548000000, + "live": false, + "nzBsaRatingString": "PG", + "programme": { + "id": "mac_ptc376604891", + "title": "Help! We Bought A Hotel", + "synopsis": "Two hoteliers in France prepare to bid au revoir to their home and business. A set of renovators get started on turning an old Italian palazzo into a classy hotel." + } + }, + { + "id": "IBMS_55333888", + "startMs": 1765548000000, + "endMs": 1765549800000, + "live": false, + "nzBsaRatingString": null, + "programme": { + "id": "mac_ptc951150222", + "title": "Te Karere", + "synopsis": "Te Karere brings you key events and stories of interest to Maori as well as bringing a Maori perspective to the day's news and current affairs." + } + }, + { + "id": "IBMS_55333890", + "startMs": 1765549800000, + "endMs": 1765551600000, + "live": false, + "nzBsaRatingString": null, + "programme": { + "id": "mac_ptc1966260070", + "title": "Infomercials", + "synopsis": "Infomercials" + } + }, + { + "id": "IBMS_55333892", + "startMs": 1765551600000, + "endMs": 1765553400000, + "live": false, + "nzBsaRatingString": null, + "programme": { + "id": "mac_ptc1251404496", + "title": "Infomercials", + "synopsis": "Infomercials" + } + }, + { + "id": "IBMS_55333894", + "startMs": 1765553400000, + "endMs": 1765555200000, + "live": false, + "nzBsaRatingString": null, + "programme": { + "id": "mac_ptc1173863222", + "title": "Infomercials", + "synopsis": "Infomercials" + } + }, + { + "id": "IBMS_55333896", + "startMs": 1765555200000, + "endMs": 1765557000000, + "live": false, + "nzBsaRatingString": null, + "programme": { + "id": "mac_ptc96372381", + "title": "Infomercials", + "synopsis": "Infomercials" + } + }, + { + "id": "IBMS_55333898", + "startMs": 1765557000000, + "endMs": 1765558800000, + "live": false, + "nzBsaRatingString": null, + "programme": { + "id": "mac_ptc454627457", + "title": "Infomercials", + "synopsis": "Infomercials" + } + }, + { + "id": "IBMS_55333900", + "startMs": 1765558800000, + "endMs": 1765560600000, + "live": false, + "nzBsaRatingString": null, + "programme": { + "id": "mac_ptc936281476", + "title": "Infomercials", + "synopsis": "Infomercials" + } + }, + { + "id": "IBMS_55333902", + "startMs": 1765560600000, + "endMs": 1765562400000, + "live": false, + "nzBsaRatingString": null, + "programme": { + "id": "mac_ptc1721134718", + "title": "Te Karere", + "synopsis": "Te Karere brings you key events and stories of interest to Maori as well as bringing a Maori perspective to the day's news and current affairs." + } + }, + { + "id": "IBMS_55358255", + "startMs": 1765562400000, + "endMs": 1765564200000, + "live": false, + "nzBsaRatingString": null, + "programme": { + "id": "mac_ptc1870170212", + "title": "Infomercials", + "synopsis": "Infomercials" + } + }, + { + "id": "IBMS_55358257", + "startMs": 1765564200000, + "endMs": 1765566000000, + "live": false, + "nzBsaRatingString": null, + "programme": { + "id": "mac_ptc1363466112", + "title": "Infomercials", + "synopsis": "Infomercials" + } + }, + { + "id": "IBMS_55358479", + "startMs": 1765566000000, + "endMs": 1765567800000, + "live": false, + "nzBsaRatingString": null, + "programme": { + "id": "mac_ptc1987270808", + "title": "Infomercials", + "synopsis": "Infomercials" + } + }, + { + "id": "IBMS_55358481", + "startMs": 1765567800000, + "endMs": 1765569600000, + "live": false, + "nzBsaRatingString": "G", + "programme": { + "id": "mac_ptc1013534526", + "title": "Dog Squad Puppy School", + "synopsis": "Training cranks up for police hopeful Blue, there's swap-a-pup surprises all round for the Mobility fosters, and Biosecurity's Luigi, Luna and their Uncle Klaus leave home." + } + }, + { + "id": "IBMS_55358483", + "startMs": 1765569600000, + "endMs": 1765571400000, + "live": false, + "nzBsaRatingString": "G", + "programme": { + "id": "mac_ptc992143910", + "title": "Rural Delivery", + "synopsis": "Embracing diversity at Caythorpe Estate - producing cherries, growing grapes, making wine, and a specialist equine hay mix; and a partnership between Beef + Lamb NZ and MPI." + } + }, + { + "id": "IBMS_55358485", + "startMs": 1765571400000, + "endMs": 1765573200000, + "live": false, + "nzBsaRatingString": "G", + "programme": { + "id": "mac_ptc2033191596", + "title": "Hyundai Country Calendar", + "synopsis": "We revisit a North Canterbury school-leaver who followed her dream to go farming; Ten years on and married with two kids, the couple is thriving on the land." + } + }, + { + "id": "IBMS_55358487", + "startMs": 1765573200000, + "endMs": 1765575000000, + "live": false, + "nzBsaRatingString": "G", + "programme": { + "id": "mac_ptc2118953595", + "title": "Barkley Manor", + "synopsis": "Instafamous brothers Wonton and Dumpling prepare for the French bulldog event of the year. Has Cali the Labrador changed her chaotic ways? S2 E7" + } + }, + { + "id": "IBMS_55358489", + "startMs": 1765575000000, + "endMs": 1765577400000, + "live": false, + "nzBsaRatingString": "G", + "programme": { + "id": "mac_ptc1760213213", + "title": "Mary Berry Makes It Easy", + "synopsis": "Jordan North has more will than skill when cooking, so he joins Mary for some simple recipes to impress his pals, and as a thank you takes her to the pub for a pint and game of darts." + } + }, + { + "id": "IBMS_55358491", + "startMs": 1765577400000, + "endMs": 1765581600000, + "live": false, + "nzBsaRatingString": "G", + "programme": { + "id": "mac_ptc1715378477", + "title": "The Great British Sewing Bee", + "synopsis": "The sewers celebrate west Africa over three challenges with batakari, adire fabric and boubous." + } + }, + { + "id": "IBMS_55358493", + "startMs": 1765581600000, + "endMs": 1765586100000, + "live": false, + "nzBsaRatingString": "PGC", + "programme": { + "id": "mac_ptc1622091780", + "title": "Call The Midwife", + "synopsis": "In his new role, Cyril faces his toughest challenge yet, whilst Matthew is summoned to a board meeting with his mother. Elsewhere, the pupil midwives prepare for their final exams. S13 E6" + } + }, + { + "id": "IBMS_55358495", + "startMs": 1765586100000, + "endMs": 1765589400000, + "live": false, + "nzBsaRatingString": "G", + "programme": { + "id": "mac_ptc1619892531", + "title": "Make It At Market", + "synopsis": "The Repair Shop's Dom Chinea works with a team of business and craft experts to help a group of budding entrepreneurs make a living from their crafting hobby." + } + }, + { + "id": "IBMS_55358497", + "startMs": 1765589400000, + "endMs": 1765593000000, + "live": false, + "nzBsaRatingString": "G", + "programme": { + "id": "mac_ptc1191472118", + "title": "The Travelling Auctioneers", + "synopsis": "Research, restore and ready for sale! An intrepid team of antiques experts and master crafters help families turn unwanted items into winning lots." + } + }, + { + "id": "IBMS_55358499", + "startMs": 1765593000000, + "endMs": 1765594800000, + "live": false, + "nzBsaRatingString": "G", + "programme": { + "id": "mac_ptc2025838104", + "title": "Tipping Point: Best Ever Finals", + "synopsis": "Look back at some of the most dramatic end games in Tipping History, including agonising trades and jackpot counters teetering on the edge." + } + }, + { + "id": "IBMS_55358501", + "startMs": 1765594800000, + "endMs": 1765598100000, + "live": false, + "nzBsaRatingString": "G", + "programme": { + "id": "mac_ptc1561226186", + "title": "Marcus Wareing At Christmas", + "synopsis": "Marcus makes some festive bakes including a decadent salmon Pithivier, a warming ginger cake and a scrumptious citrus enhanced treacle tart." + } + }, + { + "id": "IBMS_55358503", + "startMs": 1765598100000, + "endMs": 1765602000000, + "live": false, + "nzBsaRatingString": "G", + "programme": { + "id": "mac_ptc1714640808", + "title": "Tipping Point Lucky Stars", + "synopsis": "Ben Shephard hosts as footballing legend John Barnes, singer-songwriter Charlotte Church, and comedian Stephen Bailey put their wits to the test to win 20,000 pounds for charity." + } + }, + { + "id": "IBMS_55358505", + "startMs": 1765602000000, + "endMs": 1765605600000, + "live": false, + "nzBsaRatingString": "G", + "programme": { + "id": "mac_ptc1471475592", + "title": "The Chase", + "synopsis": "It's game on as teams attempt to answer quick-fire questions in a 60-second round, with each correct answer earning them £1,000!" + } + }, + { + "id": "IBMS_55358507", + "startMs": 1765605600000, + "endMs": 1765609200000, + "live": false, + "nzBsaRatingString": null, + "programme": { + "id": "mac_ptc358222693", + "title": "1 News At 6 PM", + "synopsis": "The nation's leading team of journalists brings viewers the latest news and sport, plus the most comprehensive weather report." + } + }, + { + "id": "IBMS_55358509", + "startMs": 1765609200000, + "endMs": 1765612800000, + "live": false, + "nzBsaRatingString": "G", + "programme": { + "id": "mac_ptc1134932918", + "title": "The Dog House at Christmas", + "synopsis": "The Woodgreen team host a festive Christmas dinner for their abandoned dogs while they look for new homes." + } + }, + { + "id": "IBMS_55358511", + "startMs": 1765612800000, + "endMs": 1765613100000, + "live": false, + "nzBsaRatingString": null, + "programme": { + "id": "mac_ptc376357118", + "title": "Lotto", + "synopsis": "Lotto" + } + }, + { + "id": "IBMS_55358513", + "startMs": 1765613100000, + "endMs": 1765620900000, + "live": false, + "nzBsaRatingString": "ML", + "programme": { + "id": "mac_ptc616042904", + "title": "Film On 1: Yesterday" + } + }, + { + "id": "IBMS_55358515", + "startMs": 1765620900000, + "endMs": 1765622700000, + "live": false, + "nzBsaRatingString": "G", + "programme": { + "id": "mac_ptc1480870619", + "title": "Border Patrol", + "synopsis": "Season Finale: Biosecurity finds a hidden haul, a man makes a rooky mistake and finds himself in Immigration & Customs find a picture worth a thousand words and tens of thousands of dollars. S12 E10" + } + }, + { + "id": "IBMS_55358517", + "startMs": 1765622700000, + "endMs": 1765626900000, + "live": false, + "nzBsaRatingString": "M", + "programme": { + "id": "mac_ptc1970669510", + "title": "Ten Pound Poms", + "synopsis": "Secrets and lies unfold when Annie, Terry, Kate and Robbie take a trip to the Blue Mountains. S2 E5" + } + } + ] + } + }, + { + "id": "0063", + "title": "TVNZ 2 +1", + "number": 502, + "tileImage": { + "uri": "https://images.skyone.co.nz/contentful/dcojl03mw8gy/14iJD91Rh0WByvh8wbsqCR/6aa478df3c616a8cad8f10cf2deeeb7d/TVNZ_2__1.png" + }, + "slotsForDay": { + "slots": [ + { + "id": "IBMS_55313972", + "startMs": 1765536000000, + "endMs": 1765537800000, + "live": false, + "nzBsaRatingString": "16L", + "programme": { + "id": "mac_ptc919962833", + "title": "Big Boys", + "synopsis": "The gang work hard as Shannon plans a Eurovision bash & her estranged mum is the ultimate party pooper. S3 E4" + } + }, + { + "id": "IBMS_55313975", + "startMs": 1765537800000, + "endMs": 1765541400000, + "live": false, + "nzBsaRatingString": "16L", + "programme": { + "id": "mac_ptc740273505", + "title": "Hell's Kitchen", + "synopsis": "The Yale Whiffenpoofs singing group perform; the chefs must model their expertise and work in harmony for their next challenge: to balance an array of ingredients to create a dish that really sings." + } + }, + { + "id": "IBMS_55313978", + "startMs": 1765541400000, + "endMs": 1765544400000, + "live": false, + "nzBsaRatingString": "PGC", + "programme": { + "id": "mac_ptc1014767519", + "title": "Caught On Dashcam", + "synopsis": "From distracted drivers to street level vigilantes, and even the most baffling battles with weather, we've got it all caught on camera." + } + }, + { + "id": "IBMS_55313981", + "startMs": 1765544400000, + "endMs": 1765545900000, + "live": false, + "nzBsaRatingString": "PG", + "programme": { + "id": "mac_ptc1157848384", + "title": "Emmerdale", + "synopsis": "Long-running soap following the ups and downs of village life amid the rolling scenery of the Yorkshire Dales." + } + }, + { + "id": "IBMS_55313984", + "startMs": 1765545900000, + "endMs": 1765547700000, + "live": false, + "nzBsaRatingString": null, + "programme": { + "id": "mac_ptc1107443669", + "title": "Infomercial", + "synopsis": "Infomercial" + } + }, + { + "id": "IBMS_55313987", + "startMs": 1765547700000, + "endMs": 1765549500000, + "live": false, + "nzBsaRatingString": null, + "programme": { + "id": "mac_ptc20019122", + "title": "Infomercial", + "synopsis": "Infomercial" + } + }, + { + "id": "IBMS_55313990", + "startMs": 1765549500000, + "endMs": 1765557300000, + "live": false, + "nzBsaRatingString": "G", + "programme": { + "id": "mac_ptc2134288178", + "title": "The Voice U.S", + "synopsis": "Coaches Chance the Rapper, Dan + Shay, John Legend and Reba McEntire all vie to discover and coach the next singing phenomenon on the sixth and final night of blind auditions." + } + }, + { + "id": "IBMS_55313993", + "startMs": 1765557300000, + "endMs": 1765558800000, + "live": false, + "nzBsaRatingString": null, + "programme": { + "id": "mac_ptc1337683465", + "title": "TVNZ2 Returns At 5am", + "synopsis": "TVNZ2 Returns At 5am" + } + }, + { + "id": "IBMS_55313996", + "startMs": 1765558800000, + "endMs": 1765560600000, + "live": false, + "nzBsaRatingString": null, + "programme": { + "id": "mac_ptc1389093980", + "title": "Infomercial", + "synopsis": "Infomercial" + } + }, + { + "id": "IBMS_55313999", + "startMs": 1765560600000, + "endMs": 1765562400000, + "live": false, + "nzBsaRatingString": null, + "programme": { + "id": "mac_ptc1136717674", + "title": "Infomercial", + "synopsis": "Infomercial" + } + }, + { + "id": "IBMS_55358909", + "startMs": 1765562400000, + "endMs": 1765563600000, + "live": false, + "nzBsaRatingString": "G", + "programme": { + "id": "mac_ptc565470413", + "title": "The Imagination Machine", + "synopsis": "With the help of their big imaginations and a cardboard box, siblings Ella, Lucy and Blaze explore the wonders of the ancient world and beyond." + } + }, + { + "id": "IBMS_55358912", + "startMs": 1765563600000, + "endMs": 1765564500000, + "live": false, + "nzBsaRatingString": "G", + "programme": { + "id": "mac_ptc442909728", + "title": "Takaro Tribe", + "synopsis": "This New Zealand-made animation sees the Takaro Tribe on a learning adventure in Te Wao Arap? (the magical Alphabet Forest), along with Papa Rakau (Tree father) and K?ka (Pond Mother)." + } + }, + { + "id": "IBMS_55358915", + "startMs": 1765564500000, + "endMs": 1765565100000, + "live": false, + "nzBsaRatingString": "G", + "programme": { + "id": "mac_ptc985335306", + "title": "Kiri And Lou", + "synopsis": "Kiri and Lou follows the adventures of Kiri, a feisty little dinosaur with overpowering emotions and Lou, a gentle but thoughtful creature." + } + }, + { + "id": "IBMS_55358918", + "startMs": 1765565100000, + "endMs": 1765566300000, + "live": false, + "nzBsaRatingString": "G", + "programme": { + "id": "mac_ptc1550235823", + "title": "Gus the Itsy Bitsy Knight", + "synopsis": "Astride his electric pony, wielding a laser sword, little Gus is out to prove that a brave heart can overcome anything." + } + }, + { + "id": "IBMS_55358921", + "startMs": 1765566300000, + "endMs": 1765566900000, + "live": false, + "nzBsaRatingString": "G", + "programme": { + "id": "mac_ptc374220945", + "title": "The Tom And Jerry Show", + "synopsis": "The Cat and Mouse Detectives are hired to track down Tuffy's imaginary scapegoat, Mr. Nobody." + } + }, + { + "id": "IBMS_55358924", + "startMs": 1765566900000, + "endMs": 1765568100000, + "live": false, + "nzBsaRatingString": "G", + "programme": { + "id": "mac_ptc1063684480", + "title": "Teen Titans Go!", + "synopsis": "Superhero roommates Robin, Cyborg, Starfire, Raven and Beast Boy love saving the day, but what happens when they're done fighting crime?" + } + }, + { + "id": "IBMS_55358927", + "startMs": 1765568100000, + "endMs": 1765570800000, + "live": false, + "nzBsaRatingString": "G", + "programme": { + "id": "mac_ptc2107258758", + "title": "LEGO Ninjago: Masters Of Spinjitzu", + "synopsis": "Kai, Jay, Cole and Zane must master their elemental powers and Spinjitzu weapons to protect the land of Ninjago, which also has an underworld." + } + }, + { + "id": "IBMS_55358930", + "startMs": 1765570800000, + "endMs": 1765572300000, + "live": false, + "nzBsaRatingString": "G", + "programme": { + "id": "mac_ptc1426523157", + "title": "Beyblade X", + "synopsis": "Four beybladers and their genius friend travel the world as team 'Bladebreakers' to win a championship, realising there's much more at stake on the go." + } + }, + { + "id": "IBMS_55358933", + "startMs": 1765572300000, + "endMs": 1765573800000, + "live": false, + "nzBsaRatingString": "PGC", + "programme": { + "id": "mac_ptc536172951", + "title": "Fright Krewe", + "synopsis": "An ancient prophecy and a Voodoo Queen put misfit teens in charge of saving New Orleans from the biggest demonic threat it's faced in almost two centuries." + } + }, + { + "id": "IBMS_55358936", + "startMs": 1765573800000, + "endMs": 1765575300000, + "live": false, + "nzBsaRatingString": "G", + "programme": { + "id": "mac_ptc1065191030", + "title": "Malory Towers", + "synopsis": "Darrell is determined to ace the school cert, but her focus soon shifts when a WWII grenade is found in the San and Felicity and June can't be found." + } + }, + { + "id": "IBMS_55358939", + "startMs": 1765575300000, + "endMs": 1765578600000, + "live": false, + "nzBsaRatingString": "G", + "programme": { + "id": "mac_ptc727964433", + "title": "The Gamers 2037", + "synopsis": "In a dystopian near future, gaming is banned and three former friends must overcome their differences and beat an unbeatable A.I. controlled game, or risk becoming trapped in the machine forever." + } + }, + { + "id": "IBMS_55358942", + "startMs": 1765578600000, + "endMs": 1765586100000, + "live": false, + "nzBsaRatingString": "PGC", + "programme": { + "id": "mac_ptc149151157", + "title": "Shortland Street Omnibus", + "synopsis": "Follow the lives and loves of the residents of Ferndale in New Zealand’s favourite drama series." + } + }, + { + "id": "IBMS_55358945", + "startMs": 1765586100000, + "endMs": 1765590000000, + "live": false, + "nzBsaRatingString": "PGL", + "programme": { + "id": "mac_ptc1034133749", + "title": "The Graham Norton Show", + "synopsis": "Kate Winslet, Jacinda Ardern, Alan Carr and Seth Meyers join Graham on his sofa. With music from Cat Burns, performing There's Just Something About Her from her album How to Be Human." + } + }, + { + "id": "IBMS_55358948", + "startMs": 1765590000000, + "endMs": 1765595400000, + "live": false, + "nzBsaRatingString": "PG", + "programme": { + "id": "mac_ptc378142923", + "title": "Australian Survivor", + "synopsis": "Australia vs The World: A history-making end game is on the horizon. When the world's best collide, who will be first to strike? Will one player's bold move pay off, or will it ignite tensions between the two tribes?" + } + }, + { + "id": "IBMS_55358951", + "startMs": 1765595400000, + "endMs": 1765599000000, + "live": false, + "nzBsaRatingString": "PG", + "programme": { + "id": "mac_ptc1424425886", + "title": "The Fortune Hotel", + "synopsis": "The four remaining pairs face a Hotel Game with a twist that sees them targeting one another with daggers." + } + }, + { + "id": "IBMS_55358954", + "startMs": 1765599000000, + "endMs": 1765602300000, + "live": false, + "nzBsaRatingString": "PG", + "programme": { + "id": "mac_ptc1761768699", + "title": "Confessions Of Octomom", + "synopsis": "Season Finale: Natalie escapes the public eye with her family but finds the wreckage of her past still haunts them all." + } + }, + { + "id": "IBMS_55358957", + "startMs": 1765602300000, + "endMs": 1765605900000, + "live": false, + "nzBsaRatingString": "PGS", + "programme": { + "id": "mac_ptc1396789973", + "title": "Two And A Half Men", + "synopsis": "Walden discovers how challenging it now is to be intimate with women when his foster son is in the house. S12 E9" + } + }, + { + "id": "IBMS_55358960", + "startMs": 1765605900000, + "endMs": 1765609200000, + "live": false, + "nzBsaRatingString": "G", + "programme": { + "id": "mac_ptc2001924323", + "title": "The Big Bang Theory", + "synopsis": "Sheldon and Amy reach a crossroads in their relationship while building a blanket fort, and Howard is shocked when a man claiming to be his half-brother shows up at the front door. S8 E20" + } + }, + { + "id": "IBMS_55358963", + "startMs": 1765609200000, + "endMs": 1765611000000, + "live": false, + "nzBsaRatingString": "G", + "programme": { + "id": "mac_ptc1377502739", + "title": "Booze Patrol", + "synopsis": "Follow the police units for a unique, behind-the-scenes look at RBT patrols testing for alcohol and drug-affected drivers. A driver approaching a booze bus suddenly swerves onto the grass verge!" + } + }, + { + "id": "IBMS_55358968", + "startMs": 1765611000000, + "endMs": 1765621800000, + "live": false, + "nzBsaRatingString": null, + "programme": { + "id": "mac_ptc447139217", + "title": "David Nykia Fight Night", + "synopsis": "Join us for live coverage of the Gatton Xmas Bash boxing event featuring New Zealand's David Nykia taking on China's Wuzhati Nuerland from Gatton in Queensland, Australia." + } + }, + { + "id": "IBMS_55358973", + "startMs": 1765621800000, + "endMs": 1765628400000, + "live": false, + "nzBsaRatingString": "16L", + "programme": { + "id": "mac_ptc736610590", + "title": "The Big Fat Quiz Of The Year 2023", + "synopsis": "Jimmy Carr hosts as Richard Ayoade, Katherine Ryan, Mel Giedroyc, Mo Gilligan, Rosie Jones and Kevin Bridges answer questions about Keir Starmer's sparkle and the Pope's fashion sense." + } + } + ] + } + }, + { + "id": "0055", + "title": "Three +1", + "number": 503, + "tileImage": { + "uri": "https://images.skyone.co.nz/contentful/dcojl03mw8gy/1NwhvU8mMDPJq884hZl4M0/d4ce78fdfc2e7d6dae55901f7378bf0a/503_1920x1080.png" + }, + "slotsForDay": { + "slots": [ + { + "id": "IBMS_55332669", + "startMs": 1765533900000, + "endMs": 1765537500000, + "live": false, + "nzBsaRatingString": "16LC", + "programme": { + "id": "mac_11653328", + "title": "Far North", + "synopsis": "The stranded crew ration their remaining food and water carefully, while waiting to be rescued. Drug boss Cai arrives in New Zealand and the gang reach out to Ed for help. S1 E2" + } + }, + { + "id": "IBMS_55332672", + "startMs": 1765537500000, + "endMs": 1765541100000, + "live": false, + "nzBsaRatingString": "MVC", + "programme": { + "id": "mac_11864000", + "title": "Buried In The Backyard", + "synopsis": "When a twenty-year-old artist is discovered dead in a suitcase across state lines, detectives must uncover the dark truth behind an obsessive lover's deadly actions." + } + }, + { + "id": "IBMS_55332675", + "startMs": 1765541100000, + "endMs": 1765548000000, + "live": false, + "nzBsaRatingString": null, + "programme": { + "id": "mac_11021263", + "title": "Infomercials", + "synopsis": "Infomercials" + } + }, + { + "id": "IBMS_55332678", + "startMs": 1765548000000, + "endMs": 1765555200000, + "live": false, + "nzBsaRatingString": null, + "programme": { + "id": "mac_11021263", + "title": "Infomercials", + "synopsis": "Infomercials" + } + }, + { + "id": "IBMS_55332681", + "startMs": 1765555200000, + "endMs": 1765562400000, + "live": false, + "nzBsaRatingString": null, + "programme": { + "id": "mac_11021263", + "title": "Infomercials", + "synopsis": "Infomercials" + } + }, + { + "id": "IBMS_55332684", + "startMs": 1765562400000, + "endMs": 1765564200000, + "live": false, + "nzBsaRatingString": "PG", + "programme": { + "id": "mac_11021448", + "title": "Charles Stanley", + "synopsis": "Charles Stanley" + } + }, + { + "id": "IBMS_55332687", + "startMs": 1765564200000, + "endMs": 1765567800000, + "live": false, + "nzBsaRatingString": null, + "programme": { + "id": "mac_11021263", + "title": "Infomercials", + "synopsis": "Infomercials" + } + }, + { + "id": "IBMS_55332690", + "startMs": 1765567800000, + "endMs": 1765575300000, + "live": false, + "nzBsaRatingString": null, + "programme": { + "id": "mac_11021263", + "title": "Infomercials", + "synopsis": "Infomercials" + } + }, + { + "id": "IBMS_55332693", + "startMs": 1765575300000, + "endMs": 1765578900000, + "live": false, + "nzBsaRatingString": "G", + "programme": { + "id": "mac_11733892", + "title": "Supermarket Stakeout", + "synopsis": "Host Alex Guarnaschelli sets up a desert stakeout in Arizona. The competing chefs make it Mediterranean before mashing up classics, parking lot-style." + } + }, + { + "id": "IBMS_55332696", + "startMs": 1765578900000, + "endMs": 1765582500000, + "live": false, + "nzBsaRatingString": "PG", + "programme": { + "id": "mac_11864006", + "title": "The Zoo", + "synopsis": "The zoo staff work to build a relationship between a pair of Asian elephants with very different personalities. A beaver undergoes a tooth trim." + } + }, + { + "id": "IBMS_55332699", + "startMs": 1765582500000, + "endMs": 1765584300000, + "live": false, + "nzBsaRatingString": "PG", + "programme": { + "id": "mac_11864007", + "title": "Little Giants", + "synopsis": "A difficult search of the Madagascan forest floor reveals the lowland tenrec, an animal that often tunnels underground and loaded with ultra-sharp senses and defences. S1 E11" + } + }, + { + "id": "IBMS_55332702", + "startMs": 1765584300000, + "endMs": 1765587600000, + "live": false, + "nzBsaRatingString": "G", + "programme": { + "id": "mac_11446054", + "title": "Cupcake Wars", + "synopsis": "Former baker's assistants return and battle for the chance to have their cupcakes featured at a VIP Las Vegas party for the world-renowned Blue Man Group." + } + }, + { + "id": "IBMS_55332705", + "startMs": 1765587600000, + "endMs": 1765594800000, + "live": false, + "nzBsaRatingString": "PGC", + "programme": { + "id": "mac_11633135", + "title": "Movie: Bridge To Terabithia" + } + }, + { + "id": "IBMS_55332708", + "startMs": 1765594800000, + "endMs": 1765596600000, + "live": false, + "nzBsaRatingString": "G", + "programme": { + "id": "mac_11725655", + "title": "Lakefront Bargain Hunt", + "synopsis": "Home seekers look for an affordable lakefront property, proving it's possible to find their dream home without a lot of cash." + } + }, + { + "id": "IBMS_55332711", + "startMs": 1765596600000, + "endMs": 1765600200000, + "live": false, + "nzBsaRatingString": "G", + "programme": { + "id": "mac_11799795", + "title": "Chopped", + "synopsis": "Four chefs well-known for their baking abilities compete. They must focus on creativity when using grocery store breakfast dough and a lovely cut of lamb." + } + }, + { + "id": "IBMS_55332714", + "startMs": 1765600200000, + "endMs": 1765603800000, + "live": false, + "nzBsaRatingString": "PG", + "programme": { + "id": "mac_11864005", + "title": "The Floor Us", + "synopsis": "Hosted by Rob Lowe, 'The Floor' is the ultimate trivia battle in which 81 contestants stand on 81 squares on a massive game show floor, competing for a whopping grand prize." + } + }, + { + "id": "IBMS_55332717", + "startMs": 1765603800000, + "endMs": 1765605600000, + "live": false, + "nzBsaRatingString": "PG", + "programme": { + "id": "mac_11864008", + "title": "Suburgatory", + "synopsis": "Tessa becomes concerned when George lets himself go after his breakup with Dallas and calls George's dad (GEOFF PIERSON - Dexter) to help. Ryan (PARKER YOUNG) comes home to visit." + } + }, + { + "id": "IBMS_55332720", + "startMs": 1765605600000, + "endMs": 1765607400000, + "live": false, + "nzBsaRatingString": null, + "programme": { + "id": "mac_11864009", + "title": "Threenews", + "synopsis": "ThreeNews presents comprehensive coverage of global and local news." + } + }, + { + "id": "IBMS_55332723", + "startMs": 1765607400000, + "endMs": 1765609200000, + "live": false, + "nzBsaRatingString": "PGLC", + "programme": { + "id": "mac_11864010", + "title": "The Best Of The Middle", + "synopsis": "Unforeseen events threaten to ruin Sue's graduation, while Brick is offered the chance to skip a grade, and Axl worries that his girlfriend might be over him in the season finale." + } + }, + { + "id": "IBMS_55332726", + "startMs": 1765609200000, + "endMs": 1765616100000, + "live": false, + "nzBsaRatingString": "G", + "programme": { + "id": "mac_11864011", + "title": "Movie: The Polar Express" + } + }, + { + "id": "IBMS_55332729", + "startMs": 1765616100000, + "endMs": 1765623900000, + "live": false, + "nzBsaRatingString": "MVC", + "programme": { + "id": "mac_11433476", + "title": "Movie: Ghost Rider" + } + } + ] + } + }, + { + "id": "0195", + "title": "TVNZ DUKE +1", + "number": 504, + "tileImage": { + "uri": "https://images.skyone.co.nz/contentful/dcojl03mw8gy/6FdFpqA3dhC9Jov9VV0sIy/e7ea0b34c6654affb131368281c4e0a6/TVNZ_Duke__1.png" + }, + "slotsForDay": { + "slots": [ + { + "id": "IBMS_55314230", + "startMs": 1765536600000, + "endMs": 1765539900000, + "live": false, + "nzBsaRatingString": "16", + "programme": { + "id": "mac_ptc1790819248", + "title": "CSI: Crime Scene Investigation", + "synopsis": "A young girl is abducted from outside a convenience store, triggering an Amber alert. S5 E3" + } + }, + { + "id": "IBMS_55314232", + "startMs": 1765539900000, + "endMs": 1765542900000, + "live": false, + "nzBsaRatingString": "16C", + "programme": { + "id": "mac_ptc1793059598", + "title": "CSI: Crime Scene Investigation", + "synopsis": "A woman is found dead in a hotel suite with symptoms of the Ebola virus. S5 E4" + } + }, + { + "id": "IBMS_55314234", + "startMs": 1765542900000, + "endMs": 1765545900000, + "live": false, + "nzBsaRatingString": "M", + "programme": { + "id": "mac_ptc563629771", + "title": "CSI: Crime Scene Investigation", + "synopsis": "Sara and Greg investigate a swingers' party when one of the revellers is found dead in a fountain. S5 E5" + } + }, + { + "id": "IBMS_55314236", + "startMs": 1765545900000, + "endMs": 1765549200000, + "live": false, + "nzBsaRatingString": "16V", + "programme": { + "id": "mac_ptc270365900", + "title": "Grimm", + "synopsis": "Nick and Hank come across a beautiful young woman who seems to have aged 70 years overnight and died. S5 E15" + } + }, + { + "id": "IBMS_55314238", + "startMs": 1765549200000, + "endMs": 1765562400000, + "live": false, + "nzBsaRatingString": null, + "programme": { + "id": "mac_ptc358302530", + "title": "Duke - Back In The Future", + "synopsis": "We'll catch you later on DUKE." + } + }, + { + "id": "IBMS_55359591", + "startMs": 1765562400000, + "endMs": 1765578600000, + "live": false, + "nzBsaRatingString": null, + "programme": { + "id": "mac_ptc34070746", + "title": "On Duke Today...", + "synopsis": "Here's what's on DUKE today." + } + }, + { + "id": "IBMS_55390705", + "startMs": 1765578600000, + "endMs": 1765605000000, + "live": false, + "nzBsaRatingString": null, + "programme": { + "id": "mac_ptc1103849042", + "title": "On Duke Today...", + "synopsis": "Here's what's on DUKE today." + } + }, + { + "id": "IBMS_55390713", + "startMs": 1765605000000, + "endMs": 1765608300000, + "live": false, + "nzBsaRatingString": "PG", + "programme": { + "id": "mac_ptc509548297", + "title": "Gem Hunters Down Under", + "synopsis": "The annual Gemfields Festival is fast approaching, and Todd and Bri are madly stockpiling gems, preparing the best ones for sale. The Mifsuds undertake yet another massive maintenance job. S2 E4" + } + }, + { + "id": "IBMS_55359595", + "startMs": 1765608300000, + "endMs": 1765609800000, + "live": false, + "nzBsaRatingString": "PG", + "programme": { + "id": "mac_ptc1598537612", + "title": "Neighborhood Wars", + "synopsis": "An ill-tempered man in Tennessee claims his neighbor's new landscaping is causing flooding in his back yard. In California, a neighbor is alarmed when two strangers come looking for a stolen e-bike." + } + }, + { + "id": "IBMS_55359597", + "startMs": 1765609800000, + "endMs": 1765611600000, + "live": false, + "nzBsaRatingString": "G", + "programme": { + "id": "mac_ptc932862784", + "title": "Border Patrol", + "synopsis": "A returning New Zealand traveller experiences phone search fury in Customs red zone. Immigration turns up a problematic past with a US visitor." + } + }, + { + "id": "IBMS_55359599", + "startMs": 1765611600000, + "endMs": 1765613100000, + "live": false, + "nzBsaRatingString": "G", + "programme": { + "id": "mac_ptc1354683398", + "title": "The Simpsons", + "synopsis": "Moe's gruff and abrasive personality makes him the perfect hyper-critical judge, and lands him a spot on American Idol! S21 E23" + } + }, + { + "id": "IBMS_55359601", + "startMs": 1765613100000, + "endMs": 1765614600000, + "live": false, + "nzBsaRatingString": "G", + "programme": { + "id": "mac_ptc1406093662", + "title": "The Simpsons", + "synopsis": "Krusty stands trial in The Hague after being tricked into believing he won the Nobel Prize. S22 E1" + } + }, + { + "id": "IBMS_55359603", + "startMs": 1765614600000, + "endMs": 1765618800000, + "live": false, + "nzBsaRatingString": "16L", + "programme": { + "id": "mac_ptc186035438", + "title": "Love Island Australia", + "synopsis": "Get ready for an Aussie heatwave! Host Sophie Monk is joined by some seriously smokin' singles for the ultimate dating game." + } + }, + { + "id": "IBMS_55359605", + "startMs": 1765618800000, + "endMs": 1765622700000, + "live": false, + "nzBsaRatingString": "16L", + "programme": { + "id": "mac_ptc1645370894", + "title": "Love Island Australia", + "synopsis": "Get ready for an Aussie heatwave! Host Sophie Monk is joined by some seriously smokin' singles for the ultimate dating game." + } + }, + { + "id": "IBMS_55359607", + "startMs": 1765622700000, + "endMs": 1765626600000, + "live": false, + "nzBsaRatingString": "16L", + "programme": { + "id": "mac_ptc1101847205", + "title": "Love Island Australia", + "synopsis": "Get ready for an Aussie heatwave! Host Sophie Monk is joined by some seriously smokin' singles for the ultimate dating game." + } + } + ] + } + }, + { + "id": "0203", + "title": "Eden +1", + "number": 505, + "tileImage": { + "uri": "https://images.skyone.co.nz/contentful/dcojl03mw8gy/5obRYf5tuUkz1sqcissxnu/1b78fa50e2e3b8ff13af074806ad6458/eden__1.png" + }, + "slotsForDay": { + "slots": [ + { + "id": "IBMS_55330885", + "startMs": 1765535400000, + "endMs": 1765539000000, + "live": false, + "nzBsaRatingString": "PG", + "programme": { + "id": "mac_11604497", + "title": "Mysteries At The Museum", + "synopsis": "Don Wildman investigates how a school bus became ensnared in a heinous crime and examines a ball of twine that played a role in a deadly accident. S2 E21" + } + }, + { + "id": "IBMS_55330887", + "startMs": 1765539000000, + "endMs": 1765540800000, + "live": false, + "nzBsaRatingString": "G", + "programme": { + "id": "mac_11863818", + "title": "Beat Bobby Flay", + "synopsis": "Alex Guarnaschelli and James Austin Johnson leave a lasting impression on Bobby Flay as he tries to beat chefs Stephanie Cmar and David Standridge." + } + }, + { + "id": "IBMS_55330889", + "startMs": 1765540800000, + "endMs": 1765543800000, + "live": false, + "nzBsaRatingString": "G", + "programme": { + "id": "mac_11633039", + "title": "Restaurant Impossible", + "synopsis": "At the request of former employees, Robert heads to Ellendale's in Nashville, TN. The restaurant is rundown and owner Julie's management style is ineffective. S12 E5" + } + }, + { + "id": "IBMS_55330891", + "startMs": 1765543800000, + "endMs": 1765546800000, + "live": false, + "nzBsaRatingString": "PG", + "programme": { + "id": "mac_11863819", + "title": "Salvage Hunters: The Restorers", + "synopsis": "Metalworker Ted Edley is asked to restore an obscure German football table from the 1950s. Upholsterer Ray Clarke reimagines a stylish 1980s desk chair." + } + }, + { + "id": "IBMS_55330893", + "startMs": 1765546800000, + "endMs": 1765548300000, + "live": false, + "nzBsaRatingString": "G", + "programme": { + "id": "mac_11863820", + "title": "House Hunters", + "synopsis": "A couple wants a nice home, but they can't agree on the price range. She wants a cheap house in the suburbs, but he wants to be closer to the city." + } + }, + { + "id": "IBMS_55330895", + "startMs": 1765548300000, + "endMs": 1765549800000, + "live": false, + "nzBsaRatingString": "PGC", + "programme": { + "id": "mac_11591324", + "title": "Border Security Australia", + "synopsis": "A passenger could hold the key to a major crime syndicate. Plus, is an elderly couple committing an innocent mistake? S3 E10" + } + }, + { + "id": "IBMS_55330897", + "startMs": 1765549800000, + "endMs": 1765551600000, + "live": false, + "nzBsaRatingString": "PGC", + "programme": { + "id": "mac_11583484", + "title": "Border Security Australia", + "synopsis": "Go behind-the-scenes of our Immigration Customs and Quarantine departments. S2 E11" + } + }, + { + "id": "IBMS_55330899", + "startMs": 1765551600000, + "endMs": 1765554600000, + "live": false, + "nzBsaRatingString": "G", + "programme": { + "id": "mac_11626302", + "title": "Tool Club", + "synopsis": "Michael Underwood hosts the unique show that gives people the skills and confidence to tackle DIY challenges themselves, with the help of experts Max McMurdo, Julia Miller-Osborn & Jess Grizzle. S1 E3" + } + }, + { + "id": "IBMS_55330901", + "startMs": 1765554600000, + "endMs": 1765557600000, + "live": false, + "nzBsaRatingString": "MC", + "programme": { + "id": "mac_11863821", + "title": "The Bad Skin Clinic", + "synopsis": "David visits Dr. Emma about a large, growing lump on his back. Aria's transition from male to female is blighted by the beard growth on her face." + } + }, + { + "id": "IBMS_55330903", + "startMs": 1765557600000, + "endMs": 1765560900000, + "live": false, + "nzBsaRatingString": "PG", + "programme": { + "id": "mac_11863819", + "title": "Salvage Hunters: The Restorers", + "synopsis": "Metalworker Ted Edley is asked to restore an obscure German football table from the 1950s. Upholsterer Ray Clarke reimagines a stylish 1980s desk chair." + } + }, + { + "id": "IBMS_55330905", + "startMs": 1765560900000, + "endMs": 1765562400000, + "live": false, + "nzBsaRatingString": "G", + "programme": { + "id": "mac_11863820", + "title": "House Hunters", + "synopsis": "A couple wants a nice home, but they can't agree on the price range. She wants a cheap house in the suburbs, but he wants to be closer to the city." + } + }, + { + "id": "IBMS_55330907", + "startMs": 1765562400000, + "endMs": 1765564200000, + "live": false, + "nzBsaRatingString": "G", + "programme": { + "id": "mac_11863818", + "title": "Beat Bobby Flay", + "synopsis": "Alex Guarnaschelli and James Austin Johnson leave a lasting impression on Bobby Flay as he tries to beat chefs Stephanie Cmar and David Standridge." + } + }, + { + "id": "IBMS_55330909", + "startMs": 1765564200000, + "endMs": 1765567800000, + "live": false, + "nzBsaRatingString": "PG", + "programme": { + "id": "mac_11604497", + "title": "Mysteries At The Museum", + "synopsis": "Don Wildman investigates how a school bus became ensnared in a heinous crime and examines a ball of twine that played a role in a deadly accident. S2 E21" + } + }, + { + "id": "IBMS_55330911", + "startMs": 1765567800000, + "endMs": 1765571400000, + "live": false, + "nzBsaRatingString": "G", + "programme": { + "id": "mac_11633039", + "title": "Restaurant Impossible", + "synopsis": "At the request of former employees, Robert heads to Ellendale's in Nashville, TN. The restaurant is rundown and owner Julie's management style is ineffective. S12 E5" + } + }, + { + "id": "IBMS_55330913", + "startMs": 1765571400000, + "endMs": 1765575000000, + "live": false, + "nzBsaRatingString": "PG", + "programme": { + "id": "mac_11863819", + "title": "Salvage Hunters: The Restorers", + "synopsis": "Metalworker Ted Edley is asked to restore an obscure German football table from the 1950s. Upholsterer Ray Clarke reimagines a stylish 1980s desk chair." + } + }, + { + "id": "IBMS_55330915", + "startMs": 1765575000000, + "endMs": 1765578600000, + "live": false, + "nzBsaRatingString": "PG", + "programme": { + "id": "mac_11604497", + "title": "Mysteries At The Museum", + "synopsis": "Don Wildman investigates how a school bus became ensnared in a heinous crime and examines a ball of twine that played a role in a deadly accident. S2 E21" + } + }, + { + "id": "IBMS_55330917", + "startMs": 1765578600000, + "endMs": 1765580400000, + "live": false, + "nzBsaRatingString": "PGC", + "programme": { + "id": "mac_11591324", + "title": "Border Security Australia", + "synopsis": "A passenger could hold the key to a major crime syndicate. Plus, is an elderly couple committing an innocent mistake? S3 E10" + } + }, + { + "id": "IBMS_55330919", + "startMs": 1765580400000, + "endMs": 1765582200000, + "live": false, + "nzBsaRatingString": "PGC", + "programme": { + "id": "mac_11583484", + "title": "Border Security Australia", + "synopsis": "Go behind-the-scenes of our Immigration Customs and Quarantine departments. S2 E11" + } + }, + { + "id": "IBMS_55330921", + "startMs": 1765582200000, + "endMs": 1765585800000, + "live": false, + "nzBsaRatingString": "G", + "programme": { + "id": "mac_11626302", + "title": "Tool Club", + "synopsis": "Michael Underwood hosts the unique show that gives people the skills and confidence to tackle DIY challenges themselves, with the help of experts Max McMurdo, Julia Miller-Osborn & Jess Grizzle. S1 E3" + } + }, + { + "id": "IBMS_55330923", + "startMs": 1765585800000, + "endMs": 1765589400000, + "live": false, + "nzBsaRatingString": "PG", + "programme": { + "id": "mac_11604497", + "title": "Mysteries At The Museum", + "synopsis": "Don Wildman investigates how a school bus became ensnared in a heinous crime and examines a ball of twine that played a role in a deadly accident. S2 E21" + } + }, + { + "id": "IBMS_55330925", + "startMs": 1765589400000, + "endMs": 1765593000000, + "live": false, + "nzBsaRatingString": "PG", + "programme": { + "id": "mac_11863819", + "title": "Salvage Hunters: The Restorers", + "synopsis": "Metalworker Ted Edley is asked to restore an obscure German football table from the 1950s. Upholsterer Ray Clarke reimagines a stylish 1980s desk chair." + } + }, + { + "id": "IBMS_55330927", + "startMs": 1765593000000, + "endMs": 1765594800000, + "live": false, + "nzBsaRatingString": "G", + "programme": { + "id": "mac_11863820", + "title": "House Hunters", + "synopsis": "A couple wants a nice home, but they can't agree on the price range. She wants a cheap house in the suburbs, but he wants to be closer to the city." + } + }, + { + "id": "IBMS_55330929", + "startMs": 1765594800000, + "endMs": 1765596600000, + "live": false, + "nzBsaRatingString": "PGC", + "programme": { + "id": "mac_11591324", + "title": "Border Security Australia", + "synopsis": "A passenger could hold the key to a major crime syndicate. Plus, is an elderly couple committing an innocent mistake? S3 E10" + } + }, + { + "id": "IBMS_55330931", + "startMs": 1765596600000, + "endMs": 1765600200000, + "live": false, + "nzBsaRatingString": "G", + "programme": { + "id": "mac_11633045", + "title": "Restaurant Impossible", + "synopsis": "Robert Irvine heads to New Kensington, Pennsylvania, to ambush the owner of Stella's Dine-Inn Restaurant after her daughter witnesses out-of-control fighting between her mother and brother. S12 E6" + } + }, + { + "id": "IBMS_55330933", + "startMs": 1765600200000, + "endMs": 1765602000000, + "live": false, + "nzBsaRatingString": "G", + "programme": { + "id": "mac_11863822", + "title": "Beat Bobby Flay", + "synopsis": "Scott Conant and journalist Kaitlan Collins hope to report a loss by enlisting judges Hugh Mangum and Katie Pickens to take Bobby down." + } + }, + { + "id": "IBMS_55330935", + "startMs": 1765602000000, + "endMs": 1765605600000, + "live": false, + "nzBsaRatingString": "PG", + "programme": { + "id": "mac_11606846", + "title": "Mysteries At The Museum", + "synopsis": "Don Wildman investigates a cross tied to a notorious paranormal event and inspects a cigar box linked to the 20th century's greatest fictional secret agent. S2 E22" + } + }, + { + "id": "IBMS_55330937", + "startMs": 1765605600000, + "endMs": 1765609200000, + "live": false, + "nzBsaRatingString": "PG", + "programme": { + "id": "mac_11863823", + "title": "Salvage Hunters: Classic Cars", + "synopsis": "A rare half-built Land Rover Series-2a gives Drew the chance to create his dream Safari 'Landie'. With accessories no longer available, the artisans step in." + } + }, + { + "id": "IBMS_55330939", + "startMs": 1765609200000, + "endMs": 1765611000000, + "live": false, + "nzBsaRatingString": "PG", + "programme": { + "id": "mac_11863824", + "title": "Three Men Four Wheels", + "synopsis": "Marino visits one of Britain's best private car collections to see an Aston Martin Ulster. Will Drew and Andy appreciate this beautiful pre-war endurance racer?" + } + }, + { + "id": "IBMS_55330941", + "startMs": 1765611000000, + "endMs": 1765614600000, + "live": false, + "nzBsaRatingString": "PG", + "programme": { + "id": "mac_11863825", + "title": "Ant Anstead: Born Mechanic", + "synopsis": "Ant has found an iconic VW Campervan that's been abandoned mid-restoration. The interior needs a full refit, plus a suspension overhaul." + } + }, + { + "id": "IBMS_55330943", + "startMs": 1765614600000, + "endMs": 1765618200000, + "live": false, + "nzBsaRatingString": "M", + "programme": { + "id": "mac_11863826", + "title": "Top Guns: Inside The Raf", + "synopsis": "Jet pilot Ben faces a life-or-death decision over Syria. And RAF Lossiemouth's station warrant officer prepares for one of the biggest events on the military calendar." + } + }, + { + "id": "IBMS_55330945", + "startMs": 1765618200000, + "endMs": 1765621800000, + "live": false, + "nzBsaRatingString": "PG", + "programme": { + "id": "mac_11863827", + "title": "The Big Clean", + "synopsis": "Al is brought to tears by the state of an elderly woman's flat. Plus, Jo must overcome her fear of birds to help a retired couple declutter their home." + } + }, + { + "id": "IBMS_55330947", + "startMs": 1765621800000, + "endMs": 1765625400000, + "live": false, + "nzBsaRatingString": "PG", + "programme": { + "id": "mac_11606846", + "title": "Mysteries At The Museum", + "synopsis": "Don Wildman investigates a cross tied to a notorious paranormal event and inspects a cigar box linked to the 20th century's greatest fictional secret agent. S2 E22" + } + } + ] + } + }, + { + "id": "0079", + "title": "Bravo +1", + "number": 512, + "tileImage": { + "uri": "https://images.skyone.co.nz/contentful/dcojl03mw8gy/1ESnVvdBHXddBQ1QYWiNpJ/8aadf8a72bc578efe3bcda925d5d281e/bravo__1.png" + }, + "slotsForDay": { + "slots": [ + { + "id": "IBMS_55332091", + "startMs": 1765534200000, + "endMs": 1765537800000, + "live": false, + "nzBsaRatingString": "MVC", + "programme": { + "id": "mac_11863896", + "title": "Snapped", + "synopsis": "When a man is found dead at a secluded rest stop, Ohio police suspect foul play within his family. As evidence builds, tensions rise, and reveal the work of a criminal mastermind." + } + }, + { + "id": "IBMS_55332093", + "startMs": 1765537800000, + "endMs": 1765541400000, + "live": false, + "nzBsaRatingString": "MVC", + "programme": { + "id": "mac_11811650", + "title": "Snapped", + "synopsis": "When an elderly woman finds her husband murdered in bed, police race to find the cold-blooded killer." + } + }, + { + "id": "IBMS_55332095", + "startMs": 1765541400000, + "endMs": 1765545000000, + "live": false, + "nzBsaRatingString": "MVC", + "programme": { + "id": "mac_11663669", + "title": "New York Homicide", + "synopsis": "Talented performer Jennifer Stahl and four friends are discovered shot execution-style above New York's iconic Carnegie Deli in the theater district." + } + }, + { + "id": "IBMS_55332097", + "startMs": 1765545000000, + "endMs": 1765548000000, + "live": false, + "nzBsaRatingString": null, + "programme": { + "id": "mac_11021233", + "title": "Infomercials", + "synopsis": "Infomercials" + } + }, + { + "id": "IBMS_55332099", + "startMs": 1765548000000, + "endMs": 1765562400000, + "live": false, + "nzBsaRatingString": null, + "programme": { + "id": "mac_11021233", + "title": "Infomercials", + "synopsis": "Infomercials" + } + }, + { + "id": "IBMS_55332101", + "startMs": 1765562400000, + "endMs": 1765569600000, + "live": false, + "nzBsaRatingString": null, + "programme": { + "id": "mac_11021233", + "title": "Infomercials", + "synopsis": "Infomercials" + } + }, + { + "id": "IBMS_55332103", + "startMs": 1765569600000, + "endMs": 1765576800000, + "live": false, + "nzBsaRatingString": null, + "programme": { + "id": "mac_11021233", + "title": "Infomercials", + "synopsis": "Infomercials" + } + }, + { + "id": "IBMS_55332105", + "startMs": 1765576800000, + "endMs": 1765580100000, + "live": false, + "nzBsaRatingString": "PGC", + "programme": { + "id": "mac_11732689", + "title": "Million Dollar Listing: NY", + "synopsis": "Nev, Max, and friends revisit the most dramatic, hilarious, unbelievable, WTF moments in Catfish history." + } + }, + { + "id": "IBMS_55332107", + "startMs": 1765580100000, + "endMs": 1765583400000, + "live": false, + "nzBsaRatingString": "PGC", + "programme": { + "id": "mac_11732679", + "title": "Million Dollar Listing: NY", + "synopsis": "The stress of Michael blowing his first major deal doesn't ease up with his new Park Avenue listing, whichÿresults in him hiring masseuses for his open house.ÿS1 Ep2" + } + }, + { + "id": "IBMS_55332109", + "startMs": 1765583400000, + "endMs": 1765587000000, + "live": false, + "nzBsaRatingString": "PG", + "programme": { + "id": "mac_11860151", + "title": "Celebrity Family Feud", + "synopsis": "Terry Bradshaw faces off against Dee Snider; members of OneRepublic face off with the cast of 'Mayans M.C.'" + } + }, + { + "id": "IBMS_55332111", + "startMs": 1765587000000, + "endMs": 1765590600000, + "live": false, + "nzBsaRatingString": "PGLC", + "programme": { + "id": "mac_11215653", + "title": "Keeping Up With The Kardashians", + "synopsis": "Kim is shocked to learn about the rising rate of homelessness in LA and sets out to bring awareness to the growing crisis." + } + }, + { + "id": "IBMS_55332113", + "startMs": 1765590600000, + "endMs": 1765594200000, + "live": false, + "nzBsaRatingString": "PGLC", + "programme": { + "id": "mac_11217358", + "title": "Keeping Up With The Kardashians", + "synopsis": "Khloe and Kendall consider getting guns for protection, Kris imposes strict guidelines for her mom to follow in her new condo, and Kim can't handle her boisterous new puppy." + } + }, + { + "id": "IBMS_55332115", + "startMs": 1765594200000, + "endMs": 1765597500000, + "live": false, + "nzBsaRatingString": "PG", + "programme": { + "id": "mac_11633962", + "title": "Generation Dating", + "synopsis": "71 year old MJ and 23 year old Declan are nearly half a century apart. Before they can find dates for each other, they'll have to bridge the generation gap and learn what makes each other tick." + } + }, + { + "id": "IBMS_55332117", + "startMs": 1765597500000, + "endMs": 1765600800000, + "live": false, + "nzBsaRatingString": "PGC", + "programme": { + "id": "mac_11288643", + "title": "Hollywood Medium", + "synopsis": "Red carpet host Giuliana Rancic is brought to tears when Tyler relays shocking messages not only for Giuliana and her husband, but her best friend as well." + } + }, + { + "id": "IBMS_55332119", + "startMs": 1765600800000, + "endMs": 1765602600000, + "live": false, + "nzBsaRatingString": "PGC", + "programme": { + "id": "mac_11840132", + "title": "Highway Patrol", + "synopsis": "A roadside rumble erupts when a fired up driver with no licence and the wrong plates tries to take on an officer. Officers try to determine the cause of a" + } + }, + { + "id": "IBMS_55332121", + "startMs": 1765602600000, + "endMs": 1765604400000, + "live": false, + "nzBsaRatingString": "PGC", + "programme": { + "id": "mac_11840134", + "title": "Highway Patrol", + "synopsis": "Officers deal with a hoon doing burnouts in an industrial area and a drunk driver with a burning tyre. Another officer clocks a driver going twice the speed in a school zone." + } + }, + { + "id": "IBMS_55332123", + "startMs": 1765604400000, + "endMs": 1765607700000, + "live": false, + "nzBsaRatingString": "PGSC", + "programme": { + "id": "mac_11860153", + "title": "Catfish", + "synopsis": "Hosted by Nev Schulman and Max Joseph, the third installment of Catfish: The Untold Stories, features three shocking but true tales from the past as told by the people who actually experienced them." + } + }, + { + "id": "IBMS_55332125", + "startMs": 1765607700000, + "endMs": 1765611000000, + "live": false, + "nzBsaRatingString": "PG", + "programme": { + "id": "mac_11863897", + "title": "Hoarders", + "synopsis": "Bruce is very thoughtful and always keeps things with the idea that he'll give it to someone he knows. Now Bruce has collected a massive amount of tools and clutter over the years." + } + }, + { + "id": "IBMS_55332127", + "startMs": 1765611000000, + "endMs": 1765614600000, + "live": false, + "nzBsaRatingString": "MSLC", + "programme": { + "id": "mac_11415994", + "title": "Tattoo Fixers", + "synopsis": "Pash takes on Rebecca's pain in the neck. Sketch tackles Layton's dodgy design, and loses Aaron's offensive ink. Alice takes pity on Teresa and her kitty." + } + }, + { + "id": "IBMS_55332129", + "startMs": 1765614600000, + "endMs": 1765618200000, + "live": false, + "nzBsaRatingString": "MSLC", + "programme": { + "id": "mac_11416293", + "title": "Tattoo Fixers", + "synopsis": "Pash turns Aaron into a sex bomb with a portrait of his idol Tom Jones. Alice kicks Bailee's terrible tattoo into touch. Uzzi helps naughty Nanny Dawn." + } + }, + { + "id": "IBMS_55332131", + "startMs": 1765618200000, + "endMs": 1765621800000, + "live": false, + "nzBsaRatingString": "M", + "programme": { + "id": "mac_11863898", + "title": "Southern Hospitality" + } + }, + { + "id": "IBMS_55332133", + "startMs": 1765621800000, + "endMs": 1765625400000, + "live": false, + "nzBsaRatingString": "MC", + "programme": { + "id": "mac_11863889", + "title": "Mayday: Air Disaster", + "synopsis": "After Air Florida flight 90 crashes on take-off from D.C., it is not easy to find the cause of the accident. It turns out eventually that this was no accident but simple and deadly oversight." + } + } + ] + } + } + ] + } + } + } } \ No newline at end of file diff --git a/sites/sky.co.nz/sky.co.nz.channels.xml b/sites/sky.co.nz/sky.co.nz.channels.xml index f63d0cbd5..c71bc639a 100644 --- a/sites/sky.co.nz/sky.co.nz.channels.xml +++ b/sites/sky.co.nz/sky.co.nz.channels.xml @@ -1,42 +1,67 @@ - One - TV2 - Three - Prime TV - Sky 5 - Vibe + BBC First + SKY Sport Popup 1 + SKY Sport Popup 2 + Al Jazeera + Animal Planet + BBC Earth + BBC World News UKTV - JONES! - SKY BOX SETS - SoHo - Comedy Central + BRAVO Plus 1 BRAVO + Cartoon Network + CBeebies + CGTN + CGTN + CNBC + CNN International + Colors + Comedy Central + Country TV + Real Crime + Daystar TV Network + Discovery Channel + Discovery Turbo + eden +1 eden - MTV - TLC - Living Channel - Investigation Discovery - Maori Television - SKY ARTS + ESPN2 + ESPN + FACE TV + Firstlight + Fox News HGTV - MTV Hits - DUKE - Rush - The Shopping Channel - SKY Movies Premiere - SKY Movies Comedy - SKY Movies Action - SKY Movies Greats - SKY Movies Classic - SKY Movies Collection - SKY Movies Family + Real History + Hope Channel + Investigation Discovery + Jones! + Living Channel + MTV + MTV Music + Nick + nick jr. + Nick Music + Parliament TV Rialto + Rush + SBN + Shine TV + Sky 5 + SKY Arena + Arts Channel SKY Box Office SKY Box Office 041 SKY Box Office 042 SKY Box Office 043 - SKY Sport Select + Action Movies + Classic Movies + Comedy Movies + Family Movies + Great Movies + Premiere Movies + SKY NEWS + Sky Open +1 + Sky Open SKY Sport 1 SKY Sport 2 SKY Sport 3 @@ -46,69 +71,24 @@ SKY Sport 7 SKY Sport 8 SKY Sport 9 - ESPN - ESPN2 + SKY Sport Select + HBO + Star Gold + Star Plus Hindi TAB Trackside 1 TAB Trackside 2 - SKY Arena - Discovery Channel - Crime + Investigation - National Geographic - History - BBC Earth - Discovery Turbo - Animal Planet - Country TV Te Reo - Face TV - SKY NEWS - Parliament TV - CNN International - Fox News - BBC World News - Al Jazeera - CNBC - Nick Music - Nick - Cartoon Network - CBeebies - nick jr. - Star Plus Hindi - Colors - Star Gold The Filipino Channel - Shine TV - Daystar TV Network - SBN - Hope Channel - Firstlight - JONES! too + ThreePlus1 + Three + TLC + One Plus 1 + One + TV2 + 1 + TV2 + DukePlus1 + DUKE UniversalTV - CGTN Documentary - CGTN - One +1 - TV2 +1 - Three +1 - DUKE +1 - eden +1 - BRAVO +1 - Prime +1 - SKY Sport Popup 1 - SKY Sport Popup 2 - Rod Laver Arena - Margaret Court Arena - John Cain Arena - Kia Arena - 1573 Arena - Court 3 - Court 5 - Court 6 - Court 7 - Court 8 - Court 12 - Court 13 - Court 14 - Court 15 - Court 16 - Court 17 + Vibe + Maori Television diff --git a/sites/sky.co.nz/sky.co.nz.config.js b/sites/sky.co.nz/sky.co.nz.config.js index 117fbd9ff..232f6a455 100644 --- a/sites/sky.co.nz/sky.co.nz.config.js +++ b/sites/sky.co.nz/sky.co.nz.config.js @@ -1,22 +1,76 @@ const axios = require('axios') const dayjs = require('dayjs') +const utc = require('dayjs/plugin/utc') +const tz = require('dayjs/plugin/timezone') +const timezone = 'Pacific/Auckland' + +dayjs.extend(utc) +dayjs.extend(tz) + module.exports = { site: 'sky.co.nz', days: 2, - url({ date, channel }) { - return `https://web-epg.sky.co.nz/prod/epgs/v1?channelNumber=${ - channel.site_id - }&start=${date.valueOf()}&end=${date.add(1, 'day').valueOf()}&limit=20000` + url: 'https://api.skyone.co.nz/exp/graph', + request: { + method: 'POST', + headers: { + 'Content-Type': 'application/json' + }, + data({ date } = {}) { + return ({ + query: `{ + experience(appId: TV_GUIDE_WEB) { + channelGroup(id: "4b7LA20J4iHaThwky9iVqn") { + id + title + channels { + ... on LinearChannel { + id + title + number + tileImage { + uri + } + slotsForDay(date: "${dayjs.tz(date || dayjs(), timezone).format('YYYY-MM-DD')}") { + slots { + id + startMs + endMs + live + nzBsaRatingString + programme { + ... on Episode { + id + title + synopsis + } + ... on Movie { + id + title + } + ... on PayPerViewEventProgram { + id + title + } + } + } + } + } + } + } + } + }` + }) + } }, - parser({ content }) { + parser({ content, channel }) { let programs = [] - const items = parseItems(content) + const items = parseItems(content, channel) items.forEach(item => { programs.push({ title: item.title, description: item.synopsis, - category: item.genres, rating: parseRating(item), start: dayjs(parseInt(item.start)), stop: dayjs(parseInt(item.end)) @@ -31,19 +85,41 @@ module.exports = { .then(r => r.data) .catch(console.log) - return data.channels.map(item => { + return data.map(item => { return { lang: 'en', site_id: parseInt(item.number).toString(), - name: item.name + name: item.sort } }) } } -function parseItems(content) { - const data = JSON.parse(content) - return data && data.events && Array.isArray(data.events) ? data.events : [] +function parseItems(content, channel) { + if (!channel?.site_id) return [] + + let data + try { + data = JSON.parse(content) + } catch { + return [] + } + + const channels = data?.data?.experience?.channelGroup?.channels + + if (!Array.isArray(channels)) return [] + + const channelData = channels.find(i => i.number === parseInt(channel.site_id)) + + if (!channelData?.slotsForDay?.slots) return [] + + return channelData.slotsForDay.slots.map(slot => ({ + title: slot.programme.title || null, + synopsis: slot.programme.synopsis || null, + rating: slot.nzBsaRatingString || null, + start: slot.startMs, + end: slot.endMs + })) } function parseRating(item) { diff --git a/sites/sky.co.nz/sky.co.nz.test.js b/sites/sky.co.nz/sky.co.nz.test.js index 25b35dea0..d0151dc9f 100644 --- a/sites/sky.co.nz/sky.co.nz.test.js +++ b/sites/sky.co.nz/sky.co.nz.test.js @@ -1,60 +1,74 @@ -const { parser, url } = require('./sky.co.nz.config.js') +const { parser, url, request } = require('./sky.co.nz.config.js') const fs = require('fs') const path = require('path') const dayjs = require('dayjs') const utc = require('dayjs/plugin/utc') +const tz = require('dayjs/plugin/timezone') dayjs.extend(utc) +dayjs.extend(tz) -const date = dayjs.utc('2023-01-21', 'YYYY-MM-DD').startOf('d') const channel = { - site_id: '36', - xmltv_id: 'SkyMoviesFamily.nz' + site_id: '1', + xmltv_id: 'TVNZ 1' } it('can generate valid url', () => { - expect(url({ date, channel })).toBe( - 'https://web-epg.sky.co.nz/prod/epgs/v1?channelNumber=36&start=1674259200000&end=1674345600000&limit=20000' - ) + expect(url).toBe('https://api.skyone.co.nz/exp/graph') +}) + +it('can generate valid request method', () => { + expect(request.method).toBe('POST') }) it('can parse response', () => { const content = fs.readFileSync(path.resolve(__dirname, '__data__/content.json')) - const result = parser({ content }).map(p => { + const result = parser({ content, channel }).map(p => { p.start = p.start.toJSON() p.stop = p.stop.toJSON() return p }) expect(result[0]).toMatchObject({ - title: 'Sing 2', + title: 'Hard Quiz', description: - "Animated: Buster Moon and his friends must persuade the world's most reclusive rock star to help launch their most dazzling extravaganza yet. Voices Of: Matthew McConaughey, Reese Witherspoon (2021)", - category: ['Animated'], + "What do King Henry VII, Shaquille O'Neal, dinosaurs and The Adventures of Priscilla, Queen of the Desert have in common? They're all expert topics on tonight's #HardQuiz!", rating: { system: 'OFLC', value: 'PG' }, - start: '2023-01-20T23:41:00.000Z', - stop: '2023-01-21T01:28:00.000Z' + start: '2025-12-12T10:40:00.000Z', + stop: '2025-12-12T11:15:00.000Z' }) - expect(result[5]).toMatchObject({ - title: 'Harry Potter and the Goblet of Fire', + expect(result[33]).toMatchObject({ + title: 'Obituary', description: - 'Adventure: Harry is selected to represent Hogwarts at a legendary and dangerous wizardry competition between three schools of magic. Stars: Daniel Radcliffe, Rupert Grint (2005)', - category: ['Action/Adventure'], - rating: { system: 'OFLC', value: 'M-V' }, - start: '2023-01-21T07:42:00.000Z', - stop: '2023-01-21T10:13:00.000Z' + 'Season Finale: When Ward reveals what really happened the night Maria Riedle was killed, Elvira sets about framing Hughie for the crime. S1 E6', + rating: { system: 'OFLC', value: '16' }, + start: '2025-12-13T10:55:00.000Z', + stop: '2025-12-13T11:50:00.000Z' }) }) +// Not easy to mock this case, as it's the same repeated message (for all channels ?) +// with the time space in the message. Only what doesn't change is provided, but will still pass the test out. it('can handle empty guide', () => { - const result = parser( - { - content: `{ - "code": "DATE_FORMAT_ERROR", - "description": "DateFormat error", - "message": "Unparseable date: x" - }` - }, + const result = parser({ + content: `{ + "locations": [ + { + "line": 14, + "column": 11 + } + ], + "path": [ + "experience", + "channelGroup", + "channels", + 0, + "slotsForDay" + ], + "extensions": { + "classification": "DataFetchingException" + } + }`, channel - ) + }) expect(result).toMatchObject([]) }) diff --git a/sites/sky.com/sky.com.channels.xml b/sites/sky.com/sky.com.channels.xml index 8395408aa..c5bf5e431 100644 --- a/sites/sky.com/sky.com.channels.xml +++ b/sites/sky.com/sky.com.channels.xml @@ -1,205 +1,25 @@ - MUTV HD - QTV Religious - SkySp PL HD - PBC - Zee TV HD - That's TV - Cruise1st.tv - CNN HD + Really+1 Sky Intro - Al Jazeera HD - Virgin One+1 - New Vision TV - Climax - XXX Girl Girl - Rewind TV - TVX 40+ - 5ACTION - Panjab TV - Gems TV HD - ITV1 HD - ITV1 HD - ITV1 HD - Virgin Two HD - Sky Crime - ITV1 HD - ITV1 HD - ITV1 HD - BLAZE - Arirang TV HD - HUM Masala - Film4 - Bloomberg HD - QVC HD - U&Drama+1 + SkySpBoxOffHD + GTC Punjabi Heart 90s - WION HD - CNBC HD - MstHveIdeasHD - ColorsGujarati - BBC One NI HD - TNTSBoxOff2HD - Sanskar - Ideal World HD + 55250 Sky Intro - NOW 90s & 00s - Islam Bangla - ColorsCineplex - TJC HD - Sky Intro - QVC Style HD - TNTSports1 HD - FRANCE 24 HD - SkyDocumntrs - QUEST HD - QUEST HD - Great!Christmas - That's TV 3 - BBC Two NI HD - SkyDocmntrsHD - BBCScotlandHD - PCNE Chinese HD - TRUE CRIME - Sky Comedy HD - Sky Comedy - Sky Kids HD Virgin Radio - RTÉ2+1 - Sky Nature HD - STV HD - STV HD - HobbyMakerHD - STV HD - Sky Comedy - Zee Punjabi - DM News English - Dunamis TV - Sky Nature - GB News HD - SkyAnimationHD - E4 Extra - Channel 4 HD + Disney Jr HD + Disney+CineHD LBC News - Court TV - ITV1 HD - ITV1 HD - TNTSBoxOffHD - Sky Crime HD - Channel 4 HD - ITV1 HD - ITV1 HD - ITV1 HD - That's Rock - That's Oldies - Travelxp - LoveWorld HD - Sky Arts - SkyDocumntrs - TRUE CRIME X - Sky Nature - Tiny Pop - Deen TV - Channel 4 HD - Channel 4 HD - Channel 4 HD - Channel 4 HD - RTÉjr - Oireachtas TV - Pitaara + Sky Arts RTÉ Radio 1 RTÉ 2FM RTÉ R na G RTÉ Lyric fm - RTÉ2 HD - SkyShowcaseHD - Sky Showcase - SkyShowcase+1 - SkyShowcaseHD - Sky Showcase - SkySp Tennis HD - SkySp Tennis - Tiny Pop+1 - Premier 1 HD - Premier 2 HD - SkySp Cricket - That's Melody - SkySp F1 - SkySpMainEv - That's TV 2 - SkySp PL - SkySp News - Virgin Four HD - Great! Mystery - SkySp News - Great! TV - SkySp Golf - SkySp NFL - Disc.Sci+1 - Animal Plnt+1 - Discovery - Cartoonito - COLORS HD - Sky Max - Sky Max - Sky News - Sky News - Sky Atlantic - Sky Atlantic+1 - Sky Atlantic - Crime+Inv - Film4 - E4 - Film4+1 - Premier 1 HD - Premier 2 HD - E4 - Channel 4+1 - Channel 4+1 - Channel 4+1 - Channel 4+1 - Channel 4+1 - Sky Arts - E4 Extra - Utsav Plus - 5 - Nat Geo - ComedyXtra - NDTV World - Nat Geo+1 - Sky Mix HD - Sky Replay - Sky Replay - 5+1 - Nickelodeon+1 - Nickelodeon - Nat Geo Wild - NickSpongeBob - Chl Line-up - Nick Jr. - Cúla4 HD - DMAX+1 - Together - Sky History - Sky History2 BBC R Cymru 2 BBC R5L BBC R5SX - BBC RB 1 HD - BBC Two HD - CBBC HD - CBBC HD - BBC Three HD - BBC One NI HD - BBC One ScotHD - BBC One Wal HD BBC Three HD - BBC NEWS HD - BBC Four HD - CBeebies HD - CBeebies HD - BBC Four HD BBC R1 BBC R2 BBC R3 @@ -216,63 +36,6 @@ BBC R4 Extra BBC RnGàid BBC R London - Sky Witness - Challenge - Challenge - Sky Witness+1 - Sky Crime - S4C HD - HGTV - U&Eden - U&Alibi - U&Gold - U&Yesterday - U&Dave - U&Eden+1 - HGTV+1 - U&DaveJaVu - Really - Really - U&Alibi - U&Gold - U&Dave - Discovery - Animal Planet - Discovery+1 - TLC - Disc.Science - Disc.History - HGTV - Disc.Turbo - Quest Red - Quest Red - ID - ID - MTV - Sky Sci-Fi - Club MTV - MTV 90s - MTV 80s - ComedyCentral - MTV MUSIC - MTV - Nickelodeon - SONY TV - SONY MAX - Zee TV - Zee Cinema - U&Drama - U&Drama - U&Yesterday+1 - U&W+1 - U&W - U&Alibi+1 - U&Gold+1 - ComedyXtra - RTÉ News - RTÉ One+1 - RTÉ One HD - Virgin Three talkSPORT Gold Radio Radio X @@ -283,263 +46,491 @@ LBC Heart 80s Capital XTRA - BBC One Lon HD - BBC One Wst HD - BBC One WM HD - BBC One Y&L HD - BBC One EMidHD - BBC One EastHD - BBC One NW HD - BBC One SE HD - BBC One NE HD - BBC One Sth HD - Sky Crime HD - BBC One SW HD - BBC Two Wal HD - BBC One Yks HD - BBC One CI HD - BBC Two NI HD - BBC Parl HD BBC ALBA HD - 5 USA - 5STAR - 5STAR+1 - ITV Quiz HD - 5USA+1 - 5SELECT - SkySp Golf HD - Sky Witness HD - Sky Mix HD - ITV1 HD - ITV1 HD - U&Alibi HD - U&Dave HD - GOD Channel - TBN UK - Eman Channel - revelation - EWTN Catholic - TNT Sports 4 - NHK World HD - 4seven - MTA1 World HD - Islam Channel - AAJ TAK - E4+1 - More4+1 - More4 - TRUE CRIME - JewelleryMaker - Sangat - Nick Jr. - QVC Extra - More4 + Sky One HD Panjab Radio BFBS Radio SonLife - Babenation - MATV National - NOW 70s - High Street TV 3 - PoliticsPunjab Classic FM - High Street TV 1 - Food Network - Food Netwrk+1 - Aastha - TRUE CRIME+1 - LEGEND XTRA - Utsav Bharat - Utsav Gold - TRUE CRIME X - DMAX - Crime+Inv+1 - QUEST+1 - TNTSports1 HD - TNTSports2 HD - TNTSports3 HD - SONY SAB - TV Warehouse - Racing TV - Great!Christmas - BabyTV - Sikh Channel - TNT Sports 1 - TNT Sports 2 - NOW ROCK - ComedyCentral - Great! Action - Great! Mystery - COLORS - Noor TV - Great! Action+1 - NTD - POP - Great! Xmas+1 - Kanshi TV - Disc.History+1 - G! Mystery+1 - ComedyCent+1 - U&Dave HD - TLC HD - CHSTV - U&Alibi HD - MTV HD - SkySp F1 HD - SkySp+ - SkySp F'ball - LFCTV HD - Virgin One HD - IQRA Bangla - ColorsRishtey - SkySp F'ball HD - SkySp+ HD - SkySpMainEvHD - Discovery HD - SkySpMainEvHD - SkySp PL HD - Sky Action HD - Sky Greats HD - Sky Drama HD - Sky Sci-Fi HD - Sky Family HD - Sky Comedy HD - Halloween HD - SkyPremiereHD - SkySp NFL HD - NatGeoWild HD - SkySp Golf HD - Boomerang HD - Nat Geo HD - SkySp Racing HD - Sky Hits HD - TG4 HD - SkySp News HD - SkySp Racing HD - Nick Jr. HD - TNTSports4 HD - More4 HD - Film4 HD - SONY TV HD - SONY MAX HD - Utsav Gold HD - SkySp News HD - Sky News HD - Sky Atlantic HD - Sky News HD - STV HD - ComedyCentHD - 5 HD - Sky Max HD - Sky Thriller HD - Sky Arts HD - Sky Witness HD - NickelodeonHD - Sky Sci-Fi HD - Channel 4 HD - E4 HD - Cartoon Net HD - SkySpCricket HD - Sky HistoryHD - Crime+Inv HD - SkySp Mix HD - SkySp Mix - Best Direct - QVC Beauty - GEO TV WRN Europe EWTN Catholic - Xpanded TV - Television X - Adult Channel - babes&brazzers - POP+1 - ARY Digital - Great! TV - Sky Crime+1 - Sky Witness - Nick Jr. Too - Islam TV - Faith World TV - GEO News - Takbeer TV - Christmas24 - Christmas24+ - Madani Chnl - iON TV - LEGEND XTRA+1 - Clubland TV - NTV - NOW 80s - Quest Red+1 - DMAX - Euronews - LEGEND - SkyNewsArabia - TNT Sports 3 - Arise News - TRT World - Akaal Channel - Nick Jr+1 - London TV - Nick Jr. Too - HUM EUROPE - Islam Ch Urdu - TRT World HD - Disc.Turbo+1 - TalkingPictures - Racing TV HD - Utsav Plus HD - Great! TV+1 - Faith UK - TV One - SONY MAX 2 - TLC - TLC+1 - ID+1 - PBS America - Channels 24 - NickSpongeBob - DAYSTAR HD - Cartoon Netwrk - Boomerang+1 - Boomerang - CN+1 - Food Network - S4C - B4U Movies - High Street TV 2 - B4U Music - PTC PUNJABI - U&W - TVC News - ITV1+1 - ITV1+1 - STV - ITV2+1 - ITV3+1 - ITV4+1 - ITV1+1 - ITV1+1 - STV - ITV1 Wales HD - ITV1 HD - ITV1 HD - ITV1 HD - ITV1 HD - UTV HD - U&Gold HD - ITV2 HD - ITV3 HD - ITV4 HD - ATN - IQRA TV - QUEST - Ahlebait TV + LEGEND + Arise News My Sky My Account Program Your Remote Help and Support Reset your PIN Get Sky Products + 4seven + 5ACTION + 5SELECT + 5STAR+1 + 5STAR + 5USA+1 + 5 USA + TVX 40+ + Islam Bangla + AAJ TAK + Aastha + Adult Channel + Ahlebait TV + Akaal Channel + U&Alibi HD + U&Alibi + Al Jazeera HD + Animal Plnt+1 + Animal Planet + Arirang TV HD + ARY Digital + QTV Religious + ATN + B4U Movies + B4U Music + Babenation + babes&brazzers + BabyTV + BBC Four HD + BBC Four HD + BBC NEWS HD + BBC One CI HD + BBC One EastHD + BBC One EMidHD + BBC One Lon HD + BBC One NE HD + BBC One NI HD + BBC One NI HD + BBC One NW HD + BBC One ScotHD + BBC One SE HD + BBC One Sth HD + BBC One SW HD + BBC One Wal HD + BBC One Wst HD + BBC One WM HD + BBC One Yks HD + BBC One Y&L HD + BBC Parl HD + BBC RB 1 HD + BBCScotlandHD + BBC Three HD + BBC Two HD + BBC Two NI HD + BBC Two NI HD + BBC Two Wal HD + Best Direct + BLAZE + Bloomberg HD + Boomerang HD + Boomerang+1 + Boomerang + Cartoonito + Cartoon Net HD + CN+1 + Cartoon Netwrk + CBBC HD + CBBC HD + CBeebies HD + CBeebies HD + TRUE CRIME+1 + Challenge + Challenge + Channel 4 HD + Channel 4 HD + Channel 4+1 + Channel 4 HD + Channel 4 HD + Channel 4 HD + Channel 4 HD + Channel 4 HD + Channel 4+1 + Channel 4+1 + Channel 4+1 + Channel 4+1 + 5 HD + 5+1 + 5 + Channels 24 + CHSTV + Chl Line-up + Clubland TV + CNBC HD + CNN HD + COLORS + ColorsCineplex + ColorsGujarati + COLORS HD + ColorsRishtey + ComedyCentral + ComedyCentHD + ComedyCent+1 + ComedyCentral + ComedyXtra + ComedyXtra + Court TV + Crime+Inv HD + Crime+Inv+1 + Crime+Inv + Cruise1st.tv + Cúla4 HD + U&Dave HD + U&Dave + DAYSTAR HD + Deen TV + Discovery + Discovery + Discovery HD + Discovery+1 + Disc.History+1 + Disc.History + Disc.Science + Disc.Sci+1 + Disc.Turbo+1 + Disc.Turbo + DMAX + DMAX + DMAX+1 + DM News English + U&Drama + Dunamis TV + E4 + E4 HD + E4+1 + E4 + E4 Extra + E4 Extra + Eman Channel + Euronews + EWTN Catholic + Faith UK + Faith World TV + Film4 + Film4 HD + Film4+1 + Film4 + Food Network + Food Netwrk+1 + Food Network + FRANCE 24 HD + GB News HD + Gemporia HD + GEO News + GEO TV + GOD Channel + Great! Action+1 + Great! Action + Great! Mystery + Great! Mystery + G! Mystery+1 + Great! Action + Great! Romance + Great! Romance+1 + Great! TV + Great! TV+1 + Great! TV + HGTV + HGTV+1 + HGTV + High Street TV 1 + High Street TV 2 + Shop Unlimited + HobbyMakerHD + LEGEND XTRA+1 + LEGEND XTRA + HUM EUROPE + Ideal World HD + ID+1 + ID + ID + iON TV + IQRA Bangla + IQRA TV + Islam Channel + Islam Ch Urdu + Islam TV + ITV1 HD + ITV1 HD + ITV1 HD + ITV1 HD + ITV1 HD + ITV1 HD + ITV1 HD + ITV1 HD + ITV1 HD + ITV1 HD + ITV1 HD + ITV1 HD + ITV1 HD + ITV1 HD + ITV1 HD + ITV1 HD + ITV1+1 + ITV1+1 + ITV1+1 + ITV1+1 + ITV1 HD + ITV1 Wales HD + ITV2 HD + ITV2+1 + ITV3 HD + ITV3+1 + ITV4 HD + ITV4+1 + ITV Quiz HD + JewelleryMaker + Kanshi TV + NTD + LEGEND + LFCTV HD + London TV + LoveWorld HD + Madani Chnl + HUM News + APNA MA TV + More4 + More4 HD + More4+1 + More4 + Movies24 + Movies24+ + MTA1 World HD + MTV + MTV HD + MTV + MTV 90s + Club MTV + MstHveIdeasHD + MUTV HD + Nat Geo HD + Nat Geo+1 + Nat Geo + NatGeoWild HD + Nat Geo Wild + NDTV World + New Vision TV + NHK World HD + Nickelodeon + NickelodeonHD + Nickelodeon+1 + Nickelodeon + Nick Jr. + Nick Jr. HD + Nick Jr+1 + Nick Jr. + Nick Jr. Too + Nick Jr. Too + Nick Alvinnnn!!! + Nick Alvinnnn!!! + Noor TV + NOW 70s + NOW 80s + NOW 90s & 00s + NOW ROCK + NTV + Oireachtas TV + Panjab TV + PBC + PBS America + PCNE Chinese HD + Pitaara + PoliticsPunjab + Premier 1 HD + Premier 1 HD + Premier 2 HD + Premier 2 HD + PTC PUNJABI + QUEST HD + QUEST HD + QUEST+1 + Quest Red + Quest Red+1 + Quest Red + QVC HD + QVC Beauty + QVC Extra + QVC Style HD + Racing TV HD + TRUE CRIME X + Really + Really + revelation + Rewind TV + RTÉ2 HD + RTÉ2+1 + RTÉ KIDSjr + RTÉ News + RTÉ One HD + RTÉ One+1 + S4C HD + S4C + Sangat + Sanskar + Sikh Channel + Sky Arts HD + Sky Arts + Sky Atlantic + Sky Atlantic HD + Sky Atlantic+1 + Sky Atlantic + Sky Action HD + SkyAnimationHD + Sky Comedy HD + Sky Drama HD + Sky Family HD + Sky Greats HD + Sky Box Set HD + SkyPremiereHD + Sky ScFi/HorHD + Sky5*MoviesHD + Sky Thriller HD + Sky Comedy + Sky Comedy HD + Sky Comedy + Sky Crime HD + Sky Crime + Sky Crime HD + Sky Crime+1 + Sky Crime + SkyDocumntrs + SkyDocmntrsHD + SkyDocumntrs + Sky History2 + Sky HistoryHD + Sky History + Sky Kids HD + Sky One + Sky One HD + Sky One + Sky Mix HD + Sky Mix HD + Sky Nature HD + Sky Nature + Sky News HD + Sky News + Sky News HD + Sky News + SkyNewsArabia + Sky Sci-Fi HD + Sky Sci-Fi + SkyShowcaseHD + Sky Showcase + SkyShowcaseHD + SkyShowcase+1 + SkySp+ + SkySp+ HD + SkySp Cricket + SkySpCricket HD + SkySp F1 + SkySp F1 HD + SkySp F'ball + SkySp F'ball HD + SkySp Golf HD + SkySp Golf + SkySp Golf HD + SkySpMainEvHD + SkySpMainEv + SkySpMainEvHD + SkySp Mix HD + SkySp Mix + SkySp News HD + SkySp News + SkySp News HD + SkySp News + SkySp Action + SkySp ActionHD + SkySp PL HD + SkySp PL + SkySp PL HD + SkySp Racing HD + SkySp Racing HD + SkySp Tennis + SkySp Tennis HD + Sky Witness HD + Sky Witness + Sky Witness HD + Sky Witness+1 + Sky Witness + SONY TV HD + SONY TV + SONY MAX 2 + SONY MAX HD + SONY MAX + SONY SAB + STV HD + STV HD + STV HD + STV HD + STV + STV + Takbeer TV + TalkingPictures + TBN UK + Television X + TG4 HD + That's TV 3 + That's TV 2 + That's TV + Tiny Pop + TJC HD + TLC + TLC HD + TLC+1 + TLC + TNTSports1 HD + TNTSports1 HD + TNT Sports 1 + TNTSports2 HD + TNT Sports 2 + TNTSports3 HD + TNT Sports 3 + TNTSports4 HD + TNT Sports 4 + TNTSBoxOff2HD + TNTSBoxOffHD + Together + Travelxp + TRT World HD + TRT World + TRUE CRIME + TRUE CRIME + TRUE CRIME X + TVC News + TV One + TV Warehouse + U&Alibi HD + U&Alibi+1 + U&Alibi + U&Dave HD + U&Dave + U&DaveJaVu + U&Drama+1 + U&Drama + U&Eden+1 + U&Eden + U&Gold HD + U&Gold+1 + U&Gold + U&Gold + Utsav Bharat + Utsav Gold HD + Utsav Gold + Utsav Plus HD + Utsav Plus + UTV HD + U&W+1 + U&W + U&Yesterday+1 + U&Yesterday + Virgin Four HD + Virgin One HD + Virgin One+1 + Virgin Three + Virgin Two HD + U&W + Xpanded TV + XXX Girl Girl + Zee Cinema + Zee Punjabi + Zee TV HD + Zee TV diff --git a/sites/skyperfectv.co.jp/skyperfectv.co.jp.channels.xml b/sites/skyperfectv.co.jp/skyperfectv.co.jp.channels.xml index 92497b956..4275324a0 100644 --- a/sites/skyperfectv.co.jp/skyperfectv.co.jp.channels.xml +++ b/sites/skyperfectv.co.jp/skyperfectv.co.jp.channels.xml @@ -1,140 +1,202 @@ - WOWOW 4K - WOWOWプライム - WOWOWライブ - WOWOWシネマ - スターチャンネル - グリーンチャンネル + BS10プレミアム + フェニックステレビ(鳳凰衛視) + 囲碁・将棋チャンネル + ショップチャンネル + QVC(キューヴィーシー) + ジュエリー☆GSTV + セレクトショッピング + ベターライフチャンネル + 大人のイキヌキ!ヌーヴェルパラダイス + パチンコ★パチスロTV! + パチ・スロ サイトセブンTV + 釣りビジョンHD + 寄席チャンネル + 旅チャンネル + 鉄道チャンネル + SORA―お天気チャンネル― + BBCニュース + CNNj(国際ニュースCNN24時間チャンネル) + CNN U.S. + 中国テレビ★大富チャンネル + 日経CNBC + 日テレNEWS24 + TBS NEWS + スポーツライブ+ + スカチャン1 + スポーツライブ+ 2 + スカチャン5 + スカチャン6 + スカチャン7 + スカチャン8 + スカチャン9 + スカチャン10 + スカチャン11 + スカパー!プロモ599 + FIGHTING TV サムライ + ゴルフネットワーク + GAORA SPORTS + J SPORTS 1 + J SPORTS 2 + J SPORTS 4 + J SPORTS 3 + スカイA + 日テレジータス + 刺激ストロングチャンネル + テレ朝チャンネル1 + テレ朝チャンネル2 + フジテレビNEXT ライブ・プレミアム + フジテレビONE スポーツ・バラエティ + フジテレビTWO ドラマ・アニメ + TBSチャンネル1 最新ドラマ・音楽・映画 + TBSチャンネル2 名作ドラマ・スポーツ・アニメ + エンタメ~テレ☆シネドラバラエティ + 日テレプラス ドラマ・アニメ・音楽ライブ + ディズニー・チャンネル + WOWOWプライム + WOWOWライブ + WOWOWシネマ + BS10プレミアム + 衛星劇場 + 東映チャンネル + WOWOWプラス 映画・ドラマ・スポーツ・音楽 + ザ・シネマ + ムービープラス + 映画・チャンネルNECO + 日本映画専門チャンネル + V☆パラダイス + エキサイティング・グランプリ + ミュージック・エア + ミュージック・ジャパンTV + MTV + MUSIC ON! TV(エムオン!) + 音楽・ライブ! スペースシャワーTV + 歌謡ポップスチャンネル + ミュージック・グラフィティTV + スーパー!ドラマTV #海外ドラマ☆エンタメ + ミステリーチャンネル + アクションチャンネル + Dlife(ディーライフ) + 女性チャンネル♪LaLa TV + アジアドラマチックTV(アジドラ) + KBS World 韓流専門チャンネル + KNTV + Mnet + MONDO TV + ファミリー劇場 + ホームドラマチャンネル 韓流・時代劇・国内ドラマ + 時代劇専門チャンネル + アイドル専門チャンネルPigoo + チャンネル銀河 歴史ドラマ・サスペンス・日本のうた + ダンスチャンネル by エンタメ~テレ + アニメシアターX(AT-X) + カートゥーン ネットワーク 海外アニメ国内アニメ + キッズステーション テレビアニメ・劇場版・OVA + アニマックス + ディズニージュニア + ヒストリーチャンネル 日本・世界の歴史&エンタメ + ナショナル ジオグラフィック + ディスカバリーチャンネル + アニマルプラネット + 南関東地方競馬チャンネル + JLC680 + JLC681 + JLC682 + JLC683 + JLC684 + グリーンチャンネル + グリーンチャンネル2 + SPEEDチャンネル(競輪ライブ) 690 + SPEEDチャンネル(競輪ライブ) 691 + SPEEDチャンネル(競輪ライブ) 692 + SPEEDチャンネル(競輪ライブ) 693 + SPEEDチャンネル(競輪ライブ) 694 + SPEEDチャンネル(競輪ライブ) 695 + SPEEDチャンネル(競輪ライブ) 696 + 地方競馬ナイン 701 + 地方競馬ナイン 702 + 地方競馬ナイン 703 + kmpチャンネル + プレイボーイ チャンネル + レインボーチャンネル + ミッドナイト・ブルー + パラダイステレビ + チェリーボム + VENUS + バニラスカイチャンネル + エンタ!959 + Zaptv + ダイナマイトTV + AV王 + レッドチェリー + Splash + フラミンゴ + アクションチャンネル + アニマルプラネット アニマックス + アニメシアターX(AT-X) + BBCニュース + カートゥーン ネットワーク 海外アニメ国内アニメ + チャンネル銀河 歴史ドラマ・サスペンス・日本のうた + 映画・チャンネルNECO + CNNj(国際ニュースCNN24時間チャンネル) + ディスカバリーチャンネル + ディズニー・チャンネル + ディズニージュニア + Dlife(ディーライフ) + 衛星劇場 + エンタメ~テレ☆シネドラバラエティ + ファミリー劇場 + BS釣りビジョン + フジテレビNEXT ライブ・プレミアム + フジテレビONE スポーツ・バラエティ + フジテレビTWO ドラマ・アニメ + GAORA SPORTS + ゴルフネットワーク + グリーンチャンネル + ヒストリーチャンネル 日本・世界の歴史&エンタメ + ホームドラマチャンネル 韓流・時代劇・国内ドラマ + 囲碁・将棋チャンネル + 時代劇専門チャンネル J SPORTS 1 J SPORTS 2 J SPORTS 3 J SPORTS 4 - BS釣りビジョン - WOWOWプラス 映画・ドラマ・スポーツ・音楽 - 日本映画専門チャンネル - ディズニー・チャンネル - ショップチャンネル - QVC(キューヴィーシー) - 東映チャンネル - 衛星劇場 - 映画・チャンネルNECO - ザ・シネマ - ムービープラス - スカイA - GAORA SPORTS - 日テレジータス - ゴルフネットワーク - TAKARAZUKA SKY STAGE - 時代劇専門チャンネル - ファミリー劇場 - ホームドラマチャンネル 韓流・時代劇・国内ドラマ - MONDO TV - TBSチャンネル1 最新ドラマ・音楽・映画 - TBSチャンネル2 名作ドラマ・スポーツ・アニメ - テレ朝チャンネル1 - テレ朝チャンネル2 - 日テレプラス ドラマ・アニメ・音楽ライブ - エンタメ~テレ☆シネドラバラエティ - チャンネル銀河 歴史ドラマ・サスペンス・日本のうた - フジテレビONE スポーツ・バラエティ - フジテレビTWO ドラマ・アニメ - フジテレビNEXT ライブ・プレミアム - スーパー!ドラマTV #海外ドラマ☆エンタメ - アクションチャンネル - Dlife + 歌謡ポップスチャンネル + KBS World 韓流専門チャンネル + キッズステーション テレビアニメ・劇場版・OVA 女性チャンネル♪LaLa TV - ミステリーチャンネル - KBS World 韓流専門チャンネル Mnet - 100%ヒッツ!スペースシャワーTV プラス - 音楽・ライブ! スペースシャワーTV + MONDO TV + ムービープラス MTV ミュージック・エア MUSIC ON! TV(エムオン!) - 歌謡ポップスチャンネル - キッズステーション テレビアニメ・劇場版・OVA - カートゥーン ネットワーク 海外アニメ国内アニメ - アニメシアターX(AT-X) - ディズニージュニア - ディスカバリーチャンネル - アニマルプラネット - ヒストリーチャンネル 日本・世界の歴史&エンタメ + ミステリーチャンネル ナショナル ジオグラフィック + 日本映画専門チャンネル + 日テレプラス ドラマ・アニメ・音楽ライブ + 日テレジータス 日テレNEWS24 - TBS NEWS - BBCニュース - CNNj - 囲碁・将棋チャンネル + QVC(キューヴィーシー) + ショップチャンネル + スカイA + 音楽・ライブ! スペースシャワーTV + ミュージック・ジャパンTV スポーツライブ+ スカチャン1 - フェニックステレビ(鳳凰衛視) - ジュエリー☆GSTV - セレクトショッピング - ベターライフチャンネル - 大人のイキヌキ!ヌーヴェルパラダイス - パチンコ★パチスロTV! - パチ・スロ サイトセブンTV - 釣りビジョンHD - 寄席チャンネル - 旅チャンネル - 鉄道チャンネル - SORA―お天気チャンネル― - CNN U.S. - 中国テレビ★大富チャンネル - 日経CNBC - スポーツライブ+ 2 - スカチャン5 - スカチャン6 - スカチャン7 - スカチャン8 - スカチャン9 - スカチャン10 - スカチャン11 - スカチャン12 - スカチャン13 - スカチャン14 - スカパー!プロモ599 - FIGHTING TV サムライ - 刺激ストロングチャンネル - V☆パラダイス - エキサイティング・グランプリ - ミュージック・ジャパンTV - ミュージック・グラフィティTV - アジアドラマチックTV(アジドラ) - KNTV - アイドル専門チャンネルPigoo - ダンスチャンネル by エンタメ~テレ - 南関東地方競馬チャンネル - JLC680 - JLC681 - JLC682 - JLC683 - JLC684 - グリーンチャンネル2 - SPEEDチャンネル(競輪ライブ) 690 - SPEEDチャンネル(競輪ライブ) 691 - SPEEDチャンネル(競輪ライブ) 692 - SPEEDチャンネル(競輪ライブ) 693 - SPEEDチャンネル(競輪ライブ) 694 - スピードプラスワン695 - 地方競馬ナイン 701 - 地方競馬ナイン 702 - 地方競馬ナイン 703 - kmpチャンネル - プレイボーイ チャンネル - レインボーチャンネル - ミッドナイト・ブルー - パラダイステレビ - チェリーボム - VENUS - バニラスカイチャンネル - エンタ!959 - Zaptv - ダイナマイトTV - AV王 - レッドチェリー - Splash - フラミンゴ + スーパー!ドラマTV #海外ドラマ☆エンタメ + TAKARAZUKA SKY STAGE + TBSチャンネル1 最新ドラマ・音楽・映画 + TBSチャンネル2 名作ドラマ・スポーツ・アニメ + TBS NEWS + ザ・シネマ + 東映チャンネル + テレ朝チャンネル1 + テレ朝チャンネル2 + WOWOWシネマ + WOWOWライブ + WOWOWプラス 映画・ドラマ・スポーツ・音楽 + WOWOWプライム diff --git a/sites/skyperfectv.co.jp/skyperfectv.co.jp.config.js b/sites/skyperfectv.co.jp/skyperfectv.co.jp.config.js index 16ec8f7dd..a064ba55c 100644 --- a/sites/skyperfectv.co.jp/skyperfectv.co.jp.config.js +++ b/sites/skyperfectv.co.jp/skyperfectv.co.jp.config.js @@ -78,26 +78,44 @@ const exported = { return programs }, async channels() { + const normalizeText = str => (str || '').replace(/\s+/g, ' ').trim() + + const getChannelIdFromHref = href => { + const m = (href || '').match(/channel:([^/]+)\//i) + return m ? normalizeText(m[1]) : '' + } + const pageParser = (content, type) => { // type: "basic" | "premium" - // Returns an array of channel objects - const $ = cheerio.load(content) - const channels = [] + const map = new Map() - $('.p-channel').each((index, element) => { - const site_id = `${type}_${$(element).find('.p-channel__id').text()}` - const name = $(element).find('.p-channel__name').text() - channels.push({ site_id, name, lang: 'ja' }) + $('.p-channel').each((_, element) => { + const $el = $(element) + + const href = $el.find('a.p-channel__link').attr('href') || $el.find('a').first().attr('href') + const idFromDom = normalizeText($el.find('.p-channel__id').first().text()) + const id = idFromDom || getChannelIdFromHref(href) + + const name = normalizeText($el.find('.p-channel__name').first().text()) + + if (!id || !name) return + + const site_id = `${type}_${id}` + if (!map.has(site_id)) { + map.set(site_id, { site_id, name, lang: 'ja' }) + } }) - return channels + return Array.from(map.values()) } const getChannels = async type => { const response = await axios.get(`https://www.skyperfectv.co.jp/program/schedule/${type}/`, { headers: { - Cookie: 'adult_auth=true;' + Cookie: 'adult_auth=true;', + 'User-Agent': + 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/60.0.3112.113 Safari/537.36' } }) return pageParser(response.data, type) @@ -106,8 +124,7 @@ const exported = { const fetchAllChannels = async () => { const basicChannels = await getChannels('basic') const premiumChannels = await getChannels('premium') - const results = [...basicChannels, ...premiumChannels] - return results + return [...basicChannels, ...premiumChannels] } return await fetchAllChannels() diff --git a/sites/syn.is/__data__/content.json b/sites/syn.is/__data__/content.json new file mode 100644 index 000000000..a08167b2b --- /dev/null +++ b/sites/syn.is/__data__/content.json @@ -0,0 +1,34 @@ +[ + { + "midill": "STOD2", + "midill_heiti": "Stöð 2", + "dagsetning": "2025-01-03T00:00:00Z", + "upphaf": "2025-01-03T08:00:00Z", + "titill": "Telma Borgþórsdóttir", + "isltitill": "Heimsókn", + "undirtitill": "Telma Borgþórsdóttir", + "seria": 8, + "thattur": 5, + "thattafjoldi": 10, + "birta_thatt": 1, + "opin": 0, + "beint": 0, + "frumsyning": 0, + "framundan_i_beinni": 0, + "tegund": "SER", + "flokkur": "Icelandic", + "adalhlutverk": "", + "leikstjori": "", + "ar": "2019", + "bannad": "Green", + "recidefni": 592645105, + "recidlidur": 592645184, + "recidsyning": null, + "refno": null, + "frelsi": 0, + "netdagar": 0, + "lysing": "Frábærir þættir með Sindra Sindrasyni sem lítur inn hjá íslenskum fagurkerum. Heimilin eru jafn ólík og þau eru mörg en eiga það þó eitt sameiginlegt að vera sett saman af alúð og smekklegheitum. Sindri hefur líka einstakt lag á að ná fram því besta í viðmælendum sínum.", + "slott": 15, + "slotlengd": "00:15" + } +] \ No newline at end of file diff --git a/sites/syn.is/readme.md b/sites/syn.is/readme.md new file mode 100644 index 000000000..d7a02f6cf --- /dev/null +++ b/sites/syn.is/readme.md @@ -0,0 +1,21 @@ +# syn.is + +https://www.syn.is/sjonvarp/dagskra + +### Download the guide + +```sh +npm run grab --- --site=syn.is +``` + +### Update channel list + +```sh +npm run channels:parse --- --config=./sites/syn.is/syn.is.config.js --output=./sites/syn.is/syn.is.channels.xml +``` + +### Test + +```sh +npm test --- syn.is +``` diff --git a/sites/syn.is/syn.is.channels.xml b/sites/syn.is/syn.is.channels.xml new file mode 100644 index 000000000..d615c4015 --- /dev/null +++ b/sites/syn.is/syn.is.channels.xml @@ -0,0 +1,12 @@ + + + Sýn + Sýn Sport + Sýn Sport2 + Sýn Sport3 + Sýn Sport4 + Sýn Sport Ísland + Sýn Sport Ísland 2 + Sýn Sport Ísland 3 + Sýn Sport Viaplay + diff --git a/sites/syn.is/syn.is.config.js b/sites/syn.is/syn.is.config.js new file mode 100644 index 000000000..d2e6cbb03 --- /dev/null +++ b/sites/syn.is/syn.is.config.js @@ -0,0 +1,88 @@ +const dayjs = require('dayjs') +const utc = require('dayjs/plugin/utc') +const axios = require('axios') + +dayjs.extend(utc) + +module.exports = { + site: 'syn.is', + days: 7, + request: { + cache: { + ttl: 60 * 60 * 1000 // 1 hour + } + }, + url({ channel, date }) { + return `https://www.syn.is/api/epg/${channel.site_id}/${date.format('YYYY-MM-DD')}` + }, + parser: function ({ content, date }) { + let data + try { + data = JSON.parse(content) + } catch (error) { + console.error('Error parsing JSON:', error) + return [] + } + + if (!Array.isArray(data)) return [] + + const programs = [] + + data + .filter(item => item?.upphaf) + .forEach(item => { + const start = dayjs.utc(item.upphaf) + + if (start.format('YYYY-MM-DD') === date.format('YYYY-MM-DD')) { + programs.push({ + title: item.isltitill, + sub_title: item.undirtitill, + description: item.lysing, + category: item.flokkur, + season: item.seria, + episode: item.thattur, + actors: item.adalhlutverk, + directors: item.leikstjori, + start, + stop: start.add(item.slott, 'm') + }) + } + }) + + return programs + }, + async channels() { + try { + const response = await axios.get('https://www.syn.is/api/epg?type=schedule') + if (!response.data || !Array.isArray(response.data)) { + console.error('Error: No channels data found') + return [] + } + + const channels = await Promise.all( + response.data.map(async item => { + try { + const { data: channelData } = await axios.get(`https://www.syn.is/api/epg/${item}`) + if (!channelData?.[0]?.midill_heiti) { + console.error(`Error: No name found for channel ${item}`) + return null + } + return { + lang: 'is', + site_id: item, + name: channelData[0].midill_heiti + } + } catch (error) { + console.error(`Error fetching channel name for ${item}:`, error) + return null + } + }) + ) + + return channels.filter(Boolean) + } catch (error) { + console.error('Error fetching channels:', error) + return [] + } + } +} diff --git a/sites/syn.is/syn.is.test.js b/sites/syn.is/syn.is.test.js new file mode 100644 index 000000000..a22d10f39 --- /dev/null +++ b/sites/syn.is/syn.is.test.js @@ -0,0 +1,46 @@ +const { parser, url } = require('./syn.is.config.js') +const fs = require('fs') +const path = require('path') +const dayjs = require('dayjs') +const utc = require('dayjs/plugin/utc') +const customParseFormat = require('dayjs/plugin/customParseFormat') +const timezone = require('dayjs/plugin/timezone') + +dayjs.extend(utc) +dayjs.extend(customParseFormat) +dayjs.extend(timezone) + +const date = dayjs.utc('2025-01-03', 'YYYY-MM-DD').startOf('day') +const channel = { site_id: 'syn', xmltv_id: 'Syn.is' } + +it('can generate valid url', () => { + const generatedUrl = url({ date, channel }) + expect(generatedUrl).toBe('https://www.syn.is/api/epg/syn/2025-01-03') +}) + +it('can parse response', () => { + const content = fs.readFileSync(path.resolve(__dirname, '__data__/content.json')) + const result = parser({ content, date }).map(p => { + p.start = p.start.toISOString() + p.stop = p.stop.toISOString() + return p + }) + + expect(result).toMatchObject([ + { + title: 'Heimsókn', + sub_title: 'Telma Borgþórsdóttir', + description: + 'Frábærir þættir með Sindra Sindrasyni sem lítur inn hjá íslenskum fagurkerum. Heimilin eru jafn ólík og þau eru mörg en eiga það þó eitt sameiginlegt að vera sett saman af alúð og smekklegheitum. Sindri hefur líka einstakt lag á að ná fram því besta í viðmælendum sínum.', + actors: '', + directors: '', + start: '2025-01-03T08:00:00.000Z', + stop: '2025-01-03T08:15:00.000Z' + } + ]) +}) + +it('can handle empty guide', () => { + const result = parser({ content: '[]', date }) + expect(result).toMatchObject([]) +}) diff --git a/sites/tataplay.com/tataplay.com.channels.xml b/sites/tataplay.com/tataplay.com.channels.xml index 9ff2b62bd..31750d19f 100644 --- a/sites/tataplay.com/tataplay.com.channels.xml +++ b/sites/tataplay.com/tataplay.com.channels.xml @@ -1,549 +1,198 @@ - INDIA TODAY - Ruposhi Bangla - News18 Gujarati - B4U Movies - STAR Plus HD - B4U Music - Flowers - TV9 Telugu - Anmol Cinema 2 - India News Haryana - India News Rajasthan - Zee Bihar Jharkhand - News18 Bangla - Star Sports 1 Hindi HD - Kairali TV - Colors Bangla - IBC 24 - Assam Talks - Mazhavil Manorama - Public TV - News Nation - Mega TV - Aastha - &tv HD - News18 Odia - Sanskar - Seithigal TV - T News - Dangal - Colors HD - Colors Cineplex - Travelxp - News18 Tamil Nadu - DW - Colors Cineplex HD - Zee TV HD - Anmol Cinema - TV5 Monde Asie - News18 Kerala - News18 Assam North East + SET HD + SONY PIX HD + SONY AATH + SONY SPORTS TEN 5 HD + SONY YAY! + SONY SAB HD + Sony Wah Tata Play English in Hindi - REPUBLIC TV - ABP Asmita - Star Sports 1 HD - News18 Uttar Pradesh Uttarakhand - ETV Telangana - News18 Kannada - Manorama News - ET NOW - TIMES NOW - PTC News - PTC Chak De - NDTV Profit Prime + Udaya TV + SONY MAX HD + SONY SPORTS TEN 1 HD + NDTV Profit Prime Tata Play Javed Akhtar - Zoom - TV9 Marathi - Russia Today - D Tamil + Russia Today Action Cinema - Rang - ABP Ananda - MTV - India TV - News18 India - Colors Gujarati - Colors Kannada + Rang Tata Play Smart Manager - Discovery Science - Food Food - Nick Jr - Discovery Kids + Disney + SONY MAX 2 Tata Play Fitness - PTC Punjabi - Zee Cinema - EPIC - Sonic - Aakaash Aath - France 24 - Colors Marathi - GOOD TiMES - Nick - 9XM - NEWS18 MARATHI - ETV Andhra Pradesh - &pictures + Zee Cinema + SONY MAX + Disney Junior + KTV + SONY SPORTS TEN 1 Tata Play Devotion - TV9 Kannada - Aaj Tak - ABP Majha + TV9 Kannada Channel News Asia - NTV Telugu - Channel WIN - News18 Bihar Jharkhand + SONY BBC Earth + Sun TV Tata Play Vedic Maths - CNBC TV18 - Romedy Now - Zee Bollywood - ABP News - Amrita TV - NDTV India - Anjan TV - Bhojpuri Cinema - India News - Colors Infinity HD - BBC News - NewsX - Al Jazeera - DD National - Fakt Marathi - Chardikla Time TV - Dangal 2 - Jaya Plus - Jaya Max - Kalaignar TV - J Movies - News18 Madhya Pradesh Chhattisgarh - CNBC Awaaz - News18 Rajasthan - CNN News18 - News Time Bangla - NDTV 24x7 - News 24 - MN+ HD - Kairali News - Sansad TV 2 - Sansad TV 1 - Rengoni TV - Sangeet Bangla - Sangeet Marathi - Puthiya Thalaimurai - Protidin Time - India News MP CG - DD Sports - E24 - ABN Andhra Jyothy - NEWS LIVE - Fashion TV - Discovery Turbo - Surya Movies - Surya TV - Udaya Movies - News18 Punjab Haryana - Jai Maharashtra - Star Sports 2 HD - Cartoon Network - Pogo - CNN International - Star Bharat HD - Star Sports Select 1 HD - Zee YUVA - Zee Talkies - Zee Telugu - Zee Marathi - Zee Cinemalu - Zee Bangla Sonar - WION - Zee Kannada - Zee Tamil - Zee 24 Ghanta - Zee News - Zee Business - Zee 24 Taas - Zee Delhi NCR Haryana - 10 TV - &pictures HD - ETV Life - Goodness - Janam TV - Polimer TV - V6 Telugu - Good News Today - Angel TV - Aastha Bhajan - Aradana TV - APN News - Animal Planet HD + SONY SPORTS TEN 2 + SONY SPORTS TEN 3 Hindi + Dangal 2 + MN+ HD + Sansad TV 2 + Sansad TV 1 + MNX + Zee Telugu + Zee Marathi + Zee Cinemalu + Zee Bangla + Zee Kannada + Zee Tamil + Zee News Dharma Sandesh - Bhakti TV - Bharat Samachar - Asianet HD - Asianet Movies - Big Magic - CNBC Bajaar - Colors Bangla HD - Colors Marathi HD - CTVN AKD Plus - DD Bangla - DD Bharati - TV5 News - DD Chandana - DD News - DD Girnar - DD India - DD Kashir - DD Kisan - DD Malayalam - DD Manipur - DD Madhya Pradesh + Tata Play Bollywood Premiere HD DD North East - DD Rajasthan - DD Odia - DD Tamil - DD Punjabi - DD Sahyadri - DD Saptagiri Discovery HD World - R Kannada - Hindi Khabar - Harvest TV 24x7 - HM TV - Divyavani TV - DY 365 - News18 Jammu Kashmir Ladakh Himachal - Gemini TV HD - ETV Abhiruchi - ETV HD - Gemini Life - Gemini Movies HD - Gulistan News - India News Punjab + God TV News Live Bangla - Jaihind TV - Janta TV - Jeevan TV - Jinvani Channel - Kalinga TV - Kanak News - Kappa TV - Kaumudy TV - Khushboo Bangla - KTV HD - Kolkata TV Khabarain Abhi Tak Sharnam TV - Madha TV - MalaiMurasu Seithigal - Makkal TV - Mathrubhumi News - Mazhavil Manorama HD - MH One Shraddha - Mega Musiq - MH One News - MTV HD - Nambikkai TV - Murasu TV - News 1 India - News 11 Bharat - North East Live - Colors Tamil - Peace of Mind - Peppers TV - Prag News - Public Music - Raj Musix - Raj Digital Plus - Raj Musix Kannada - Raj News Malayalam - Raj Musix Telugu - Raj News Telugu - Oscar Movies Bhojpuri - Nick HD+ - Jothi TV - Safari TV - Colors Rishtey - Raj TV - Travelxp Tamil - Subhavaarta TV + MalaiMurasu Seithigal + MTV HD + Nat Geo Wild HD + Colors Tamil + SAI TV Paras Gold One - Sadhna TV - News7 - Ramdhenu - Sathiyam TV - Satsang TV - Shalom TV - Shubh TV - Star Sports Select 2 HD - Star Suvarna HD - Star Jalsha HD - Star Pravah HD - Sun Life - Sudarshan News - Sri Sankara TV + SVBC Telugu + SONY BBC Earth HD + SONY SPORTS TEN 2 HD + SONY SPORTS TEN 3 Hindi HD TLC HD - Travelxp HD - TOTAL TV - Tata Play Bollywood Premiere - TV9 Gujarati - SVBC 2 - Udaya TV HD - Star Vijay HD - Vasanth TV - Vedic - Zee Marathi HD - Zee Cinema HD - Zee 24 Kalak - Polimer News - Raj News Kannada - Zee Madhya Pradesh Chattisgarh - Zee Bharat - Zee Talkies HD - STAR Maa HD - Zing - Salaam TV - Sun TV HD - Zee Bangla HD - Anmol TV - Thanthi TV - Raj News Tamil. - Colors SUPER - Jalsha Movies HD - Star Suvarna Plus - Colors - Colors Infinity - Saam TV - Times Now World - DD Yadagiri - STAR Utsav + Tata Play Bollywood Premiere + Zee Cinema HD + Zee Talkies HD + STAR Maa HD + Colors + Colors Infinity Gujarat Samachar TV - We TV - Asianet Suvarna News - Zee TV - Movies Now HD - Nepal 1 + Sony Pal + SET + Zee TV + SONY PIX + SONY SAB + Prarthana Life Tata Play Punjab De Rang - Media One - Swaraj Express SMBC - &TV - Zee Punjab Haryana Himachal Pradesh - Zee Rajasthan News - Vissa TV - Sandesh News - Mirror Now - Ishwar TV - Sakshi TV - Zee Sarthak - MNX HD - Zee Tamil HD - Sirippoli - Colors Kannada HD - News State UP Uttarakhand + &TV + Super Hungama + Ishwar TV Tata Play Bangla Cinema - Tata Play Beauty + History TV18 HD Tata Play Marathi Cinema - Pitaara Movies Tata Play Fun Learn Rhymes Tata Play Fun Learn Junior - TV5 Kannada - Hindu Dharmam - Star GOLD HD - Zee Telugu HD - Zee Cinemalu HD - Zee Uttar Pradesh Uttarakhand Tata Play Cooking + News State MP CG Tata Play English in Telugu DD Gyan Darshan - Isaiaruvi - Calcutta News - First India Rajasthan - Bansal News - India News Gujarat - Vendhar TV - Ayush TV - Public Movies + Tata Play Telugu Cinema + Sony Marathi + Tata Play Tamil Cinema + Star Sports 3 Tata Play Theatre HD - Colors Kannada Cinema - Colors Tamil HD - Zee Kannada HD - Tata Play ShortsTV - Cartoon Network HD+ - Zee Keralam - India Voice - Aaj Tak HD - DD News HD - Colors Gujarati Cinema - Zee Keralam HD - R Bharat - INH 24X7 - Jantantra TV - News J - Jaya TV HD - Zee Classic - B4U Bhojpuri - B4U Kadak - Manoranjan TV - Showbox - Tata Play Ibaadat + Tata Play ShortsTV + Tata Play Ibaadat + Tata Play Music Tata Play Classic Cinema - Tata Play Aradhana Tata Play Comedy - DD Arunprabha Tata Play Gujarati Cinema - PTC Simran - 4tv News - DIVYA - Prudent + PTC Simran + Prudent Namma TV Tata Play Seniors - ANB NEWS - Enterr10 Bangla + Tata Play Kannada Cinema Tata Play Hollywood Local - Fateh TV - Living India News - PTC Punjabi Gold - Zee Punjabi - Twenty Four - Shemaroo MarathiBana - Nandighosha TV + Zee Thirai In Goa 24x7 - Zee Power Tata Play Adbhut Kahaniyan Eurosport HD - Zee Biskope - CBeeBies - Shemaroo TV - RDX Goa + Zee Biskope + Shemaroo TV + RDX Goa Headlines Tripura - Goldmines - Power TV - Lokshahi Marathi - Sadhna Plus News - Sadhna News MP CG - Filamchi Bhojpuri - News India 24x7 DD Port Blair - Hare Krsna - Kashish News Shirdi Sai Baba Somnath Temple - Network 10 Kashi Vishwanath Temple, Varanasi Bangla Bhakti Tara News - Gubbare - Jan TV + Tata Play Malayalam Cinema Tata Play Astro Duniya - TV9 Bangla + TV9 Bangla Swar Shree Garv Gurbani - Ishara - Republic Bangla + Samara News Tata Play Valam TV - NKTV PLUS - Colors Bangla Cinema - Hornbill TV - Pasand - News 24 Madhyapradesh Chattisgarh - Argus News Nimbark TV - C News Bharat Santwani Haryana Beats - News 1st Kannada - PTC Music Tata Play NEET Prep Tata Play JEE Prep Buletin India Green Chillies TV - Times Now Navbharat HD - Asianet Movies - Awakening - Anaadi TV + Asianet Movies SIRIKANNADA Alltime Tata Play K-Dramas Live Iskcon Vrindavan Live Patna Sahib Patna - ET Now Swadesh - Asianet Plus - Star Maa Gold - STAR Maa HD - Star Maa Movies HD + Live Naina Devi Himachal Pradesh Tata Play Romance Atmadarshan - ANN News Tata Play Classic TV - Manoranjan Grand - Times Now Navbharat - News Tamil 24x7 - Aadinath TV - SVBC 3 - Khabar Fast 1st Gujarat - NHK World Japan Sidharth TV - Star Sports 2 Hindi Tata Play Zindagi - STV Haryana News - DD Meghalaya Tata Play Toons+ Tata Play Toons+ Tata Play Toons+ Tata Play Toons+ Tata Play Toons+ Tata Play Toons+ - Colors Cineplex Bollywood Saileela TV Tata Play South Talkies - Shri Ganga Aarti, Varanasi + Mahavir Temple, Patna Shri Ashtavinayak Mahaganpati, Ranjangaon - ISKCON Temple, Pune + Naga Sai Temple TV27 News - Bharat 24 - Real News Kerala + Real News Kerala 7x Music - Food XP - Star Sports 2 Hindi HD + Sidharth UTSAV + Sansad TV 2 HD + Khandoba Temple, Jejuri Global India - Shemaroo UMANG - Goldmines Bollywood - Bharat Express + Shemaroo UMANG Asian News Aaj Ki Khabar Indian News + Disney Channel HD + Star Sports 1 Tamil HD + Star Sports 1 Telugu HD + Star Movies Select + MEDIA 9 + Star Gold 2 HD Tata Play Telugu Classics - Sach Bedhadak Asom Live 24 Daily Post Punjab Haryana Himachal TTN 24 U Bangla TV Tata Play Asomiya Monoronjan - India Daily 24x7 - Prime9 Plus - BIG TV Telugu - Pudhari News - Reporter TV + Test Service 4101 Tata Play Bollywood Masala - Rongeen TV - Vanitha - Bloomberg Television - MAHAA NEWS - NDTV Rajasthan - NDTV MPCG - Unique TV - CHITHIRAM + Unique TV Tata Play Hollywood Local Tamil Tata Play Hollywood Local Telugu Jay Jagannath. Sidharth GOLD Shree Ichchhapuran Balaji Mandir - Zee Power HD - Zee Thirai HD - &Xplor HD - Star Sports 2 Telugu - Star Sports 2 Tamil - BRK News + Zee Power HD + DD Sports HD + SONY SPORTS TEN 4 Telugu + BRK News Ekamra Bharat Odia Ekamra Nilachakra Ekamra Cynema @@ -551,18 +200,11 @@ Ekamra Jatra Ekamra Paramatma Ekamra One paschima - Kalinga Bharat Lokmanch LNI Ekamra Manoranjan - Rajya 24 Samrat News - DD Tripura - DD Mizoram - DD Haryana - DD Uttarakhand - DD Goa - DD Himachal + Sun Bangla HD In24 News National Today 24x7 Vande Bharat News @@ -572,294 +214,96 @@ Update India Oye Music Sangam TV + Tata Play Filmy Safar Tata Play Tamil Classics - HNN News - NE NEWS - Shemaroo Josh - Swadesh News - Investigation Discovery HD - Prime TV - Samachar 24 News - Sana Plus TV - Sana TV + Gemini Music HD News Capital - Zee Kannada News - Zee Telugu News - TVRI World - SHEKINAH - Vistaar News - Tamil Janam - ALL Time MOVIES - Thanthi One - Raj Pariwar + Tata Play 4K + SS1 HD Hindi Geo + SS 1 Hindi Geo + SS 1 Geo + Tamil Janam + ALL Time MOVIES + Raj Nagaichuvai AB STAR News ABC News KBC News - Shiksha TV - Shresthbharat TV + Shiksha TV Sristi TV TV 45 News TNP News ETV Bal Bharat HD - ETV Cinema HD - ETV Plus HD - NDTV MARATHI - Naxatra News + NDTV MARATHI Tata Play Lakshya TV Pear TV - Powervision - News Malayalam 24x7 + Tata Play Anime Local + Sun Neo HD BVG Bhaktisagar - BS TV News 21 - ANANDHAM TV DHARSAN TV NIJAM TV - SURIYAN TV - SUBIN TV - NTV - UTV - Mahaa Max + Mahaa Max + Tata Play Superhits Serials Bhakthi Siri - Sadvidya + Sadvidya In24 Live News Live Times Sadhna Prime News + India TV Speed News HD News State Punjab Haryana Himachal HIFF Movies - TV 100 Tata Play Marathi Classics Tar TV + Garvi Gujarat Gujarati 24Hrs TV - News 9 + OSD Binge 1 + OSD Binge 2 + OSD Binge 3 + OSD Binge 4 + OSD Binge 5 Tata Play Deiveegam BHI Channel News Ground 24x7 22 Scope Express News Bharat + ABC Australia NAVSARJAN SANSKRUTI GUJARATI News Nation 81 - Anand TV - NewsX World + Village TV + Guarantee News Tata Play Fancode Sports - Titanic TV - The Boat Show - Goldmines Movies - NatureStream.tv - BritAsiaTV - Balle Balle - Kids TV India - Nursery Rhymes and Baby Songs - News9Live - ToonzKids - SoniCentric - Sportskool TV - Monarch - Outside - IDG - Everyday Heroes - Fish Tank - Fireplace Lounge - Island Escape - MMA Junkie - Relaxing Rain - Real Vision - Tranquil Thunderstorms - Young Hollywood - Hard Knocks - Lone Star - OAN Plus - Right Now Tv - Kaloopy - AWE Plus - World Poker Tour - Entrepreneur - Sword & Shield - Schwab Network - Humor Mill - SKWAD - TronTV - GlewedTV Spanish - GlewedTV Yoga & Fitness - Dot Esports - GlewedTV The Vault - Cooking Panda - SportsGrid - fw.tv by Firework - ChopperTown - Euronews Español - Euronews - Revry - Documentary+ - Black Enterprise - Revry Her - Us Weekly TV - Garv Punjab Gurbani - Pro Football Focus - WappTV - Powersports World - Arré - BarkTV - Bless TV - Swar Shree - ACL Cornhole TV - ABP Sanjha - TV Punjab - ABP Ganga - Bowery Classics - True History - FUEL TV - Africanews - Cinema Hausa - Afriwood Blockbuster - ROI TV - True African - Goalcast - ENCORE+ - Autumn Escape - Relaxing WinterScapes - 4K TRAVEL TV - Study Lounge - Spring Escape - Gusto TV - Life Style by Triptic - Masala Entertainment Plus - KOZOOM TV - IndieBox - TRACE Urban - TRACE Latina - LifeFit by Triptic - Bleav Football - TRACE Brazuca - Sports Connect - CraftsyTV - Vikatan TV - Kids TV - Nursery Rhymes and Baby Songs - Kids TV Español Latino - Canciones Infantiles - DeFiance Media - FloRacing 24/7 - FEVA MUSIC - Negocios TV - FEVA TV - crema.tv - La Bocina Latina - Lakshya TV - Kalyan TV - Kartavya TV - ToonzKids Atfal - ToonzKids niños - M+ - Al Arabiya - Rotana Aflam+ - Shemaroo Bollywood - PNC Drama - Mediacorp Entertainment – Tamil - Mediacorp Entertainment – English - Bollywood Masala - Toon Goggles en Español - Saga Music - DroneTV - TRACE UK - PLL Network - TidPix-Authentically African - Cowboy Channel - Surf Roots TV - Green Chillies TV- Zindagi ka Tadka! - Jyotish Duniya - Watch Wellness - Watch Wellness Telugu - Punjabi Hits - Ghost Dimension - Tabbar Hits - Cartoon Classics - Comercio TV - SportsTVPlus - Comedy Classics - 4ACETV CLASSIC HITS - Old West TV - 4ACETV - The Holiday TV Channel - Sudarshan News - Nakshatra Digital Tv - Sundrani Tv - Colorized.TV - MomCave - HIP HOP TV - Fitness Rewind by Collage Video - AMusic Channel - HITS MEXICANOS - Viajar TV - Box Gamers - Box Cinema - Skull Bound TV - Nigbati TV - a-z Classic Flix - Living India News - Rockola Television - Urban Action Channel - a-z Best Classic TV - OurVinyl - Sports First TV - NOMADslow tv - a-z Western Grit - ACI On The Go - Aaj Ki Khabar - Bhakthi Siri - Wild TV - Atmadarshan Tv - The Unmute - Tara Tv - Namma Bangalore - Vande Bharat News - KTV Bangla - Indian News - Ann Channel - Mahua Play - Mahua Khabar + Star Sports 2 Tamil HD + Star Sports 2 Telugu HD + SONY MAX 1 + Alias-3 of 2725 + Alias-2 of 2725 + Alias-1 of 2725 + OSD - 3 + Alias-3 of 2715 + Alias-2 of 2715 + Alias-1 of 2715 + OSD - 2 + Alias-3 of 2714 + Alias-2 of 2714 + Alias-1 of 2714 + OSD - 1 + Zee Cinema Geo + Alias Service 1543 Delta 140823_21.0 + Zee Cinema Geo Dagdusheth Pune - Anand Tv - Elevation Church Network - In Touch+ - Mahaa Max - Mahaa News - News Marathi 24X7 - Prameya News7 - Rozana Spokesman - The Reuters 60 - Amplified Voices TV - Cigar TV - Mi Raza Canal - Mi Miedo Canal - Mi Raza Canal Plus - POWERtube TV - UnchainedTV Tata Play Bhakti Sangeet Tata Play Fancode Sports +1 Tata Play Cartoon Network Forever S India News KM News National TV India - Big Tv - CJC Television Network - P18 News - WFN: World Fishing Network Aagaaz Times Voice TV Urdu Smriti Patra + Public First Test Service 3701 - Sana Tv - Janataa TV Kannada - DA News Plus - 35MM - Cinema Yoruba - Gujarat First - Sakshi Tv - Sandesh News - Crime & Evidence - Novo Comedy - Unleashed by DOGTV - Prime Asia Tv Mirror Media Top News Marathi NE Bharat 24 @@ -867,26 +311,576 @@ NSC9 A ONE NEWS INDIA 24X7 LIVE TV - CHARCHA AAJ KI - CN News - CTVN AKD Plus - Bowling TV - RVTV - Wine, Watches & Whiskey - ONTV4U + Nation Update Hingulambika Devi, Solapur Tata Play Odia Manoranjan - Times Now Navbharat - India Daily 24x7 - News Tamil 24x7 - News Malayalam 24x7 - World Punjabi Tv - Top News Marathi - Pratham Khabar 24x7 - Kolkata Tv - ABN Andhra Jyothy - Outdoor Channel - Amar Ujala - DJ Central TV - Rock Solid Wrestling TV - \ No newline at end of file + GTC Punjabi + GTC News + Bharat A to Z News + Gangaur TV + Freedom TV + F Plus + SAMACHAR TODAY + Shree Sanatan TV + Valam TV Dayro + Roja TV + Roja Movies + News Plus24x7 + Mahotsav TV + SONY SPORTS TEN 4 KANNADA + 4tv News + 9XM + 10 TV + Aadinath TV + Aaj Tak + Aaj Tak HD + Aakaash Aath + Aastha + Aastha Bhajan + ABN Andhra Jyothy + ABP Ananda + ABP Asmita + ABP Majha + ABP News + Adithya TV + Calcutta News + Alankar + Al Jazeera + Amrita TV + Anaadi TV + Anand TV + ANB NEWS + &Flix HD + &flix + &pictures HD + &pictures + &tv HD + &Xplor HD + Angel TV + Animal Planet HD + Animal Planet + Anjan TV + Anmol Cinema 2 + Anmol Cinema + Anmol TV + ANN News + APN News + Aradana TV + Argus News + Asianet HD + Asianet + Asianet Movies HD + Asianet Movies + Asianet News + Asianet Plus + Asianet Suvarna News + Assam Talks + Assam Talks + Awakening + Ayush TV + B4U Bhojpuri + B4U Kadak + B4U Movies + B4U Music + Bansal News + BBC News + Bhakti TV + Bharat 24 + Bharat Express + Bharat Samachar + Bhojpuri Cinema + Big Magic + BIG TV Telugu + Bloomberg Television + BS TV + Calvary TV + Cartoon Network + Cartoon Network HD+ + CBeeBies + DIVYA + Channel WIN + Chardikla Time TV + Chintu TV + CHITHIRAM + Chutti TV + CNBC Awaaz + CNBC Bajaar + CNBC TV18 + CNBC TV18 Prime HD + C News Bharat + CNN International + CNN News18 + Colors HD + Colors Bangla + Colors Bangla HD + Colors Bangla Cinema + Colors Cineplex + Colors Cineplex HD + Colors Cineplex Bollywood + Colors Cineplex Superhits + Colors Gujarati + Colors Gujarati Cinema + Colors Infinity HD + Colors Kannada + Colors Kannada HD + Colors Kannada Cinema + Colors Marathi + Colors Marathi HD + Colors Rishtey + Colors SUPER + Colors Tamil HD + CTVN AKD Plus + Dangal + DD Arunprabha + DD Bangla + DD Bharati + DD Bihar + DD Chandana + DD Chhattisgarh + DD Girnar + DD Goa + DD Haryana + DD Himachal + DD India + DD India HD + DD Jharkhand + DD Kashir + DD Kisan + DD Madhya Pradesh + DD Malayalam + DD Manipur + DD Meghalaya + DD Mizoram + DD Nagaland + DD National HD + DD National + DD News + DD News HD + DD Odia + DD Punjabi + DD Rajasthan + DD Sahyadri + DD Saptagiri + DD Sports + DD Tamil + DD Tripura + DD Urdu + DD Uttarakhand + DD Uttar Pradesh + DD Yadagiri + Goldmines + Goldmines Movies + Goldmines Bollywood + Discovery Channel + Discovery Kids + Discovery Science + Discovery Turbo + Disney International HD + D Tamil + DW + DY 365 + E24 + Enterr10 Bangla + EPIC + ET NOW + ET Now Swadesh + ETV Abhiruchi + ETV Andhra Pradesh + ETV Bal Bharat + ETV Cinema HD + ETV Cinema + ETV Life + ETV Plus HD + ETV Plus + ETV Telangana + ETV HD + ETV Telugu + Eurosport + Fakt Marathi + Fashion TV + Fateh TV + Filamchi Bhojpuri + First India Rajasthan + Flowers + Food Food + Food XP + France 24 + Gemini Comedy + Gemini Life + Gemini Movies + Gemini Movies HD + Gemini Music + Gemini TV + Gemini TV HD + Goodness + Good News Today + Gubbare + Gulistan News + Hare Krsna + Harvest TV 24x7 + Hindi Khabar + Hindu Dharmam + History TV18 + HM TV + HNN News + Hornbill TV + Hungama + IBC 24 + India Daily 24x7 + India News + India News Gujarat + India News Haryana + India News MP CG + India News Punjab + India News Rajasthan + India News UP UK + INDIA TODAY + India TV + India Voice + INH 24X7 + Investigation Discovery + Investigation Discovery HD + Isaiaruvi + Ishara + Jaihind TV + Jai Maharashtra + Jalsha Movies HD + Jalsha Movies + Janam TV + Jantantra TV + Janta TV + Jan TV + Jaya Max + Jaya Plus + Jaya TV HD + Jeevan TV + Jinvani Channel + J Movies + Jothi TV + Kairali News + Kairali TV + Murasu TV + Seithigal TV + Kalaignar TV + Kalinga TV + Kalinga Bharat + Kanak News + Kappa TV + Kashish News + Kaumudy TV + Khabar Fast + Khushboo Bangla + Kochu TV + Kolkata TV + KTV HD + Kushi TV + Living India News + Lokshahi Marathi + Madha TV + MAHAA NEWS + Makkal TV + Manorama News + Manoranjan Grand + Manoranjan TV + Mathrubhumi News + Mazhavil Manorama HD + Mazhavil Manorama + Media One + Mega 24 + Mega Musiq + Mega TV + MH One + MH One News + MH One Shraddha + Mirror Now + MNX HD + Movies Now + Movies Now HD + MTV + Nambikkai TV + Nandighosha TV + National Geographic HD + National Geographic + Nat Geo Wild + Naxatra News + NDTV 24x7 + GOOD TiMES + NDTV India + NDTV MPCG + NDTV Rajasthan + Nepal 1 + Network 10 + News 1 India + News 1st Kannada + News7 + News 9 + News 11 Bharat + News18 Assam North East + News18 Bangla + News18 Bihar Jharkhand + News18 Gujarati + News18 India + News18 Jammu Kashmir Ladakh Himachal + News18 Kannada + News18 Kerala + NEWS18 MARATHI + News18 Madhya Pradesh Chhattisgarh + News18 Odia + Rajya 24 + News18 Punjab Haryana + News18 Rajasthan + News18 Tamil Nadu + News18 Uttar Pradesh Uttarakhand + News 24 + News 24 Madhyapradesh Chattisgarh + News J + NEWS LIVE + News Malayalam 24x7 + News Nation + News State UP Uttarakhand + News Tamil 24x7 + News Time Bangla + NewsX + NewsX World + NHK World Japan + Nick + Nick HD+ + Nick Jr + Nireekshana TV + NKTV PLUS + North East Live + NTV + NTV Telugu + Oscar Movies Bhojpuri + Pasand + Peace of Mind + Peppers TV + Pitaara Movies + Pogo + Polimer News + Polimer TV + Power TV + Powervision + Prag News + Protidin Time + Star Pravah Pictures HD + STAR Pravah Picture + Prime9 Plus + Prime TV + PTC Chak De + PTC Music + PTC News + PTC Punjabi + PTC Punjabi Gold + Public Movies + Public Music + Public TV + Pudhari News + Puthiya Thalaimurai + Raj Digital Plus + Raj Musix Kannada + Raj Musix Malayalam + Raj Musix + Raj Musix Telugu + Raj News Tamil. + Raj News Kannada + Raj News Malayalam + Raj News Telugu + Raj Pariwar + Raj TV + Ramdhenu + Rengoni TV + Reporter TV + Republic Bangla + R Bharat + R Kannada + REPUBLIC TV + Romedy Now + Rongeen TV + Ruposhi Bangla + Saam TV + Sadhna News MP CG + Sadhna Plus News + Sadhna TV + Safari TV + Sakshi TV + Salaam TV + Samachar 24 News + Sana Plus TV + Sana TV + Sandesh News + Sangeet Bangla + Sangeet Marathi + Sri Sankara TV + Sansad TV 1 HD + Sanskar + Sathiyam TV + Satsang TV + Shalom TV + SHEKINAH + Shemaroo Josh + Shemaroo MarathiBana + Showbox + Shubh TV + Sirippoli + Sonic + SONY SPORTS TEN 4 Tamil + SONY SPORTS TEN 5 + Star Bharat HD + Star Bharat + Star Gold 2 + Star GOLD HD + STAR Gold + Star Gold Romance + Star Gold Select HD + Star Gold Select + Star Gold Thrills + Star Jalsha HD + STAR Jalsha + Star Kiran + STAR Maa HD + STAR Maa + Star Maa Gold + Star Maa Movies HD + Star Maa Movies + Star Maa Music + STAR Movies HD + STAR Movies + STAR Movies Select HD + STAR Plus HD + STAR Plus + Star Pravah HD + STAR Pravah + Star Sports 1 HD + STAR Sports 1 + Star Sports 1 Hindi HD + Star Sports 1 Hindi + Star Sports 1 Kannada + Star Sports 1 Tamil + Star Sports 1 Telugu + Star Sports 2 HD + STAR Sports 2 + Star Sports 2 Hindi + Star Sports 2 Hindi HD + Star Sports 2 Kannada + Star Sports 2 Tamil + Star Sports 2 Telugu + Star Sports Khel + Star Sports Select 1 HD + Star Sports Select 1 + Star Sports Select 2 HD + Star Sports Select 2 + Star Suvarna HD + Star Suvarna + Star Suvarna Plus + STAR Utsav + STAR Utsav Movies + Star Vijay HD + STAR Vijay + Subhavaarta TV + SUBIN TV + Sudarshan News + Sun Bangla + Sun Life + Sun Marathi + Sun Marathi HD + Sun Music + Sun Music HD + Sun Neo + Sun News + Sun TV HD + SURIYAN TV + Surya Comedy + Surya Movies + Surya Music + Surya TV + Surya HD + SVBC 2 + SVBC Kannada + SVBC 3 + SVBC + Swadesh News + Swaraj Express SMBC + Divyavani TV + Tarang Music + Tarang TV + Tata Play Aradhana + Tata Play Beauty + Thanthi One + Thanthi TV + TIMES NOW + Times Now Navbharat HD + Times Now Navbharat + Times Now World + TLC + T News + TOTAL TV + Travelxp + Travelxp HD + Travelxp Tamil + TV5 Kannada + TV5 Monde Asie + TV5 News + TV9 Bharatvarsh + TV9 Gujarati + TV9 Marathi + TV9 Telugu + TVRI World + Twenty Four + Udaya Comedy + Udaya Movies + Udaya Music + Udaya TV HD + UTV + V6 Telugu + Vanitha + Vasanth TV + Vedic + Vendhar TV + Vijay Super HD + Vijay Super + Vijay Takkar + Vissa TV + Vistaar News + VTV News + We TV + WION + Zee 24 Ghanta + Zee 24 Kalak + Zee 24 Taas + Zee Bangla HD + Zee Bangla Sonar + Zee Bharat + Zee Bihar Jharkhand + Zee Bollywood + Zee Business + Zee Cafe HD + Zee Cafe + Zee Cinemalu HD + Zee Classic + Zee Delhi NCR Haryana + Zee Kannada HD + Zee Kannada News + Zee Keralam + Zee Keralam HD + Zee Madhya Pradesh Chattisgarh + Zee Marathi HD + Zee News HD + Zee Power + Zee Punjab Haryana Himachal Pradesh + Zee Punjabi + Zee Rajasthan News + Zee Sarthak + Zee Talkies + Zee Tamil HD + Zee Telugu HD + Zee Telugu News + Zee Thirai HD + Zee TV HD + Zee Uttar Pradesh Uttarakhand + Zee YUVA + Zee Zest HD + Zee Zest + Zing + Zoom + diff --git a/sites/tataplay.com/tataplay.com.config.js b/sites/tataplay.com/tataplay.com.config.js index d7807bb49..f7e43f105 100644 --- a/sites/tataplay.com/tataplay.com.config.js +++ b/sites/tataplay.com/tataplay.com.config.js @@ -27,7 +27,7 @@ module.exports = { }, parser(context) { - let data = [] + let data try { const json = JSON.parse(context.content) const programs = json?.data?.epg || [] @@ -48,24 +48,34 @@ module.exports = { async channels() { const headers = { - Accept: '*/*', - Origin: 'https://watch.tataplay.com', - Referer: 'https://watch.tataplay.com/', - 'User-Agent': - 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/143.0.0.0 Safari/537.36 Edg/143.0.0.0', + Accept: 'text/html,application/xhtml+xml,application/xml;q=0.9,image/avif,image/webp,image/apng,*/*;q=0.8', 'content-type': 'application/json', - locale: 'ENG' + 'accept-encoding': 'gzip, deflate, br, zstd', + 'accept-language': 'fr-FR,fr;q=0.6', + 'cache-control': 'no-cache', + 'pragma': 'no-cache', + 'priority': 'u=0, i', + 'sec-ch-ua': '"Chromium";v="146", "Not-A.Brand";v="24", "Brave";v="146"', + 'sec-ch-ua-mobile': '?0', + 'sec-ch-ua-platform': '"Windows"', + 'sec-fetch-dest': 'document', + 'sec-fetch-mode': 'navigate', + 'sec-fetch-site': 'none', + 'sec-fetch-user': '?1', + 'sec-gpc': '1', + 'upgrade-insecure-requests': '1', + 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/146.0.0.0 Safari/537.36' } const baseUrl = 'https://tm.tapi.videoready.tv/portal-search/pub/api/v1/channels' const initialUrl = `${baseUrl}?limit=1000&offset=0` - const initialResponse = await axios.get(initialUrl, { headers }) + const initialResponse = await axios.get(initialUrl, { headers: headers }) const total = initialResponse.data?.data?.total || 0 const channels = [] for (let offset = 0; offset < total; offset += 1000) { const url = `${baseUrl}?limit=1000&offset=${offset}` - const response = await axios.get(url, { headers }) + const response = await axios.get(url, { headers: headers }) const page = response.data?.data?.list || [] channels.push(...page) } diff --git a/sites/tivu.tv/__data__/content.json b/sites/tivu.tv/__data__/content.json new file mode 100644 index 000000000..4ea65676c --- /dev/null +++ b/sites/tivu.tv/__data__/content.json @@ -0,0 +1,2464 @@ +{ + "events": [ + { + "id": 50367415, + "date_start": "25-02-2026 06:00", + "date_end": "25-02-2026 06:28", + "duration": 28, + "program": { + "id": 50367751, + "title": "1mattina News", + "description": "Maria Soave e Tiberio Timperi ci raccontano le notizie del giorno e l'attualità in tempo reale: dai fatti italiani a ciò che accade nel resto del mondo, dalla cronaca allo sport, dalla cultura allo spettacolo, grazie a ospiti in studio, collegamenti con gli inviati del Tg1 e i corrispondenti Rai e con interviste a grandi personaggi e protagonisti della cronaca.", + "url_poster": "https://www.raiplay.it/resizegd/640x-/dl/img/2025/09/05/1757079141048_2048x1152.jpg", + "url_web": "/dirette/rai1", + "url_live": "http://www.rai.tv/dl/RaiTV/dirette/PublishingBlock-64203784-70f7-4b53-9d21-b14693850195.html", + "categories": [ + { + "id": 12, + "name": "Varie", + "slug": "varie" + } + ], + "genres": [] + }, + "channel": { + "id": 42, + "name": "Rai 1 HD", + "description": "Canale 1 tivùsat\r\nCanale 1 DTT", + "editor": "RAI", + "icon": "uploads/channel/dd39d13edc5e24dc57f355ab6030ec85ba4ad945.png", + "icon2x": "uploads/channel/d64e56641cfdf2ec1d343cf331286073a409c8cb.png", + "icon3x": "uploads/channel/6bd671462cda55ac3b011e5acc561e391ccc3761.png", + "iconMono": "uploads/channel/ed002807c483978a337342bf06ca06432dd3ae10.png", + "locatorsSat": "dvb://13e.1450.d49,dvb://13e.3070.d49", + "locatorsDtt": "dvb://217c.d5.641,dvb://217c.71.44d,dvb://217c.8f.4e3", + "is_dtt": true, + "is_sat": true, + "channel_dtt": 1, + "channel_sat": 1, + "channel_catchup": 1000, + "is_catchup": false, + "is_hd": true, + "is_primary_sat": false, + "is_primary_dtt": false, + "channel_father": { + "id": 1, + "name": "Rai 1", + "editor": "RAI", + "icon": "uploads/channel/f39e198eb18f479198c8f2687614c9c83fae6b50.png", + "icon2x": "uploads/channel/e5ed9c3a28e5f5ae50fa0a368ee1e1c550ba50ce.png", + "iconMono": "uploads/channel/6975d36901670f2fed967ca5b7523a506ab8caad.png", + "locatorsSat": "", + "locatorsDtt": "dvb://13e.1.d49,dvb://13e.4000.d49,dvb://13e.4800.d49,dvb://13e.5000.d49,dvb://13e.5800.d49,dvb://13e.6000.d49,dvb://13e.6800.d49,dvb://13e.7000.d49,dvb://13e.7800.d49,dvb://13e.8800.d49,dvb://13e.9000.d49,dvb://13e.9800.d49,dvb://13e.a000.d49", + "is_dtt": false, + "is_sat": true, + "channel_dtt": 0, + "channel_sat": 101, + "channel_catchup": 1, + "is_catchup": false, + "is_hd": false, + "is_primary_sat": false, + "is_primary_dtt": false + } + }, + "images": [ + { + "url": "https://www.raiplay.it/resizegd/640x-/dl/img/2025/09/05/1757079141048_2048x1152.jpg", + "size": "640x360", + "dimension": "53465", + "tag": "medium", + "priority": 0 + } + ] + }, + { + "id": 50367416, + "date_start": "25-02-2026 06:28", + "date_end": "25-02-2026 06:30", + "duration": 2, + "program": { + "id": 50367752, + "title": "CCISS - Viaggiare informati", + "description": "Previsioni sulla viabilità CCISS Viaggiare informati", + "url_poster": "https://www.raiplay.it/resizegd/640x-/dl/img/2025/11/21/1763723047284_RaiMobilita2048x1152.png", + "url_web": "/dirette/rai1", + "url_live": "http://www.rai.tv/dl/RaiTV/dirette/PublishingBlock-64203784-70f7-4b53-9d21-b14693850195.html", + "categories": [ + { + "id": 12, + "name": "Varie", + "slug": "varie" + } + ], + "genres": [] + }, + "channel": { + "id": 42, + "name": "Rai 1 HD", + "description": "Canale 1 tivùsat\r\nCanale 1 DTT", + "editor": "RAI", + "icon": "uploads/channel/dd39d13edc5e24dc57f355ab6030ec85ba4ad945.png", + "icon2x": "uploads/channel/d64e56641cfdf2ec1d343cf331286073a409c8cb.png", + "icon3x": "uploads/channel/6bd671462cda55ac3b011e5acc561e391ccc3761.png", + "iconMono": "uploads/channel/ed002807c483978a337342bf06ca06432dd3ae10.png", + "locatorsSat": "dvb://13e.1450.d49,dvb://13e.3070.d49", + "locatorsDtt": "dvb://217c.d5.641,dvb://217c.71.44d,dvb://217c.8f.4e3", + "is_dtt": true, + "is_sat": true, + "channel_dtt": 1, + "channel_sat": 1, + "channel_catchup": 1000, + "is_catchup": false, + "is_hd": true, + "is_primary_sat": false, + "is_primary_dtt": false, + "channel_father": { + "id": 1, + "name": "Rai 1", + "editor": "RAI", + "icon": "uploads/channel/f39e198eb18f479198c8f2687614c9c83fae6b50.png", + "icon2x": "uploads/channel/e5ed9c3a28e5f5ae50fa0a368ee1e1c550ba50ce.png", + "iconMono": "uploads/channel/6975d36901670f2fed967ca5b7523a506ab8caad.png", + "locatorsSat": "", + "locatorsDtt": "dvb://13e.1.d49,dvb://13e.4000.d49,dvb://13e.4800.d49,dvb://13e.5000.d49,dvb://13e.5800.d49,dvb://13e.6000.d49,dvb://13e.6800.d49,dvb://13e.7000.d49,dvb://13e.7800.d49,dvb://13e.8800.d49,dvb://13e.9000.d49,dvb://13e.9800.d49,dvb://13e.a000.d49", + "is_dtt": false, + "is_sat": true, + "channel_dtt": 0, + "channel_sat": 101, + "channel_catchup": 1, + "is_catchup": false, + "is_hd": false, + "is_primary_sat": false, + "is_primary_dtt": false + } + }, + "images": [ + { + "url": "https://www.raiplay.it/resizegd/640x-/dl/img/2025/11/21/1763723047284_RaiMobilita2048x1152.png", + "size": "640x360", + "dimension": "10570", + "tag": "medium", + "priority": 0 + } + ] + }, + { + "id": 50367417, + "date_start": "25-02-2026 06:30", + "date_end": "25-02-2026 06:33", + "duration": 3, + "program": { + "id": 50367753, + "title": "Tg1", + "description": "", + "url_poster": "https://www.raiplay.it/resizegd/640x-/dl/img/2025/12/16/1765885004911_2048x1152.jpg", + "url_web": "/dirette/rai1", + "url_live": "http://www.rai.tv/dl/RaiTV/dirette/PublishingBlock-64203784-70f7-4b53-9d21-b14693850195.html", + "categories": [ + { + "id": 12, + "name": "Varie", + "slug": "varie" + } + ], + "genres": [] + }, + "channel": { + "id": 42, + "name": "Rai 1 HD", + "description": "Canale 1 tivùsat\r\nCanale 1 DTT", + "editor": "RAI", + "icon": "uploads/channel/dd39d13edc5e24dc57f355ab6030ec85ba4ad945.png", + "icon2x": "uploads/channel/d64e56641cfdf2ec1d343cf331286073a409c8cb.png", + "icon3x": "uploads/channel/6bd671462cda55ac3b011e5acc561e391ccc3761.png", + "iconMono": "uploads/channel/ed002807c483978a337342bf06ca06432dd3ae10.png", + "locatorsSat": "dvb://13e.1450.d49,dvb://13e.3070.d49", + "locatorsDtt": "dvb://217c.d5.641,dvb://217c.71.44d,dvb://217c.8f.4e3", + "is_dtt": true, + "is_sat": true, + "channel_dtt": 1, + "channel_sat": 1, + "channel_catchup": 1000, + "is_catchup": false, + "is_hd": true, + "is_primary_sat": false, + "is_primary_dtt": false, + "channel_father": { + "id": 1, + "name": "Rai 1", + "editor": "RAI", + "icon": "uploads/channel/f39e198eb18f479198c8f2687614c9c83fae6b50.png", + "icon2x": "uploads/channel/e5ed9c3a28e5f5ae50fa0a368ee1e1c550ba50ce.png", + "iconMono": "uploads/channel/6975d36901670f2fed967ca5b7523a506ab8caad.png", + "locatorsSat": "", + "locatorsDtt": "dvb://13e.1.d49,dvb://13e.4000.d49,dvb://13e.4800.d49,dvb://13e.5000.d49,dvb://13e.5800.d49,dvb://13e.6000.d49,dvb://13e.6800.d49,dvb://13e.7000.d49,dvb://13e.7800.d49,dvb://13e.8800.d49,dvb://13e.9000.d49,dvb://13e.9800.d49,dvb://13e.a000.d49", + "is_dtt": false, + "is_sat": true, + "channel_dtt": 0, + "channel_sat": 101, + "channel_catchup": 1, + "is_catchup": false, + "is_hd": false, + "is_primary_sat": false, + "is_primary_dtt": false + } + }, + "images": [ + { + "url": "https://www.raiplay.it/resizegd/640x-/dl/img/2025/12/16/1765885004911_2048x1152.jpg", + "size": "640x360", + "dimension": "86114", + "tag": "medium", + "priority": 0 + } + ] + }, + { + "id": 50367418, + "date_start": "25-02-2026 06:33", + "date_end": "25-02-2026 06:58", + "duration": 25, + "program": { + "id": 50367754, + "title": "1mattina News", + "description": "Maria Soave e Tiberio Timperi ci raccontano le notizie del giorno e l'attualità in tempo reale: dai fatti italiani a ciò che accade nel resto del mondo, dalla cronaca allo sport, dalla cultura allo spettacolo, grazie a ospiti in studio, collegamenti con gli inviati del Tg1 e i corrispondenti Rai e con interviste a grandi personaggi e protagonisti della cronaca.", + "url_poster": "https://www.raiplay.it/resizegd/640x-/dl/img/2025/09/05/1757079141048_2048x1152.jpg", + "url_web": "/dirette/rai1", + "url_live": "http://www.rai.tv/dl/RaiTV/dirette/PublishingBlock-64203784-70f7-4b53-9d21-b14693850195.html", + "categories": [ + { + "id": 12, + "name": "Varie", + "slug": "varie" + } + ], + "genres": [] + }, + "channel": { + "id": 42, + "name": "Rai 1 HD", + "description": "Canale 1 tivùsat\r\nCanale 1 DTT", + "editor": "RAI", + "icon": "uploads/channel/dd39d13edc5e24dc57f355ab6030ec85ba4ad945.png", + "icon2x": "uploads/channel/d64e56641cfdf2ec1d343cf331286073a409c8cb.png", + "icon3x": "uploads/channel/6bd671462cda55ac3b011e5acc561e391ccc3761.png", + "iconMono": "uploads/channel/ed002807c483978a337342bf06ca06432dd3ae10.png", + "locatorsSat": "dvb://13e.1450.d49,dvb://13e.3070.d49", + "locatorsDtt": "dvb://217c.d5.641,dvb://217c.71.44d,dvb://217c.8f.4e3", + "is_dtt": true, + "is_sat": true, + "channel_dtt": 1, + "channel_sat": 1, + "channel_catchup": 1000, + "is_catchup": false, + "is_hd": true, + "is_primary_sat": false, + "is_primary_dtt": false, + "channel_father": { + "id": 1, + "name": "Rai 1", + "editor": "RAI", + "icon": "uploads/channel/f39e198eb18f479198c8f2687614c9c83fae6b50.png", + "icon2x": "uploads/channel/e5ed9c3a28e5f5ae50fa0a368ee1e1c550ba50ce.png", + "iconMono": "uploads/channel/6975d36901670f2fed967ca5b7523a506ab8caad.png", + "locatorsSat": "", + "locatorsDtt": "dvb://13e.1.d49,dvb://13e.4000.d49,dvb://13e.4800.d49,dvb://13e.5000.d49,dvb://13e.5800.d49,dvb://13e.6000.d49,dvb://13e.6800.d49,dvb://13e.7000.d49,dvb://13e.7800.d49,dvb://13e.8800.d49,dvb://13e.9000.d49,dvb://13e.9800.d49,dvb://13e.a000.d49", + "is_dtt": false, + "is_sat": true, + "channel_dtt": 0, + "channel_sat": 101, + "channel_catchup": 1, + "is_catchup": false, + "is_hd": false, + "is_primary_sat": false, + "is_primary_dtt": false + } + }, + "images": [ + { + "url": "https://www.raiplay.it/resizegd/640x-/dl/img/2025/09/05/1757079141048_2048x1152.jpg", + "size": "640x360", + "dimension": "53465", + "tag": "medium", + "priority": 0 + } + ] + }, + { + "id": 50367419, + "date_start": "25-02-2026 06:58", + "date_end": "25-02-2026 07:00", + "duration": 2, + "program": { + "id": 50367755, + "title": "Che tempo fa", + "description": "", + "url_poster": "https://www.raiplay.it/resizegd/640x-/dl/img/2025/11/20/1763645586214_RaiMeteo2048x1152.png", + "url_web": "/dirette/rai1", + "url_live": "http://www.rai.tv/dl/RaiTV/dirette/PublishingBlock-64203784-70f7-4b53-9d21-b14693850195.html", + "categories": [ + { + "id": 12, + "name": "Varie", + "slug": "varie" + } + ], + "genres": [] + }, + "channel": { + "id": 42, + "name": "Rai 1 HD", + "description": "Canale 1 tivùsat\r\nCanale 1 DTT", + "editor": "RAI", + "icon": "uploads/channel/dd39d13edc5e24dc57f355ab6030ec85ba4ad945.png", + "icon2x": "uploads/channel/d64e56641cfdf2ec1d343cf331286073a409c8cb.png", + "icon3x": "uploads/channel/6bd671462cda55ac3b011e5acc561e391ccc3761.png", + "iconMono": "uploads/channel/ed002807c483978a337342bf06ca06432dd3ae10.png", + "locatorsSat": "dvb://13e.1450.d49,dvb://13e.3070.d49", + "locatorsDtt": "dvb://217c.d5.641,dvb://217c.71.44d,dvb://217c.8f.4e3", + "is_dtt": true, + "is_sat": true, + "channel_dtt": 1, + "channel_sat": 1, + "channel_catchup": 1000, + "is_catchup": false, + "is_hd": true, + "is_primary_sat": false, + "is_primary_dtt": false, + "channel_father": { + "id": 1, + "name": "Rai 1", + "editor": "RAI", + "icon": "uploads/channel/f39e198eb18f479198c8f2687614c9c83fae6b50.png", + "icon2x": "uploads/channel/e5ed9c3a28e5f5ae50fa0a368ee1e1c550ba50ce.png", + "iconMono": "uploads/channel/6975d36901670f2fed967ca5b7523a506ab8caad.png", + "locatorsSat": "", + "locatorsDtt": "dvb://13e.1.d49,dvb://13e.4000.d49,dvb://13e.4800.d49,dvb://13e.5000.d49,dvb://13e.5800.d49,dvb://13e.6000.d49,dvb://13e.6800.d49,dvb://13e.7000.d49,dvb://13e.7800.d49,dvb://13e.8800.d49,dvb://13e.9000.d49,dvb://13e.9800.d49,dvb://13e.a000.d49", + "is_dtt": false, + "is_sat": true, + "channel_dtt": 0, + "channel_sat": 101, + "channel_catchup": 1, + "is_catchup": false, + "is_hd": false, + "is_primary_sat": false, + "is_primary_dtt": false + } + }, + "images": [ + { + "url": "https://www.raiplay.it/resizegd/640x-/dl/img/2025/11/20/1763645586214_RaiMeteo2048x1152.png", + "size": "640x360", + "dimension": "12235", + "tag": "medium", + "priority": 0 + } + ] + }, + { + "id": 50367420, + "date_start": "25-02-2026 07:00", + "date_end": "25-02-2026 07:10", + "duration": 10, + "program": { + "id": 50367756, + "title": "Tg1", + "description": "", + "url_poster": "https://www.raiplay.it/resizegd/640x-/dl/img/2025/12/16/1765885004911_2048x1152.jpg", + "url_web": "/dirette/rai1", + "url_live": "http://www.rai.tv/dl/RaiTV/dirette/PublishingBlock-64203784-70f7-4b53-9d21-b14693850195.html", + "categories": [ + { + "id": 12, + "name": "Varie", + "slug": "varie" + } + ], + "genres": [] + }, + "channel": { + "id": 42, + "name": "Rai 1 HD", + "description": "Canale 1 tivùsat\r\nCanale 1 DTT", + "editor": "RAI", + "icon": "uploads/channel/dd39d13edc5e24dc57f355ab6030ec85ba4ad945.png", + "icon2x": "uploads/channel/d64e56641cfdf2ec1d343cf331286073a409c8cb.png", + "icon3x": "uploads/channel/6bd671462cda55ac3b011e5acc561e391ccc3761.png", + "iconMono": "uploads/channel/ed002807c483978a337342bf06ca06432dd3ae10.png", + "locatorsSat": "dvb://13e.1450.d49,dvb://13e.3070.d49", + "locatorsDtt": "dvb://217c.d5.641,dvb://217c.71.44d,dvb://217c.8f.4e3", + "is_dtt": true, + "is_sat": true, + "channel_dtt": 1, + "channel_sat": 1, + "channel_catchup": 1000, + "is_catchup": false, + "is_hd": true, + "is_primary_sat": false, + "is_primary_dtt": false, + "channel_father": { + "id": 1, + "name": "Rai 1", + "editor": "RAI", + "icon": "uploads/channel/f39e198eb18f479198c8f2687614c9c83fae6b50.png", + "icon2x": "uploads/channel/e5ed9c3a28e5f5ae50fa0a368ee1e1c550ba50ce.png", + "iconMono": "uploads/channel/6975d36901670f2fed967ca5b7523a506ab8caad.png", + "locatorsSat": "", + "locatorsDtt": "dvb://13e.1.d49,dvb://13e.4000.d49,dvb://13e.4800.d49,dvb://13e.5000.d49,dvb://13e.5800.d49,dvb://13e.6000.d49,dvb://13e.6800.d49,dvb://13e.7000.d49,dvb://13e.7800.d49,dvb://13e.8800.d49,dvb://13e.9000.d49,dvb://13e.9800.d49,dvb://13e.a000.d49", + "is_dtt": false, + "is_sat": true, + "channel_dtt": 0, + "channel_sat": 101, + "channel_catchup": 1, + "is_catchup": false, + "is_hd": false, + "is_primary_sat": false, + "is_primary_dtt": false + } + }, + "images": [ + { + "url": "https://www.raiplay.it/resizegd/640x-/dl/img/2025/12/16/1765885004911_2048x1152.jpg", + "size": "640x360", + "dimension": "86114", + "tag": "medium", + "priority": 0 + } + ] + }, + { + "id": 50367421, + "date_start": "25-02-2026 07:10", + "date_end": "25-02-2026 08:00", + "duration": 50, + "program": { + "id": 50367757, + "title": "1mattina News", + "description": "Maria Soave e Tiberio Timperi ci raccontano le notizie del giorno e l'attualità in tempo reale: dai fatti italiani a ciò che accade nel resto del mondo, dalla cronaca allo sport, dalla cultura allo spettacolo, grazie a ospiti in studio, collegamenti con gli inviati del Tg1 e i corrispondenti Rai e con interviste a grandi personaggi e protagonisti della cronaca.", + "url_poster": "https://www.raiplay.it/resizegd/640x-/dl/img/2025/09/05/1757079141048_2048x1152.jpg", + "url_web": "/dirette/rai1", + "url_live": "http://www.rai.tv/dl/RaiTV/dirette/PublishingBlock-64203784-70f7-4b53-9d21-b14693850195.html", + "categories": [ + { + "id": 12, + "name": "Varie", + "slug": "varie" + } + ], + "genres": [] + }, + "channel": { + "id": 42, + "name": "Rai 1 HD", + "description": "Canale 1 tivùsat\r\nCanale 1 DTT", + "editor": "RAI", + "icon": "uploads/channel/dd39d13edc5e24dc57f355ab6030ec85ba4ad945.png", + "icon2x": "uploads/channel/d64e56641cfdf2ec1d343cf331286073a409c8cb.png", + "icon3x": "uploads/channel/6bd671462cda55ac3b011e5acc561e391ccc3761.png", + "iconMono": "uploads/channel/ed002807c483978a337342bf06ca06432dd3ae10.png", + "locatorsSat": "dvb://13e.1450.d49,dvb://13e.3070.d49", + "locatorsDtt": "dvb://217c.d5.641,dvb://217c.71.44d,dvb://217c.8f.4e3", + "is_dtt": true, + "is_sat": true, + "channel_dtt": 1, + "channel_sat": 1, + "channel_catchup": 1000, + "is_catchup": false, + "is_hd": true, + "is_primary_sat": false, + "is_primary_dtt": false, + "channel_father": { + "id": 1, + "name": "Rai 1", + "editor": "RAI", + "icon": "uploads/channel/f39e198eb18f479198c8f2687614c9c83fae6b50.png", + "icon2x": "uploads/channel/e5ed9c3a28e5f5ae50fa0a368ee1e1c550ba50ce.png", + "iconMono": "uploads/channel/6975d36901670f2fed967ca5b7523a506ab8caad.png", + "locatorsSat": "", + "locatorsDtt": "dvb://13e.1.d49,dvb://13e.4000.d49,dvb://13e.4800.d49,dvb://13e.5000.d49,dvb://13e.5800.d49,dvb://13e.6000.d49,dvb://13e.6800.d49,dvb://13e.7000.d49,dvb://13e.7800.d49,dvb://13e.8800.d49,dvb://13e.9000.d49,dvb://13e.9800.d49,dvb://13e.a000.d49", + "is_dtt": false, + "is_sat": true, + "channel_dtt": 0, + "channel_sat": 101, + "channel_catchup": 1, + "is_catchup": false, + "is_hd": false, + "is_primary_sat": false, + "is_primary_dtt": false + } + }, + "images": [ + { + "url": "https://www.raiplay.it/resizegd/640x-/dl/img/2025/09/05/1757079141048_2048x1152.jpg", + "size": "640x360", + "dimension": "53465", + "tag": "medium", + "priority": 0 + } + ] + }, + { + "id": 50367422, + "date_start": "25-02-2026 08:00", + "date_end": "25-02-2026 08:30", + "duration": 30, + "program": { + "id": 50367758, + "title": "Tg1", + "description": "", + "url_poster": "https://www.raiplay.it/resizegd/640x-/dl/img/2025/12/16/1765885004911_2048x1152.jpg", + "url_web": "/dirette/rai1", + "url_live": "http://www.rai.tv/dl/RaiTV/dirette/PublishingBlock-64203784-70f7-4b53-9d21-b14693850195.html", + "categories": [ + { + "id": 12, + "name": "Varie", + "slug": "varie" + } + ], + "genres": [] + }, + "channel": { + "id": 42, + "name": "Rai 1 HD", + "description": "Canale 1 tivùsat\r\nCanale 1 DTT", + "editor": "RAI", + "icon": "uploads/channel/dd39d13edc5e24dc57f355ab6030ec85ba4ad945.png", + "icon2x": "uploads/channel/d64e56641cfdf2ec1d343cf331286073a409c8cb.png", + "icon3x": "uploads/channel/6bd671462cda55ac3b011e5acc561e391ccc3761.png", + "iconMono": "uploads/channel/ed002807c483978a337342bf06ca06432dd3ae10.png", + "locatorsSat": "dvb://13e.1450.d49,dvb://13e.3070.d49", + "locatorsDtt": "dvb://217c.d5.641,dvb://217c.71.44d,dvb://217c.8f.4e3", + "is_dtt": true, + "is_sat": true, + "channel_dtt": 1, + "channel_sat": 1, + "channel_catchup": 1000, + "is_catchup": false, + "is_hd": true, + "is_primary_sat": false, + "is_primary_dtt": false, + "channel_father": { + "id": 1, + "name": "Rai 1", + "editor": "RAI", + "icon": "uploads/channel/f39e198eb18f479198c8f2687614c9c83fae6b50.png", + "icon2x": "uploads/channel/e5ed9c3a28e5f5ae50fa0a368ee1e1c550ba50ce.png", + "iconMono": "uploads/channel/6975d36901670f2fed967ca5b7523a506ab8caad.png", + "locatorsSat": "", + "locatorsDtt": "dvb://13e.1.d49,dvb://13e.4000.d49,dvb://13e.4800.d49,dvb://13e.5000.d49,dvb://13e.5800.d49,dvb://13e.6000.d49,dvb://13e.6800.d49,dvb://13e.7000.d49,dvb://13e.7800.d49,dvb://13e.8800.d49,dvb://13e.9000.d49,dvb://13e.9800.d49,dvb://13e.a000.d49", + "is_dtt": false, + "is_sat": true, + "channel_dtt": 0, + "channel_sat": 101, + "channel_catchup": 1, + "is_catchup": false, + "is_hd": false, + "is_primary_sat": false, + "is_primary_dtt": false + } + }, + "images": [ + { + "url": "https://www.raiplay.it/resizegd/640x-/dl/img/2025/12/16/1765885004911_2048x1152.jpg", + "size": "640x360", + "dimension": "86114", + "tag": "medium", + "priority": 0 + } + ] + }, + { + "id": 50367423, + "date_start": "25-02-2026 08:30", + "date_end": "25-02-2026 08:35", + "duration": 5, + "program": { + "id": 50367759, + "title": "Che tempo fa", + "description": "", + "url_poster": "https://www.raiplay.it/resizegd/640x-/dl/img/2025/11/20/1763645586214_RaiMeteo2048x1152.png", + "url_web": "/dirette/rai1", + "url_live": "http://www.rai.tv/dl/RaiTV/dirette/PublishingBlock-64203784-70f7-4b53-9d21-b14693850195.html", + "categories": [ + { + "id": 12, + "name": "Varie", + "slug": "varie" + } + ], + "genres": [] + }, + "channel": { + "id": 42, + "name": "Rai 1 HD", + "description": "Canale 1 tivùsat\r\nCanale 1 DTT", + "editor": "RAI", + "icon": "uploads/channel/dd39d13edc5e24dc57f355ab6030ec85ba4ad945.png", + "icon2x": "uploads/channel/d64e56641cfdf2ec1d343cf331286073a409c8cb.png", + "icon3x": "uploads/channel/6bd671462cda55ac3b011e5acc561e391ccc3761.png", + "iconMono": "uploads/channel/ed002807c483978a337342bf06ca06432dd3ae10.png", + "locatorsSat": "dvb://13e.1450.d49,dvb://13e.3070.d49", + "locatorsDtt": "dvb://217c.d5.641,dvb://217c.71.44d,dvb://217c.8f.4e3", + "is_dtt": true, + "is_sat": true, + "channel_dtt": 1, + "channel_sat": 1, + "channel_catchup": 1000, + "is_catchup": false, + "is_hd": true, + "is_primary_sat": false, + "is_primary_dtt": false, + "channel_father": { + "id": 1, + "name": "Rai 1", + "editor": "RAI", + "icon": "uploads/channel/f39e198eb18f479198c8f2687614c9c83fae6b50.png", + "icon2x": "uploads/channel/e5ed9c3a28e5f5ae50fa0a368ee1e1c550ba50ce.png", + "iconMono": "uploads/channel/6975d36901670f2fed967ca5b7523a506ab8caad.png", + "locatorsSat": "", + "locatorsDtt": "dvb://13e.1.d49,dvb://13e.4000.d49,dvb://13e.4800.d49,dvb://13e.5000.d49,dvb://13e.5800.d49,dvb://13e.6000.d49,dvb://13e.6800.d49,dvb://13e.7000.d49,dvb://13e.7800.d49,dvb://13e.8800.d49,dvb://13e.9000.d49,dvb://13e.9800.d49,dvb://13e.a000.d49", + "is_dtt": false, + "is_sat": true, + "channel_dtt": 0, + "channel_sat": 101, + "channel_catchup": 1, + "is_catchup": false, + "is_hd": false, + "is_primary_sat": false, + "is_primary_dtt": false + } + }, + "images": [ + { + "url": "https://www.raiplay.it/resizegd/640x-/dl/img/2025/11/20/1763645586214_RaiMeteo2048x1152.png", + "size": "640x360", + "dimension": "12235", + "tag": "medium", + "priority": 0 + } + ] + }, + { + "id": 50367424, + "date_start": "25-02-2026 08:35", + "date_end": "25-02-2026 08:55", + "duration": 20, + "program": { + "id": 50367760, + "title": "Unomattina", + "description": "Daniela Ferolla e Massimiliano Ossini guidano il racconto della realtà con un taglio di maggiore approfondimento, dai temi più caldi come il lavoro, l'occupazione, l'economia e i consumi, fino alla salute, agli stili di vita, alla provincia italiana, all'ambiente e alla sostenibilità, grazie agli ospiti in studio, ai filmati e ai collegamenti in diretta.", + "url_poster": "https://www.raiplay.it/resizegd/640x-/dl/img/2023/09/08/1694187267544_2048x1152.jpg", + "url_web": "/dirette/rai1", + "url_live": "http://www.rai.tv/dl/RaiTV/dirette/PublishingBlock-64203784-70f7-4b53-9d21-b14693850195.html", + "categories": [ + { + "id": 12, + "name": "Varie", + "slug": "varie" + } + ], + "genres": [] + }, + "channel": { + "id": 42, + "name": "Rai 1 HD", + "description": "Canale 1 tivùsat\r\nCanale 1 DTT", + "editor": "RAI", + "icon": "uploads/channel/dd39d13edc5e24dc57f355ab6030ec85ba4ad945.png", + "icon2x": "uploads/channel/d64e56641cfdf2ec1d343cf331286073a409c8cb.png", + "icon3x": "uploads/channel/6bd671462cda55ac3b011e5acc561e391ccc3761.png", + "iconMono": "uploads/channel/ed002807c483978a337342bf06ca06432dd3ae10.png", + "locatorsSat": "dvb://13e.1450.d49,dvb://13e.3070.d49", + "locatorsDtt": "dvb://217c.d5.641,dvb://217c.71.44d,dvb://217c.8f.4e3", + "is_dtt": true, + "is_sat": true, + "channel_dtt": 1, + "channel_sat": 1, + "channel_catchup": 1000, + "is_catchup": false, + "is_hd": true, + "is_primary_sat": false, + "is_primary_dtt": false, + "channel_father": { + "id": 1, + "name": "Rai 1", + "editor": "RAI", + "icon": "uploads/channel/f39e198eb18f479198c8f2687614c9c83fae6b50.png", + "icon2x": "uploads/channel/e5ed9c3a28e5f5ae50fa0a368ee1e1c550ba50ce.png", + "iconMono": "uploads/channel/6975d36901670f2fed967ca5b7523a506ab8caad.png", + "locatorsSat": "", + "locatorsDtt": "dvb://13e.1.d49,dvb://13e.4000.d49,dvb://13e.4800.d49,dvb://13e.5000.d49,dvb://13e.5800.d49,dvb://13e.6000.d49,dvb://13e.6800.d49,dvb://13e.7000.d49,dvb://13e.7800.d49,dvb://13e.8800.d49,dvb://13e.9000.d49,dvb://13e.9800.d49,dvb://13e.a000.d49", + "is_dtt": false, + "is_sat": true, + "channel_dtt": 0, + "channel_sat": 101, + "channel_catchup": 1, + "is_catchup": false, + "is_hd": false, + "is_primary_sat": false, + "is_primary_dtt": false + } + }, + "images": [ + { + "url": "https://www.raiplay.it/resizegd/640x-/dl/img/2023/09/08/1694187267544_2048x1152.jpg", + "size": "640x360", + "dimension": "37961", + "tag": "medium", + "priority": 0 + } + ] + }, + { + "id": 50367425, + "date_start": "25-02-2026 08:55", + "date_end": "25-02-2026 09:00", + "duration": 5, + "program": { + "id": 50367761, + "title": "Tg Parlamento", + "description": "", + "url_poster": "https://www.raiplay.it/resizegd/640x-/dl/img/2021/07/20/1626761017898_TG_Parlamento_2048x1152.jpg", + "url_web": "/dirette/rai1", + "url_live": "http://www.rai.tv/dl/RaiTV/dirette/PublishingBlock-64203784-70f7-4b53-9d21-b14693850195.html", + "categories": [ + { + "id": 12, + "name": "Varie", + "slug": "varie" + } + ], + "genres": [] + }, + "channel": { + "id": 42, + "name": "Rai 1 HD", + "description": "Canale 1 tivùsat\r\nCanale 1 DTT", + "editor": "RAI", + "icon": "uploads/channel/dd39d13edc5e24dc57f355ab6030ec85ba4ad945.png", + "icon2x": "uploads/channel/d64e56641cfdf2ec1d343cf331286073a409c8cb.png", + "icon3x": "uploads/channel/6bd671462cda55ac3b011e5acc561e391ccc3761.png", + "iconMono": "uploads/channel/ed002807c483978a337342bf06ca06432dd3ae10.png", + "locatorsSat": "dvb://13e.1450.d49,dvb://13e.3070.d49", + "locatorsDtt": "dvb://217c.d5.641,dvb://217c.71.44d,dvb://217c.8f.4e3", + "is_dtt": true, + "is_sat": true, + "channel_dtt": 1, + "channel_sat": 1, + "channel_catchup": 1000, + "is_catchup": false, + "is_hd": true, + "is_primary_sat": false, + "is_primary_dtt": false, + "channel_father": { + "id": 1, + "name": "Rai 1", + "editor": "RAI", + "icon": "uploads/channel/f39e198eb18f479198c8f2687614c9c83fae6b50.png", + "icon2x": "uploads/channel/e5ed9c3a28e5f5ae50fa0a368ee1e1c550ba50ce.png", + "iconMono": "uploads/channel/6975d36901670f2fed967ca5b7523a506ab8caad.png", + "locatorsSat": "", + "locatorsDtt": "dvb://13e.1.d49,dvb://13e.4000.d49,dvb://13e.4800.d49,dvb://13e.5000.d49,dvb://13e.5800.d49,dvb://13e.6000.d49,dvb://13e.6800.d49,dvb://13e.7000.d49,dvb://13e.7800.d49,dvb://13e.8800.d49,dvb://13e.9000.d49,dvb://13e.9800.d49,dvb://13e.a000.d49", + "is_dtt": false, + "is_sat": true, + "channel_dtt": 0, + "channel_sat": 101, + "channel_catchup": 1, + "is_catchup": false, + "is_hd": false, + "is_primary_sat": false, + "is_primary_dtt": false + } + }, + "images": [ + { + "url": "https://www.raiplay.it/resizegd/640x-/dl/img/2021/07/20/1626761017898_TG_Parlamento_2048x1152.jpg", + "size": "640x360", + "dimension": "99251", + "tag": "medium", + "priority": 0 + } + ] + }, + { + "id": 50367426, + "date_start": "25-02-2026 09:00", + "date_end": "25-02-2026 09:03", + "duration": 3, + "program": { + "id": 50367762, + "title": "TG1 LIS", + "description": "", + "url_poster": "https://www.raiplay.it/resizegd/640x-/dl/img/2023/03/31/1680272500388_TG1_LIS_per_RaiPlay_ORIZZONTALE.jpg", + "url_web": "/dirette/rai1", + "url_live": "http://www.rai.tv/dl/RaiTV/dirette/PublishingBlock-64203784-70f7-4b53-9d21-b14693850195.html", + "categories": [ + { + "id": 12, + "name": "Varie", + "slug": "varie" + } + ], + "genres": [] + }, + "channel": { + "id": 42, + "name": "Rai 1 HD", + "description": "Canale 1 tivùsat\r\nCanale 1 DTT", + "editor": "RAI", + "icon": "uploads/channel/dd39d13edc5e24dc57f355ab6030ec85ba4ad945.png", + "icon2x": "uploads/channel/d64e56641cfdf2ec1d343cf331286073a409c8cb.png", + "icon3x": "uploads/channel/6bd671462cda55ac3b011e5acc561e391ccc3761.png", + "iconMono": "uploads/channel/ed002807c483978a337342bf06ca06432dd3ae10.png", + "locatorsSat": "dvb://13e.1450.d49,dvb://13e.3070.d49", + "locatorsDtt": "dvb://217c.d5.641,dvb://217c.71.44d,dvb://217c.8f.4e3", + "is_dtt": true, + "is_sat": true, + "channel_dtt": 1, + "channel_sat": 1, + "channel_catchup": 1000, + "is_catchup": false, + "is_hd": true, + "is_primary_sat": false, + "is_primary_dtt": false, + "channel_father": { + "id": 1, + "name": "Rai 1", + "editor": "RAI", + "icon": "uploads/channel/f39e198eb18f479198c8f2687614c9c83fae6b50.png", + "icon2x": "uploads/channel/e5ed9c3a28e5f5ae50fa0a368ee1e1c550ba50ce.png", + "iconMono": "uploads/channel/6975d36901670f2fed967ca5b7523a506ab8caad.png", + "locatorsSat": "", + "locatorsDtt": "dvb://13e.1.d49,dvb://13e.4000.d49,dvb://13e.4800.d49,dvb://13e.5000.d49,dvb://13e.5800.d49,dvb://13e.6000.d49,dvb://13e.6800.d49,dvb://13e.7000.d49,dvb://13e.7800.d49,dvb://13e.8800.d49,dvb://13e.9000.d49,dvb://13e.9800.d49,dvb://13e.a000.d49", + "is_dtt": false, + "is_sat": true, + "channel_dtt": 0, + "channel_sat": 101, + "channel_catchup": 1, + "is_catchup": false, + "is_hd": false, + "is_primary_sat": false, + "is_primary_dtt": false + } + }, + "images": [ + { + "url": "https://www.raiplay.it/resizegd/640x-/dl/img/2023/03/31/1680272500388_TG1_LIS_per_RaiPlay_ORIZZONTALE.jpg", + "size": "640x360", + "dimension": "55826", + "tag": "medium", + "priority": 0 + } + ] + }, + { + "id": 50367427, + "date_start": "25-02-2026 09:03", + "date_end": "25-02-2026 09:40", + "duration": 37, + "program": { + "id": 50367763, + "title": "Unomattina", + "description": "Daniela Ferolla e Massimiliano Ossini guidano il racconto della realtà con un taglio di maggiore approfondimento, dai temi più caldi come il lavoro, l'occupazione, l'economia e i consumi, fino alla salute, agli stili di vita, alla provincia italiana, all'ambiente e alla sostenibilità, grazie agli ospiti in studio, ai filmati e ai collegamenti in diretta.", + "url_poster": "https://www.raiplay.it/resizegd/640x-/dl/img/2023/09/08/1694187267544_2048x1152.jpg", + "url_web": "/dirette/rai1", + "url_live": "http://www.rai.tv/dl/RaiTV/dirette/PublishingBlock-64203784-70f7-4b53-9d21-b14693850195.html", + "categories": [ + { + "id": 12, + "name": "Varie", + "slug": "varie" + } + ], + "genres": [] + }, + "channel": { + "id": 42, + "name": "Rai 1 HD", + "description": "Canale 1 tivùsat\r\nCanale 1 DTT", + "editor": "RAI", + "icon": "uploads/channel/dd39d13edc5e24dc57f355ab6030ec85ba4ad945.png", + "icon2x": "uploads/channel/d64e56641cfdf2ec1d343cf331286073a409c8cb.png", + "icon3x": "uploads/channel/6bd671462cda55ac3b011e5acc561e391ccc3761.png", + "iconMono": "uploads/channel/ed002807c483978a337342bf06ca06432dd3ae10.png", + "locatorsSat": "dvb://13e.1450.d49,dvb://13e.3070.d49", + "locatorsDtt": "dvb://217c.d5.641,dvb://217c.71.44d,dvb://217c.8f.4e3", + "is_dtt": true, + "is_sat": true, + "channel_dtt": 1, + "channel_sat": 1, + "channel_catchup": 1000, + "is_catchup": false, + "is_hd": true, + "is_primary_sat": false, + "is_primary_dtt": false, + "channel_father": { + "id": 1, + "name": "Rai 1", + "editor": "RAI", + "icon": "uploads/channel/f39e198eb18f479198c8f2687614c9c83fae6b50.png", + "icon2x": "uploads/channel/e5ed9c3a28e5f5ae50fa0a368ee1e1c550ba50ce.png", + "iconMono": "uploads/channel/6975d36901670f2fed967ca5b7523a506ab8caad.png", + "locatorsSat": "", + "locatorsDtt": "dvb://13e.1.d49,dvb://13e.4000.d49,dvb://13e.4800.d49,dvb://13e.5000.d49,dvb://13e.5800.d49,dvb://13e.6000.d49,dvb://13e.6800.d49,dvb://13e.7000.d49,dvb://13e.7800.d49,dvb://13e.8800.d49,dvb://13e.9000.d49,dvb://13e.9800.d49,dvb://13e.a000.d49", + "is_dtt": false, + "is_sat": true, + "channel_dtt": 0, + "channel_sat": 101, + "channel_catchup": 1, + "is_catchup": false, + "is_hd": false, + "is_primary_sat": false, + "is_primary_dtt": false + } + }, + "images": [ + { + "url": "https://www.raiplay.it/resizegd/640x-/dl/img/2023/09/08/1694187267544_2048x1152.jpg", + "size": "640x360", + "dimension": "37961", + "tag": "medium", + "priority": 0 + } + ] + }, + { + "id": 50367428, + "date_start": "25-02-2026 09:40", + "date_end": "25-02-2026 09:42", + "duration": 2, + "program": { + "id": 50367764, + "title": "Meteo verde", + "description": "Aggiornamento alle previsioni meteo del weekend", + "url_poster": "https://www.raiplay.it/resizegd/640x-/dl/img/2025/11/20/1763645586214_RaiMeteo2048x1152.png", + "url_web": "/dirette/rai1", + "url_live": "http://www.rai.tv/dl/RaiTV/dirette/PublishingBlock-64203784-70f7-4b53-9d21-b14693850195.html", + "categories": [ + { + "id": 12, + "name": "Varie", + "slug": "varie" + } + ], + "genres": [] + }, + "channel": { + "id": 42, + "name": "Rai 1 HD", + "description": "Canale 1 tivùsat\r\nCanale 1 DTT", + "editor": "RAI", + "icon": "uploads/channel/dd39d13edc5e24dc57f355ab6030ec85ba4ad945.png", + "icon2x": "uploads/channel/d64e56641cfdf2ec1d343cf331286073a409c8cb.png", + "icon3x": "uploads/channel/6bd671462cda55ac3b011e5acc561e391ccc3761.png", + "iconMono": "uploads/channel/ed002807c483978a337342bf06ca06432dd3ae10.png", + "locatorsSat": "dvb://13e.1450.d49,dvb://13e.3070.d49", + "locatorsDtt": "dvb://217c.d5.641,dvb://217c.71.44d,dvb://217c.8f.4e3", + "is_dtt": true, + "is_sat": true, + "channel_dtt": 1, + "channel_sat": 1, + "channel_catchup": 1000, + "is_catchup": false, + "is_hd": true, + "is_primary_sat": false, + "is_primary_dtt": false, + "channel_father": { + "id": 1, + "name": "Rai 1", + "editor": "RAI", + "icon": "uploads/channel/f39e198eb18f479198c8f2687614c9c83fae6b50.png", + "icon2x": "uploads/channel/e5ed9c3a28e5f5ae50fa0a368ee1e1c550ba50ce.png", + "iconMono": "uploads/channel/6975d36901670f2fed967ca5b7523a506ab8caad.png", + "locatorsSat": "", + "locatorsDtt": "dvb://13e.1.d49,dvb://13e.4000.d49,dvb://13e.4800.d49,dvb://13e.5000.d49,dvb://13e.5800.d49,dvb://13e.6000.d49,dvb://13e.6800.d49,dvb://13e.7000.d49,dvb://13e.7800.d49,dvb://13e.8800.d49,dvb://13e.9000.d49,dvb://13e.9800.d49,dvb://13e.a000.d49", + "is_dtt": false, + "is_sat": true, + "channel_dtt": 0, + "channel_sat": 101, + "channel_catchup": 1, + "is_catchup": false, + "is_hd": false, + "is_primary_sat": false, + "is_primary_dtt": false + } + }, + "images": [ + { + "url": "https://www.raiplay.it/resizegd/640x-/dl/img/2025/11/20/1763645586214_RaiMeteo2048x1152.png", + "size": "640x360", + "dimension": "12235", + "tag": "medium", + "priority": 0 + } + ] + }, + { + "id": 50367429, + "date_start": "25-02-2026 09:42", + "date_end": "25-02-2026 09:50", + "duration": 8, + "program": { + "id": 50367765, + "title": "Unomattina", + "description": "Daniela Ferolla e Massimiliano Ossini guidano il racconto della realtà con un taglio di maggiore approfondimento, dai temi più caldi come il lavoro, l'occupazione, l'economia e i consumi, fino alla salute, agli stili di vita, alla provincia italiana, all'ambiente e alla sostenibilità, grazie agli ospiti in studio, ai filmati e ai collegamenti in diretta.", + "url_poster": "https://www.raiplay.it/resizegd/640x-/dl/img/2023/09/08/1694187267544_2048x1152.jpg", + "url_web": "/dirette/rai1", + "url_live": "http://www.rai.tv/dl/RaiTV/dirette/PublishingBlock-64203784-70f7-4b53-9d21-b14693850195.html", + "categories": [ + { + "id": 12, + "name": "Varie", + "slug": "varie" + } + ], + "genres": [] + }, + "channel": { + "id": 42, + "name": "Rai 1 HD", + "description": "Canale 1 tivùsat\r\nCanale 1 DTT", + "editor": "RAI", + "icon": "uploads/channel/dd39d13edc5e24dc57f355ab6030ec85ba4ad945.png", + "icon2x": "uploads/channel/d64e56641cfdf2ec1d343cf331286073a409c8cb.png", + "icon3x": "uploads/channel/6bd671462cda55ac3b011e5acc561e391ccc3761.png", + "iconMono": "uploads/channel/ed002807c483978a337342bf06ca06432dd3ae10.png", + "locatorsSat": "dvb://13e.1450.d49,dvb://13e.3070.d49", + "locatorsDtt": "dvb://217c.d5.641,dvb://217c.71.44d,dvb://217c.8f.4e3", + "is_dtt": true, + "is_sat": true, + "channel_dtt": 1, + "channel_sat": 1, + "channel_catchup": 1000, + "is_catchup": false, + "is_hd": true, + "is_primary_sat": false, + "is_primary_dtt": false, + "channel_father": { + "id": 1, + "name": "Rai 1", + "editor": "RAI", + "icon": "uploads/channel/f39e198eb18f479198c8f2687614c9c83fae6b50.png", + "icon2x": "uploads/channel/e5ed9c3a28e5f5ae50fa0a368ee1e1c550ba50ce.png", + "iconMono": "uploads/channel/6975d36901670f2fed967ca5b7523a506ab8caad.png", + "locatorsSat": "", + "locatorsDtt": "dvb://13e.1.d49,dvb://13e.4000.d49,dvb://13e.4800.d49,dvb://13e.5000.d49,dvb://13e.5800.d49,dvb://13e.6000.d49,dvb://13e.6800.d49,dvb://13e.7000.d49,dvb://13e.7800.d49,dvb://13e.8800.d49,dvb://13e.9000.d49,dvb://13e.9800.d49,dvb://13e.a000.d49", + "is_dtt": false, + "is_sat": true, + "channel_dtt": 0, + "channel_sat": 101, + "channel_catchup": 1, + "is_catchup": false, + "is_hd": false, + "is_primary_sat": false, + "is_primary_dtt": false + } + }, + "images": [ + { + "url": "https://www.raiplay.it/resizegd/640x-/dl/img/2023/09/08/1694187267544_2048x1152.jpg", + "size": "640x360", + "dimension": "37961", + "tag": "medium", + "priority": 0 + } + ] + }, + { + "id": 50367430, + "date_start": "25-02-2026 09:50", + "date_end": "25-02-2026 11:55", + "duration": 125, + "program": { + "id": 50367766, + "title": "Storie italiane", + "description": "Eleonora Daniele approfondisce i temi di stretta attualità e i principali casi di cronaca con i protagonisti che raccontano in prima persona le loro esperienze.", + "url_poster": "https://www.raiplay.it/resizegd/640x-/dl/img/2025/09/08/1757312584333_2048x1152.jpg", + "url_web": "/dirette/rai1", + "url_live": "http://www.rai.tv/dl/RaiTV/dirette/PublishingBlock-64203784-70f7-4b53-9d21-b14693850195.html", + "categories": [ + { + "id": 12, + "name": "Varie", + "slug": "varie" + } + ], + "genres": [] + }, + "channel": { + "id": 42, + "name": "Rai 1 HD", + "description": "Canale 1 tivùsat\r\nCanale 1 DTT", + "editor": "RAI", + "icon": "uploads/channel/dd39d13edc5e24dc57f355ab6030ec85ba4ad945.png", + "icon2x": "uploads/channel/d64e56641cfdf2ec1d343cf331286073a409c8cb.png", + "icon3x": "uploads/channel/6bd671462cda55ac3b011e5acc561e391ccc3761.png", + "iconMono": "uploads/channel/ed002807c483978a337342bf06ca06432dd3ae10.png", + "locatorsSat": "dvb://13e.1450.d49,dvb://13e.3070.d49", + "locatorsDtt": "dvb://217c.d5.641,dvb://217c.71.44d,dvb://217c.8f.4e3", + "is_dtt": true, + "is_sat": true, + "channel_dtt": 1, + "channel_sat": 1, + "channel_catchup": 1000, + "is_catchup": false, + "is_hd": true, + "is_primary_sat": false, + "is_primary_dtt": false, + "channel_father": { + "id": 1, + "name": "Rai 1", + "editor": "RAI", + "icon": "uploads/channel/f39e198eb18f479198c8f2687614c9c83fae6b50.png", + "icon2x": "uploads/channel/e5ed9c3a28e5f5ae50fa0a368ee1e1c550ba50ce.png", + "iconMono": "uploads/channel/6975d36901670f2fed967ca5b7523a506ab8caad.png", + "locatorsSat": "", + "locatorsDtt": "dvb://13e.1.d49,dvb://13e.4000.d49,dvb://13e.4800.d49,dvb://13e.5000.d49,dvb://13e.5800.d49,dvb://13e.6000.d49,dvb://13e.6800.d49,dvb://13e.7000.d49,dvb://13e.7800.d49,dvb://13e.8800.d49,dvb://13e.9000.d49,dvb://13e.9800.d49,dvb://13e.a000.d49", + "is_dtt": false, + "is_sat": true, + "channel_dtt": 0, + "channel_sat": 101, + "channel_catchup": 1, + "is_catchup": false, + "is_hd": false, + "is_primary_sat": false, + "is_primary_dtt": false + } + }, + "images": [ + { + "url": "https://www.raiplay.it/resizegd/640x-/dl/img/2025/09/08/1757312584333_2048x1152.jpg", + "size": "640x360", + "dimension": "70074", + "tag": "medium", + "priority": 0 + } + ] + }, + { + "id": 50367431, + "date_start": "25-02-2026 11:55", + "date_end": "25-02-2026 13:30", + "duration": 95, + "program": { + "id": 50367767, + "title": "È sempre mezzogiorno!", + "description": "Antonella Clerici conduce lo show quotidiano che usa la cucina come contesto in cui parlare di attualità con gli ospiti fissi del programma e per giocare con il pubblico a casa.", + "url_poster": "https://www.raiplay.it/resizegd/640x-/dl/img/2023/09/08/1694191835702_2048x1152.jpg", + "url_web": "/dirette/rai1", + "url_live": "http://www.rai.tv/dl/RaiTV/dirette/PublishingBlock-64203784-70f7-4b53-9d21-b14693850195.html", + "categories": [ + { + "id": 12, + "name": "Varie", + "slug": "varie" + } + ], + "genres": [ + { + "id": 21, + "name": "Varietà", + "slug": "varieta" + } + ] + }, + "channel": { + "id": 42, + "name": "Rai 1 HD", + "description": "Canale 1 tivùsat\r\nCanale 1 DTT", + "editor": "RAI", + "icon": "uploads/channel/dd39d13edc5e24dc57f355ab6030ec85ba4ad945.png", + "icon2x": "uploads/channel/d64e56641cfdf2ec1d343cf331286073a409c8cb.png", + "icon3x": "uploads/channel/6bd671462cda55ac3b011e5acc561e391ccc3761.png", + "iconMono": "uploads/channel/ed002807c483978a337342bf06ca06432dd3ae10.png", + "locatorsSat": "dvb://13e.1450.d49,dvb://13e.3070.d49", + "locatorsDtt": "dvb://217c.d5.641,dvb://217c.71.44d,dvb://217c.8f.4e3", + "is_dtt": true, + "is_sat": true, + "channel_dtt": 1, + "channel_sat": 1, + "channel_catchup": 1000, + "is_catchup": false, + "is_hd": true, + "is_primary_sat": false, + "is_primary_dtt": false, + "channel_father": { + "id": 1, + "name": "Rai 1", + "editor": "RAI", + "icon": "uploads/channel/f39e198eb18f479198c8f2687614c9c83fae6b50.png", + "icon2x": "uploads/channel/e5ed9c3a28e5f5ae50fa0a368ee1e1c550ba50ce.png", + "iconMono": "uploads/channel/6975d36901670f2fed967ca5b7523a506ab8caad.png", + "locatorsSat": "", + "locatorsDtt": "dvb://13e.1.d49,dvb://13e.4000.d49,dvb://13e.4800.d49,dvb://13e.5000.d49,dvb://13e.5800.d49,dvb://13e.6000.d49,dvb://13e.6800.d49,dvb://13e.7000.d49,dvb://13e.7800.d49,dvb://13e.8800.d49,dvb://13e.9000.d49,dvb://13e.9800.d49,dvb://13e.a000.d49", + "is_dtt": false, + "is_sat": true, + "channel_dtt": 0, + "channel_sat": 101, + "channel_catchup": 1, + "is_catchup": false, + "is_hd": false, + "is_primary_sat": false, + "is_primary_dtt": false + } + }, + "images": [ + { + "url": "https://www.raiplay.it/resizegd/640x-/dl/img/2023/09/08/1694191835702_2048x1152.jpg", + "size": "640x360", + "dimension": "62351", + "tag": "medium", + "priority": 0 + } + ] + }, + { + "id": 50367432, + "date_start": "25-02-2026 13:30", + "date_end": "25-02-2026 14:05", + "duration": 35, + "program": { + "id": 50367768, + "title": "Tg1", + "description": "", + "url_poster": "https://www.raiplay.it/resizegd/640x-/dl/img/2025/12/16/1765885004911_2048x1152.jpg", + "url_web": "/dirette/rai1", + "url_live": "http://www.rai.tv/dl/RaiTV/dirette/PublishingBlock-64203784-70f7-4b53-9d21-b14693850195.html", + "categories": [ + { + "id": 12, + "name": "Varie", + "slug": "varie" + } + ], + "genres": [] + }, + "channel": { + "id": 42, + "name": "Rai 1 HD", + "description": "Canale 1 tivùsat\r\nCanale 1 DTT", + "editor": "RAI", + "icon": "uploads/channel/dd39d13edc5e24dc57f355ab6030ec85ba4ad945.png", + "icon2x": "uploads/channel/d64e56641cfdf2ec1d343cf331286073a409c8cb.png", + "icon3x": "uploads/channel/6bd671462cda55ac3b011e5acc561e391ccc3761.png", + "iconMono": "uploads/channel/ed002807c483978a337342bf06ca06432dd3ae10.png", + "locatorsSat": "dvb://13e.1450.d49,dvb://13e.3070.d49", + "locatorsDtt": "dvb://217c.d5.641,dvb://217c.71.44d,dvb://217c.8f.4e3", + "is_dtt": true, + "is_sat": true, + "channel_dtt": 1, + "channel_sat": 1, + "channel_catchup": 1000, + "is_catchup": false, + "is_hd": true, + "is_primary_sat": false, + "is_primary_dtt": false, + "channel_father": { + "id": 1, + "name": "Rai 1", + "editor": "RAI", + "icon": "uploads/channel/f39e198eb18f479198c8f2687614c9c83fae6b50.png", + "icon2x": "uploads/channel/e5ed9c3a28e5f5ae50fa0a368ee1e1c550ba50ce.png", + "iconMono": "uploads/channel/6975d36901670f2fed967ca5b7523a506ab8caad.png", + "locatorsSat": "", + "locatorsDtt": "dvb://13e.1.d49,dvb://13e.4000.d49,dvb://13e.4800.d49,dvb://13e.5000.d49,dvb://13e.5800.d49,dvb://13e.6000.d49,dvb://13e.6800.d49,dvb://13e.7000.d49,dvb://13e.7800.d49,dvb://13e.8800.d49,dvb://13e.9000.d49,dvb://13e.9800.d49,dvb://13e.a000.d49", + "is_dtt": false, + "is_sat": true, + "channel_dtt": 0, + "channel_sat": 101, + "channel_catchup": 1, + "is_catchup": false, + "is_hd": false, + "is_primary_sat": false, + "is_primary_dtt": false + } + }, + "images": [ + { + "url": "https://www.raiplay.it/resizegd/640x-/dl/img/2025/12/16/1765885004911_2048x1152.jpg", + "size": "640x360", + "dimension": "86114", + "tag": "medium", + "priority": 0 + } + ] + }, + { + "id": 50367433, + "date_start": "25-02-2026 14:05", + "date_end": "25-02-2026 16:00", + "duration": 115, + "program": { + "id": 50367769, + "title": "La volta buona", + "description": "Caterina Balivo ci racconta le notizie di costume e accoglie i suoi ospiti tra vecchi ricordi che li legano al mondo dello spettacolo e della musica, amori, amicizie e vita in famiglia.", + "url_poster": "https://www.raiplay.it/resizegd/640x-/dl/img/2025/09/30/1759235351353_2048x1152.jpg", + "url_web": "/dirette/rai1", + "url_live": "http://www.rai.tv/dl/RaiTV/dirette/PublishingBlock-64203784-70f7-4b53-9d21-b14693850195.html", + "categories": [ + { + "id": 12, + "name": "Varie", + "slug": "varie" + } + ], + "genres": [] + }, + "channel": { + "id": 42, + "name": "Rai 1 HD", + "description": "Canale 1 tivùsat\r\nCanale 1 DTT", + "editor": "RAI", + "icon": "uploads/channel/dd39d13edc5e24dc57f355ab6030ec85ba4ad945.png", + "icon2x": "uploads/channel/d64e56641cfdf2ec1d343cf331286073a409c8cb.png", + "icon3x": "uploads/channel/6bd671462cda55ac3b011e5acc561e391ccc3761.png", + "iconMono": "uploads/channel/ed002807c483978a337342bf06ca06432dd3ae10.png", + "locatorsSat": "dvb://13e.1450.d49,dvb://13e.3070.d49", + "locatorsDtt": "dvb://217c.d5.641,dvb://217c.71.44d,dvb://217c.8f.4e3", + "is_dtt": true, + "is_sat": true, + "channel_dtt": 1, + "channel_sat": 1, + "channel_catchup": 1000, + "is_catchup": false, + "is_hd": true, + "is_primary_sat": false, + "is_primary_dtt": false, + "channel_father": { + "id": 1, + "name": "Rai 1", + "editor": "RAI", + "icon": "uploads/channel/f39e198eb18f479198c8f2687614c9c83fae6b50.png", + "icon2x": "uploads/channel/e5ed9c3a28e5f5ae50fa0a368ee1e1c550ba50ce.png", + "iconMono": "uploads/channel/6975d36901670f2fed967ca5b7523a506ab8caad.png", + "locatorsSat": "", + "locatorsDtt": "dvb://13e.1.d49,dvb://13e.4000.d49,dvb://13e.4800.d49,dvb://13e.5000.d49,dvb://13e.5800.d49,dvb://13e.6000.d49,dvb://13e.6800.d49,dvb://13e.7000.d49,dvb://13e.7800.d49,dvb://13e.8800.d49,dvb://13e.9000.d49,dvb://13e.9800.d49,dvb://13e.a000.d49", + "is_dtt": false, + "is_sat": true, + "channel_dtt": 0, + "channel_sat": 101, + "channel_catchup": 1, + "is_catchup": false, + "is_hd": false, + "is_primary_sat": false, + "is_primary_dtt": false + } + }, + "images": [ + { + "url": "https://www.raiplay.it/resizegd/640x-/dl/img/2025/09/30/1759235351353_2048x1152.jpg", + "size": "640x360", + "dimension": "99879", + "tag": "medium", + "priority": 0 + } + ] + }, + { + "id": 50367434, + "date_start": "25-02-2026 16:00", + "date_end": "25-02-2026 16:10", + "duration": 10, + "program": { + "id": 50367770, + "title": "Tg1", + "description": "", + "url_poster": "https://www.raiplay.it/resizegd/640x-/dl/img/2025/12/16/1765885004911_2048x1152.jpg", + "url_web": "/dirette/rai1", + "url_live": "http://www.rai.tv/dl/RaiTV/dirette/PublishingBlock-64203784-70f7-4b53-9d21-b14693850195.html", + "categories": [ + { + "id": 12, + "name": "Varie", + "slug": "varie" + } + ], + "genres": [] + }, + "channel": { + "id": 42, + "name": "Rai 1 HD", + "description": "Canale 1 tivùsat\r\nCanale 1 DTT", + "editor": "RAI", + "icon": "uploads/channel/dd39d13edc5e24dc57f355ab6030ec85ba4ad945.png", + "icon2x": "uploads/channel/d64e56641cfdf2ec1d343cf331286073a409c8cb.png", + "icon3x": "uploads/channel/6bd671462cda55ac3b011e5acc561e391ccc3761.png", + "iconMono": "uploads/channel/ed002807c483978a337342bf06ca06432dd3ae10.png", + "locatorsSat": "dvb://13e.1450.d49,dvb://13e.3070.d49", + "locatorsDtt": "dvb://217c.d5.641,dvb://217c.71.44d,dvb://217c.8f.4e3", + "is_dtt": true, + "is_sat": true, + "channel_dtt": 1, + "channel_sat": 1, + "channel_catchup": 1000, + "is_catchup": false, + "is_hd": true, + "is_primary_sat": false, + "is_primary_dtt": false, + "channel_father": { + "id": 1, + "name": "Rai 1", + "editor": "RAI", + "icon": "uploads/channel/f39e198eb18f479198c8f2687614c9c83fae6b50.png", + "icon2x": "uploads/channel/e5ed9c3a28e5f5ae50fa0a368ee1e1c550ba50ce.png", + "iconMono": "uploads/channel/6975d36901670f2fed967ca5b7523a506ab8caad.png", + "locatorsSat": "", + "locatorsDtt": "dvb://13e.1.d49,dvb://13e.4000.d49,dvb://13e.4800.d49,dvb://13e.5000.d49,dvb://13e.5800.d49,dvb://13e.6000.d49,dvb://13e.6800.d49,dvb://13e.7000.d49,dvb://13e.7800.d49,dvb://13e.8800.d49,dvb://13e.9000.d49,dvb://13e.9800.d49,dvb://13e.a000.d49", + "is_dtt": false, + "is_sat": true, + "channel_dtt": 0, + "channel_sat": 101, + "channel_catchup": 1, + "is_catchup": false, + "is_hd": false, + "is_primary_sat": false, + "is_primary_dtt": false + } + }, + "images": [ + { + "url": "https://www.raiplay.it/resizegd/640x-/dl/img/2025/12/16/1765885004911_2048x1152.jpg", + "size": "640x360", + "dimension": "86114", + "tag": "medium", + "priority": 0 + } + ] + }, + { + "id": 50367435, + "date_start": "25-02-2026 16:10", + "date_end": "25-02-2026 16:55", + "duration": 45, + "program": { + "id": 50367771, + "title": "Il paradiso delle signore", + "description": "Mimmo non può essere presente in Caffetteria e Concetta è costretta, ancora una volta, a fare fronte all'emergenza. Irene deve decidere se accettare l'invito di Cesare o guardare Sanremo con le amiche, mentre Botteri ha una doppia sorpresa per Delia.", + "url_poster": "https://www.raiplay.it/resizegd/640x-/dl/img/2024/12/02/1733146164349_2048x1152.jpg", + "url_web": "/dirette/rai1", + "url_live": "http://www.rai.tv/dl/RaiTV/dirette/PublishingBlock-64203784-70f7-4b53-9d21-b14693850195.html", + "categories": [ + { + "id": 1, + "name": "Fiction", + "slug": "fiction", + "icon": "uploads/category/fiction.png", + "icon2x": "uploads/category/fiction@2x.png", + "icon3x": "uploads/category/7fb064ee39657fb0b11cf2b0d4979e5f551c6457.png" + } + ], + "genres": [ + { + "id": 4, + "name": "Soap opera", + "slug": "soap-opera" + } + ] + }, + "channel": { + "id": 42, + "name": "Rai 1 HD", + "description": "Canale 1 tivùsat\r\nCanale 1 DTT", + "editor": "RAI", + "icon": "uploads/channel/dd39d13edc5e24dc57f355ab6030ec85ba4ad945.png", + "icon2x": "uploads/channel/d64e56641cfdf2ec1d343cf331286073a409c8cb.png", + "icon3x": "uploads/channel/6bd671462cda55ac3b011e5acc561e391ccc3761.png", + "iconMono": "uploads/channel/ed002807c483978a337342bf06ca06432dd3ae10.png", + "locatorsSat": "dvb://13e.1450.d49,dvb://13e.3070.d49", + "locatorsDtt": "dvb://217c.d5.641,dvb://217c.71.44d,dvb://217c.8f.4e3", + "is_dtt": true, + "is_sat": true, + "channel_dtt": 1, + "channel_sat": 1, + "channel_catchup": 1000, + "is_catchup": false, + "is_hd": true, + "is_primary_sat": false, + "is_primary_dtt": false, + "channel_father": { + "id": 1, + "name": "Rai 1", + "editor": "RAI", + "icon": "uploads/channel/f39e198eb18f479198c8f2687614c9c83fae6b50.png", + "icon2x": "uploads/channel/e5ed9c3a28e5f5ae50fa0a368ee1e1c550ba50ce.png", + "iconMono": "uploads/channel/6975d36901670f2fed967ca5b7523a506ab8caad.png", + "locatorsSat": "", + "locatorsDtt": "dvb://13e.1.d49,dvb://13e.4000.d49,dvb://13e.4800.d49,dvb://13e.5000.d49,dvb://13e.5800.d49,dvb://13e.6000.d49,dvb://13e.6800.d49,dvb://13e.7000.d49,dvb://13e.7800.d49,dvb://13e.8800.d49,dvb://13e.9000.d49,dvb://13e.9800.d49,dvb://13e.a000.d49", + "is_dtt": false, + "is_sat": true, + "channel_dtt": 0, + "channel_sat": 101, + "channel_catchup": 1, + "is_catchup": false, + "is_hd": false, + "is_primary_sat": false, + "is_primary_dtt": false + } + }, + "images": [ + { + "url": "https://www.raiplay.it/resizegd/640x-/dl/img/2024/12/02/1733146164349_2048x1152.jpg", + "size": "640x360", + "dimension": "57342", + "tag": "medium", + "priority": 0 + } + ] + }, + { + "id": 50367436, + "date_start": "25-02-2026 16:55", + "date_end": "25-02-2026 18:36", + "duration": 101, + "program": { + "id": 50367772, + "title": "Vita in diretta", + "description": "Alberto Matano conduce il programma pomeridiano di attualità, cronaca e spettacolo, con collegamenti in diretta sul territorio attraverso inviati, esperti e ospiti in studio.", + "url_poster": "https://www.raiplay.it/resizegd/640x-/dl/img/2025/09/09/1757418631996_2048x1152.jpg", + "url_web": "/dirette/rai1", + "url_live": "http://www.rai.tv/dl/RaiTV/dirette/PublishingBlock-64203784-70f7-4b53-9d21-b14693850195.html", + "categories": [ + { + "id": 12, + "name": "Varie", + "slug": "varie" + } + ], + "genres": [] + }, + "channel": { + "id": 42, + "name": "Rai 1 HD", + "description": "Canale 1 tivùsat\r\nCanale 1 DTT", + "editor": "RAI", + "icon": "uploads/channel/dd39d13edc5e24dc57f355ab6030ec85ba4ad945.png", + "icon2x": "uploads/channel/d64e56641cfdf2ec1d343cf331286073a409c8cb.png", + "icon3x": "uploads/channel/6bd671462cda55ac3b011e5acc561e391ccc3761.png", + "iconMono": "uploads/channel/ed002807c483978a337342bf06ca06432dd3ae10.png", + "locatorsSat": "dvb://13e.1450.d49,dvb://13e.3070.d49", + "locatorsDtt": "dvb://217c.d5.641,dvb://217c.71.44d,dvb://217c.8f.4e3", + "is_dtt": true, + "is_sat": true, + "channel_dtt": 1, + "channel_sat": 1, + "channel_catchup": 1000, + "is_catchup": false, + "is_hd": true, + "is_primary_sat": false, + "is_primary_dtt": false, + "channel_father": { + "id": 1, + "name": "Rai 1", + "editor": "RAI", + "icon": "uploads/channel/f39e198eb18f479198c8f2687614c9c83fae6b50.png", + "icon2x": "uploads/channel/e5ed9c3a28e5f5ae50fa0a368ee1e1c550ba50ce.png", + "iconMono": "uploads/channel/6975d36901670f2fed967ca5b7523a506ab8caad.png", + "locatorsSat": "", + "locatorsDtt": "dvb://13e.1.d49,dvb://13e.4000.d49,dvb://13e.4800.d49,dvb://13e.5000.d49,dvb://13e.5800.d49,dvb://13e.6000.d49,dvb://13e.6800.d49,dvb://13e.7000.d49,dvb://13e.7800.d49,dvb://13e.8800.d49,dvb://13e.9000.d49,dvb://13e.9800.d49,dvb://13e.a000.d49", + "is_dtt": false, + "is_sat": true, + "channel_dtt": 0, + "channel_sat": 101, + "channel_catchup": 1, + "is_catchup": false, + "is_hd": false, + "is_primary_sat": false, + "is_primary_dtt": false + } + }, + "images": [ + { + "url": "https://www.raiplay.it/resizegd/640x-/dl/img/2025/09/09/1757418631996_2048x1152.jpg", + "size": "640x360", + "dimension": "28656", + "tag": "medium", + "priority": 0 + } + ] + }, + { + "id": 50367437, + "date_start": "25-02-2026 18:36", + "date_end": "25-02-2026 18:40", + "duration": 4, + "program": { + "id": 50367773, + "title": "Che tempo fa", + "description": "", + "url_poster": "https://www.raiplay.it/resizegd/640x-/dl/img/2025/11/20/1763645586214_RaiMeteo2048x1152.png", + "url_web": "/dirette/rai1", + "url_live": "http://www.rai.tv/dl/RaiTV/dirette/PublishingBlock-64203784-70f7-4b53-9d21-b14693850195.html", + "categories": [ + { + "id": 12, + "name": "Varie", + "slug": "varie" + } + ], + "genres": [] + }, + "channel": { + "id": 42, + "name": "Rai 1 HD", + "description": "Canale 1 tivùsat\r\nCanale 1 DTT", + "editor": "RAI", + "icon": "uploads/channel/dd39d13edc5e24dc57f355ab6030ec85ba4ad945.png", + "icon2x": "uploads/channel/d64e56641cfdf2ec1d343cf331286073a409c8cb.png", + "icon3x": "uploads/channel/6bd671462cda55ac3b011e5acc561e391ccc3761.png", + "iconMono": "uploads/channel/ed002807c483978a337342bf06ca06432dd3ae10.png", + "locatorsSat": "dvb://13e.1450.d49,dvb://13e.3070.d49", + "locatorsDtt": "dvb://217c.d5.641,dvb://217c.71.44d,dvb://217c.8f.4e3", + "is_dtt": true, + "is_sat": true, + "channel_dtt": 1, + "channel_sat": 1, + "channel_catchup": 1000, + "is_catchup": false, + "is_hd": true, + "is_primary_sat": false, + "is_primary_dtt": false, + "channel_father": { + "id": 1, + "name": "Rai 1", + "editor": "RAI", + "icon": "uploads/channel/f39e198eb18f479198c8f2687614c9c83fae6b50.png", + "icon2x": "uploads/channel/e5ed9c3a28e5f5ae50fa0a368ee1e1c550ba50ce.png", + "iconMono": "uploads/channel/6975d36901670f2fed967ca5b7523a506ab8caad.png", + "locatorsSat": "", + "locatorsDtt": "dvb://13e.1.d49,dvb://13e.4000.d49,dvb://13e.4800.d49,dvb://13e.5000.d49,dvb://13e.5800.d49,dvb://13e.6000.d49,dvb://13e.6800.d49,dvb://13e.7000.d49,dvb://13e.7800.d49,dvb://13e.8800.d49,dvb://13e.9000.d49,dvb://13e.9800.d49,dvb://13e.a000.d49", + "is_dtt": false, + "is_sat": true, + "channel_dtt": 0, + "channel_sat": 101, + "channel_catchup": 1, + "is_catchup": false, + "is_hd": false, + "is_primary_sat": false, + "is_primary_dtt": false + } + }, + "images": [ + { + "url": "https://www.raiplay.it/resizegd/640x-/dl/img/2025/11/20/1763645586214_RaiMeteo2048x1152.png", + "size": "640x360", + "dimension": "12235", + "tag": "medium", + "priority": 0 + } + ] + }, + { + "id": 50367438, + "date_start": "25-02-2026 18:40", + "date_end": "25-02-2026 20:00", + "duration": 80, + "program": { + "id": 50367774, + "title": "L'Eredità", + "description": "Marco Liorni conduce il gioco a quiz in cui 6 concorrenti più il campione si sfidano in 6 diversi giochi ad eliminazione, fino ad arrivare alla ''Ghigliottina'', in cui il finalista deve indovinare una parola attraverso 5 indizi in 60 secondi di tempo.", + "url_poster": "https://www.raiplay.it/resizegd/640x-/dl/img/2024/01/01/1704147154085_2048x1152%207.jpg", + "url_web": "/dirette/rai1", + "url_live": "http://www.rai.tv/dl/RaiTV/dirette/PublishingBlock-64203784-70f7-4b53-9d21-b14693850195.html", + "categories": [ + { + "id": 12, + "name": "Varie", + "slug": "varie" + } + ], + "genres": [] + }, + "channel": { + "id": 42, + "name": "Rai 1 HD", + "description": "Canale 1 tivùsat\r\nCanale 1 DTT", + "editor": "RAI", + "icon": "uploads/channel/dd39d13edc5e24dc57f355ab6030ec85ba4ad945.png", + "icon2x": "uploads/channel/d64e56641cfdf2ec1d343cf331286073a409c8cb.png", + "icon3x": "uploads/channel/6bd671462cda55ac3b011e5acc561e391ccc3761.png", + "iconMono": "uploads/channel/ed002807c483978a337342bf06ca06432dd3ae10.png", + "locatorsSat": "dvb://13e.1450.d49,dvb://13e.3070.d49", + "locatorsDtt": "dvb://217c.d5.641,dvb://217c.71.44d,dvb://217c.8f.4e3", + "is_dtt": true, + "is_sat": true, + "channel_dtt": 1, + "channel_sat": 1, + "channel_catchup": 1000, + "is_catchup": false, + "is_hd": true, + "is_primary_sat": false, + "is_primary_dtt": false, + "channel_father": { + "id": 1, + "name": "Rai 1", + "editor": "RAI", + "icon": "uploads/channel/f39e198eb18f479198c8f2687614c9c83fae6b50.png", + "icon2x": "uploads/channel/e5ed9c3a28e5f5ae50fa0a368ee1e1c550ba50ce.png", + "iconMono": "uploads/channel/6975d36901670f2fed967ca5b7523a506ab8caad.png", + "locatorsSat": "", + "locatorsDtt": "dvb://13e.1.d49,dvb://13e.4000.d49,dvb://13e.4800.d49,dvb://13e.5000.d49,dvb://13e.5800.d49,dvb://13e.6000.d49,dvb://13e.6800.d49,dvb://13e.7000.d49,dvb://13e.7800.d49,dvb://13e.8800.d49,dvb://13e.9000.d49,dvb://13e.9800.d49,dvb://13e.a000.d49", + "is_dtt": false, + "is_sat": true, + "channel_dtt": 0, + "channel_sat": 101, + "channel_catchup": 1, + "is_catchup": false, + "is_hd": false, + "is_primary_sat": false, + "is_primary_dtt": false + } + }, + "images": [ + { + "url": "https://www.raiplay.it/resizegd/640x-/dl/img/2024/01/01/1704147154085_2048x1152%207.jpg", + "size": "100x100", + "dimension": "0", + "tag": "thumbnail", + "priority": 0 + } + ] + }, + { + "id": 50367439, + "date_start": "25-02-2026 20:00", + "date_end": "25-02-2026 20:30", + "duration": 30, + "program": { + "id": 50367775, + "title": "Tg1", + "description": "", + "url_poster": "https://www.raiplay.it/resizegd/640x-/dl/img/2025/12/16/1765885004911_2048x1152.jpg", + "url_web": "/dirette/rai1", + "url_live": "http://www.rai.tv/dl/RaiTV/dirette/PublishingBlock-64203784-70f7-4b53-9d21-b14693850195.html", + "categories": [ + { + "id": 12, + "name": "Varie", + "slug": "varie" + } + ], + "genres": [] + }, + "channel": { + "id": 42, + "name": "Rai 1 HD", + "description": "Canale 1 tivùsat\r\nCanale 1 DTT", + "editor": "RAI", + "icon": "uploads/channel/dd39d13edc5e24dc57f355ab6030ec85ba4ad945.png", + "icon2x": "uploads/channel/d64e56641cfdf2ec1d343cf331286073a409c8cb.png", + "icon3x": "uploads/channel/6bd671462cda55ac3b011e5acc561e391ccc3761.png", + "iconMono": "uploads/channel/ed002807c483978a337342bf06ca06432dd3ae10.png", + "locatorsSat": "dvb://13e.1450.d49,dvb://13e.3070.d49", + "locatorsDtt": "dvb://217c.d5.641,dvb://217c.71.44d,dvb://217c.8f.4e3", + "is_dtt": true, + "is_sat": true, + "channel_dtt": 1, + "channel_sat": 1, + "channel_catchup": 1000, + "is_catchup": false, + "is_hd": true, + "is_primary_sat": false, + "is_primary_dtt": false, + "channel_father": { + "id": 1, + "name": "Rai 1", + "editor": "RAI", + "icon": "uploads/channel/f39e198eb18f479198c8f2687614c9c83fae6b50.png", + "icon2x": "uploads/channel/e5ed9c3a28e5f5ae50fa0a368ee1e1c550ba50ce.png", + "iconMono": "uploads/channel/6975d36901670f2fed967ca5b7523a506ab8caad.png", + "locatorsSat": "", + "locatorsDtt": "dvb://13e.1.d49,dvb://13e.4000.d49,dvb://13e.4800.d49,dvb://13e.5000.d49,dvb://13e.5800.d49,dvb://13e.6000.d49,dvb://13e.6800.d49,dvb://13e.7000.d49,dvb://13e.7800.d49,dvb://13e.8800.d49,dvb://13e.9000.d49,dvb://13e.9800.d49,dvb://13e.a000.d49", + "is_dtt": false, + "is_sat": true, + "channel_dtt": 0, + "channel_sat": 101, + "channel_catchup": 1, + "is_catchup": false, + "is_hd": false, + "is_primary_sat": false, + "is_primary_dtt": false + } + }, + "images": [ + { + "url": "https://www.raiplay.it/resizegd/640x-/dl/img/2025/12/16/1765885004911_2048x1152.jpg", + "size": "640x360", + "dimension": "86114", + "tag": "medium", + "priority": 0 + } + ] + }, + { + "id": 50367440, + "date_start": "25-02-2026 20:30", + "date_end": "25-02-2026 20:40", + "duration": 10, + "program": { + "id": 50367776, + "title": "PrimaFestival", + "description": "Ema Stokholma, Carolina Rey e Manola Moslehi raccontano il Festival di Sanremo tra interviste, curiosità, anteprime e collegamenti da un Glass Box fronte Ariston.", + "url_poster": "https://www.raiplay.it/resizegd/640x-/dl/img/2026/02/15/1771172032635_2048x1152.jpg", + "url_web": "/dirette/rai1", + "url_live": "http://www.rai.tv/dl/RaiTV/dirette/PublishingBlock-64203784-70f7-4b53-9d21-b14693850195.html", + "categories": [ + { + "id": 12, + "name": "Varie", + "slug": "varie" + } + ], + "genres": [ + { + "id": 21, + "name": "Varietà", + "slug": "varieta" + } + ] + }, + "channel": { + "id": 42, + "name": "Rai 1 HD", + "description": "Canale 1 tivùsat\r\nCanale 1 DTT", + "editor": "RAI", + "icon": "uploads/channel/dd39d13edc5e24dc57f355ab6030ec85ba4ad945.png", + "icon2x": "uploads/channel/d64e56641cfdf2ec1d343cf331286073a409c8cb.png", + "icon3x": "uploads/channel/6bd671462cda55ac3b011e5acc561e391ccc3761.png", + "iconMono": "uploads/channel/ed002807c483978a337342bf06ca06432dd3ae10.png", + "locatorsSat": "dvb://13e.1450.d49,dvb://13e.3070.d49", + "locatorsDtt": "dvb://217c.d5.641,dvb://217c.71.44d,dvb://217c.8f.4e3", + "is_dtt": true, + "is_sat": true, + "channel_dtt": 1, + "channel_sat": 1, + "channel_catchup": 1000, + "is_catchup": false, + "is_hd": true, + "is_primary_sat": false, + "is_primary_dtt": false, + "channel_father": { + "id": 1, + "name": "Rai 1", + "editor": "RAI", + "icon": "uploads/channel/f39e198eb18f479198c8f2687614c9c83fae6b50.png", + "icon2x": "uploads/channel/e5ed9c3a28e5f5ae50fa0a368ee1e1c550ba50ce.png", + "iconMono": "uploads/channel/6975d36901670f2fed967ca5b7523a506ab8caad.png", + "locatorsSat": "", + "locatorsDtt": "dvb://13e.1.d49,dvb://13e.4000.d49,dvb://13e.4800.d49,dvb://13e.5000.d49,dvb://13e.5800.d49,dvb://13e.6000.d49,dvb://13e.6800.d49,dvb://13e.7000.d49,dvb://13e.7800.d49,dvb://13e.8800.d49,dvb://13e.9000.d49,dvb://13e.9800.d49,dvb://13e.a000.d49", + "is_dtt": false, + "is_sat": true, + "channel_dtt": 0, + "channel_sat": 101, + "channel_catchup": 1, + "is_catchup": false, + "is_hd": false, + "is_primary_sat": false, + "is_primary_dtt": false + } + }, + "images": [ + { + "url": "https://www.raiplay.it/resizegd/640x-/dl/img/2026/02/15/1771172032635_2048x1152.jpg", + "size": "640x360", + "dimension": "39677", + "tag": "medium", + "priority": 0 + } + ] + }, + { + "id": 50367441, + "date_start": "25-02-2026 20:40", + "date_end": "25-02-2026 23:55", + "event_start": 191, + "duration": 195, + "program": { + "id": 50367777, + "title": "Festival di Sanremo", + "description": "Carlo Conti, affiancato da Laura Pausini, Pilar Fogliati, Achille Lauro e Lillo Petrolo, conduce la seconda serata del Festival di Sanremo. Ospiti della serata le campionesse olimpiche Lisa Vittozzi e Francesca Lollobrigida e Fausto Leali.", + "url_poster": "https://www.raiplay.it/resizegd/640x-/dl/img/2026/02/23/1771850079054_2048x1152%207.jpg", + "url_web": "/dirette/rai1", + "url_live": "http://www.rai.tv/dl/RaiTV/dirette/PublishingBlock-64203784-70f7-4b53-9d21-b14693850195.html", + "categories": [ + { + "id": 12, + "name": "Varie", + "slug": "varie" + } + ], + "genres": [ + { + "id": 41, + "name": "Musica", + "slug": "musica" + } + ] + }, + "channel": { + "id": 42, + "name": "Rai 1 HD", + "description": "Canale 1 tivùsat\r\nCanale 1 DTT", + "editor": "RAI", + "icon": "uploads/channel/dd39d13edc5e24dc57f355ab6030ec85ba4ad945.png", + "icon2x": "uploads/channel/d64e56641cfdf2ec1d343cf331286073a409c8cb.png", + "icon3x": "uploads/channel/6bd671462cda55ac3b011e5acc561e391ccc3761.png", + "iconMono": "uploads/channel/ed002807c483978a337342bf06ca06432dd3ae10.png", + "locatorsSat": "dvb://13e.1450.d49,dvb://13e.3070.d49", + "locatorsDtt": "dvb://217c.d5.641,dvb://217c.71.44d,dvb://217c.8f.4e3", + "is_dtt": true, + "is_sat": true, + "channel_dtt": 1, + "channel_sat": 1, + "channel_catchup": 1000, + "is_catchup": false, + "is_hd": true, + "is_primary_sat": false, + "is_primary_dtt": false, + "channel_father": { + "id": 1, + "name": "Rai 1", + "editor": "RAI", + "icon": "uploads/channel/f39e198eb18f479198c8f2687614c9c83fae6b50.png", + "icon2x": "uploads/channel/e5ed9c3a28e5f5ae50fa0a368ee1e1c550ba50ce.png", + "iconMono": "uploads/channel/6975d36901670f2fed967ca5b7523a506ab8caad.png", + "locatorsSat": "", + "locatorsDtt": "dvb://13e.1.d49,dvb://13e.4000.d49,dvb://13e.4800.d49,dvb://13e.5000.d49,dvb://13e.5800.d49,dvb://13e.6000.d49,dvb://13e.6800.d49,dvb://13e.7000.d49,dvb://13e.7800.d49,dvb://13e.8800.d49,dvb://13e.9000.d49,dvb://13e.9800.d49,dvb://13e.a000.d49", + "is_dtt": false, + "is_sat": true, + "channel_dtt": 0, + "channel_sat": 101, + "channel_catchup": 1, + "is_catchup": false, + "is_hd": false, + "is_primary_sat": false, + "is_primary_dtt": false + } + }, + "images": [ + { + "url": "https://www.raiplay.it/resizegd/640x-/dl/img/2026/02/23/1771850079054_2048x1152%207.jpg", + "size": "100x100", + "dimension": "0", + "tag": "thumbnail", + "priority": 0 + } + ] + }, + { + "id": 50367442, + "date_start": "25-02-2026 23:55", + "date_end": "25-02-2026 23:56", + "duration": 1, + "program": { + "id": 50367778, + "title": "Tg1", + "description": "", + "url_poster": "https://www.raiplay.it/resizegd/640x-/dl/img/2025/12/16/1765885004911_2048x1152.jpg", + "url_web": "/dirette/rai1", + "url_live": "http://www.rai.tv/dl/RaiTV/dirette/PublishingBlock-64203784-70f7-4b53-9d21-b14693850195.html", + "categories": [ + { + "id": 12, + "name": "Varie", + "slug": "varie" + } + ], + "genres": [] + }, + "channel": { + "id": 42, + "name": "Rai 1 HD", + "description": "Canale 1 tivùsat\r\nCanale 1 DTT", + "editor": "RAI", + "icon": "uploads/channel/dd39d13edc5e24dc57f355ab6030ec85ba4ad945.png", + "icon2x": "uploads/channel/d64e56641cfdf2ec1d343cf331286073a409c8cb.png", + "icon3x": "uploads/channel/6bd671462cda55ac3b011e5acc561e391ccc3761.png", + "iconMono": "uploads/channel/ed002807c483978a337342bf06ca06432dd3ae10.png", + "locatorsSat": "dvb://13e.1450.d49,dvb://13e.3070.d49", + "locatorsDtt": "dvb://217c.d5.641,dvb://217c.71.44d,dvb://217c.8f.4e3", + "is_dtt": true, + "is_sat": true, + "channel_dtt": 1, + "channel_sat": 1, + "channel_catchup": 1000, + "is_catchup": false, + "is_hd": true, + "is_primary_sat": false, + "is_primary_dtt": false, + "channel_father": { + "id": 1, + "name": "Rai 1", + "editor": "RAI", + "icon": "uploads/channel/f39e198eb18f479198c8f2687614c9c83fae6b50.png", + "icon2x": "uploads/channel/e5ed9c3a28e5f5ae50fa0a368ee1e1c550ba50ce.png", + "iconMono": "uploads/channel/6975d36901670f2fed967ca5b7523a506ab8caad.png", + "locatorsSat": "", + "locatorsDtt": "dvb://13e.1.d49,dvb://13e.4000.d49,dvb://13e.4800.d49,dvb://13e.5000.d49,dvb://13e.5800.d49,dvb://13e.6000.d49,dvb://13e.6800.d49,dvb://13e.7000.d49,dvb://13e.7800.d49,dvb://13e.8800.d49,dvb://13e.9000.d49,dvb://13e.9800.d49,dvb://13e.a000.d49", + "is_dtt": false, + "is_sat": true, + "channel_dtt": 0, + "channel_sat": 101, + "channel_catchup": 1, + "is_catchup": false, + "is_hd": false, + "is_primary_sat": false, + "is_primary_dtt": false + } + }, + "images": [ + { + "url": "https://www.raiplay.it/resizegd/640x-/dl/img/2025/12/16/1765885004911_2048x1152.jpg", + "size": "640x360", + "dimension": "86114", + "tag": "medium", + "priority": 0 + } + ] + }, + { + "id": 50367443, + "date_start": "25-02-2026 23:56", + "date_end": "26-02-2026 01:15", + "duration": 79, + "program": { + "id": 50367779, + "title": "Festival di Sanremo", + "description": "Carlo Conti, affiancato da Laura Pausini, Pilar Fogliati, Achille Lauro e Lillo Petrolo, conduce la seconda serata del Festival di Sanremo. Ospiti della serata le campionesse olimpiche Lisa Vittozzi e Francesca Lollobrigida e Fausto Leali.", + "url_poster": "https://www.raiplay.it/resizegd/640x-/dl/img/2026/02/23/1771850079054_2048x1152%207.jpg", + "url_web": "/dirette/rai1", + "url_live": "http://www.rai.tv/dl/RaiTV/dirette/PublishingBlock-64203784-70f7-4b53-9d21-b14693850195.html", + "categories": [ + { + "id": 12, + "name": "Varie", + "slug": "varie" + } + ], + "genres": [ + { + "id": 41, + "name": "Musica", + "slug": "musica" + } + ] + }, + "channel": { + "id": 42, + "name": "Rai 1 HD", + "description": "Canale 1 tivùsat\r\nCanale 1 DTT", + "editor": "RAI", + "icon": "uploads/channel/dd39d13edc5e24dc57f355ab6030ec85ba4ad945.png", + "icon2x": "uploads/channel/d64e56641cfdf2ec1d343cf331286073a409c8cb.png", + "icon3x": "uploads/channel/6bd671462cda55ac3b011e5acc561e391ccc3761.png", + "iconMono": "uploads/channel/ed002807c483978a337342bf06ca06432dd3ae10.png", + "locatorsSat": "dvb://13e.1450.d49,dvb://13e.3070.d49", + "locatorsDtt": "dvb://217c.d5.641,dvb://217c.71.44d,dvb://217c.8f.4e3", + "is_dtt": true, + "is_sat": true, + "channel_dtt": 1, + "channel_sat": 1, + "channel_catchup": 1000, + "is_catchup": false, + "is_hd": true, + "is_primary_sat": false, + "is_primary_dtt": false, + "channel_father": { + "id": 1, + "name": "Rai 1", + "editor": "RAI", + "icon": "uploads/channel/f39e198eb18f479198c8f2687614c9c83fae6b50.png", + "icon2x": "uploads/channel/e5ed9c3a28e5f5ae50fa0a368ee1e1c550ba50ce.png", + "iconMono": "uploads/channel/6975d36901670f2fed967ca5b7523a506ab8caad.png", + "locatorsSat": "", + "locatorsDtt": "dvb://13e.1.d49,dvb://13e.4000.d49,dvb://13e.4800.d49,dvb://13e.5000.d49,dvb://13e.5800.d49,dvb://13e.6000.d49,dvb://13e.6800.d49,dvb://13e.7000.d49,dvb://13e.7800.d49,dvb://13e.8800.d49,dvb://13e.9000.d49,dvb://13e.9800.d49,dvb://13e.a000.d49", + "is_dtt": false, + "is_sat": true, + "channel_dtt": 0, + "channel_sat": 101, + "channel_catchup": 1, + "is_catchup": false, + "is_hd": false, + "is_primary_sat": false, + "is_primary_dtt": false + } + }, + "images": [ + { + "url": "https://www.raiplay.it/resizegd/640x-/dl/img/2026/02/23/1771850079054_2048x1152%207.jpg", + "size": "100x100", + "dimension": "0", + "tag": "thumbnail", + "priority": 0 + } + ] + }, + { + "id": 50367444, + "date_start": "26-02-2026 01:15", + "date_end": "26-02-2026 02:20", + "duration": 65, + "program": { + "id": 50367780, + "title": "DopoFestival", + "description": "Nicola Savino, in compagnia di Aurora Leone, Federico Basso e il maestro Enrico Cremonesi, incontra i protagonisti del Festival di Sanremo, con ospiti speciali, commenti a caldo, curiosità e highlights della serata.", + "url_poster": "https://www.raiplay.it/resizegd/640x-/dl/img/2026/02/18/1771402500470_2048x1152.jpg", + "url_web": "/dirette/rai1", + "url_live": "http://www.rai.tv/dl/RaiTV/dirette/PublishingBlock-64203784-70f7-4b53-9d21-b14693850195.html", + "categories": [ + { + "id": 12, + "name": "Varie", + "slug": "varie" + } + ], + "genres": [ + { + "id": 21, + "name": "Varietà", + "slug": "varieta" + } + ] + }, + "channel": { + "id": 42, + "name": "Rai 1 HD", + "description": "Canale 1 tivùsat\r\nCanale 1 DTT", + "editor": "RAI", + "icon": "uploads/channel/dd39d13edc5e24dc57f355ab6030ec85ba4ad945.png", + "icon2x": "uploads/channel/d64e56641cfdf2ec1d343cf331286073a409c8cb.png", + "icon3x": "uploads/channel/6bd671462cda55ac3b011e5acc561e391ccc3761.png", + "iconMono": "uploads/channel/ed002807c483978a337342bf06ca06432dd3ae10.png", + "locatorsSat": "dvb://13e.1450.d49,dvb://13e.3070.d49", + "locatorsDtt": "dvb://217c.d5.641,dvb://217c.71.44d,dvb://217c.8f.4e3", + "is_dtt": true, + "is_sat": true, + "channel_dtt": 1, + "channel_sat": 1, + "channel_catchup": 1000, + "is_catchup": false, + "is_hd": true, + "is_primary_sat": false, + "is_primary_dtt": false, + "channel_father": { + "id": 1, + "name": "Rai 1", + "editor": "RAI", + "icon": "uploads/channel/f39e198eb18f479198c8f2687614c9c83fae6b50.png", + "icon2x": "uploads/channel/e5ed9c3a28e5f5ae50fa0a368ee1e1c550ba50ce.png", + "iconMono": "uploads/channel/6975d36901670f2fed967ca5b7523a506ab8caad.png", + "locatorsSat": "", + "locatorsDtt": "dvb://13e.1.d49,dvb://13e.4000.d49,dvb://13e.4800.d49,dvb://13e.5000.d49,dvb://13e.5800.d49,dvb://13e.6000.d49,dvb://13e.6800.d49,dvb://13e.7000.d49,dvb://13e.7800.d49,dvb://13e.8800.d49,dvb://13e.9000.d49,dvb://13e.9800.d49,dvb://13e.a000.d49", + "is_dtt": false, + "is_sat": true, + "channel_dtt": 0, + "channel_sat": 101, + "channel_catchup": 1, + "is_catchup": false, + "is_hd": false, + "is_primary_sat": false, + "is_primary_dtt": false + } + }, + "images": [ + { + "url": "https://www.raiplay.it/resizegd/640x-/dl/img/2026/02/18/1771402500470_2048x1152.jpg", + "size": "640x360", + "dimension": "54262", + "tag": "medium", + "priority": 0 + } + ] + }, + { + "id": 50367445, + "date_start": "26-02-2026 02:20", + "date_end": "26-02-2026 02:25", + "duration": 5, + "program": { + "id": 50367781, + "title": "Che tempo fa", + "description": "", + "url_poster": "https://www.raiplay.it/resizegd/640x-/dl/img/2025/11/20/1763645586214_RaiMeteo2048x1152.png", + "url_web": "/dirette/rai1", + "url_live": "http://www.rai.tv/dl/RaiTV/dirette/PublishingBlock-64203784-70f7-4b53-9d21-b14693850195.html", + "categories": [ + { + "id": 12, + "name": "Varie", + "slug": "varie" + } + ], + "genres": [] + }, + "channel": { + "id": 42, + "name": "Rai 1 HD", + "description": "Canale 1 tivùsat\r\nCanale 1 DTT", + "editor": "RAI", + "icon": "uploads/channel/dd39d13edc5e24dc57f355ab6030ec85ba4ad945.png", + "icon2x": "uploads/channel/d64e56641cfdf2ec1d343cf331286073a409c8cb.png", + "icon3x": "uploads/channel/6bd671462cda55ac3b011e5acc561e391ccc3761.png", + "iconMono": "uploads/channel/ed002807c483978a337342bf06ca06432dd3ae10.png", + "locatorsSat": "dvb://13e.1450.d49,dvb://13e.3070.d49", + "locatorsDtt": "dvb://217c.d5.641,dvb://217c.71.44d,dvb://217c.8f.4e3", + "is_dtt": true, + "is_sat": true, + "channel_dtt": 1, + "channel_sat": 1, + "channel_catchup": 1000, + "is_catchup": false, + "is_hd": true, + "is_primary_sat": false, + "is_primary_dtt": false, + "channel_father": { + "id": 1, + "name": "Rai 1", + "editor": "RAI", + "icon": "uploads/channel/f39e198eb18f479198c8f2687614c9c83fae6b50.png", + "icon2x": "uploads/channel/e5ed9c3a28e5f5ae50fa0a368ee1e1c550ba50ce.png", + "iconMono": "uploads/channel/6975d36901670f2fed967ca5b7523a506ab8caad.png", + "locatorsSat": "", + "locatorsDtt": "dvb://13e.1.d49,dvb://13e.4000.d49,dvb://13e.4800.d49,dvb://13e.5000.d49,dvb://13e.5800.d49,dvb://13e.6000.d49,dvb://13e.6800.d49,dvb://13e.7000.d49,dvb://13e.7800.d49,dvb://13e.8800.d49,dvb://13e.9000.d49,dvb://13e.9800.d49,dvb://13e.a000.d49", + "is_dtt": false, + "is_sat": true, + "channel_dtt": 0, + "channel_sat": 101, + "channel_catchup": 1, + "is_catchup": false, + "is_hd": false, + "is_primary_sat": false, + "is_primary_dtt": false + } + }, + "images": [ + { + "url": "https://www.raiplay.it/resizegd/640x-/dl/img/2025/11/20/1763645586214_RaiMeteo2048x1152.png", + "size": "640x360", + "dimension": "12235", + "tag": "medium", + "priority": 0 + } + ] + }, + { + "id": 50367446, + "date_start": "26-02-2026 02:25", + "date_end": "26-02-2026 03:40", + "duration": 75, + "program": { + "id": 50367782, + "title": "L'Eredità", + "description": "Marco Liorni conduce il gioco a quiz in cui 6 concorrenti più il campione si sfidano in 6 diversi giochi ad eliminazione, fino ad arrivare alla ''Ghigliottina'', in cui il finalista deve indovinare una parola attraverso 5 indizi in 60 secondi di tempo.", + "url_poster": "https://www.raiplay.it/resizegd/640x-/dl/img/2024/01/01/1704147154085_2048x1152%207.jpg", + "url_web": "/dirette/rai1", + "url_live": "http://www.rai.tv/dl/RaiTV/dirette/PublishingBlock-64203784-70f7-4b53-9d21-b14693850195.html", + "categories": [ + { + "id": 12, + "name": "Varie", + "slug": "varie" + } + ], + "genres": [] + }, + "channel": { + "id": 42, + "name": "Rai 1 HD", + "description": "Canale 1 tivùsat\r\nCanale 1 DTT", + "editor": "RAI", + "icon": "uploads/channel/dd39d13edc5e24dc57f355ab6030ec85ba4ad945.png", + "icon2x": "uploads/channel/d64e56641cfdf2ec1d343cf331286073a409c8cb.png", + "icon3x": "uploads/channel/6bd671462cda55ac3b011e5acc561e391ccc3761.png", + "iconMono": "uploads/channel/ed002807c483978a337342bf06ca06432dd3ae10.png", + "locatorsSat": "dvb://13e.1450.d49,dvb://13e.3070.d49", + "locatorsDtt": "dvb://217c.d5.641,dvb://217c.71.44d,dvb://217c.8f.4e3", + "is_dtt": true, + "is_sat": true, + "channel_dtt": 1, + "channel_sat": 1, + "channel_catchup": 1000, + "is_catchup": false, + "is_hd": true, + "is_primary_sat": false, + "is_primary_dtt": false, + "channel_father": { + "id": 1, + "name": "Rai 1", + "editor": "RAI", + "icon": "uploads/channel/f39e198eb18f479198c8f2687614c9c83fae6b50.png", + "icon2x": "uploads/channel/e5ed9c3a28e5f5ae50fa0a368ee1e1c550ba50ce.png", + "iconMono": "uploads/channel/6975d36901670f2fed967ca5b7523a506ab8caad.png", + "locatorsSat": "", + "locatorsDtt": "dvb://13e.1.d49,dvb://13e.4000.d49,dvb://13e.4800.d49,dvb://13e.5000.d49,dvb://13e.5800.d49,dvb://13e.6000.d49,dvb://13e.6800.d49,dvb://13e.7000.d49,dvb://13e.7800.d49,dvb://13e.8800.d49,dvb://13e.9000.d49,dvb://13e.9800.d49,dvb://13e.a000.d49", + "is_dtt": false, + "is_sat": true, + "channel_dtt": 0, + "channel_sat": 101, + "channel_catchup": 1, + "is_catchup": false, + "is_hd": false, + "is_primary_sat": false, + "is_primary_dtt": false + } + }, + "images": [ + { + "url": "https://www.raiplay.it/resizegd/640x-/dl/img/2024/01/01/1704147154085_2048x1152%207.jpg", + "size": "100x100", + "dimension": "0", + "tag": "thumbnail", + "priority": 0 + } + ] + }, + { + "id": 50367447, + "date_start": "26-02-2026 03:40", + "date_end": "26-02-2026 04:50", + "duration": 70, + "program": { + "id": 50367783, + "title": "DopoFestival", + "description": "Nicola Savino, in compagnia di Aurora Leone, Federico Basso e il maestro Enrico Cremonesi, incontra i protagonisti del Festival di Sanremo, con ospiti speciali, commenti a caldo, curiosità e highlights della serata.", + "url_poster": "https://www.raiplay.it/resizegd/640x-/dl/img/2026/02/18/1771402500470_2048x1152.jpg", + "url_web": "/dirette/rai1", + "url_live": "http://www.rai.tv/dl/RaiTV/dirette/PublishingBlock-64203784-70f7-4b53-9d21-b14693850195.html", + "categories": [ + { + "id": 12, + "name": "Varie", + "slug": "varie" + } + ], + "genres": [ + { + "id": 21, + "name": "Varietà", + "slug": "varieta" + } + ] + }, + "channel": { + "id": 42, + "name": "Rai 1 HD", + "description": "Canale 1 tivùsat\r\nCanale 1 DTT", + "editor": "RAI", + "icon": "uploads/channel/dd39d13edc5e24dc57f355ab6030ec85ba4ad945.png", + "icon2x": "uploads/channel/d64e56641cfdf2ec1d343cf331286073a409c8cb.png", + "icon3x": "uploads/channel/6bd671462cda55ac3b011e5acc561e391ccc3761.png", + "iconMono": "uploads/channel/ed002807c483978a337342bf06ca06432dd3ae10.png", + "locatorsSat": "dvb://13e.1450.d49,dvb://13e.3070.d49", + "locatorsDtt": "dvb://217c.d5.641,dvb://217c.71.44d,dvb://217c.8f.4e3", + "is_dtt": true, + "is_sat": true, + "channel_dtt": 1, + "channel_sat": 1, + "channel_catchup": 1000, + "is_catchup": false, + "is_hd": true, + "is_primary_sat": false, + "is_primary_dtt": false, + "channel_father": { + "id": 1, + "name": "Rai 1", + "editor": "RAI", + "icon": "uploads/channel/f39e198eb18f479198c8f2687614c9c83fae6b50.png", + "icon2x": "uploads/channel/e5ed9c3a28e5f5ae50fa0a368ee1e1c550ba50ce.png", + "iconMono": "uploads/channel/6975d36901670f2fed967ca5b7523a506ab8caad.png", + "locatorsSat": "", + "locatorsDtt": "dvb://13e.1.d49,dvb://13e.4000.d49,dvb://13e.4800.d49,dvb://13e.5000.d49,dvb://13e.5800.d49,dvb://13e.6000.d49,dvb://13e.6800.d49,dvb://13e.7000.d49,dvb://13e.7800.d49,dvb://13e.8800.d49,dvb://13e.9000.d49,dvb://13e.9800.d49,dvb://13e.a000.d49", + "is_dtt": false, + "is_sat": true, + "channel_dtt": 0, + "channel_sat": 101, + "channel_catchup": 1, + "is_catchup": false, + "is_hd": false, + "is_primary_sat": false, + "is_primary_dtt": false + } + }, + "images": [ + { + "url": "https://www.raiplay.it/resizegd/640x-/dl/img/2026/02/18/1771402500470_2048x1152.jpg", + "size": "640x360", + "dimension": "54262", + "tag": "medium", + "priority": 0 + } + ] + }, + { + "id": 50367448, + "date_start": "26-02-2026 04:50", + "date_end": "26-02-2026 06:00", + "duration": 70, + "program": { + "id": 50367784, + "title": "RaiNews", + "description": "", + "url_poster": "https://www.raiplay.it/resizegd/640x-/dl/img/2025/12/16/1765898348700_2048x1152.jpg", + "url_web": "/dirette/rai1", + "url_live": "http://www.rai.tv/dl/RaiTV/dirette/PublishingBlock-64203784-70f7-4b53-9d21-b14693850195.html", + "categories": [ + { + "id": 12, + "name": "Varie", + "slug": "varie" + } + ], + "genres": [] + }, + "channel": { + "id": 42, + "name": "Rai 1 HD", + "description": "Canale 1 tivùsat\r\nCanale 1 DTT", + "editor": "RAI", + "icon": "uploads/channel/dd39d13edc5e24dc57f355ab6030ec85ba4ad945.png", + "icon2x": "uploads/channel/d64e56641cfdf2ec1d343cf331286073a409c8cb.png", + "icon3x": "uploads/channel/6bd671462cda55ac3b011e5acc561e391ccc3761.png", + "iconMono": "uploads/channel/ed002807c483978a337342bf06ca06432dd3ae10.png", + "locatorsSat": "dvb://13e.1450.d49,dvb://13e.3070.d49", + "locatorsDtt": "dvb://217c.d5.641,dvb://217c.71.44d,dvb://217c.8f.4e3", + "is_dtt": true, + "is_sat": true, + "channel_dtt": 1, + "channel_sat": 1, + "channel_catchup": 1000, + "is_catchup": false, + "is_hd": true, + "is_primary_sat": false, + "is_primary_dtt": false, + "channel_father": { + "id": 1, + "name": "Rai 1", + "editor": "RAI", + "icon": "uploads/channel/f39e198eb18f479198c8f2687614c9c83fae6b50.png", + "icon2x": "uploads/channel/e5ed9c3a28e5f5ae50fa0a368ee1e1c550ba50ce.png", + "iconMono": "uploads/channel/6975d36901670f2fed967ca5b7523a506ab8caad.png", + "locatorsSat": "", + "locatorsDtt": "dvb://13e.1.d49,dvb://13e.4000.d49,dvb://13e.4800.d49,dvb://13e.5000.d49,dvb://13e.5800.d49,dvb://13e.6000.d49,dvb://13e.6800.d49,dvb://13e.7000.d49,dvb://13e.7800.d49,dvb://13e.8800.d49,dvb://13e.9000.d49,dvb://13e.9800.d49,dvb://13e.a000.d49", + "is_dtt": false, + "is_sat": true, + "channel_dtt": 0, + "channel_sat": 101, + "channel_catchup": 1, + "is_catchup": false, + "is_hd": false, + "is_primary_sat": false, + "is_primary_dtt": false + } + }, + "images": [ + { + "url": "https://www.raiplay.it/resizegd/640x-/dl/img/2025/12/16/1765898348700_2048x1152.jpg", + "size": "640x360", + "dimension": "92558", + "tag": "medium", + "priority": 0 + } + ] + } + ] +} \ No newline at end of file diff --git a/sites/tivu.tv/__data__/no_content.json b/sites/tivu.tv/__data__/no_content.json new file mode 100644 index 000000000..d042adda1 --- /dev/null +++ b/sites/tivu.tv/__data__/no_content.json @@ -0,0 +1 @@ +{"events":[]} \ No newline at end of file diff --git a/sites/tivu.tv/tivu.tv.channels.xml b/sites/tivu.tv/tivu.tv.channels.xml index b3c852c8f..13b2e6b74 100644 --- a/sites/tivu.tv/tivu.tv.channels.xml +++ b/sites/tivu.tv/tivu.tv.channels.xml @@ -1,72 +1,83 @@ - BBC World News - Bloomberg European TV - Rai yoyo - Rai 3 - Euronews Italian - Rai 1 - Al Jazeera - TV2000 - Arte HD - Rai Gulp - Rai 5 - 20 Mediaset - Rai News 24 - Iris - MEZZO - Rai 2 - Rai 4 - Rai Movie - Radio Italia TV - RTL 102.5 - France 24 HD (in English) - France 24 HD (en Français) - KBS HD - Canale 5 - Italia 1 - Rete 4 - Mediaset EXTRA - RDS Social TV - NHK WORLD-JAPAN - GIALLO - Motor Trend - NOVE - Cine34 - Fashion TV - Museum - MyZen TV - NASA - Rai Sport - Travel XP - QVC - UNIQtv HD - RMC - cielo - TV8 - CNBC - Rai Storia - Boing - Cartoonito - Focus - La 5 - LA7d - Mediaset ITALIA DUE - TgCom24 - Topcrime - HGTV - LA7 - TRM h24 - Horse TV - Super! - VH1 - Food Network - frisbee - K2 - DMAX - 27 - Real Time - Warner TV Italy - Zona DAZN 2 - Zona DAZN + Canale 5 + Italia 1 + Iris HD + TV2000 HD + LA7CINEMA + La 5 HD + Real time HD + Italia 2 HD + Mediaset Extra HD + Top crime HD + Boing + DMAX HD + France 24 HD English + BBC News + Bloomberg European + Rai 1 HD + Rai 2 HD + Rai 3 HD + K2 + FRISBEE + Al Jazeera english channel + Cartoonito + Rai Sport HD + Rai 4 HD + Rai Premium HD + Al Jazeera English HD + Euronews italian + ARTE HD + TGCOM24 HD + Euronews HD + QVC HD + Rai News 24 HD + Rai storia HD + Rai gulp HD + Rai Yoyo HD + Rai scuola HD + KBS World + Canale 5 HD + Italia 1 HD + Rete 4 HD + RTL 102.5 TV + Radio Italia Live + France 24 HD (en Français) + 20 Mediaset HD + Focus HD + RDS social TV + Rai 4K + Giallo HD + Discovery Turbo + Food Network HD + NHK HD + MyZenTV 4K + Museum 4K + Boing Plus + CIne 34 HD + Travelxp + EQU + Radio Monte Carlo + TV8 HD + Cielo HD + HGTV ITALY HD + TRM h24 + HORSE TV HD + 27 Twentyseven HD + MARCOPOLO TRAVEL TV + DISCOVERY + SOLOCALCIO + RAI RADIO 2 VISUAL + WEDOTV MOVIES + WEDOTV BIG STORIES + Daystar + CNBC HD + Radio Italia Tv HD + TRT World HD + Rai Movie HD + NOVE HD + La7 HD + Rai 5 HD + Super! + Mezzo diff --git a/sites/tivu.tv/tivu.tv.config.js b/sites/tivu.tv/tivu.tv.config.js index d57df08ca..61a7e5c5a 100644 --- a/sites/tivu.tv/tivu.tv.config.js +++ b/sites/tivu.tv/tivu.tv.config.js @@ -1,7 +1,9 @@ -const cheerio = require('cheerio') const dayjs = require('dayjs') const utc = require('dayjs/plugin/utc') +const customParseFormat = require('dayjs/plugin/customParseFormat') const timezone = require('dayjs/plugin/timezone') + +dayjs.extend(customParseFormat) dayjs.extend(utc) dayjs.extend(timezone) @@ -13,31 +15,54 @@ module.exports = { ttl: 60 * 60 * 1000 // 1 hour } }, - url({ date }) { - const diff = date.diff(dayjs().utc().startOf('day'), 'd') - - return `https://www.tivu.tv/epg_ajax_sat.aspx?d=${diff}` + url({ channel, date }) { + date = date.startOf('day') + return `https://services.tivulaguida.it/api/epg/channels/${channel.site_id}/date/${date.format('YYYY-MM-DD')}` }, - parser: function ({ content, channel, date }) { + parser: async function ({ content, channel, date }) { + const axios = require('axios') let programs = [] - const items = parseItems(content, channel, date) - items.forEach(item => { - const $item = cheerio.load(item) - const prev = programs[programs.length - 1] - let start = parseStart($item, date) - if (!start) return - if (prev) { - if (start < prev.start) { - start = start.add(1, 'day') - date = date.add(1, 'day') - } - prev.stop = start - } - const stop = start.add(30, 'minute') + const items = JSON.parse(content) + if (!items || !Array.isArray(items.events)) return programs + + const previousDay = date.subtract(1, 'day') + let urlDayBefore + try { + const response = await axios.get( + `https://services.tivulaguida.it/api/epg/channels/${channel.site_id}/date/${previousDay.format('YYYY-MM-DD')}` + ) + urlDayBefore = response?.data + } catch (error) { + console.log(error) + } + + const allEvents = [ + ...(urlDayBefore?.events || []), + ...items.events + ] + + const midnight = dayjs.tz(date.format('YYYY-MM-DD 00:00'), 'YYYY-MM-DD HH:mm', 'Europe/Rome') + const nextMidnight = midnight.add(1, 'day') + + const seen = new Set() + allEvents.forEach(item => { + if (!item.program) return + + const start = dayjs.tz(item.date_start, 'DD-MM-YYYY HH:mm', 'Europe/Rome') + const stop = dayjs.tz(item.date_end, 'DD-MM-YYYY HH:mm', 'Europe/Rome') + + if (start.isBefore(midnight) || !start.isBefore(nextMidnight)) return + + const key = `${start.format()}|${stop.format()}` + if (seen.has(key)) return + seen.add(key) + programs.push({ - title: parseTitle($item), + title: item.program.title, start, - stop + stop, + description: item.program.description, + icon: item.program.url_poster }) }) @@ -46,46 +71,22 @@ module.exports = { async channels() { const axios = require('axios') const html = await axios - .get('https://www.tivu.tv/epg_ajax_sat.aspx?d=0') + .get('https://services.tivulaguida.it/api/epg/channels.json') .then(r => r.data) .catch(console.log) let channels = [] - - const $ = cheerio.load(html) - $('.q').each((i, el) => { - const site_id = $(el).attr('id') - const name = $(el).find('a').first().data('channel') - - if (!name) return - - channels.push({ - lang: 'it', - site_id, - name + if (html && html.channels) { + html.channels.forEach(channel => { + channels.push({ + lang: 'it', + site_id: channel.id, + name: channel.name, + logo: 'https://services.tivulaguida.it/' + channel.icon + }) }) - }) + } return channels } } - -function parseTitle($item) { - const [title] = $item('a').html().split('
') - - return title -} - -function parseStart($item, date) { - const [, , time] = $item('a').html().split('
') - if (!time) return null - - return dayjs.tz(`${date.format('YYYY-MM-DD')} ${time}`, 'YYYY-MM-DD HH:mm', 'Europe/Rome').utc() -} - -function parseItems(content, channel) { - if (!content) return [] - const $ = cheerio.load(content) - - return $(`.q[id="${channel.site_id}"] > .p`).toArray() -} diff --git a/sites/tivu.tv/tivu.tv.test.js b/sites/tivu.tv/tivu.tv.test.js index b243072a1..ea719c816 100644 --- a/sites/tivu.tv/tivu.tv.test.js +++ b/sites/tivu.tv/tivu.tv.test.js @@ -10,47 +10,44 @@ dayjs.extend(utc) jest.mock('axios') +const date = dayjs('2026-02-26', 'YYYY-MM-DD') + const channel = { - site_id: '62', + site_id: '42', xmltv_id: 'Rai1HD.it' } it('can generate valid url for today', () => { - const date = dayjs.utc().startOf('d') - expect(url({ date })).toBe('https://www.tivu.tv/epg_ajax_sat.aspx?d=0') + expect(url({ channel, date })).toBe('https://services.tivulaguida.it/api/epg/channels/42/date/2026-02-26') }) -it('can generate valid url for tomorrow', () => { - const date = dayjs.utc().startOf('d').add(1, 'd') - expect(url({ date })).toBe('https://www.tivu.tv/epg_ajax_sat.aspx?d=1') -}) +it('can parse response', async () => { + const date = dayjs.utc('2026-02-25', 'YYYY-MM-DD').startOf('d') + const content = fs.readFileSync(path.resolve(__dirname, '__data__/content.json')) -it('can parse response', () => { - const date = dayjs.utc('2022-10-04', 'YYYY-MM-DD').startOf('d') - const content = fs.readFileSync(path.resolve(__dirname, '__data__/content.html')) - - let results = parser({ content, channel, date }).map(p => { + let results = await parser({ content, channel, date }) + results = results.map(p => { p.start = p.start.toJSON() p.stop = p.stop.toJSON() return p }) expect(results[0]).toMatchObject({ - start: '2022-10-03T22:02:00.000Z', - stop: '2022-10-03T22:45:00.000Z', - title: 'Cose Nostre - La figlia del boss' + start: '2026-02-25T05:00:00.000Z', + stop: '2026-02-25T05:28:00.000Z', + title: '1mattina News' }) - expect(results[43]).toMatchObject({ - start: '2022-10-05T04:58:00.000Z', - stop: '2022-10-05T05:28:00.000Z', - title: 'Tgunomattina - in collaborazione con day' + expect(results[28]).toMatchObject({ + start: '2026-02-25T22:56:00.000Z', + stop: '2026-02-26T00:15:00.000Z', + title: 'Festival di Sanremo' }) }) -it('can handle empty guide', () => { - const date = dayjs.utc('2022-10-04', 'YYYY-MM-DD').startOf('d') - const content = fs.readFileSync(path.resolve(__dirname, '__data__/no_content.html')) - const result = parser({ content, channel, date }) +it('can handle empty guide', async () => { + const date = dayjs.utc('2026-02-25', 'YYYY-MM-DD').startOf('d') + const content = fs.readFileSync(path.resolve(__dirname, '__data__/no_content.json')) + const result = await parser({ content, channel, date }) expect(result).toMatchObject([]) }) diff --git a/sites/watch.whaletvplus.com/watch.whaletvplus.com.config.js b/sites/watch.whaletvplus.com/watch.whaletvplus.com.config.js index d65292e60..e704035bb 100644 --- a/sites/watch.whaletvplus.com/watch.whaletvplus.com.config.js +++ b/sites/watch.whaletvplus.com/watch.whaletvplus.com.config.js @@ -144,7 +144,7 @@ async function getAuthToken() { throw new Error('apiToken invalid or expired. Please update config.') } catch (error) { authTokenPromise = null - throw new Error(error.message) + throw new Error(error.message, { cause: error }) } })() diff --git a/sites/web.magentatv.de/web.magentatv.de.channels.xml b/sites/web.magentatv.de/web.magentatv.de.channels.xml index 1719e09d7..13c8885eb 100644 --- a/sites/web.magentatv.de/web.magentatv.de.channels.xml +++ b/sites/web.magentatv.de/web.magentatv.de.channels.xml @@ -1,230 +1,55 @@ - Eurosport 2 - Eurostar TV - Discovery Channel - DELUXE MUSIC - Disney Channel - MTV - Kanal 7 - Sky Sport Top Event - Lust pur - Playboy Europe - National Geographic - ServusTV - Sky Cinema Action - Sky Sport Bundesliga - Rai 1 - SPORT1+ - Bergblick - Rai 2 - TELE 5 - Comedy Central - Warner TV Serie - Nick/Comedy Central+1 - Welt der Wunder - RTL Bremen & Niedersachsen - RTL Hessen - RTL Hamburg & Schleswig-Holstein - Animal Planet - Crime+Investigation - Beate-Uhse.TV (Sky) - auto motor und sport - Baby TV - AXN Black - Sky Sport 4 - Blue Hustler - Sky Sport 6 - Sky Sport 5 - BonGusto - Euronews Italiano - Cartoon Network - Sky Sport 7 Jukebox (Sky) - SYFY Heimatkanal (Sky) - Euro D - KinoweltTV - Oberpfalz TV - SAT.1 Hamburg und Schleswig-Holstein - RFO - SAT.1 Niedersachsen und Bremen - SAT.1 Rheinland-Pfalz und Hessen - SAT.1 Bayern MDR-Fernsehen Sachsen-Anhalt - Cartoonito NDR Fernsehen Hamburg NDR Fernsehen Schleswig-Holstein - GEO Television - NIEDERBAYERN TV Passau WDR Fernsehen Bonn - TV Mainfranken - Kabel Eins CLASSICS WDR Fernsehen Bielefeld WDR Fernsehen Aachen a.tv - The HISTORY Channel WDR Fernsehen Duisburg WDR Fernsehen Siegen WDR Fernsehen Düsseldorf - TV Oberfranken - TVA Ostbayern WDR Fernsehen Dortmund - tv.ingolstadt - NIEDERBAYERN TV Landshut BR Fernsehen Nord - NIEDERBAYERN TV Deggendorf - Straubing Testkanal L04 - Warner TV Comedy - Warner TV Film - Universal TV - Curiosity Channel - Sky Sport 9 - AXN White - Sky Sport 3 - Sky Sport News - eSPORTS1 - Sky Sport 1 - SPORTDIGITAL FUSSBALL - Sky Cinema Premieren - Sky Sport Tennis - Sky Sport Bundesliga 3 - Sky Cinema Classics - Sky Krimi - Sky Cinema Premieren +24 - Sky Sport Bundesliga 1 - RTL Passion - Rai 3 - Sky Sport Bundesliga 2 - Sky Sport 2 - Show Turk - RTL Crime - Jukebox - Sky Sport Bundesliga 8 - Nick Jr. - SAT.1 emotions - RTL Living - Penthouse Passion - Sky Sport Bundesliga 6 - Sky Sport Bundesliga 4 - Sky Sport Bundesliga 5 - Sky Cinema Fun - ÜLKE TV - Sky Sport Bundesliga 9 - Franken Fernsehen WDR Fernsehen Münster NDR Fernsehen Mecklenburg-Vorpommern - münchen.tv rbb fernsehen Brandenburg Testkanal L02 - Hamburg 1 - RNF WDR Fernsehen Wuppertal - SAT.1 Nordrhein-Westfalen MDR-Fernsehen Thüringen - 13TH STREET Testkanal I03 - Sky Sport Bundesliga 7 - ProSieben FUN - Romance TV - Sky Sport 8 - Sky Cinema Best of - Sky Atlantic - SAT.1 GOLD Sport 16 - myTeamTV Sport 15 - myTeamTV - Radio Bremen TV Sport 17 - myTeamTV MDR-Fernsehen Sachsen - phoenix - Das Erste - ProSieben - WELT - n-tv NDR Fernsehen Niedersachsen - ZDFinfo - SR Fernsehen - sixx - SAT.1 - RTLZWEI - TLC rbb fernsehen Berlin - VOX - hr-fernsehen - KiKA - Eurosport 1 - ZDFneo - 3sat - SWR Fernsehen RP - ARTE - NITRO - ProSieben MAXX WDR Fernsehen Köln - SWR Fernsehen BW - CNN International - tagesschau24 - SPORT1 - ONE - Super RTL - RTL - Kabel Eins BR Fernsehen Süd - ZDF Lokal-TV Meine Aufnahmen Testkanal L01 - DMAX - TV8 Int - beIN Movies Turk Testkanal L03 Testkanal H01 - QVC - allgäu.tv - HSE - ANIXE+ - BBC News Testkanal L07 Warner TV Serie (Sky) Warner TV Comedy (Sky) Universal TV (Sky) - SYFY (Sky) + Sky Sci-Fi (Sky) The HISTORY Channel (Sky) - Discovery Channel (Sky) 13TH STREET (Sky) - Kinomir - TVP Polonia - iTVN - Euronews Russki - OstWest Testkanal L06 - RTL Nordrhein-Westfalen - ARD-alpha - Euronews Deutsch - TeleBom/TeleDom - Bibel TV - sonnenklar.TV - K-TV Testkanal I01 WDR Fernsehen Essen Testkanal L05 Warner TV Film (Sky) - RTLup - OF-TV Sport 2 - myTeamTV Sport 3 - myTeamTV Sport 1 - myTeamTV - N24 Doku - National Geographic Wild - wetter.com TV - Sky Cinema Family - Kabel Eins Doku - Sky One - L-TV - WWTV - TV Mittelrhein - tv.berlin - TOGGO plus - Motorvision+ Magenta Musik 1 Magenta Musik 2 Sport 8 - myTeamTV @@ -239,78 +64,20 @@ Sport 7 - myTeamTV Sport 6 - myTeamTV Sport 4 - myTeamTV - ALEX Berlin Romance TV (Sky) Regio TV - Heimatkanal - OK-TV Ludwigshafen - OK54 Trier - Megathek - Rennsteig.TV - TV Westsachsen - Dresden Fernsehen - Chemnitz Fernsehen - Studio 47 - Rhein-Main TV - OK Weinstraße - OK:TV Mainz - OK4 - salve.tv - Leipzig Fernsehen - HAUPTSTADT.TV - HGTV - altenburg.tv - Baden TV + MagentaTV+ Sport 18 - myTeamTV - Baden TV Süd - NRWision Sky Replay MS Sport - beIN iZ - Show Max Cartoonito (Sky) - Sky Cinema Special - VOXup - Sky Cinema Thriller - #dabeiTV - CEM TV - Habertürk TV Nick Jr. (Sky) - ems TV - Nicktoons (Sky) - Spiegel Geschichte Cartoon Network (Sky) - Friesischer Rundfunk - RFH Regionalfernsehen Harz - 1-2-3.tv - LAUSITZWELLE - ANIXE HD Serie - MDF.1 Fernsehen - Sky Sport F1 - Sky Crime - Servus TV Motorsport - Red Bull TV - MagentaSport - BILD - More Than Sports TV + Red Bull TV Motorsport Crime+Investigation (Sky) - Sky Nature - Sky Documentaries SRF - RTL+ LIVE 3 - RTL+ LIVE 1 - RTL+ LIVE 2 - Shop LC - RTL+ LIVE 5 - RTL+ LIVE 6 - RTL+ LIVE 4 - CHANNEL21 - Fashion TV - Marco Polo TV - Deutsches Musik Fernsehen TV5MONDE Europe Al Jazeera English - France 24 francais RiC Asharq News Ballermann TV @@ -320,18 +87,16 @@ ONE MUSIC TELEVISION FOLX MUSIC TELEVISION ZWEI MUSIC TELEVISION - craction + TOP SERIEN Stingray Classica Stingray iConcerts - wedo movies + wedotv Movies Stingray DJAZZ ERT World INPLUS OUTtv SCHLAGER DELUXE CNBC International - DAZN 1 - DAZN 2 Sky Sport 10 Sky Sport Premier League Sky Sport Mix @@ -348,4 +113,228 @@ France 3 RTL Bayern RTL Rhein-Neckar + Sky Cinema Highlights + HT SPOR + Juwelo + QVC ZWEI + National Geographic (Sky) + National Geographic Wild (Sky) + MS GOLF 2 + MS GOLF 1 + 3sat + 13TH STREET + 1-2-3.tv + SAT.1 Bayern + SAT.1 Rheinland-Pfalz und Hessen + SAT.1 Hamburg und Schleswig-Holstein + SAT.1 Niedersachsen und Bremen + ALEX Berlin + allgäu.tv + altenburg.tv + Animal Planet + ANIXE HD Serie + ANIXE+ + ARD-alpha + ARTE + auto motor und sport + AXN Black + Baby TV + Baden TV + Baden TV Süd + BBC News + Beate-Uhse.TV (Sky) + beIN iZ + beIN Movies Turk + Bergblick + Bibel TV + Blue Hustler + BonGusto + Cartoonito + Cartoon Network + CHANNEL21 + CNN International + Nick/Comedy Central+1 + Comedy Central + Crime+Investigation + Curiosity Channel + #dabeiTV + Das Erste + DELUXE MUSIC + Discovery Channel + Disney Channel + DMAX + DMF + ems TV + eSportsONE + Euro D + Euronews Deutsch + Euronews Italiano + Euronews Russki + Eurosport 1 + Eurosport 2 + Eurostar TV + Fashion TV + France 24 francais + Franken Fernsehen + Friesischer Rundfunk + GEO Television + Habertürk TV + Hamburg 1 + Heimatkanal + HGTV + The HISTORY Channel + hr-fernsehen + HSE + iTVN + Jukebox + Kabel Eins + Kabel Eins CLASSICS + Kabel Eins Doku + Kanal 7 + KiKA + KinoweltTV + K-TV + LAUSITZWELLE + L-TV + Lust pur + MagentaSport + Marco Polo TV + MDF.1 Fernsehen + More Than Sports TV + Motorvision+ + MTV + münchen.tv + N24 Doku + Kinomir + National Geographic + National Geographic Wild + Nick Jr. + Nicktoons (Sky) + NIEDERBAYERN TV Deggendorf - Straubing + NIEDERBAYERN TV Landshut + NIEDERBAYERN TV Passau + NITRO + NRWision + ntv + Oberpfalz TV + OF-TV + OK4 + OK54 Trier + rheinlOKal + OK:TV Mainz + OK Weinstraße + ONE + OstWest + Penthouse Passion + phoenix + Playboy Europe + ProSieben + ProSieben FUN + ProSieben MAXX + QVC + Radio Bremen TV + Rai 1 + Rai 2 + Rai 3 + Red Bull TV + Rennsteig.TV + RFH Regionalfernsehen Harz + RFO + RNF + Romance TV + RTL + RTL Crime + RTL Hessen + RTL Living + RTL Hamburg & Schleswig-Holstein + RTL Bremen & Niedersachsen + RTL Passion + Super RTL + RTLup + RTL Nordrhein-Westfalen + RTLZWEI + Chemnitz Fernsehen + Dresden Fernsehen + Leipzig Fernsehen + salve.tv + SAT.1 + SAT.1 emotions + SAT.1 GOLD + SAT.1 Nordrhein-Westfalen + DF1 + Shop LC + Show Max + Show Turk + sixx + Sky Atlantic + Sky Cinema Action + Sky Cinema Classics + Sky Cinema Family + Sky Cinema Premiere + Sky Crime + Sky Documentaries + Sky Krimi + Sky Nature + Sky One + Sky Sport Top Event + Sky Sport Tennis + Sky Sport 1 + Sky Sport 2 + Sky Sport 3 + Sky Sport 4 + Sky Sport 5 + Sky Sport 6 + Sky Sport 7 + Sky Sport 8 + Sky Sport 9 + Sky Sport Bundesliga + Sky Sport Bundesliga 1 + Sky Sport Bundesliga 2 + Sky Sport Bundesliga 3 + Sky Sport Bundesliga 4 + Sky Sport Bundesliga 5 + Sky Sport Bundesliga 6 + Sky Sport Bundesliga 7 + Sky Sport Bundesliga 8 + Sky Sport Bundesliga 9 + Sky Sport F1 + Sky Sport News + sonnenklar.TV + AXN White + Spiegel Geschichte + SPORT1 + Sportdigital1+ + SPORTDIGITAL FUSSBALL + SR Fernsehen + Studio 47 + SWR Fernsehen BW + SWR Fernsehen RP + Sky Sci-Fi + tagesschau24 + TELE 5 + TeleBom/TeleDom + TLC + TOGGO plus + TV8 Int + TVA Ostbayern + tv.berlin + tv.ingolstadt + TV Mainfranken + TV Mittelrhein + TV Oberfranken + TVP Polonia + TV Westsachsen + ÜLKE TV + Universal TV + VOX + VOXup + Warner TV Comedy + Warner TV Film + Warner TV Serie + WELT + Welt der Wunder + wetter.com TV + ZDF + ZDFinfo + ZDFneo diff --git a/sites/winplay.co/__data__/content.json b/sites/winplay.co/__data__/content.json index 388cf0209..14ad770e0 100644 --- a/sites/winplay.co/__data__/content.json +++ b/sites/winplay.co/__data__/content.json @@ -1,622 +1,2249 @@ { - "data": { - "getLives": [ - { - "_id": "529cff6f6bd2ea6b610000e0", - "logo": "https://platform-static.cdn.mdstrm.com/player/logo/s-live-529cff6f6bd2ea6b610000e0.png?c=20241223", - "name": "Win+ Fútbol", - "schedules": [ - { - "_id": "67633cf2cd9263fa4fde8fd2", - "name": "Mejores partidos 2024: América vs. Nacional", - "date_start": "2024-12-23T22:30:00.000Z", - "date_end": "2024-12-24T00:30:00.000Z", - "current": true, - "match": null, - "show": null, - "live": { - "_id": "529cff6f6bd2ea6b610000e0", - "dvr": true, - "type": "video", - "purchased": -1, - "__typename": "Live" - }, - "__typename": "Schedule" - }, - { - "_id": "67633d28a1137afadc036ae7", - "name": "Los Disruptivos de Win", - "date_start": "2024-12-24T00:30:00.000Z", - "date_end": "2024-12-24T02:30:00.000Z", - "current": false, - "match": null, - "show": null, - "live": { - "_id": "529cff6f6bd2ea6b610000e0", - "dvr": true, - "type": "video", - "purchased": -1, - "__typename": "Live" - }, - "__typename": "Schedule" - }, - { - "_id": "67633ecd895d155a3913f983", - "name": "WIn Noticias", - "date_start": "2024-12-24T02:30:00.000Z", - "date_end": "2024-12-24T03:30:00.000Z", - "current": false, - "match": null, - "show": null, - "live": { - "_id": "529cff6f6bd2ea6b610000e0", - "dvr": true, - "type": "video", - "purchased": -1, - "__typename": "Live" - }, - "__typename": "Schedule" - }, - { - "_id": "67633ef7a449f4fa09408d69", - "name": "Repetición Programación Win", - "date_start": "2024-12-24T03:30:00.000Z", - "date_end": "2024-12-24T14:00:00.000Z", - "current": false, - "match": null, - "show": null, - "live": { - "_id": "529cff6f6bd2ea6b610000e0", - "dvr": true, - "type": "video", - "purchased": -1, - "__typename": "Live" - }, - "__typename": "Schedule" - }, - { - "_id": "6763402d863cc2faffa72beb", - "name": "Repetición Copa Win Sports Masc Sub 15 (Final)", - "date_start": "2024-12-24T14:00:00.000Z", - "date_end": "2024-12-24T16:00:00.000Z", - "current": false, - "match": null, - "show": null, - "live": { - "_id": "529cff6f6bd2ea6b610000e0", - "dvr": true, - "type": "video", - "purchased": -1, - "__typename": "Live" - }, - "__typename": "Schedule" - }, - { - "_id": "6763404ef696ae58fdb91b9e", - "name": "Win Noticias", - "date_start": "2024-12-24T16:00:00.000Z", - "date_end": "2024-12-24T17:00:00.000Z", - "current": false, - "match": null, - "show": null, - "live": { - "_id": "529cff6f6bd2ea6b610000e0", - "dvr": true, - "type": "video", - "purchased": -1, - "__typename": "Live" - }, - "__typename": "Schedule" - }, - { - "_id": "6765cc4c6c5458ca73ebe46f", - "name": "Repetición Copa BetPlay Dimayor 2017", - "date_start": "2024-12-24T17:00:00.000Z", - "date_end": "2024-12-24T19:00:00.000Z", - "current": false, - "match": null, - "show": null, - "live": { - "_id": "529cff6f6bd2ea6b610000e0", - "dvr": true, - "type": "video", - "purchased": -1, - "__typename": "Live" - }, - "__typename": "Schedule" - }, - { - "_id": "6765cc681e8e2bc9c8b91b96", - "name": "Detrás de la Gloria", - "date_start": "2024-12-24T19:00:00.000Z", - "date_end": "2024-12-24T20:00:00.000Z", - "current": false, - "match": null, - "show": null, - "live": { - "_id": "529cff6f6bd2ea6b610000e0", - "dvr": true, - "type": "video", - "purchased": -1, - "__typename": "Live" - }, - "__typename": "Schedule" - }, - { - "_id": "6765cca85fbec49a96d9735d", - "name": "Repetición Torneo BetPlay Dimayor 2024-I (Final Ida)", - "date_start": "2024-12-24T20:00:00.000Z", - "date_end": "2024-12-24T22:00:00.000Z", - "current": false, - "match": null, - "show": null, - "live": { - "_id": "529cff6f6bd2ea6b610000e0", - "dvr": true, - "type": "video", - "purchased": -1, - "__typename": "Live" - }, - "__typename": "Schedule" - }, - { - "_id": "6765ccc8ef60d7ca50bf7f72", - "name": "Llaneros Campeón", - "date_start": "2024-12-24T22:00:00.000Z", - "date_end": "2024-12-24T23:00:00.000Z", - "current": false, - "match": null, - "show": null, - "live": { - "_id": "529cff6f6bd2ea6b610000e0", - "dvr": true, - "type": "video", - "purchased": -1, - "__typename": "Live" - }, - "__typename": "Schedule" - }, - { - "_id": "6765cd0d88e8c2fb6532ad9d", - "name": "Repetición Torneo BetPlay Dimayor 2024-I (Final Vuelta)", - "date_start": "2024-12-24T23:00:00.000Z", - "date_end": "2024-12-25T01:00:00.000Z", - "current": false, - "match": null, - "show": null, - "live": { - "_id": "529cff6f6bd2ea6b610000e0", - "dvr": true, - "type": "video", - "purchased": -1, - "__typename": "Live" - }, - "__typename": "Schedule" - }, - { - "_id": "6765cd3f7010a15941eee1f7", - "name": "Win Noticias", - "date_start": "2024-12-25T01:00:00.000Z", - "date_end": "2024-12-25T02:00:00.000Z", - "current": false, - "match": null, - "show": null, - "live": { - "_id": "529cff6f6bd2ea6b610000e0", - "dvr": true, - "type": "video", - "purchased": -1, - "__typename": "Live" - }, - "__typename": "Schedule" - }, - { - "_id": "6765cd73cf81e69c6f938fb7", - "name": "Repetición Programación Win", - "date_start": "2024-12-25T02:00:00.000Z", - "date_end": "2024-12-25T14:00:00.000Z", - "current": false, - "match": null, - "show": null, - "live": { - "_id": "529cff6f6bd2ea6b610000e0", - "dvr": true, - "type": "video", - "purchased": -1, - "__typename": "Live" - }, - "__typename": "Schedule" - }, - { - "_id": "6765cd9690f3e6c93ff24f88", - "name": "Repetición Copa Win Sports Fem Sub 13", - "date_start": "2024-12-25T14:00:00.000Z", - "date_end": "2024-12-25T16:00:00.000Z", - "current": false, - "match": null, - "show": null, - "live": { - "_id": "529cff6f6bd2ea6b610000e0", - "dvr": true, - "type": "video", - "purchased": -1, - "__typename": "Live" - }, - "__typename": "Schedule" - }, - { - "_id": "6765cdb9958caf9ad827b698", - "name": "Win Noticias", - "date_start": "2024-12-25T16:00:00.000Z", - "date_end": "2024-12-25T17:00:00.000Z", - "current": false, - "match": null, - "show": null, - "live": { - "_id": "529cff6f6bd2ea6b610000e0", - "dvr": true, - "type": "video", - "purchased": -1, - "__typename": "Live" - }, - "__typename": "Schedule" - }, - { - "_id": "6765cdde6c5458ca73ec0bb5", - "name": "Repetición Copa BetPlay Dimayor 2018", - "date_start": "2024-12-25T17:00:00.000Z", - "date_end": "2024-12-25T19:00:00.000Z", - "current": false, - "match": null, - "show": null, - "live": { - "_id": "529cff6f6bd2ea6b610000e0", - "dvr": true, - "type": "video", - "purchased": -1, - "__typename": "Live" - }, - "__typename": "Schedule" - }, - { - "_id": "6765cdf63ac862cf29b0948f", - "name": "Detrás de la Gloria", - "date_start": "2024-12-25T19:00:00.000Z", - "date_end": "2024-12-25T20:00:00.000Z", - "current": false, - "match": null, - "show": null, - "live": { - "_id": "529cff6f6bd2ea6b610000e0", - "dvr": true, - "type": "video", - "purchased": -1, - "__typename": "Live" - }, - "__typename": "Schedule" - }, - { - "_id": "6765ce19a449f4fa096d669f", - "name": "Liga BetPlay Dimayor 2024-I (Final Ida)", - "date_start": "2024-12-25T20:00:00.000Z", - "date_end": "2024-12-25T22:00:00.000Z", - "current": false, - "match": null, - "show": null, - "live": { - "_id": "529cff6f6bd2ea6b610000e0", - "dvr": true, - "type": "video", - "purchased": -1, - "__typename": "Live" - }, - "__typename": "Schedule" - }, - { - "_id": "6765ce3994a83798b6aaab0e", - "name": "Bucaramanga Campeón", - "date_start": "2024-12-25T22:00:00.000Z", - "date_end": "2024-12-25T23:00:00.000Z", - "current": false, - "match": null, - "show": null, - "live": { - "_id": "529cff6f6bd2ea6b610000e0", - "dvr": true, - "type": "video", - "purchased": -1, - "__typename": "Live" - }, - "__typename": "Schedule" - } - ], - "__typename": "Live" - }, - { - "_id": "5265a8f3af1ecb9d320000ee", - "logo": "https://platform-static.cdn.mdstrm.com/player/logo/s-live-5265a8f3af1ecb9d320000ee.png?c=20241223", - "name": "Win Sports", - "schedules": [ - { - "_id": "6763030f777e099d5ee2869e", - "name": "Saque Largo", - "date_start": "2024-12-23T21:00:00.000Z", - "date_end": "2024-12-24T00:30:00.000Z", - "current": true, - "match": null, - "show": null, - "live": { - "_id": "5265a8f3af1ecb9d320000ee", - "dvr": true, - "type": "video", - "purchased": -1, - "__typename": "Live" - }, - "__typename": "Schedule" - }, - { - "_id": "6769957ef1d3bc4c15c374ad", - "name": "Repetición Liga BetPlay Dimayor 2024-II: Nacional vs Tolima (Final Vuelta)", - "date_start": "2024-12-24T00:30:00.000Z", - "date_end": "2024-12-24T02:30:00.000Z", - "current": false, - "match": null, - "show": null, - "live": { - "_id": "5265a8f3af1ecb9d320000ee", - "dvr": true, - "type": "video", - "purchased": -1, - "__typename": "Live" - }, - "__typename": "Schedule" - }, - { - "_id": "676995b4ce095c2598505dab", - "name": "Win Noticias", - "date_start": "2024-12-24T02:30:00.000Z", - "date_end": "2024-12-24T03:30:00.000Z", - "current": false, - "match": null, - "show": null, - "live": { - "_id": "5265a8f3af1ecb9d320000ee", - "dvr": true, - "type": "video", - "purchased": -1, - "__typename": "Live" - }, - "__typename": "Schedule" - }, - { - "_id": "67699621857fab2481285bb5", - "name": "Repetición Programación Win", - "date_start": "2024-12-24T03:30:00.000Z", - "date_end": "2024-12-24T14:00:00.000Z", - "current": false, - "match": null, - "show": null, - "live": { - "_id": "5265a8f3af1ecb9d320000ee", - "dvr": true, - "type": "video", - "purchased": -1, - "__typename": "Live" - }, - "__typename": "Schedule" - }, - { - "_id": "6769964e7d230225db2f0f78", - "name": "Repetición Evento 1995 - 2011", - "date_start": "2024-12-24T14:00:00.000Z", - "date_end": "2024-12-24T16:00:00.000Z", - "current": false, - "match": null, - "show": null, - "live": { - "_id": "5265a8f3af1ecb9d320000ee", - "dvr": true, - "type": "video", - "purchased": -1, - "__typename": "Live" - }, - "__typename": "Schedule" - }, - { - "_id": "67699689bd14cf50b8f0ec65", - "name": "Win Noticias", - "date_start": "2024-12-24T16:00:00.000Z", - "date_end": "2024-12-24T18:00:00.000Z", - "current": false, - "match": null, - "show": null, - "live": { - "_id": "5265a8f3af1ecb9d320000ee", - "dvr": true, - "type": "video", - "purchased": -1, - "__typename": "Live" - }, - "__typename": "Schedule" - }, - { - "_id": "676996b8c0036c5606f6b08f", - "name": "De Colección FPC", - "date_start": "2024-12-24T18:00:00.000Z", - "date_end": "2024-12-24T19:00:00.000Z", - "current": false, - "match": null, - "show": null, - "live": { - "_id": "5265a8f3af1ecb9d320000ee", - "dvr": true, - "type": "video", - "purchased": -1, - "__typename": "Live" - }, - "__typename": "Schedule" - }, - { - "_id": "676998e3857fab2481289303", - "name": "Mejor partido Colombia: Colombia vs. Gran Bretaña", - "date_start": "2024-12-24T19:00:00.000Z", - "date_end": "2024-12-24T21:00:00.000Z", - "current": false, - "match": null, - "show": null, - "live": { - "_id": "5265a8f3af1ecb9d320000ee", - "dvr": true, - "type": "video", - "purchased": -1, - "__typename": "Live" - }, - "__typename": "Schedule" - }, - { - "_id": "67699907149eb85649e1694b", - "name": "Mejor partido Colombia: Colombia vs. Italia", - "date_start": "2024-12-24T21:00:00.000Z", - "date_end": "2024-12-24T23:00:00.000Z", - "current": false, - "match": null, - "show": null, - "live": { - "_id": "5265a8f3af1ecb9d320000ee", - "dvr": true, - "type": "video", - "purchased": -1, - "__typename": "Live" - }, - "__typename": "Schedule" - }, - { - "_id": "6769993e07024c257874e517", - "name": "Creyentes: Siempre Adelante, ni un paso atrás", - "date_start": "2024-12-24T23:00:00.000Z", - "date_end": "2024-12-25T00:00:00.000Z", - "current": false, - "match": null, - "show": null, - "live": { - "_id": "5265a8f3af1ecb9d320000ee", - "dvr": true, - "type": "video", - "purchased": -1, - "__typename": "Live" - }, - "__typename": "Schedule" - }, - { - "_id": "676999729f609656290acf12", - "name": "Repetición Liga Betplay Dimayor 2024-I: Bucaramanga vs. Sata Fe", - "date_start": "2024-12-25T00:00:00.000Z", - "date_end": "2024-12-25T02:00:00.000Z", - "current": false, - "match": null, - "show": null, - "live": { - "_id": "5265a8f3af1ecb9d320000ee", - "dvr": true, - "type": "video", - "purchased": -1, - "__typename": "Live" - }, - "__typename": "Schedule" - }, - { - "_id": "676999918d38e9b76a940868", - "name": "Bucaramanga Campeón", - "date_start": "2024-12-25T02:00:00.000Z", - "date_end": "2024-12-25T03:00:00.000Z", - "current": false, - "match": null, - "show": null, - "live": { - "_id": "5265a8f3af1ecb9d320000ee", - "dvr": true, - "type": "video", - "purchased": -1, - "__typename": "Live" - }, - "__typename": "Schedule" - }, - { - "_id": "676999b5076f85b69b3593f5", - "name": "Repetición Programación Win", - "date_start": "2024-12-25T03:00:00.000Z", - "date_end": "2024-12-25T16:00:00.000Z", - "current": false, - "match": null, - "show": null, - "live": { - "_id": "5265a8f3af1ecb9d320000ee", - "dvr": true, - "type": "video", - "purchased": -1, - "__typename": "Live" - }, - "__typename": "Schedule" - } - ], - "__typename": "Live" - }, - { - "_id": "66bcd350d222a8a780862ec3", - "logo": "https://ott-assets.mdstrm.com/526590f532b8fca13200005c/66563a476780f218bb74c7cc/assets/Logo_Play.png", - "name": "Liga BetPlay de Baloncesto 2024 - II", - "schedules": [], - "__typename": "Live" - }, - { - "_id": "64627247f7aaba0882296a20", - "logo": "https://ott-assets.mdstrm.com/526590f532b8fca13200005c/66563a476780f218bb74c7cc/assets/Logo_Play.png", - "name": "Señal Backup final Win básica", - "schedules": [], - "__typename": "Live" - }, - { - "_id": "627c589eafdeb0082d4ea3de", - "logo": "https://ott-assets.mdstrm.com/526590f532b8fca13200005c/66563a476780f218bb74c7cc/assets/Logo_Play.png", - "name": "Rueda prensa FMS", - "schedules": [], - "__typename": "Live" - }, - { - "_id": "61c3c92309dce808f216d778", - "logo": "https://ott-assets.mdstrm.com/526590f532b8fca13200005c/66563a476780f218bb74c7cc/assets/Logo_Play.png", - "name": "Liga BetPlay Dimayor 2024 - II: Pereira vs. Equidad", - "schedules": [], - "__typename": "Live" - }, - { - "_id": "627c5650637d89088290fedf", - "logo": "https://ott-assets.mdstrm.com/526590f532b8fca13200005c/66563a476780f218bb74c7cc/assets/Logo_Play.png", - "name": "Premier 12", - "schedules": [], - "__typename": "Live" - }, - { - "_id": "66195b77c7c13360bdaed72f", - "logo": "https://ott-assets.mdstrm.com/526590f532b8fca13200005c/66563a476780f218bb74c7cc/assets/Logo_Play.png", - "name": "Liga BetPlay de Baloncesto 2024 - II", - "schedules": [], - "__typename": "Live" - }, - { - "_id": "662bd720450e3008a5f385d2", - "logo": "https://ott-assets.mdstrm.com/526590f532b8fca13200005c/66563a476780f218bb74c7cc/assets/Logo_Play.png", - "name": "Liga BetPlay Dimayor 2024 - II: Fortaleza vs. Águilas Doradas", - "schedules": [], - "__typename": "Live" - }, - { - "_id": "66bcd3855e7418050351d810", - "logo": "https://ott-assets.mdstrm.com/526590f532b8fca13200005c/66563a476780f218bb74c7cc/assets/Logo_Play.png", - "name": "Liga BetPlay Dimayor 2024 - II: Alianza vs. Bucaramanga", - "schedules": [], - "__typename": "Live" - } - ] - } + "count": 3, + "result": [ + { + "id": "67bc784f7bcf689920e621ec", + "content": { + "audioOnly": false, + "catchUpHours": 48, + "contentLists": [], + "clip": false, + "contentType": "BROADCAST", + "downloadable": { + "isDownloadable": false + }, + "entitlementTypes": [ + "media" + ], + "epgId": "WINSPORTS_PLUS", + "externalId": "71ca6426-67fe-4941-b62a-67db824321fb", + "flights": [ + { + "flights": [ + { + "start": "2025-01-01T09:30:00.000Z", + "end": null + } + ], + "network": "winsportslive" + } + ], + "hasCatchUp": true, + "hd": false, + "id": "67bc784f7bcf689920e621ec", + "images": [ + { + "url": "https://unity-img.tbxapis.com/v0/images/6a561d048728db7c786b53b0941d0dd9/content/67bc784f7bcf689920e621ec/b389db91b2792c6b7980f947e2c24b54/img.png", + "contentType": "image/png", + "type": "POSTER", + "size": { + "height": 1500, + "ratio": 0.6666666666666666, + "width": 1000 + }, + "created": "2025-11-25T17:15:38.146Z", + "updated": "2025-11-25T17:15:38.146Z" + }, + { + "url": "https://unity-img.tbxapis.com/v0/images/6a561d048728db7c786b53b0941d0dd9/content/67bc784f7bcf689920e621ec/f5f751fcb1f465de70cc7cbbad09ebe1/img.png", + "contentType": "image/png", + "type": "THUMB", + "size": { + "height": 1080, + "ratio": 1.7777777777777777, + "width": 1920 + }, + "created": "2025-11-25T17:39:59.208Z", + "updated": "2025-11-25T17:39:59.208Z" + } + ], + "isNew": false, + "live": true, + "networks": [ + { + "name": "Win Sports Live", + "network": "winsportslive", + "embed": true + } + ], + "participants": { + "authors": [], + "cast": [], + "director": [], + "writer": [] + }, + "playbackType": [], + "provider": "winsportslivecpix", + "ratingLevel": 2, + "ratings": [ + "NR" + ], + "replay": false, + "shortId": "4ct1be", + "tags": [], + "title": "Win+Fútbol", + "tracking": { + "bookmarks": true, + "events": true + }, + "trailerConfig": { + "isTrailer": false + }, + "urn": "urn:tve:winsportslive", + "viewCondition": "standard", + "subtitleTracks": [], + "encodings": [ + "application/dash+xml", + "application/x-mpegURL" + ], + "isCoppa": false, + "alternativeDescriptions": [], + "signalId": "winsportsplus", + "category": null, + "epg": [ + { + "episode": null, + "season": null, + "genres": [], + "lang": "es", + "participants": { + "directors": [], + "cast": [] + }, + "ratings": [], + "images": [ + { + "url": "https://unity-img.tbxapis.com/v0/epg/6a561d048728db7c786b53b0941d0dd9/WINSPORTS_PLUS/B2607027/B2607027/260219153005_Thumb_generico_WINPLAY.png", + "type": "THUMB", + "image": "https://unity-img.tbxapis.com/v0/epg/6a561d048728db7c786b53b0941d0dd9/WINSPORTS_PLUS/B2607027/B2607027/260219153005_Thumb_generico_WINPLAY.png" + }, + { + "url": "https://unity-img.tbxapis.com/v0/epg/6a561d048728db7c786b53b0941d0dd9/WINSPORTS_PLUS/B2607027/B2607027/260219153005_poster_generico_WINPLAY.png", + "type": "POSTER", + "image": "https://unity-img.tbxapis.com/v0/epg/6a561d048728db7c786b53b0941d0dd9/WINSPORTS_PLUS/B2607027/B2607027/260219153005_poster_generico_WINPLAY.png" + } + ], + "cid": "B2607027", + "programId": "B2607027", + "programName": "Repetición Medio Tiempo", + "externalId": "B2607027", + "title": "Repetición Medio Tiempo", + "description": "Repetición", + "contentType": "EPISODE", + "duration": 7200, + "tags": [], + "startTime": "2026-02-18T19:30:00.000Z", + "endTime": "2026-02-18T21:30:00.000Z", + "broadcastDate": { + "start": "2026-02-18T19:30:00.000Z", + "end": "2026-02-18T21:30:00.000Z" + }, + "countries": [ + "all" + ], + "updated": "2026-02-19T15:30:05.405Z" + }, + { + "episode": null, + "season": null, + "genres": [], + "lang": "es", + "participants": { + "directors": [], + "cast": [] + }, + "ratings": [], + "images": [ + { + "url": "https://unity-img.tbxapis.com/v0/epg/6a561d048728db7c786b53b0941d0dd9/WINSPORTS_PLUS/B2607028/B2607028/260219153005_Thumb_generico_WINPLAY.png", + "type": "THUMB", + "image": "https://unity-img.tbxapis.com/v0/epg/6a561d048728db7c786b53b0941d0dd9/WINSPORTS_PLUS/B2607028/B2607028/260219153005_Thumb_generico_WINPLAY.png" + }, + { + "url": "https://unity-img.tbxapis.com/v0/epg/6a561d048728db7c786b53b0941d0dd9/WINSPORTS_PLUS/B2607028/B2607028/260219153005_poster_generico_WINPLAY.png", + "type": "POSTER", + "image": "https://unity-img.tbxapis.com/v0/epg/6a561d048728db7c786b53b0941d0dd9/WINSPORTS_PLUS/B2607028/B2607028/260219153005_poster_generico_WINPLAY.png" + } + ], + "cid": "B2607028", + "programId": "B2607028", + "programName": "Win Noticias", + "externalId": "B2607028", + "title": "Win Noticias", + "description": "Noticiero", + "contentType": "EPISODE", + "duration": 5400, + "tags": [], + "startTime": "2026-02-18T21:30:00.000Z", + "endTime": "2026-02-18T23:00:00.000Z", + "broadcastDate": { + "start": "2026-02-18T21:30:00.000Z", + "end": "2026-02-18T23:00:00.000Z" + }, + "countries": [ + "all" + ], + "updated": "2026-02-19T15:30:05.405Z" + }, + { + "episode": null, + "season": null, + "genres": [], + "lang": "es", + "participants": { + "directors": [], + "cast": [] + }, + "ratings": [], + "images": [ + { + "url": "https://unity-img.tbxapis.com/v0/epg/6a561d048728db7c786b53b0941d0dd9/WINSPORTS_PLUS/B2607029/B2607029/260219153005_Thumb_generico_WINPLAY.png", + "type": "THUMB", + "image": "https://unity-img.tbxapis.com/v0/epg/6a561d048728db7c786b53b0941d0dd9/WINSPORTS_PLUS/B2607029/B2607029/260219153005_Thumb_generico_WINPLAY.png" + }, + { + "url": "https://unity-img.tbxapis.com/v0/epg/6a561d048728db7c786b53b0941d0dd9/WINSPORTS_PLUS/B2607029/B2607029/260219153005_poster_generico_WINPLAY.png", + "type": "POSTER", + "image": "https://unity-img.tbxapis.com/v0/epg/6a561d048728db7c786b53b0941d0dd9/WINSPORTS_PLUS/B2607029/B2607029/260219153005_poster_generico_WINPLAY.png" + } + ], + "cid": "B2607029", + "programId": "B2607029", + "programName": "Cavsulas", + "externalId": "B2607029", + "title": "Cavsulas", + "description": "Programa ", + "contentType": "EPISODE", + "duration": 1800, + "tags": [], + "startTime": "2026-02-18T23:00:00.000Z", + "endTime": "2026-02-18T23:30:00.000Z", + "broadcastDate": { + "start": "2026-02-18T23:00:00.000Z", + "end": "2026-02-18T23:30:00.000Z" + }, + "countries": [ + "all" + ], + "updated": "2026-02-19T15:30:05.405Z" + }, + { + "episode": null, + "season": null, + "genres": [], + "lang": "es", + "participants": { + "directors": [], + "cast": [] + }, + "ratings": [], + "images": [ + { + "url": "https://unity-img.tbxapis.com/v0/epg/6a561d048728db7c786b53b0941d0dd9/WINSPORTS_PLUS/B2607030/B2607030/260219153005_Thumb_generico_WINPLAY.png", + "type": "THUMB", + "image": "https://unity-img.tbxapis.com/v0/epg/6a561d048728db7c786b53b0941d0dd9/WINSPORTS_PLUS/B2607030/B2607030/260219153005_Thumb_generico_WINPLAY.png" + }, + { + "url": "https://unity-img.tbxapis.com/v0/epg/6a561d048728db7c786b53b0941d0dd9/WINSPORTS_PLUS/B2607030/B2607030/260219153005_poster_generico_WINPLAY.png", + "type": "POSTER", + "image": "https://unity-img.tbxapis.com/v0/epg/6a561d048728db7c786b53b0941d0dd9/WINSPORTS_PLUS/B2607030/B2607030/260219153005_poster_generico_WINPLAY.png" + } + ], + "cid": "B2607030", + "programId": "B2607030", + "programName": "Previo", + "externalId": "B2607030", + "title": "Previo", + "description": "previo", + "contentType": "EPISODE", + "duration": 3000, + "tags": [], + "startTime": "2026-02-18T23:30:00.000Z", + "endTime": "2026-02-19T00:20:00.000Z", + "broadcastDate": { + "start": "2026-02-18T23:30:00.000Z", + "end": "2026-02-19T00:20:00.000Z" + }, + "countries": [ + "all" + ], + "updated": "2026-02-19T15:30:05.405Z" + }, + { + "episode": null, + "season": null, + "genres": [], + "lang": "es", + "participants": { + "directors": [], + "cast": [] + }, + "ratings": [], + "images": [ + { + "url": "https://unity-img.tbxapis.com/v0/epg/6a561d048728db7c786b53b0941d0dd9/WINSPORTS_PLUS/B2607031/B2607031/260219153005_1920x1080__L-JUNIOR__R-AMERICA.png", + "type": "THUMB", + "image": "https://unity-img.tbxapis.com/v0/epg/6a561d048728db7c786b53b0941d0dd9/WINSPORTS_PLUS/B2607031/B2607031/260219153005_1920x1080__L-JUNIOR__R-AMERICA.png" + }, + { + "url": "https://unity-img.tbxapis.com/v0/epg/6a561d048728db7c786b53b0941d0dd9/WINSPORTS_PLUS/B2607031/B2607031/260219153005_1000x1500__L-JUNIOR__R-AMERICA.png", + "type": "POSTER", + "image": "https://unity-img.tbxapis.com/v0/epg/6a561d048728db7c786b53b0941d0dd9/WINSPORTS_PLUS/B2607031/B2607031/260219153005_1000x1500__L-JUNIOR__R-AMERICA.png" + } + ], + "cid": "B2607031", + "programId": "B2607031", + "programName": "Liga BetPlay Dimayor 2026 - I: Junior vs. América (Fecha 7)", + "externalId": "B2607031", + "title": "Liga BetPlay Dimayor 2026 - I: Junior vs. América (Fecha 7)", + "description": "Fecha 7", + "contentType": "EPISODE", + "duration": 8700, + "tags": [ + "EVENTO FUTURO", + "PPV" + ], + "startTime": "2026-02-19T00:20:00.000Z", + "endTime": "2026-02-19T02:45:00.000Z", + "broadcastDate": { + "start": "2026-02-19T00:20:00.000Z", + "end": "2026-02-19T02:45:00.000Z" + }, + "countries": [ + "all" + ], + "price": { + "USD": 24.99, + "COP": 39999 + }, + "inheritedRules": [ + "EPG", + "PPV" + ], + "urn": "urn:ppv:3d009cac7b6d", + "updated": "2026-02-19T15:30:05.405Z" + }, + { + "episode": null, + "season": null, + "genres": [], + "lang": "es", + "participants": { + "directors": [], + "cast": [] + }, + "ratings": [], + "images": [ + { + "url": "https://unity-img.tbxapis.com/v0/epg/6a561d048728db7c786b53b0941d0dd9/WINSPORTS_PLUS/B2607032/B2607032/260219153005_Thumb_generico_WINPLAY.png", + "type": "THUMB", + "image": "https://unity-img.tbxapis.com/v0/epg/6a561d048728db7c786b53b0941d0dd9/WINSPORTS_PLUS/B2607032/B2607032/260219153005_Thumb_generico_WINPLAY.png" + }, + { + "url": "https://unity-img.tbxapis.com/v0/epg/6a561d048728db7c786b53b0941d0dd9/WINSPORTS_PLUS/B2607032/B2607032/260219153005_poster_generico_WINPLAY.png", + "type": "POSTER", + "image": "https://unity-img.tbxapis.com/v0/epg/6a561d048728db7c786b53b0941d0dd9/WINSPORTS_PLUS/B2607032/B2607032/260219153005_poster_generico_WINPLAY.png" + } + ], + "cid": "B2607032", + "programId": "B2607032", + "programName": "Win Noticias", + "externalId": "B2607032", + "title": "Win Noticias", + "description": "Noticiero", + "contentType": "EPISODE", + "duration": 2700, + "tags": [], + "startTime": "2026-02-19T02:45:00.000Z", + "endTime": "2026-02-19T03:30:00.000Z", + "broadcastDate": { + "start": "2026-02-19T02:45:00.000Z", + "end": "2026-02-19T03:30:00.000Z" + }, + "countries": [ + "all" + ], + "updated": "2026-02-19T15:30:05.405Z" + }, + { + "episode": null, + "season": null, + "genres": [], + "lang": "es", + "participants": { + "directors": [], + "cast": [] + }, + "ratings": [], + "images": [ + { + "url": "https://unity-img.tbxapis.com/v0/epg/6a561d048728db7c786b53b0941d0dd9/WINSPORTS_PLUS/B2607033/B2607033/260219153005_Thumb_generico_WINPLAY.png", + "type": "THUMB", + "image": "https://unity-img.tbxapis.com/v0/epg/6a561d048728db7c786b53b0941d0dd9/WINSPORTS_PLUS/B2607033/B2607033/260219153005_Thumb_generico_WINPLAY.png" + }, + { + "url": "https://unity-img.tbxapis.com/v0/epg/6a561d048728db7c786b53b0941d0dd9/WINSPORTS_PLUS/B2607033/B2607033/260219153005_poster_generico_WINPLAY.png", + "type": "POSTER", + "image": "https://unity-img.tbxapis.com/v0/epg/6a561d048728db7c786b53b0941d0dd9/WINSPORTS_PLUS/B2607033/B2607033/260219153005_poster_generico_WINPLAY.png" + } + ], + "cid": "B2607033", + "programId": "B2607033", + "programName": "Repetición Programación Win", + "externalId": "B2607033", + "title": "Repetición Programación Win", + "description": "Repetición", + "contentType": "EPISODE", + "duration": 30600, + "tags": [], + "startTime": "2026-02-19T03:30:00.000Z", + "endTime": "2026-02-19T12:00:00.000Z", + "broadcastDate": { + "start": "2026-02-19T03:30:00.000Z", + "end": "2026-02-19T12:00:00.000Z" + }, + "countries": [ + "all" + ], + "updated": "2026-02-19T15:30:05.405Z" + }, + { + "episode": null, + "season": null, + "genres": [], + "lang": "es", + "participants": { + "directors": [], + "cast": [] + }, + "ratings": [], + "images": [ + { + "url": "https://unity-img.tbxapis.com/v0/epg/6a561d048728db7c786b53b0941d0dd9/WINSPORTS_PLUS/B2607034/B2607034/260219153005_Thumb_generico_WINPLAY.png", + "type": "THUMB", + "image": "https://unity-img.tbxapis.com/v0/epg/6a561d048728db7c786b53b0941d0dd9/WINSPORTS_PLUS/B2607034/B2607034/260219153005_Thumb_generico_WINPLAY.png" + }, + { + "url": "https://unity-img.tbxapis.com/v0/epg/6a561d048728db7c786b53b0941d0dd9/WINSPORTS_PLUS/B2607034/B2607034/260219153005_poster_generico_WINPLAY.png", + "type": "POSTER", + "image": "https://unity-img.tbxapis.com/v0/epg/6a561d048728db7c786b53b0941d0dd9/WINSPORTS_PLUS/B2607034/B2607034/260219153005_poster_generico_WINPLAY.png" + } + ], + "cid": "B2607034", + "programId": "B2607034", + "programName": "Chiringuito de Jugones", + "externalId": "B2607034", + "title": "Chiringuito de Jugones", + "description": "Repetición", + "contentType": "EPISODE", + "duration": 7200, + "tags": [], + "startTime": "2026-02-19T12:00:00.000Z", + "endTime": "2026-02-19T14:00:00.000Z", + "broadcastDate": { + "start": "2026-02-19T12:00:00.000Z", + "end": "2026-02-19T14:00:00.000Z" + }, + "countries": [ + "all" + ], + "updated": "2026-02-19T15:30:05.405Z" + }, + { + "episode": null, + "season": null, + "genres": [], + "lang": "es", + "participants": { + "directors": [], + "cast": [] + }, + "ratings": [], + "images": [ + { + "url": "https://unity-img.tbxapis.com/v0/epg/6a561d048728db7c786b53b0941d0dd9/WINSPORTS_PLUS/B2607035/B2607035/260219153005_Thumb_generico_WINPLAY.png", + "type": "THUMB", + "image": "https://unity-img.tbxapis.com/v0/epg/6a561d048728db7c786b53b0941d0dd9/WINSPORTS_PLUS/B2607035/B2607035/260219153005_Thumb_generico_WINPLAY.png" + }, + { + "url": "https://unity-img.tbxapis.com/v0/epg/6a561d048728db7c786b53b0941d0dd9/WINSPORTS_PLUS/B2607035/B2607035/260219153005_poster_generico_WINPLAY.png", + "type": "POSTER", + "image": "https://unity-img.tbxapis.com/v0/epg/6a561d048728db7c786b53b0941d0dd9/WINSPORTS_PLUS/B2607035/B2607035/260219153005_poster_generico_WINPLAY.png" + } + ], + "cid": "B2607035", + "programId": "B2607035", + "programName": "Win Noticias", + "externalId": "B2607035", + "title": "Win Noticias", + "description": "Repetición", + "contentType": "EPISODE", + "duration": 3600, + "tags": [], + "startTime": "2026-02-19T14:00:00.000Z", + "endTime": "2026-02-19T15:00:00.000Z", + "broadcastDate": { + "start": "2026-02-19T14:00:00.000Z", + "end": "2026-02-19T15:00:00.000Z" + }, + "countries": [ + "all" + ], + "updated": "2026-02-19T15:30:05.405Z" + }, + { + "episode": null, + "season": null, + "genres": [], + "lang": "es", + "participants": { + "directors": [], + "cast": [] + }, + "ratings": [], + "images": [ + { + "url": "https://unity-img.tbxapis.com/v0/epg/6a561d048728db7c786b53b0941d0dd9/WINSPORTS_PLUS/B2607036/B2607036/260219153005_Thumb_generico_WINPLAY.png", + "type": "THUMB", + "image": "https://unity-img.tbxapis.com/v0/epg/6a561d048728db7c786b53b0941d0dd9/WINSPORTS_PLUS/B2607036/B2607036/260219153005_Thumb_generico_WINPLAY.png" + }, + { + "url": "https://unity-img.tbxapis.com/v0/epg/6a561d048728db7c786b53b0941d0dd9/WINSPORTS_PLUS/B2607036/B2607036/260219153005_poster_generico_WINPLAY.png", + "type": "POSTER", + "image": "https://unity-img.tbxapis.com/v0/epg/6a561d048728db7c786b53b0941d0dd9/WINSPORTS_PLUS/B2607036/B2607036/260219153005_poster_generico_WINPLAY.png" + } + ], + "cid": "B2607036", + "programId": "B2607036", + "programName": "Repetición Repetición Liga BetPlay Dimayor 2026 - I: Cali vs. Nacional (Fecha 7)", + "externalId": "B2607036", + "title": "Repetición Repetición Liga BetPlay Dimayor 2026 - I: Cali vs. Nacional (Fecha 7)", + "description": "Repetición", + "contentType": "EPISODE", + "duration": 7200, + "tags": [], + "startTime": "2026-02-19T15:00:00.000Z", + "endTime": "2026-02-19T17:00:00.000Z", + "broadcastDate": { + "start": "2026-02-19T15:00:00.000Z", + "end": "2026-02-19T17:00:00.000Z" + }, + "countries": [ + "all" + ], + "updated": "2026-02-19T15:30:05.405Z" + }, + { + "episode": null, + "season": null, + "genres": [], + "lang": "es", + "participants": { + "directors": [], + "cast": [] + }, + "ratings": [], + "images": [ + { + "url": "https://unity-img.tbxapis.com/v0/epg/6a561d048728db7c786b53b0941d0dd9/WINSPORTS_PLUS/B2607037/B2607037/260219153005_Thumb_generico_WINPLAY.png", + "type": "THUMB", + "image": "https://unity-img.tbxapis.com/v0/epg/6a561d048728db7c786b53b0941d0dd9/WINSPORTS_PLUS/B2607037/B2607037/260219153005_Thumb_generico_WINPLAY.png" + }, + { + "url": "https://unity-img.tbxapis.com/v0/epg/6a561d048728db7c786b53b0941d0dd9/WINSPORTS_PLUS/B2607037/B2607037/260219153005_poster_generico_WINPLAY.png", + "type": "POSTER", + "image": "https://unity-img.tbxapis.com/v0/epg/6a561d048728db7c786b53b0941d0dd9/WINSPORTS_PLUS/B2607037/B2607037/260219153005_poster_generico_WINPLAY.png" + } + ], + "cid": "B2607037", + "programId": "B2607037", + "programName": "Repetición Liga BetPlay Dimayor 2026 - I: Junior vs. América (Fecha 7)", + "externalId": "B2607037", + "title": "Repetición Liga BetPlay Dimayor 2026 - I: Junior vs. América (Fecha 7)", + "description": "Repetición", + "contentType": "EPISODE", + "duration": 7200, + "tags": [], + "startTime": "2026-02-19T17:00:00.000Z", + "endTime": "2026-02-19T19:00:00.000Z", + "broadcastDate": { + "start": "2026-02-19T17:00:00.000Z", + "end": "2026-02-19T19:00:00.000Z" + }, + "countries": [ + "all" + ], + "updated": "2026-02-19T15:30:05.405Z" + }, + { + "episode": null, + "season": null, + "genres": [], + "lang": "es", + "participants": { + "directors": [], + "cast": [] + }, + "ratings": [], + "images": [ + { + "url": "https://unity-img.tbxapis.com/v0/epg/6a561d048728db7c786b53b0941d0dd9/WINSPORTS_PLUS/B2607038/B2607038/260219153005_Thumb_generico_WINPLAY.png", + "type": "THUMB", + "image": "https://unity-img.tbxapis.com/v0/epg/6a561d048728db7c786b53b0941d0dd9/WINSPORTS_PLUS/B2607038/B2607038/260219153005_Thumb_generico_WINPLAY.png" + }, + { + "url": "https://unity-img.tbxapis.com/v0/epg/6a561d048728db7c786b53b0941d0dd9/WINSPORTS_PLUS/B2607038/B2607038/260219153005_poster_generico_WINPLAY.png", + "type": "POSTER", + "image": "https://unity-img.tbxapis.com/v0/epg/6a561d048728db7c786b53b0941d0dd9/WINSPORTS_PLUS/B2607038/B2607038/260219153005_poster_generico_WINPLAY.png" + } + ], + "cid": "B2607038", + "programId": "B2607038", + "programName": "Repetición Liga BetPlay Dimayor 2026 - I: Tolima vs. Once Caldas (Fecha 7)", + "externalId": "B2607038", + "title": "Repetición Liga BetPlay Dimayor 2026 - I: Tolima vs. Once Caldas (Fecha 7)", + "description": "Repetición", + "contentType": "EPISODE", + "duration": 7200, + "tags": [], + "startTime": "2026-02-19T19:00:00.000Z", + "endTime": "2026-02-19T21:00:00.000Z", + "broadcastDate": { + "start": "2026-02-19T19:00:00.000Z", + "end": "2026-02-19T21:00:00.000Z" + }, + "countries": [ + "all" + ], + "updated": "2026-02-19T15:30:05.405Z" + }, + { + "episode": null, + "season": null, + "genres": [], + "lang": "es", + "participants": { + "directors": [], + "cast": [] + }, + "ratings": [], + "images": [ + { + "url": "https://unity-img.tbxapis.com/v0/epg/6a561d048728db7c786b53b0941d0dd9/WINSPORTS_PLUS/B2607039/B2607039/260219153005_Thumb_generico_WINPLAY.png", + "type": "THUMB", + "image": "https://unity-img.tbxapis.com/v0/epg/6a561d048728db7c786b53b0941d0dd9/WINSPORTS_PLUS/B2607039/B2607039/260219153005_Thumb_generico_WINPLAY.png" + }, + { + "url": "https://unity-img.tbxapis.com/v0/epg/6a561d048728db7c786b53b0941d0dd9/WINSPORTS_PLUS/B2607039/B2607039/260219153005_poster_generico_WINPLAY.png", + "type": "POSTER", + "image": "https://unity-img.tbxapis.com/v0/epg/6a561d048728db7c786b53b0941d0dd9/WINSPORTS_PLUS/B2607039/B2607039/260219153005_poster_generico_WINPLAY.png" + } + ], + "cid": "B2607039", + "programId": "B2607039", + "programName": "Repetición Medio Tiempo", + "externalId": "B2607039", + "title": "Repetición Medio Tiempo", + "description": "Repetición", + "contentType": "EPISODE", + "duration": 7200, + "tags": [], + "startTime": "2026-02-19T21:00:00.000Z", + "endTime": "2026-02-19T23:00:00.000Z", + "broadcastDate": { + "start": "2026-02-19T21:00:00.000Z", + "end": "2026-02-19T23:00:00.000Z" + }, + "countries": [ + "all" + ], + "updated": "2026-02-19T15:30:05.405Z" + }, + { + "episode": null, + "season": null, + "genres": [], + "lang": "es", + "participants": { + "directors": [], + "cast": [] + }, + "ratings": [], + "images": [ + { + "url": "https://unity-img.tbxapis.com/v0/epg/6a561d048728db7c786b53b0941d0dd9/WINSPORTS_PLUS/B2607040/B2607040/260219153005_Thumb_generico_WINPLAY.png", + "type": "THUMB", + "image": "https://unity-img.tbxapis.com/v0/epg/6a561d048728db7c786b53b0941d0dd9/WINSPORTS_PLUS/B2607040/B2607040/260219153005_Thumb_generico_WINPLAY.png" + }, + { + "url": "https://unity-img.tbxapis.com/v0/epg/6a561d048728db7c786b53b0941d0dd9/WINSPORTS_PLUS/B2607040/B2607040/260219153005_poster_generico_WINPLAY.png", + "type": "POSTER", + "image": "https://unity-img.tbxapis.com/v0/epg/6a561d048728db7c786b53b0941d0dd9/WINSPORTS_PLUS/B2607040/B2607040/260219153005_poster_generico_WINPLAY.png" + } + ], + "cid": "B2607040", + "programId": "B2607040", + "programName": "Win Noticias", + "externalId": "B2607040", + "title": "Win Noticias", + "description": "Noticiero", + "contentType": "EPISODE", + "duration": 5400, + "tags": [], + "startTime": "2026-02-19T23:00:00.000Z", + "endTime": "2026-02-20T00:30:00.000Z", + "broadcastDate": { + "start": "2026-02-19T23:00:00.000Z", + "end": "2026-02-20T00:30:00.000Z" + }, + "countries": [ + "all" + ], + "updated": "2026-02-19T15:30:05.405Z" + }, + { + "episode": null, + "season": null, + "genres": [], + "lang": "es", + "participants": { + "directors": [], + "cast": [] + }, + "ratings": [], + "images": [ + { + "url": "https://unity-img.tbxapis.com/v0/epg/6a561d048728db7c786b53b0941d0dd9/WINSPORTS_PLUS/B2607041/B2607041/260219153005_Thumb_generico_WINPLAY.png", + "type": "THUMB", + "image": "https://unity-img.tbxapis.com/v0/epg/6a561d048728db7c786b53b0941d0dd9/WINSPORTS_PLUS/B2607041/B2607041/260219153005_Thumb_generico_WINPLAY.png" + }, + { + "url": "https://unity-img.tbxapis.com/v0/epg/6a561d048728db7c786b53b0941d0dd9/WINSPORTS_PLUS/B2607041/B2607041/260219153005_poster_generico_WINPLAY.png", + "type": "POSTER", + "image": "https://unity-img.tbxapis.com/v0/epg/6a561d048728db7c786b53b0941d0dd9/WINSPORTS_PLUS/B2607041/B2607041/260219153005_poster_generico_WINPLAY.png" + } + ], + "cid": "B2607041", + "programId": "B2607041", + "programName": "Repetición Repetición Repetición Liga BetPlay Dimayor 2026 - I: Cali vs. Nacional (Fecha 7)", + "externalId": "B2607041", + "title": "Repetición Repetición Repetición Liga BetPlay Dimayor 2026 - I: Cali vs. Nacional (Fecha 7)", + "description": "Repetición", + "contentType": "EPISODE", + "duration": 7200, + "tags": [], + "startTime": "2026-02-20T00:30:00.000Z", + "endTime": "2026-02-20T02:30:00.000Z", + "broadcastDate": { + "start": "2026-02-20T00:30:00.000Z", + "end": "2026-02-20T02:30:00.000Z" + }, + "countries": [ + "all" + ], + "updated": "2026-02-19T15:30:05.405Z" + }, + { + "episode": null, + "season": null, + "genres": [], + "lang": "es", + "participants": { + "directors": [], + "cast": [] + }, + "ratings": [], + "images": [ + { + "url": "https://unity-img.tbxapis.com/v0/epg/6a561d048728db7c786b53b0941d0dd9/WINSPORTS_PLUS/B2607042/B2607042/260219153005_Thumb_generico_WINPLAY.png", + "type": "THUMB", + "image": "https://unity-img.tbxapis.com/v0/epg/6a561d048728db7c786b53b0941d0dd9/WINSPORTS_PLUS/B2607042/B2607042/260219153005_Thumb_generico_WINPLAY.png" + }, + { + "url": "https://unity-img.tbxapis.com/v0/epg/6a561d048728db7c786b53b0941d0dd9/WINSPORTS_PLUS/B2607042/B2607042/260219153005_poster_generico_WINPLAY.png", + "type": "POSTER", + "image": "https://unity-img.tbxapis.com/v0/epg/6a561d048728db7c786b53b0941d0dd9/WINSPORTS_PLUS/B2607042/B2607042/260219153005_poster_generico_WINPLAY.png" + } + ], + "cid": "B2607042", + "programId": "B2607042", + "programName": "Win Noticias", + "externalId": "B2607042", + "title": "Win Noticias", + "description": "Noticiero", + "contentType": "EPISODE", + "duration": 3600, + "tags": [], + "startTime": "2026-02-20T02:30:00.000Z", + "endTime": "2026-02-20T03:30:00.000Z", + "broadcastDate": { + "start": "2026-02-20T02:30:00.000Z", + "end": "2026-02-20T03:30:00.000Z" + }, + "countries": [ + "all" + ], + "updated": "2026-02-19T15:30:05.405Z" + }, + { + "episode": null, + "season": null, + "genres": [], + "lang": "es", + "participants": { + "directors": [], + "cast": [] + }, + "ratings": [], + "images": [ + { + "url": "https://unity-img.tbxapis.com/v0/epg/6a561d048728db7c786b53b0941d0dd9/WINSPORTS_PLUS/B2607043/B2607043/260219153005_Thumb_generico_WINPLAY.png", + "type": "THUMB", + "image": "https://unity-img.tbxapis.com/v0/epg/6a561d048728db7c786b53b0941d0dd9/WINSPORTS_PLUS/B2607043/B2607043/260219153005_Thumb_generico_WINPLAY.png" + }, + { + "url": "https://unity-img.tbxapis.com/v0/epg/6a561d048728db7c786b53b0941d0dd9/WINSPORTS_PLUS/B2607043/B2607043/260219153005_poster_generico_WINPLAY.png", + "type": "POSTER", + "image": "https://unity-img.tbxapis.com/v0/epg/6a561d048728db7c786b53b0941d0dd9/WINSPORTS_PLUS/B2607043/B2607043/260219153005_poster_generico_WINPLAY.png" + } + ], + "cid": "B2607043", + "programId": "B2607043", + "programName": "Repetición Programación Win", + "externalId": "B2607043", + "title": "Repetición Programación Win", + "description": "Repetición", + "contentType": "EPISODE", + "duration": 30600, + "tags": [], + "startTime": "2026-02-20T03:30:00.000Z", + "endTime": "2026-02-20T12:00:00.000Z", + "broadcastDate": { + "start": "2026-02-20T03:30:00.000Z", + "end": "2026-02-20T12:00:00.000Z" + }, + "countries": [ + "all" + ], + "updated": "2026-02-19T15:30:05.405Z" + } + ] + }, + "schedule": {}, + "images": [] + }, + { + "id": "692dc3d7ddd30f329e90a4cc", + "content": { + "audioOnly": false, + "catchUpHours": 48, + "contentLists": [], + "clip": false, + "contentType": "BROADCAST", + "downloadable": { + "isDownloadable": false + }, + "entitlementTypes": [ + "media" + ], + "epgId": "WINSPORTS_WINSPORTS", + "externalId": "e51e4b3d-5192-4013-81c7-4ea1064d2712", + "flights": [ + { + "flights": [ + { + "start": "2025-11-04T12:00:00.000Z", + "end": null + } + ], + "network": "winsportsaudio" + } + ], + "hasCatchUp": true, + "hd": false, + "id": "692dc3d7ddd30f329e90a4cc", + "images": [ + { + "url": "https://unity-img.tbxapis.com/v0/images/6a561d048728db7c786b53b0941d0dd9/content/692dc3d7ddd30f329e90a4cc/f5bace0fa71b5102b1f3dcfd4a6afb84/img.png", + "contentType": "image/png", + "type": "THUMB", + "size": { + "height": 1080, + "ratio": 1.7777777777777777, + "width": 1920 + }, + "created": "2025-12-01T17:48:39.891Z", + "updated": "2025-12-01T17:48:39.891Z" + }, + { + "url": "https://unity-img.tbxapis.com/v0/images/6a561d048728db7c786b53b0941d0dd9/content/692dc3d7ddd30f329e90a4cc/c5d692f847bbfef978dcf77583a9ac5b/img.png", + "contentType": "image/png", + "type": "POSTER", + "size": { + "height": 1500, + "ratio": 0.6666666666666666, + "width": 1000 + }, + "created": "2025-12-01T17:48:39.877Z", + "updated": "2025-12-01T17:48:39.877Z" + } + ], + "isNew": false, + "live": true, + "networks": [ + { + "name": "Win Sports Live Audio", + "network": "winsportsaudio", + "embed": true + } + ], + "participants": { + "authors": [], + "cast": [], + "director": [], + "writer": [] + }, + "playbackType": [], + "provider": "winsportslivecpix", + "ratingLevel": 2, + "ratings": [ + "NR" + ], + "replay": false, + "shortId": "zma226", + "tags": [], + "title": "Win Sports", + "tracking": { + "bookmarks": true, + "events": true + }, + "trailerConfig": { + "isTrailer": false + }, + "urn": "urn:tve:winsportsaudio", + "viewCondition": "standard", + "subtitleTracks": [], + "encodings": [ + "application/dash+xml", + "application/x-mpegURL" + ], + "isCoppa": false, + "alternativeDescriptions": [], + "signalId": "winsports", + "category": null, + "epg": [ + { + "episode": null, + "season": null, + "genres": [], + "lang": "es", + "participants": [], + "ratings": [], + "images": [], + "title": "Win Noticias", + "description": "Informe con las noticias deportivas más recientes del día.", + "startTime": "2026-02-18T19:30:00.062Z", + "endTime": "2026-02-18T21:00:00.062Z", + "duration": 5400, + "broadcastDate": { + "start": "2026-02-18T19:30:00.062Z", + "end": "2026-02-18T21:00:00.062Z" + }, + "cid": "_76d0d4988742c0aa4caf79ecf6646d25e86c999f", + "updated": "2026-02-19T15:31:05.476Z", + "contentType": "" + }, + { + "episode": null, + "season": null, + "genres": [], + "lang": "es", + "participants": [], + "ratings": [], + "images": [], + "title": "Saque Largo", + "description": "Debate, análisis y comentarios sobre el fútbol colombiano", + "startTime": "2026-02-18T21:00:00.701Z", + "endTime": "2026-02-19T00:00:00.701Z", + "duration": 10800, + "broadcastDate": { + "start": "2026-02-18T21:00:00.701Z", + "end": "2026-02-19T00:00:00.701Z" + }, + "cid": "_56e5cb0b3edcd58906cacfa350b86eb96fdd6d01", + "updated": "2026-02-19T15:31:05.476Z", + "contentType": "" + }, + { + "episode": null, + "season": null, + "genres": [], + "lang": "es", + "participants": [], + "ratings": [], + "images": [], + "title": "Previo", + "description": "Antesala con datos, análisis y formaciones del partido próximo a iniciar.", + "startTime": "2026-02-19T00:00:00.256Z", + "endTime": "2026-02-19T00:30:00.256Z", + "duration": 1800, + "broadcastDate": { + "start": "2026-02-19T00:00:00.256Z", + "end": "2026-02-19T00:30:00.256Z" + }, + "cid": "_a246750b0c48d33ab1ff17b45be236d9822a4efb", + "updated": "2026-02-19T15:31:05.476Z", + "contentType": "" + }, + { + "episode": null, + "season": null, + "genres": [], + "lang": "es", + "participants": [], + "ratings": [], + "images": [], + "title": "Liga Betplay Dimayor 2026-I: Junior vs América de Cali", + "description": "Transmisión oficial del partido entre Junior y América por la Liga BetPlay.", + "startTime": "2026-02-19T00:30:00.514Z", + "endTime": "2026-02-19T02:30:00.514Z", + "duration": 7200, + "broadcastDate": { + "start": "2026-02-19T00:30:00.514Z", + "end": "2026-02-19T02:30:00.514Z" + }, + "cid": "_4796841ef7488d2b279628cfaf89aa996d88f3d0", + "updated": "2026-02-19T15:31:05.476Z", + "contentType": "" + }, + { + "episode": null, + "season": null, + "genres": [], + "lang": "es", + "participants": [], + "ratings": [], + "images": [], + "title": "Win Noticias", + "description": "Informe con las noticias deportivas más recientes del día.", + "startTime": "2026-02-19T02:30:00.900Z", + "endTime": "2026-02-19T03:30:00.900Z", + "duration": 3600, + "broadcastDate": { + "start": "2026-02-19T02:30:00.900Z", + "end": "2026-02-19T03:30:00.900Z" + }, + "cid": "_89f58f1bddd8cfbf969482d8c66ae976771e4cb8", + "updated": "2026-02-19T15:31:05.476Z", + "contentType": "" + }, + { + "episode": null, + "season": null, + "genres": [], + "lang": "es", + "participants": [], + "ratings": [], + "images": [], + "title": "Repeticion Programación Win", + "description": "Emisión repetida de contenidos y programas del canal.", + "startTime": "2026-02-19T03:30:00.254Z", + "endTime": "2026-02-19T11:00:00.000Z", + "duration": 27000, + "broadcastDate": { + "start": "2026-02-19T03:30:00.254Z", + "end": "2026-02-19T11:00:00.000Z" + }, + "cid": "_0f43ace98c73f6a8d8e085ee576a758ea809b981", + "updated": "2026-02-19T15:31:05.476Z", + "contentType": "" + }, + { + "episode": null, + "season": null, + "genres": [], + "lang": "es", + "participants": { + "directors": [], + "cast": [] + }, + "ratings": [], + "images": [ + { + "url": "https://unity-img.tbxapis.com/v0/epg/6a561d048728db7c786b53b0941d0dd9/WINSPORTS_WINSPORTS/A2608001/A2608001/260219153105_Thumb_generico_WINPLAY.png", + "type": "THUMB", + "image": "https://unity-img.tbxapis.com/v0/epg/6a561d048728db7c786b53b0941d0dd9/WINSPORTS_WINSPORTS/A2608001/A2608001/260219153105_Thumb_generico_WINPLAY.png" + }, + { + "url": "https://unity-img.tbxapis.com/v0/epg/6a561d048728db7c786b53b0941d0dd9/WINSPORTS_WINSPORTS/A2608001/A2608001/260219153105_poster_generico_WINPLAY.png", + "type": "POSTER", + "image": "https://unity-img.tbxapis.com/v0/epg/6a561d048728db7c786b53b0941d0dd9/WINSPORTS_WINSPORTS/A2608001/A2608001/260219153105_poster_generico_WINPLAY.png" + } + ], + "cid": "A2608001", + "programId": "A2608001", + "programName": "Planeta fútbol", + "externalId": "A2608001", + "title": "Planeta fútbol", + "description": "Resumen con análisis y actualidad del fútbol nacional e internacional.", + "contentType": "EPISODE", + "duration": 7200, + "tags": [], + "startTime": "2026-02-19T11:00:00.000Z", + "endTime": "2026-02-19T13:00:00.000Z", + "broadcastDate": { + "start": "2026-02-19T11:00:00.000Z", + "end": "2026-02-19T13:00:00.000Z" + }, + "countries": [ + "all" + ], + "updated": "2026-02-19T15:31:05.476Z" + }, + { + "episode": null, + "season": null, + "genres": [], + "lang": "es", + "participants": { + "directors": [], + "cast": [] + }, + "ratings": [], + "images": [ + { + "url": "https://unity-img.tbxapis.com/v0/epg/6a561d048728db7c786b53b0941d0dd9/WINSPORTS_WINSPORTS/A2608002/A2608002/260219153105_Thumb_generico_WINPLAY.png", + "type": "THUMB", + "image": "https://unity-img.tbxapis.com/v0/epg/6a561d048728db7c786b53b0941d0dd9/WINSPORTS_WINSPORTS/A2608002/A2608002/260219153105_Thumb_generico_WINPLAY.png" + }, + { + "url": "https://unity-img.tbxapis.com/v0/epg/6a561d048728db7c786b53b0941d0dd9/WINSPORTS_WINSPORTS/A2608002/A2608002/260219153105_poster_generico_WINPLAY.png", + "type": "POSTER", + "image": "https://unity-img.tbxapis.com/v0/epg/6a561d048728db7c786b53b0941d0dd9/WINSPORTS_WINSPORTS/A2608002/A2608002/260219153105_poster_generico_WINPLAY.png" + } + ], + "cid": "A2608002", + "programId": "A2608002", + "programName": "Despierta win", + "externalId": "A2608002", + "title": "Despierta win", + "description": "Magazine matutino con noticias deportivas, entrevistas y actualidad.", + "contentType": "EPISODE", + "duration": 16200, + "tags": [], + "startTime": "2026-02-19T13:00:00.000Z", + "endTime": "2026-02-19T17:30:00.000Z", + "broadcastDate": { + "start": "2026-02-19T13:00:00.000Z", + "end": "2026-02-19T17:30:00.000Z" + }, + "countries": [ + "all" + ], + "updated": "2026-02-19T15:31:05.476Z" + }, + { + "episode": null, + "season": null, + "genres": [], + "lang": "es", + "participants": { + "directors": [], + "cast": [] + }, + "ratings": [], + "images": [ + { + "url": "https://unity-img.tbxapis.com/v0/epg/6a561d048728db7c786b53b0941d0dd9/WINSPORTS_WINSPORTS/A2608003/A2608003/260219153105_Thumb_generico_WINPLAY.png", + "type": "THUMB", + "image": "https://unity-img.tbxapis.com/v0/epg/6a561d048728db7c786b53b0941d0dd9/WINSPORTS_WINSPORTS/A2608003/A2608003/260219153105_Thumb_generico_WINPLAY.png" + }, + { + "url": "https://unity-img.tbxapis.com/v0/epg/6a561d048728db7c786b53b0941d0dd9/WINSPORTS_WINSPORTS/A2608003/A2608003/260219153105_poster_generico_WINPLAY.png", + "type": "POSTER", + "image": "https://unity-img.tbxapis.com/v0/epg/6a561d048728db7c786b53b0941d0dd9/WINSPORTS_WINSPORTS/A2608003/A2608003/260219153105_poster_generico_WINPLAY.png" + } + ], + "cid": "A2608003", + "programId": "A2608003", + "programName": "Medio tiempo", + "externalId": "A2608003", + "title": "Medio tiempo", + "description": "Balance breve con resultados, goles y momentos destacados de la jornada.", + "contentType": "EPISODE", + "duration": 7200, + "tags": [], + "startTime": "2026-02-19T17:30:00.000Z", + "endTime": "2026-02-19T19:30:00.000Z", + "broadcastDate": { + "start": "2026-02-19T17:30:00.000Z", + "end": "2026-02-19T19:30:00.000Z" + }, + "countries": [ + "all" + ], + "updated": "2026-02-19T15:31:05.476Z" + }, + { + "episode": null, + "season": null, + "genres": [], + "lang": "es", + "participants": { + "directors": [], + "cast": [] + }, + "ratings": [], + "images": [ + { + "url": "https://unity-img.tbxapis.com/v0/epg/6a561d048728db7c786b53b0941d0dd9/WINSPORTS_WINSPORTS/A2608004/A2608004/260219153105_Thumb_generico_WINPLAY.png", + "type": "THUMB", + "image": "https://unity-img.tbxapis.com/v0/epg/6a561d048728db7c786b53b0941d0dd9/WINSPORTS_WINSPORTS/A2608004/A2608004/260219153105_Thumb_generico_WINPLAY.png" + }, + { + "url": "https://unity-img.tbxapis.com/v0/epg/6a561d048728db7c786b53b0941d0dd9/WINSPORTS_WINSPORTS/A2608004/A2608004/260219153105_poster_generico_WINPLAY.png", + "type": "POSTER", + "image": "https://unity-img.tbxapis.com/v0/epg/6a561d048728db7c786b53b0941d0dd9/WINSPORTS_WINSPORTS/A2608004/A2608004/260219153105_poster_generico_WINPLAY.png" + } + ], + "cid": "A2608004", + "programId": "A2608004", + "programName": "Win noticias", + "externalId": "A2608004", + "title": "Win noticias", + "description": "Informe con las noticias deportivas más recientes del día.", + "contentType": "EPISODE", + "duration": 5400, + "tags": [], + "startTime": "2026-02-19T19:30:00.000Z", + "endTime": "2026-02-19T21:00:00.000Z", + "broadcastDate": { + "start": "2026-02-19T19:30:00.000Z", + "end": "2026-02-19T21:00:00.000Z" + }, + "countries": [ + "all" + ], + "updated": "2026-02-19T15:31:05.476Z" + }, + { + "episode": null, + "season": null, + "genres": [], + "lang": "es", + "participants": { + "directors": [], + "cast": [] + }, + "ratings": [], + "images": [ + { + "url": "https://unity-img.tbxapis.com/v0/epg/6a561d048728db7c786b53b0941d0dd9/WINSPORTS_WINSPORTS/A2608005/A2608005/260219153105_Thumb_generico_WINPLAY.png", + "type": "THUMB", + "image": "https://unity-img.tbxapis.com/v0/epg/6a561d048728db7c786b53b0941d0dd9/WINSPORTS_WINSPORTS/A2608005/A2608005/260219153105_Thumb_generico_WINPLAY.png" + }, + { + "url": "https://unity-img.tbxapis.com/v0/epg/6a561d048728db7c786b53b0941d0dd9/WINSPORTS_WINSPORTS/A2608005/A2608005/260219153105_poster_generico_WINPLAY.png", + "type": "POSTER", + "image": "https://unity-img.tbxapis.com/v0/epg/6a561d048728db7c786b53b0941d0dd9/WINSPORTS_WINSPORTS/A2608005/A2608005/260219153105_poster_generico_WINPLAY.png" + } + ], + "cid": "A2608005", + "programId": "A2608005", + "programName": "Saque largo", + "externalId": "A2608005", + "title": "Saque largo", + "description": "Debate, análisis y comentarios sobre el fútbol colombiano.", + "contentType": "EPISODE", + "duration": 5400, + "tags": [], + "startTime": "2026-02-19T21:00:00.000Z", + "endTime": "2026-02-19T22:30:00.000Z", + "broadcastDate": { + "start": "2026-02-19T21:00:00.000Z", + "end": "2026-02-19T22:30:00.000Z" + }, + "countries": [ + "all" + ], + "updated": "2026-02-19T15:31:05.476Z" + }, + { + "episode": null, + "season": null, + "genres": [], + "lang": "es", + "participants": { + "directors": [], + "cast": [] + }, + "ratings": [], + "images": [ + { + "url": "https://unity-img.tbxapis.com/v0/epg/6a561d048728db7c786b53b0941d0dd9/WINSPORTS_WINSPORTS/A2608006/A2608006/260219153105_Thumb_generico_WINPLAY.png", + "type": "THUMB", + "image": "https://unity-img.tbxapis.com/v0/epg/6a561d048728db7c786b53b0941d0dd9/WINSPORTS_WINSPORTS/A2608006/A2608006/260219153105_Thumb_generico_WINPLAY.png" + }, + { + "url": "https://unity-img.tbxapis.com/v0/epg/6a561d048728db7c786b53b0941d0dd9/WINSPORTS_WINSPORTS/A2608006/A2608006/260219153105_poster_generico_WINPLAY.png", + "type": "POSTER", + "image": "https://unity-img.tbxapis.com/v0/epg/6a561d048728db7c786b53b0941d0dd9/WINSPORTS_WINSPORTS/A2608006/A2608006/260219153105_poster_generico_WINPLAY.png" + } + ], + "cid": "A2608006", + "programId": "A2608006", + "programName": "Brasileirao: Atl Paraense Vs Corinthians", + "externalId": "A2608006", + "title": "Brasileirao: Atl Paraense Vs Corinthians", + "description": "Partido del Brasileirao entre Atlético Paranaense y Corinthians.", + "contentType": "EPISODE", + "duration": 7200, + "tags": [], + "startTime": "2026-02-19T22:30:00.000Z", + "endTime": "2026-02-20T00:30:00.000Z", + "broadcastDate": { + "start": "2026-02-19T22:30:00.000Z", + "end": "2026-02-20T00:30:00.000Z" + }, + "countries": [ + "CO" + ], + "updated": "2026-02-19T15:31:05.476Z" + }, + { + "episode": null, + "season": null, + "genres": [], + "lang": "es", + "participants": { + "directors": [], + "cast": [] + }, + "ratings": [], + "images": [ + { + "url": "https://unity-img.tbxapis.com/v0/epg/6a561d048728db7c786b53b0941d0dd9/WINSPORTS_WINSPORTS/A2608007/A2608007/260219153105_1920x1080__L-JUNIOR__R-AMERICA.png", + "type": "THUMB", + "image": "https://unity-img.tbxapis.com/v0/epg/6a561d048728db7c786b53b0941d0dd9/WINSPORTS_WINSPORTS/A2608007/A2608007/260219153105_1920x1080__L-JUNIOR__R-AMERICA.png" + }, + { + "url": "https://unity-img.tbxapis.com/v0/epg/6a561d048728db7c786b53b0941d0dd9/WINSPORTS_WINSPORTS/A2608007/A2608007/260219153105_1000x1500__L-JUNIOR__R-AMERICA.png", + "type": "POSTER", + "image": "https://unity-img.tbxapis.com/v0/epg/6a561d048728db7c786b53b0941d0dd9/WINSPORTS_WINSPORTS/A2608007/A2608007/260219153105_1000x1500__L-JUNIOR__R-AMERICA.png" + } + ], + "cid": "A2608007", + "programId": "A2608007", + "programName": "Repeticion Liga Betplay Dimayor 2026-I: Junior vs América de Cali", + "externalId": "A2608007", + "title": "Repeticion Liga Betplay Dimayor 2026-I: Junior vs América de Cali", + "description": "Reedición del encuentro entre Junior y América.", + "contentType": "EPISODE", + "duration": 7200, + "tags": [], + "startTime": "2026-02-20T00:30:00.000Z", + "endTime": "2026-02-20T02:30:00.000Z", + "broadcastDate": { + "start": "2026-02-20T00:30:00.000Z", + "end": "2026-02-20T02:30:00.000Z" + }, + "countries": [ + "all" + ], + "updated": "2026-02-19T15:31:05.476Z" + }, + { + "episode": null, + "season": null, + "genres": [], + "lang": "es", + "participants": { + "directors": [], + "cast": [] + }, + "ratings": [], + "images": [ + { + "url": "https://unity-img.tbxapis.com/v0/epg/6a561d048728db7c786b53b0941d0dd9/WINSPORTS_WINSPORTS/A2608008/A2608008/260219153105_Thumb_generico_WINPLAY.png", + "type": "THUMB", + "image": "https://unity-img.tbxapis.com/v0/epg/6a561d048728db7c786b53b0941d0dd9/WINSPORTS_WINSPORTS/A2608008/A2608008/260219153105_Thumb_generico_WINPLAY.png" + }, + { + "url": "https://unity-img.tbxapis.com/v0/epg/6a561d048728db7c786b53b0941d0dd9/WINSPORTS_WINSPORTS/A2608008/A2608008/260219153105_poster_generico_WINPLAY.png", + "type": "POSTER", + "image": "https://unity-img.tbxapis.com/v0/epg/6a561d048728db7c786b53b0941d0dd9/WINSPORTS_WINSPORTS/A2608008/A2608008/260219153105_poster_generico_WINPLAY.png" + } + ], + "cid": "A2608008", + "programId": "A2608008", + "programName": "Win noticias", + "externalId": "A2608008", + "title": "Win noticias", + "description": "Informe con las noticias deportivas más recientes del día.", + "contentType": "EPISODE", + "duration": 3600, + "tags": [], + "startTime": "2026-02-20T02:30:00.000Z", + "endTime": "2026-02-20T03:30:00.000Z", + "broadcastDate": { + "start": "2026-02-20T02:30:00.000Z", + "end": "2026-02-20T03:30:00.000Z" + }, + "countries": [ + "all" + ], + "updated": "2026-02-19T15:31:05.476Z" + }, + { + "episode": null, + "season": null, + "genres": [], + "lang": "es", + "participants": [], + "ratings": [], + "images": [], + "title": "Repetición Programación Win", + "description": "Emisión repetida de contenidos y programas del canal.", + "startTime": "2026-02-20T03:30:00.600Z", + "endTime": "2026-02-20T11:00:00.000Z", + "duration": 27000, + "broadcastDate": { + "start": "2026-02-20T03:30:00.600Z", + "end": "2026-02-20T11:00:00.000Z" + }, + "cid": "_2462ce5b3b934264e7d49a10220c1144f5e051f5", + "updated": "2026-02-19T15:31:05.476Z", + "contentType": "" + } + ] + }, + "schedule": {}, + "images": [] + }, + { + "id": "692d9c0b09240116200bf4eb", + "content": { + "audioOnly": false, + "catchUpHours": 48, + "contentLists": [], + "clip": false, + "contentType": "BROADCAST", + "downloadable": { + "isDownloadable": false + }, + "entitlementTypes": [ + "media" + ], + "epgId": "WINSPORTS_AUDIO", + "externalId": "3f787abe-d68e-4d4b-8738-d14a95ff0596", + "flights": [ + { + "flights": [ + { + "start": "2025-11-04T13:50:00.000Z", + "end": null + } + ], + "network": "winsportsaudio" + } + ], + "hasCatchUp": true, + "hd": false, + "id": "692d9c0b09240116200bf4eb", + "images": [ + { + "url": "https://unity-img.tbxapis.com/v0/images/6a561d048728db7c786b53b0941d0dd9/content/692d9c0b09240116200bf4eb/3b77368563874b184ca70dc8382a1959/img.png", + "contentType": "image/png", + "type": "THUMB", + "size": { + "height": 1080, + "ratio": 1.7787037037037037, + "width": 1921 + }, + "created": "2025-12-01T17:48:11.932Z", + "updated": "2025-12-01T17:48:11.932Z" + }, + { + "url": "https://unity-img.tbxapis.com/v0/images/6a561d048728db7c786b53b0941d0dd9/content/692d9c0b09240116200bf4eb/7fab71671b6433de9d5ac9d2b119c1f8/img.png", + "contentType": "image/png", + "type": "POSTER", + "size": { + "height": 1500, + "ratio": 0.6666666666666666, + "width": 1000 + }, + "created": "2025-12-01T17:48:11.929Z", + "updated": "2025-12-01T17:48:11.929Z" + } + ], + "isNew": false, + "live": true, + "networks": [ + { + "name": "Win Sports Live Audio", + "network": "winsportsaudio", + "embed": true + } + ], + "participants": { + "authors": [], + "cast": [], + "director": [], + "writer": [] + }, + "playbackType": [], + "provider": "winsportslivecpix", + "ratingLevel": 2, + "ratings": [ + "NR" + ], + "replay": false, + "shortId": "l672wl", + "tags": [], + "title": "Win Lite", + "tracking": { + "bookmarks": true, + "events": true + }, + "trailerConfig": { + "isTrailer": false + }, + "urn": "urn:tve:winsportsaudio", + "viewCondition": "standard", + "subtitleTracks": [], + "encodings": [ + "application/dash+xml", + "application/x-mpegURL" + ], + "isCoppa": false, + "alternativeDescriptions": [], + "signalId": "winsportsplusaudio", + "category": null, + "epg": [ + { + "episode": null, + "season": null, + "genres": [], + "lang": "es", + "participants": { + "directors": [], + "cast": [] + }, + "ratings": [], + "images": [ + { + "url": "https://unity-img.tbxapis.com/v0/epg/6a561d048728db7c786b53b0941d0dd9/WINSPORTS_AUDIO/M2607027/M2607027/260219211413_Thumb_generico_WINPLAY.png", + "type": "THUMB", + "image": "https://unity-img.tbxapis.com/v0/epg/6a561d048728db7c786b53b0941d0dd9/WINSPORTS_AUDIO/M2607027/M2607027/260219211413_Thumb_generico_WINPLAY.png" + }, + { + "url": "https://unity-img.tbxapis.com/v0/epg/6a561d048728db7c786b53b0941d0dd9/WINSPORTS_AUDIO/M2607027/M2607027/260219211413_poster_generico_WINPLAY.png", + "type": "POSTER", + "image": "https://unity-img.tbxapis.com/v0/epg/6a561d048728db7c786b53b0941d0dd9/WINSPORTS_AUDIO/M2607027/M2607027/260219211413_poster_generico_WINPLAY.png" + } + ], + "cid": "M2607027", + "programId": "M2607027", + "programName": "Repetición Medio Tiempo", + "externalId": "M2607027", + "title": "Repetición Medio Tiempo", + "description": "Repetición", + "contentType": "EPISODE", + "duration": 7200, + "tags": [], + "startTime": "2026-02-18T19:30:00.000Z", + "endTime": "2026-02-18T21:30:00.000Z", + "broadcastDate": { + "start": "2026-02-18T19:30:00.000Z", + "end": "2026-02-18T21:30:00.000Z" + }, + "countries": [ + "all" + ], + "updated": "2026-02-19T21:14:13.390Z" + }, + { + "episode": null, + "season": null, + "genres": [], + "lang": "es", + "participants": { + "directors": [], + "cast": [] + }, + "ratings": [], + "images": [ + { + "url": "https://unity-img.tbxapis.com/v0/epg/6a561d048728db7c786b53b0941d0dd9/WINSPORTS_AUDIO/M2607028/M2607028/260219211413_Thumb_generico_WINPLAY.png", + "type": "THUMB", + "image": "https://unity-img.tbxapis.com/v0/epg/6a561d048728db7c786b53b0941d0dd9/WINSPORTS_AUDIO/M2607028/M2607028/260219211413_Thumb_generico_WINPLAY.png" + }, + { + "url": "https://unity-img.tbxapis.com/v0/epg/6a561d048728db7c786b53b0941d0dd9/WINSPORTS_AUDIO/M2607028/M2607028/260219211413_poster_generico_WINPLAY.png", + "type": "POSTER", + "image": "https://unity-img.tbxapis.com/v0/epg/6a561d048728db7c786b53b0941d0dd9/WINSPORTS_AUDIO/M2607028/M2607028/260219211413_poster_generico_WINPLAY.png" + } + ], + "cid": "M2607028", + "programId": "M2607028", + "programName": "Win Noticias", + "externalId": "M2607028", + "title": "Win Noticias", + "description": "Noticiero", + "contentType": "EPISODE", + "duration": 5400, + "tags": [], + "startTime": "2026-02-18T21:30:00.000Z", + "endTime": "2026-02-18T23:00:00.000Z", + "broadcastDate": { + "start": "2026-02-18T21:30:00.000Z", + "end": "2026-02-18T23:00:00.000Z" + }, + "countries": [ + "all" + ], + "updated": "2026-02-19T21:14:13.390Z" + }, + { + "episode": null, + "season": null, + "genres": [], + "lang": "es", + "participants": { + "directors": [], + "cast": [] + }, + "ratings": [], + "images": [ + { + "url": "https://unity-img.tbxapis.com/v0/epg/6a561d048728db7c786b53b0941d0dd9/WINSPORTS_AUDIO/M2607029/M2607029/260219211413_Thumb_generico_WINPLAY.png", + "type": "THUMB", + "image": "https://unity-img.tbxapis.com/v0/epg/6a561d048728db7c786b53b0941d0dd9/WINSPORTS_AUDIO/M2607029/M2607029/260219211413_Thumb_generico_WINPLAY.png" + }, + { + "url": "https://unity-img.tbxapis.com/v0/epg/6a561d048728db7c786b53b0941d0dd9/WINSPORTS_AUDIO/M2607029/M2607029/260219211413_poster_generico_WINPLAY.png", + "type": "POSTER", + "image": "https://unity-img.tbxapis.com/v0/epg/6a561d048728db7c786b53b0941d0dd9/WINSPORTS_AUDIO/M2607029/M2607029/260219211413_poster_generico_WINPLAY.png" + } + ], + "cid": "M2607029", + "programId": "M2607029", + "programName": "Cavsulas", + "externalId": "M2607029", + "title": "Cavsulas", + "description": "Programa ", + "contentType": "EPISODE", + "duration": 1800, + "tags": [], + "startTime": "2026-02-18T23:00:00.000Z", + "endTime": "2026-02-18T23:30:00.000Z", + "broadcastDate": { + "start": "2026-02-18T23:00:00.000Z", + "end": "2026-02-18T23:30:00.000Z" + }, + "countries": [ + "all" + ], + "updated": "2026-02-19T21:14:13.390Z" + }, + { + "episode": null, + "season": null, + "genres": [], + "lang": "es", + "participants": { + "directors": [], + "cast": [] + }, + "ratings": [], + "images": [ + { + "url": "https://unity-img.tbxapis.com/v0/epg/6a561d048728db7c786b53b0941d0dd9/WINSPORTS_AUDIO/M2607030/M2607030/260219211413_Thumb_generico_WINPLAY.png", + "type": "THUMB", + "image": "https://unity-img.tbxapis.com/v0/epg/6a561d048728db7c786b53b0941d0dd9/WINSPORTS_AUDIO/M2607030/M2607030/260219211413_Thumb_generico_WINPLAY.png" + }, + { + "url": "https://unity-img.tbxapis.com/v0/epg/6a561d048728db7c786b53b0941d0dd9/WINSPORTS_AUDIO/M2607030/M2607030/260219211413_poster_generico_WINPLAY.png", + "type": "POSTER", + "image": "https://unity-img.tbxapis.com/v0/epg/6a561d048728db7c786b53b0941d0dd9/WINSPORTS_AUDIO/M2607030/M2607030/260219211413_poster_generico_WINPLAY.png" + } + ], + "cid": "M2607030", + "programId": "M2607030", + "programName": "Previo", + "externalId": "M2607030", + "title": "Previo", + "description": "previo", + "contentType": "EPISODE", + "duration": 3000, + "tags": [], + "startTime": "2026-02-18T23:30:00.000Z", + "endTime": "2026-02-19T00:20:00.000Z", + "broadcastDate": { + "start": "2026-02-18T23:30:00.000Z", + "end": "2026-02-19T00:20:00.000Z" + }, + "countries": [ + "all" + ], + "updated": "2026-02-19T21:14:13.390Z" + }, + { + "episode": null, + "season": null, + "genres": [], + "lang": "es", + "participants": { + "directors": [], + "cast": [] + }, + "ratings": [], + "images": [ + { + "url": "https://unity-img.tbxapis.com/v0/epg/6a561d048728db7c786b53b0941d0dd9/WINSPORTS_AUDIO/M2607031/M2607031/260219211413_1920x1080__L-JUNIOR__R-AMERICA.png", + "type": "THUMB", + "image": "https://unity-img.tbxapis.com/v0/epg/6a561d048728db7c786b53b0941d0dd9/WINSPORTS_AUDIO/M2607031/M2607031/260219211413_1920x1080__L-JUNIOR__R-AMERICA.png" + }, + { + "url": "https://unity-img.tbxapis.com/v0/epg/6a561d048728db7c786b53b0941d0dd9/WINSPORTS_AUDIO/M2607031/M2607031/260219211413_1000x1500__L-JUNIOR__R-AMERICA.png", + "type": "POSTER", + "image": "https://unity-img.tbxapis.com/v0/epg/6a561d048728db7c786b53b0941d0dd9/WINSPORTS_AUDIO/M2607031/M2607031/260219211413_1000x1500__L-JUNIOR__R-AMERICA.png" + } + ], + "cid": "M2607031", + "programId": "M2607031", + "programName": "Liga BetPlay Dimayor 2026 - I: Junior vs. América (Fecha 7)", + "externalId": "M2607031", + "title": "Liga BetPlay Dimayor 2026 - I: Junior vs. América (Fecha 7)", + "description": "Fecha 7", + "contentType": "EPISODE", + "duration": 8700, + "tags": [], + "startTime": "2026-02-19T00:20:00.000Z", + "endTime": "2026-02-19T02:45:00.000Z", + "broadcastDate": { + "start": "2026-02-19T00:20:00.000Z", + "end": "2026-02-19T02:45:00.000Z" + }, + "countries": [ + "all" + ], + "updated": "2026-02-19T21:14:13.390Z" + }, + { + "episode": null, + "season": null, + "genres": [], + "lang": "es", + "participants": { + "directors": [], + "cast": [] + }, + "ratings": [], + "images": [ + { + "url": "https://unity-img.tbxapis.com/v0/epg/6a561d048728db7c786b53b0941d0dd9/WINSPORTS_AUDIO/M2607032/M2607032/260219211413_Thumb_generico_WINPLAY.png", + "type": "THUMB", + "image": "https://unity-img.tbxapis.com/v0/epg/6a561d048728db7c786b53b0941d0dd9/WINSPORTS_AUDIO/M2607032/M2607032/260219211413_Thumb_generico_WINPLAY.png" + }, + { + "url": "https://unity-img.tbxapis.com/v0/epg/6a561d048728db7c786b53b0941d0dd9/WINSPORTS_AUDIO/M2607032/M2607032/260219211413_poster_generico_WINPLAY.png", + "type": "POSTER", + "image": "https://unity-img.tbxapis.com/v0/epg/6a561d048728db7c786b53b0941d0dd9/WINSPORTS_AUDIO/M2607032/M2607032/260219211413_poster_generico_WINPLAY.png" + } + ], + "cid": "M2607032", + "programId": "M2607032", + "programName": "Win Noticias", + "externalId": "M2607032", + "title": "Win Noticias", + "description": "Noticiero", + "contentType": "EPISODE", + "duration": 2700, + "tags": [], + "startTime": "2026-02-19T02:45:00.000Z", + "endTime": "2026-02-19T03:30:00.000Z", + "broadcastDate": { + "start": "2026-02-19T02:45:00.000Z", + "end": "2026-02-19T03:30:00.000Z" + }, + "countries": [ + "all" + ], + "updated": "2026-02-19T21:14:13.390Z" + }, + { + "episode": null, + "season": null, + "genres": [], + "lang": "es", + "participants": { + "directors": [], + "cast": [] + }, + "ratings": [], + "images": [ + { + "url": "https://unity-img.tbxapis.com/v0/epg/6a561d048728db7c786b53b0941d0dd9/WINSPORTS_AUDIO/M2607033/M2607033/260219211413_Thumb_generico_WINPLAY.png", + "type": "THUMB", + "image": "https://unity-img.tbxapis.com/v0/epg/6a561d048728db7c786b53b0941d0dd9/WINSPORTS_AUDIO/M2607033/M2607033/260219211413_Thumb_generico_WINPLAY.png" + }, + { + "url": "https://unity-img.tbxapis.com/v0/epg/6a561d048728db7c786b53b0941d0dd9/WINSPORTS_AUDIO/M2607033/M2607033/260219211413_poster_generico_WINPLAY.png", + "type": "POSTER", + "image": "https://unity-img.tbxapis.com/v0/epg/6a561d048728db7c786b53b0941d0dd9/WINSPORTS_AUDIO/M2607033/M2607033/260219211413_poster_generico_WINPLAY.png" + } + ], + "cid": "M2607033", + "programId": "M2607033", + "programName": "Repetición Programación Win", + "externalId": "M2607033", + "title": "Repetición Programación Win", + "description": "Repetición", + "contentType": "EPISODE", + "duration": 30600, + "tags": [], + "startTime": "2026-02-19T03:30:00.000Z", + "endTime": "2026-02-19T12:00:00.000Z", + "broadcastDate": { + "start": "2026-02-19T03:30:00.000Z", + "end": "2026-02-19T12:00:00.000Z" + }, + "countries": [ + "all" + ], + "updated": "2026-02-19T21:14:13.390Z" + }, + { + "episode": null, + "season": null, + "genres": [], + "lang": "es", + "participants": { + "directors": [], + "cast": [] + }, + "ratings": [], + "images": [ + { + "url": "https://unity-img.tbxapis.com/v0/epg/6a561d048728db7c786b53b0941d0dd9/WINSPORTS_AUDIO/M2607034/M2607034/260219211413_Thumb_generico_WINPLAY.png", + "type": "THUMB", + "image": "https://unity-img.tbxapis.com/v0/epg/6a561d048728db7c786b53b0941d0dd9/WINSPORTS_AUDIO/M2607034/M2607034/260219211413_Thumb_generico_WINPLAY.png" + }, + { + "url": "https://unity-img.tbxapis.com/v0/epg/6a561d048728db7c786b53b0941d0dd9/WINSPORTS_AUDIO/M2607034/M2607034/260219211413_poster_generico_WINPLAY.png", + "type": "POSTER", + "image": "https://unity-img.tbxapis.com/v0/epg/6a561d048728db7c786b53b0941d0dd9/WINSPORTS_AUDIO/M2607034/M2607034/260219211413_poster_generico_WINPLAY.png" + } + ], + "cid": "M2607034", + "programId": "M2607034", + "programName": "Chiringuito de Jugones", + "externalId": "M2607034", + "title": "Chiringuito de Jugones", + "description": "Repetición", + "contentType": "EPISODE", + "duration": 7200, + "tags": [], + "startTime": "2026-02-19T12:00:00.000Z", + "endTime": "2026-02-19T14:00:00.000Z", + "broadcastDate": { + "start": "2026-02-19T12:00:00.000Z", + "end": "2026-02-19T14:00:00.000Z" + }, + "countries": [ + "all" + ], + "updated": "2026-02-19T21:14:13.390Z" + }, + { + "episode": null, + "season": null, + "genres": [], + "lang": "es", + "participants": { + "directors": [], + "cast": [] + }, + "ratings": [], + "images": [ + { + "url": "https://unity-img.tbxapis.com/v0/epg/6a561d048728db7c786b53b0941d0dd9/WINSPORTS_AUDIO/M2607035/M2607035/260219211413_Thumb_generico_WINPLAY.png", + "type": "THUMB", + "image": "https://unity-img.tbxapis.com/v0/epg/6a561d048728db7c786b53b0941d0dd9/WINSPORTS_AUDIO/M2607035/M2607035/260219211413_Thumb_generico_WINPLAY.png" + }, + { + "url": "https://unity-img.tbxapis.com/v0/epg/6a561d048728db7c786b53b0941d0dd9/WINSPORTS_AUDIO/M2607035/M2607035/260219211413_poster_generico_WINPLAY.png", + "type": "POSTER", + "image": "https://unity-img.tbxapis.com/v0/epg/6a561d048728db7c786b53b0941d0dd9/WINSPORTS_AUDIO/M2607035/M2607035/260219211413_poster_generico_WINPLAY.png" + } + ], + "cid": "M2607035", + "programId": "M2607035", + "programName": "Win Noticias", + "externalId": "M2607035", + "title": "Win Noticias", + "description": "Repetición", + "contentType": "EPISODE", + "duration": 3600, + "tags": [], + "startTime": "2026-02-19T14:00:00.000Z", + "endTime": "2026-02-19T15:00:00.000Z", + "broadcastDate": { + "start": "2026-02-19T14:00:00.000Z", + "end": "2026-02-19T15:00:00.000Z" + }, + "countries": [ + "all" + ], + "updated": "2026-02-19T21:14:13.390Z" + }, + { + "episode": null, + "season": null, + "genres": [], + "lang": "es", + "participants": { + "directors": [], + "cast": [] + }, + "ratings": [], + "images": [ + { + "url": "https://unity-img.tbxapis.com/v0/epg/6a561d048728db7c786b53b0941d0dd9/WINSPORTS_AUDIO/M2607036/M2607036/260219211413_Thumb_generico_WINPLAY.png", + "type": "THUMB", + "image": "https://unity-img.tbxapis.com/v0/epg/6a561d048728db7c786b53b0941d0dd9/WINSPORTS_AUDIO/M2607036/M2607036/260219211413_Thumb_generico_WINPLAY.png" + }, + { + "url": "https://unity-img.tbxapis.com/v0/epg/6a561d048728db7c786b53b0941d0dd9/WINSPORTS_AUDIO/M2607036/M2607036/260219211413_poster_generico_WINPLAY.png", + "type": "POSTER", + "image": "https://unity-img.tbxapis.com/v0/epg/6a561d048728db7c786b53b0941d0dd9/WINSPORTS_AUDIO/M2607036/M2607036/260219211413_poster_generico_WINPLAY.png" + } + ], + "cid": "M2607036", + "programId": "M2607036", + "programName": "Repetición Repetición Liga BetPlay Dimayor 2026 - I: Cali vs. Nacional (Fecha 7)", + "externalId": "M2607036", + "title": "Repetición Repetición Liga BetPlay Dimayor 2026 - I: Cali vs. Nacional (Fecha 7)", + "description": "Repetición", + "contentType": "EPISODE", + "duration": 7200, + "tags": [], + "startTime": "2026-02-19T15:00:00.000Z", + "endTime": "2026-02-19T17:00:00.000Z", + "broadcastDate": { + "start": "2026-02-19T15:00:00.000Z", + "end": "2026-02-19T17:00:00.000Z" + }, + "countries": [ + "all" + ], + "updated": "2026-02-19T21:14:13.390Z" + }, + { + "episode": null, + "season": null, + "genres": [], + "lang": "es", + "participants": { + "directors": [], + "cast": [] + }, + "ratings": [], + "images": [ + { + "url": "https://unity-img.tbxapis.com/v0/epg/6a561d048728db7c786b53b0941d0dd9/WINSPORTS_AUDIO/M2607037/M2607037/260219211413_Thumb_generico_WINPLAY.png", + "type": "THUMB", + "image": "https://unity-img.tbxapis.com/v0/epg/6a561d048728db7c786b53b0941d0dd9/WINSPORTS_AUDIO/M2607037/M2607037/260219211413_Thumb_generico_WINPLAY.png" + }, + { + "url": "https://unity-img.tbxapis.com/v0/epg/6a561d048728db7c786b53b0941d0dd9/WINSPORTS_AUDIO/M2607037/M2607037/260219211413_poster_generico_WINPLAY.png", + "type": "POSTER", + "image": "https://unity-img.tbxapis.com/v0/epg/6a561d048728db7c786b53b0941d0dd9/WINSPORTS_AUDIO/M2607037/M2607037/260219211413_poster_generico_WINPLAY.png" + } + ], + "cid": "M2607037", + "programId": "M2607037", + "programName": "Repetición Liga BetPlay Dimayor 2026 - I: Junior vs. América (Fecha 7)", + "externalId": "M2607037", + "title": "Repetición Liga BetPlay Dimayor 2026 - I: Junior vs. América (Fecha 7)", + "description": "Repetición", + "contentType": "EPISODE", + "duration": 7200, + "tags": [], + "startTime": "2026-02-19T17:00:00.000Z", + "endTime": "2026-02-19T19:00:00.000Z", + "broadcastDate": { + "start": "2026-02-19T17:00:00.000Z", + "end": "2026-02-19T19:00:00.000Z" + }, + "countries": [ + "all" + ], + "updated": "2026-02-19T21:14:13.390Z" + }, + { + "episode": null, + "season": null, + "genres": [], + "lang": "es", + "participants": { + "directors": [], + "cast": [] + }, + "ratings": [], + "images": [ + { + "url": "https://unity-img.tbxapis.com/v0/epg/6a561d048728db7c786b53b0941d0dd9/WINSPORTS_AUDIO/M2607038/M2607038/260219211413_Thumb_generico_WINPLAY.png", + "type": "THUMB", + "image": "https://unity-img.tbxapis.com/v0/epg/6a561d048728db7c786b53b0941d0dd9/WINSPORTS_AUDIO/M2607038/M2607038/260219211413_Thumb_generico_WINPLAY.png" + }, + { + "url": "https://unity-img.tbxapis.com/v0/epg/6a561d048728db7c786b53b0941d0dd9/WINSPORTS_AUDIO/M2607038/M2607038/260219211413_poster_generico_WINPLAY.png", + "type": "POSTER", + "image": "https://unity-img.tbxapis.com/v0/epg/6a561d048728db7c786b53b0941d0dd9/WINSPORTS_AUDIO/M2607038/M2607038/260219211413_poster_generico_WINPLAY.png" + } + ], + "cid": "M2607038", + "programId": "M2607038", + "programName": "Repetición Liga BetPlay Dimayor 2026 - I: Tolima vs. Once Caldas (Fecha 7)", + "externalId": "M2607038", + "title": "Repetición Liga BetPlay Dimayor 2026 - I: Tolima vs. Once Caldas (Fecha 7)", + "description": "Repetición", + "contentType": "EPISODE", + "duration": 7200, + "tags": [], + "startTime": "2026-02-19T19:00:00.000Z", + "endTime": "2026-02-19T21:00:00.000Z", + "broadcastDate": { + "start": "2026-02-19T19:00:00.000Z", + "end": "2026-02-19T21:00:00.000Z" + }, + "countries": [ + "all" + ], + "updated": "2026-02-19T21:14:13.390Z" + }, + { + "episode": null, + "season": null, + "genres": [], + "lang": "es", + "participants": { + "directors": [], + "cast": [] + }, + "ratings": [], + "images": [ + { + "url": "https://unity-img.tbxapis.com/v0/epg/6a561d048728db7c786b53b0941d0dd9/WINSPORTS_AUDIO/M2607039/M2607039/260219211413_Thumb_generico_WINPLAY.png", + "type": "THUMB", + "image": "https://unity-img.tbxapis.com/v0/epg/6a561d048728db7c786b53b0941d0dd9/WINSPORTS_AUDIO/M2607039/M2607039/260219211413_Thumb_generico_WINPLAY.png" + }, + { + "url": "https://unity-img.tbxapis.com/v0/epg/6a561d048728db7c786b53b0941d0dd9/WINSPORTS_AUDIO/M2607039/M2607039/260219211413_poster_generico_WINPLAY.png", + "type": "POSTER", + "image": "https://unity-img.tbxapis.com/v0/epg/6a561d048728db7c786b53b0941d0dd9/WINSPORTS_AUDIO/M2607039/M2607039/260219211413_poster_generico_WINPLAY.png" + } + ], + "cid": "M2607039", + "programId": "M2607039", + "programName": "Repetición Medio Tiempo", + "externalId": "M2607039", + "title": "Repetición Medio Tiempo", + "description": "Repetición", + "contentType": "EPISODE", + "duration": 7200, + "tags": [], + "startTime": "2026-02-19T21:00:00.000Z", + "endTime": "2026-02-19T23:00:00.000Z", + "broadcastDate": { + "start": "2026-02-19T21:00:00.000Z", + "end": "2026-02-19T23:00:00.000Z" + }, + "countries": [ + "all" + ], + "updated": "2026-02-19T21:14:13.390Z" + }, + { + "episode": null, + "season": null, + "genres": [], + "lang": "es", + "participants": { + "directors": [], + "cast": [] + }, + "ratings": [], + "images": [ + { + "url": "https://unity-img.tbxapis.com/v0/epg/6a561d048728db7c786b53b0941d0dd9/WINSPORTS_AUDIO/M2607040/M2607040/260219211413_Thumb_generico_WINPLAY.png", + "type": "THUMB", + "image": "https://unity-img.tbxapis.com/v0/epg/6a561d048728db7c786b53b0941d0dd9/WINSPORTS_AUDIO/M2607040/M2607040/260219211413_Thumb_generico_WINPLAY.png" + }, + { + "url": "https://unity-img.tbxapis.com/v0/epg/6a561d048728db7c786b53b0941d0dd9/WINSPORTS_AUDIO/M2607040/M2607040/260219211413_poster_generico_WINPLAY.png", + "type": "POSTER", + "image": "https://unity-img.tbxapis.com/v0/epg/6a561d048728db7c786b53b0941d0dd9/WINSPORTS_AUDIO/M2607040/M2607040/260219211413_poster_generico_WINPLAY.png" + } + ], + "cid": "M2607040", + "programId": "M2607040", + "programName": "Win Noticias", + "externalId": "M2607040", + "title": "Win Noticias", + "description": "Noticiero", + "contentType": "EPISODE", + "duration": 5400, + "tags": [], + "startTime": "2026-02-19T23:00:00.000Z", + "endTime": "2026-02-20T00:30:00.000Z", + "broadcastDate": { + "start": "2026-02-19T23:00:00.000Z", + "end": "2026-02-20T00:30:00.000Z" + }, + "countries": [ + "all" + ], + "updated": "2026-02-19T21:14:13.390Z" + }, + { + "episode": null, + "season": null, + "genres": [], + "lang": "es", + "participants": { + "directors": [], + "cast": [] + }, + "ratings": [], + "images": [ + { + "url": "https://unity-img.tbxapis.com/v0/epg/6a561d048728db7c786b53b0941d0dd9/WINSPORTS_AUDIO/M2607041/M2607041/260219211413_Thumb_generico_WINPLAY.png", + "type": "THUMB", + "image": "https://unity-img.tbxapis.com/v0/epg/6a561d048728db7c786b53b0941d0dd9/WINSPORTS_AUDIO/M2607041/M2607041/260219211413_Thumb_generico_WINPLAY.png" + }, + { + "url": "https://unity-img.tbxapis.com/v0/epg/6a561d048728db7c786b53b0941d0dd9/WINSPORTS_AUDIO/M2607041/M2607041/260219211413_poster_generico_WINPLAY.png", + "type": "POSTER", + "image": "https://unity-img.tbxapis.com/v0/epg/6a561d048728db7c786b53b0941d0dd9/WINSPORTS_AUDIO/M2607041/M2607041/260219211413_poster_generico_WINPLAY.png" + } + ], + "cid": "M2607041", + "programId": "M2607041", + "programName": "Repetición Repetición Repetición Liga BetPlay Dimayor 2026 - I: Cali vs. Nacional (Fecha 7)", + "externalId": "M2607041", + "title": "Repetición Repetición Repetición Liga BetPlay Dimayor 2026 - I: Cali vs. Nacional (Fecha 7)", + "description": "Repetición", + "contentType": "EPISODE", + "duration": 7200, + "tags": [], + "startTime": "2026-02-20T00:30:00.000Z", + "endTime": "2026-02-20T02:30:00.000Z", + "broadcastDate": { + "start": "2026-02-20T00:30:00.000Z", + "end": "2026-02-20T02:30:00.000Z" + }, + "countries": [ + "all" + ], + "updated": "2026-02-19T21:14:13.390Z" + }, + { + "episode": null, + "season": null, + "genres": [], + "lang": "es", + "participants": { + "directors": [], + "cast": [] + }, + "ratings": [], + "images": [ + { + "url": "https://unity-img.tbxapis.com/v0/epg/6a561d048728db7c786b53b0941d0dd9/WINSPORTS_AUDIO/M2607042/M2607042/260219211413_poster_generico_WINPLAY.png", + "type": "POSTER", + "image": "https://unity-img.tbxapis.com/v0/epg/6a561d048728db7c786b53b0941d0dd9/WINSPORTS_AUDIO/M2607042/M2607042/260219211413_poster_generico_WINPLAY.png" + } + ], + "cid": "M2607042", + "programId": "M2607042", + "programName": "Win Noticias", + "externalId": "M2607042", + "title": "Win Noticias", + "description": "Noticiero", + "contentType": "EPISODE", + "duration": 3600, + "tags": [], + "startTime": "2026-02-20T02:30:00.000Z", + "endTime": "2026-02-20T03:30:00.000Z", + "broadcastDate": { + "start": "2026-02-20T02:30:00.000Z", + "end": "2026-02-20T03:30:00.000Z" + }, + "countries": [ + "all" + ], + "updated": "2026-02-19T21:14:13.390Z" + }, + { + "episode": null, + "season": null, + "genres": [], + "lang": "es", + "participants": { + "directors": [], + "cast": [] + }, + "ratings": [], + "images": [ + { + "url": "https://unity-img.tbxapis.com/v0/epg/6a561d048728db7c786b53b0941d0dd9/WINSPORTS_AUDIO/M2607043/M2607043/260219211413_Thumb_generico_WINPLAY.png", + "type": "THUMB", + "image": "https://unity-img.tbxapis.com/v0/epg/6a561d048728db7c786b53b0941d0dd9/WINSPORTS_AUDIO/M2607043/M2607043/260219211413_Thumb_generico_WINPLAY.png" + }, + { + "url": "https://unity-img.tbxapis.com/v0/epg/6a561d048728db7c786b53b0941d0dd9/WINSPORTS_AUDIO/M2607043/M2607043/260219211413_poster_generico_WINPLAY.png", + "type": "POSTER", + "image": "https://unity-img.tbxapis.com/v0/epg/6a561d048728db7c786b53b0941d0dd9/WINSPORTS_AUDIO/M2607043/M2607043/260219211413_poster_generico_WINPLAY.png" + } + ], + "cid": "M2607043", + "programId": "M2607043", + "programName": "Repetición Programación Win", + "externalId": "M2607043", + "title": "Repetición Programación Win", + "description": "Repetición", + "contentType": "EPISODE", + "duration": 30600, + "tags": [], + "startTime": "2026-02-20T03:30:00.000Z", + "endTime": "2026-02-20T12:00:00.000Z", + "broadcastDate": { + "start": "2026-02-20T03:30:00.000Z", + "end": "2026-02-20T12:00:00.000Z" + }, + "countries": [ + "all" + ], + "updated": "2026-02-19T21:14:13.390Z" + } + ] + }, + "schedule": {}, + "images": [] + } + ], + "page": { + "currentPage": 1, + "firstPage": 1, + "lastPage": 1, + "nextPage": null, + "previousPage": null, + "totalPages": 1, + "totalItems": 3, + "itemsPerPage": 20 + }, + "epgUrl": "https://unity.tbxapis.com/v0/epg/6761b6ab55adef022ee97d166a561d048728db7c786b53b0941d0dd9_frfr_0.json" } \ No newline at end of file diff --git a/sites/winplay.co/winplay.co.channels.xml b/sites/winplay.co/winplay.co.channels.xml index 0e3d4da34..e9c0214ee 100644 --- a/sites/winplay.co/winplay.co.channels.xml +++ b/sites/winplay.co/winplay.co.channels.xml @@ -1,5 +1,6 @@ - Win+ Fútbol - Win Sports + Win Sports + Win+Fútbol + Win Lite diff --git a/sites/winplay.co/winplay.co.config.js b/sites/winplay.co/winplay.co.config.js index 831fecc73..afb31eea3 100644 --- a/sites/winplay.co/winplay.co.config.js +++ b/sites/winplay.co/winplay.co.config.js @@ -1,45 +1,105 @@ const dayjs = require('dayjs') +const axios = require('axios') + +const API_BASE = 'https://unity.tbxapis.com/v0' +const CLIENT_ID = '6a561d048728db7c786b53b0941d0dd9' + +let cachedToken = null module.exports = { site: 'winplay.co', days: 2, - url: 'https://next.platform.mediastre.am/graphql', + async url({ date }) { + const epgLink = await fetchEpgItemsURL() + const from = dayjs(date).startOf('day').toISOString() + const to = dayjs(date).add(1, 'day').endOf('day').toISOString() + return epgLink + `?pageSize=25&page=1&fromEpg=${from}&toEpg=${to}` + }, request: { - method: 'POST', - headers: { - accept: 'application/json', - 'x-client-id': 'a084524ea449c15dfe5e75636fb55ce6a9d0d7601aac946daa', - 'x-ott-language': 'es' - }, - data() { + async headers() { + await getToken() return { - operationName: 'getLivesEpg', - variables: { page: 1, hours: 48 }, - query: - 'query getLivesEpg($page: Int = 1, $hours: Int, $ids: [String]) {\n getLives(ids: $ids) {\n _id\n logo\n name\n schedules(hours: $hours, page: {limit: 0, page: $page}) {\n _id\n name\n date_start\n date_end\n current\n match {\n matchDay\n __typename\n }\n show {\n _id\n title\n __typename\n }\n live {\n _id\n dvr\n type\n purchased\n __typename\n }\n __typename\n }\n __typename\n }\n}\n' + Authorization: `JWT ${cachedToken}`, + 'Content-Type': 'application/json' } } }, parser({ content, channel, date }) { - let programs = [] + const programs = [] const items = parseItems(content, channel, date) - for (let item of items) { + for (const item of items) { programs.push({ - title: item.name, - start: dayjs(item.date_start), - stop: dayjs(item.date_end) + title: item.programName || item.title, + description: item.description || null, + start: dayjs(item.startTime), + stop: dayjs(item.endTime), + episode: item.episode || null, + season: item.season || null, + icon: item.images?.[0]?.url || null }) } return programs + }, + async channels() { + await getToken() + const epgLink = await fetchEpgItemsURL() + const response = await axios.get(epgLink + '?pageSize=50&page=1', { + headers: { Authorization: `JWT ${cachedToken}` } + }) + const data = response.data + if (!data?.result) return [] + return data.result.map(item => ({ + site_id: item.content.signalId, + name: item.content.title, + lang: 'es' + })) } } +async function getToken() { + if (cachedToken) return cachedToken + const response = await axios.post(`${API_BASE}/auth/public`, { + auth: { + sub: CLIENT_ID, + country: null, + currentProfile: null, + device: null, + language: null + } + }, { headers: { 'Content-Type': 'application/json' } }) + cachedToken = response.data?.token?.access_token || null + return cachedToken +} + +let cachedEpgItemsURL = null + +async function fetchEpgItemsURL() { + if (cachedEpgItemsURL) return cachedEpgItemsURL + + const sectionsResp = await axios.get(`${API_BASE}/sections?page=1&pageSize=400`, { + headers: { Authorization: `JWT ${cachedToken}` } + }) + const programacionID = sectionsResp.data?.result?.find(s => s.name === 'Programación')?.id + if (!programacionID) throw new Error('Programación section not found') + + const componentsResp = await axios.get(`${API_BASE}/sections/${programacionID}/components`, { + headers: { Authorization: `JWT ${cachedToken}` } + }) + const epgLink = componentsResp.data?.result?.find( + c => c.active && c.componentType === 'epg_grid' + )?.itemsURL + if (!epgLink) throw new Error('EPG grid component not found') + + cachedEpgItemsURL = epgLink + return cachedEpgItemsURL +} + function parseItems(content, channel, date) { const data = JSON.parse(content) - if (!data || !data.data || !data.data.getLives) return [] - const channelData = data.data.getLives.find(i => i._id === channel.site_id) - if (!Array.isArray(channelData.schedules)) return [] + if (!data?.result) return [] + const channelData = data.result.find(i => i.content?.signalId === channel.site_id) + if (!channelData?.content?.epg) return [] - return channelData.schedules.filter(i => date.isSame(dayjs(i.date_start), 'd')) + return channelData.content.epg.filter(i => dayjs(date).isSame(dayjs(i.startTime), 'd')) } diff --git a/sites/winplay.co/winplay.co.test.js b/sites/winplay.co/winplay.co.test.js index 492388254..c4de7b2d3 100644 --- a/sites/winplay.co/winplay.co.test.js +++ b/sites/winplay.co/winplay.co.test.js @@ -7,35 +7,18 @@ const customParseFormat = require('dayjs/plugin/customParseFormat') dayjs.extend(customParseFormat) dayjs.extend(utc) -const date = dayjs.utc('2024-12-24', 'YYYY-MM-DD').startOf('d') +const date = dayjs.utc('2026-02-19', 'YYYY-MM-DD').startOf('d') const channel = { - site_id: '529cff6f6bd2ea6b610000e0', + site_id: 'winsportsplus', xmltv_id: 'WinPlusFutbol.co' } it('can generate valid url', () => { - expect(url).toBe('https://next.platform.mediastre.am/graphql') -}) - -it('can generate valid request method', () => { - expect(request.method).toBe('POST') + expect(typeof url).toBe('function') }) it('can generate valid request headers', () => { - expect(request.headers).toMatchObject({ - accept: 'application/json', - 'x-client-id': 'a084524ea449c15dfe5e75636fb55ce6a9d0d7601aac946daa', - 'x-ott-language': 'es' - }) -}) - -it('can generate valid request data', () => { - expect(request.data()).toMatchObject({ - operationName: 'getLivesEpg', - variables: { page: 1, hours: 48 }, - query: - 'query getLivesEpg($page: Int = 1, $hours: Int, $ids: [String]) {\n getLives(ids: $ids) {\n _id\n logo\n name\n schedules(hours: $hours, page: {limit: 0, page: $page}) {\n _id\n name\n date_start\n date_end\n current\n match {\n matchDay\n __typename\n }\n show {\n _id\n title\n __typename\n }\n live {\n _id\n dvr\n type\n purchased\n __typename\n }\n __typename\n }\n __typename\n }\n}\n' - }) + expect(typeof request.headers).toBe('function') }) it('can parse response', () => { @@ -48,20 +31,26 @@ it('can parse response', () => { }) expect(results[0]).toMatchObject({ - start: '2024-12-24T00:30:00.000Z', - stop: '2024-12-24T02:30:00.000Z', - title: 'Los Disruptivos de Win' + start: '2026-02-19T00:20:00.000Z', + stop: '2026-02-19T02:45:00.000Z', + title: 'Liga BetPlay Dimayor 2026 - I: Junior vs. América (Fecha 7)' }) expect(results[1]).toMatchObject({ - start: '2024-12-24T02:30:00.000Z', - stop: '2024-12-24T03:30:00.000Z', - title: 'WIn Noticias' + start: '2026-02-19T02:45:00.000Z', + stop: '2026-02-19T03:30:00.000Z', + title: 'Win Noticias', + }) + + expect(results[9]).toMatchObject({ + start: '2026-02-19T23:00:00.000Z', + stop: '2026-02-20T00:30:00.000Z', + title: 'Win Noticias' }) }) it('can handle empty guide', () => { - const content = '{"status":"ERROR","error":"UNAUTHORIZED_REQUEST"}' + const content = '{"count":0,"result":[]}' const results = parser({ content, channel, date }) expect(results).toMatchObject([]) From 41ccc3c99678f69401ca2fedf2023212c259bed5 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Isma=C3=ABl=20Moret?= <30985701+BellezaEmporium@users.noreply.github.com> Date: Wed, 15 Apr 2026 10:53:16 +0200 Subject: [PATCH 04/92] Delete sites/stod2.is directory --- sites/stod2.is/__data__/content.json | 34 -------------- sites/stod2.is/readme.md | 21 --------- sites/stod2.is/stod2.is.channels.xml | 15 ------- sites/stod2.is/stod2.is.config.js | 67 ---------------------------- sites/stod2.is/stod2.is.test.js | 46 ------------------- 5 files changed, 183 deletions(-) delete mode 100644 sites/stod2.is/__data__/content.json delete mode 100644 sites/stod2.is/readme.md delete mode 100644 sites/stod2.is/stod2.is.channels.xml delete mode 100644 sites/stod2.is/stod2.is.config.js delete mode 100644 sites/stod2.is/stod2.is.test.js diff --git a/sites/stod2.is/__data__/content.json b/sites/stod2.is/__data__/content.json deleted file mode 100644 index a08167b2b..000000000 --- a/sites/stod2.is/__data__/content.json +++ /dev/null @@ -1,34 +0,0 @@ -[ - { - "midill": "STOD2", - "midill_heiti": "Stöð 2", - "dagsetning": "2025-01-03T00:00:00Z", - "upphaf": "2025-01-03T08:00:00Z", - "titill": "Telma Borgþórsdóttir", - "isltitill": "Heimsókn", - "undirtitill": "Telma Borgþórsdóttir", - "seria": 8, - "thattur": 5, - "thattafjoldi": 10, - "birta_thatt": 1, - "opin": 0, - "beint": 0, - "frumsyning": 0, - "framundan_i_beinni": 0, - "tegund": "SER", - "flokkur": "Icelandic", - "adalhlutverk": "", - "leikstjori": "", - "ar": "2019", - "bannad": "Green", - "recidefni": 592645105, - "recidlidur": 592645184, - "recidsyning": null, - "refno": null, - "frelsi": 0, - "netdagar": 0, - "lysing": "Frábærir þættir með Sindra Sindrasyni sem lítur inn hjá íslenskum fagurkerum. Heimilin eru jafn ólík og þau eru mörg en eiga það þó eitt sameiginlegt að vera sett saman af alúð og smekklegheitum. Sindri hefur líka einstakt lag á að ná fram því besta í viðmælendum sínum.", - "slott": 15, - "slotlengd": "00:15" - } -] \ No newline at end of file diff --git a/sites/stod2.is/readme.md b/sites/stod2.is/readme.md deleted file mode 100644 index 4e3c86ce8..000000000 --- a/sites/stod2.is/readme.md +++ /dev/null @@ -1,21 +0,0 @@ -# stod2.is - -https://stod2.is/dagskra/ - -### Download the guide - -```sh -npm run grab --- --sites=stod2.is -``` - -### Update channel list - -```sh -npm run channels:parse --- --config=./sites/stod2.is/stod2.is.config.js --output=./sites/stod2.is/stod2.is.channels.xml -``` - -### Test - -```sh -npm test --- stod2.is -``` diff --git a/sites/stod2.is/stod2.is.channels.xml b/sites/stod2.is/stod2.is.channels.xml deleted file mode 100644 index cf152c536..000000000 --- a/sites/stod2.is/stod2.is.channels.xml +++ /dev/null @@ -1,15 +0,0 @@ - - - Besta01 - Besta02 - Besta03 - Stöð 2 Sport 5 - Stöð 2 Sport - Stöð 2 Sport 2 - Stöð 2 Sport 3 - Stöð 2 Sport 4 - Stöð 2 Sport 6 - Stöð 2 - Stöð 2 Fjölskylda - Vodafone Sport - diff --git a/sites/stod2.is/stod2.is.config.js b/sites/stod2.is/stod2.is.config.js deleted file mode 100644 index fc91355d3..000000000 --- a/sites/stod2.is/stod2.is.config.js +++ /dev/null @@ -1,67 +0,0 @@ -const dayjs = require('dayjs') -const utc = require('dayjs/plugin/utc') -const axios = require('axios') - -dayjs.extend(utc) - -module.exports = { - site: 'stod2.is', - days: 7, - request: { - cache: { - ttl: 60 * 60 * 1000 // 1 hour - } - }, - url({ channel, date }) { - return `https://api.stod2.is/dagskra/api/${channel.site_id}/${date.format('YYYY-MM-DD')}` - }, - parser: function ({ content }) { - let data - try { - data = JSON.parse(content) - } catch (error) { - console.error('Error parsing JSON:', error) - return [] - } - - const programs = [] - - if (data && Array.isArray(data)) { - data.forEach(item => { - if (!item) return - const start = dayjs.utc(item.upphaf) - const stop = start.add(item.slott, 'm') - - programs.push({ - title: item.isltitill, - sub_title: item.undirtitill, - description: item.lysing, - actors: item.adalhlutverk, - directors: item.leikstjori, - start, - stop - }) - }) - } - - return programs - }, - async channels() { - try { - const response = await axios.get('https://api.stod2.is/dagskra/api') - if (!response.data || !Array.isArray(response.data)) { - console.error('Error: No channels data found') - return [] - } - return response.data.map(item => { - return { - lang: 'is', - site_id: item - } - }) - } catch (error) { - console.error('Error fetching channels:', error) - return [] - } - } -} diff --git a/sites/stod2.is/stod2.is.test.js b/sites/stod2.is/stod2.is.test.js deleted file mode 100644 index c8ff849dc..000000000 --- a/sites/stod2.is/stod2.is.test.js +++ /dev/null @@ -1,46 +0,0 @@ -const { parser, url } = require('./stod2.is.config.js') -const fs = require('fs') -const path = require('path') -const dayjs = require('dayjs') -const utc = require('dayjs/plugin/utc') -const customParseFormat = require('dayjs/plugin/customParseFormat') -const timezone = require('dayjs/plugin/timezone') - -dayjs.extend(utc) -dayjs.extend(customParseFormat) -dayjs.extend(timezone) - -const date = dayjs.utc('2025-01-03', 'YYYY-MM-DD').startOf('day') -const channel = { site_id: 'stod2', xmltv_id: 'Stod2.is' } - -it('can generate valid url', () => { - const generatedUrl = url({ date, channel }) - expect(generatedUrl).toBe('https://api.stod2.is/dagskra/api/stod2/2025-01-03') -}) - -it('can parse response', () => { - const content = fs.readFileSync(path.resolve(__dirname, '__data__/content.json')) - const result = parser({ content }).map(p => { - p.start = p.start.toISOString() - p.stop = p.stop.toISOString() - return p - }) - - expect(result).toMatchObject([ - { - title: 'Heimsókn', - sub_title: 'Telma Borgþórsdóttir', - description: - 'Frábærir þættir með Sindra Sindrasyni sem lítur inn hjá íslenskum fagurkerum. Heimilin eru jafn ólík og þau eru mörg en eiga það þó eitt sameiginlegt að vera sett saman af alúð og smekklegheitum. Sindri hefur líka einstakt lag á að ná fram því besta í viðmælendum sínum.', - actors: '', - directors: '', - start: '2025-01-03T08:00:00.000Z', - stop: '2025-01-03T08:15:00.000Z' - } - ]) -}) - -it('can handle empty guide', () => { - const result = parser({ content: '[]' }) - expect(result).toMatchObject([]) -}) From 9014ccf6d01cb317af23ee0382aa96ad17020014 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Isma=C3=ABl=20Moret?= <30985701+BellezaEmporium@users.noreply.github.com> Date: Wed, 15 Apr 2026 11:01:36 +0200 Subject: [PATCH 05/92] Add files via upload --- sites/cyta.com.cy/cyta.com.cy.channels.xml | 42 +++++++++++----------- sites/cyta.com.cy/cyta.com.cy.config.js | 3 ++ 2 files changed, 23 insertions(+), 22 deletions(-) diff --git a/sites/cyta.com.cy/cyta.com.cy.channels.xml b/sites/cyta.com.cy/cyta.com.cy.channels.xml index c158c77a6..07f6ae055 100644 --- a/sites/cyta.com.cy/cyta.com.cy.channels.xml +++ b/sites/cyta.com.cy/cyta.com.cy.channels.xml @@ -7,23 +7,21 @@ Cartoon Network Disney Channel Motorvision - Nickelodeon Baby TV FOX HD History HD National Geographic Wild HD Disney Junior + FTV UHD 4E Al Jazeera BBC News Bloomberg Deutsche Welle E! Entertainment - NBA TV France 24 (French) TV 5 Monde Fashion TV - MTV 80s Novasports PrimeHD National Geographic HD Novacinema 2 HD @@ -55,7 +53,7 @@ RIK HD Eurosport 1 HD Eurosport 2 HD - Nova Summer + NovaΠacxa Cytavision Sports3 HD Cytavision Sports2 HD Cytavision Sports4 HD @@ -71,7 +69,6 @@ Novasports 4 HD Novasports 5 HD Mezzo Live HD - MTV Live Food Network HD Cytavision Sports7 HD Cablenet Sports 1 HD @@ -87,24 +84,24 @@ Novasportsextra4HD Novasportsextra2HD Novasportsextra3HD - Cytavision Sports2 HD CMAF - Cytavision Sports1 HD CMAF - Cytavision Sports3 HD CMAF - Cytavision Sports4 HD CMAF - Cytavision Sports6 HD CMAF - Cytavision Sports5 HD CMAF - Cytavision Sports7 HD CMAF - Cablenet Sports 1 HD CMAF - Cablenet Sports 2 HD CMAF - PPV1 CMAF - PPV3 CMAF - PPV5 CMAF - PPV2 CMAF - PPV4 CMAF - PPV6 CMAF + Cytavision Sports2 HD Real Time + Cytavision Sports1 HD Real Time + Cytavision Sports3 HD Real Time + Cytavision Sports4 HD Real Time + Cytavision Sports6 HD Real Time + Cytavision Sports5 HD Real Time + Cytavision Sports7 HD Real Time + Cablenet Sports 1 HD Real Time + Cablenet Sports 2 HD Real Time + PPV1 Real Time + PPV3 Real Time + PPV5 Real Time + PPV2 Real Time + PPV4 Real Time + PPV6 Real Time Cablenet Sports 3 HD OMEGA HD - CVSPORTS UHD + CVSPORTS 4K1 Premier League ANT1 HD Current Time HD @@ -116,7 +113,8 @@ Bloomberg Original Cytavision Sports8 HD OMONOIA TV - Cytavision Sports8 HD CMAF + Cytavision Sports8 HD Real Time LFCTV HD REAL MADRID TV + CVSPORTS 4K2 diff --git a/sites/cyta.com.cy/cyta.com.cy.config.js b/sites/cyta.com.cy/cyta.com.cy.config.js index f698dfa4c..572a3c88f 100644 --- a/sites/cyta.com.cy/cyta.com.cy.config.js +++ b/sites/cyta.com.cy/cyta.com.cy.config.js @@ -13,6 +13,9 @@ module.exports = { request: { cache: { ttl: 60 * 60 * 1000 // 1 hour + }, + headers: { + 'User-Agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/147.0.0.0 Safari/537.36' } }, url: function ({ date, channel }) { From e5e38327d861d808c834a6df9216038047300d69 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Isma=C3=ABl=20Moret?= <30985701+BellezaEmporium@users.noreply.github.com> Date: Wed, 15 Apr 2026 11:14:16 +0200 Subject: [PATCH 06/92] Add files via upload From 297cac8a49bcf7379a330ff5c6062bf20f3d7ee8 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Isma=C3=ABl=20Moret?= <30985701+BellezaEmporium@users.noreply.github.com> Date: Wed, 15 Apr 2026 22:03:22 +0200 Subject: [PATCH 07/92] reinstate old canal+ for separate PR --- sites/canalplus.com/canalplus.com.config.js | 273 +++---- sites/canalplus.com/canalplus.com.test.js | 8 +- .../canalplus.com_ad.channels.xml | 757 +++++++++--------- .../canalplus.com_bf.channels.xml | 59 +- .../canalplus.com_bi.channels.xml | 59 +- .../canalplus.com_bj.channels.xml | 59 +- .../canalplus.com_bl.channels.xml | 52 +- .../canalplus.com_cd.channels.xml | 59 +- .../canalplus.com_cf.channels.xml | 59 +- .../canalplus.com_cg.channels.xml | 59 +- .../canalplus.com_ch.channels.xml | 75 +- .../canalplus.com_ci.channels.xml | 59 +- .../canalplus.com_cm.channels.xml | 59 +- .../canalplus.com_cv.channels.xml | 59 +- .../canalplus.com_dj.channels.xml | 59 +- .../canalplus.com_fr.channels.xml | 399 +++++---- .../canalplus.com_ga.channels.xml | 59 +- .../canalplus.com_gf.channels.xml | 52 +- .../canalplus.com_gh.channels.xml | 59 +- .../canalplus.com_gm.channels.xml | 59 +- .../canalplus.com_gn.channels.xml | 59 +- .../canalplus.com_gp.channels.xml | 59 +- .../canalplus.com_gw.channels.xml | 59 +- .../canalplus.com_ht.channels.xml | 52 +- .../canalplus.com_mf.channels.xml | 52 +- .../canalplus.com_mg.channels.xml | 615 ++++++++------ .../canalplus.com_ml.channels.xml | 59 +- .../canalplus.com_mq.channels.xml | 52 +- .../canalplus.com_mr.channels.xml | 59 +- .../canalplus.com_mu.channels.xml | 25 +- .../canalplus.com_nc.channels.xml | 12 +- .../canalplus.com_ne.channels.xml | 59 +- .../canalplus.com_pf.channels.xml | 24 +- .../canalplus.com_pl.channels.xml | 71 +- .../canalplus.com_re.channels.xml | 27 +- .../canalplus.com_rw.channels.xml | 59 +- .../canalplus.com_sl.channels.xml | 59 +- .../canalplus.com_sn.channels.xml | 61 +- .../canalplus.com_td.channels.xml | 59 +- .../canalplus.com_tg.channels.xml | 59 +- .../canalplus.com_wf.channels.xml | 12 +- .../canalplus.com_yt.channels.xml | 25 +- sites/canalplus.com/readme.md | 86 +- 43 files changed, 1962 insertions(+), 2125 deletions(-) diff --git a/sites/canalplus.com/canalplus.com.config.js b/sites/canalplus.com/canalplus.com.config.js index f3a5cb18d..d6d2679bc 100644 --- a/sites/canalplus.com/canalplus.com.config.js +++ b/sites/canalplus.com/canalplus.com.config.js @@ -4,122 +4,39 @@ const utc = require('dayjs/plugin/utc') dayjs.extend(utc) -const paths = { - ad: { zone: 'cpfra', location: 'ad' }, - au: { zone: 'cpncl', location: 'au' }, - bf: { zone: 'cpafr', location: 'bf' }, - bi: { zone: 'cpafr', location: 'bi' }, - bj: { zone: 'cpafr', location: 'bj' }, - bl: { zone: 'cpant', location: 'bl' }, - cd: { zone: 'cpafr', location: 'cd' }, - cf: { zone: 'cpafr', location: 'cf' }, - cg: { zone: 'cpafr', location: 'cg' }, - ch: { zone: 'cpche', location: null }, - ch_de: { zone: 'cpchd', location: null }, - ci: { zone: 'cpafr', location: 'ci' }, - cm: { zone: 'cpafr', location: 'cm' }, - cv: { zone: 'cpafr', location: 'cv' }, - dj: { zone: 'cpafr', location: 'dj' }, - et: { zone: 'cpeth', location: 'et' }, - fr: { zone: null, location: null }, - ga: { zone: 'cpafr', location: 'ga' }, - gf: { zone: 'cpant', location: 'gf' }, - gh: { zone: 'cpafr', location: 'gh' }, - gm: { zone: 'cpafr', location: 'gm' }, - gn: { zone: 'cpafr', location: 'gn' }, - gp: { zone: 'cpafr', location: 'gp' }, - gw: { zone: 'cpafr', location: 'gw' }, - ht: { zone: 'cpant', location: 'ht' }, - km: { zone: 'cpafr', location: 'km' }, - mc: { zone: 'cpfra', location: 'mc' }, - mf: { zone: 'cpant', location: 'mf' }, - mg: { zone: 'cpmdg', location: 'mg' }, - ml: { zone: 'cpafr', location: 'ml' }, - mq: { zone: 'cpant', location: 'mq' }, - mr: { zone: 'cpafr', location: 'mr' }, - mu: { zone: 'cpmus', location: 'mu' }, - nc: { zone: 'cpncl', location: 'nc' }, - ne: { zone: 'cpafr', location: 'ne' }, - pf: { zone: 'cppyf', location: 'pf' }, - pl: { zone: null, location: null }, - re: { zone: 'cpreu', location: 're' }, - rw: { zone: 'cpafr', location: 'rw' }, - sl: { zone: 'cpafr', location: 'sl' }, - sn: { zone: 'cpafr', location: 'sn' }, - td: { zone: 'cpafr', location: 'td' }, - tg: { zone: 'cpafr', location: 'tg' }, - wf: { zone: 'cpncl', location: 'wf' }, - yt: { zone: 'cpreu', location: 'yt' }, -} - -const globalHeaders = { - 'User-Agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', - 'Accept': 'text/html,application/xhtml+xml,application/xml;q=0.9,image/avif,image/webp,image/apng,/;q=0.8', - 'Accept-Language': 'fr-FR,fr;q=0.6', - 'Accept-Encoding': 'gzip, deflate, br', - 'Pragma': 'no-cache', - 'Priority': 'u=0, i', - 'Sec-CH-UA': '"Not:A-Brand";v="99", "Brave";v="145", "Chromium";v="145"', - 'sec-ch-ua-mobile': '?0', - 'sec-ch-ua-platform': '"Windows"', - 'sec-fetch-dest': 'document', - 'sec-fetch-mode': 'navigate', - 'sec-fetch-site': 'none', - 'sec-fetch-user': '?1', - 'sec-gpc': '1', - 'upgrade-insecure-requests': '1' -} - -// Per-region token caching to avoid multiple concurrent calls and redundant token fetches -const tokenCache = {} -const tokenPending = {} - -// ARCOM (ex-CSA) internal ratings mapping (https://www.arcom.fr/se-documenter/ressources-pedagogiques/protection-des-mineurs) -// values are negative to be sorted before other ratings if any -const CSA_RATING_MAP = { '2': '-10', '3': '-12', '4': '-16', '5': '-18' } - module.exports = { site: 'canalplus.com', days: 2, url: async function ({ channel, date }) { const [region, site_id] = channel.site_id.split('#') - const currentRegion = region || 'fr' - if (!tokenCache[currentRegion]) { - // Prevents concurrent calls from same region - if (!tokenPending[currentRegion]) { - tokenPending[currentRegion] = parseToken(currentRegion).then(result => { - tokenCache[currentRegion] = result - if (Object.prototype.hasOwnProperty.call(tokenPending, currentRegion)) { - tokenPending[currentRegion] = undefined - } - return result - }) - } - await tokenPending[currentRegion] - } + const baseUrl = + region === 'pl' + ? 'https://www.canalplus.com/pl/program-tv/' + : `https://www.canalplus.com/${region}/programme-tv/` - const path = currentRegion === 'pl' ? 'mycanalint' : 'mycanal' + const data = await axios + .get(baseUrl) + .then(r => r.data.toString()) + .catch(err => console.log(err)) + + const token = parseToken(data) + const path = region === 'pl' ? 'mycanalint' : 'mycanal' const diff = date.diff(dayjs.utc().startOf('d'), 'd') - const token = tokenCache[currentRegion]?.token return `https://hodor.canalplus.pro/api/v2/${path}/channels/${token}/${site_id}/broadcasts/day/${diff}` }, - request: { - headers() { - return globalHeaders - } - }, async parser({ content }) { + let programs = [] const items = parseItems(content) - - // Parallel loading of all program details - const detailsArray = await Promise.all(items.map(loadProgramDetails)) - - const programs = items.map((item, i) => { - const info = parseInfo(detailsArray[i]) + for (let item of items) { + const prev = programs[programs.length - 1] + const details = await loadProgramDetails(item) + const info = parseInfo(details) const start = parseStart(item) - return { + if (prev) prev.stop = start + const stop = start.add(1, 'h') + programs.push({ title: item.title, description: parseDescription(info), image: parseImage(info), @@ -131,83 +48,109 @@ module.exports = { date: parseDate(info), rating: parseRating(info), start, - stop: null - } - }) - - // Sort programs by start time and set stop time of each program to the start time of the next one - for (let i = 0; i < programs.length - 1; i++) { - programs[i].stop = programs[i + 1].start - } - - // Last program: fallback +1h if there is no next program - const last = programs[programs.length - 1] - if (last && last.start) { - last.stop = last.start.add(1, 'h') + stop + }) } return programs }, async channels({ country }) { - const { zone, location } = paths[country] || {} - const pathSegment = location ? `${zone}/${location}` : zone || country - const url = `https://secure-webtv-static.canal-plus.com/metadata/${pathSegment}/all/v2.2/globalchannels.json` + const paths = { + ad: 'cpafr/ad', + bf: 'cpafr/bf', + bi: 'cpafr/bi', + bj: 'cpafr/bj', + bl: 'cpant/bl', + cd: 'cpafr/cd', + cf: 'cpafr/cf', + cg: 'cpafr/cg', + ch: 'cpche', + ci: 'cpafr/ci', + cm: 'cpafr/cm', + cv: 'cpafr/cv', + dj: 'cpafr/dj', + fr: 'cpfra', + ga: 'cpafr/ga', + gf: 'cpant/gf', + gh: 'cpafr/gh', + gm: 'cpafr/gm', + gn: 'cpafr/gn', + gp: 'cpafr/gp', + gw: 'cpafr/gw', + ht: 'cpant/ht', + mf: 'cpant/mf', + mg: 'cpafr/mg', + ml: 'cpafr/ml', + mq: 'cpant/mq', + mr: 'cpafr/mr', + mu: 'cpmus/mu', + nc: 'cpncl/nc', + ne: 'cpafr/ne', + pf: 'cppyf/pf', + pl: 'cppol', + re: 'cpreu/re', + rw: 'cpafr/rw', + sl: 'cpafr/sl', + sn: 'cpafr/sn', + td: 'cpafr/td', + tg: 'cpafr/tg', + wf: 'cpncl/wf', + yt: 'cpreu/yt' + } + let channels = [] + const path = paths[country] + const url = `https://secure-webtv-static.canal-plus.com/metadata/${path}/all/v2.2/globalchannels.json` const data = await axios .get(url) .then(r => r.data) .catch(console.log) - return data.channels - .filter(channel => channel.name !== '.') - .map(channel => ({ + data.channels.forEach(channel => { + const site_id = country === 'fr' ? `#${channel.id}` : `${country}#${channel.id}` + + if (channel.name === '.') return + + channels.push({ lang: 'fr', - site_id: country === 'fr' ? `#${channel.id}` : `${country}#${channel.id}`, + site_id, name: channel.name - })) + }) + }) + + return channels } } -async function parseToken(country) { - const { zone, location } = paths[country] || {} +function parseToken(data) { + const [, token] = data.match(/"token":"([^"]+)/) || [null, null] - let url - if (country === 'fr') { - url = 'https://hodor.canalplus.pro/api/v2/mycanal/authenticate.json/webapp/6.0?experiments=beta-test-one-tv-guide:control' - } else if (country === 'pl') { - url = 'https://hodor.canalplus.pro/api/v2/mycanalint/authenticate.json/webapp/6.0?experiments=beta-test-one-tv-guide:control' - } else { - url = `https://hodor.canalplus.pro/api/v2/mycanal/authenticate.json/webapp/6.0?experiments=beta-test-one-tv-guide:control&offerZone=${zone}&offerLocation=${location}` - } - - const data = await axios - .get(url, { headers: globalHeaders, timeout: 5000 }) - .then(r => r.data) - .catch(console.error) - - return { country, token: data?.token } + return token } function parseStart(item) { - return item?.startTime ? dayjs(item.startTime) : null + return item && item.startTime ? dayjs(item.startTime) : null } function parseImage(info) { - return info?.URLImage ?? null + return info ? info.URLImage : null } function parseDescription(info) { - return info?.summary ?? null + return info ? info.summary : null } function parseInfo(data) { - return data?.detail?.informations ?? null + if (!data || !data.detail || !data.detail.informations) return null + + return data.detail.informations } async function loadProgramDetails(item) { - if (!item?.onClick?.URLPage) return {} - return axios - .get(item.onClick.URLPage, { headers: globalHeaders }) + if (!item.onClick || !item.onClick.URLPage) return {} + + return await axios + .get(item.onClick.URLPage) .then(r => r.data) .catch(console.error) } @@ -215,26 +158,40 @@ async function loadProgramDetails(item) { function parseItems(content) { const data = JSON.parse(content) if (!data || !Array.isArray(data.timeSlices)) return [] - return data.timeSlices.flatMap(s => s.contents) + + return data.timeSlices.reduce((acc, curr) => { + acc = acc.concat(curr.contents) + return acc + }, []) } function parseCast(info, type) { - if (!info?.personnalities) return [] - const group = info.personnalities.find(i => i.prefix === type) - if (!group) return [] - return group.personnalitiesList.map(p => p.title) + let people = [] + if (info && info.personnalities) { + const personnalities = info.personnalities.find(i => i.prefix == type) + if (!personnalities) return people + for (let person of personnalities.personnalitiesList) { + people.push(person.title) + } + } + return people } function parseDate(info) { - return info?.productionYear ?? null + return info && info.productionYear ? info.productionYear : null } function parseRating(info) { - if (!info?.parentalRatings) return null - const rating = info.parentalRatings.find(i => i.authority === 'CSA') - if (!rating || Array.isArray(rating) || rating.value === '1') return null + if (!info || !info.parentalRatings) return null + let rating = info.parentalRatings.find(i => i.authority === 'CSA') + if (!rating || Array.isArray(rating)) return null + if (rating.value === '1') return null + if (rating.value === '2') rating.value = '-10' + if (rating.value === '3') rating.value = '-12' + if (rating.value === '4') rating.value = '-16' + if (rating.value === '5') rating.value = '-18' return { system: rating.authority, - value: CSA_RATING_MAP[rating.value] ?? rating.value + value: rating.value } -} \ No newline at end of file +} diff --git a/sites/canalplus.com/canalplus.com.test.js b/sites/canalplus.com/canalplus.com.test.js index 9dc0bd535..43c2fb0bb 100644 --- a/sites/canalplus.com/canalplus.com.test.js +++ b/sites/canalplus.com/canalplus.com.test.js @@ -16,9 +16,9 @@ const channel = { it('can generate valid url for today', done => { axios.get.mockImplementation(url => { - if (url.includes('authenticate.json')) { + if (url === 'https://www.canalplus.com/bi/programme-tv/') { return Promise.resolve({ - data: { token: 'f000c6f4ebf44647682b3a0fa66d7d99' } + data: fs.readFileSync(path.resolve(__dirname, '__data__/programme-tv.html')) }) } else { return Promise.resolve({ data: '' }) @@ -38,9 +38,9 @@ it('can generate valid url for today', done => { it('can generate valid url for tomorrow', done => { axios.get.mockImplementation(url => { - if (url.includes('authenticate.json')) { + if (url === 'https://www.canalplus.com/bi/programme-tv/') { return Promise.resolve({ - data: { token: 'f000c6f4ebf44647682b3a0fa66d7d99' } + data: fs.readFileSync(path.resolve(__dirname, '__data__/programme-tv.html')) }) } else { return Promise.resolve({ data: '' }) diff --git a/sites/canalplus.com/canalplus.com_ad.channels.xml b/sites/canalplus.com/canalplus.com_ad.channels.xml index e52aacba3..c2b1191ce 100644 --- a/sites/canalplus.com/canalplus.com_ad.channels.xml +++ b/sites/canalplus.com/canalplus.com_ad.channels.xml @@ -1,371 +1,392 @@ - CANAL+FOOT - FRANCE 2 - CNN - CHAINE: 45 - BLOOMBERG TV - 2M MONDE - CNBC - TVE INTERNACIONAL - TEST05 - TEST06 - TEST07 - TEST08 - TEST09 - TEST10 - CANAL+SPORT360 - TEST11 - TEST12 - TEST13 - TEST15 - TEST16 - TEST17 - TEST03 - EUROSPORT 1 - KTO - RTL - USHUAIA TV - ARTE - DISCOVERY CHANNEL - CANAL+SPORT - CANAL+CINEMA.S - TEST04 - TV7 TUNISIE - AL JAZEERA ARABIC - ARIRANG TV - CANAL+KIDS - 8 MONT-BLANC - MEZZO LIVE - PLANETE+ - FRANCE 24 ARABE - CGTN DOCUMENTARY - CHAINE EVENEMENT - TEVA - PARIS PREMIERE - W9 - CANAL+ - FRANCE 24 - FRANCE 24 ENG - TF1 - M6 - OCS - EURONEWS - M6 MUSIC - SERIE CLUB - I24 NEWS - A LA UNE - TCM CINEMA - GOLF+ - BEIN SPORTS 1 - BEIN SPORTS 2 - CINE+ EMOTION - CINE+ FRISSON - EUROSPORT 2 - RMC LIFE - L'EQUIPE - MTV - CNEWS - CANAL+SERIES - J-ONE - PARAMOUNT NETWORK - 24H - CARTOON NETWORK - ANIMAUX - ACTION - RTL9 - ALGERIE 3 - CANAL ALGERIE - CSTAR - BEIN SPORTS 3 - NICKTOONS - TV5 MONDE - 6TER - CANAL J - TF1 SERIES FILMS - NOLLYWOOD TV - BOOMERANG - CINE+ CLASSIC - CINE+ FESTIVAL - CINE+ FAMILY - COMEDIE+ - DORCEL TV - DORCEL XXX - EQUIDIA - FRANCE 3 - FRANCE 4 - FRANCE 5 - EVENEMENT SPORT 4K HDR UHD - VIXEN - GULLI - HISTOIRE TV - INFOSPORT+ - LA CHAINE METEO - LCI - LCP - MCM - RFM TV - MEZZO - MULTISPORTS 1 - MULTISPORTS 2 - MULTISPORTS 3 - MULTISPORTS 4 - MULTISPORTS 5 - MULTISPORTS 6 - NRJ HITS - TFX - RMC STORY - CANAL+ - CANAL+SPORT - PINK X - PIWI+ - SEASONS - MELODY - TELETOON+ - TELETOON+1 - TIJI - TMC - TRACE URBAN - TV BREIZH - PLANETE+CRIME - PLANETE+AVENTURE - BBC NEWS - NICKELODEON - GAME ONE - NICKELODEON JUNIOR - RMC DECOUVERTE - BEIN SPORTS MAX 4 - BEIN SPORTS MAX 5 - BEIN SPORTS MAX 6 - BEIN SPORTS MAX 7 - CANAL+ - BEIN SPORTS MAX 8 - BEIN SPORTS MAX 9 - BEIN SPORTS MAX 10 - AB1 - AUTOMOTO LA CHAINE - MANGAS - XXL - TOUTE L'HISTOIRE - BET - ASTROCENTER TV - BFM TV - EUROSPORT 360 1 - EUROSPORT 360 2 - EUROSPORT 360 3 - EUROSPORT 360 4 - LL EVENT UHD - BFM BUSINESS - EUROSPORT 360 5 - EUROSPORT 360 6 - EUROSPORT 360 7 - EUROSPORT 360 8 - NHK WORLD-JAPAN - FRANCEINFO: - MAN X - AL JAZEERA ENG - MUSEUM - NICKELODEON+1 - CHASSE ET PECHE - CHAINE: 684 - POLAR+ - NOVELAS TV - WARNER TV - EURONEWS ALL - CANAL+ (CH) - EUROPE 2 POP TV - CHAINE: 724 - EVENEMENT SPORT 4K UHD - CANAL+ UHD - RMC SPORT 1 - RMC SPORT 2 - TEST14 - CANAL 9 - RTS 1 - RTS 2 - CANAL ALPHA NE - LA TELE - LEMAN BLEU - TELEBIELINGUE - RSI 1 - RSI 2 - SRF 1 - SRF 2 - 3 SAT - ARD DAS ERSTE - ORF 1 - TRACE LATINA - COMEDY CENTRAL - OLYMPIA TV - CANAL+PREMIER LEAGUE - MGG TV - CANAL+ (CH) - CANAL+ CINEMA.S (CH) - OCS (CH) - CINE+ FRISSON (CH) - CSTAR (CH) - A+ - A+ IVOIRE - NOLLYWOOD TV EPIC - EURONEWS ITALIE - EVENEMENT SPORT UHD HDR - CANAL+ SPORT (CH) - CANAL+ UHD (CH) - TEST01 - TEST02 - CARAC1 - CARAC3 - CARAC2 - BLUE ZOOM - CANAL+DOCS - CANAL+GRAND ECRAN - F3 PICARDIE - F3 FRANCHE COMTE - F3 AQUITAINE - F3 NORMANDIE B - F3 AUVERGNE - F3 BOURGOGNE - F3 ALPES - F3 NORD - F3 LIMOUSIN - F3 RHONE ALPES - F3 PROVENCE ALPES - F3 LANGUEDOCROUS - F3 LORRAINE - F3 PAYS DE LA LOIRE - F3 COTE D'AZUR - F3 CENTRE - F3 PARIS IDF - F3 POITOU CHARENT - F3 CHAMP ARDENNE - F3 BRETAGNE - F3 NORMANDIE H - F3 ALSACE - F3 MIDI PYRENEES - F3 CORSEVIASTELLA - CHAINE : 970 - CHAINE : 971 - CHAINE : 972 - CHAINE : 973 - CHAINE : 974 - CHAINE : 975 - F3 NOA - CANAL+ MODE EVENT - CANAL+FOOT - CANAL+SPORT360 - CANAL+SPORT 360 (CH) - MULTISPORTS 7 - CANAL+GRAND ECRAN (CH) - CHAINE: 1067 - CHAINE: 1068 - CHAINE: 1069 - CHAINE: 1070 - CHAINE: 1071 - CANAL+BOX OFFICE - CANAL+BOX OFFICE (CH) - TV MONACO - DAZN 1 - CANAL+BOX OFFICE UHD - SPORT EN FRANCE - UNIONTV - RAI 1 - RELIN1 - RELIN2 - RELIN3 - RELIN4 - RELIN5 - RELIN6 - RELIN7 - RELIN8 - FRANCE TV SERIES - FRANCE 2 UHD HDR - WARNER TV NEXT - CARTOONITO - TLC - DISCOVERY INVESTIGATION - CANAL+FOOT (CH) - LE FIGARO TV - CINE+ EMOTION (CH) - CINE+ FAMILY (CH) - EUROSPORT 360 9 - EUROSPORT 360 10 - EUROSPORT 360 11 - EUROSPORT 360 12 - EUROSPORT 360 13 - EUROSPORT 360 14 - EUROSPORT 360 15 - EUROSPORT 360 16 - EUROSPORT 360 17 - EUROSPORT 360 18 - EUROSPORT 360 19 - EUROSPORT 360 20 - EUROSPORT 360 21 - EUROSPORT 360 22 - EUROSPORT 360 23 - EUROSPORT 360 24 - EUROSPORT 360 25 - EUROSPORT 360 26 - EUROSPORT 360 27 - EUROSPORT 360 28 - EUROSPORT 360 29 - EUROSPORT 360 30 - EUROSPORT 360 31 - EUROSPORT 360 32 - CANAL+LIVE 1 - CANAL+LIVE 2 - CANAL+LIVE 3 - CANAL+LIVE 4 - CANAL+LIVE 5 - CANAL+LIVE 6 - CANAL+LIVE 7 - CANAL+LIVE 8 - CANAL+LIVE 9 - CANAL+LIVE 10 - CANAL+LIVE 11 - CANAL+LIVE 12 - CANAL+LIVE 13 - CANAL+LIVE 14 - CANAL+LIVE 15 - CANAL+LIVE 16 - CANAL+LIVE 17 - CANAL+LIVE 18 - CANAL+LIVE 19 - CANAL+ UHD HDR - DAZN 2 - DAZN 3 - DAZN 4 - DAZN 5 - FRANCE TV DOCS - CANAL+ - T18 - NOVO19 - CINE+ FESTIVAL (CH) - CNEWS PRIME - EUROPE 1 TV - LIGUE 1+ 3 - LIGUE 1+ 4 - LIGUE 1+ 5 - MIEUX - CHEVAL TV - SUNU YEUF - PULAAGU - MANDEKA - MABOKE TV - ECHOROUK NEWS - ECHOROUK TV - NESSMA TV - SAMIRA TV - EL HIWAR ETTOUNSI - SKYNEWS ARABIA - MBC 5 - MBC DRAMA - ROTANA CINEMA FR - ROTANA CINEMA - ROTANA KIDS - A+ BENIN - Chaine: 1199 - Chaine: 1200 - Chaine: 1201 - CGTN FRANCAIS - ARTE ALLEMAND + 13EME RUE + GLOBAL AFRICA + AB1 + ZACU TV + AFRICA 24 INFINITY + ARTE France + BBC NEWS + AFRICA 24 SPORT + CRTV + W-SPORT + AFRICA 24 ENGLISH + LERAL TV + CANAL+ CINEMA OUEST + RTG2 + CANAL+ PREMIERE OUEST + KABACK TV + INFO TV + CAM10 + DBS + BOSOLO TV + RTCE + MALAIKA TV + HK6 + HERITAGE TV + E! + Bukedde TV + EURONEWS + FRANCE 3 + FRANCE 5 + SINEMA ZETU + CNEWS + LCI + France 2 INT + MANGAS + RTB ZENITH + HOPE TV + RTNK + MEZZO + HOREB TV + MTV France + TFX + KTN + ORTM1 + PLANETE+ + PLANETE+ AVENTURE + A+ BENIN + RTS + SYFY + TCHAD INFOS + SERIE CLUB + MTV LEBANON + PITCHOUN AFRICA + AFRIKINFO TV + EVANGILE TV + REFLET TV + TOUBA TV + TELEMUSIK SENEGAL + MOURCHID TV + TELE-ECOLE + AL MOURIDIYYAH TV + MALIKIA TV + CANAL EDUCATION + FULBE + TF1 + KAYES TV + TIJI + TMC + SEGOU TV + SUNNA TV SAVANA + GO TV + HUSTLER HD + TROPIC TV + TV5 MONDE (Afrique) + EDEN TV + XXL + TENERE + LABARI + GALAXIE TELE + FRANCE 24 + BALAFON TV + TAMBARIN HAUSA TV + DASH TV + BETV + HTV BURUNDI + TPMP + RTB + 2STV + ISIBO TV + CANAL+ SPORT 2 + CANAL+ CINEMA CENTRE + CHINGUIT TV + ELWATANIYA TV + PIWI+ + CANAL+ PREMIERE CENTRE + GAME ONE + USHUAÏA TV + EDUC TV + PLANETE+ CRIME + CANAL+ FAMILY CENTRE + TCHAD 24 + MTV HITS + TELETOON+ + CANAL+ SPORT 3 + DORCEL TV + HISTOIRE TV + RATELKI + AFRICABLE + AFRICA 24 + EQUINOXE TV + RTI 1 + CANAL 2 INTER + LIPTAKO TV + TRACE Urban Afrique + GABON 1ERE + 7TV + STV + VOX AFRICA + RTG + TELE CONGO + BENIN TV HD + RTNC + PRIVATE TV + WILDEARTH + TPT+ + TRACE AFRICA AFRIQUE + VOIR+ + CSTAR + CANAL EVENEMENT EASY + TOUMAI TV + TFM + TELE AFRICA + SENSATION TV + SARAOUNIA TV + RTL9 HD + ACTION HD + CANAL EVENEMENT AFRIQUE + NICKELODEON GLOBAL + NOVELAS TV HD (RDC) + RWANDA TV + MANDEKA HD + PULAAGU HD + LA GUINEE FE HD + BLOOMBERG ORIGINALS + EDUCA TV + M7 + RTB 3 + TV AL HOUDA + JES TV + SUNNA TV ZARMA + TAURARUWA + FOR YOU TV + MELODY D'AFRIQUE + TRACE MBOA + SUN+ TV + TV+ AFRIQUE + LPC + NOLLYWOOD TV + RTI2 + TV TOGO + B-ONE + TELE SAHEL + TV TCHAD + MAAJABU TV + AL JAZEERA + KTO + IQRAA + RTGA + CONGO 26 + ISHUSHO TV + MRTV + SHIF TV + GC7 + GC2 + GC6 + ESPERANCE TV + BUJA TV + AL JAZEERA ENG + BET ENG + UNIVERSAL + GC1 + SHADOW TV + CANAL+ ELLES + PARAMOUNT NETWORK + SS FOOTBALL PLUS HD + SS FOOTBALL HD + INFOSPORT+ + NHK WORLD TV + CGTN-FRANCAIS + SPORT EN FRANCE + PASSION BOLLYWOOD + C+ KIDS + CAVI MEDIAS + WEST AFRICA TV + FRANCE 24 EN + GTV + GULLI BIL ARABI + 2M + BNEWS + ANTENNE A + LMTV + CARREFOUR + BENIE TV + TV10 + BBLACK AFRICA + TELE FONTAINE VIE + CNN + TLC + CARTOON NETWORK + CARTOONITO + BOOMERANG + DISCOVERY CHANNEL + A+ + RTB ZENITH dupli + BF1 TV + RTB 3 dupli + TVCA + RTB dupli + TOZALI TV + LUMEN CHRISTI + PRC + JESUS 24 TV + SUNNA TV + CH3 + CH4 + PARLEMENT TV + NCA + DISCOVERY INVESTIGATION + LUTTE TV + PYRAMIDE TV + TV2 + BCN TV + BRIK TV + AL NASSR + GULLI AFRICA + NOVELAS TV + PACIS TV + MY MEDIA PRIME + SCIENCE ET VIE TV + ENGLISH CLUB TV + FASHION AFRICA TV + SEN TV + ASONGA TV + DIGITAL CONGO + TELE 50 + DRTV + TV MAURITANIE + IMPACT TV + ELECTRON TV + VISION 4 + BUSINESS 24 + CANAL+ SPORT 4 + CANAL+ SPORT 5 + ZEE MAGIC + ORTM2 + EVASION TV + RTD + CANAL+ FAMILY OUEST + ONE TV + SSM TV + MCR TV + OMEGA TV + AFRICANEWS + E-TELEVISION + ESPACE TV + GABON 24 + NYOTA + TELE 24 + TGB + JOLIBA + TIVI5 MONDE + CANAL 3 BENIN + NBA TV + BURKINA INFO + VOX TV + AUTOMOTO + TREK + J-ONE + BANTAMBA TV + TRACE MZIKI + CNBC AFRICA + WALF TV + LTM + MEDI1 TV + CH1 + IVOIRE TV Music + UNIVERS TV + MIRACLE TV+ + MANDE TV + NOLLYWOOD EPIC + CIS TV + ASFIYAHI + TF1 SERIES FILMS + MSI TV + TRACE GOSPEL + TRACE KITOKO + 3TV + CANAL+ SPORT 1 + CANAL+ ACTION CENTRE + MISHAPI + CANAL+ POP + LUX TV + KALAC TV + NIETA TV + CANAL+ ACTION OUEST + PENTHOUSE BLACK + SAVANE TV + MOLIERE TV + RTS 2 + CRTV NEWS + CHERIFLA TV + MUSEUM TV + CANAL 2 MOVIES + EMCI + CH2 + A+ IVOIRE Antenne + VISION 4 RCA + AREWA 24 + SAHARA TV + DORCEL TV AFRICA + SUNU YEUF + CUISINES + M6 INTERNATIONAL + TRACE TERANGA + NCI + RTNB + CRTV SPORT + GC4 + ITV + TM1 + TOUTE L HISTOIRE + PSTV + FARIN WATA + KC2 + TV1 + TV O + FLASH TV + ISANGO STAR TV + GENESIS TV + BTN TV + CARTOON NETWORK Africa SA + TNT Africa + ANIMAUX + CRIME DISTRICT + LA3 + LIFE TV + TV7 + CVK + CDIRECT + ALBAYANE + LCA + RENOUVEAU TV + RTDS + E! ENG + TELEMUNDO + AFRICA MAGIC EPIC + ZEE WORLD + NICKELODEON ENG + NICKELODEON JR ENG + AFRICA MAGIC SHOWCASE + MNET MOVIES 3 + MNET MOVIES 4 + DISCOVER CHANNEL ENG + SS EPL + SS LA LIGA + CANAL 3 BURKINA + VOIR+ COTE D IVOIRE + SUD 1ERE + 7INFO + GABON CULTURE + BLOOMBERG TV + LAMP FALL TV + ALAFIA TV + TVC + DOUNIA + BONFEREY + SUNNA TV + TVGE + CAPITAL SANTE TV + MIKUBA TV + LUDIKIDS OI + VIXEN + NICKELODEON JR + NATHAN+ + NOVELAS (Cameroun) + MADI TV + MABOKE TV + ECCLESIA TV + SOS DOCTEUR TV + CANAL+ DOCS diff --git a/sites/canalplus.com/canalplus.com_bf.channels.xml b/sites/canalplus.com/canalplus.com_bf.channels.xml index d60f8f98a..fc9fc3e3e 100644 --- a/sites/canalplus.com/canalplus.com_bf.channels.xml +++ b/sites/canalplus.com/canalplus.com_bf.channels.xml @@ -22,6 +22,7 @@ BOSOLO TV RTCE MALAIKA TV + HK6 HERITAGE TV E! Bukedde TV @@ -34,6 +35,8 @@ France 2 INT MANGAS RTB ZENITH + HOPE TV + RTNK MEZZO HOREB TV MTV France @@ -52,12 +55,13 @@ AFRIKINFO TV EVANGILE TV REFLET TV - TRACE CHRISTMAS TOUBA TV TELEMUSIK SENEGAL MOURCHID TV + TELE-ECOLE AL MOURIDIYYAH TV MALIKIA TV + CANAL EDUCATION FULBE TF1 KAYES TV @@ -65,7 +69,6 @@ TMC SEGOU TV SUNNA TV SAVANA - CANAL+ CAN GO TV HUSTLER HD TROPIC TV @@ -77,9 +80,11 @@ GALAXIE TELE FRANCE 24 BALAFON TV + TAMBARIN HAUSA TV DASH TV BETV HTV BURUNDI + TPMP RTB 2STV ISIBO TV @@ -116,8 +121,8 @@ TELE CONGO BENIN TV HD RTNC - CANAL+ CAN IVOIRE PRIVATE TV + WILDEARTH TPT+ TRACE AFRICA AFRIQUE VOIR+ @@ -142,6 +147,7 @@ M7 RTB 3 TV AL HOUDA + JES TV SUNNA TV ZARMA TAURARUWA FOR YOU TV @@ -149,6 +155,7 @@ TRACE MBOA SUN+ TV TV+ AFRIQUE + LPC NOLLYWOOD TV RTI2 TV TOGO @@ -163,18 +170,18 @@ CONGO 26 ISHUSHO TV MRTV - CHIF TV + SHIF TV GC7 GC2 GC6 ESPERANCE TV BUJA TV AL JAZEERA ENG - BET (ENG) + BET ENG UNIVERSAL GC1 SHADOW TV - C+ MAGIC + CANAL+ ELLES PARAMOUNT NETWORK SS FOOTBALL PLUS HD SS FOOTBALL HD @@ -199,6 +206,7 @@ BBLACK AFRICA TELE FONTAINE VIE CNN + TLC CARTOON NETWORK CARTOONITO BOOMERANG @@ -209,9 +217,11 @@ RTB 3 dupli TVCA RTB dupli + TOZALI TV LUMEN CHRISTI PRC JESUS 24 TV + SUNNA TV CH3 CH4 PARLEMENT TV @@ -223,30 +233,17 @@ BCN TV BRIK TV AL NASSR - BENIN TV ALAFIA - ACTIVATION NETFLIX - DNTV - AFRICA MAGIC HAUSA - AFRICA MAGIC YORUBA - MAISHA MAGIC EAST - MAISHA MAGIC PLUS - TEST AFRIQUE - MIEUX - EUROPE 2 POP TV GULLI AFRICA NOVELAS TV - TRACE IVOIRE PACIS TV MY MEDIA PRIME SCIENCE ET VIE TV ENGLISH CLUB TV - ZEE ALWAN FASHION AFRICA TV SEN TV ASONGA TV DIGITAL CONGO TELE 50 - SS WWE DRTV TV MAURITANIE IMPACT TV @@ -255,24 +252,15 @@ BUSINESS 24 CANAL+ SPORT 4 CANAL+ SPORT 5 - VOIR+ RDC ZEE MAGIC ORTM2 EVASION TV RTD - GOLF+ HD - LOVE NATURE CANAL+ FAMILY OUEST ONE TV - CNEWS PRIME - EUROPE 1 TV - AES TV HD - MAISHA MAGIC BONGO - NATIONAL GEOGRAPHIC ENG - STUDIO UNIVERSAL SSM TV MCR TV - SUPERSPORT ACTION + OMEGA TV AFRICANEWS E-TELEVISION ESPACE TV @@ -290,11 +278,12 @@ TREK J-ONE BANTAMBA TV + TRACE MZIKI CNBC AFRICA WALF TV LTM MEDI1 TV - CNEWS PRIME + CH1 IVOIRE TV Music UNIVERS TV MIRACLE TV+ @@ -324,7 +313,7 @@ MUSEUM TV CANAL 2 MOVIES EMCI - EUROPE 1 TV + CH2 A+ IVOIRE Antenne VISION 4 RCA AREWA 24 @@ -342,11 +331,13 @@ TM1 TOUTE L HISTOIRE PSTV + FARIN WATA KC2 TV1 TV O FLASH TV ISANGO STAR TV + GENESIS TV BTN TV CARTOON NETWORK Africa SA TNT Africa @@ -361,7 +352,7 @@ LCA RENOUVEAU TV RTDS - BRAVO ENG + E! ENG TELEMUNDO AFRICA MAGIC EPIC ZEE WORLD @@ -370,7 +361,7 @@ AFRICA MAGIC SHOWCASE MNET MOVIES 3 MNET MOVIES 4 - DISCOVERY CHANNEL ENG + DISCOVER CHANNEL ENG SS EPL SS LA LIGA CANAL 3 BURKINA @@ -384,7 +375,9 @@ TVC DOUNIA BONFEREY + SUNNA TV TVGE + CAPITAL SANTE TV MIKUBA TV LUDIKIDS OI VIXEN diff --git a/sites/canalplus.com/canalplus.com_bi.channels.xml b/sites/canalplus.com/canalplus.com_bi.channels.xml index f9e289012..fbfe4aad4 100644 --- a/sites/canalplus.com/canalplus.com_bi.channels.xml +++ b/sites/canalplus.com/canalplus.com_bi.channels.xml @@ -22,6 +22,7 @@ BOSOLO TV RTCE MALAIKA TV + HK6 HERITAGE TV E! Bukedde TV @@ -34,6 +35,8 @@ France 2 INT MANGAS RTB ZENITH + HOPE TV + RTNK MEZZO HOREB TV MTV France @@ -52,12 +55,13 @@ AFRIKINFO TV EVANGILE TV REFLET TV - TRACE CHRISTMAS TOUBA TV TELEMUSIK SENEGAL MOURCHID TV + TELE-ECOLE AL MOURIDIYYAH TV MALIKIA TV + CANAL EDUCATION FULBE TF1 KAYES TV @@ -65,7 +69,6 @@ TMC SEGOU TV SUNNA TV SAVANA - CANAL+ CAN GO TV HUSTLER HD TROPIC TV @@ -77,9 +80,11 @@ GALAXIE TELE FRANCE 24 BALAFON TV + TAMBARIN HAUSA TV DASH TV BETV HTV BURUNDI + TPMP RTB 2STV ISIBO TV @@ -116,8 +121,8 @@ TELE CONGO BENIN TV HD RTNC - CANAL+ CAN IVOIRE PRIVATE TV + WILDEARTH TPT+ TRACE AFRICA AFRIQUE VOIR+ @@ -142,6 +147,7 @@ M7 RTB 3 TV AL HOUDA + JES TV SUNNA TV ZARMA TAURARUWA FOR YOU TV @@ -149,6 +155,7 @@ TRACE MBOA SUN+ TV TV+ AFRIQUE + LPC NOLLYWOOD TV RTI2 TV TOGO @@ -163,18 +170,18 @@ CONGO 26 ISHUSHO TV MRTV - CHIF TV + SHIF TV GC7 GC2 GC6 ESPERANCE TV BUJA TV AL JAZEERA ENG - BET (ENG) + BET ENG UNIVERSAL GC1 SHADOW TV - C+ MAGIC + CANAL+ ELLES PARAMOUNT NETWORK SS FOOTBALL PLUS HD SS FOOTBALL HD @@ -199,6 +206,7 @@ BBLACK AFRICA TELE FONTAINE VIE CNN + TLC CARTOON NETWORK CARTOONITO BOOMERANG @@ -209,9 +217,11 @@ RTB 3 dupli TVCA RTB dupli + TOZALI TV LUMEN CHRISTI PRC JESUS 24 TV + SUNNA TV CH3 CH4 PARLEMENT TV @@ -223,30 +233,17 @@ BCN TV BRIK TV AL NASSR - BENIN TV ALAFIA - ACTIVATION NETFLIX - DNTV - AFRICA MAGIC HAUSA - AFRICA MAGIC YORUBA - MAISHA MAGIC EAST - MAISHA MAGIC PLUS - TEST AFRIQUE - MIEUX - EUROPE 2 POP TV GULLI AFRICA NOVELAS TV - TRACE IVOIRE PACIS TV MY MEDIA PRIME SCIENCE ET VIE TV ENGLISH CLUB TV - ZEE ALWAN FASHION AFRICA TV SEN TV ASONGA TV DIGITAL CONGO TELE 50 - SS WWE DRTV TV MAURITANIE IMPACT TV @@ -255,24 +252,15 @@ BUSINESS 24 CANAL+ SPORT 4 CANAL+ SPORT 5 - VOIR+ RDC ZEE MAGIC ORTM2 EVASION TV RTD - GOLF+ HD - LOVE NATURE CANAL+ FAMILY OUEST ONE TV - CNEWS PRIME - EUROPE 1 TV - AES TV HD - MAISHA MAGIC BONGO - NATIONAL GEOGRAPHIC ENG - STUDIO UNIVERSAL SSM TV MCR TV - SUPERSPORT ACTION + OMEGA TV AFRICANEWS E-TELEVISION ESPACE TV @@ -290,11 +278,12 @@ TREK J-ONE BANTAMBA TV + TRACE MZIKI CNBC AFRICA WALF TV LTM MEDI1 TV - CNEWS PRIME + CH1 IVOIRE TV Music UNIVERS TV MIRACLE TV+ @@ -324,7 +313,7 @@ MUSEUM TV CANAL 2 MOVIES EMCI - EUROPE 1 TV + CH2 A+ IVOIRE Antenne VISION 4 RCA AREWA 24 @@ -342,11 +331,13 @@ TM1 TOUTE L HISTOIRE PSTV + FARIN WATA KC2 TV1 TV O FLASH TV ISANGO STAR TV + GENESIS TV BTN TV CARTOON NETWORK Africa SA TNT Africa @@ -361,7 +352,7 @@ LCA RENOUVEAU TV RTDS - BRAVO ENG + E! ENG TELEMUNDO AFRICA MAGIC EPIC ZEE WORLD @@ -370,7 +361,7 @@ AFRICA MAGIC SHOWCASE MNET MOVIES 3 MNET MOVIES 4 - DISCOVERY CHANNEL ENG + DISCOVER CHANNEL ENG SS EPL SS LA LIGA CANAL 3 BURKINA @@ -384,7 +375,9 @@ TVC DOUNIA BONFEREY + SUNNA TV TVGE + CAPITAL SANTE TV MIKUBA TV LUDIKIDS OI VIXEN diff --git a/sites/canalplus.com/canalplus.com_bj.channels.xml b/sites/canalplus.com/canalplus.com_bj.channels.xml index 475cd591c..830da66fc 100644 --- a/sites/canalplus.com/canalplus.com_bj.channels.xml +++ b/sites/canalplus.com/canalplus.com_bj.channels.xml @@ -22,6 +22,7 @@ BOSOLO TV RTCE MALAIKA TV + HK6 HERITAGE TV E! Bukedde TV @@ -34,6 +35,8 @@ France 2 INT MANGAS RTB ZENITH + HOPE TV + RTNK MEZZO HOREB TV MTV France @@ -52,12 +55,13 @@ AFRIKINFO TV EVANGILE TV REFLET TV - TRACE CHRISTMAS TOUBA TV TELEMUSIK SENEGAL MOURCHID TV + TELE-ECOLE AL MOURIDIYYAH TV MALIKIA TV + CANAL EDUCATION FULBE TF1 KAYES TV @@ -65,7 +69,6 @@ TMC SEGOU TV SUNNA TV SAVANA - CANAL+ CAN GO TV HUSTLER HD TROPIC TV @@ -77,9 +80,11 @@ GALAXIE TELE FRANCE 24 BALAFON TV + TAMBARIN HAUSA TV DASH TV BETV HTV BURUNDI + TPMP RTB 2STV ISIBO TV @@ -116,8 +121,8 @@ TELE CONGO BENIN TV HD RTNC - CANAL+ CAN IVOIRE PRIVATE TV + WILDEARTH TPT+ TRACE AFRICA AFRIQUE VOIR+ @@ -142,6 +147,7 @@ M7 RTB 3 TV AL HOUDA + JES TV SUNNA TV ZARMA TAURARUWA FOR YOU TV @@ -149,6 +155,7 @@ TRACE MBOA SUN+ TV TV+ AFRIQUE + LPC NOLLYWOOD TV RTI2 TV TOGO @@ -163,18 +170,18 @@ CONGO 26 ISHUSHO TV MRTV - CHIF TV + SHIF TV GC7 GC2 GC6 ESPERANCE TV BUJA TV AL JAZEERA ENG - BET (ENG) + BET ENG UNIVERSAL GC1 SHADOW TV - C+ MAGIC + CANAL+ ELLES PARAMOUNT NETWORK SS FOOTBALL PLUS HD SS FOOTBALL HD @@ -199,6 +206,7 @@ BBLACK AFRICA TELE FONTAINE VIE CNN + TLC CARTOON NETWORK CARTOONITO BOOMERANG @@ -209,9 +217,11 @@ RTB 3 dupli TVCA RTB dupli + TOZALI TV LUMEN CHRISTI PRC JESUS 24 TV + SUNNA TV CH3 CH4 PARLEMENT TV @@ -223,30 +233,17 @@ BCN TV BRIK TV AL NASSR - BENIN TV ALAFIA - ACTIVATION NETFLIX - DNTV - AFRICA MAGIC HAUSA - AFRICA MAGIC YORUBA - MAISHA MAGIC EAST - MAISHA MAGIC PLUS - TEST AFRIQUE - MIEUX - EUROPE 2 POP TV GULLI AFRICA NOVELAS TV - TRACE IVOIRE PACIS TV MY MEDIA PRIME SCIENCE ET VIE TV ENGLISH CLUB TV - ZEE ALWAN FASHION AFRICA TV SEN TV ASONGA TV DIGITAL CONGO TELE 50 - SS WWE DRTV TV MAURITANIE IMPACT TV @@ -255,24 +252,15 @@ BUSINESS 24 CANAL+ SPORT 4 CANAL+ SPORT 5 - VOIR+ RDC ZEE MAGIC ORTM2 EVASION TV RTD - GOLF+ HD - LOVE NATURE CANAL+ FAMILY OUEST ONE TV - CNEWS PRIME - EUROPE 1 TV - AES TV HD - MAISHA MAGIC BONGO - NATIONAL GEOGRAPHIC ENG - STUDIO UNIVERSAL SSM TV MCR TV - SUPERSPORT ACTION + OMEGA TV AFRICANEWS E-TELEVISION ESPACE TV @@ -290,11 +278,12 @@ TREK J-ONE BANTAMBA TV + TRACE MZIKI CNBC AFRICA WALF TV LTM MEDI1 TV - CNEWS PRIME + CH1 IVOIRE TV Music UNIVERS TV MIRACLE TV+ @@ -324,7 +313,7 @@ MUSEUM TV CANAL 2 MOVIES EMCI - EUROPE 1 TV + CH2 A+ IVOIRE Antenne VISION 4 RCA AREWA 24 @@ -342,11 +331,13 @@ TM1 TOUTE L HISTOIRE PSTV + FARIN WATA KC2 TV1 TV O FLASH TV ISANGO STAR TV + GENESIS TV BTN TV CARTOON NETWORK Africa SA TNT Africa @@ -361,7 +352,7 @@ LCA RENOUVEAU TV RTDS - BRAVO ENG + E! ENG TELEMUNDO AFRICA MAGIC EPIC ZEE WORLD @@ -370,7 +361,7 @@ AFRICA MAGIC SHOWCASE MNET MOVIES 3 MNET MOVIES 4 - DISCOVERY CHANNEL ENG + DISCOVER CHANNEL ENG SS EPL SS LA LIGA CANAL 3 BURKINA @@ -384,7 +375,9 @@ TVC DOUNIA BONFEREY + SUNNA TV TVGE + CAPITAL SANTE TV MIKUBA TV LUDIKIDS OI VIXEN diff --git a/sites/canalplus.com/canalplus.com_bl.channels.xml b/sites/canalplus.com/canalplus.com_bl.channels.xml index 3e1edc708..de2e6c590 100644 --- a/sites/canalplus.com/canalplus.com_bl.channels.xml +++ b/sites/canalplus.com/canalplus.com_bl.channels.xml @@ -10,39 +10,34 @@ PUNCH TV CANAL J CANAL+ HD - CANAL+ CINEMA(S) HD - CNEWS PRIME - EUROPE 1 TV + CANAL+ CINEMA(S) + DAZN 1 + DAZN 2 DAZN 3 DAZN 4 DAZN 5 CNN - CANAL+SPORT HD + CANAL+ SPORT HD EMCI - CINE+FESTIVAL - CINE+EMOTION - CINE+FAMILY - CINE+FRISSON HD + CINE+ FESTIVAL + CINE+ EMOTION + CINE+ FAMILY + CINE+ FRISSON HD OCS HD EVANGILE TV MANGAS - T18 COMEDIE+ - NOVO19 E! ENTERTAINMENT - EQUIDIA HD + EQUIDIA LIVE ESPN - MIEUX - EUROPE 2 POP TV EUROSPORT 1 HD EUROSPORT 2 HD - RADIO TELE ECLAIR FRANCE 3 FRANCE 5 CNEWS INFOSPORT+ LCI - LCP + LCP ASSEMBLEE NATIONALE L'EQUIPE M6 HD MTV France @@ -66,9 +61,10 @@ XXL FRANCE 24 BEIN SPORTS 1 HD + TPMP PIWI+ GAME ONE - USHUAIA TVHD + USHUAÏA TV W9 PLANETE+ CRIME GULLI @@ -82,6 +78,7 @@ FRANCE 2 FRANCE 4 KMT + NRJ 12 CSTAR NICKELODEON TV GLOBO @@ -99,25 +96,25 @@ HUSTLER TV Métropole CANAL+ SERIES HD - CINE+CLASSIC + CINE + CLASSIC BEIN SPORTS 3 HD - C+SPORT AYITI 1 HD - C+SPORT AYITI 2 + CANAL+ SPORT AYITI 1 + HAITI SPORT 2 HBO HBO Family HBO XTREME ENGLISH CLUB TV - CANAL+KIDS HD + CANAL+ KIDS HD GOLF+ A+ NOLLYWOOD TV france CANAL SONY TV CARAIBES - RMC LIFE + CHERIE 25 CARTOON NETWORK BOOMERANG - CANAL+SPORT360 HD - CANAL+FOOT HD + CANAL+ SPORT 360 + CANAL+ FOOT NOVELAS TV BBLACK CARIBBEAN BEIN SPORTS MAX 4 @@ -148,7 +145,7 @@ TELEMUNDO TOUTE L HISTOIRE OLYMPIA TV - CANAL+PREMIER LEAGUE + CANAL+ PREMIER LEAGUE EVENEMENT 4K ZITATA TV LUDIKIDS OI @@ -156,7 +153,7 @@ TELE SOLEIL GRAPHE TV NICKELODEON JR - STUDIOCANAL TV + STUDIOCANAL NATHAN+ TROTTERS TV FUSION TV @@ -164,10 +161,11 @@ BFM TV BFM BUSINESS RMC STORY - CANAL+AYITI HD + CANAL+ AYITI CANAL EVENEMENT CARA SPORT EN FRANCE - CANAL+DOCS + CANAL+ DOCS + TRAVEL XP CHEVAL TV MEZZO LIVE RMC DECOUVERTE diff --git a/sites/canalplus.com/canalplus.com_cd.channels.xml b/sites/canalplus.com/canalplus.com_cd.channels.xml index 483934bed..040f18051 100644 --- a/sites/canalplus.com/canalplus.com_cd.channels.xml +++ b/sites/canalplus.com/canalplus.com_cd.channels.xml @@ -22,6 +22,7 @@ BOSOLO TV RTCE MALAIKA TV + HK6 HERITAGE TV E! Bukedde TV @@ -34,6 +35,8 @@ France 2 INT MANGAS RTB ZENITH + HOPE TV + RTNK MEZZO HOREB TV MTV France @@ -52,12 +55,13 @@ AFRIKINFO TV EVANGILE TV REFLET TV - TRACE CHRISTMAS TOUBA TV TELEMUSIK SENEGAL MOURCHID TV + TELE-ECOLE AL MOURIDIYYAH TV MALIKIA TV + CANAL EDUCATION FULBE TF1 KAYES TV @@ -65,7 +69,6 @@ TMC SEGOU TV SUNNA TV SAVANA - CANAL+ CAN GO TV HUSTLER HD TROPIC TV @@ -77,9 +80,11 @@ GALAXIE TELE FRANCE 24 BALAFON TV + TAMBARIN HAUSA TV DASH TV BETV HTV BURUNDI + TPMP RTB 2STV ISIBO TV @@ -116,8 +121,8 @@ TELE CONGO BENIN TV HD RTNC - CANAL+ CAN IVOIRE PRIVATE TV + WILDEARTH TPT+ TRACE AFRICA AFRIQUE VOIR+ @@ -142,6 +147,7 @@ M7 RTB 3 TV AL HOUDA + JES TV SUNNA TV ZARMA TAURARUWA FOR YOU TV @@ -149,6 +155,7 @@ TRACE MBOA SUN+ TV TV+ AFRIQUE + LPC NOLLYWOOD TV RTI2 TV TOGO @@ -163,18 +170,18 @@ CONGO 26 ISHUSHO TV MRTV - CHIF TV + SHIF TV GC7 GC2 GC6 ESPERANCE TV BUJA TV AL JAZEERA ENG - BET (ENG) + BET ENG UNIVERSAL GC1 SHADOW TV - C+ MAGIC + CANAL+ ELLES PARAMOUNT NETWORK SS FOOTBALL PLUS HD SS FOOTBALL HD @@ -199,6 +206,7 @@ BBLACK AFRICA TELE FONTAINE VIE CNN + TLC CARTOON NETWORK CARTOONITO BOOMERANG @@ -209,9 +217,11 @@ RTB 3 dupli TVCA RTB dupli + TOZALI TV LUMEN CHRISTI PRC JESUS 24 TV + SUNNA TV CH3 CH4 PARLEMENT TV @@ -223,30 +233,17 @@ BCN TV BRIK TV AL NASSR - BENIN TV ALAFIA - ACTIVATION NETFLIX - DNTV - AFRICA MAGIC HAUSA - AFRICA MAGIC YORUBA - MAISHA MAGIC EAST - MAISHA MAGIC PLUS - TEST AFRIQUE - MIEUX - EUROPE 2 POP TV GULLI AFRICA NOVELAS TV - TRACE IVOIRE PACIS TV MY MEDIA PRIME SCIENCE ET VIE TV ENGLISH CLUB TV - ZEE ALWAN FASHION AFRICA TV SEN TV ASONGA TV DIGITAL CONGO TELE 50 - SS WWE DRTV TV MAURITANIE IMPACT TV @@ -255,24 +252,15 @@ BUSINESS 24 CANAL+ SPORT 4 CANAL+ SPORT 5 - VOIR+ RDC ZEE MAGIC ORTM2 EVASION TV RTD - GOLF+ HD - LOVE NATURE CANAL+ FAMILY OUEST ONE TV - CNEWS PRIME - EUROPE 1 TV - AES TV HD - MAISHA MAGIC BONGO - NATIONAL GEOGRAPHIC ENG - STUDIO UNIVERSAL SSM TV MCR TV - SUPERSPORT ACTION + OMEGA TV AFRICANEWS E-TELEVISION ESPACE TV @@ -290,11 +278,12 @@ TREK J-ONE BANTAMBA TV + TRACE MZIKI CNBC AFRICA WALF TV LTM MEDI1 TV - CNEWS PRIME + CH1 IVOIRE TV Music UNIVERS TV MIRACLE TV+ @@ -324,7 +313,7 @@ MUSEUM TV CANAL 2 MOVIES EMCI - EUROPE 1 TV + CH2 A+ IVOIRE Antenne VISION 4 RCA AREWA 24 @@ -342,11 +331,13 @@ TM1 TOUTE L HISTOIRE PSTV + FARIN WATA KC2 TV1 TV O FLASH TV ISANGO STAR TV + GENESIS TV BTN TV CARTOON NETWORK Africa SA TNT Africa @@ -361,7 +352,7 @@ LCA RENOUVEAU TV RTDS - BRAVO ENG + E! ENG TELEMUNDO AFRICA MAGIC EPIC ZEE WORLD @@ -370,7 +361,7 @@ AFRICA MAGIC SHOWCASE MNET MOVIES 3 MNET MOVIES 4 - DISCOVERY CHANNEL ENG + DISCOVER CHANNEL ENG SS EPL SS LA LIGA CANAL 3 BURKINA @@ -384,7 +375,9 @@ TVC DOUNIA BONFEREY + SUNNA TV TVGE + CAPITAL SANTE TV MIKUBA TV LUDIKIDS OI VIXEN diff --git a/sites/canalplus.com/canalplus.com_cf.channels.xml b/sites/canalplus.com/canalplus.com_cf.channels.xml index 90e97f454..c85d338bd 100644 --- a/sites/canalplus.com/canalplus.com_cf.channels.xml +++ b/sites/canalplus.com/canalplus.com_cf.channels.xml @@ -22,6 +22,7 @@ BOSOLO TV RTCE MALAIKA TV + HK6 HERITAGE TV E! Bukedde TV @@ -34,6 +35,8 @@ France 2 INT MANGAS RTB ZENITH + HOPE TV + RTNK MEZZO HOREB TV MTV France @@ -52,12 +55,13 @@ AFRIKINFO TV EVANGILE TV REFLET TV - TRACE CHRISTMAS TOUBA TV TELEMUSIK SENEGAL MOURCHID TV + TELE-ECOLE AL MOURIDIYYAH TV MALIKIA TV + CANAL EDUCATION FULBE TF1 KAYES TV @@ -65,7 +69,6 @@ TMC SEGOU TV SUNNA TV SAVANA - CANAL+ CAN GO TV HUSTLER HD TROPIC TV @@ -77,9 +80,11 @@ GALAXIE TELE FRANCE 24 BALAFON TV + TAMBARIN HAUSA TV DASH TV BETV HTV BURUNDI + TPMP RTB 2STV ISIBO TV @@ -116,8 +121,8 @@ TELE CONGO BENIN TV HD RTNC - CANAL+ CAN IVOIRE PRIVATE TV + WILDEARTH TPT+ TRACE AFRICA AFRIQUE VOIR+ @@ -142,6 +147,7 @@ M7 RTB 3 TV AL HOUDA + JES TV SUNNA TV ZARMA TAURARUWA FOR YOU TV @@ -149,6 +155,7 @@ TRACE MBOA SUN+ TV TV+ AFRIQUE + LPC NOLLYWOOD TV RTI2 TV TOGO @@ -163,18 +170,18 @@ CONGO 26 ISHUSHO TV MRTV - CHIF TV + SHIF TV GC7 GC2 GC6 ESPERANCE TV BUJA TV AL JAZEERA ENG - BET (ENG) + BET ENG UNIVERSAL GC1 SHADOW TV - C+ MAGIC + CANAL+ ELLES PARAMOUNT NETWORK SS FOOTBALL PLUS HD SS FOOTBALL HD @@ -199,6 +206,7 @@ BBLACK AFRICA TELE FONTAINE VIE CNN + TLC CARTOON NETWORK CARTOONITO BOOMERANG @@ -209,9 +217,11 @@ RTB 3 dupli TVCA RTB dupli + TOZALI TV LUMEN CHRISTI PRC JESUS 24 TV + SUNNA TV CH3 CH4 PARLEMENT TV @@ -223,30 +233,17 @@ BCN TV BRIK TV AL NASSR - BENIN TV ALAFIA - ACTIVATION NETFLIX - DNTV - AFRICA MAGIC HAUSA - AFRICA MAGIC YORUBA - MAISHA MAGIC EAST - MAISHA MAGIC PLUS - TEST AFRIQUE - MIEUX - EUROPE 2 POP TV GULLI AFRICA NOVELAS TV - TRACE IVOIRE PACIS TV MY MEDIA PRIME SCIENCE ET VIE TV ENGLISH CLUB TV - ZEE ALWAN FASHION AFRICA TV SEN TV ASONGA TV DIGITAL CONGO TELE 50 - SS WWE DRTV TV MAURITANIE IMPACT TV @@ -255,24 +252,15 @@ BUSINESS 24 CANAL+ SPORT 4 CANAL+ SPORT 5 - VOIR+ RDC ZEE MAGIC ORTM2 EVASION TV RTD - GOLF+ HD - LOVE NATURE CANAL+ FAMILY OUEST ONE TV - CNEWS PRIME - EUROPE 1 TV - AES TV HD - MAISHA MAGIC BONGO - NATIONAL GEOGRAPHIC ENG - STUDIO UNIVERSAL SSM TV MCR TV - SUPERSPORT ACTION + OMEGA TV AFRICANEWS E-TELEVISION ESPACE TV @@ -290,11 +278,12 @@ TREK J-ONE BANTAMBA TV + TRACE MZIKI CNBC AFRICA WALF TV LTM MEDI1 TV - CNEWS PRIME + CH1 IVOIRE TV Music UNIVERS TV MIRACLE TV+ @@ -324,7 +313,7 @@ MUSEUM TV CANAL 2 MOVIES EMCI - EUROPE 1 TV + CH2 A+ IVOIRE Antenne VISION 4 RCA AREWA 24 @@ -342,11 +331,13 @@ TM1 TOUTE L HISTOIRE PSTV + FARIN WATA KC2 TV1 TV O FLASH TV ISANGO STAR TV + GENESIS TV BTN TV CARTOON NETWORK Africa SA TNT Africa @@ -361,7 +352,7 @@ LCA RENOUVEAU TV RTDS - BRAVO ENG + E! ENG TELEMUNDO AFRICA MAGIC EPIC ZEE WORLD @@ -370,7 +361,7 @@ AFRICA MAGIC SHOWCASE MNET MOVIES 3 MNET MOVIES 4 - DISCOVERY CHANNEL ENG + DISCOVER CHANNEL ENG SS EPL SS LA LIGA CANAL 3 BURKINA @@ -384,7 +375,9 @@ TVC DOUNIA BONFEREY + SUNNA TV TVGE + CAPITAL SANTE TV MIKUBA TV LUDIKIDS OI VIXEN diff --git a/sites/canalplus.com/canalplus.com_cg.channels.xml b/sites/canalplus.com/canalplus.com_cg.channels.xml index ac208819c..3997dba4d 100644 --- a/sites/canalplus.com/canalplus.com_cg.channels.xml +++ b/sites/canalplus.com/canalplus.com_cg.channels.xml @@ -22,6 +22,7 @@ BOSOLO TV RTCE MALAIKA TV + HK6 HERITAGE TV E! Bukedde TV @@ -34,6 +35,8 @@ France 2 INT MANGAS RTB ZENITH + HOPE TV + RTNK MEZZO HOREB TV MTV France @@ -52,12 +55,13 @@ AFRIKINFO TV EVANGILE TV REFLET TV - TRACE CHRISTMAS TOUBA TV TELEMUSIK SENEGAL MOURCHID TV + TELE-ECOLE AL MOURIDIYYAH TV MALIKIA TV + CANAL EDUCATION FULBE TF1 KAYES TV @@ -65,7 +69,6 @@ TMC SEGOU TV SUNNA TV SAVANA - CANAL+ CAN GO TV HUSTLER HD TROPIC TV @@ -77,9 +80,11 @@ GALAXIE TELE FRANCE 24 BALAFON TV + TAMBARIN HAUSA TV DASH TV BETV HTV BURUNDI + TPMP RTB 2STV ISIBO TV @@ -116,8 +121,8 @@ TELE CONGO BENIN TV HD RTNC - CANAL+ CAN IVOIRE PRIVATE TV + WILDEARTH TPT+ TRACE AFRICA AFRIQUE VOIR+ @@ -142,6 +147,7 @@ M7 RTB 3 TV AL HOUDA + JES TV SUNNA TV ZARMA TAURARUWA FOR YOU TV @@ -149,6 +155,7 @@ TRACE MBOA SUN+ TV TV+ AFRIQUE + LPC NOLLYWOOD TV RTI2 TV TOGO @@ -163,18 +170,18 @@ CONGO 26 ISHUSHO TV MRTV - CHIF TV + SHIF TV GC7 GC2 GC6 ESPERANCE TV BUJA TV AL JAZEERA ENG - BET (ENG) + BET ENG UNIVERSAL GC1 SHADOW TV - C+ MAGIC + CANAL+ ELLES PARAMOUNT NETWORK SS FOOTBALL PLUS HD SS FOOTBALL HD @@ -199,6 +206,7 @@ BBLACK AFRICA TELE FONTAINE VIE CNN + TLC CARTOON NETWORK CARTOONITO BOOMERANG @@ -209,9 +217,11 @@ RTB 3 dupli TVCA RTB dupli + TOZALI TV LUMEN CHRISTI PRC JESUS 24 TV + SUNNA TV CH3 CH4 PARLEMENT TV @@ -223,30 +233,17 @@ BCN TV BRIK TV AL NASSR - BENIN TV ALAFIA - ACTIVATION NETFLIX - DNTV - AFRICA MAGIC HAUSA - AFRICA MAGIC YORUBA - MAISHA MAGIC EAST - MAISHA MAGIC PLUS - TEST AFRIQUE - MIEUX - EUROPE 2 POP TV GULLI AFRICA NOVELAS TV - TRACE IVOIRE PACIS TV MY MEDIA PRIME SCIENCE ET VIE TV ENGLISH CLUB TV - ZEE ALWAN FASHION AFRICA TV SEN TV ASONGA TV DIGITAL CONGO TELE 50 - SS WWE DRTV TV MAURITANIE IMPACT TV @@ -255,24 +252,15 @@ BUSINESS 24 CANAL+ SPORT 4 CANAL+ SPORT 5 - VOIR+ RDC ZEE MAGIC ORTM2 EVASION TV RTD - GOLF+ HD - LOVE NATURE CANAL+ FAMILY OUEST ONE TV - CNEWS PRIME - EUROPE 1 TV - AES TV HD - MAISHA MAGIC BONGO - NATIONAL GEOGRAPHIC ENG - STUDIO UNIVERSAL SSM TV MCR TV - SUPERSPORT ACTION + OMEGA TV AFRICANEWS E-TELEVISION ESPACE TV @@ -290,11 +278,12 @@ TREK J-ONE BANTAMBA TV + TRACE MZIKI CNBC AFRICA WALF TV LTM MEDI1 TV - CNEWS PRIME + CH1 IVOIRE TV Music UNIVERS TV MIRACLE TV+ @@ -324,7 +313,7 @@ MUSEUM TV CANAL 2 MOVIES EMCI - EUROPE 1 TV + CH2 A+ IVOIRE Antenne VISION 4 RCA AREWA 24 @@ -342,11 +331,13 @@ TM1 TOUTE L HISTOIRE PSTV + FARIN WATA KC2 TV1 TV O FLASH TV ISANGO STAR TV + GENESIS TV BTN TV CARTOON NETWORK Africa SA TNT Africa @@ -361,7 +352,7 @@ LCA RENOUVEAU TV RTDS - BRAVO ENG + E! ENG TELEMUNDO AFRICA MAGIC EPIC ZEE WORLD @@ -370,7 +361,7 @@ AFRICA MAGIC SHOWCASE MNET MOVIES 3 MNET MOVIES 4 - DISCOVERY CHANNEL ENG + DISCOVER CHANNEL ENG SS EPL SS LA LIGA CANAL 3 BURKINA @@ -384,7 +375,9 @@ TVC DOUNIA BONFEREY + SUNNA TV TVGE + CAPITAL SANTE TV MIKUBA TV LUDIKIDS OI VIXEN diff --git a/sites/canalplus.com/canalplus.com_ch.channels.xml b/sites/canalplus.com/canalplus.com_ch.channels.xml index 33a0ced81..2eba9db62 100644 --- a/sites/canalplus.com/canalplus.com_ch.channels.xml +++ b/sites/canalplus.com/canalplus.com_ch.channels.xml @@ -3,9 +3,7 @@ CANAL+FOOT FRANCE 2 CNN - CHAINE: 45 BLOOMBERG TV - 2M MONDE CNBC TVE INTERNACIONAL TEST05 @@ -31,20 +29,21 @@ CANAL+SPORT CANAL+CINEMA.S TEST04 - TV7 TUNISIE AL JAZEERA ARABIC ARIRANG TV CANAL+KIDS 8 MONT-BLANC MEZZO LIVE PLANETE+ - FRANCE 24 ARABE - CGTN DOCUMENTARY + CHAINE JEUNESSE 2 + CHAINE JEUNESSE 1 CHAINE EVENEMENT + CHAINE DECOUVERTE 2 TEVA PARIS PREMIERE W9 CANAL+ + CHAINE DECOUVERTE 1 FRANCE 24 FRANCE 24 ENG TF1 @@ -62,20 +61,19 @@ CINE+ EMOTION CINE+ FRISSON EUROSPORT 2 - RMC LIFE + CHERIE 25 + TPMP L'EQUIPE MTV CNEWS CANAL+SERIES J-ONE PARAMOUNT NETWORK - 24H + CANAL 24 HORAS CARTOON NETWORK ANIMAUX ACTION RTL9 - ALGERIE 3 - CANAL ALGERIE CSTAR BEIN SPORTS 3 NICKTOONS @@ -83,12 +81,12 @@ 6TER CANAL J TF1 SERIES FILMS - NOLLYWOOD TV BOOMERANG CINE+ CLASSIC CINE+ FESTIVAL CINE+ FAMILY COMEDIE+ + CHAINE JEUNESSE 3 DORCEL TV DORCEL XXX EQUIDIA @@ -167,18 +165,17 @@ MUSEUM NICKELODEON+1 CHASSE ET PECHE - CHAINE: 684 POLAR+ NOVELAS TV WARNER TV EURONEWS ALL CANAL+ (CH) - EUROPE 2 POP TV - CHAINE: 724 + CSTAR HITS FRANCE EVENEMENT SPORT 4K UHD CANAL+ UHD RMC SPORT 1 RMC SPORT 2 + CL4 TEST14 CANAL 9 RTS 1 @@ -193,6 +190,7 @@ SRF 2 3 SAT ARD DAS ERSTE + RAI UNO (CH) ORF 1 TRACE LATINA COMEDY CENTRAL @@ -203,10 +201,8 @@ CANAL+ CINEMA.S (CH) OCS (CH) CINE+ FRISSON (CH) + TPMP (CH) CSTAR (CH) - A+ - A+ IVOIRE - NOLLYWOOD TV EPIC EURONEWS ITALIE EVENEMENT SPORT UHD HDR CANAL+ SPORT (CH) @@ -222,24 +218,24 @@ F3 PICARDIE F3 FRANCHE COMTE F3 AQUITAINE - F3 NORMANDIE B + F3 BNORMANDIE F3 AUVERGNE F3 BOURGOGNE F3 ALPES - F3 NORD + F3 NORD PDC F3 LIMOUSIN F3 RHONE ALPES - F3 PROVENCE ALPES - F3 LANGUEDOCROUS + F3 PROV ALPES + F3 LANGUEDOCROU F3 LORRAINE F3 PAYS DE LA LOIRE F3 COTE D'AZUR F3 CENTRE F3 PARIS IDF - F3 POITOU CHARENT + F3 POITOUCHAR F3 CHAMP ARDENNE F3 BRETAGNE - F3 NORMANDIE H + F3 HNORMANDIE F3 ALSACE F3 MIDI PYRENEES F3 CORSEVIASTELLA @@ -249,8 +245,7 @@ CHAINE : 973 CHAINE : 974 CHAINE : 975 - F3 NOA - CANAL+ MODE EVENT + NOA CANAL+FOOT CANAL+SPORT360 CANAL+SPORT 360 (CH) @@ -340,32 +335,10 @@ T18 NOVO19 CINE+ FESTIVAL (CH) - CNEWS PRIME - EUROPE 1 TV - LIGUE 1+ 3 - LIGUE 1+ 4 - LIGUE 1+ 5 - MIEUX - CHEVAL TV - SUNU YEUF - PULAAGU - MANDEKA - MABOKE TV - ECHOROUK NEWS - ECHOROUK TV - NESSMA TV - SAMIRA TV - EL HIWAR ETTOUNSI - SKYNEWS ARABIA - MBC 5 - MBC DRAMA - ROTANA CINEMA FR - ROTANA CINEMA - ROTANA KIDS - A+ BENIN - Chaine: 1199 - Chaine: 1200 - Chaine: 1201 - CGTN FRANCAIS + Chaine: 1172 + Chaine: 1173 + Chaine: 1174 + Chaine: 1179 + Chaine: 1180 ARTE ALLEMAND diff --git a/sites/canalplus.com/canalplus.com_ci.channels.xml b/sites/canalplus.com/canalplus.com_ci.channels.xml index ee9cfa3ec..d59bebda3 100644 --- a/sites/canalplus.com/canalplus.com_ci.channels.xml +++ b/sites/canalplus.com/canalplus.com_ci.channels.xml @@ -22,6 +22,7 @@ BOSOLO TV RTCE MALAIKA TV + HK6 HERITAGE TV E! Bukedde TV @@ -34,6 +35,8 @@ France 2 INT MANGAS RTB ZENITH + HOPE TV + RTNK MEZZO HOREB TV MTV France @@ -52,12 +55,13 @@ AFRIKINFO TV EVANGILE TV REFLET TV - TRACE CHRISTMAS TOUBA TV TELEMUSIK SENEGAL MOURCHID TV + TELE-ECOLE AL MOURIDIYYAH TV MALIKIA TV + CANAL EDUCATION FULBE TF1 KAYES TV @@ -65,7 +69,6 @@ TMC SEGOU TV SUNNA TV SAVANA - CANAL+ CAN GO TV HUSTLER HD TROPIC TV @@ -77,9 +80,11 @@ GALAXIE TELE FRANCE 24 BALAFON TV + TAMBARIN HAUSA TV DASH TV BETV HTV BURUNDI + TPMP RTB 2STV ISIBO TV @@ -116,8 +121,8 @@ TELE CONGO BENIN TV HD RTNC - CANAL+ CAN IVOIRE PRIVATE TV + WILDEARTH TPT+ TRACE AFRICA AFRIQUE VOIR+ @@ -142,6 +147,7 @@ M7 RTB 3 TV AL HOUDA + JES TV SUNNA TV ZARMA TAURARUWA FOR YOU TV @@ -149,6 +155,7 @@ TRACE MBOA SUN+ TV TV+ AFRIQUE + LPC NOLLYWOOD TV RTI2 TV TOGO @@ -163,18 +170,18 @@ CONGO 26 ISHUSHO TV MRTV - CHIF TV + SHIF TV GC7 GC2 GC6 ESPERANCE TV BUJA TV AL JAZEERA ENG - BET (ENG) + BET ENG UNIVERSAL GC1 SHADOW TV - C+ MAGIC + CANAL+ ELLES PARAMOUNT NETWORK SS FOOTBALL PLUS HD SS FOOTBALL HD @@ -199,6 +206,7 @@ BBLACK AFRICA TELE FONTAINE VIE CNN + TLC CARTOON NETWORK CARTOONITO BOOMERANG @@ -209,9 +217,11 @@ RTB 3 dupli TVCA RTB dupli + TOZALI TV LUMEN CHRISTI PRC JESUS 24 TV + SUNNA TV CH3 CH4 PARLEMENT TV @@ -223,30 +233,17 @@ BCN TV BRIK TV AL NASSR - BENIN TV ALAFIA - ACTIVATION NETFLIX - DNTV - AFRICA MAGIC HAUSA - AFRICA MAGIC YORUBA - MAISHA MAGIC EAST - MAISHA MAGIC PLUS - TEST AFRIQUE - MIEUX - EUROPE 2 POP TV GULLI AFRICA NOVELAS TV - TRACE IVOIRE PACIS TV MY MEDIA PRIME SCIENCE ET VIE TV ENGLISH CLUB TV - ZEE ALWAN FASHION AFRICA TV SEN TV ASONGA TV DIGITAL CONGO TELE 50 - SS WWE DRTV TV MAURITANIE IMPACT TV @@ -255,24 +252,15 @@ BUSINESS 24 CANAL+ SPORT 4 CANAL+ SPORT 5 - VOIR+ RDC ZEE MAGIC ORTM2 EVASION TV RTD - GOLF+ HD - LOVE NATURE CANAL+ FAMILY OUEST ONE TV - CNEWS PRIME - EUROPE 1 TV - AES TV HD - MAISHA MAGIC BONGO - NATIONAL GEOGRAPHIC ENG - STUDIO UNIVERSAL SSM TV MCR TV - SUPERSPORT ACTION + OMEGA TV AFRICANEWS E-TELEVISION ESPACE TV @@ -290,11 +278,12 @@ TREK J-ONE BANTAMBA TV + TRACE MZIKI CNBC AFRICA WALF TV LTM MEDI1 TV - CNEWS PRIME + CH1 IVOIRE TV Music UNIVERS TV MIRACLE TV+ @@ -324,7 +313,7 @@ MUSEUM TV CANAL 2 MOVIES EMCI - EUROPE 1 TV + CH2 A+ IVOIRE Antenne VISION 4 RCA AREWA 24 @@ -342,11 +331,13 @@ TM1 TOUTE L HISTOIRE PSTV + FARIN WATA KC2 TV1 TV O FLASH TV ISANGO STAR TV + GENESIS TV BTN TV CARTOON NETWORK Africa SA TNT Africa @@ -361,7 +352,7 @@ LCA RENOUVEAU TV RTDS - BRAVO ENG + E! ENG TELEMUNDO AFRICA MAGIC EPIC ZEE WORLD @@ -370,7 +361,7 @@ AFRICA MAGIC SHOWCASE MNET MOVIES 3 MNET MOVIES 4 - DISCOVERY CHANNEL ENG + DISCOVER CHANNEL ENG SS EPL SS LA LIGA CANAL 3 BURKINA @@ -384,7 +375,9 @@ TVC DOUNIA BONFEREY + SUNNA TV TVGE + CAPITAL SANTE TV MIKUBA TV LUDIKIDS OI VIXEN diff --git a/sites/canalplus.com/canalplus.com_cm.channels.xml b/sites/canalplus.com/canalplus.com_cm.channels.xml index 333fd0738..f63298c89 100644 --- a/sites/canalplus.com/canalplus.com_cm.channels.xml +++ b/sites/canalplus.com/canalplus.com_cm.channels.xml @@ -22,6 +22,7 @@ BOSOLO TV RTCE MALAIKA TV + HK6 HERITAGE TV E! Bukedde TV @@ -34,6 +35,8 @@ France 2 INT MANGAS RTB ZENITH + HOPE TV + RTNK MEZZO HOREB TV MTV France @@ -52,12 +55,13 @@ AFRIKINFO TV EVANGILE TV REFLET TV - TRACE CHRISTMAS TOUBA TV TELEMUSIK SENEGAL MOURCHID TV + TELE-ECOLE AL MOURIDIYYAH TV MALIKIA TV + CANAL EDUCATION FULBE TF1 KAYES TV @@ -65,7 +69,6 @@ TMC SEGOU TV SUNNA TV SAVANA - CANAL+ CAN GO TV HUSTLER HD TROPIC TV @@ -77,9 +80,11 @@ GALAXIE TELE FRANCE 24 BALAFON TV + TAMBARIN HAUSA TV DASH TV BETV HTV BURUNDI + TPMP RTB 2STV ISIBO TV @@ -116,8 +121,8 @@ TELE CONGO BENIN TV HD RTNC - CANAL+ CAN IVOIRE PRIVATE TV + WILDEARTH TPT+ TRACE AFRICA AFRIQUE VOIR+ @@ -142,6 +147,7 @@ M7 RTB 3 TV AL HOUDA + JES TV SUNNA TV ZARMA TAURARUWA FOR YOU TV @@ -149,6 +155,7 @@ TRACE MBOA SUN+ TV TV+ AFRIQUE + LPC NOLLYWOOD TV RTI2 TV TOGO @@ -163,18 +170,18 @@ CONGO 26 ISHUSHO TV MRTV - CHIF TV + SHIF TV GC7 GC2 GC6 ESPERANCE TV BUJA TV AL JAZEERA ENG - BET (ENG) + BET ENG UNIVERSAL GC1 SHADOW TV - C+ MAGIC + CANAL+ ELLES PARAMOUNT NETWORK SS FOOTBALL PLUS HD SS FOOTBALL HD @@ -199,6 +206,7 @@ BBLACK AFRICA TELE FONTAINE VIE CNN + TLC CARTOON NETWORK CARTOONITO BOOMERANG @@ -209,9 +217,11 @@ RTB 3 dupli TVCA RTB dupli + TOZALI TV LUMEN CHRISTI PRC JESUS 24 TV + SUNNA TV CH3 CH4 PARLEMENT TV @@ -223,30 +233,17 @@ BCN TV BRIK TV AL NASSR - BENIN TV ALAFIA - ACTIVATION NETFLIX - DNTV - AFRICA MAGIC HAUSA - AFRICA MAGIC YORUBA - MAISHA MAGIC EAST - MAISHA MAGIC PLUS - TEST AFRIQUE - MIEUX - EUROPE 2 POP TV GULLI AFRICA NOVELAS TV - TRACE IVOIRE PACIS TV MY MEDIA PRIME SCIENCE ET VIE TV ENGLISH CLUB TV - ZEE ALWAN FASHION AFRICA TV SEN TV ASONGA TV DIGITAL CONGO TELE 50 - SS WWE DRTV TV MAURITANIE IMPACT TV @@ -255,24 +252,15 @@ BUSINESS 24 CANAL+ SPORT 4 CANAL+ SPORT 5 - VOIR+ RDC ZEE MAGIC ORTM2 EVASION TV RTD - GOLF+ HD - LOVE NATURE CANAL+ FAMILY OUEST ONE TV - CNEWS PRIME - EUROPE 1 TV - AES TV HD - MAISHA MAGIC BONGO - NATIONAL GEOGRAPHIC ENG - STUDIO UNIVERSAL SSM TV MCR TV - SUPERSPORT ACTION + OMEGA TV AFRICANEWS E-TELEVISION ESPACE TV @@ -290,11 +278,12 @@ TREK J-ONE BANTAMBA TV + TRACE MZIKI CNBC AFRICA WALF TV LTM MEDI1 TV - CNEWS PRIME + CH1 IVOIRE TV Music UNIVERS TV MIRACLE TV+ @@ -324,7 +313,7 @@ MUSEUM TV CANAL 2 MOVIES EMCI - EUROPE 1 TV + CH2 A+ IVOIRE Antenne VISION 4 RCA AREWA 24 @@ -342,11 +331,13 @@ TM1 TOUTE L HISTOIRE PSTV + FARIN WATA KC2 TV1 TV O FLASH TV ISANGO STAR TV + GENESIS TV BTN TV CARTOON NETWORK Africa SA TNT Africa @@ -361,7 +352,7 @@ LCA RENOUVEAU TV RTDS - BRAVO ENG + E! ENG TELEMUNDO AFRICA MAGIC EPIC ZEE WORLD @@ -370,7 +361,7 @@ AFRICA MAGIC SHOWCASE MNET MOVIES 3 MNET MOVIES 4 - DISCOVERY CHANNEL ENG + DISCOVER CHANNEL ENG SS EPL SS LA LIGA CANAL 3 BURKINA @@ -384,7 +375,9 @@ TVC DOUNIA BONFEREY + SUNNA TV TVGE + CAPITAL SANTE TV MIKUBA TV LUDIKIDS OI VIXEN diff --git a/sites/canalplus.com/canalplus.com_cv.channels.xml b/sites/canalplus.com/canalplus.com_cv.channels.xml index 865f63dbf..62ce36731 100644 --- a/sites/canalplus.com/canalplus.com_cv.channels.xml +++ b/sites/canalplus.com/canalplus.com_cv.channels.xml @@ -22,6 +22,7 @@ BOSOLO TV RTCE MALAIKA TV + HK6 HERITAGE TV E! Bukedde TV @@ -34,6 +35,8 @@ France 2 INT MANGAS RTB ZENITH + HOPE TV + RTNK MEZZO HOREB TV MTV France @@ -52,12 +55,13 @@ AFRIKINFO TV EVANGILE TV REFLET TV - TRACE CHRISTMAS TOUBA TV TELEMUSIK SENEGAL MOURCHID TV + TELE-ECOLE AL MOURIDIYYAH TV MALIKIA TV + CANAL EDUCATION FULBE TF1 KAYES TV @@ -65,7 +69,6 @@ TMC SEGOU TV SUNNA TV SAVANA - CANAL+ CAN GO TV HUSTLER HD TROPIC TV @@ -77,9 +80,11 @@ GALAXIE TELE FRANCE 24 BALAFON TV + TAMBARIN HAUSA TV DASH TV BETV HTV BURUNDI + TPMP RTB 2STV ISIBO TV @@ -116,8 +121,8 @@ TELE CONGO BENIN TV HD RTNC - CANAL+ CAN IVOIRE PRIVATE TV + WILDEARTH TPT+ TRACE AFRICA AFRIQUE VOIR+ @@ -142,6 +147,7 @@ M7 RTB 3 TV AL HOUDA + JES TV SUNNA TV ZARMA TAURARUWA FOR YOU TV @@ -149,6 +155,7 @@ TRACE MBOA SUN+ TV TV+ AFRIQUE + LPC NOLLYWOOD TV RTI2 TV TOGO @@ -163,18 +170,18 @@ CONGO 26 ISHUSHO TV MRTV - CHIF TV + SHIF TV GC7 GC2 GC6 ESPERANCE TV BUJA TV AL JAZEERA ENG - BET (ENG) + BET ENG UNIVERSAL GC1 SHADOW TV - C+ MAGIC + CANAL+ ELLES PARAMOUNT NETWORK SS FOOTBALL PLUS HD SS FOOTBALL HD @@ -199,6 +206,7 @@ BBLACK AFRICA TELE FONTAINE VIE CNN + TLC CARTOON NETWORK CARTOONITO BOOMERANG @@ -209,9 +217,11 @@ RTB 3 dupli TVCA RTB dupli + TOZALI TV LUMEN CHRISTI PRC JESUS 24 TV + SUNNA TV CH3 CH4 PARLEMENT TV @@ -223,30 +233,17 @@ BCN TV BRIK TV AL NASSR - BENIN TV ALAFIA - ACTIVATION NETFLIX - DNTV - AFRICA MAGIC HAUSA - AFRICA MAGIC YORUBA - MAISHA MAGIC EAST - MAISHA MAGIC PLUS - TEST AFRIQUE - MIEUX - EUROPE 2 POP TV GULLI AFRICA NOVELAS TV - TRACE IVOIRE PACIS TV MY MEDIA PRIME SCIENCE ET VIE TV ENGLISH CLUB TV - ZEE ALWAN FASHION AFRICA TV SEN TV ASONGA TV DIGITAL CONGO TELE 50 - SS WWE DRTV TV MAURITANIE IMPACT TV @@ -255,24 +252,15 @@ BUSINESS 24 CANAL+ SPORT 4 CANAL+ SPORT 5 - VOIR+ RDC ZEE MAGIC ORTM2 EVASION TV RTD - GOLF+ HD - LOVE NATURE CANAL+ FAMILY OUEST ONE TV - CNEWS PRIME - EUROPE 1 TV - AES TV HD - MAISHA MAGIC BONGO - NATIONAL GEOGRAPHIC ENG - STUDIO UNIVERSAL SSM TV MCR TV - SUPERSPORT ACTION + OMEGA TV AFRICANEWS E-TELEVISION ESPACE TV @@ -290,11 +278,12 @@ TREK J-ONE BANTAMBA TV + TRACE MZIKI CNBC AFRICA WALF TV LTM MEDI1 TV - CNEWS PRIME + CH1 IVOIRE TV Music UNIVERS TV MIRACLE TV+ @@ -324,7 +313,7 @@ MUSEUM TV CANAL 2 MOVIES EMCI - EUROPE 1 TV + CH2 A+ IVOIRE Antenne VISION 4 RCA AREWA 24 @@ -342,11 +331,13 @@ TM1 TOUTE L HISTOIRE PSTV + FARIN WATA KC2 TV1 TV O FLASH TV ISANGO STAR TV + GENESIS TV BTN TV CARTOON NETWORK Africa SA TNT Africa @@ -361,7 +352,7 @@ LCA RENOUVEAU TV RTDS - BRAVO ENG + E! ENG TELEMUNDO AFRICA MAGIC EPIC ZEE WORLD @@ -370,7 +361,7 @@ AFRICA MAGIC SHOWCASE MNET MOVIES 3 MNET MOVIES 4 - DISCOVERY CHANNEL ENG + DISCOVER CHANNEL ENG SS EPL SS LA LIGA CANAL 3 BURKINA @@ -384,7 +375,9 @@ TVC DOUNIA BONFEREY + SUNNA TV TVGE + CAPITAL SANTE TV MIKUBA TV LUDIKIDS OI VIXEN diff --git a/sites/canalplus.com/canalplus.com_dj.channels.xml b/sites/canalplus.com/canalplus.com_dj.channels.xml index 2d523a399..c27be5ef1 100644 --- a/sites/canalplus.com/canalplus.com_dj.channels.xml +++ b/sites/canalplus.com/canalplus.com_dj.channels.xml @@ -22,6 +22,7 @@ BOSOLO TV RTCE MALAIKA TV + HK6 HERITAGE TV E! Bukedde TV @@ -34,6 +35,8 @@ France 2 INT MANGAS RTB ZENITH + HOPE TV + RTNK MEZZO HOREB TV MTV France @@ -52,12 +55,13 @@ AFRIKINFO TV EVANGILE TV REFLET TV - TRACE CHRISTMAS TOUBA TV TELEMUSIK SENEGAL MOURCHID TV + TELE-ECOLE AL MOURIDIYYAH TV MALIKIA TV + CANAL EDUCATION FULBE TF1 KAYES TV @@ -65,7 +69,6 @@ TMC SEGOU TV SUNNA TV SAVANA - CANAL+ CAN GO TV HUSTLER HD TROPIC TV @@ -77,9 +80,11 @@ GALAXIE TELE FRANCE 24 BALAFON TV + TAMBARIN HAUSA TV DASH TV BETV HTV BURUNDI + TPMP RTB 2STV ISIBO TV @@ -116,8 +121,8 @@ TELE CONGO BENIN TV HD RTNC - CANAL+ CAN IVOIRE PRIVATE TV + WILDEARTH TPT+ TRACE AFRICA AFRIQUE VOIR+ @@ -142,6 +147,7 @@ M7 RTB 3 TV AL HOUDA + JES TV SUNNA TV ZARMA TAURARUWA FOR YOU TV @@ -149,6 +155,7 @@ TRACE MBOA SUN+ TV TV+ AFRIQUE + LPC NOLLYWOOD TV RTI2 TV TOGO @@ -163,18 +170,18 @@ CONGO 26 ISHUSHO TV MRTV - CHIF TV + SHIF TV GC7 GC2 GC6 ESPERANCE TV BUJA TV AL JAZEERA ENG - BET (ENG) + BET ENG UNIVERSAL GC1 SHADOW TV - C+ MAGIC + CANAL+ ELLES PARAMOUNT NETWORK SS FOOTBALL PLUS HD SS FOOTBALL HD @@ -199,6 +206,7 @@ BBLACK AFRICA TELE FONTAINE VIE CNN + TLC CARTOON NETWORK CARTOONITO BOOMERANG @@ -209,9 +217,11 @@ RTB 3 dupli TVCA RTB dupli + TOZALI TV LUMEN CHRISTI PRC JESUS 24 TV + SUNNA TV CH3 CH4 PARLEMENT TV @@ -223,30 +233,17 @@ BCN TV BRIK TV AL NASSR - BENIN TV ALAFIA - ACTIVATION NETFLIX - DNTV - AFRICA MAGIC HAUSA - AFRICA MAGIC YORUBA - MAISHA MAGIC EAST - MAISHA MAGIC PLUS - TEST AFRIQUE - MIEUX - EUROPE 2 POP TV GULLI AFRICA NOVELAS TV - TRACE IVOIRE PACIS TV MY MEDIA PRIME SCIENCE ET VIE TV ENGLISH CLUB TV - ZEE ALWAN FASHION AFRICA TV SEN TV ASONGA TV DIGITAL CONGO TELE 50 - SS WWE DRTV TV MAURITANIE IMPACT TV @@ -255,24 +252,15 @@ BUSINESS 24 CANAL+ SPORT 4 CANAL+ SPORT 5 - VOIR+ RDC ZEE MAGIC ORTM2 EVASION TV RTD - GOLF+ HD - LOVE NATURE CANAL+ FAMILY OUEST ONE TV - CNEWS PRIME - EUROPE 1 TV - AES TV HD - MAISHA MAGIC BONGO - NATIONAL GEOGRAPHIC ENG - STUDIO UNIVERSAL SSM TV MCR TV - SUPERSPORT ACTION + OMEGA TV AFRICANEWS E-TELEVISION ESPACE TV @@ -290,11 +278,12 @@ TREK J-ONE BANTAMBA TV + TRACE MZIKI CNBC AFRICA WALF TV LTM MEDI1 TV - CNEWS PRIME + CH1 IVOIRE TV Music UNIVERS TV MIRACLE TV+ @@ -324,7 +313,7 @@ MUSEUM TV CANAL 2 MOVIES EMCI - EUROPE 1 TV + CH2 A+ IVOIRE Antenne VISION 4 RCA AREWA 24 @@ -342,11 +331,13 @@ TM1 TOUTE L HISTOIRE PSTV + FARIN WATA KC2 TV1 TV O FLASH TV ISANGO STAR TV + GENESIS TV BTN TV CARTOON NETWORK Africa SA TNT Africa @@ -361,7 +352,7 @@ LCA RENOUVEAU TV RTDS - BRAVO ENG + E! ENG TELEMUNDO AFRICA MAGIC EPIC ZEE WORLD @@ -370,7 +361,7 @@ AFRICA MAGIC SHOWCASE MNET MOVIES 3 MNET MOVIES 4 - DISCOVERY CHANNEL ENG + DISCOVER CHANNEL ENG SS EPL SS LA LIGA CANAL 3 BURKINA @@ -384,7 +375,9 @@ TVC DOUNIA BONFEREY + SUNNA TV TVGE + CAPITAL SANTE TV MIKUBA TV LUDIKIDS OI VIXEN diff --git a/sites/canalplus.com/canalplus.com_fr.channels.xml b/sites/canalplus.com/canalplus.com_fr.channels.xml index 33658819c..60c686baf 100644 --- a/sites/canalplus.com/canalplus.com_fr.channels.xml +++ b/sites/canalplus.com/canalplus.com_fr.channels.xml @@ -1,11 +1,10 @@ - AL JAZEERA ENG - BBC NEWS - NHK WORLD-JAPAN + CANAL+FOOT + FRANCE 2 CNN - CHAINE: 45 - 2M MONDE + BLOOMBERG TV + CNBC TVE INTERNACIONAL TEST05 TEST06 @@ -13,6 +12,7 @@ TEST08 TEST09 TEST10 + CANAL+SPORT360 TEST11 TEST12 TEST13 @@ -20,70 +20,232 @@ TEST16 TEST17 TEST03 + EUROSPORT 1 KTO RTL + USHUAIA TV + ARTE DISCOVERY CHANNEL + CANAL+SPORT CANAL+CINEMA.S TEST04 - TV7 TUNISIE AL JAZEERA ARABIC + ARIRANG TV + CANAL+KIDS 8 MONT-BLANC - FRANCE 24 ARABE - CGTN DOCUMENTARY + MEZZO LIVE + PLANETE+ + CHAINE JEUNESSE 2 + CHAINE JEUNESSE 1 CHAINE EVENEMENT + CHAINE DECOUVERTE 2 + TEVA + PARIS PREMIERE + W9 + CANAL+ + CHAINE DECOUVERTE 1 + FRANCE 24 + FRANCE 24 ENG + TF1 + M6 + OCS + EURONEWS + M6 MUSIC + SERIE CLUB + I24 NEWS A LA UNE TCM CINEMA - RMC LIFE - 24H + GOLF+ + BEIN SPORTS 1 + BEIN SPORTS 2 + CINE+ EMOTION + CINE+ FRISSON + EUROSPORT 2 + CHERIE 25 + TPMP + L'EQUIPE + MTV + CNEWS + CANAL+SERIES + J-ONE + PARAMOUNT NETWORK + CANAL 24 HORAS CARTOON NETWORK - ALGERIE 3 - CANAL ALGERIE - NOLLYWOOD TV + ANIMAUX + ACTION + RTL9 + CSTAR + BEIN SPORTS 3 + NICKTOONS + TV5 MONDE + 6TER + CANAL J + TF1 SERIES FILMS BOOMERANG + CINE+ CLASSIC + CINE+ FESTIVAL CINE+ FAMILY + COMEDIE+ + CHAINE JEUNESSE 3 + DORCEL TV + DORCEL XXX + EQUIDIA + FRANCE 3 + FRANCE 4 + FRANCE 5 EVENEMENT SPORT 4K HDR UHD + VIXEN + GULLI + HISTOIRE TV + INFOSPORT+ + LA CHAINE METEO + LCI + LCP + MCM + RFM TV + MEZZO + MULTISPORTS 1 + MULTISPORTS 2 + MULTISPORTS 3 + MULTISPORTS 4 + MULTISPORTS 5 + MULTISPORTS 6 + NRJ HITS + TFX + RMC STORY CANAL+ CANAL+SPORT + PINK X + PIWI+ + SEASONS + MELODY + TELETOON+ + TELETOON+1 + TIJI + TMC + TRACE URBAN + TV BREIZH + PLANETE+CRIME + PLANETE+AVENTURE + BBC NEWS + NICKELODEON + GAME ONE + NICKELODEON JUNIOR + RMC DECOUVERTE + BEIN SPORTS MAX 4 + BEIN SPORTS MAX 5 + BEIN SPORTS MAX 6 + BEIN SPORTS MAX 7 CANAL+ + BEIN SPORTS MAX 8 + BEIN SPORTS MAX 9 + BEIN SPORTS MAX 10 + AB1 + AUTOMOTO LA CHAINE + MANGAS + XXL + TOUTE L'HISTOIRE + BET + ASTROCENTER TV + BFM TV + EUROSPORT 360 1 + EUROSPORT 360 2 + EUROSPORT 360 3 + EUROSPORT 360 4 LL EVENT UHD + BFM BUSINESS + EUROSPORT 360 5 + EUROSPORT 360 6 + EUROSPORT 360 7 + EUROSPORT 360 8 + NHK WORLD-JAPAN + FRANCEINFO: + MAN X + AL JAZEERA ENG MUSEUM NICKELODEON+1 - CHAINE: 684 + CHASSE ET PECHE + POLAR+ + NOVELAS TV WARNER TV EURONEWS ALL CANAL+ (CH) - CHAINE: 724 + CSTAR HITS FRANCE EVENEMENT SPORT 4K UHD CANAL+ UHD + RMC SPORT 1 + RMC SPORT 2 + CL4 TEST14 CANAL 9 RTS 1 RTS 2 + CANAL ALPHA NE + LA TELE + LEMAN BLEU + TELEBIELINGUE RSI 1 RSI 2 + SRF 1 SRF 2 3 SAT + ARD DAS ERSTE + RAI UNO (CH) + ORF 1 + TRACE LATINA + COMEDY CENTRAL + OLYMPIA TV + CANAL+PREMIER LEAGUE + MGG TV CANAL+ (CH) CANAL+ CINEMA.S (CH) OCS (CH) CINE+ FRISSON (CH) + TPMP (CH) CSTAR (CH) - A+ - A+ IVOIRE - NOLLYWOOD TV EPIC EURONEWS ITALIE EVENEMENT SPORT UHD HDR CANAL+ SPORT (CH) CANAL+ UHD (CH) TEST01 TEST02 + CARAC1 + CARAC3 + CARAC2 + BLUE ZOOM + CANAL+DOCS + CANAL+GRAND ECRAN + F3 PICARDIE + F3 FRANCHE COMTE + F3 AQUITAINE + F3 BNORMANDIE + F3 AUVERGNE + F3 BOURGOGNE + F3 ALPES + F3 NORD PDC + F3 LIMOUSIN + F3 RHONE ALPES + F3 PROV ALPES + F3 LANGUEDOCROU + F3 LORRAINE + F3 PAYS DE LA LOIRE + F3 COTE D'AZUR + F3 CENTRE + F3 PARIS IDF + F3 POITOUCHAR + F3 CHAMP ARDENNE + F3 BRETAGNE + F3 HNORMANDIE + F3 ALSACE + F3 MIDI PYRENEES + F3 CORSEVIASTELLA CHAINE : 970 CHAINE : 971 CHAINE : 972 CHAINE : 973 CHAINE : 974 CHAINE : 975 - CANAL+ MODE EVENT + NOA CANAL+FOOT CANAL+SPORT360 CANAL+SPORT 360 (CH) @@ -173,199 +335,10 @@ T18 NOVO19 CINE+ FESTIVAL (CH) - CNEWS PRIME - EUROPE 1 TV - LIGUE 1+ 3 - LIGUE 1+ 4 - LIGUE 1+ 5 - MIEUX - CHEVAL TV - SUNU YEUF - PULAAGU - MANDEKA - MABOKE TV - ECHOROUK NEWS - ECHOROUK TV - NESSMA TV - SAMIRA TV - EL HIWAR ETTOUNSI - SKYNEWS ARABIA - MBC 5 - MBC DRAMA - ROTANA CINEMA FR - ROTANA CINEMA - ROTANA KIDS - A+ BENIN - Chaine: 1199 - Chaine: 1200 - Chaine: 1201 - CGTN FRANCAIS + Chaine: 1172 + Chaine: 1173 + Chaine: 1174 + Chaine: 1179 + Chaine: 1180 ARTE ALLEMAND - 6TER - AB1 - ACTION - ANIMAUX - ARIRANG TV - ARTE - ASTROCENTER TV - AUTOMOTO LA CHAINE - BEIN SPORTS 1 - BEIN SPORTS 2 - BEIN SPORTS 3 - BEIN SPORTS MAX 4 - BEIN SPORTS MAX 5 - BEIN SPORTS MAX 6 - BEIN SPORTS MAX 7 - BEIN SPORTS MAX 8 - BEIN SPORTS MAX 9 - BEIN SPORTS MAX 10 - BET - BFM BUSINESS - BFM TV - BLOOMBERG TV - BLUE ZOOM - CANAL ALPHA NE - CANAL J - CANAL+ - CANAL+DOCS - CANAL+FOOT - CANAL+GRAND ECRAN - CANAL+KIDS - CANAL+PREMIER LEAGUE - CANAL+SERIES - CANAL+SPORT360 - CANAL+SPORT - CHASSE ET PECHE - CINE+ CLASSIC - CINE+ FESTIVAL - CINE+ EMOTION - CINE+ FRISSON - OCS - CNBC - CNEWS - COMEDIE+ - COMEDY CENTRAL - CSTAR - EUROPE 2 POP TV - ARD DAS ERSTE - DORCEL TV - DORCEL XXX - EQUIDIA - EURONEWS - EUROSPORT 1 - EUROSPORT 2 - EUROSPORT 360 1 - EUROSPORT 360 2 - EUROSPORT 360 3 - EUROSPORT 360 4 - EUROSPORT 360 5 - EUROSPORT 360 6 - EUROSPORT 360 7 - EUROSPORT 360 8 - FRANCE 2 - F3 ALPES - F3 ALSACE - F3 AQUITAINE - F3 AUVERGNE - F3 NORMANDIE B - F3 BOURGOGNE - F3 BRETAGNE - F3 CENTRE - F3 CHAMP ARDENNE - F3 CORSEVIASTELLA - F3 COTE D'AZUR - F3 FRANCHE COMTE - F3 NORMANDIE H - F3 LANGUEDOCROUS - F3 LIMOUSIN - F3 LORRAINE - F3 MIDI PYRENEES - F3 NORD - F3 NOA - F3 PARIS IDF - F3 PAYS DE LA LOIRE - F3 PICARDIE - F3 POITOU CHARENT - F3 PROVENCE ALPES - F3 RHONE ALPES - FRANCE 3 - FRANCE 4 - FRANCE 5 - FRANCE 24 ENG - FRANCE 24 - FRANCEINFO: - GAME ONE - GOLF+ - GULLI - HISTOIRE TV - I24 NEWS - INFOSPORT+ - J-ONE - LA CHAINE METEO - LA TELE - LCI - LCP - LEMAN BLEU - L'EQUIPE - CARAC3 - M6 - M6 MUSIC - MANGAS - MAN X - MCM - MELODY - MEZZO - MEZZO LIVE - MGG TV - MTV - MULTISPORTS 1 - MULTISPORTS 2 - MULTISPORTS 3 - MULTISPORTS 4 - MULTISPORTS 5 - MULTISPORTS 6 - NICKELODEON - NICKELODEON JUNIOR - NICKTOONS - NOVELAS TV - NRJ HITS - OLYMPIA TV - CARAC2 - ORF 1 - PARAMOUNT NETWORK - PARIS PREMIERE - PINK X - PIWI+ - PLANETE+ - PLANETE+AVENTURE - PLANETE+CRIME - POLAR+ - RFM TV - RMC DECOUVERTE - RMC SPORT 1 - RMC SPORT 2 - RMC STORY - CARAC1 - RTL9 - SEASONS - SERIE CLUB - SRF 1 - TELEBIELINGUE - TELETOON+1 - TELETOON+ - TEVA - TF1 - TF1 SERIES FILMS - TFX - TIJI - TMC - TOUTE L'HISTOIRE - TRACE LATINA - TRACE URBAN - TV5 MONDE - TV BREIZH - USHUAIA TV - VIXEN - W9 - XXL diff --git a/sites/canalplus.com/canalplus.com_ga.channels.xml b/sites/canalplus.com/canalplus.com_ga.channels.xml index 60431bf8a..09daf682e 100644 --- a/sites/canalplus.com/canalplus.com_ga.channels.xml +++ b/sites/canalplus.com/canalplus.com_ga.channels.xml @@ -22,6 +22,7 @@ BOSOLO TV RTCE MALAIKA TV + HK6 HERITAGE TV E! Bukedde TV @@ -34,6 +35,8 @@ France 2 INT MANGAS RTB ZENITH + HOPE TV + RTNK MEZZO HOREB TV MTV France @@ -52,12 +55,13 @@ AFRIKINFO TV EVANGILE TV REFLET TV - TRACE CHRISTMAS TOUBA TV TELEMUSIK SENEGAL MOURCHID TV + TELE-ECOLE AL MOURIDIYYAH TV MALIKIA TV + CANAL EDUCATION FULBE TF1 KAYES TV @@ -65,7 +69,6 @@ TMC SEGOU TV SUNNA TV SAVANA - CANAL+ CAN GO TV HUSTLER HD TROPIC TV @@ -77,9 +80,11 @@ GALAXIE TELE FRANCE 24 BALAFON TV + TAMBARIN HAUSA TV DASH TV BETV HTV BURUNDI + TPMP RTB 2STV ISIBO TV @@ -116,8 +121,8 @@ TELE CONGO BENIN TV HD RTNC - CANAL+ CAN IVOIRE PRIVATE TV + WILDEARTH TPT+ TRACE AFRICA AFRIQUE VOIR+ @@ -142,6 +147,7 @@ M7 RTB 3 TV AL HOUDA + JES TV SUNNA TV ZARMA TAURARUWA FOR YOU TV @@ -149,6 +155,7 @@ TRACE MBOA SUN+ TV TV+ AFRIQUE + LPC NOLLYWOOD TV RTI2 TV TOGO @@ -163,18 +170,18 @@ CONGO 26 ISHUSHO TV MRTV - CHIF TV + SHIF TV GC7 GC2 GC6 ESPERANCE TV BUJA TV AL JAZEERA ENG - BET (ENG) + BET ENG UNIVERSAL GC1 SHADOW TV - C+ MAGIC + CANAL+ ELLES PARAMOUNT NETWORK SS FOOTBALL PLUS HD SS FOOTBALL HD @@ -199,6 +206,7 @@ BBLACK AFRICA TELE FONTAINE VIE CNN + TLC CARTOON NETWORK CARTOONITO BOOMERANG @@ -209,9 +217,11 @@ RTB 3 dupli TVCA RTB dupli + TOZALI TV LUMEN CHRISTI PRC JESUS 24 TV + SUNNA TV CH3 CH4 PARLEMENT TV @@ -223,30 +233,17 @@ BCN TV BRIK TV AL NASSR - BENIN TV ALAFIA - ACTIVATION NETFLIX - DNTV - AFRICA MAGIC HAUSA - AFRICA MAGIC YORUBA - MAISHA MAGIC EAST - MAISHA MAGIC PLUS - TEST AFRIQUE - MIEUX - EUROPE 2 POP TV GULLI AFRICA NOVELAS TV - TRACE IVOIRE PACIS TV MY MEDIA PRIME SCIENCE ET VIE TV ENGLISH CLUB TV - ZEE ALWAN FASHION AFRICA TV SEN TV ASONGA TV DIGITAL CONGO TELE 50 - SS WWE DRTV TV MAURITANIE IMPACT TV @@ -255,24 +252,15 @@ BUSINESS 24 CANAL+ SPORT 4 CANAL+ SPORT 5 - VOIR+ RDC ZEE MAGIC ORTM2 EVASION TV RTD - GOLF+ HD - LOVE NATURE CANAL+ FAMILY OUEST ONE TV - CNEWS PRIME - EUROPE 1 TV - AES TV HD - MAISHA MAGIC BONGO - NATIONAL GEOGRAPHIC ENG - STUDIO UNIVERSAL SSM TV MCR TV - SUPERSPORT ACTION + OMEGA TV AFRICANEWS E-TELEVISION ESPACE TV @@ -290,11 +278,12 @@ TREK J-ONE BANTAMBA TV + TRACE MZIKI CNBC AFRICA WALF TV LTM MEDI1 TV - CNEWS PRIME + CH1 IVOIRE TV Music UNIVERS TV MIRACLE TV+ @@ -324,7 +313,7 @@ MUSEUM TV CANAL 2 MOVIES EMCI - EUROPE 1 TV + CH2 A+ IVOIRE Antenne VISION 4 RCA AREWA 24 @@ -342,11 +331,13 @@ TM1 TOUTE L HISTOIRE PSTV + FARIN WATA KC2 TV1 TV O FLASH TV ISANGO STAR TV + GENESIS TV BTN TV CARTOON NETWORK Africa SA TNT Africa @@ -361,7 +352,7 @@ LCA RENOUVEAU TV RTDS - BRAVO ENG + E! ENG TELEMUNDO AFRICA MAGIC EPIC ZEE WORLD @@ -370,7 +361,7 @@ AFRICA MAGIC SHOWCASE MNET MOVIES 3 MNET MOVIES 4 - DISCOVERY CHANNEL ENG + DISCOVER CHANNEL ENG SS EPL SS LA LIGA CANAL 3 BURKINA @@ -384,7 +375,9 @@ TVC DOUNIA BONFEREY + SUNNA TV TVGE + CAPITAL SANTE TV MIKUBA TV LUDIKIDS OI VIXEN diff --git a/sites/canalplus.com/canalplus.com_gf.channels.xml b/sites/canalplus.com/canalplus.com_gf.channels.xml index d45e43789..cd650dd5a 100644 --- a/sites/canalplus.com/canalplus.com_gf.channels.xml +++ b/sites/canalplus.com/canalplus.com_gf.channels.xml @@ -10,39 +10,34 @@ PUNCH TV CANAL J CANAL+ HD - CANAL+ CINEMA(S) HD - CNEWS PRIME - EUROPE 1 TV + CANAL+ CINEMA(S) + DAZN 1 + DAZN 2 DAZN 3 DAZN 4 DAZN 5 CNN - CANAL+SPORT HD + CANAL+ SPORT HD EMCI - CINE+FESTIVAL - CINE+EMOTION - CINE+FAMILY - CINE+FRISSON HD + CINE+ FESTIVAL + CINE+ EMOTION + CINE+ FAMILY + CINE+ FRISSON HD OCS HD EVANGILE TV MANGAS - T18 COMEDIE+ - NOVO19 E! ENTERTAINMENT - EQUIDIA HD + EQUIDIA LIVE ESPN - MIEUX - EUROPE 2 POP TV EUROSPORT 1 HD EUROSPORT 2 HD - RADIO TELE ECLAIR FRANCE 3 FRANCE 5 CNEWS INFOSPORT+ LCI - LCP + LCP ASSEMBLEE NATIONALE L'EQUIPE M6 HD MTV France @@ -66,9 +61,10 @@ XXL FRANCE 24 BEIN SPORTS 1 HD + TPMP PIWI+ GAME ONE - USHUAIA TVHD + USHUAÏA TV W9 PLANETE+ CRIME GULLI @@ -82,6 +78,7 @@ FRANCE 2 FRANCE 4 KMT + NRJ 12 CSTAR NICKELODEON TV GLOBO @@ -99,25 +96,25 @@ HUSTLER TV Métropole CANAL+ SERIES HD - CINE+CLASSIC + CINE + CLASSIC BEIN SPORTS 3 HD - C+SPORT AYITI 1 HD - C+SPORT AYITI 2 + CANAL+ SPORT AYITI 1 + HAITI SPORT 2 HBO HBO Family HBO XTREME ENGLISH CLUB TV - CANAL+KIDS HD + CANAL+ KIDS HD GOLF+ A+ NOLLYWOOD TV france CANAL SONY TV CARAIBES - RMC LIFE + CHERIE 25 CARTOON NETWORK BOOMERANG - CANAL+SPORT360 HD - CANAL+FOOT HD + CANAL+ SPORT 360 + CANAL+ FOOT NOVELAS TV BBLACK CARIBBEAN BEIN SPORTS MAX 4 @@ -148,7 +145,7 @@ TELEMUNDO TOUTE L HISTOIRE OLYMPIA TV - CANAL+PREMIER LEAGUE + CANAL+ PREMIER LEAGUE EVENEMENT 4K ZITATA TV LUDIKIDS OI @@ -156,7 +153,7 @@ TELE SOLEIL GRAPHE TV NICKELODEON JR - STUDIOCANAL TV + STUDIOCANAL NATHAN+ TROTTERS TV FUSION TV @@ -164,10 +161,11 @@ BFM TV BFM BUSINESS RMC STORY - CANAL+AYITI HD + CANAL+ AYITI CANAL EVENEMENT CARA SPORT EN FRANCE - CANAL+DOCS + CANAL+ DOCS + TRAVEL XP CHEVAL TV MEZZO LIVE RMC DECOUVERTE diff --git a/sites/canalplus.com/canalplus.com_gh.channels.xml b/sites/canalplus.com/canalplus.com_gh.channels.xml index 7dd4e4537..ac8e78f07 100644 --- a/sites/canalplus.com/canalplus.com_gh.channels.xml +++ b/sites/canalplus.com/canalplus.com_gh.channels.xml @@ -22,6 +22,7 @@ BOSOLO TV RTCE MALAIKA TV + HK6 HERITAGE TV E! Bukedde TV @@ -34,6 +35,8 @@ France 2 INT MANGAS RTB ZENITH + HOPE TV + RTNK MEZZO HOREB TV MTV France @@ -52,12 +55,13 @@ AFRIKINFO TV EVANGILE TV REFLET TV - TRACE CHRISTMAS TOUBA TV TELEMUSIK SENEGAL MOURCHID TV + TELE-ECOLE AL MOURIDIYYAH TV MALIKIA TV + CANAL EDUCATION FULBE TF1 KAYES TV @@ -65,7 +69,6 @@ TMC SEGOU TV SUNNA TV SAVANA - CANAL+ CAN GO TV HUSTLER HD TROPIC TV @@ -77,9 +80,11 @@ GALAXIE TELE FRANCE 24 BALAFON TV + TAMBARIN HAUSA TV DASH TV BETV HTV BURUNDI + TPMP RTB 2STV ISIBO TV @@ -116,8 +121,8 @@ TELE CONGO BENIN TV HD RTNC - CANAL+ CAN IVOIRE PRIVATE TV + WILDEARTH TPT+ TRACE AFRICA AFRIQUE VOIR+ @@ -142,6 +147,7 @@ M7 RTB 3 TV AL HOUDA + JES TV SUNNA TV ZARMA TAURARUWA FOR YOU TV @@ -149,6 +155,7 @@ TRACE MBOA SUN+ TV TV+ AFRIQUE + LPC NOLLYWOOD TV RTI2 TV TOGO @@ -163,18 +170,18 @@ CONGO 26 ISHUSHO TV MRTV - CHIF TV + SHIF TV GC7 GC2 GC6 ESPERANCE TV BUJA TV AL JAZEERA ENG - BET (ENG) + BET ENG UNIVERSAL GC1 SHADOW TV - C+ MAGIC + CANAL+ ELLES PARAMOUNT NETWORK SS FOOTBALL PLUS HD SS FOOTBALL HD @@ -199,6 +206,7 @@ BBLACK AFRICA TELE FONTAINE VIE CNN + TLC CARTOON NETWORK CARTOONITO BOOMERANG @@ -209,9 +217,11 @@ RTB 3 dupli TVCA RTB dupli + TOZALI TV LUMEN CHRISTI PRC JESUS 24 TV + SUNNA TV CH3 CH4 PARLEMENT TV @@ -223,30 +233,17 @@ BCN TV BRIK TV AL NASSR - BENIN TV ALAFIA - ACTIVATION NETFLIX - DNTV - AFRICA MAGIC HAUSA - AFRICA MAGIC YORUBA - MAISHA MAGIC EAST - MAISHA MAGIC PLUS - TEST AFRIQUE - MIEUX - EUROPE 2 POP TV GULLI AFRICA NOVELAS TV - TRACE IVOIRE PACIS TV MY MEDIA PRIME SCIENCE ET VIE TV ENGLISH CLUB TV - ZEE ALWAN FASHION AFRICA TV SEN TV ASONGA TV DIGITAL CONGO TELE 50 - SS WWE DRTV TV MAURITANIE IMPACT TV @@ -255,24 +252,15 @@ BUSINESS 24 CANAL+ SPORT 4 CANAL+ SPORT 5 - VOIR+ RDC ZEE MAGIC ORTM2 EVASION TV RTD - GOLF+ HD - LOVE NATURE CANAL+ FAMILY OUEST ONE TV - CNEWS PRIME - EUROPE 1 TV - AES TV HD - MAISHA MAGIC BONGO - NATIONAL GEOGRAPHIC ENG - STUDIO UNIVERSAL SSM TV MCR TV - SUPERSPORT ACTION + OMEGA TV AFRICANEWS E-TELEVISION ESPACE TV @@ -290,11 +278,12 @@ TREK J-ONE BANTAMBA TV + TRACE MZIKI CNBC AFRICA WALF TV LTM MEDI1 TV - CNEWS PRIME + CH1 IVOIRE TV Music UNIVERS TV MIRACLE TV+ @@ -324,7 +313,7 @@ MUSEUM TV CANAL 2 MOVIES EMCI - EUROPE 1 TV + CH2 A+ IVOIRE Antenne VISION 4 RCA AREWA 24 @@ -342,11 +331,13 @@ TM1 TOUTE L HISTOIRE PSTV + FARIN WATA KC2 TV1 TV O FLASH TV ISANGO STAR TV + GENESIS TV BTN TV CARTOON NETWORK Africa SA TNT Africa @@ -361,7 +352,7 @@ LCA RENOUVEAU TV RTDS - BRAVO ENG + E! ENG TELEMUNDO AFRICA MAGIC EPIC ZEE WORLD @@ -370,7 +361,7 @@ AFRICA MAGIC SHOWCASE MNET MOVIES 3 MNET MOVIES 4 - DISCOVERY CHANNEL ENG + DISCOVER CHANNEL ENG SS EPL SS LA LIGA CANAL 3 BURKINA @@ -384,7 +375,9 @@ TVC DOUNIA BONFEREY + SUNNA TV TVGE + CAPITAL SANTE TV MIKUBA TV LUDIKIDS OI VIXEN diff --git a/sites/canalplus.com/canalplus.com_gm.channels.xml b/sites/canalplus.com/canalplus.com_gm.channels.xml index c92db80a6..13dbd94f5 100644 --- a/sites/canalplus.com/canalplus.com_gm.channels.xml +++ b/sites/canalplus.com/canalplus.com_gm.channels.xml @@ -22,6 +22,7 @@ BOSOLO TV RTCE MALAIKA TV + HK6 HERITAGE TV E! Bukedde TV @@ -34,6 +35,8 @@ France 2 INT MANGAS RTB ZENITH + HOPE TV + RTNK MEZZO HOREB TV MTV France @@ -52,12 +55,13 @@ AFRIKINFO TV EVANGILE TV REFLET TV - TRACE CHRISTMAS TOUBA TV TELEMUSIK SENEGAL MOURCHID TV + TELE-ECOLE AL MOURIDIYYAH TV MALIKIA TV + CANAL EDUCATION FULBE TF1 KAYES TV @@ -65,7 +69,6 @@ TMC SEGOU TV SUNNA TV SAVANA - CANAL+ CAN GO TV HUSTLER HD TROPIC TV @@ -77,9 +80,11 @@ GALAXIE TELE FRANCE 24 BALAFON TV + TAMBARIN HAUSA TV DASH TV BETV HTV BURUNDI + TPMP RTB 2STV ISIBO TV @@ -116,8 +121,8 @@ TELE CONGO BENIN TV HD RTNC - CANAL+ CAN IVOIRE PRIVATE TV + WILDEARTH TPT+ TRACE AFRICA AFRIQUE VOIR+ @@ -142,6 +147,7 @@ M7 RTB 3 TV AL HOUDA + JES TV SUNNA TV ZARMA TAURARUWA FOR YOU TV @@ -149,6 +155,7 @@ TRACE MBOA SUN+ TV TV+ AFRIQUE + LPC NOLLYWOOD TV RTI2 TV TOGO @@ -163,18 +170,18 @@ CONGO 26 ISHUSHO TV MRTV - CHIF TV + SHIF TV GC7 GC2 GC6 ESPERANCE TV BUJA TV AL JAZEERA ENG - BET (ENG) + BET ENG UNIVERSAL GC1 SHADOW TV - C+ MAGIC + CANAL+ ELLES PARAMOUNT NETWORK SS FOOTBALL PLUS HD SS FOOTBALL HD @@ -199,6 +206,7 @@ BBLACK AFRICA TELE FONTAINE VIE CNN + TLC CARTOON NETWORK CARTOONITO BOOMERANG @@ -209,9 +217,11 @@ RTB 3 dupli TVCA RTB dupli + TOZALI TV LUMEN CHRISTI PRC JESUS 24 TV + SUNNA TV CH3 CH4 PARLEMENT TV @@ -223,30 +233,17 @@ BCN TV BRIK TV AL NASSR - BENIN TV ALAFIA - ACTIVATION NETFLIX - DNTV - AFRICA MAGIC HAUSA - AFRICA MAGIC YORUBA - MAISHA MAGIC EAST - MAISHA MAGIC PLUS - TEST AFRIQUE - MIEUX - EUROPE 2 POP TV GULLI AFRICA NOVELAS TV - TRACE IVOIRE PACIS TV MY MEDIA PRIME SCIENCE ET VIE TV ENGLISH CLUB TV - ZEE ALWAN FASHION AFRICA TV SEN TV ASONGA TV DIGITAL CONGO TELE 50 - SS WWE DRTV TV MAURITANIE IMPACT TV @@ -255,24 +252,15 @@ BUSINESS 24 CANAL+ SPORT 4 CANAL+ SPORT 5 - VOIR+ RDC ZEE MAGIC ORTM2 EVASION TV RTD - GOLF+ HD - LOVE NATURE CANAL+ FAMILY OUEST ONE TV - CNEWS PRIME - EUROPE 1 TV - AES TV HD - MAISHA MAGIC BONGO - NATIONAL GEOGRAPHIC ENG - STUDIO UNIVERSAL SSM TV MCR TV - SUPERSPORT ACTION + OMEGA TV AFRICANEWS E-TELEVISION ESPACE TV @@ -290,11 +278,12 @@ TREK J-ONE BANTAMBA TV + TRACE MZIKI CNBC AFRICA WALF TV LTM MEDI1 TV - CNEWS PRIME + CH1 IVOIRE TV Music UNIVERS TV MIRACLE TV+ @@ -324,7 +313,7 @@ MUSEUM TV CANAL 2 MOVIES EMCI - EUROPE 1 TV + CH2 A+ IVOIRE Antenne VISION 4 RCA AREWA 24 @@ -342,11 +331,13 @@ TM1 TOUTE L HISTOIRE PSTV + FARIN WATA KC2 TV1 TV O FLASH TV ISANGO STAR TV + GENESIS TV BTN TV CARTOON NETWORK Africa SA TNT Africa @@ -361,7 +352,7 @@ LCA RENOUVEAU TV RTDS - BRAVO ENG + E! ENG TELEMUNDO AFRICA MAGIC EPIC ZEE WORLD @@ -370,7 +361,7 @@ AFRICA MAGIC SHOWCASE MNET MOVIES 3 MNET MOVIES 4 - DISCOVERY CHANNEL ENG + DISCOVER CHANNEL ENG SS EPL SS LA LIGA CANAL 3 BURKINA @@ -384,7 +375,9 @@ TVC DOUNIA BONFEREY + SUNNA TV TVGE + CAPITAL SANTE TV MIKUBA TV LUDIKIDS OI VIXEN diff --git a/sites/canalplus.com/canalplus.com_gn.channels.xml b/sites/canalplus.com/canalplus.com_gn.channels.xml index cc6757c82..c1a45e448 100644 --- a/sites/canalplus.com/canalplus.com_gn.channels.xml +++ b/sites/canalplus.com/canalplus.com_gn.channels.xml @@ -22,6 +22,7 @@ BOSOLO TV RTCE MALAIKA TV + HK6 HERITAGE TV E! Bukedde TV @@ -34,6 +35,8 @@ France 2 INT MANGAS RTB ZENITH + HOPE TV + RTNK MEZZO HOREB TV MTV France @@ -52,12 +55,13 @@ AFRIKINFO TV EVANGILE TV REFLET TV - TRACE CHRISTMAS TOUBA TV TELEMUSIK SENEGAL MOURCHID TV + TELE-ECOLE AL MOURIDIYYAH TV MALIKIA TV + CANAL EDUCATION FULBE TF1 KAYES TV @@ -65,7 +69,6 @@ TMC SEGOU TV SUNNA TV SAVANA - CANAL+ CAN GO TV HUSTLER HD TROPIC TV @@ -77,9 +80,11 @@ GALAXIE TELE FRANCE 24 BALAFON TV + TAMBARIN HAUSA TV DASH TV BETV HTV BURUNDI + TPMP RTB 2STV ISIBO TV @@ -116,8 +121,8 @@ TELE CONGO BENIN TV HD RTNC - CANAL+ CAN IVOIRE PRIVATE TV + WILDEARTH TPT+ TRACE AFRICA AFRIQUE VOIR+ @@ -142,6 +147,7 @@ M7 RTB 3 TV AL HOUDA + JES TV SUNNA TV ZARMA TAURARUWA FOR YOU TV @@ -149,6 +155,7 @@ TRACE MBOA SUN+ TV TV+ AFRIQUE + LPC NOLLYWOOD TV RTI2 TV TOGO @@ -163,18 +170,18 @@ CONGO 26 ISHUSHO TV MRTV - CHIF TV + SHIF TV GC7 GC2 GC6 ESPERANCE TV BUJA TV AL JAZEERA ENG - BET (ENG) + BET ENG UNIVERSAL GC1 SHADOW TV - C+ MAGIC + CANAL+ ELLES PARAMOUNT NETWORK SS FOOTBALL PLUS HD SS FOOTBALL HD @@ -199,6 +206,7 @@ BBLACK AFRICA TELE FONTAINE VIE CNN + TLC CARTOON NETWORK CARTOONITO BOOMERANG @@ -209,9 +217,11 @@ RTB 3 dupli TVCA RTB dupli + TOZALI TV LUMEN CHRISTI PRC JESUS 24 TV + SUNNA TV CH3 CH4 PARLEMENT TV @@ -223,30 +233,17 @@ BCN TV BRIK TV AL NASSR - BENIN TV ALAFIA - ACTIVATION NETFLIX - DNTV - AFRICA MAGIC HAUSA - AFRICA MAGIC YORUBA - MAISHA MAGIC EAST - MAISHA MAGIC PLUS - TEST AFRIQUE - MIEUX - EUROPE 2 POP TV GULLI AFRICA NOVELAS TV - TRACE IVOIRE PACIS TV MY MEDIA PRIME SCIENCE ET VIE TV ENGLISH CLUB TV - ZEE ALWAN FASHION AFRICA TV SEN TV ASONGA TV DIGITAL CONGO TELE 50 - SS WWE DRTV TV MAURITANIE IMPACT TV @@ -255,24 +252,15 @@ BUSINESS 24 CANAL+ SPORT 4 CANAL+ SPORT 5 - VOIR+ RDC ZEE MAGIC ORTM2 EVASION TV RTD - GOLF+ HD - LOVE NATURE CANAL+ FAMILY OUEST ONE TV - CNEWS PRIME - EUROPE 1 TV - AES TV HD - MAISHA MAGIC BONGO - NATIONAL GEOGRAPHIC ENG - STUDIO UNIVERSAL SSM TV MCR TV - SUPERSPORT ACTION + OMEGA TV AFRICANEWS E-TELEVISION ESPACE TV @@ -290,11 +278,12 @@ TREK J-ONE BANTAMBA TV + TRACE MZIKI CNBC AFRICA WALF TV LTM MEDI1 TV - CNEWS PRIME + CH1 IVOIRE TV Music UNIVERS TV MIRACLE TV+ @@ -324,7 +313,7 @@ MUSEUM TV CANAL 2 MOVIES EMCI - EUROPE 1 TV + CH2 A+ IVOIRE Antenne VISION 4 RCA AREWA 24 @@ -342,11 +331,13 @@ TM1 TOUTE L HISTOIRE PSTV + FARIN WATA KC2 TV1 TV O FLASH TV ISANGO STAR TV + GENESIS TV BTN TV CARTOON NETWORK Africa SA TNT Africa @@ -361,7 +352,7 @@ LCA RENOUVEAU TV RTDS - BRAVO ENG + E! ENG TELEMUNDO AFRICA MAGIC EPIC ZEE WORLD @@ -370,7 +361,7 @@ AFRICA MAGIC SHOWCASE MNET MOVIES 3 MNET MOVIES 4 - DISCOVERY CHANNEL ENG + DISCOVER CHANNEL ENG SS EPL SS LA LIGA CANAL 3 BURKINA @@ -384,7 +375,9 @@ TVC DOUNIA BONFEREY + SUNNA TV TVGE + CAPITAL SANTE TV MIKUBA TV LUDIKIDS OI VIXEN diff --git a/sites/canalplus.com/canalplus.com_gp.channels.xml b/sites/canalplus.com/canalplus.com_gp.channels.xml index befbc24da..460bc2ca0 100644 --- a/sites/canalplus.com/canalplus.com_gp.channels.xml +++ b/sites/canalplus.com/canalplus.com_gp.channels.xml @@ -22,6 +22,7 @@ BOSOLO TV RTCE MALAIKA TV + HK6 HERITAGE TV E! Bukedde TV @@ -34,6 +35,8 @@ France 2 INT MANGAS RTB ZENITH + HOPE TV + RTNK MEZZO HOREB TV MTV France @@ -52,12 +55,13 @@ AFRIKINFO TV EVANGILE TV REFLET TV - TRACE CHRISTMAS TOUBA TV TELEMUSIK SENEGAL MOURCHID TV + TELE-ECOLE AL MOURIDIYYAH TV MALIKIA TV + CANAL EDUCATION FULBE TF1 KAYES TV @@ -65,7 +69,6 @@ TMC SEGOU TV SUNNA TV SAVANA - CANAL+ CAN GO TV HUSTLER HD TROPIC TV @@ -77,9 +80,11 @@ GALAXIE TELE FRANCE 24 BALAFON TV + TAMBARIN HAUSA TV DASH TV BETV HTV BURUNDI + TPMP RTB 2STV ISIBO TV @@ -116,8 +121,8 @@ TELE CONGO BENIN TV HD RTNC - CANAL+ CAN IVOIRE PRIVATE TV + WILDEARTH TPT+ TRACE AFRICA AFRIQUE VOIR+ @@ -142,6 +147,7 @@ M7 RTB 3 TV AL HOUDA + JES TV SUNNA TV ZARMA TAURARUWA FOR YOU TV @@ -149,6 +155,7 @@ TRACE MBOA SUN+ TV TV+ AFRIQUE + LPC NOLLYWOOD TV RTI2 TV TOGO @@ -163,18 +170,18 @@ CONGO 26 ISHUSHO TV MRTV - CHIF TV + SHIF TV GC7 GC2 GC6 ESPERANCE TV BUJA TV AL JAZEERA ENG - BET (ENG) + BET ENG UNIVERSAL GC1 SHADOW TV - C+ MAGIC + CANAL+ ELLES PARAMOUNT NETWORK SS FOOTBALL PLUS HD SS FOOTBALL HD @@ -199,6 +206,7 @@ BBLACK AFRICA TELE FONTAINE VIE CNN + TLC CARTOON NETWORK CARTOONITO BOOMERANG @@ -209,9 +217,11 @@ RTB 3 dupli TVCA RTB dupli + TOZALI TV LUMEN CHRISTI PRC JESUS 24 TV + SUNNA TV CH3 CH4 PARLEMENT TV @@ -223,30 +233,17 @@ BCN TV BRIK TV AL NASSR - BENIN TV ALAFIA - ACTIVATION NETFLIX - DNTV - AFRICA MAGIC HAUSA - AFRICA MAGIC YORUBA - MAISHA MAGIC EAST - MAISHA MAGIC PLUS - TEST AFRIQUE - MIEUX - EUROPE 2 POP TV GULLI AFRICA NOVELAS TV - TRACE IVOIRE PACIS TV MY MEDIA PRIME SCIENCE ET VIE TV ENGLISH CLUB TV - ZEE ALWAN FASHION AFRICA TV SEN TV ASONGA TV DIGITAL CONGO TELE 50 - SS WWE DRTV TV MAURITANIE IMPACT TV @@ -255,24 +252,15 @@ BUSINESS 24 CANAL+ SPORT 4 CANAL+ SPORT 5 - VOIR+ RDC ZEE MAGIC ORTM2 EVASION TV RTD - GOLF+ HD - LOVE NATURE CANAL+ FAMILY OUEST ONE TV - CNEWS PRIME - EUROPE 1 TV - AES TV HD - MAISHA MAGIC BONGO - NATIONAL GEOGRAPHIC ENG - STUDIO UNIVERSAL SSM TV MCR TV - SUPERSPORT ACTION + OMEGA TV AFRICANEWS E-TELEVISION ESPACE TV @@ -290,11 +278,12 @@ TREK J-ONE BANTAMBA TV + TRACE MZIKI CNBC AFRICA WALF TV LTM MEDI1 TV - CNEWS PRIME + CH1 IVOIRE TV Music UNIVERS TV MIRACLE TV+ @@ -324,7 +313,7 @@ MUSEUM TV CANAL 2 MOVIES EMCI - EUROPE 1 TV + CH2 A+ IVOIRE Antenne VISION 4 RCA AREWA 24 @@ -342,11 +331,13 @@ TM1 TOUTE L HISTOIRE PSTV + FARIN WATA KC2 TV1 TV O FLASH TV ISANGO STAR TV + GENESIS TV BTN TV CARTOON NETWORK Africa SA TNT Africa @@ -361,7 +352,7 @@ LCA RENOUVEAU TV RTDS - BRAVO ENG + E! ENG TELEMUNDO AFRICA MAGIC EPIC ZEE WORLD @@ -370,7 +361,7 @@ AFRICA MAGIC SHOWCASE MNET MOVIES 3 MNET MOVIES 4 - DISCOVERY CHANNEL ENG + DISCOVER CHANNEL ENG SS EPL SS LA LIGA CANAL 3 BURKINA @@ -384,7 +375,9 @@ TVC DOUNIA BONFEREY + SUNNA TV TVGE + CAPITAL SANTE TV MIKUBA TV LUDIKIDS OI VIXEN diff --git a/sites/canalplus.com/canalplus.com_gw.channels.xml b/sites/canalplus.com/canalplus.com_gw.channels.xml index 285245493..431a341c8 100644 --- a/sites/canalplus.com/canalplus.com_gw.channels.xml +++ b/sites/canalplus.com/canalplus.com_gw.channels.xml @@ -22,6 +22,7 @@ BOSOLO TV RTCE MALAIKA TV + HK6 HERITAGE TV E! Bukedde TV @@ -34,6 +35,8 @@ France 2 INT MANGAS RTB ZENITH + HOPE TV + RTNK MEZZO HOREB TV MTV France @@ -52,12 +55,13 @@ AFRIKINFO TV EVANGILE TV REFLET TV - TRACE CHRISTMAS TOUBA TV TELEMUSIK SENEGAL MOURCHID TV + TELE-ECOLE AL MOURIDIYYAH TV MALIKIA TV + CANAL EDUCATION FULBE TF1 KAYES TV @@ -65,7 +69,6 @@ TMC SEGOU TV SUNNA TV SAVANA - CANAL+ CAN GO TV HUSTLER HD TROPIC TV @@ -77,9 +80,11 @@ GALAXIE TELE FRANCE 24 BALAFON TV + TAMBARIN HAUSA TV DASH TV BETV HTV BURUNDI + TPMP RTB 2STV ISIBO TV @@ -116,8 +121,8 @@ TELE CONGO BENIN TV HD RTNC - CANAL+ CAN IVOIRE PRIVATE TV + WILDEARTH TPT+ TRACE AFRICA AFRIQUE VOIR+ @@ -142,6 +147,7 @@ M7 RTB 3 TV AL HOUDA + JES TV SUNNA TV ZARMA TAURARUWA FOR YOU TV @@ -149,6 +155,7 @@ TRACE MBOA SUN+ TV TV+ AFRIQUE + LPC NOLLYWOOD TV RTI2 TV TOGO @@ -163,18 +170,18 @@ CONGO 26 ISHUSHO TV MRTV - CHIF TV + SHIF TV GC7 GC2 GC6 ESPERANCE TV BUJA TV AL JAZEERA ENG - BET (ENG) + BET ENG UNIVERSAL GC1 SHADOW TV - C+ MAGIC + CANAL+ ELLES PARAMOUNT NETWORK SS FOOTBALL PLUS HD SS FOOTBALL HD @@ -199,6 +206,7 @@ BBLACK AFRICA TELE FONTAINE VIE CNN + TLC CARTOON NETWORK CARTOONITO BOOMERANG @@ -209,9 +217,11 @@ RTB 3 dupli TVCA RTB dupli + TOZALI TV LUMEN CHRISTI PRC JESUS 24 TV + SUNNA TV CH3 CH4 PARLEMENT TV @@ -223,30 +233,17 @@ BCN TV BRIK TV AL NASSR - BENIN TV ALAFIA - ACTIVATION NETFLIX - DNTV - AFRICA MAGIC HAUSA - AFRICA MAGIC YORUBA - MAISHA MAGIC EAST - MAISHA MAGIC PLUS - TEST AFRIQUE - MIEUX - EUROPE 2 POP TV GULLI AFRICA NOVELAS TV - TRACE IVOIRE PACIS TV MY MEDIA PRIME SCIENCE ET VIE TV ENGLISH CLUB TV - ZEE ALWAN FASHION AFRICA TV SEN TV ASONGA TV DIGITAL CONGO TELE 50 - SS WWE DRTV TV MAURITANIE IMPACT TV @@ -255,24 +252,15 @@ BUSINESS 24 CANAL+ SPORT 4 CANAL+ SPORT 5 - VOIR+ RDC ZEE MAGIC ORTM2 EVASION TV RTD - GOLF+ HD - LOVE NATURE CANAL+ FAMILY OUEST ONE TV - CNEWS PRIME - EUROPE 1 TV - AES TV HD - MAISHA MAGIC BONGO - NATIONAL GEOGRAPHIC ENG - STUDIO UNIVERSAL SSM TV MCR TV - SUPERSPORT ACTION + OMEGA TV AFRICANEWS E-TELEVISION ESPACE TV @@ -290,11 +278,12 @@ TREK J-ONE BANTAMBA TV + TRACE MZIKI CNBC AFRICA WALF TV LTM MEDI1 TV - CNEWS PRIME + CH1 IVOIRE TV Music UNIVERS TV MIRACLE TV+ @@ -324,7 +313,7 @@ MUSEUM TV CANAL 2 MOVIES EMCI - EUROPE 1 TV + CH2 A+ IVOIRE Antenne VISION 4 RCA AREWA 24 @@ -342,11 +331,13 @@ TM1 TOUTE L HISTOIRE PSTV + FARIN WATA KC2 TV1 TV O FLASH TV ISANGO STAR TV + GENESIS TV BTN TV CARTOON NETWORK Africa SA TNT Africa @@ -361,7 +352,7 @@ LCA RENOUVEAU TV RTDS - BRAVO ENG + E! ENG TELEMUNDO AFRICA MAGIC EPIC ZEE WORLD @@ -370,7 +361,7 @@ AFRICA MAGIC SHOWCASE MNET MOVIES 3 MNET MOVIES 4 - DISCOVERY CHANNEL ENG + DISCOVER CHANNEL ENG SS EPL SS LA LIGA CANAL 3 BURKINA @@ -384,7 +375,9 @@ TVC DOUNIA BONFEREY + SUNNA TV TVGE + CAPITAL SANTE TV MIKUBA TV LUDIKIDS OI VIXEN diff --git a/sites/canalplus.com/canalplus.com_ht.channels.xml b/sites/canalplus.com/canalplus.com_ht.channels.xml index 86b3eda95..a6e50bdb4 100644 --- a/sites/canalplus.com/canalplus.com_ht.channels.xml +++ b/sites/canalplus.com/canalplus.com_ht.channels.xml @@ -10,39 +10,34 @@ PUNCH TV CANAL J CANAL+ HD - CANAL+ CINEMA(S) HD - CNEWS PRIME - EUROPE 1 TV + CANAL+ CINEMA(S) + DAZN 1 + DAZN 2 DAZN 3 DAZN 4 DAZN 5 CNN - CANAL+SPORT HD + CANAL+ SPORT HD EMCI - CINE+FESTIVAL - CINE+EMOTION - CINE+FAMILY - CINE+FRISSON HD + CINE+ FESTIVAL + CINE+ EMOTION + CINE+ FAMILY + CINE+ FRISSON HD OCS HD EVANGILE TV MANGAS - T18 COMEDIE+ - NOVO19 E! ENTERTAINMENT - EQUIDIA HD + EQUIDIA LIVE ESPN - MIEUX - EUROPE 2 POP TV EUROSPORT 1 HD EUROSPORT 2 HD - RADIO TELE ECLAIR FRANCE 3 FRANCE 5 CNEWS INFOSPORT+ LCI - LCP + LCP ASSEMBLEE NATIONALE L'EQUIPE M6 HD MTV France @@ -66,9 +61,10 @@ XXL FRANCE 24 BEIN SPORTS 1 HD + TPMP PIWI+ GAME ONE - USHUAIA TVHD + USHUAÏA TV W9 PLANETE+ CRIME GULLI @@ -82,6 +78,7 @@ FRANCE 2 FRANCE 4 KMT + NRJ 12 CSTAR NICKELODEON TV GLOBO @@ -99,25 +96,25 @@ HUSTLER TV Métropole CANAL+ SERIES HD - CINE+CLASSIC + CINE + CLASSIC BEIN SPORTS 3 HD - C+SPORT AYITI 1 HD - C+SPORT AYITI 2 + CANAL+ SPORT AYITI 1 + HAITI SPORT 2 HBO HBO Family HBO XTREME ENGLISH CLUB TV - CANAL+KIDS HD + CANAL+ KIDS HD GOLF+ A+ NOLLYWOOD TV france CANAL SONY TV CARAIBES - RMC LIFE + CHERIE 25 CARTOON NETWORK BOOMERANG - CANAL+SPORT360 HD - CANAL+FOOT HD + CANAL+ SPORT 360 + CANAL+ FOOT NOVELAS TV BBLACK CARIBBEAN BEIN SPORTS MAX 4 @@ -148,7 +145,7 @@ TELEMUNDO TOUTE L HISTOIRE OLYMPIA TV - CANAL+PREMIER LEAGUE + CANAL+ PREMIER LEAGUE EVENEMENT 4K ZITATA TV LUDIKIDS OI @@ -156,7 +153,7 @@ TELE SOLEIL GRAPHE TV NICKELODEON JR - STUDIOCANAL TV + STUDIOCANAL NATHAN+ TROTTERS TV FUSION TV @@ -164,10 +161,11 @@ BFM TV BFM BUSINESS RMC STORY - CANAL+AYITI HD + CANAL+ AYITI CANAL EVENEMENT CARA SPORT EN FRANCE - CANAL+DOCS + CANAL+ DOCS + TRAVEL XP CHEVAL TV MEZZO LIVE RMC DECOUVERTE diff --git a/sites/canalplus.com/canalplus.com_mf.channels.xml b/sites/canalplus.com/canalplus.com_mf.channels.xml index 615f9fca9..679b998c8 100644 --- a/sites/canalplus.com/canalplus.com_mf.channels.xml +++ b/sites/canalplus.com/canalplus.com_mf.channels.xml @@ -10,39 +10,34 @@ PUNCH TV CANAL J CANAL+ HD - CANAL+ CINEMA(S) HD - CNEWS PRIME - EUROPE 1 TV + CANAL+ CINEMA(S) + DAZN 1 + DAZN 2 DAZN 3 DAZN 4 DAZN 5 CNN - CANAL+SPORT HD + CANAL+ SPORT HD EMCI - CINE+FESTIVAL - CINE+EMOTION - CINE+FAMILY - CINE+FRISSON HD + CINE+ FESTIVAL + CINE+ EMOTION + CINE+ FAMILY + CINE+ FRISSON HD OCS HD EVANGILE TV MANGAS - T18 COMEDIE+ - NOVO19 E! ENTERTAINMENT - EQUIDIA HD + EQUIDIA LIVE ESPN - MIEUX - EUROPE 2 POP TV EUROSPORT 1 HD EUROSPORT 2 HD - RADIO TELE ECLAIR FRANCE 3 FRANCE 5 CNEWS INFOSPORT+ LCI - LCP + LCP ASSEMBLEE NATIONALE L'EQUIPE M6 HD MTV France @@ -66,9 +61,10 @@ XXL FRANCE 24 BEIN SPORTS 1 HD + TPMP PIWI+ GAME ONE - USHUAIA TVHD + USHUAÏA TV W9 PLANETE+ CRIME GULLI @@ -82,6 +78,7 @@ FRANCE 2 FRANCE 4 KMT + NRJ 12 CSTAR NICKELODEON TV GLOBO @@ -99,25 +96,25 @@ HUSTLER TV Métropole CANAL+ SERIES HD - CINE+CLASSIC + CINE + CLASSIC BEIN SPORTS 3 HD - C+SPORT AYITI 1 HD - C+SPORT AYITI 2 + CANAL+ SPORT AYITI 1 + HAITI SPORT 2 HBO HBO Family HBO XTREME ENGLISH CLUB TV - CANAL+KIDS HD + CANAL+ KIDS HD GOLF+ A+ NOLLYWOOD TV france CANAL SONY TV CARAIBES - RMC LIFE + CHERIE 25 CARTOON NETWORK BOOMERANG - CANAL+SPORT360 HD - CANAL+FOOT HD + CANAL+ SPORT 360 + CANAL+ FOOT NOVELAS TV BBLACK CARIBBEAN BEIN SPORTS MAX 4 @@ -148,7 +145,7 @@ TELEMUNDO TOUTE L HISTOIRE OLYMPIA TV - CANAL+PREMIER LEAGUE + CANAL+ PREMIER LEAGUE EVENEMENT 4K ZITATA TV LUDIKIDS OI @@ -156,7 +153,7 @@ TELE SOLEIL GRAPHE TV NICKELODEON JR - STUDIOCANAL TV + STUDIOCANAL NATHAN+ TROTTERS TV FUSION TV @@ -164,10 +161,11 @@ BFM TV BFM BUSINESS RMC STORY - CANAL+AYITI HD + CANAL+ AYITI CANAL EVENEMENT CARA SPORT EN FRANCE - CANAL+DOCS + CANAL+ DOCS + TRAVEL XP CHEVAL TV MEZZO LIVE RMC DECOUVERTE diff --git a/sites/canalplus.com/canalplus.com_mg.channels.xml b/sites/canalplus.com/canalplus.com_mg.channels.xml index 645fe2c6f..cff465c88 100644 --- a/sites/canalplus.com/canalplus.com_mg.channels.xml +++ b/sites/canalplus.com/canalplus.com_mg.channels.xml @@ -1,229 +1,392 @@ - MBC 1 - 13EME RUE - MBC 2 - ACTION - ANTENNE REUNION - MBC 3 - ARTE France - BBC NEWS - W-SPORT - MBC 4 - CANAL J - MBC 5 - MBC 11 - CANAL+ CINEMA(S) - MBC HD - PUNCH TV - CANAL+ - SPORT EN FRANCE - CANAL+ SPORT HD - CNN - CINE+ FESTIVAL - CINE+ EMOTION - CINE+ FAMILY - CINE+ FRISSON - OCS HD - EUROPE 1 TV - COMEDIE+ - E! ENTERTAINMENT - EQUIDIA - SS EPL - SS LA LIGA - SS FOOTBALL HD - EUROSPORT 1 HD - EUROSPORT 2 - SS FOOTBALL PLUS HD - AL JAZEERA ENG - FRANCE 3 - FRANCE 5 - BET (ENG) - CNEWS - TELEMUNDO DSTV - INFOSPORT+ - UNIVERSAL - MNET MOVIES 3 - MNET MOVIES 4 - LCI - LCP ASSEMBLEE NATIONALE - L'EQUIPE - M6 HD - DISCOVERY CHANNEL DSTV - ZEE WORLD DSTV - NICKELODEON DSTV - RFM TV - NICKELODEON JR (DSTV) - MEZZO - BRAVO - MTV France - AFR MAGIC EPIC - TFX - AFR MAGIC SHOW DSTV - GASYSPORT TV - PARIS PREMIERE - BEIN SPORTS MAX 6 - PLANETE+ - PLANETE+ AVENTURE - BEIN SPORTS MAX 7 - BEIN SPORTS MAX 8 - RTL9 - SYFY - SEASONS - SERIE CLUB - BEIN SPORTS MAX 9 - BEIN SPORTS MAX 10 - CANAL+ FAMILY - CANAL+ POP - CANAL+ MAGIC - MANGAS - PASSION BOLLYWOOD - REUNION 1ERE - TVM 2 - MALAGASY TV - KULTURA TV - REAL TV - MADI TV - TEVA - TF1 - T18 - MIEUX - TMC - CANAL+ CAN HD - EUROPE 2 POP TV - ACTIVATION NETFLIX - TRACE URBAN - SS WWE HD - TV BREIZH - TV5 MONDE (Afrique) - NATIONAL GEOGRAPHIC ENG - TV5 MONDE FR - STUDIO UNIVERSAL - XXL - FRANCE 24 - BEIN SPORTS 1 HD - ZEE CINEMA HD - ZING - ZEE TV - CANAL+ SPORT 2 HD - PIWI+ - GAME ONE - USHUAÏA TV - W9 - PLANETE+ CRIME - GULLI - MTV HITS - TELETOON+ - CANAL+ SPORT 3 HD - KANALAUSTRAL.TV - DORCEL HD - HISTOIRE - CANAL EVENEMENT INDO - AFRICA 24 - DISCOVERY CHANNEL - FRANCE 2 - TVMalgache - ORTComores - FRANCE 4 - TELE KREOL - MAYOTTE 1ERE - STARPLUS - TRACE AFRICA - CSTAR - COLORS - NICKELODEON - BEIN SPORTS 2 HD - CANAL+ BOX OFFICE - KTO - IQRAA - PENTHOUSE BLACK - STARGOLD - VOIR+ OCEAN INDIEN - PARAMOUNT NETWORK - HUSTLER - INFOSPORT+ AFR - CGTN-FRANCAIS - CANAL+ SERIES - CINE+ CLASSIC - TV PLUS - KOLO TV - VIVA - MTV India - MBC SAT - BEIN SPORTS 3 HD - ENGLISH CLUB TV - CANAL+ SPORT 4 - CANAL+ SPORT 5 HD - CANAL+ KIDS HD - RECORD - GOLF+ HD - A+ - NOLLYWOOD TV france - RMC LIFE - CARTOON NETWORK - BOOMERANG - CANAL+ SPORT 360 HD - CANAL+ FOOT - NOVELAS TV - BEIN SPORTS MAX 4 - BEIN SPORTS MAX 5 - SONY MAX - AUTOMOTO - TREK - PRIVATE - TF1 SERIES FILMS - 6TER - CANAL+ SPORT 1 HD - TEST DROM - TEST - C+ ACTION CENTRE - MUSEUM TV - MBS - DREAMIN - WARNER TV - WARNER TV NEXT - FRANCE INFO: - CUISINES - RTA - OLYMPIA TV - CANAL+ PREMIER LEAGUE - EVENEMENT 4K - NOVEGASY - TRACE VANILLA - LUDIKIDS OI - ZEE THIRAI - VIXEN - NICKELODEON JR - UTSAV BHARAT - NATHAN+ - BFM TV - BFM BUSINESS - RMC STORY - KWEZI - CANAL+ DOCS - CHEVAL TV - MEZZO LIVE - RMC DECOUVERTE - CARTOONITO - TLC - DISCOVERY INVESTIGATION - CANAL+LIVE 1 - CANAL+LIVE 2 - CANAL+LIVE 3 - CANAL+LIVE 4 - CANAL+LIVE 5 - CANAL+LIVE 6 - CANAL+LIVE 7 - CANAL+LIVE 8 - CANAL+LIVE 9 - CANAL+LIVE 10 - CANAL+LIVE 11 - CANAL+LIVE 12 - CANAL+LIVE 13 - CANAL+LIVE 14 - CANAL+LIVE 15 - CANAL+LIVE 16 - CANAL+LIVE 17 - CANAL+LIVE 18 - TCM CINEMA + 13EME RUE + GLOBAL AFRICA + AB1 + ZACU TV + AFRICA 24 INFINITY + ARTE France + BBC NEWS + AFRICA 24 SPORT + CRTV + W-SPORT + AFRICA 24 ENGLISH + LERAL TV + CANAL+ CINEMA OUEST + RTG2 + CANAL+ PREMIERE OUEST + KABACK TV + INFO TV + CAM10 + DBS + BOSOLO TV + RTCE + MALAIKA TV + HK6 + HERITAGE TV + E! + Bukedde TV + EURONEWS + FRANCE 3 + FRANCE 5 + SINEMA ZETU + CNEWS + LCI + France 2 INT + MANGAS + RTB ZENITH + HOPE TV + RTNK + MEZZO + HOREB TV + MTV France + TFX + KTN + ORTM1 + PLANETE+ + PLANETE+ AVENTURE + A+ BENIN + RTS + SYFY + TCHAD INFOS + SERIE CLUB + MTV LEBANON + PITCHOUN AFRICA + AFRIKINFO TV + EVANGILE TV + REFLET TV + TOUBA TV + TELEMUSIK SENEGAL + MOURCHID TV + TELE-ECOLE + AL MOURIDIYYAH TV + MALIKIA TV + CANAL EDUCATION + FULBE + TF1 + KAYES TV + TIJI + TMC + SEGOU TV + SUNNA TV SAVANA + GO TV + HUSTLER HD + TROPIC TV + TV5 MONDE (Afrique) + EDEN TV + XXL + TENERE + LABARI + GALAXIE TELE + FRANCE 24 + BALAFON TV + TAMBARIN HAUSA TV + DASH TV + BETV + HTV BURUNDI + TPMP + RTB + 2STV + ISIBO TV + CANAL+ SPORT 2 + CANAL+ CINEMA CENTRE + CHINGUIT TV + ELWATANIYA TV + PIWI+ + CANAL+ PREMIERE CENTRE + GAME ONE + USHUAÏA TV + EDUC TV + PLANETE+ CRIME + CANAL+ FAMILY CENTRE + TCHAD 24 + MTV HITS + TELETOON+ + CANAL+ SPORT 3 + DORCEL TV + HISTOIRE TV + RATELKI + AFRICABLE + AFRICA 24 + EQUINOXE TV + RTI 1 + CANAL 2 INTER + LIPTAKO TV + TRACE Urban Afrique + GABON 1ERE + 7TV + STV + VOX AFRICA + RTG + TELE CONGO + BENIN TV HD + RTNC + PRIVATE TV + WILDEARTH + TPT+ + TRACE AFRICA AFRIQUE + VOIR+ + CSTAR + CANAL EVENEMENT EASY + TOUMAI TV + TFM + TELE AFRICA + SENSATION TV + SARAOUNIA TV + RTL9 HD + ACTION HD + CANAL EVENEMENT AFRIQUE + NICKELODEON GLOBAL + NOVELAS TV HD (RDC) + RWANDA TV + MANDEKA HD + PULAAGU HD + LA GUINEE FE HD + BLOOMBERG ORIGINALS + EDUCA TV + M7 + RTB 3 + TV AL HOUDA + JES TV + SUNNA TV ZARMA + TAURARUWA + FOR YOU TV + MELODY D'AFRIQUE + TRACE MBOA + SUN+ TV + TV+ AFRIQUE + LPC + NOLLYWOOD TV + RTI2 + TV TOGO + B-ONE + TELE SAHEL + TV TCHAD + MAAJABU TV + AL JAZEERA + KTO + IQRAA + RTGA + CONGO 26 + ISHUSHO TV + MRTV + SHIF TV + GC7 + GC2 + GC6 + ESPERANCE TV + BUJA TV + AL JAZEERA ENG + BET ENG + UNIVERSAL + GC1 + SHADOW TV + CANAL+ ELLES + PARAMOUNT NETWORK + SS FOOTBALL PLUS HD + SS FOOTBALL HD + INFOSPORT+ + NHK WORLD TV + CGTN-FRANCAIS + SPORT EN FRANCE + PASSION BOLLYWOOD + C+ KIDS + CAVI MEDIAS + WEST AFRICA TV + FRANCE 24 EN + GTV + GULLI BIL ARABI + 2M + BNEWS + ANTENNE A + LMTV + CARREFOUR + BENIE TV + TV10 + BBLACK AFRICA + TELE FONTAINE VIE + CNN + TLC + CARTOON NETWORK + CARTOONITO + BOOMERANG + DISCOVERY CHANNEL + A+ + RTB ZENITH dupli + BF1 TV + RTB 3 dupli + TVCA + RTB dupli + TOZALI TV + LUMEN CHRISTI + PRC + JESUS 24 TV + SUNNA TV + CH3 + CH4 + PARLEMENT TV + NCA + DISCOVERY INVESTIGATION + LUTTE TV + PYRAMIDE TV + TV2 + BCN TV + BRIK TV + AL NASSR + GULLI AFRICA + NOVELAS TV + PACIS TV + MY MEDIA PRIME + SCIENCE ET VIE TV + ENGLISH CLUB TV + FASHION AFRICA TV + SEN TV + ASONGA TV + DIGITAL CONGO + TELE 50 + DRTV + TV MAURITANIE + IMPACT TV + ELECTRON TV + VISION 4 + BUSINESS 24 + CANAL+ SPORT 4 + CANAL+ SPORT 5 + ZEE MAGIC + ORTM2 + EVASION TV + RTD + CANAL+ FAMILY OUEST + ONE TV + SSM TV + MCR TV + OMEGA TV + AFRICANEWS + E-TELEVISION + ESPACE TV + GABON 24 + NYOTA + TELE 24 + TGB + JOLIBA + TIVI5 MONDE + CANAL 3 BENIN + NBA TV + BURKINA INFO + VOX TV + AUTOMOTO + TREK + J-ONE + BANTAMBA TV + TRACE MZIKI + CNBC AFRICA + WALF TV + LTM + MEDI1 TV + CH1 + IVOIRE TV Music + UNIVERS TV + MIRACLE TV+ + MANDE TV + NOLLYWOOD EPIC + CIS TV + ASFIYAHI + TF1 SERIES FILMS + MSI TV + TRACE GOSPEL + TRACE KITOKO + 3TV + CANAL+ SPORT 1 + CANAL+ ACTION CENTRE + MISHAPI + CANAL+ POP + LUX TV + KALAC TV + NIETA TV + CANAL+ ACTION OUEST + PENTHOUSE BLACK + SAVANE TV + MOLIERE TV + RTS 2 + CRTV NEWS + CHERIFLA TV + MUSEUM TV + CANAL 2 MOVIES + EMCI + CH2 + A+ IVOIRE Antenne + VISION 4 RCA + AREWA 24 + SAHARA TV + DORCEL TV AFRICA + SUNU YEUF + CUISINES + M6 INTERNATIONAL + TRACE TERANGA + NCI + RTNB + CRTV SPORT + GC4 + ITV + TM1 + TOUTE L HISTOIRE + PSTV + FARIN WATA + KC2 + TV1 + TV O + FLASH TV + ISANGO STAR TV + GENESIS TV + BTN TV + CARTOON NETWORK Africa SA + TNT Africa + ANIMAUX + CRIME DISTRICT + LA3 + LIFE TV + TV7 + CVK + CDIRECT + ALBAYANE + LCA + RENOUVEAU TV + RTDS + E! ENG + TELEMUNDO + AFRICA MAGIC EPIC + ZEE WORLD + NICKELODEON ENG + NICKELODEON JR ENG + AFRICA MAGIC SHOWCASE + MNET MOVIES 3 + MNET MOVIES 4 + DISCOVER CHANNEL ENG + SS EPL + SS LA LIGA + CANAL 3 BURKINA + VOIR+ COTE D IVOIRE + SUD 1ERE + 7INFO + GABON CULTURE + BLOOMBERG TV + LAMP FALL TV + ALAFIA TV + TVC + DOUNIA + BONFEREY + SUNNA TV + TVGE + CAPITAL SANTE TV + MIKUBA TV + LUDIKIDS OI + VIXEN + NICKELODEON JR + NATHAN+ + NOVELAS (Cameroun) + MADI TV + MABOKE TV + ECCLESIA TV + SOS DOCTEUR TV + CANAL+ DOCS diff --git a/sites/canalplus.com/canalplus.com_ml.channels.xml b/sites/canalplus.com/canalplus.com_ml.channels.xml index 7a5fab776..57433fd1a 100644 --- a/sites/canalplus.com/canalplus.com_ml.channels.xml +++ b/sites/canalplus.com/canalplus.com_ml.channels.xml @@ -22,6 +22,7 @@ BOSOLO TV RTCE MALAIKA TV + HK6 HERITAGE TV E! Bukedde TV @@ -34,6 +35,8 @@ France 2 INT MANGAS RTB ZENITH + HOPE TV + RTNK MEZZO HOREB TV MTV France @@ -52,12 +55,13 @@ AFRIKINFO TV EVANGILE TV REFLET TV - TRACE CHRISTMAS TOUBA TV TELEMUSIK SENEGAL MOURCHID TV + TELE-ECOLE AL MOURIDIYYAH TV MALIKIA TV + CANAL EDUCATION FULBE TF1 KAYES TV @@ -65,7 +69,6 @@ TMC SEGOU TV SUNNA TV SAVANA - CANAL+ CAN GO TV HUSTLER HD TROPIC TV @@ -77,9 +80,11 @@ GALAXIE TELE FRANCE 24 BALAFON TV + TAMBARIN HAUSA TV DASH TV BETV HTV BURUNDI + TPMP RTB 2STV ISIBO TV @@ -116,8 +121,8 @@ TELE CONGO BENIN TV HD RTNC - CANAL+ CAN IVOIRE PRIVATE TV + WILDEARTH TPT+ TRACE AFRICA AFRIQUE VOIR+ @@ -142,6 +147,7 @@ M7 RTB 3 TV AL HOUDA + JES TV SUNNA TV ZARMA TAURARUWA FOR YOU TV @@ -149,6 +155,7 @@ TRACE MBOA SUN+ TV TV+ AFRIQUE + LPC NOLLYWOOD TV RTI2 TV TOGO @@ -163,18 +170,18 @@ CONGO 26 ISHUSHO TV MRTV - CHIF TV + SHIF TV GC7 GC2 GC6 ESPERANCE TV BUJA TV AL JAZEERA ENG - BET (ENG) + BET ENG UNIVERSAL GC1 SHADOW TV - C+ MAGIC + CANAL+ ELLES PARAMOUNT NETWORK SS FOOTBALL PLUS HD SS FOOTBALL HD @@ -199,6 +206,7 @@ BBLACK AFRICA TELE FONTAINE VIE CNN + TLC CARTOON NETWORK CARTOONITO BOOMERANG @@ -209,9 +217,11 @@ RTB 3 dupli TVCA RTB dupli + TOZALI TV LUMEN CHRISTI PRC JESUS 24 TV + SUNNA TV CH3 CH4 PARLEMENT TV @@ -223,30 +233,17 @@ BCN TV BRIK TV AL NASSR - BENIN TV ALAFIA - ACTIVATION NETFLIX - DNTV - AFRICA MAGIC HAUSA - AFRICA MAGIC YORUBA - MAISHA MAGIC EAST - MAISHA MAGIC PLUS - TEST AFRIQUE - MIEUX - EUROPE 2 POP TV GULLI AFRICA NOVELAS TV - TRACE IVOIRE PACIS TV MY MEDIA PRIME SCIENCE ET VIE TV ENGLISH CLUB TV - ZEE ALWAN FASHION AFRICA TV SEN TV ASONGA TV DIGITAL CONGO TELE 50 - SS WWE DRTV TV MAURITANIE IMPACT TV @@ -255,24 +252,15 @@ BUSINESS 24 CANAL+ SPORT 4 CANAL+ SPORT 5 - VOIR+ RDC ZEE MAGIC ORTM2 EVASION TV RTD - GOLF+ HD - LOVE NATURE CANAL+ FAMILY OUEST ONE TV - CNEWS PRIME - EUROPE 1 TV - AES TV HD - MAISHA MAGIC BONGO - NATIONAL GEOGRAPHIC ENG - STUDIO UNIVERSAL SSM TV MCR TV - SUPERSPORT ACTION + OMEGA TV AFRICANEWS E-TELEVISION ESPACE TV @@ -290,11 +278,12 @@ TREK J-ONE BANTAMBA TV + TRACE MZIKI CNBC AFRICA WALF TV LTM MEDI1 TV - CNEWS PRIME + CH1 IVOIRE TV Music UNIVERS TV MIRACLE TV+ @@ -324,7 +313,7 @@ MUSEUM TV CANAL 2 MOVIES EMCI - EUROPE 1 TV + CH2 A+ IVOIRE Antenne VISION 4 RCA AREWA 24 @@ -342,11 +331,13 @@ TM1 TOUTE L HISTOIRE PSTV + FARIN WATA KC2 TV1 TV O FLASH TV ISANGO STAR TV + GENESIS TV BTN TV CARTOON NETWORK Africa SA TNT Africa @@ -361,7 +352,7 @@ LCA RENOUVEAU TV RTDS - BRAVO ENG + E! ENG TELEMUNDO AFRICA MAGIC EPIC ZEE WORLD @@ -370,7 +361,7 @@ AFRICA MAGIC SHOWCASE MNET MOVIES 3 MNET MOVIES 4 - DISCOVERY CHANNEL ENG + DISCOVER CHANNEL ENG SS EPL SS LA LIGA CANAL 3 BURKINA @@ -384,7 +375,9 @@ TVC DOUNIA BONFEREY + SUNNA TV TVGE + CAPITAL SANTE TV MIKUBA TV LUDIKIDS OI VIXEN diff --git a/sites/canalplus.com/canalplus.com_mq.channels.xml b/sites/canalplus.com/canalplus.com_mq.channels.xml index f352fbd4a..8ea8f0144 100644 --- a/sites/canalplus.com/canalplus.com_mq.channels.xml +++ b/sites/canalplus.com/canalplus.com_mq.channels.xml @@ -10,39 +10,34 @@ PUNCH TV CANAL J CANAL+ HD - CANAL+ CINEMA(S) HD - CNEWS PRIME - EUROPE 1 TV + CANAL+ CINEMA(S) + DAZN 1 + DAZN 2 DAZN 3 DAZN 4 DAZN 5 CNN - CANAL+SPORT HD + CANAL+ SPORT HD EMCI - CINE+FESTIVAL - CINE+EMOTION - CINE+FAMILY - CINE+FRISSON HD + CINE+ FESTIVAL + CINE+ EMOTION + CINE+ FAMILY + CINE+ FRISSON HD OCS HD EVANGILE TV MANGAS - T18 COMEDIE+ - NOVO19 E! ENTERTAINMENT - EQUIDIA HD + EQUIDIA LIVE ESPN - MIEUX - EUROPE 2 POP TV EUROSPORT 1 HD EUROSPORT 2 HD - RADIO TELE ECLAIR FRANCE 3 FRANCE 5 CNEWS INFOSPORT+ LCI - LCP + LCP ASSEMBLEE NATIONALE L'EQUIPE M6 HD MTV France @@ -66,9 +61,10 @@ XXL FRANCE 24 BEIN SPORTS 1 HD + TPMP PIWI+ GAME ONE - USHUAIA TVHD + USHUAÏA TV W9 PLANETE+ CRIME GULLI @@ -82,6 +78,7 @@ FRANCE 2 FRANCE 4 KMT + NRJ 12 CSTAR NICKELODEON TV GLOBO @@ -99,25 +96,25 @@ HUSTLER TV Métropole CANAL+ SERIES HD - CINE+CLASSIC + CINE + CLASSIC BEIN SPORTS 3 HD - C+SPORT AYITI 1 HD - C+SPORT AYITI 2 + CANAL+ SPORT AYITI 1 + HAITI SPORT 2 HBO HBO Family HBO XTREME ENGLISH CLUB TV - CANAL+KIDS HD + CANAL+ KIDS HD GOLF+ A+ NOLLYWOOD TV france CANAL SONY TV CARAIBES - RMC LIFE + CHERIE 25 CARTOON NETWORK BOOMERANG - CANAL+SPORT360 HD - CANAL+FOOT HD + CANAL+ SPORT 360 + CANAL+ FOOT NOVELAS TV BBLACK CARIBBEAN BEIN SPORTS MAX 4 @@ -148,7 +145,7 @@ TELEMUNDO TOUTE L HISTOIRE OLYMPIA TV - CANAL+PREMIER LEAGUE + CANAL+ PREMIER LEAGUE EVENEMENT 4K ZITATA TV LUDIKIDS OI @@ -156,7 +153,7 @@ TELE SOLEIL GRAPHE TV NICKELODEON JR - STUDIOCANAL TV + STUDIOCANAL NATHAN+ TROTTERS TV FUSION TV @@ -164,10 +161,11 @@ BFM TV BFM BUSINESS RMC STORY - CANAL+AYITI HD + CANAL+ AYITI CANAL EVENEMENT CARA SPORT EN FRANCE - CANAL+DOCS + CANAL+ DOCS + TRAVEL XP CHEVAL TV MEZZO LIVE RMC DECOUVERTE diff --git a/sites/canalplus.com/canalplus.com_mr.channels.xml b/sites/canalplus.com/canalplus.com_mr.channels.xml index f32be43b2..ac35c9925 100644 --- a/sites/canalplus.com/canalplus.com_mr.channels.xml +++ b/sites/canalplus.com/canalplus.com_mr.channels.xml @@ -22,6 +22,7 @@ BOSOLO TV RTCE MALAIKA TV + HK6 HERITAGE TV E! Bukedde TV @@ -34,6 +35,8 @@ France 2 INT MANGAS RTB ZENITH + HOPE TV + RTNK MEZZO HOREB TV MTV France @@ -52,12 +55,13 @@ AFRIKINFO TV EVANGILE TV REFLET TV - TRACE CHRISTMAS TOUBA TV TELEMUSIK SENEGAL MOURCHID TV + TELE-ECOLE AL MOURIDIYYAH TV MALIKIA TV + CANAL EDUCATION FULBE TF1 KAYES TV @@ -65,7 +69,6 @@ TMC SEGOU TV SUNNA TV SAVANA - CANAL+ CAN GO TV HUSTLER HD TROPIC TV @@ -77,9 +80,11 @@ GALAXIE TELE FRANCE 24 BALAFON TV + TAMBARIN HAUSA TV DASH TV BETV HTV BURUNDI + TPMP RTB 2STV ISIBO TV @@ -116,8 +121,8 @@ TELE CONGO BENIN TV HD RTNC - CANAL+ CAN IVOIRE PRIVATE TV + WILDEARTH TPT+ TRACE AFRICA AFRIQUE VOIR+ @@ -142,6 +147,7 @@ M7 RTB 3 TV AL HOUDA + JES TV SUNNA TV ZARMA TAURARUWA FOR YOU TV @@ -149,6 +155,7 @@ TRACE MBOA SUN+ TV TV+ AFRIQUE + LPC NOLLYWOOD TV RTI2 TV TOGO @@ -163,18 +170,18 @@ CONGO 26 ISHUSHO TV MRTV - CHIF TV + SHIF TV GC7 GC2 GC6 ESPERANCE TV BUJA TV AL JAZEERA ENG - BET (ENG) + BET ENG UNIVERSAL GC1 SHADOW TV - C+ MAGIC + CANAL+ ELLES PARAMOUNT NETWORK SS FOOTBALL PLUS HD SS FOOTBALL HD @@ -199,6 +206,7 @@ BBLACK AFRICA TELE FONTAINE VIE CNN + TLC CARTOON NETWORK CARTOONITO BOOMERANG @@ -209,9 +217,11 @@ RTB 3 dupli TVCA RTB dupli + TOZALI TV LUMEN CHRISTI PRC JESUS 24 TV + SUNNA TV CH3 CH4 PARLEMENT TV @@ -223,30 +233,17 @@ BCN TV BRIK TV AL NASSR - BENIN TV ALAFIA - ACTIVATION NETFLIX - DNTV - AFRICA MAGIC HAUSA - AFRICA MAGIC YORUBA - MAISHA MAGIC EAST - MAISHA MAGIC PLUS - TEST AFRIQUE - MIEUX - EUROPE 2 POP TV GULLI AFRICA NOVELAS TV - TRACE IVOIRE PACIS TV MY MEDIA PRIME SCIENCE ET VIE TV ENGLISH CLUB TV - ZEE ALWAN FASHION AFRICA TV SEN TV ASONGA TV DIGITAL CONGO TELE 50 - SS WWE DRTV TV MAURITANIE IMPACT TV @@ -255,24 +252,15 @@ BUSINESS 24 CANAL+ SPORT 4 CANAL+ SPORT 5 - VOIR+ RDC ZEE MAGIC ORTM2 EVASION TV RTD - GOLF+ HD - LOVE NATURE CANAL+ FAMILY OUEST ONE TV - CNEWS PRIME - EUROPE 1 TV - AES TV HD - MAISHA MAGIC BONGO - NATIONAL GEOGRAPHIC ENG - STUDIO UNIVERSAL SSM TV MCR TV - SUPERSPORT ACTION + OMEGA TV AFRICANEWS E-TELEVISION ESPACE TV @@ -290,11 +278,12 @@ TREK J-ONE BANTAMBA TV + TRACE MZIKI CNBC AFRICA WALF TV LTM MEDI1 TV - CNEWS PRIME + CH1 IVOIRE TV Music UNIVERS TV MIRACLE TV+ @@ -324,7 +313,7 @@ MUSEUM TV CANAL 2 MOVIES EMCI - EUROPE 1 TV + CH2 A+ IVOIRE Antenne VISION 4 RCA AREWA 24 @@ -342,11 +331,13 @@ TM1 TOUTE L HISTOIRE PSTV + FARIN WATA KC2 TV1 TV O FLASH TV ISANGO STAR TV + GENESIS TV BTN TV CARTOON NETWORK Africa SA TNT Africa @@ -361,7 +352,7 @@ LCA RENOUVEAU TV RTDS - BRAVO ENG + E! ENG TELEMUNDO AFRICA MAGIC EPIC ZEE WORLD @@ -370,7 +361,7 @@ AFRICA MAGIC SHOWCASE MNET MOVIES 3 MNET MOVIES 4 - DISCOVERY CHANNEL ENG + DISCOVER CHANNEL ENG SS EPL SS LA LIGA CANAL 3 BURKINA @@ -384,7 +375,9 @@ TVC DOUNIA BONFEREY + SUNNA TV TVGE + CAPITAL SANTE TV MIKUBA TV LUDIKIDS OI VIXEN diff --git a/sites/canalplus.com/canalplus.com_mu.channels.xml b/sites/canalplus.com/canalplus.com_mu.channels.xml index 8bbef5c5b..c490d6a20 100644 --- a/sites/canalplus.com/canalplus.com_mu.channels.xml +++ b/sites/canalplus.com/canalplus.com_mu.channels.xml @@ -25,8 +25,12 @@ CINE+ FAMILY CINE+ FRISSON OCS HD - EUROPE 1 TV + CH1 + CH2 + CH3 + CH4 COMEDIE+ + CH5 E! ENTERTAINMENT EQUIDIA SS EPL @@ -38,7 +42,7 @@ AL JAZEERA ENG FRANCE 3 FRANCE 5 - BET (ENG) + BET ENG CNEWS TELEMUNDO DSTV INFOSPORT+ @@ -55,7 +59,7 @@ RFM TV NICKELODEON JR (DSTV) MEZZO - BRAVO + E! Entertainment DSTV MTV France AFR MAGIC EPIC TFX @@ -75,30 +79,22 @@ BEIN SPORTS MAX 10 CANAL+ FAMILY CANAL+ POP - CANAL+ MAGIC + CANAL+ ELLES MANGAS PASSION BOLLYWOOD REUNION 1ERE TVM 2 MALAGASY TV - KULTURA TV + FREE TV REAL TV MADI TV TEVA TF1 - T18 - MIEUX TMC - CANAL+ CAN HD - EUROPE 2 POP TV - ACTIVATION NETFLIX TRACE URBAN - SS WWE HD TV BREIZH TV5 MONDE (Afrique) - NATIONAL GEOGRAPHIC ENG TV5 MONDE FR - STUDIO UNIVERSAL XXL FRANCE 24 BEIN SPORTS 1 HD @@ -159,7 +155,7 @@ GOLF+ HD A+ NOLLYWOOD TV france - RMC LIFE + CHERIE 25 CARTOON NETWORK BOOMERANG CANAL+ SPORT 360 HD @@ -178,7 +174,6 @@ TEST C+ ACTION CENTRE MUSEUM TV - MBS DREAMIN WARNER TV WARNER TV NEXT diff --git a/sites/canalplus.com/canalplus.com_nc.channels.xml b/sites/canalplus.com/canalplus.com_nc.channels.xml index 4265ac83b..e91062d26 100644 --- a/sites/canalplus.com/canalplus.com_nc.channels.xml +++ b/sites/canalplus.com/canalplus.com_nc.channels.xml @@ -16,8 +16,8 @@ CANAL+ CINEMA(S) PUNCH TV CNN - CNEWS PRIME - EUROPE 1 TV + DAZN 1 + DAZN 2 DAZN 3 CANAL+ SPORT HD DAZN 4 @@ -36,14 +36,10 @@ CINEWESTERN CINE NANAR VOIR+ - CANAL+ GRAND ECRAN HD EUROSPORT 1 EUROSPORT 2 - T18 - NOVO19 FRANCE 3 FRANCE 5 - MIEUX CNEWS INFOSPORT+ LCI @@ -104,7 +100,7 @@ TCM CINEMA CANAL+ KIDS HD GOLF+ - RMC LIFE + CHERIE 25 CARTOON NETWORK BOOMERANG CANAL+ SPORT 360 @@ -138,7 +134,7 @@ BFM BUSINESS RMC STORY SPORT EN FRANCE - EUROPE 2 POP TV + CSTAR HITS CANAL+ DOCS ABC AUSTRALIA HISTOIRE TV 24/24 diff --git a/sites/canalplus.com/canalplus.com_ne.channels.xml b/sites/canalplus.com/canalplus.com_ne.channels.xml index 5837c0e61..d94740352 100644 --- a/sites/canalplus.com/canalplus.com_ne.channels.xml +++ b/sites/canalplus.com/canalplus.com_ne.channels.xml @@ -22,6 +22,7 @@ BOSOLO TV RTCE MALAIKA TV + HK6 HERITAGE TV E! Bukedde TV @@ -34,6 +35,8 @@ France 2 INT MANGAS RTB ZENITH + HOPE TV + RTNK MEZZO HOREB TV MTV France @@ -52,12 +55,13 @@ AFRIKINFO TV EVANGILE TV REFLET TV - TRACE CHRISTMAS TOUBA TV TELEMUSIK SENEGAL MOURCHID TV + TELE-ECOLE AL MOURIDIYYAH TV MALIKIA TV + CANAL EDUCATION FULBE TF1 KAYES TV @@ -65,7 +69,6 @@ TMC SEGOU TV SUNNA TV SAVANA - CANAL+ CAN GO TV HUSTLER HD TROPIC TV @@ -77,9 +80,11 @@ GALAXIE TELE FRANCE 24 BALAFON TV + TAMBARIN HAUSA TV DASH TV BETV HTV BURUNDI + TPMP RTB 2STV ISIBO TV @@ -116,8 +121,8 @@ TELE CONGO BENIN TV HD RTNC - CANAL+ CAN IVOIRE PRIVATE TV + WILDEARTH TPT+ TRACE AFRICA AFRIQUE VOIR+ @@ -142,6 +147,7 @@ M7 RTB 3 TV AL HOUDA + JES TV SUNNA TV ZARMA TAURARUWA FOR YOU TV @@ -149,6 +155,7 @@ TRACE MBOA SUN+ TV TV+ AFRIQUE + LPC NOLLYWOOD TV RTI2 TV TOGO @@ -163,18 +170,18 @@ CONGO 26 ISHUSHO TV MRTV - CHIF TV + SHIF TV GC7 GC2 GC6 ESPERANCE TV BUJA TV AL JAZEERA ENG - BET (ENG) + BET ENG UNIVERSAL GC1 SHADOW TV - C+ MAGIC + CANAL+ ELLES PARAMOUNT NETWORK SS FOOTBALL PLUS HD SS FOOTBALL HD @@ -199,6 +206,7 @@ BBLACK AFRICA TELE FONTAINE VIE CNN + TLC CARTOON NETWORK CARTOONITO BOOMERANG @@ -209,9 +217,11 @@ RTB 3 dupli TVCA RTB dupli + TOZALI TV LUMEN CHRISTI PRC JESUS 24 TV + SUNNA TV CH3 CH4 PARLEMENT TV @@ -223,30 +233,17 @@ BCN TV BRIK TV AL NASSR - BENIN TV ALAFIA - ACTIVATION NETFLIX - DNTV - AFRICA MAGIC HAUSA - AFRICA MAGIC YORUBA - MAISHA MAGIC EAST - MAISHA MAGIC PLUS - TEST AFRIQUE - MIEUX - EUROPE 2 POP TV GULLI AFRICA NOVELAS TV - TRACE IVOIRE PACIS TV MY MEDIA PRIME SCIENCE ET VIE TV ENGLISH CLUB TV - ZEE ALWAN FASHION AFRICA TV SEN TV ASONGA TV DIGITAL CONGO TELE 50 - SS WWE DRTV TV MAURITANIE IMPACT TV @@ -255,24 +252,15 @@ BUSINESS 24 CANAL+ SPORT 4 CANAL+ SPORT 5 - VOIR+ RDC ZEE MAGIC ORTM2 EVASION TV RTD - GOLF+ HD - LOVE NATURE CANAL+ FAMILY OUEST ONE TV - CNEWS PRIME - EUROPE 1 TV - AES TV HD - MAISHA MAGIC BONGO - NATIONAL GEOGRAPHIC ENG - STUDIO UNIVERSAL SSM TV MCR TV - SUPERSPORT ACTION + OMEGA TV AFRICANEWS E-TELEVISION ESPACE TV @@ -290,11 +278,12 @@ TREK J-ONE BANTAMBA TV + TRACE MZIKI CNBC AFRICA WALF TV LTM MEDI1 TV - CNEWS PRIME + CH1 IVOIRE TV Music UNIVERS TV MIRACLE TV+ @@ -324,7 +313,7 @@ MUSEUM TV CANAL 2 MOVIES EMCI - EUROPE 1 TV + CH2 A+ IVOIRE Antenne VISION 4 RCA AREWA 24 @@ -342,11 +331,13 @@ TM1 TOUTE L HISTOIRE PSTV + FARIN WATA KC2 TV1 TV O FLASH TV ISANGO STAR TV + GENESIS TV BTN TV CARTOON NETWORK Africa SA TNT Africa @@ -361,7 +352,7 @@ LCA RENOUVEAU TV RTDS - BRAVO ENG + E! ENG TELEMUNDO AFRICA MAGIC EPIC ZEE WORLD @@ -370,7 +361,7 @@ AFRICA MAGIC SHOWCASE MNET MOVIES 3 MNET MOVIES 4 - DISCOVERY CHANNEL ENG + DISCOVER CHANNEL ENG SS EPL SS LA LIGA CANAL 3 BURKINA @@ -384,7 +375,9 @@ TVC DOUNIA BONFEREY + SUNNA TV TVGE + CAPITAL SANTE TV MIKUBA TV LUDIKIDS OI VIXEN diff --git a/sites/canalplus.com/canalplus.com_pf.channels.xml b/sites/canalplus.com/canalplus.com_pf.channels.xml index 5532f0887..65b3abf7e 100644 --- a/sites/canalplus.com/canalplus.com_pf.channels.xml +++ b/sites/canalplus.com/canalplus.com_pf.channels.xml @@ -27,6 +27,7 @@ BEIN SPORTS 3 PLANETE+ OCS HD + C8 COMEDIE+ LCP DORCEL TV @@ -45,7 +46,8 @@ USHUAÏA TV TiJi PIWI+ - EUROPE 2 POP TV + C Star hits en Fr + NRJ 12 RMC STORY Seasons Histoire TV @@ -72,7 +74,11 @@ CANAL EVENEMENT CNN SPORT EN FRANCE - EUROPE 1 TV + DAZN 1 + DAZN 2 + DAZN 3 + DAZN 4 + DAZN 5 EVANGILE TV RTL9 MANGAS @@ -86,21 +92,11 @@ BEIN SPORTS MAX 8 BEIN SPORTS MAX 9 BEIN SPORTS MAX 10 - CANAL+ GRAND ECRAN HD - T18 - NOVO19 - L'EQUIPE - MIEUX - COMEDY CENTRAL - MTV - LOVE NATURE - DOG & CAT TV - NICKELODEON JUNIOR - NICKELODEON DISCOVERY CHANNEL CANAL+ BOX OFFICE + CANAL+ SERIES TCM CINEMA - RMC LIFE + CHERIE 25 CARTOON NETWORK BOOMERANG PLANETE+ CRIME diff --git a/sites/canalplus.com/canalplus.com_pl.channels.xml b/sites/canalplus.com/canalplus.com_pl.channels.xml index 4e3ead333..79289d828 100644 --- a/sites/canalplus.com/canalplus.com_pl.channels.xml +++ b/sites/canalplus.com/canalplus.com_pl.channels.xml @@ -2,7 +2,6 @@ WP BABY TV - Dorcel TV TVP 1 4FUN DISCOVERY LIFE HD @@ -23,7 +22,7 @@ EUROSPORT 2 HD KINO POLSKA AMC HD - MTV 90s + MTV ROCKS MTV POLSKA polsat 2 TVPULSE HD @@ -33,9 +32,8 @@ TVN STYLE HD TVN TURBO HD TVP 2 - TVP KULTURA TVP Sport HD - MTV MUSIC + NickMusic HGTV TVN 24 BiS HD TVP INFO @@ -45,8 +43,6 @@ HBO 2 HD FILMBOX PREMIUM HD FILMBOX EXTRA - TVP POLONIA - TVP HD DISNEY CHANNEL HD POLSAT JIM JAM NICK. @@ -66,35 +62,27 @@ Warner TV TRAVEL CHANNEL HD TV4 - TVP HISTORIA FILMBOX FAMILY - MTV LIVE HD + MTV LIVE TVN 7 HD TVN ESKA TV EXTRA ID INVESTIGATION BBC News - TVS NAT GEO WILD HD ANIMAL PLANET HD DISNEY XD - Blue Hustler - Private TV BBC FIRST HD FX - MTV 00s + MTV 00 TVP SERIALE POLSAT COMEDY CENTRAL EXTRA HD BBC EARTH POLSAT CAFE HD - POLSAT FILM HD POLSAT POLSAT PLAY HD - TV 6 HD ROMANCE TV HD PARAMOUNT CHANNEL HD - SUPER POLSAT HD - HUSTLER HD TTV NICK JR. NICKTOONS HD @@ -102,7 +90,6 @@ POLSAT CRIME & INVESTIGATION HISTORY HD SUNDANCE TV HD - Redlight HD 4FUN HITS GOLD MINIMINI+ HD PLANETE+ HD @@ -118,8 +105,7 @@ ALE KINO+ HD ELEVEN SPORTS 2 HD CANAL+ SPORT 5 - CANAL+ FAMILY HD - TVP ROZRYWKA + Autopromocja polotv PULS 2 NAT GEO PEOPLE HD @@ -127,26 +113,19 @@ KINO POLSKA MUZYKA Film Cafe 4FUN DANCE - Program 12 - POLSAT Seriale + CBS REALITY SCI FI 13 ULICA HD MOTOWIZJA HD STOPKLATKA TV (new) - FOKUS TV DISCO POLO MUSIC - TVC VOX MUSIC TV - TVP ABC POWER TV ADVENTURE HD TV REPUBLIKA - POLSAT MUSIC HD HISTORY 2 HD CANAL+ EXTRA 17 FX COMEDY - Active Family - TVN FABUŁA HD CANAL+ SERIALE HD CANAL+ SPORT 2 CANAL+ DOKUMENT HD @@ -160,7 +139,6 @@ ELEVEN SPORTS 3 HD eskarock ESKA TV - NOWA TV FOOD NETWORK DEUTSCHE WELLE NUTA TV @@ -175,31 +153,26 @@ POLSAT SPORT PREMIUM 4 POLSAT SPORT PREMIUM 5 POLSAT SPORT PREMIUM 6 - HOME TV CANAL+ PREMIUM CANAL+ PREMIUM CANAL+ SPORT 3 CANAL+ SPORT 4 - StudioMed TV Eleven Sports 1 4K - GOLF CHANNEL HD - MTV DANCE + CLUB MTV MTV HITS - Program 13 + VH1 CLASSIC BIZNES24 EURONEWS HD CNBC - TVP DOKUMENT WPOLSCE 24 NOVELAS+ VIVID RED Sejm RP - Antena CANAL+ CANAL+ Sport (EPL) CANAL+ SPORT2 CANAL+ EXTRA 18 - Canal+ Now + CANAL+ EXTRA 15 TeenNick polsat games BLOOMBERG @@ -233,9 +206,7 @@ TVP 3 Kielce TVP 3 Olsztyn TVP 3 Opole - Current Time TV CANAL+ LIVE 5 - NUTA GOLD Alfa TVP TVP World TVP Historia 2 @@ -243,12 +214,8 @@ TVP ABC 2 TVP Nauka TVP Kobieta - CTV - DLA CIEBIE - TVC SUPER - SZLAGIER TV VIASAT TRUE CRIME CANAL+ 360 HD - Love Nature 4K CANAL+ EXTRA 2 HD CANAL+ EXTRA 3 HD CANAL+ EXTRA 4 HD @@ -256,24 +223,14 @@ CANAL+ EXTRA 6 HD CANAL+ EXTRA 7 HD CANAL+ EXTRA 1 HD - WYDARZENIA 24 - POLSAT DOKU HD - POLSAT RODZINA HD CANAL+ LIVE 6 STREFA ABONENTA wPolsce24 - Program 7 - Program 8 - Program 9 - Program 10 - STOPKLATKA TV - Polsat - PULS - TV4 - Zoom TV - Stopklatka TV - Kabaret TV - Kanal Zero + Polsat + PulsPL + TV4PL + ZoomTV + Stopklatka TV CANAL+ LIVE 1 CANAL+ LIVE 2 CANAL+ LIVE 3 diff --git a/sites/canalplus.com/canalplus.com_re.channels.xml b/sites/canalplus.com/canalplus.com_re.channels.xml index 24dae4526..3aaef7c43 100644 --- a/sites/canalplus.com/canalplus.com_re.channels.xml +++ b/sites/canalplus.com/canalplus.com_re.channels.xml @@ -4,6 +4,7 @@ 13EME RUE MBC 2 ACTION + ANTENNE REUNION MBC 3 ARTE France BBC NEWS @@ -24,8 +25,12 @@ CINE+ FAMILY CINE+ FRISSON OCS HD - EUROPE 1 TV + CH1 + CH2 + CH3 + CH4 COMEDIE+ + CH5 E! ENTERTAINMENT EQUIDIA SS EPL @@ -37,7 +42,7 @@ AL JAZEERA ENG FRANCE 3 FRANCE 5 - BET (ENG) + BET ENG CNEWS TELEMUNDO DSTV INFOSPORT+ @@ -54,7 +59,7 @@ RFM TV NICKELODEON JR (DSTV) MEZZO - BRAVO + E! Entertainment DSTV MTV France AFR MAGIC EPIC TFX @@ -74,30 +79,22 @@ BEIN SPORTS MAX 10 CANAL+ FAMILY CANAL+ POP - CANAL+ MAGIC + CANAL+ ELLES MANGAS PASSION BOLLYWOOD REUNION 1ERE TVM 2 MALAGASY TV - KULTURA TV + FREE TV REAL TV MADI TV TEVA TF1 - T18 - MIEUX TMC - CANAL+ CAN HD - EUROPE 2 POP TV - ACTIVATION NETFLIX TRACE URBAN - SS WWE HD TV BREIZH TV5 MONDE (Afrique) - NATIONAL GEOGRAPHIC ENG TV5 MONDE FR - STUDIO UNIVERSAL XXL FRANCE 24 BEIN SPORTS 1 HD @@ -158,7 +155,7 @@ GOLF+ HD A+ NOLLYWOOD TV france - RMC LIFE + CHERIE 25 CARTOON NETWORK BOOMERANG CANAL+ SPORT 360 HD @@ -177,7 +174,6 @@ TEST C+ ACTION CENTRE MUSEUM TV - MBS DREAMIN WARNER TV WARNER TV NEXT @@ -225,5 +221,4 @@ CANAL+LIVE 17 CANAL+LIVE 18 TCM CINEMA - ANTENNE REUNION diff --git a/sites/canalplus.com/canalplus.com_rw.channels.xml b/sites/canalplus.com/canalplus.com_rw.channels.xml index 580ec7b85..92de1d7bf 100644 --- a/sites/canalplus.com/canalplus.com_rw.channels.xml +++ b/sites/canalplus.com/canalplus.com_rw.channels.xml @@ -22,6 +22,7 @@ BOSOLO TV RTCE MALAIKA TV + HK6 HERITAGE TV E! Bukedde TV @@ -34,6 +35,8 @@ France 2 INT MANGAS RTB ZENITH + HOPE TV + RTNK MEZZO HOREB TV MTV France @@ -52,12 +55,13 @@ AFRIKINFO TV EVANGILE TV REFLET TV - TRACE CHRISTMAS TOUBA TV TELEMUSIK SENEGAL MOURCHID TV + TELE-ECOLE AL MOURIDIYYAH TV MALIKIA TV + CANAL EDUCATION FULBE TF1 KAYES TV @@ -65,7 +69,6 @@ TMC SEGOU TV SUNNA TV SAVANA - CANAL+ CAN GO TV HUSTLER HD TROPIC TV @@ -77,9 +80,11 @@ GALAXIE TELE FRANCE 24 BALAFON TV + TAMBARIN HAUSA TV DASH TV BETV HTV BURUNDI + TPMP RTB 2STV ISIBO TV @@ -116,8 +121,8 @@ TELE CONGO BENIN TV HD RTNC - CANAL+ CAN IVOIRE PRIVATE TV + WILDEARTH TPT+ TRACE AFRICA AFRIQUE VOIR+ @@ -142,6 +147,7 @@ M7 RTB 3 TV AL HOUDA + JES TV SUNNA TV ZARMA TAURARUWA FOR YOU TV @@ -149,6 +155,7 @@ TRACE MBOA SUN+ TV TV+ AFRIQUE + LPC NOLLYWOOD TV RTI2 TV TOGO @@ -163,18 +170,18 @@ CONGO 26 ISHUSHO TV MRTV - CHIF TV + SHIF TV GC7 GC2 GC6 ESPERANCE TV BUJA TV AL JAZEERA ENG - BET (ENG) + BET ENG UNIVERSAL GC1 SHADOW TV - C+ MAGIC + CANAL+ ELLES PARAMOUNT NETWORK SS FOOTBALL PLUS HD SS FOOTBALL HD @@ -199,6 +206,7 @@ BBLACK AFRICA TELE FONTAINE VIE CNN + TLC CARTOON NETWORK CARTOONITO BOOMERANG @@ -209,9 +217,11 @@ RTB 3 dupli TVCA RTB dupli + TOZALI TV LUMEN CHRISTI PRC JESUS 24 TV + SUNNA TV CH3 CH4 PARLEMENT TV @@ -223,30 +233,17 @@ BCN TV BRIK TV AL NASSR - BENIN TV ALAFIA - ACTIVATION NETFLIX - DNTV - AFRICA MAGIC HAUSA - AFRICA MAGIC YORUBA - MAISHA MAGIC EAST - MAISHA MAGIC PLUS - TEST AFRIQUE - MIEUX - EUROPE 2 POP TV GULLI AFRICA NOVELAS TV - TRACE IVOIRE PACIS TV MY MEDIA PRIME SCIENCE ET VIE TV ENGLISH CLUB TV - ZEE ALWAN FASHION AFRICA TV SEN TV ASONGA TV DIGITAL CONGO TELE 50 - SS WWE DRTV TV MAURITANIE IMPACT TV @@ -255,24 +252,15 @@ BUSINESS 24 CANAL+ SPORT 4 CANAL+ SPORT 5 - VOIR+ RDC ZEE MAGIC ORTM2 EVASION TV RTD - GOLF+ HD - LOVE NATURE CANAL+ FAMILY OUEST ONE TV - CNEWS PRIME - EUROPE 1 TV - AES TV HD - MAISHA MAGIC BONGO - NATIONAL GEOGRAPHIC ENG - STUDIO UNIVERSAL SSM TV MCR TV - SUPERSPORT ACTION + OMEGA TV AFRICANEWS E-TELEVISION ESPACE TV @@ -290,11 +278,12 @@ TREK J-ONE BANTAMBA TV + TRACE MZIKI CNBC AFRICA WALF TV LTM MEDI1 TV - CNEWS PRIME + CH1 IVOIRE TV Music UNIVERS TV MIRACLE TV+ @@ -324,7 +313,7 @@ MUSEUM TV CANAL 2 MOVIES EMCI - EUROPE 1 TV + CH2 A+ IVOIRE Antenne VISION 4 RCA AREWA 24 @@ -342,11 +331,13 @@ TM1 TOUTE L HISTOIRE PSTV + FARIN WATA KC2 TV1 TV O FLASH TV ISANGO STAR TV + GENESIS TV BTN TV CARTOON NETWORK Africa SA TNT Africa @@ -361,7 +352,7 @@ LCA RENOUVEAU TV RTDS - BRAVO ENG + E! ENG TELEMUNDO AFRICA MAGIC EPIC ZEE WORLD @@ -370,7 +361,7 @@ AFRICA MAGIC SHOWCASE MNET MOVIES 3 MNET MOVIES 4 - DISCOVERY CHANNEL ENG + DISCOVER CHANNEL ENG SS EPL SS LA LIGA CANAL 3 BURKINA @@ -384,7 +375,9 @@ TVC DOUNIA BONFEREY + SUNNA TV TVGE + CAPITAL SANTE TV MIKUBA TV LUDIKIDS OI VIXEN diff --git a/sites/canalplus.com/canalplus.com_sl.channels.xml b/sites/canalplus.com/canalplus.com_sl.channels.xml index 1318dc4e3..666af5c7d 100644 --- a/sites/canalplus.com/canalplus.com_sl.channels.xml +++ b/sites/canalplus.com/canalplus.com_sl.channels.xml @@ -22,6 +22,7 @@ BOSOLO TV RTCE MALAIKA TV + HK6 HERITAGE TV E! Bukedde TV @@ -34,6 +35,8 @@ France 2 INT MANGAS RTB ZENITH + HOPE TV + RTNK MEZZO HOREB TV MTV France @@ -52,12 +55,13 @@ AFRIKINFO TV EVANGILE TV REFLET TV - TRACE CHRISTMAS TOUBA TV TELEMUSIK SENEGAL MOURCHID TV + TELE-ECOLE AL MOURIDIYYAH TV MALIKIA TV + CANAL EDUCATION FULBE TF1 KAYES TV @@ -65,7 +69,6 @@ TMC SEGOU TV SUNNA TV SAVANA - CANAL+ CAN GO TV HUSTLER HD TROPIC TV @@ -77,9 +80,11 @@ GALAXIE TELE FRANCE 24 BALAFON TV + TAMBARIN HAUSA TV DASH TV BETV HTV BURUNDI + TPMP RTB 2STV ISIBO TV @@ -116,8 +121,8 @@ TELE CONGO BENIN TV HD RTNC - CANAL+ CAN IVOIRE PRIVATE TV + WILDEARTH TPT+ TRACE AFRICA AFRIQUE VOIR+ @@ -142,6 +147,7 @@ M7 RTB 3 TV AL HOUDA + JES TV SUNNA TV ZARMA TAURARUWA FOR YOU TV @@ -149,6 +155,7 @@ TRACE MBOA SUN+ TV TV+ AFRIQUE + LPC NOLLYWOOD TV RTI2 TV TOGO @@ -163,18 +170,18 @@ CONGO 26 ISHUSHO TV MRTV - CHIF TV + SHIF TV GC7 GC2 GC6 ESPERANCE TV BUJA TV AL JAZEERA ENG - BET (ENG) + BET ENG UNIVERSAL GC1 SHADOW TV - C+ MAGIC + CANAL+ ELLES PARAMOUNT NETWORK SS FOOTBALL PLUS HD SS FOOTBALL HD @@ -199,6 +206,7 @@ BBLACK AFRICA TELE FONTAINE VIE CNN + TLC CARTOON NETWORK CARTOONITO BOOMERANG @@ -209,9 +217,11 @@ RTB 3 dupli TVCA RTB dupli + TOZALI TV LUMEN CHRISTI PRC JESUS 24 TV + SUNNA TV CH3 CH4 PARLEMENT TV @@ -223,30 +233,17 @@ BCN TV BRIK TV AL NASSR - BENIN TV ALAFIA - ACTIVATION NETFLIX - DNTV - AFRICA MAGIC HAUSA - AFRICA MAGIC YORUBA - MAISHA MAGIC EAST - MAISHA MAGIC PLUS - TEST AFRIQUE - MIEUX - EUROPE 2 POP TV GULLI AFRICA NOVELAS TV - TRACE IVOIRE PACIS TV MY MEDIA PRIME SCIENCE ET VIE TV ENGLISH CLUB TV - ZEE ALWAN FASHION AFRICA TV SEN TV ASONGA TV DIGITAL CONGO TELE 50 - SS WWE DRTV TV MAURITANIE IMPACT TV @@ -255,24 +252,15 @@ BUSINESS 24 CANAL+ SPORT 4 CANAL+ SPORT 5 - VOIR+ RDC ZEE MAGIC ORTM2 EVASION TV RTD - GOLF+ HD - LOVE NATURE CANAL+ FAMILY OUEST ONE TV - CNEWS PRIME - EUROPE 1 TV - AES TV HD - MAISHA MAGIC BONGO - NATIONAL GEOGRAPHIC ENG - STUDIO UNIVERSAL SSM TV MCR TV - SUPERSPORT ACTION + OMEGA TV AFRICANEWS E-TELEVISION ESPACE TV @@ -290,11 +278,12 @@ TREK J-ONE BANTAMBA TV + TRACE MZIKI CNBC AFRICA WALF TV LTM MEDI1 TV - CNEWS PRIME + CH1 IVOIRE TV Music UNIVERS TV MIRACLE TV+ @@ -324,7 +313,7 @@ MUSEUM TV CANAL 2 MOVIES EMCI - EUROPE 1 TV + CH2 A+ IVOIRE Antenne VISION 4 RCA AREWA 24 @@ -342,11 +331,13 @@ TM1 TOUTE L HISTOIRE PSTV + FARIN WATA KC2 TV1 TV O FLASH TV ISANGO STAR TV + GENESIS TV BTN TV CARTOON NETWORK Africa SA TNT Africa @@ -361,7 +352,7 @@ LCA RENOUVEAU TV RTDS - BRAVO ENG + E! ENG TELEMUNDO AFRICA MAGIC EPIC ZEE WORLD @@ -370,7 +361,7 @@ AFRICA MAGIC SHOWCASE MNET MOVIES 3 MNET MOVIES 4 - DISCOVERY CHANNEL ENG + DISCOVER CHANNEL ENG SS EPL SS LA LIGA CANAL 3 BURKINA @@ -384,7 +375,9 @@ TVC DOUNIA BONFEREY + SUNNA TV TVGE + CAPITAL SANTE TV MIKUBA TV LUDIKIDS OI VIXEN diff --git a/sites/canalplus.com/canalplus.com_sn.channels.xml b/sites/canalplus.com/canalplus.com_sn.channels.xml index b709453d3..029c8a124 100644 --- a/sites/canalplus.com/canalplus.com_sn.channels.xml +++ b/sites/canalplus.com/canalplus.com_sn.channels.xml @@ -22,6 +22,7 @@ BOSOLO TV RTCE MALAIKA TV + HK6 HERITAGE TV E! Bukedde TV @@ -34,6 +35,8 @@ France 2 INT MANGAS RTB ZENITH + HOPE TV + RTNK MEZZO HOREB TV MTV France @@ -52,12 +55,13 @@ AFRIKINFO TV EVANGILE TV REFLET TV - TRACE CHRISTMAS TOUBA TV TELEMUSIK SENEGAL MOURCHID TV + TELE-ECOLE AL MOURIDIYYAH TV MALIKIA TV + CANAL EDUCATION FULBE TF1 KAYES TV @@ -65,7 +69,6 @@ TMC SEGOU TV SUNNA TV SAVANA - CANAL+ CAN GO TV HUSTLER HD TROPIC TV @@ -77,10 +80,13 @@ GALAXIE TELE FRANCE 24 BALAFON TV + TAMBARIN HAUSA TV DASH TV BETV HTV BURUNDI + TPMP RTB + 2STV ISIBO TV CANAL+ SPORT 2 CANAL+ CINEMA CENTRE @@ -115,8 +121,8 @@ TELE CONGO BENIN TV HD RTNC - CANAL+ CAN IVOIRE PRIVATE TV + WILDEARTH TPT+ TRACE AFRICA AFRIQUE VOIR+ @@ -141,6 +147,7 @@ M7 RTB 3 TV AL HOUDA + JES TV SUNNA TV ZARMA TAURARUWA FOR YOU TV @@ -148,6 +155,7 @@ TRACE MBOA SUN+ TV TV+ AFRIQUE + LPC NOLLYWOOD TV RTI2 TV TOGO @@ -162,18 +170,18 @@ CONGO 26 ISHUSHO TV MRTV - CHIF TV + SHIF TV GC7 GC2 GC6 ESPERANCE TV BUJA TV AL JAZEERA ENG - BET (ENG) + BET ENG UNIVERSAL GC1 SHADOW TV - C+ MAGIC + CANAL+ ELLES PARAMOUNT NETWORK SS FOOTBALL PLUS HD SS FOOTBALL HD @@ -198,6 +206,7 @@ BBLACK AFRICA TELE FONTAINE VIE CNN + TLC CARTOON NETWORK CARTOONITO BOOMERANG @@ -208,9 +217,11 @@ RTB 3 dupli TVCA RTB dupli + TOZALI TV LUMEN CHRISTI PRC JESUS 24 TV + SUNNA TV CH3 CH4 PARLEMENT TV @@ -222,30 +233,17 @@ BCN TV BRIK TV AL NASSR - BENIN TV ALAFIA - ACTIVATION NETFLIX - DNTV - AFRICA MAGIC HAUSA - AFRICA MAGIC YORUBA - MAISHA MAGIC EAST - MAISHA MAGIC PLUS - TEST AFRIQUE - MIEUX - EUROPE 2 POP TV GULLI AFRICA NOVELAS TV - TRACE IVOIRE PACIS TV MY MEDIA PRIME SCIENCE ET VIE TV ENGLISH CLUB TV - ZEE ALWAN FASHION AFRICA TV SEN TV ASONGA TV DIGITAL CONGO TELE 50 - SS WWE DRTV TV MAURITANIE IMPACT TV @@ -254,24 +252,15 @@ BUSINESS 24 CANAL+ SPORT 4 CANAL+ SPORT 5 - VOIR+ RDC ZEE MAGIC ORTM2 EVASION TV RTD - GOLF+ HD - LOVE NATURE CANAL+ FAMILY OUEST ONE TV - CNEWS PRIME - EUROPE 1 TV - AES TV HD - MAISHA MAGIC BONGO - NATIONAL GEOGRAPHIC ENG - STUDIO UNIVERSAL SSM TV MCR TV - SUPERSPORT ACTION + OMEGA TV AFRICANEWS E-TELEVISION ESPACE TV @@ -289,11 +278,12 @@ TREK J-ONE BANTAMBA TV + TRACE MZIKI CNBC AFRICA WALF TV LTM MEDI1 TV - CNEWS PRIME + CH1 IVOIRE TV Music UNIVERS TV MIRACLE TV+ @@ -323,7 +313,7 @@ MUSEUM TV CANAL 2 MOVIES EMCI - EUROPE 1 TV + CH2 A+ IVOIRE Antenne VISION 4 RCA AREWA 24 @@ -341,11 +331,13 @@ TM1 TOUTE L HISTOIRE PSTV + FARIN WATA KC2 TV1 TV O FLASH TV ISANGO STAR TV + GENESIS TV BTN TV CARTOON NETWORK Africa SA TNT Africa @@ -360,7 +352,7 @@ LCA RENOUVEAU TV RTDS - BRAVO ENG + E! ENG TELEMUNDO AFRICA MAGIC EPIC ZEE WORLD @@ -369,7 +361,7 @@ AFRICA MAGIC SHOWCASE MNET MOVIES 3 MNET MOVIES 4 - DISCOVERY CHANNEL ENG + DISCOVER CHANNEL ENG SS EPL SS LA LIGA CANAL 3 BURKINA @@ -383,7 +375,9 @@ TVC DOUNIA BONFEREY + SUNNA TV TVGE + CAPITAL SANTE TV MIKUBA TV LUDIKIDS OI VIXEN @@ -395,5 +389,4 @@ ECCLESIA TV SOS DOCTEUR TV CANAL+ DOCS - 2STV diff --git a/sites/canalplus.com/canalplus.com_td.channels.xml b/sites/canalplus.com/canalplus.com_td.channels.xml index 9e4d672f1..1f75ec53d 100644 --- a/sites/canalplus.com/canalplus.com_td.channels.xml +++ b/sites/canalplus.com/canalplus.com_td.channels.xml @@ -22,6 +22,7 @@ BOSOLO TV RTCE MALAIKA TV + HK6 HERITAGE TV E! Bukedde TV @@ -34,6 +35,8 @@ France 2 INT MANGAS RTB ZENITH + HOPE TV + RTNK MEZZO HOREB TV MTV France @@ -52,12 +55,13 @@ AFRIKINFO TV EVANGILE TV REFLET TV - TRACE CHRISTMAS TOUBA TV TELEMUSIK SENEGAL MOURCHID TV + TELE-ECOLE AL MOURIDIYYAH TV MALIKIA TV + CANAL EDUCATION FULBE TF1 KAYES TV @@ -65,7 +69,6 @@ TMC SEGOU TV SUNNA TV SAVANA - CANAL+ CAN GO TV HUSTLER HD TROPIC TV @@ -77,9 +80,11 @@ GALAXIE TELE FRANCE 24 BALAFON TV + TAMBARIN HAUSA TV DASH TV BETV HTV BURUNDI + TPMP RTB 2STV ISIBO TV @@ -116,8 +121,8 @@ TELE CONGO BENIN TV HD RTNC - CANAL+ CAN IVOIRE PRIVATE TV + WILDEARTH TPT+ TRACE AFRICA AFRIQUE VOIR+ @@ -142,6 +147,7 @@ M7 RTB 3 TV AL HOUDA + JES TV SUNNA TV ZARMA TAURARUWA FOR YOU TV @@ -149,6 +155,7 @@ TRACE MBOA SUN+ TV TV+ AFRIQUE + LPC NOLLYWOOD TV RTI2 TV TOGO @@ -163,18 +170,18 @@ CONGO 26 ISHUSHO TV MRTV - CHIF TV + SHIF TV GC7 GC2 GC6 ESPERANCE TV BUJA TV AL JAZEERA ENG - BET (ENG) + BET ENG UNIVERSAL GC1 SHADOW TV - C+ MAGIC + CANAL+ ELLES PARAMOUNT NETWORK SS FOOTBALL PLUS HD SS FOOTBALL HD @@ -199,6 +206,7 @@ BBLACK AFRICA TELE FONTAINE VIE CNN + TLC CARTOON NETWORK CARTOONITO BOOMERANG @@ -209,9 +217,11 @@ RTB 3 dupli TVCA RTB dupli + TOZALI TV LUMEN CHRISTI PRC JESUS 24 TV + SUNNA TV CH3 CH4 PARLEMENT TV @@ -223,30 +233,17 @@ BCN TV BRIK TV AL NASSR - BENIN TV ALAFIA - ACTIVATION NETFLIX - DNTV - AFRICA MAGIC HAUSA - AFRICA MAGIC YORUBA - MAISHA MAGIC EAST - MAISHA MAGIC PLUS - TEST AFRIQUE - MIEUX - EUROPE 2 POP TV GULLI AFRICA NOVELAS TV - TRACE IVOIRE PACIS TV MY MEDIA PRIME SCIENCE ET VIE TV ENGLISH CLUB TV - ZEE ALWAN FASHION AFRICA TV SEN TV ASONGA TV DIGITAL CONGO TELE 50 - SS WWE DRTV TV MAURITANIE IMPACT TV @@ -255,24 +252,15 @@ BUSINESS 24 CANAL+ SPORT 4 CANAL+ SPORT 5 - VOIR+ RDC ZEE MAGIC ORTM2 EVASION TV RTD - GOLF+ HD - LOVE NATURE CANAL+ FAMILY OUEST ONE TV - CNEWS PRIME - EUROPE 1 TV - AES TV HD - MAISHA MAGIC BONGO - NATIONAL GEOGRAPHIC ENG - STUDIO UNIVERSAL SSM TV MCR TV - SUPERSPORT ACTION + OMEGA TV AFRICANEWS E-TELEVISION ESPACE TV @@ -290,11 +278,12 @@ TREK J-ONE BANTAMBA TV + TRACE MZIKI CNBC AFRICA WALF TV LTM MEDI1 TV - CNEWS PRIME + CH1 IVOIRE TV Music UNIVERS TV MIRACLE TV+ @@ -324,7 +313,7 @@ MUSEUM TV CANAL 2 MOVIES EMCI - EUROPE 1 TV + CH2 A+ IVOIRE Antenne VISION 4 RCA AREWA 24 @@ -342,11 +331,13 @@ TM1 TOUTE L HISTOIRE PSTV + FARIN WATA KC2 TV1 TV O FLASH TV ISANGO STAR TV + GENESIS TV BTN TV CARTOON NETWORK Africa SA TNT Africa @@ -361,7 +352,7 @@ LCA RENOUVEAU TV RTDS - BRAVO ENG + E! ENG TELEMUNDO AFRICA MAGIC EPIC ZEE WORLD @@ -370,7 +361,7 @@ AFRICA MAGIC SHOWCASE MNET MOVIES 3 MNET MOVIES 4 - DISCOVERY CHANNEL ENG + DISCOVER CHANNEL ENG SS EPL SS LA LIGA CANAL 3 BURKINA @@ -384,7 +375,9 @@ TVC DOUNIA BONFEREY + SUNNA TV TVGE + CAPITAL SANTE TV MIKUBA TV LUDIKIDS OI VIXEN diff --git a/sites/canalplus.com/canalplus.com_tg.channels.xml b/sites/canalplus.com/canalplus.com_tg.channels.xml index 693b0fe3f..1051587d7 100644 --- a/sites/canalplus.com/canalplus.com_tg.channels.xml +++ b/sites/canalplus.com/canalplus.com_tg.channels.xml @@ -22,6 +22,7 @@ BOSOLO TV RTCE MALAIKA TV + HK6 HERITAGE TV E! Bukedde TV @@ -34,6 +35,8 @@ France 2 INT MANGAS RTB ZENITH + HOPE TV + RTNK MEZZO HOREB TV MTV France @@ -52,12 +55,13 @@ AFRIKINFO TV EVANGILE TV REFLET TV - TRACE CHRISTMAS TOUBA TV TELEMUSIK SENEGAL MOURCHID TV + TELE-ECOLE AL MOURIDIYYAH TV MALIKIA TV + CANAL EDUCATION FULBE TF1 KAYES TV @@ -65,7 +69,6 @@ TMC SEGOU TV SUNNA TV SAVANA - CANAL+ CAN GO TV HUSTLER HD TROPIC TV @@ -77,9 +80,11 @@ GALAXIE TELE FRANCE 24 BALAFON TV + TAMBARIN HAUSA TV DASH TV BETV HTV BURUNDI + TPMP RTB 2STV ISIBO TV @@ -116,8 +121,8 @@ TELE CONGO BENIN TV HD RTNC - CANAL+ CAN IVOIRE PRIVATE TV + WILDEARTH TPT+ TRACE AFRICA AFRIQUE VOIR+ @@ -142,6 +147,7 @@ M7 RTB 3 TV AL HOUDA + JES TV SUNNA TV ZARMA TAURARUWA FOR YOU TV @@ -149,6 +155,7 @@ TRACE MBOA SUN+ TV TV+ AFRIQUE + LPC NOLLYWOOD TV RTI2 TV TOGO @@ -163,18 +170,18 @@ CONGO 26 ISHUSHO TV MRTV - CHIF TV + SHIF TV GC7 GC2 GC6 ESPERANCE TV BUJA TV AL JAZEERA ENG - BET (ENG) + BET ENG UNIVERSAL GC1 SHADOW TV - C+ MAGIC + CANAL+ ELLES PARAMOUNT NETWORK SS FOOTBALL PLUS HD SS FOOTBALL HD @@ -199,6 +206,7 @@ BBLACK AFRICA TELE FONTAINE VIE CNN + TLC CARTOON NETWORK CARTOONITO BOOMERANG @@ -209,9 +217,11 @@ RTB 3 dupli TVCA RTB dupli + TOZALI TV LUMEN CHRISTI PRC JESUS 24 TV + SUNNA TV CH3 CH4 PARLEMENT TV @@ -223,30 +233,17 @@ BCN TV BRIK TV AL NASSR - BENIN TV ALAFIA - ACTIVATION NETFLIX - DNTV - AFRICA MAGIC HAUSA - AFRICA MAGIC YORUBA - MAISHA MAGIC EAST - MAISHA MAGIC PLUS - TEST AFRIQUE - MIEUX - EUROPE 2 POP TV GULLI AFRICA NOVELAS TV - TRACE IVOIRE PACIS TV MY MEDIA PRIME SCIENCE ET VIE TV ENGLISH CLUB TV - ZEE ALWAN FASHION AFRICA TV SEN TV ASONGA TV DIGITAL CONGO TELE 50 - SS WWE DRTV TV MAURITANIE IMPACT TV @@ -255,24 +252,15 @@ BUSINESS 24 CANAL+ SPORT 4 CANAL+ SPORT 5 - VOIR+ RDC ZEE MAGIC ORTM2 EVASION TV RTD - GOLF+ HD - LOVE NATURE CANAL+ FAMILY OUEST ONE TV - CNEWS PRIME - EUROPE 1 TV - AES TV HD - MAISHA MAGIC BONGO - NATIONAL GEOGRAPHIC ENG - STUDIO UNIVERSAL SSM TV MCR TV - SUPERSPORT ACTION + OMEGA TV AFRICANEWS E-TELEVISION ESPACE TV @@ -290,11 +278,12 @@ TREK J-ONE BANTAMBA TV + TRACE MZIKI CNBC AFRICA WALF TV LTM MEDI1 TV - CNEWS PRIME + CH1 IVOIRE TV Music UNIVERS TV MIRACLE TV+ @@ -324,7 +313,7 @@ MUSEUM TV CANAL 2 MOVIES EMCI - EUROPE 1 TV + CH2 A+ IVOIRE Antenne VISION 4 RCA AREWA 24 @@ -342,11 +331,13 @@ TM1 TOUTE L HISTOIRE PSTV + FARIN WATA KC2 TV1 TV O FLASH TV ISANGO STAR TV + GENESIS TV BTN TV CARTOON NETWORK Africa SA TNT Africa @@ -361,7 +352,7 @@ LCA RENOUVEAU TV RTDS - BRAVO ENG + E! ENG TELEMUNDO AFRICA MAGIC EPIC ZEE WORLD @@ -370,7 +361,7 @@ AFRICA MAGIC SHOWCASE MNET MOVIES 3 MNET MOVIES 4 - DISCOVERY CHANNEL ENG + DISCOVER CHANNEL ENG SS EPL SS LA LIGA CANAL 3 BURKINA @@ -384,7 +375,9 @@ TVC DOUNIA BONFEREY + SUNNA TV TVGE + CAPITAL SANTE TV MIKUBA TV LUDIKIDS OI VIXEN diff --git a/sites/canalplus.com/canalplus.com_wf.channels.xml b/sites/canalplus.com/canalplus.com_wf.channels.xml index 331766fed..1d8574e10 100644 --- a/sites/canalplus.com/canalplus.com_wf.channels.xml +++ b/sites/canalplus.com/canalplus.com_wf.channels.xml @@ -16,8 +16,8 @@ CANAL+ CINEMA(S) PUNCH TV CNN - CNEWS PRIME - EUROPE 1 TV + DAZN 1 + DAZN 2 DAZN 3 CANAL+ SPORT HD DAZN 4 @@ -36,14 +36,10 @@ CINEWESTERN CINE NANAR VOIR+ - CANAL+ GRAND ECRAN HD EUROSPORT 1 EUROSPORT 2 - T18 - NOVO19 FRANCE 3 FRANCE 5 - MIEUX CNEWS INFOSPORT+ LCI @@ -104,7 +100,7 @@ TCM CINEMA CANAL+ KIDS HD GOLF+ - RMC LIFE + CHERIE 25 CARTOON NETWORK BOOMERANG CANAL+ SPORT 360 @@ -138,7 +134,7 @@ BFM BUSINESS RMC STORY SPORT EN FRANCE - EUROPE 2 POP TV + CSTAR HITS CANAL+ DOCS ABC AUSTRALIA HISTOIRE TV 24/24 diff --git a/sites/canalplus.com/canalplus.com_yt.channels.xml b/sites/canalplus.com/canalplus.com_yt.channels.xml index d6d982569..b6d15f987 100644 --- a/sites/canalplus.com/canalplus.com_yt.channels.xml +++ b/sites/canalplus.com/canalplus.com_yt.channels.xml @@ -25,8 +25,12 @@ CINE+ FAMILY CINE+ FRISSON OCS HD - EUROPE 1 TV + CH1 + CH2 + CH3 + CH4 COMEDIE+ + CH5 E! ENTERTAINMENT EQUIDIA SS EPL @@ -38,7 +42,7 @@ AL JAZEERA ENG FRANCE 3 FRANCE 5 - BET (ENG) + BET ENG CNEWS TELEMUNDO DSTV INFOSPORT+ @@ -55,7 +59,7 @@ RFM TV NICKELODEON JR (DSTV) MEZZO - BRAVO + E! Entertainment DSTV MTV France AFR MAGIC EPIC TFX @@ -75,30 +79,22 @@ BEIN SPORTS MAX 10 CANAL+ FAMILY CANAL+ POP - CANAL+ MAGIC + CANAL+ ELLES MANGAS PASSION BOLLYWOOD REUNION 1ERE TVM 2 MALAGASY TV - KULTURA TV + FREE TV REAL TV MADI TV TEVA TF1 - T18 - MIEUX TMC - CANAL+ CAN HD - EUROPE 2 POP TV - ACTIVATION NETFLIX TRACE URBAN - SS WWE HD TV BREIZH TV5 MONDE (Afrique) - NATIONAL GEOGRAPHIC ENG TV5 MONDE FR - STUDIO UNIVERSAL XXL FRANCE 24 BEIN SPORTS 1 HD @@ -159,7 +155,7 @@ GOLF+ HD A+ NOLLYWOOD TV france - RMC LIFE + CHERIE 25 CARTOON NETWORK BOOMERANG CANAL+ SPORT 360 HD @@ -178,7 +174,6 @@ TEST C+ ACTION CENTRE MUSEUM TV - MBS DREAMIN WARNER TV WARNER TV NEXT diff --git a/sites/canalplus.com/readme.md b/sites/canalplus.com/readme.md index b0e0f9cf2..8d3e72892 100644 --- a/sites/canalplus.com/readme.md +++ b/sites/canalplus.com/readme.md @@ -1,49 +1,47 @@ # canalplus.com -| Country | Code | URL | -| ------------------------ | -------- | ------------------------------------------ | -| Andorra | `ad` | https://www.canalplus.com/ad/programme-tv/ | -| Benin | `bj` | https://www.canalplus.com/bj/programme-tv/ | -| Burkina Faso | `bf` | https://www.canalplus.com/bf/programme-tv/ | -| Burundi | `bi` | https://www.canalplus.com/bi/programme-tv/ | -| Cabo Verde | `cv` | https://www.canalplus.com/cv/programme-tv/ | -| Cameroon | `cm` | https://www.canalplus.com/cm/programme-tv/ | -| Central African Republic | `cf` | https://www.canalplus.com/cf/programme-tv/ | -| Chad | `td` | https://www.canalplus.com/td/programme-tv/ | -| Congo | `cg` | https://www.canalplus.com/cg/programme-tv/ | -| Djibouti | `dj` | https://www.canalplus.com/dj/programme-tv/ | -| DRC | `cd` | https://www.canalplus.com/cd/programme-tv/ | -| Equatorial Guinea | `gp` | https://www.canalplus.com/gp/programme-tv/ | -| France | `fr` | https://www.canalplus.com/programme-tv/ | -| French Guiana | `gf` | https://www.canalplus.com/gf/programme-tv/ | -| French Polynesia | `pf` | https://www.canalplus.com/pf/programme-tv/ | -| Gabon | `ga` | https://www.canalplus.com/ga/programme-tv/ | -| Gambia | `gm` | https://www.canalplus.com/gm/programme-tv/ | -| Ghana | `gh` | https://www.canalplus.com/gh/programme-tv/ | -| Guinea-Bissau | `gw` | https://www.canalplus.com/gw/programme-tv/ | -| Guinea | `gn` | https://www.canalplus.com/gn/programme-tv/ | -| Haiti | `ht` | https://www.canalplus.com/ht/programme-tv/ | -| Ivory Coast | `ci` | https://www.canalplus.com/ci/programme-tv/ | -| Italy | `it` | | -| Madagascar | `mg` | https://www.canalplus.com/mg/programme-tv/ | -| Madagascar (alternative) | `mg_alt` | https://www.canalplus.com/mg/programme-tv/ | -| Mali | `ml` | https://www.canalplus.com/ml/programme-tv/ | -| Martinique | `mq` | https://www.canalplus.com/mq/programme-tv/ | -| Mauritania | `mr` | https://www.canalplus.com/mr/programme-tv/ | -| Mauritius | `mu` | https://www.canalplus.com/mu/programme-tv/ | -| Mayotte | `yt` | https://www.canalplus.com/yt/programme-tv/ | -| New Caledonia | `nc` | https://www.canalplus.com/nc/programme-tv/ | -| Niger | `ne` | https://www.canalplus.com/ne/programme-tv/ | -| Poland | `pl` | https://www.canalplus.com/pl/program-tv/ | -| Rwanda | `rw` | https://www.canalplus.com/rw/programme-tv/ | -| Réunion | `re` | https://www.canalplus.com/re/programme-tv/ | -| Saint Barthélemy | `bl` | https://www.canalplus.com/bl/programme-tv/ | -| Saint-Martin | `mf` | https://www.canalplus.com/mf/programme-tv/ | -| Senegal | `sn` | https://www.canalplus.com/sn/programme-tv/ | -| Sierra Leone | `sl` | https://www.canalplus.com/sl/programme-tv/ | -| Switzerland | `ch` | https://www.canalplus.com/ch/programme-tv/ | -| Togo | `tg` | https://www.canalplus.com/tg/programme-tv/ | -| Wallis and Futuna | `wf` | https://www.canalplus.com/wf/programme-tv/ | +| Country | Code | URL | +| ------------------------ | ---- | ------------------------------------------ | +| Andorra | `ad` | https://www.canalplus.com/ad/programme-tv/ | +| Benign | `bj` | https://www.canalplus.com/bj/programme-tv/ | +| Burkina Faso | `bf` | https://www.canalplus.com/bf/programme-tv/ | +| Burundi | `bi` | https://www.canalplus.com/bi/programme-tv/ | +| Cabo Verde | `cv` | https://www.canalplus.com/cv/programme-tv/ | +| Cameroon | `cm` | https://www.canalplus.com/cm/programme-tv/ | +| Central African Republic | `cf` | https://www.canalplus.com/cf/programme-tv/ | +| Chad | `td` | https://www.canalplus.com/td/programme-tv/ | +| Congo | `cg` | https://www.canalplus.com/cg/programme-tv/ | +| Djibouti | `dj` | https://www.canalplus.com/dj/programme-tv/ | +| DRC | `cd` | https://www.canalplus.com/cd/programme-tv/ | +| Equatorial Guinea | `gp` | https://www.canalplus.com/gp/programme-tv/ | +| France | `fr` | https://www.canalplus.com/programme-tv/ | +| French Guiana | `gf` | https://www.canalplus.com/gf/programme-tv/ | +| French Polynesia | `pf` | https://www.canalplus.com/pf/programme-tv/ | +| Gabon | `ga` | https://www.canalplus.com/ga/programme-tv/ | +| Gambia | `gm` | https://www.canalplus.com/gm/programme-tv/ | +| Ghana | `gh` | https://www.canalplus.com/gh/programme-tv/ | +| Guinea-Bissau | `gw` | https://www.canalplus.com/gw/programme-tv/ | +| Guinea | `gn` | https://www.canalplus.com/gn/programme-tv/ | +| Haiti | `ht` | https://www.canalplus.com/ht/programme-tv/ | +| Ivory Coast | `ci` | https://www.canalplus.com/ci/programme-tv/ | +| Madagascar | `mg` | https://www.canalplus.com/mg/programme-tv/ | +| Mali | `ml` | https://www.canalplus.com/ml/programme-tv/ | +| Martinique | `mq` | https://www.canalplus.com/mq/programme-tv/ | +| Mauritania | `mr` | https://www.canalplus.com/mr/programme-tv/ | +| Mauritius | `mu` | https://www.canalplus.com/mu/programme-tv/ | +| Mayotte | `yt` | https://www.canalplus.com/yt/programme-tv/ | +| New Caledonia | `nc` | https://www.canalplus.com/nc/programme-tv/ | +| Niger | `ne` | https://www.canalplus.com/ne/programme-tv/ | +| Poland | `pl` | https://www.canalplus.com/pl/programme-tv/ | +| Rwanda | `rw` | https://www.canalplus.com/rw/programme-tv/ | +| Réunion | `re` | https://www.canalplus.com/re/programme-tv/ | +| Saint Barthélemy | `bl` | https://www.canalplus.com/bl/programme-tv/ | +| Saint-Martin | `mf` | https://www.canalplus.com/mf/programme-tv/ | +| Senegal | `sn` | https://www.canalplus.com/sn/programme-tv/ | +| Sierra Leone | `sl` | https://www.canalplus.com/sl/programme-tv/ | +| Switzerland | `ch` | https://www.canalplus.com/ch/programme-tv/ | +| Togo | `tg` | https://www.canalplus.com/tg/programme-tv/ | +| Wallis and Futuna | `wf` | https://www.canalplus.com/wf/programme-tv/ | ### Download the guide From 4907a381b8a1d08d02b45e5c018c0ec306b049dc Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Isma=C3=ABl=20Moret?= <30985701+BellezaEmporium@users.noreply.github.com> Date: Wed, 15 Apr 2026 22:03:50 +0200 Subject: [PATCH 08/92] Delete sites/canalplus.com/canalplus.com_au.channels.xml --- .../canalplus.com_au.channels.xml | 170 ------------------ 1 file changed, 170 deletions(-) delete mode 100644 sites/canalplus.com/canalplus.com_au.channels.xml diff --git a/sites/canalplus.com/canalplus.com_au.channels.xml b/sites/canalplus.com/canalplus.com_au.channels.xml deleted file mode 100644 index c9841c039..000000000 --- a/sites/canalplus.com/canalplus.com_au.channels.xml +++ /dev/null @@ -1,170 +0,0 @@ - - - 13EME RUE - J-ONE - AFRICA 24 - ACTION - KTO - EVANGILE TV - ARTE France - BBC NEWS - W-SPORT - PARIS PREMIERE - NHK WORLD-JAPAN - CANAL EVENEMENT PACIFIQUE - CANAL+ HD - CANAL+ CINEMA(S) - PUNCH TV - CNN - CNEWS PRIME - EUROPE 1 TV - DAZN 3 - CANAL+ SPORT HD - DAZN 4 - CINE+ FESTIVAL - CINE+ EMOTION - CINE+ FAMILY - CINE+ FRISSON - OCS - DAZN 5 - M6 INTERNATIONAL - MANGAS - EMOTION'L - COMEDIE+ - FREQUENCE NOVELAS - E! ENTERTAINMENT - CINEWESTERN - CINE NANAR - VOIR+ - CANAL+ GRAND ECRAN HD - EUROSPORT 1 - EUROSPORT 2 - T18 - NOVO19 - FRANCE 3 - FRANCE 5 - MIEUX - CNEWS - INFOSPORT+ - LCI - L'EQUIPE - M6 HD - MCM - RFM TV - MEZZO - MTV France - TFX - PLANETE+ - PLANETE+ AVENTURE - RTL9 - SYFY - SEASONS - SERIE CLUB - BEIN SPORTS MAX 6 - BEIN SPORTS MAX 7 - BEIN SPORTS MAX 8 - BEIN SPORTS MAX 9 - BEIN SPORTS MAX 10 - NOUVELLE CALEDONIE 1ERE - WALLIS ET FUTUNA 1ERE - TEVA - TF1 HD - TIJI - TMC - TRACE URBAN - TV BREIZH - XXL - FRANCE 24 - BEIN SPORTS 1 HD - TPMP - GAME ONE - USHUAÏA TV - W9 - PLANETE+ CRIME - GULLI - MTV HITS - TELETOON+ - DORCEL TV - HISTOIRE TV - DISCOVERY CHANNEL - FRANCE 2 - FRANCE 4 - CSTAR - NICKELODEON - TV5 Pacifique - BEIN SPORTS 2 - CANAL+ BOX OFFICE - PARAMOUNT NETWORK - HUSTLER - CANAL+ SERIES - CALEDONIA - CINE+ CLASSIC - MBC SAT - BEIN SPORTS 3 - TCM CINEMA - CANAL+ KIDS HD - GOLF+ - RMC LIFE - CARTOON NETWORK - BOOMERANG - CANAL+ SPORT 360 - CANAL+ FOOT - NOVELAS TV - BEIN SPORTS MAX 4 - BEIN SPORTS MAX 5 - AUTOMOTO - TREK - MEZZO 24/24 - PRIVATE - SEASONS 24/24 - TF1 SERIES FILMS - 6TER - TEST DROM - EQUIDIA - TBV - MUSEUM TV - EMCI TV - WARNER TV - WARNER TV NEXT - FRANCE INFO: - TAHITI TV - OLYMPIA TV - CANAL+ PREMIER LEAGUE - EVENEMENT 4K - VIXEN - PACIFIC+ - NICKELODEON JR - BFM TV - BFM BUSINESS - RMC STORY - SPORT EN FRANCE - EUROPE 2 POP TV - CANAL+ DOCS - ABC AUSTRALIA - HISTOIRE TV 24/24 - RFM TV 24/24 - CHEVAL TV - MEZZO LIVE - RMC DECOUVERTE - CARTOONITO - TLC - DISCOVERY INVESTIGATION - CANAL+LIVE 1 - CANAL+LIVE 2 - CANAL+LIVE 3 - CANAL+LIVE 4 - CANAL+LIVE 5 - CANAL+LIVE 6 - CANAL+LIVE 7 - CANAL+LIVE 8 - CANAL+LIVE 9 - CANAL+LIVE 10 - CANAL+LIVE 11 - CANAL+LIVE 12 - CANAL+LIVE 13 - CANAL+LIVE 14 - CANAL+LIVE 15 - CANAL+LIVE 16 - CANAL+LIVE 17 - CANAL+LIVE 18 - From 5da1dce927c992a6beafed9d8fe831ace0f2a34e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Isma=C3=ABl=20Moret?= <30985701+BellezaEmporium@users.noreply.github.com> Date: Wed, 15 Apr 2026 22:04:30 +0200 Subject: [PATCH 09/92] Delete sites/canalplus.com/canalplus.com_ch_de.channels.xml --- .../canalplus.com_ch_de.channels.xml | 22 ------------------- 1 file changed, 22 deletions(-) delete mode 100644 sites/canalplus.com/canalplus.com_ch_de.channels.xml diff --git a/sites/canalplus.com/canalplus.com_ch_de.channels.xml b/sites/canalplus.com/canalplus.com_ch_de.channels.xml deleted file mode 100644 index b2290a265..000000000 --- a/sites/canalplus.com/canalplus.com_ch_de.channels.xml +++ /dev/null @@ -1,22 +0,0 @@ - - - TV5MONDEEurope - ArteHD - DasErsteHD - HistoryChannelHD - NATIONAL GEOGRAPHIC WILD - CrimeInvestigation - 3satHD - ORFEinsHD - SPORT DIGITAL FUSSBALL - 13thStreetHD - SyfyHD - KinoweltTV - Euronews - UniversalTVHD - NationalGeographicHD - SPORT DIGITAL +1 - CANAL+ PREMIER LEAGUE - CANAL+ SPORT EVENT 1 - CANAL+ SPORT EVENT 2 - From 46755d454db39411f49abbdafaa72d43ca1ecf8b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Isma=C3=ABl=20Moret?= <30985701+BellezaEmporium@users.noreply.github.com> Date: Wed, 15 Apr 2026 22:04:50 +0200 Subject: [PATCH 10/92] Delete sites/canalplus.com/canalplus.com_et.channels.xml --- .../canalplus.com_et.channels.xml | 125 ------------------ 1 file changed, 125 deletions(-) delete mode 100644 sites/canalplus.com/canalplus.com_et.channels.xml diff --git a/sites/canalplus.com/canalplus.com_et.channels.xml b/sites/canalplus.com/canalplus.com_et.channels.xml deleted file mode 100644 index 6c2dc476e..000000000 --- a/sites/canalplus.com/canalplus.com_et.channels.xml +++ /dev/null @@ -1,125 +0,0 @@ - - - MCM TOP - CANAL+ DHANGAA HD - CANAL+ JAAMBOO HD - CANAL+ XOBBEE HD - GAMETOON - TV5 MONDE - PRIME MEDIA - AFAR TV - MARSIL TV - GMM TV - CATHOLIC TV ETHIOPIA - FRANCE 24 FR - AFRICA 24 ENGLISH - ARTS TV - WOLAITA TV - HORN CABLE TV - YA TV - MINBER TV - CANAL+ MENU - ABBAY TV - INPLUS - NOLLYWOOD TV - C+DISKOOVER - MTV HITS - NESIHA - BLOOMBERG TELEVISION - BBC NEWS - ENGLISH CLUB - CARTOON NETWORK - MTV AFRICAN ENG - NBA TV - TNT AFRICA - FASHION AFRICA TV - CANAL+ SPORT HD - TV 9 ETHIO - OBN GAAMMEE - OBN - E! - A+ KIDS - CANAL+ CINEMA 1 HD - CANAL+ NOVELA HD - CANAL+ NOOVEELAA HD - CANAL+ JUMBO HD - CANAL+ DISCOVER HD - CANAL+ GEBETA HD - CANAL+ CINEMA 2 HD - C+ DIK DIK - ESAT - STAR LIFE - MOTORVISION - FIGHT BOX - BETHEL TV - MTV BASE - CARTOONITO - TOONAMI - DREAMWORKS - HISTORY - TRAVEL XP - HARARI TV - SKY NEWS INTL - CNN - EBS HD - FANA TV - KANA - ETV NEWS - ETV ENTERTAINEMENT - ETV LANGUAGES - WALTA TV - NAHOO TV - SRTV - ADDIS MEDIA NETWORK - ASHAM TV - BALAGERU TV - DIRE TV - AMHARA TV - KIX - OBS - SMN TV - EOTC - ELSHADDAI TV NETWORK - LUDIKIDS - FRANCE 24 ENG - DEUTSCHE WELLE - BLOOMBERG ORIGINALS - JIMJAM - FILMBOX - FILMBOX FAMILY - FILMBOX ACTION - CANAL+ ACTION HD - W-SPORT - WILD EARTH - CBS REALITY - TRACE MUZIKA - MEZZO LIVE - TRACE URBAN - AL JAZEERA - ETV YELIJOCH ALEM HD - NBC ETHIOPIA HD - AFRO NEWS HD - BISRAT TV - GOHE TV - HAGERIE TV - K TV - A PLUS TV - ETV AFAN OROMO - TIGRAI TV - OBN HORN OF AFRICA - TIGRAI BROADCASTING SERVICE - BENISHANGUL-GUMUZ TV - KAFFA TV - KEMBATA TV - HADIYA TV - EOTC MK - AFRICA TV 1 - JEILU TV - BILAL TV - HEWYET TV - JESUS TV - RTD - .. - ... - .... - From 7197d586304216a7acc835406aaee7899e3c824e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Isma=C3=ABl=20Moret?= <30985701+BellezaEmporium@users.noreply.github.com> Date: Wed, 15 Apr 2026 22:05:04 +0200 Subject: [PATCH 11/92] Delete sites/canalplus.com/canalplus.com_km.channels.xml --- .../canalplus.com_km.channels.xml | 399 ------------------ 1 file changed, 399 deletions(-) delete mode 100644 sites/canalplus.com/canalplus.com_km.channels.xml diff --git a/sites/canalplus.com/canalplus.com_km.channels.xml b/sites/canalplus.com/canalplus.com_km.channels.xml deleted file mode 100644 index c07f5d529..000000000 --- a/sites/canalplus.com/canalplus.com_km.channels.xml +++ /dev/null @@ -1,399 +0,0 @@ - - - 13EME RUE - GLOBAL AFRICA - AB1 - ZACU TV - AFRICA 24 INFINITY - ARTE France - BBC NEWS - AFRICA 24 SPORT - CRTV - W-SPORT - AFRICA 24 ENGLISH - LERAL TV - CANAL+ CINEMA OUEST - RTG2 - CANAL+ PREMIERE OUEST - KABACK TV - INFO TV - CAM10 - DBS - BOSOLO TV - RTCE - MALAIKA TV - HERITAGE TV - E! - Bukedde TV - EURONEWS - FRANCE 3 - FRANCE 5 - SINEMA ZETU - CNEWS - LCI - France 2 INT - MANGAS - RTB ZENITH - MEZZO - HOREB TV - MTV France - TFX - KTN - ORTM1 - PLANETE+ - PLANETE+ AVENTURE - A+ BENIN - RTS - SYFY - TCHAD INFOS - SERIE CLUB - MTV LEBANON - PITCHOUN AFRICA - AFRIKINFO TV - EVANGILE TV - REFLET TV - TRACE CHRISTMAS - TOUBA TV - TELEMUSIK SENEGAL - MOURCHID TV - AL MOURIDIYYAH TV - MALIKIA TV - FULBE - TF1 - KAYES TV - TIJI - TMC - SEGOU TV - SUNNA TV SAVANA - CANAL+ CAN - GO TV - HUSTLER HD - TROPIC TV - TV5 MONDE (Afrique) - EDEN TV - XXL - TENERE - LABARI - GALAXIE TELE - FRANCE 24 - BALAFON TV - DASH TV - BETV - HTV BURUNDI - RTB - 2STV - ISIBO TV - CANAL+ SPORT 2 - CANAL+ CINEMA CENTRE - CHINGUIT TV - ELWATANIYA TV - PIWI+ - CANAL+ PREMIERE CENTRE - GAME ONE - USHUAÏA TV - EDUC TV - PLANETE+ CRIME - CANAL+ FAMILY CENTRE - TCHAD 24 - MTV HITS - TELETOON+ - CANAL+ SPORT 3 - DORCEL TV - HISTOIRE TV - RATELKI - AFRICABLE - AFRICA 24 - EQUINOXE TV - RTI 1 - CANAL 2 INTER - LIPTAKO TV - TRACE Urban Afrique - GABON 1ERE - 7TV - STV - VOX AFRICA - RTG - TELE CONGO - BENIN TV HD - RTNC - CANAL+ CAN IVOIRE - PRIVATE TV - TPT+ - TRACE AFRICA AFRIQUE - VOIR+ - CSTAR - CANAL EVENEMENT EASY - TOUMAI TV - TFM - TELE AFRICA - SENSATION TV - SARAOUNIA TV - RTL9 HD - ACTION HD - CANAL EVENEMENT AFRIQUE - NICKELODEON GLOBAL - NOVELAS TV HD (RDC) - RWANDA TV - MANDEKA HD - PULAAGU HD - LA GUINEE FE HD - BLOOMBERG ORIGINALS - EDUCA TV - M7 - RTB 3 - TV AL HOUDA - SUNNA TV ZARMA - TAURARUWA - FOR YOU TV - MELODY D'AFRIQUE - TRACE MBOA - SUN+ TV - TV+ AFRIQUE - NOLLYWOOD TV - RTI2 - TV TOGO - B-ONE - TELE SAHEL - TV TCHAD - MAAJABU TV - AL JAZEERA - KTO - IQRAA - RTGA - CONGO 26 - ISHUSHO TV - MRTV - CHIF TV - GC7 - GC2 - GC6 - ESPERANCE TV - BUJA TV - AL JAZEERA ENG - BET (ENG) - UNIVERSAL - GC1 - SHADOW TV - C+ MAGIC - PARAMOUNT NETWORK - SS FOOTBALL PLUS HD - SS FOOTBALL HD - INFOSPORT+ - NHK WORLD TV - CGTN-FRANCAIS - SPORT EN FRANCE - PASSION BOLLYWOOD - C+ KIDS - CAVI MEDIAS - WEST AFRICA TV - FRANCE 24 EN - GTV - GULLI BIL ARABI - 2M - BNEWS - ANTENNE A - LMTV - CARREFOUR - BENIE TV - TV10 - BBLACK AFRICA - TELE FONTAINE VIE - CNN - CARTOON NETWORK - CARTOONITO - BOOMERANG - DISCOVERY CHANNEL - A+ - RTB ZENITH dupli - BF1 TV - RTB 3 dupli - TVCA - RTB dupli - LUMEN CHRISTI - PRC - JESUS 24 TV - CH3 - CH4 - PARLEMENT TV - NCA - DISCOVERY INVESTIGATION - LUTTE TV - PYRAMIDE TV - TV2 - BCN TV - BRIK TV - AL NASSR - BENIN TV ALAFIA - ACTIVATION NETFLIX - DNTV - AFRICA MAGIC HAUSA - AFRICA MAGIC YORUBA - MAISHA MAGIC EAST - MAISHA MAGIC PLUS - TEST AFRIQUE - MIEUX - EUROPE 2 POP TV - GULLI AFRICA - NOVELAS TV - TRACE IVOIRE - PACIS TV - MY MEDIA PRIME - SCIENCE ET VIE TV - ENGLISH CLUB TV - ZEE ALWAN - FASHION AFRICA TV - SEN TV - ASONGA TV - DIGITAL CONGO - TELE 50 - SS WWE - DRTV - TV MAURITANIE - IMPACT TV - ELECTRON TV - VISION 4 - BUSINESS 24 - CANAL+ SPORT 4 - CANAL+ SPORT 5 - VOIR+ RDC - ZEE MAGIC - ORTM2 - EVASION TV - RTD - GOLF+ HD - LOVE NATURE - CANAL+ FAMILY OUEST - ONE TV - CNEWS PRIME - EUROPE 1 TV - AES TV HD - MAISHA MAGIC BONGO - NATIONAL GEOGRAPHIC ENG - STUDIO UNIVERSAL - SSM TV - MCR TV - SUPERSPORT ACTION - AFRICANEWS - E-TELEVISION - ESPACE TV - GABON 24 - NYOTA - TELE 24 - TGB - JOLIBA - TIVI5 MONDE - CANAL 3 BENIN - NBA TV - BURKINA INFO - VOX TV - AUTOMOTO - TREK - J-ONE - BANTAMBA TV - CNBC AFRICA - WALF TV - LTM - MEDI1 TV - CNEWS PRIME - IVOIRE TV Music - UNIVERS TV - MIRACLE TV+ - MANDE TV - NOLLYWOOD EPIC - CIS TV - ASFIYAHI - TF1 SERIES FILMS - MSI TV - TRACE GOSPEL - TRACE KITOKO - 3TV - CANAL+ SPORT 1 - CANAL+ ACTION CENTRE - MISHAPI - CANAL+ POP - LUX TV - KALAC TV - NIETA TV - CANAL+ ACTION OUEST - PENTHOUSE BLACK - SAVANE TV - MOLIERE TV - RTS 2 - CRTV NEWS - CHERIFLA TV - MUSEUM TV - CANAL 2 MOVIES - EMCI - EUROPE 1 TV - A+ IVOIRE Antenne - VISION 4 RCA - AREWA 24 - SAHARA TV - DORCEL TV AFRICA - SUNU YEUF - CUISINES - M6 INTERNATIONAL - TRACE TERANGA - NCI - RTNB - CRTV SPORT - GC4 - ITV - TM1 - TOUTE L HISTOIRE - PSTV - KC2 - TV1 - TV O - FLASH TV - ISANGO STAR TV - BTN TV - CARTOON NETWORK Africa SA - TNT Africa - ANIMAUX - CRIME DISTRICT - LA3 - LIFE TV - TV7 - CVK - CDIRECT - ALBAYANE - LCA - RENOUVEAU TV - RTDS - BRAVO ENG - TELEMUNDO - AFRICA MAGIC EPIC - ZEE WORLD - NICKELODEON ENG - NICKELODEON JR ENG - AFRICA MAGIC SHOWCASE - MNET MOVIES 3 - MNET MOVIES 4 - DISCOVERY CHANNEL ENG - SS EPL - SS LA LIGA - CANAL 3 BURKINA - VOIR+ COTE D IVOIRE - SUD 1ERE - 7INFO - GABON CULTURE - BLOOMBERG TV - LAMP FALL TV - ALAFIA TV - TVC - DOUNIA - BONFEREY - TVGE - MIKUBA TV - LUDIKIDS OI - VIXEN - NICKELODEON JR - NATHAN+ - NOVELAS (Cameroun) - MADI TV - MABOKE TV - ECCLESIA TV - SOS DOCTEUR TV - CANAL+ DOCS - From ac19540bd2683861ae97c65497794e9d6a2660be Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Isma=C3=ABl=20Moret?= <30985701+BellezaEmporium@users.noreply.github.com> Date: Wed, 15 Apr 2026 22:06:36 +0200 Subject: [PATCH 12/92] new C+ config From 27a7c29e327154965f732ccb819aff1bcd52daa4 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Isma=C3=ABl=20Moret?= <30985701+BellezaEmporium@users.noreply.github.com> Date: Wed, 15 Apr 2026 22:09:44 +0200 Subject: [PATCH 13/92] new c+ configs & channels --- sites/canalplus.com/canalplus.com.config.js | 273 ++++--- sites/canalplus.com/canalplus.com.test.js | 8 +- .../canalplus.com_ad.channels.xml | 757 +++++++++--------- .../canalplus.com_au.channels.xml | 170 ++++ .../canalplus.com_bf.channels.xml | 59 +- .../canalplus.com_bi.channels.xml | 59 +- .../canalplus.com_bj.channels.xml | 59 +- .../canalplus.com_bl.channels.xml | 52 +- .../canalplus.com_cd.channels.xml | 59 +- .../canalplus.com_cf.channels.xml | 59 +- .../canalplus.com_cg.channels.xml | 59 +- .../canalplus.com_ch.channels.xml | 75 +- .../canalplus.com_ch_de.channels.xml | 22 + .../canalplus.com_ci.channels.xml | 59 +- .../canalplus.com_cm.channels.xml | 59 +- .../canalplus.com_cv.channels.xml | 59 +- .../canalplus.com_dj.channels.xml | 59 +- .../canalplus.com_et.channels.xml | 125 +++ .../canalplus.com_fr.channels.xml | 399 ++++----- .../canalplus.com_ga.channels.xml | 59 +- .../canalplus.com_gf.channels.xml | 52 +- .../canalplus.com_gh.channels.xml | 59 +- .../canalplus.com_gm.channels.xml | 59 +- .../canalplus.com_gn.channels.xml | 59 +- .../canalplus.com_gp.channels.xml | 59 +- .../canalplus.com_gw.channels.xml | 59 +- .../canalplus.com_ht.channels.xml | 52 +- .../canalplus.com_km.channels.xml | 399 +++++++++ .../canalplus.com_mf.channels.xml | 52 +- .../canalplus.com_mg.channels.xml | 615 ++++++-------- .../canalplus.com_ml.channels.xml | 59 +- .../canalplus.com_mq.channels.xml | 52 +- .../canalplus.com_mr.channels.xml | 59 +- .../canalplus.com_mu.channels.xml | 25 +- .../canalplus.com_nc.channels.xml | 12 +- .../canalplus.com_ne.channels.xml | 59 +- .../canalplus.com_pf.channels.xml | 24 +- .../canalplus.com_pl.channels.xml | 71 +- .../canalplus.com_re.channels.xml | 27 +- .../canalplus.com_rw.channels.xml | 59 +- .../canalplus.com_sl.channels.xml | 59 +- .../canalplus.com_sn.channels.xml | 61 +- .../canalplus.com_td.channels.xml | 59 +- .../canalplus.com_tg.channels.xml | 59 +- .../canalplus.com_wf.channels.xml | 12 +- .../canalplus.com_yt.channels.xml | 25 +- sites/canalplus.com/readme.md | 86 +- 47 files changed, 2841 insertions(+), 1962 deletions(-) create mode 100644 sites/canalplus.com/canalplus.com_au.channels.xml create mode 100644 sites/canalplus.com/canalplus.com_ch_de.channels.xml create mode 100644 sites/canalplus.com/canalplus.com_et.channels.xml create mode 100644 sites/canalplus.com/canalplus.com_km.channels.xml diff --git a/sites/canalplus.com/canalplus.com.config.js b/sites/canalplus.com/canalplus.com.config.js index d6d2679bc..f3a5cb18d 100644 --- a/sites/canalplus.com/canalplus.com.config.js +++ b/sites/canalplus.com/canalplus.com.config.js @@ -4,39 +4,122 @@ const utc = require('dayjs/plugin/utc') dayjs.extend(utc) +const paths = { + ad: { zone: 'cpfra', location: 'ad' }, + au: { zone: 'cpncl', location: 'au' }, + bf: { zone: 'cpafr', location: 'bf' }, + bi: { zone: 'cpafr', location: 'bi' }, + bj: { zone: 'cpafr', location: 'bj' }, + bl: { zone: 'cpant', location: 'bl' }, + cd: { zone: 'cpafr', location: 'cd' }, + cf: { zone: 'cpafr', location: 'cf' }, + cg: { zone: 'cpafr', location: 'cg' }, + ch: { zone: 'cpche', location: null }, + ch_de: { zone: 'cpchd', location: null }, + ci: { zone: 'cpafr', location: 'ci' }, + cm: { zone: 'cpafr', location: 'cm' }, + cv: { zone: 'cpafr', location: 'cv' }, + dj: { zone: 'cpafr', location: 'dj' }, + et: { zone: 'cpeth', location: 'et' }, + fr: { zone: null, location: null }, + ga: { zone: 'cpafr', location: 'ga' }, + gf: { zone: 'cpant', location: 'gf' }, + gh: { zone: 'cpafr', location: 'gh' }, + gm: { zone: 'cpafr', location: 'gm' }, + gn: { zone: 'cpafr', location: 'gn' }, + gp: { zone: 'cpafr', location: 'gp' }, + gw: { zone: 'cpafr', location: 'gw' }, + ht: { zone: 'cpant', location: 'ht' }, + km: { zone: 'cpafr', location: 'km' }, + mc: { zone: 'cpfra', location: 'mc' }, + mf: { zone: 'cpant', location: 'mf' }, + mg: { zone: 'cpmdg', location: 'mg' }, + ml: { zone: 'cpafr', location: 'ml' }, + mq: { zone: 'cpant', location: 'mq' }, + mr: { zone: 'cpafr', location: 'mr' }, + mu: { zone: 'cpmus', location: 'mu' }, + nc: { zone: 'cpncl', location: 'nc' }, + ne: { zone: 'cpafr', location: 'ne' }, + pf: { zone: 'cppyf', location: 'pf' }, + pl: { zone: null, location: null }, + re: { zone: 'cpreu', location: 're' }, + rw: { zone: 'cpafr', location: 'rw' }, + sl: { zone: 'cpafr', location: 'sl' }, + sn: { zone: 'cpafr', location: 'sn' }, + td: { zone: 'cpafr', location: 'td' }, + tg: { zone: 'cpafr', location: 'tg' }, + wf: { zone: 'cpncl', location: 'wf' }, + yt: { zone: 'cpreu', location: 'yt' }, +} + +const globalHeaders = { + 'User-Agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', + 'Accept': 'text/html,application/xhtml+xml,application/xml;q=0.9,image/avif,image/webp,image/apng,/;q=0.8', + 'Accept-Language': 'fr-FR,fr;q=0.6', + 'Accept-Encoding': 'gzip, deflate, br', + 'Pragma': 'no-cache', + 'Priority': 'u=0, i', + 'Sec-CH-UA': '"Not:A-Brand";v="99", "Brave";v="145", "Chromium";v="145"', + 'sec-ch-ua-mobile': '?0', + 'sec-ch-ua-platform': '"Windows"', + 'sec-fetch-dest': 'document', + 'sec-fetch-mode': 'navigate', + 'sec-fetch-site': 'none', + 'sec-fetch-user': '?1', + 'sec-gpc': '1', + 'upgrade-insecure-requests': '1' +} + +// Per-region token caching to avoid multiple concurrent calls and redundant token fetches +const tokenCache = {} +const tokenPending = {} + +// ARCOM (ex-CSA) internal ratings mapping (https://www.arcom.fr/se-documenter/ressources-pedagogiques/protection-des-mineurs) +// values are negative to be sorted before other ratings if any +const CSA_RATING_MAP = { '2': '-10', '3': '-12', '4': '-16', '5': '-18' } + module.exports = { site: 'canalplus.com', days: 2, url: async function ({ channel, date }) { const [region, site_id] = channel.site_id.split('#') + const currentRegion = region || 'fr' - const baseUrl = - region === 'pl' - ? 'https://www.canalplus.com/pl/program-tv/' - : `https://www.canalplus.com/${region}/programme-tv/` + if (!tokenCache[currentRegion]) { + // Prevents concurrent calls from same region + if (!tokenPending[currentRegion]) { + tokenPending[currentRegion] = parseToken(currentRegion).then(result => { + tokenCache[currentRegion] = result + if (Object.prototype.hasOwnProperty.call(tokenPending, currentRegion)) { + tokenPending[currentRegion] = undefined + } + return result + }) + } + await tokenPending[currentRegion] + } - const data = await axios - .get(baseUrl) - .then(r => r.data.toString()) - .catch(err => console.log(err)) - - const token = parseToken(data) - const path = region === 'pl' ? 'mycanalint' : 'mycanal' + const path = currentRegion === 'pl' ? 'mycanalint' : 'mycanal' const diff = date.diff(dayjs.utc().startOf('d'), 'd') + const token = tokenCache[currentRegion]?.token return `https://hodor.canalplus.pro/api/v2/${path}/channels/${token}/${site_id}/broadcasts/day/${diff}` }, + request: { + headers() { + return globalHeaders + } + }, async parser({ content }) { - let programs = [] const items = parseItems(content) - for (let item of items) { - const prev = programs[programs.length - 1] - const details = await loadProgramDetails(item) - const info = parseInfo(details) + + // Parallel loading of all program details + const detailsArray = await Promise.all(items.map(loadProgramDetails)) + + const programs = items.map((item, i) => { + const info = parseInfo(detailsArray[i]) const start = parseStart(item) - if (prev) prev.stop = start - const stop = start.add(1, 'h') - programs.push({ + return { title: item.title, description: parseDescription(info), image: parseImage(info), @@ -48,109 +131,83 @@ module.exports = { date: parseDate(info), rating: parseRating(info), start, - stop - }) + stop: null + } + }) + + // Sort programs by start time and set stop time of each program to the start time of the next one + for (let i = 0; i < programs.length - 1; i++) { + programs[i].stop = programs[i + 1].start + } + + // Last program: fallback +1h if there is no next program + const last = programs[programs.length - 1] + if (last && last.start) { + last.stop = last.start.add(1, 'h') } return programs }, async channels({ country }) { - const paths = { - ad: 'cpafr/ad', - bf: 'cpafr/bf', - bi: 'cpafr/bi', - bj: 'cpafr/bj', - bl: 'cpant/bl', - cd: 'cpafr/cd', - cf: 'cpafr/cf', - cg: 'cpafr/cg', - ch: 'cpche', - ci: 'cpafr/ci', - cm: 'cpafr/cm', - cv: 'cpafr/cv', - dj: 'cpafr/dj', - fr: 'cpfra', - ga: 'cpafr/ga', - gf: 'cpant/gf', - gh: 'cpafr/gh', - gm: 'cpafr/gm', - gn: 'cpafr/gn', - gp: 'cpafr/gp', - gw: 'cpafr/gw', - ht: 'cpant/ht', - mf: 'cpant/mf', - mg: 'cpafr/mg', - ml: 'cpafr/ml', - mq: 'cpant/mq', - mr: 'cpafr/mr', - mu: 'cpmus/mu', - nc: 'cpncl/nc', - ne: 'cpafr/ne', - pf: 'cppyf/pf', - pl: 'cppol', - re: 'cpreu/re', - rw: 'cpafr/rw', - sl: 'cpafr/sl', - sn: 'cpafr/sn', - td: 'cpafr/td', - tg: 'cpafr/tg', - wf: 'cpncl/wf', - yt: 'cpreu/yt' - } + const { zone, location } = paths[country] || {} + const pathSegment = location ? `${zone}/${location}` : zone || country + const url = `https://secure-webtv-static.canal-plus.com/metadata/${pathSegment}/all/v2.2/globalchannels.json` - let channels = [] - const path = paths[country] - const url = `https://secure-webtv-static.canal-plus.com/metadata/${path}/all/v2.2/globalchannels.json` const data = await axios .get(url) .then(r => r.data) .catch(console.log) - data.channels.forEach(channel => { - const site_id = country === 'fr' ? `#${channel.id}` : `${country}#${channel.id}` - - if (channel.name === '.') return - - channels.push({ + return data.channels + .filter(channel => channel.name !== '.') + .map(channel => ({ lang: 'fr', - site_id, + site_id: country === 'fr' ? `#${channel.id}` : `${country}#${channel.id}`, name: channel.name - }) - }) - - return channels + })) } } -function parseToken(data) { - const [, token] = data.match(/"token":"([^"]+)/) || [null, null] +async function parseToken(country) { + const { zone, location } = paths[country] || {} - return token + let url + if (country === 'fr') { + url = 'https://hodor.canalplus.pro/api/v2/mycanal/authenticate.json/webapp/6.0?experiments=beta-test-one-tv-guide:control' + } else if (country === 'pl') { + url = 'https://hodor.canalplus.pro/api/v2/mycanalint/authenticate.json/webapp/6.0?experiments=beta-test-one-tv-guide:control' + } else { + url = `https://hodor.canalplus.pro/api/v2/mycanal/authenticate.json/webapp/6.0?experiments=beta-test-one-tv-guide:control&offerZone=${zone}&offerLocation=${location}` + } + + const data = await axios + .get(url, { headers: globalHeaders, timeout: 5000 }) + .then(r => r.data) + .catch(console.error) + + return { country, token: data?.token } } function parseStart(item) { - return item && item.startTime ? dayjs(item.startTime) : null + return item?.startTime ? dayjs(item.startTime) : null } function parseImage(info) { - return info ? info.URLImage : null + return info?.URLImage ?? null } function parseDescription(info) { - return info ? info.summary : null + return info?.summary ?? null } function parseInfo(data) { - if (!data || !data.detail || !data.detail.informations) return null - - return data.detail.informations + return data?.detail?.informations ?? null } async function loadProgramDetails(item) { - if (!item.onClick || !item.onClick.URLPage) return {} - - return await axios - .get(item.onClick.URLPage) + if (!item?.onClick?.URLPage) return {} + return axios + .get(item.onClick.URLPage, { headers: globalHeaders }) .then(r => r.data) .catch(console.error) } @@ -158,40 +215,26 @@ async function loadProgramDetails(item) { function parseItems(content) { const data = JSON.parse(content) if (!data || !Array.isArray(data.timeSlices)) return [] - - return data.timeSlices.reduce((acc, curr) => { - acc = acc.concat(curr.contents) - return acc - }, []) + return data.timeSlices.flatMap(s => s.contents) } function parseCast(info, type) { - let people = [] - if (info && info.personnalities) { - const personnalities = info.personnalities.find(i => i.prefix == type) - if (!personnalities) return people - for (let person of personnalities.personnalitiesList) { - people.push(person.title) - } - } - return people + if (!info?.personnalities) return [] + const group = info.personnalities.find(i => i.prefix === type) + if (!group) return [] + return group.personnalitiesList.map(p => p.title) } function parseDate(info) { - return info && info.productionYear ? info.productionYear : null + return info?.productionYear ?? null } function parseRating(info) { - if (!info || !info.parentalRatings) return null - let rating = info.parentalRatings.find(i => i.authority === 'CSA') - if (!rating || Array.isArray(rating)) return null - if (rating.value === '1') return null - if (rating.value === '2') rating.value = '-10' - if (rating.value === '3') rating.value = '-12' - if (rating.value === '4') rating.value = '-16' - if (rating.value === '5') rating.value = '-18' + if (!info?.parentalRatings) return null + const rating = info.parentalRatings.find(i => i.authority === 'CSA') + if (!rating || Array.isArray(rating) || rating.value === '1') return null return { system: rating.authority, - value: rating.value + value: CSA_RATING_MAP[rating.value] ?? rating.value } -} +} \ No newline at end of file diff --git a/sites/canalplus.com/canalplus.com.test.js b/sites/canalplus.com/canalplus.com.test.js index 43c2fb0bb..9dc0bd535 100644 --- a/sites/canalplus.com/canalplus.com.test.js +++ b/sites/canalplus.com/canalplus.com.test.js @@ -16,9 +16,9 @@ const channel = { it('can generate valid url for today', done => { axios.get.mockImplementation(url => { - if (url === 'https://www.canalplus.com/bi/programme-tv/') { + if (url.includes('authenticate.json')) { return Promise.resolve({ - data: fs.readFileSync(path.resolve(__dirname, '__data__/programme-tv.html')) + data: { token: 'f000c6f4ebf44647682b3a0fa66d7d99' } }) } else { return Promise.resolve({ data: '' }) @@ -38,9 +38,9 @@ it('can generate valid url for today', done => { it('can generate valid url for tomorrow', done => { axios.get.mockImplementation(url => { - if (url === 'https://www.canalplus.com/bi/programme-tv/') { + if (url.includes('authenticate.json')) { return Promise.resolve({ - data: fs.readFileSync(path.resolve(__dirname, '__data__/programme-tv.html')) + data: { token: 'f000c6f4ebf44647682b3a0fa66d7d99' } }) } else { return Promise.resolve({ data: '' }) diff --git a/sites/canalplus.com/canalplus.com_ad.channels.xml b/sites/canalplus.com/canalplus.com_ad.channels.xml index c2b1191ce..e52aacba3 100644 --- a/sites/canalplus.com/canalplus.com_ad.channels.xml +++ b/sites/canalplus.com/canalplus.com_ad.channels.xml @@ -1,392 +1,371 @@ - 13EME RUE - GLOBAL AFRICA - AB1 - ZACU TV - AFRICA 24 INFINITY - ARTE France - BBC NEWS - AFRICA 24 SPORT - CRTV - W-SPORT - AFRICA 24 ENGLISH - LERAL TV - CANAL+ CINEMA OUEST - RTG2 - CANAL+ PREMIERE OUEST - KABACK TV - INFO TV - CAM10 - DBS - BOSOLO TV - RTCE - MALAIKA TV - HK6 - HERITAGE TV - E! - Bukedde TV - EURONEWS - FRANCE 3 - FRANCE 5 - SINEMA ZETU - CNEWS - LCI - France 2 INT - MANGAS - RTB ZENITH - HOPE TV - RTNK - MEZZO - HOREB TV - MTV France - TFX - KTN - ORTM1 - PLANETE+ - PLANETE+ AVENTURE - A+ BENIN - RTS - SYFY - TCHAD INFOS - SERIE CLUB - MTV LEBANON - PITCHOUN AFRICA - AFRIKINFO TV - EVANGILE TV - REFLET TV - TOUBA TV - TELEMUSIK SENEGAL - MOURCHID TV - TELE-ECOLE - AL MOURIDIYYAH TV - MALIKIA TV - CANAL EDUCATION - FULBE - TF1 - KAYES TV - TIJI - TMC - SEGOU TV - SUNNA TV SAVANA - GO TV - HUSTLER HD - TROPIC TV - TV5 MONDE (Afrique) - EDEN TV - XXL - TENERE - LABARI - GALAXIE TELE - FRANCE 24 - BALAFON TV - TAMBARIN HAUSA TV - DASH TV - BETV - HTV BURUNDI - TPMP - RTB - 2STV - ISIBO TV - CANAL+ SPORT 2 - CANAL+ CINEMA CENTRE - CHINGUIT TV - ELWATANIYA TV - PIWI+ - CANAL+ PREMIERE CENTRE - GAME ONE - USHUAÏA TV - EDUC TV - PLANETE+ CRIME - CANAL+ FAMILY CENTRE - TCHAD 24 - MTV HITS - TELETOON+ - CANAL+ SPORT 3 - DORCEL TV - HISTOIRE TV - RATELKI - AFRICABLE - AFRICA 24 - EQUINOXE TV - RTI 1 - CANAL 2 INTER - LIPTAKO TV - TRACE Urban Afrique - GABON 1ERE - 7TV - STV - VOX AFRICA - RTG - TELE CONGO - BENIN TV HD - RTNC - PRIVATE TV - WILDEARTH - TPT+ - TRACE AFRICA AFRIQUE - VOIR+ - CSTAR - CANAL EVENEMENT EASY - TOUMAI TV - TFM - TELE AFRICA - SENSATION TV - SARAOUNIA TV - RTL9 HD - ACTION HD - CANAL EVENEMENT AFRIQUE - NICKELODEON GLOBAL - NOVELAS TV HD (RDC) - RWANDA TV - MANDEKA HD - PULAAGU HD - LA GUINEE FE HD - BLOOMBERG ORIGINALS - EDUCA TV - M7 - RTB 3 - TV AL HOUDA - JES TV - SUNNA TV ZARMA - TAURARUWA - FOR YOU TV - MELODY D'AFRIQUE - TRACE MBOA - SUN+ TV - TV+ AFRIQUE - LPC - NOLLYWOOD TV - RTI2 - TV TOGO - B-ONE - TELE SAHEL - TV TCHAD - MAAJABU TV - AL JAZEERA - KTO - IQRAA - RTGA - CONGO 26 - ISHUSHO TV - MRTV - SHIF TV - GC7 - GC2 - GC6 - ESPERANCE TV - BUJA TV - AL JAZEERA ENG - BET ENG - UNIVERSAL - GC1 - SHADOW TV - CANAL+ ELLES - PARAMOUNT NETWORK - SS FOOTBALL PLUS HD - SS FOOTBALL HD - INFOSPORT+ - NHK WORLD TV - CGTN-FRANCAIS - SPORT EN FRANCE - PASSION BOLLYWOOD - C+ KIDS - CAVI MEDIAS - WEST AFRICA TV - FRANCE 24 EN - GTV - GULLI BIL ARABI - 2M - BNEWS - ANTENNE A - LMTV - CARREFOUR - BENIE TV - TV10 - BBLACK AFRICA - TELE FONTAINE VIE - CNN - TLC - CARTOON NETWORK - CARTOONITO - BOOMERANG - DISCOVERY CHANNEL - A+ - RTB ZENITH dupli - BF1 TV - RTB 3 dupli - TVCA - RTB dupli - TOZALI TV - LUMEN CHRISTI - PRC - JESUS 24 TV - SUNNA TV - CH3 - CH4 - PARLEMENT TV - NCA - DISCOVERY INVESTIGATION - LUTTE TV - PYRAMIDE TV - TV2 - BCN TV - BRIK TV - AL NASSR - GULLI AFRICA - NOVELAS TV - PACIS TV - MY MEDIA PRIME - SCIENCE ET VIE TV - ENGLISH CLUB TV - FASHION AFRICA TV - SEN TV - ASONGA TV - DIGITAL CONGO - TELE 50 - DRTV - TV MAURITANIE - IMPACT TV - ELECTRON TV - VISION 4 - BUSINESS 24 - CANAL+ SPORT 4 - CANAL+ SPORT 5 - ZEE MAGIC - ORTM2 - EVASION TV - RTD - CANAL+ FAMILY OUEST - ONE TV - SSM TV - MCR TV - OMEGA TV - AFRICANEWS - E-TELEVISION - ESPACE TV - GABON 24 - NYOTA - TELE 24 - TGB - JOLIBA - TIVI5 MONDE - CANAL 3 BENIN - NBA TV - BURKINA INFO - VOX TV - AUTOMOTO - TREK - J-ONE - BANTAMBA TV - TRACE MZIKI - CNBC AFRICA - WALF TV - LTM - MEDI1 TV - CH1 - IVOIRE TV Music - UNIVERS TV - MIRACLE TV+ - MANDE TV - NOLLYWOOD EPIC - CIS TV - ASFIYAHI - TF1 SERIES FILMS - MSI TV - TRACE GOSPEL - TRACE KITOKO - 3TV - CANAL+ SPORT 1 - CANAL+ ACTION CENTRE - MISHAPI - CANAL+ POP - LUX TV - KALAC TV - NIETA TV - CANAL+ ACTION OUEST - PENTHOUSE BLACK - SAVANE TV - MOLIERE TV - RTS 2 - CRTV NEWS - CHERIFLA TV - MUSEUM TV - CANAL 2 MOVIES - EMCI - CH2 - A+ IVOIRE Antenne - VISION 4 RCA - AREWA 24 - SAHARA TV - DORCEL TV AFRICA - SUNU YEUF - CUISINES - M6 INTERNATIONAL - TRACE TERANGA - NCI - RTNB - CRTV SPORT - GC4 - ITV - TM1 - TOUTE L HISTOIRE - PSTV - FARIN WATA - KC2 - TV1 - TV O - FLASH TV - ISANGO STAR TV - GENESIS TV - BTN TV - CARTOON NETWORK Africa SA - TNT Africa - ANIMAUX - CRIME DISTRICT - LA3 - LIFE TV - TV7 - CVK - CDIRECT - ALBAYANE - LCA - RENOUVEAU TV - RTDS - E! ENG - TELEMUNDO - AFRICA MAGIC EPIC - ZEE WORLD - NICKELODEON ENG - NICKELODEON JR ENG - AFRICA MAGIC SHOWCASE - MNET MOVIES 3 - MNET MOVIES 4 - DISCOVER CHANNEL ENG - SS EPL - SS LA LIGA - CANAL 3 BURKINA - VOIR+ COTE D IVOIRE - SUD 1ERE - 7INFO - GABON CULTURE - BLOOMBERG TV - LAMP FALL TV - ALAFIA TV - TVC - DOUNIA - BONFEREY - SUNNA TV - TVGE - CAPITAL SANTE TV - MIKUBA TV - LUDIKIDS OI - VIXEN - NICKELODEON JR - NATHAN+ - NOVELAS (Cameroun) - MADI TV - MABOKE TV - ECCLESIA TV - SOS DOCTEUR TV - CANAL+ DOCS + CANAL+FOOT + FRANCE 2 + CNN + CHAINE: 45 + BLOOMBERG TV + 2M MONDE + CNBC + TVE INTERNACIONAL + TEST05 + TEST06 + TEST07 + TEST08 + TEST09 + TEST10 + CANAL+SPORT360 + TEST11 + TEST12 + TEST13 + TEST15 + TEST16 + TEST17 + TEST03 + EUROSPORT 1 + KTO + RTL + USHUAIA TV + ARTE + DISCOVERY CHANNEL + CANAL+SPORT + CANAL+CINEMA.S + TEST04 + TV7 TUNISIE + AL JAZEERA ARABIC + ARIRANG TV + CANAL+KIDS + 8 MONT-BLANC + MEZZO LIVE + PLANETE+ + FRANCE 24 ARABE + CGTN DOCUMENTARY + CHAINE EVENEMENT + TEVA + PARIS PREMIERE + W9 + CANAL+ + FRANCE 24 + FRANCE 24 ENG + TF1 + M6 + OCS + EURONEWS + M6 MUSIC + SERIE CLUB + I24 NEWS + A LA UNE + TCM CINEMA + GOLF+ + BEIN SPORTS 1 + BEIN SPORTS 2 + CINE+ EMOTION + CINE+ FRISSON + EUROSPORT 2 + RMC LIFE + L'EQUIPE + MTV + CNEWS + CANAL+SERIES + J-ONE + PARAMOUNT NETWORK + 24H + CARTOON NETWORK + ANIMAUX + ACTION + RTL9 + ALGERIE 3 + CANAL ALGERIE + CSTAR + BEIN SPORTS 3 + NICKTOONS + TV5 MONDE + 6TER + CANAL J + TF1 SERIES FILMS + NOLLYWOOD TV + BOOMERANG + CINE+ CLASSIC + CINE+ FESTIVAL + CINE+ FAMILY + COMEDIE+ + DORCEL TV + DORCEL XXX + EQUIDIA + FRANCE 3 + FRANCE 4 + FRANCE 5 + EVENEMENT SPORT 4K HDR UHD + VIXEN + GULLI + HISTOIRE TV + INFOSPORT+ + LA CHAINE METEO + LCI + LCP + MCM + RFM TV + MEZZO + MULTISPORTS 1 + MULTISPORTS 2 + MULTISPORTS 3 + MULTISPORTS 4 + MULTISPORTS 5 + MULTISPORTS 6 + NRJ HITS + TFX + RMC STORY + CANAL+ + CANAL+SPORT + PINK X + PIWI+ + SEASONS + MELODY + TELETOON+ + TELETOON+1 + TIJI + TMC + TRACE URBAN + TV BREIZH + PLANETE+CRIME + PLANETE+AVENTURE + BBC NEWS + NICKELODEON + GAME ONE + NICKELODEON JUNIOR + RMC DECOUVERTE + BEIN SPORTS MAX 4 + BEIN SPORTS MAX 5 + BEIN SPORTS MAX 6 + BEIN SPORTS MAX 7 + CANAL+ + BEIN SPORTS MAX 8 + BEIN SPORTS MAX 9 + BEIN SPORTS MAX 10 + AB1 + AUTOMOTO LA CHAINE + MANGAS + XXL + TOUTE L'HISTOIRE + BET + ASTROCENTER TV + BFM TV + EUROSPORT 360 1 + EUROSPORT 360 2 + EUROSPORT 360 3 + EUROSPORT 360 4 + LL EVENT UHD + BFM BUSINESS + EUROSPORT 360 5 + EUROSPORT 360 6 + EUROSPORT 360 7 + EUROSPORT 360 8 + NHK WORLD-JAPAN + FRANCEINFO: + MAN X + AL JAZEERA ENG + MUSEUM + NICKELODEON+1 + CHASSE ET PECHE + CHAINE: 684 + POLAR+ + NOVELAS TV + WARNER TV + EURONEWS ALL + CANAL+ (CH) + EUROPE 2 POP TV + CHAINE: 724 + EVENEMENT SPORT 4K UHD + CANAL+ UHD + RMC SPORT 1 + RMC SPORT 2 + TEST14 + CANAL 9 + RTS 1 + RTS 2 + CANAL ALPHA NE + LA TELE + LEMAN BLEU + TELEBIELINGUE + RSI 1 + RSI 2 + SRF 1 + SRF 2 + 3 SAT + ARD DAS ERSTE + ORF 1 + TRACE LATINA + COMEDY CENTRAL + OLYMPIA TV + CANAL+PREMIER LEAGUE + MGG TV + CANAL+ (CH) + CANAL+ CINEMA.S (CH) + OCS (CH) + CINE+ FRISSON (CH) + CSTAR (CH) + A+ + A+ IVOIRE + NOLLYWOOD TV EPIC + EURONEWS ITALIE + EVENEMENT SPORT UHD HDR + CANAL+ SPORT (CH) + CANAL+ UHD (CH) + TEST01 + TEST02 + CARAC1 + CARAC3 + CARAC2 + BLUE ZOOM + CANAL+DOCS + CANAL+GRAND ECRAN + F3 PICARDIE + F3 FRANCHE COMTE + F3 AQUITAINE + F3 NORMANDIE B + F3 AUVERGNE + F3 BOURGOGNE + F3 ALPES + F3 NORD + F3 LIMOUSIN + F3 RHONE ALPES + F3 PROVENCE ALPES + F3 LANGUEDOCROUS + F3 LORRAINE + F3 PAYS DE LA LOIRE + F3 COTE D'AZUR + F3 CENTRE + F3 PARIS IDF + F3 POITOU CHARENT + F3 CHAMP ARDENNE + F3 BRETAGNE + F3 NORMANDIE H + F3 ALSACE + F3 MIDI PYRENEES + F3 CORSEVIASTELLA + CHAINE : 970 + CHAINE : 971 + CHAINE : 972 + CHAINE : 973 + CHAINE : 974 + CHAINE : 975 + F3 NOA + CANAL+ MODE EVENT + CANAL+FOOT + CANAL+SPORT360 + CANAL+SPORT 360 (CH) + MULTISPORTS 7 + CANAL+GRAND ECRAN (CH) + CHAINE: 1067 + CHAINE: 1068 + CHAINE: 1069 + CHAINE: 1070 + CHAINE: 1071 + CANAL+BOX OFFICE + CANAL+BOX OFFICE (CH) + TV MONACO + DAZN 1 + CANAL+BOX OFFICE UHD + SPORT EN FRANCE + UNIONTV + RAI 1 + RELIN1 + RELIN2 + RELIN3 + RELIN4 + RELIN5 + RELIN6 + RELIN7 + RELIN8 + FRANCE TV SERIES + FRANCE 2 UHD HDR + WARNER TV NEXT + CARTOONITO + TLC + DISCOVERY INVESTIGATION + CANAL+FOOT (CH) + LE FIGARO TV + CINE+ EMOTION (CH) + CINE+ FAMILY (CH) + EUROSPORT 360 9 + EUROSPORT 360 10 + EUROSPORT 360 11 + EUROSPORT 360 12 + EUROSPORT 360 13 + EUROSPORT 360 14 + EUROSPORT 360 15 + EUROSPORT 360 16 + EUROSPORT 360 17 + EUROSPORT 360 18 + EUROSPORT 360 19 + EUROSPORT 360 20 + EUROSPORT 360 21 + EUROSPORT 360 22 + EUROSPORT 360 23 + EUROSPORT 360 24 + EUROSPORT 360 25 + EUROSPORT 360 26 + EUROSPORT 360 27 + EUROSPORT 360 28 + EUROSPORT 360 29 + EUROSPORT 360 30 + EUROSPORT 360 31 + EUROSPORT 360 32 + CANAL+LIVE 1 + CANAL+LIVE 2 + CANAL+LIVE 3 + CANAL+LIVE 4 + CANAL+LIVE 5 + CANAL+LIVE 6 + CANAL+LIVE 7 + CANAL+LIVE 8 + CANAL+LIVE 9 + CANAL+LIVE 10 + CANAL+LIVE 11 + CANAL+LIVE 12 + CANAL+LIVE 13 + CANAL+LIVE 14 + CANAL+LIVE 15 + CANAL+LIVE 16 + CANAL+LIVE 17 + CANAL+LIVE 18 + CANAL+LIVE 19 + CANAL+ UHD HDR + DAZN 2 + DAZN 3 + DAZN 4 + DAZN 5 + FRANCE TV DOCS + CANAL+ + T18 + NOVO19 + CINE+ FESTIVAL (CH) + CNEWS PRIME + EUROPE 1 TV + LIGUE 1+ 3 + LIGUE 1+ 4 + LIGUE 1+ 5 + MIEUX + CHEVAL TV + SUNU YEUF + PULAAGU + MANDEKA + MABOKE TV + ECHOROUK NEWS + ECHOROUK TV + NESSMA TV + SAMIRA TV + EL HIWAR ETTOUNSI + SKYNEWS ARABIA + MBC 5 + MBC DRAMA + ROTANA CINEMA FR + ROTANA CINEMA + ROTANA KIDS + A+ BENIN + Chaine: 1199 + Chaine: 1200 + Chaine: 1201 + CGTN FRANCAIS + ARTE ALLEMAND diff --git a/sites/canalplus.com/canalplus.com_au.channels.xml b/sites/canalplus.com/canalplus.com_au.channels.xml new file mode 100644 index 000000000..c9841c039 --- /dev/null +++ b/sites/canalplus.com/canalplus.com_au.channels.xml @@ -0,0 +1,170 @@ + + + 13EME RUE + J-ONE + AFRICA 24 + ACTION + KTO + EVANGILE TV + ARTE France + BBC NEWS + W-SPORT + PARIS PREMIERE + NHK WORLD-JAPAN + CANAL EVENEMENT PACIFIQUE + CANAL+ HD + CANAL+ CINEMA(S) + PUNCH TV + CNN + CNEWS PRIME + EUROPE 1 TV + DAZN 3 + CANAL+ SPORT HD + DAZN 4 + CINE+ FESTIVAL + CINE+ EMOTION + CINE+ FAMILY + CINE+ FRISSON + OCS + DAZN 5 + M6 INTERNATIONAL + MANGAS + EMOTION'L + COMEDIE+ + FREQUENCE NOVELAS + E! ENTERTAINMENT + CINEWESTERN + CINE NANAR + VOIR+ + CANAL+ GRAND ECRAN HD + EUROSPORT 1 + EUROSPORT 2 + T18 + NOVO19 + FRANCE 3 + FRANCE 5 + MIEUX + CNEWS + INFOSPORT+ + LCI + L'EQUIPE + M6 HD + MCM + RFM TV + MEZZO + MTV France + TFX + PLANETE+ + PLANETE+ AVENTURE + RTL9 + SYFY + SEASONS + SERIE CLUB + BEIN SPORTS MAX 6 + BEIN SPORTS MAX 7 + BEIN SPORTS MAX 8 + BEIN SPORTS MAX 9 + BEIN SPORTS MAX 10 + NOUVELLE CALEDONIE 1ERE + WALLIS ET FUTUNA 1ERE + TEVA + TF1 HD + TIJI + TMC + TRACE URBAN + TV BREIZH + XXL + FRANCE 24 + BEIN SPORTS 1 HD + TPMP + GAME ONE + USHUAÏA TV + W9 + PLANETE+ CRIME + GULLI + MTV HITS + TELETOON+ + DORCEL TV + HISTOIRE TV + DISCOVERY CHANNEL + FRANCE 2 + FRANCE 4 + CSTAR + NICKELODEON + TV5 Pacifique + BEIN SPORTS 2 + CANAL+ BOX OFFICE + PARAMOUNT NETWORK + HUSTLER + CANAL+ SERIES + CALEDONIA + CINE+ CLASSIC + MBC SAT + BEIN SPORTS 3 + TCM CINEMA + CANAL+ KIDS HD + GOLF+ + RMC LIFE + CARTOON NETWORK + BOOMERANG + CANAL+ SPORT 360 + CANAL+ FOOT + NOVELAS TV + BEIN SPORTS MAX 4 + BEIN SPORTS MAX 5 + AUTOMOTO + TREK + MEZZO 24/24 + PRIVATE + SEASONS 24/24 + TF1 SERIES FILMS + 6TER + TEST DROM + EQUIDIA + TBV + MUSEUM TV + EMCI TV + WARNER TV + WARNER TV NEXT + FRANCE INFO: + TAHITI TV + OLYMPIA TV + CANAL+ PREMIER LEAGUE + EVENEMENT 4K + VIXEN + PACIFIC+ + NICKELODEON JR + BFM TV + BFM BUSINESS + RMC STORY + SPORT EN FRANCE + EUROPE 2 POP TV + CANAL+ DOCS + ABC AUSTRALIA + HISTOIRE TV 24/24 + RFM TV 24/24 + CHEVAL TV + MEZZO LIVE + RMC DECOUVERTE + CARTOONITO + TLC + DISCOVERY INVESTIGATION + CANAL+LIVE 1 + CANAL+LIVE 2 + CANAL+LIVE 3 + CANAL+LIVE 4 + CANAL+LIVE 5 + CANAL+LIVE 6 + CANAL+LIVE 7 + CANAL+LIVE 8 + CANAL+LIVE 9 + CANAL+LIVE 10 + CANAL+LIVE 11 + CANAL+LIVE 12 + CANAL+LIVE 13 + CANAL+LIVE 14 + CANAL+LIVE 15 + CANAL+LIVE 16 + CANAL+LIVE 17 + CANAL+LIVE 18 + diff --git a/sites/canalplus.com/canalplus.com_bf.channels.xml b/sites/canalplus.com/canalplus.com_bf.channels.xml index fc9fc3e3e..d60f8f98a 100644 --- a/sites/canalplus.com/canalplus.com_bf.channels.xml +++ b/sites/canalplus.com/canalplus.com_bf.channels.xml @@ -22,7 +22,6 @@ BOSOLO TV RTCE MALAIKA TV - HK6 HERITAGE TV E! Bukedde TV @@ -35,8 +34,6 @@ France 2 INT MANGAS RTB ZENITH - HOPE TV - RTNK MEZZO HOREB TV MTV France @@ -55,13 +52,12 @@ AFRIKINFO TV EVANGILE TV REFLET TV + TRACE CHRISTMAS TOUBA TV TELEMUSIK SENEGAL MOURCHID TV - TELE-ECOLE AL MOURIDIYYAH TV MALIKIA TV - CANAL EDUCATION FULBE TF1 KAYES TV @@ -69,6 +65,7 @@ TMC SEGOU TV SUNNA TV SAVANA + CANAL+ CAN GO TV HUSTLER HD TROPIC TV @@ -80,11 +77,9 @@ GALAXIE TELE FRANCE 24 BALAFON TV - TAMBARIN HAUSA TV DASH TV BETV HTV BURUNDI - TPMP RTB 2STV ISIBO TV @@ -121,8 +116,8 @@ TELE CONGO BENIN TV HD RTNC + CANAL+ CAN IVOIRE PRIVATE TV - WILDEARTH TPT+ TRACE AFRICA AFRIQUE VOIR+ @@ -147,7 +142,6 @@ M7 RTB 3 TV AL HOUDA - JES TV SUNNA TV ZARMA TAURARUWA FOR YOU TV @@ -155,7 +149,6 @@ TRACE MBOA SUN+ TV TV+ AFRIQUE - LPC NOLLYWOOD TV RTI2 TV TOGO @@ -170,18 +163,18 @@ CONGO 26 ISHUSHO TV MRTV - SHIF TV + CHIF TV GC7 GC2 GC6 ESPERANCE TV BUJA TV AL JAZEERA ENG - BET ENG + BET (ENG) UNIVERSAL GC1 SHADOW TV - CANAL+ ELLES + C+ MAGIC PARAMOUNT NETWORK SS FOOTBALL PLUS HD SS FOOTBALL HD @@ -206,7 +199,6 @@ BBLACK AFRICA TELE FONTAINE VIE CNN - TLC CARTOON NETWORK CARTOONITO BOOMERANG @@ -217,11 +209,9 @@ RTB 3 dupli TVCA RTB dupli - TOZALI TV LUMEN CHRISTI PRC JESUS 24 TV - SUNNA TV CH3 CH4 PARLEMENT TV @@ -233,17 +223,30 @@ BCN TV BRIK TV AL NASSR + BENIN TV ALAFIA + ACTIVATION NETFLIX + DNTV + AFRICA MAGIC HAUSA + AFRICA MAGIC YORUBA + MAISHA MAGIC EAST + MAISHA MAGIC PLUS + TEST AFRIQUE + MIEUX + EUROPE 2 POP TV GULLI AFRICA NOVELAS TV + TRACE IVOIRE PACIS TV MY MEDIA PRIME SCIENCE ET VIE TV ENGLISH CLUB TV + ZEE ALWAN FASHION AFRICA TV SEN TV ASONGA TV DIGITAL CONGO TELE 50 + SS WWE DRTV TV MAURITANIE IMPACT TV @@ -252,15 +255,24 @@ BUSINESS 24 CANAL+ SPORT 4 CANAL+ SPORT 5 + VOIR+ RDC ZEE MAGIC ORTM2 EVASION TV RTD + GOLF+ HD + LOVE NATURE CANAL+ FAMILY OUEST ONE TV + CNEWS PRIME + EUROPE 1 TV + AES TV HD + MAISHA MAGIC BONGO + NATIONAL GEOGRAPHIC ENG + STUDIO UNIVERSAL SSM TV MCR TV - OMEGA TV + SUPERSPORT ACTION AFRICANEWS E-TELEVISION ESPACE TV @@ -278,12 +290,11 @@ TREK J-ONE BANTAMBA TV - TRACE MZIKI CNBC AFRICA WALF TV LTM MEDI1 TV - CH1 + CNEWS PRIME IVOIRE TV Music UNIVERS TV MIRACLE TV+ @@ -313,7 +324,7 @@ MUSEUM TV CANAL 2 MOVIES EMCI - CH2 + EUROPE 1 TV A+ IVOIRE Antenne VISION 4 RCA AREWA 24 @@ -331,13 +342,11 @@ TM1 TOUTE L HISTOIRE PSTV - FARIN WATA KC2 TV1 TV O FLASH TV ISANGO STAR TV - GENESIS TV BTN TV CARTOON NETWORK Africa SA TNT Africa @@ -352,7 +361,7 @@ LCA RENOUVEAU TV RTDS - E! ENG + BRAVO ENG TELEMUNDO AFRICA MAGIC EPIC ZEE WORLD @@ -361,7 +370,7 @@ AFRICA MAGIC SHOWCASE MNET MOVIES 3 MNET MOVIES 4 - DISCOVER CHANNEL ENG + DISCOVERY CHANNEL ENG SS EPL SS LA LIGA CANAL 3 BURKINA @@ -375,9 +384,7 @@ TVC DOUNIA BONFEREY - SUNNA TV TVGE - CAPITAL SANTE TV MIKUBA TV LUDIKIDS OI VIXEN diff --git a/sites/canalplus.com/canalplus.com_bi.channels.xml b/sites/canalplus.com/canalplus.com_bi.channels.xml index fbfe4aad4..f9e289012 100644 --- a/sites/canalplus.com/canalplus.com_bi.channels.xml +++ b/sites/canalplus.com/canalplus.com_bi.channels.xml @@ -22,7 +22,6 @@ BOSOLO TV RTCE MALAIKA TV - HK6 HERITAGE TV E! Bukedde TV @@ -35,8 +34,6 @@ France 2 INT MANGAS RTB ZENITH - HOPE TV - RTNK MEZZO HOREB TV MTV France @@ -55,13 +52,12 @@ AFRIKINFO TV EVANGILE TV REFLET TV + TRACE CHRISTMAS TOUBA TV TELEMUSIK SENEGAL MOURCHID TV - TELE-ECOLE AL MOURIDIYYAH TV MALIKIA TV - CANAL EDUCATION FULBE TF1 KAYES TV @@ -69,6 +65,7 @@ TMC SEGOU TV SUNNA TV SAVANA + CANAL+ CAN GO TV HUSTLER HD TROPIC TV @@ -80,11 +77,9 @@ GALAXIE TELE FRANCE 24 BALAFON TV - TAMBARIN HAUSA TV DASH TV BETV HTV BURUNDI - TPMP RTB 2STV ISIBO TV @@ -121,8 +116,8 @@ TELE CONGO BENIN TV HD RTNC + CANAL+ CAN IVOIRE PRIVATE TV - WILDEARTH TPT+ TRACE AFRICA AFRIQUE VOIR+ @@ -147,7 +142,6 @@ M7 RTB 3 TV AL HOUDA - JES TV SUNNA TV ZARMA TAURARUWA FOR YOU TV @@ -155,7 +149,6 @@ TRACE MBOA SUN+ TV TV+ AFRIQUE - LPC NOLLYWOOD TV RTI2 TV TOGO @@ -170,18 +163,18 @@ CONGO 26 ISHUSHO TV MRTV - SHIF TV + CHIF TV GC7 GC2 GC6 ESPERANCE TV BUJA TV AL JAZEERA ENG - BET ENG + BET (ENG) UNIVERSAL GC1 SHADOW TV - CANAL+ ELLES + C+ MAGIC PARAMOUNT NETWORK SS FOOTBALL PLUS HD SS FOOTBALL HD @@ -206,7 +199,6 @@ BBLACK AFRICA TELE FONTAINE VIE CNN - TLC CARTOON NETWORK CARTOONITO BOOMERANG @@ -217,11 +209,9 @@ RTB 3 dupli TVCA RTB dupli - TOZALI TV LUMEN CHRISTI PRC JESUS 24 TV - SUNNA TV CH3 CH4 PARLEMENT TV @@ -233,17 +223,30 @@ BCN TV BRIK TV AL NASSR + BENIN TV ALAFIA + ACTIVATION NETFLIX + DNTV + AFRICA MAGIC HAUSA + AFRICA MAGIC YORUBA + MAISHA MAGIC EAST + MAISHA MAGIC PLUS + TEST AFRIQUE + MIEUX + EUROPE 2 POP TV GULLI AFRICA NOVELAS TV + TRACE IVOIRE PACIS TV MY MEDIA PRIME SCIENCE ET VIE TV ENGLISH CLUB TV + ZEE ALWAN FASHION AFRICA TV SEN TV ASONGA TV DIGITAL CONGO TELE 50 + SS WWE DRTV TV MAURITANIE IMPACT TV @@ -252,15 +255,24 @@ BUSINESS 24 CANAL+ SPORT 4 CANAL+ SPORT 5 + VOIR+ RDC ZEE MAGIC ORTM2 EVASION TV RTD + GOLF+ HD + LOVE NATURE CANAL+ FAMILY OUEST ONE TV + CNEWS PRIME + EUROPE 1 TV + AES TV HD + MAISHA MAGIC BONGO + NATIONAL GEOGRAPHIC ENG + STUDIO UNIVERSAL SSM TV MCR TV - OMEGA TV + SUPERSPORT ACTION AFRICANEWS E-TELEVISION ESPACE TV @@ -278,12 +290,11 @@ TREK J-ONE BANTAMBA TV - TRACE MZIKI CNBC AFRICA WALF TV LTM MEDI1 TV - CH1 + CNEWS PRIME IVOIRE TV Music UNIVERS TV MIRACLE TV+ @@ -313,7 +324,7 @@ MUSEUM TV CANAL 2 MOVIES EMCI - CH2 + EUROPE 1 TV A+ IVOIRE Antenne VISION 4 RCA AREWA 24 @@ -331,13 +342,11 @@ TM1 TOUTE L HISTOIRE PSTV - FARIN WATA KC2 TV1 TV O FLASH TV ISANGO STAR TV - GENESIS TV BTN TV CARTOON NETWORK Africa SA TNT Africa @@ -352,7 +361,7 @@ LCA RENOUVEAU TV RTDS - E! ENG + BRAVO ENG TELEMUNDO AFRICA MAGIC EPIC ZEE WORLD @@ -361,7 +370,7 @@ AFRICA MAGIC SHOWCASE MNET MOVIES 3 MNET MOVIES 4 - DISCOVER CHANNEL ENG + DISCOVERY CHANNEL ENG SS EPL SS LA LIGA CANAL 3 BURKINA @@ -375,9 +384,7 @@ TVC DOUNIA BONFEREY - SUNNA TV TVGE - CAPITAL SANTE TV MIKUBA TV LUDIKIDS OI VIXEN diff --git a/sites/canalplus.com/canalplus.com_bj.channels.xml b/sites/canalplus.com/canalplus.com_bj.channels.xml index 830da66fc..475cd591c 100644 --- a/sites/canalplus.com/canalplus.com_bj.channels.xml +++ b/sites/canalplus.com/canalplus.com_bj.channels.xml @@ -22,7 +22,6 @@ BOSOLO TV RTCE MALAIKA TV - HK6 HERITAGE TV E! Bukedde TV @@ -35,8 +34,6 @@ France 2 INT MANGAS RTB ZENITH - HOPE TV - RTNK MEZZO HOREB TV MTV France @@ -55,13 +52,12 @@ AFRIKINFO TV EVANGILE TV REFLET TV + TRACE CHRISTMAS TOUBA TV TELEMUSIK SENEGAL MOURCHID TV - TELE-ECOLE AL MOURIDIYYAH TV MALIKIA TV - CANAL EDUCATION FULBE TF1 KAYES TV @@ -69,6 +65,7 @@ TMC SEGOU TV SUNNA TV SAVANA + CANAL+ CAN GO TV HUSTLER HD TROPIC TV @@ -80,11 +77,9 @@ GALAXIE TELE FRANCE 24 BALAFON TV - TAMBARIN HAUSA TV DASH TV BETV HTV BURUNDI - TPMP RTB 2STV ISIBO TV @@ -121,8 +116,8 @@ TELE CONGO BENIN TV HD RTNC + CANAL+ CAN IVOIRE PRIVATE TV - WILDEARTH TPT+ TRACE AFRICA AFRIQUE VOIR+ @@ -147,7 +142,6 @@ M7 RTB 3 TV AL HOUDA - JES TV SUNNA TV ZARMA TAURARUWA FOR YOU TV @@ -155,7 +149,6 @@ TRACE MBOA SUN+ TV TV+ AFRIQUE - LPC NOLLYWOOD TV RTI2 TV TOGO @@ -170,18 +163,18 @@ CONGO 26 ISHUSHO TV MRTV - SHIF TV + CHIF TV GC7 GC2 GC6 ESPERANCE TV BUJA TV AL JAZEERA ENG - BET ENG + BET (ENG) UNIVERSAL GC1 SHADOW TV - CANAL+ ELLES + C+ MAGIC PARAMOUNT NETWORK SS FOOTBALL PLUS HD SS FOOTBALL HD @@ -206,7 +199,6 @@ BBLACK AFRICA TELE FONTAINE VIE CNN - TLC CARTOON NETWORK CARTOONITO BOOMERANG @@ -217,11 +209,9 @@ RTB 3 dupli TVCA RTB dupli - TOZALI TV LUMEN CHRISTI PRC JESUS 24 TV - SUNNA TV CH3 CH4 PARLEMENT TV @@ -233,17 +223,30 @@ BCN TV BRIK TV AL NASSR + BENIN TV ALAFIA + ACTIVATION NETFLIX + DNTV + AFRICA MAGIC HAUSA + AFRICA MAGIC YORUBA + MAISHA MAGIC EAST + MAISHA MAGIC PLUS + TEST AFRIQUE + MIEUX + EUROPE 2 POP TV GULLI AFRICA NOVELAS TV + TRACE IVOIRE PACIS TV MY MEDIA PRIME SCIENCE ET VIE TV ENGLISH CLUB TV + ZEE ALWAN FASHION AFRICA TV SEN TV ASONGA TV DIGITAL CONGO TELE 50 + SS WWE DRTV TV MAURITANIE IMPACT TV @@ -252,15 +255,24 @@ BUSINESS 24 CANAL+ SPORT 4 CANAL+ SPORT 5 + VOIR+ RDC ZEE MAGIC ORTM2 EVASION TV RTD + GOLF+ HD + LOVE NATURE CANAL+ FAMILY OUEST ONE TV + CNEWS PRIME + EUROPE 1 TV + AES TV HD + MAISHA MAGIC BONGO + NATIONAL GEOGRAPHIC ENG + STUDIO UNIVERSAL SSM TV MCR TV - OMEGA TV + SUPERSPORT ACTION AFRICANEWS E-TELEVISION ESPACE TV @@ -278,12 +290,11 @@ TREK J-ONE BANTAMBA TV - TRACE MZIKI CNBC AFRICA WALF TV LTM MEDI1 TV - CH1 + CNEWS PRIME IVOIRE TV Music UNIVERS TV MIRACLE TV+ @@ -313,7 +324,7 @@ MUSEUM TV CANAL 2 MOVIES EMCI - CH2 + EUROPE 1 TV A+ IVOIRE Antenne VISION 4 RCA AREWA 24 @@ -331,13 +342,11 @@ TM1 TOUTE L HISTOIRE PSTV - FARIN WATA KC2 TV1 TV O FLASH TV ISANGO STAR TV - GENESIS TV BTN TV CARTOON NETWORK Africa SA TNT Africa @@ -352,7 +361,7 @@ LCA RENOUVEAU TV RTDS - E! ENG + BRAVO ENG TELEMUNDO AFRICA MAGIC EPIC ZEE WORLD @@ -361,7 +370,7 @@ AFRICA MAGIC SHOWCASE MNET MOVIES 3 MNET MOVIES 4 - DISCOVER CHANNEL ENG + DISCOVERY CHANNEL ENG SS EPL SS LA LIGA CANAL 3 BURKINA @@ -375,9 +384,7 @@ TVC DOUNIA BONFEREY - SUNNA TV TVGE - CAPITAL SANTE TV MIKUBA TV LUDIKIDS OI VIXEN diff --git a/sites/canalplus.com/canalplus.com_bl.channels.xml b/sites/canalplus.com/canalplus.com_bl.channels.xml index de2e6c590..3e1edc708 100644 --- a/sites/canalplus.com/canalplus.com_bl.channels.xml +++ b/sites/canalplus.com/canalplus.com_bl.channels.xml @@ -10,34 +10,39 @@ PUNCH TV CANAL J CANAL+ HD - CANAL+ CINEMA(S) - DAZN 1 - DAZN 2 + CANAL+ CINEMA(S) HD + CNEWS PRIME + EUROPE 1 TV DAZN 3 DAZN 4 DAZN 5 CNN - CANAL+ SPORT HD + CANAL+SPORT HD EMCI - CINE+ FESTIVAL - CINE+ EMOTION - CINE+ FAMILY - CINE+ FRISSON HD + CINE+FESTIVAL + CINE+EMOTION + CINE+FAMILY + CINE+FRISSON HD OCS HD EVANGILE TV MANGAS + T18 COMEDIE+ + NOVO19 E! ENTERTAINMENT - EQUIDIA LIVE + EQUIDIA HD ESPN + MIEUX + EUROPE 2 POP TV EUROSPORT 1 HD EUROSPORT 2 HD + RADIO TELE ECLAIR FRANCE 3 FRANCE 5 CNEWS INFOSPORT+ LCI - LCP ASSEMBLEE NATIONALE + LCP L'EQUIPE M6 HD MTV France @@ -61,10 +66,9 @@ XXL FRANCE 24 BEIN SPORTS 1 HD - TPMP PIWI+ GAME ONE - USHUAÏA TV + USHUAIA TVHD W9 PLANETE+ CRIME GULLI @@ -78,7 +82,6 @@ FRANCE 2 FRANCE 4 KMT - NRJ 12 CSTAR NICKELODEON TV GLOBO @@ -96,25 +99,25 @@ HUSTLER TV Métropole CANAL+ SERIES HD - CINE + CLASSIC + CINE+CLASSIC BEIN SPORTS 3 HD - CANAL+ SPORT AYITI 1 - HAITI SPORT 2 + C+SPORT AYITI 1 HD + C+SPORT AYITI 2 HBO HBO Family HBO XTREME ENGLISH CLUB TV - CANAL+ KIDS HD + CANAL+KIDS HD GOLF+ A+ NOLLYWOOD TV france CANAL SONY TV CARAIBES - CHERIE 25 + RMC LIFE CARTOON NETWORK BOOMERANG - CANAL+ SPORT 360 - CANAL+ FOOT + CANAL+SPORT360 HD + CANAL+FOOT HD NOVELAS TV BBLACK CARIBBEAN BEIN SPORTS MAX 4 @@ -145,7 +148,7 @@ TELEMUNDO TOUTE L HISTOIRE OLYMPIA TV - CANAL+ PREMIER LEAGUE + CANAL+PREMIER LEAGUE EVENEMENT 4K ZITATA TV LUDIKIDS OI @@ -153,7 +156,7 @@ TELE SOLEIL GRAPHE TV NICKELODEON JR - STUDIOCANAL + STUDIOCANAL TV NATHAN+ TROTTERS TV FUSION TV @@ -161,11 +164,10 @@ BFM TV BFM BUSINESS RMC STORY - CANAL+ AYITI + CANAL+AYITI HD CANAL EVENEMENT CARA SPORT EN FRANCE - CANAL+ DOCS - TRAVEL XP + CANAL+DOCS CHEVAL TV MEZZO LIVE RMC DECOUVERTE diff --git a/sites/canalplus.com/canalplus.com_cd.channels.xml b/sites/canalplus.com/canalplus.com_cd.channels.xml index 040f18051..483934bed 100644 --- a/sites/canalplus.com/canalplus.com_cd.channels.xml +++ b/sites/canalplus.com/canalplus.com_cd.channels.xml @@ -22,7 +22,6 @@ BOSOLO TV RTCE MALAIKA TV - HK6 HERITAGE TV E! Bukedde TV @@ -35,8 +34,6 @@ France 2 INT MANGAS RTB ZENITH - HOPE TV - RTNK MEZZO HOREB TV MTV France @@ -55,13 +52,12 @@ AFRIKINFO TV EVANGILE TV REFLET TV + TRACE CHRISTMAS TOUBA TV TELEMUSIK SENEGAL MOURCHID TV - TELE-ECOLE AL MOURIDIYYAH TV MALIKIA TV - CANAL EDUCATION FULBE TF1 KAYES TV @@ -69,6 +65,7 @@ TMC SEGOU TV SUNNA TV SAVANA + CANAL+ CAN GO TV HUSTLER HD TROPIC TV @@ -80,11 +77,9 @@ GALAXIE TELE FRANCE 24 BALAFON TV - TAMBARIN HAUSA TV DASH TV BETV HTV BURUNDI - TPMP RTB 2STV ISIBO TV @@ -121,8 +116,8 @@ TELE CONGO BENIN TV HD RTNC + CANAL+ CAN IVOIRE PRIVATE TV - WILDEARTH TPT+ TRACE AFRICA AFRIQUE VOIR+ @@ -147,7 +142,6 @@ M7 RTB 3 TV AL HOUDA - JES TV SUNNA TV ZARMA TAURARUWA FOR YOU TV @@ -155,7 +149,6 @@ TRACE MBOA SUN+ TV TV+ AFRIQUE - LPC NOLLYWOOD TV RTI2 TV TOGO @@ -170,18 +163,18 @@ CONGO 26 ISHUSHO TV MRTV - SHIF TV + CHIF TV GC7 GC2 GC6 ESPERANCE TV BUJA TV AL JAZEERA ENG - BET ENG + BET (ENG) UNIVERSAL GC1 SHADOW TV - CANAL+ ELLES + C+ MAGIC PARAMOUNT NETWORK SS FOOTBALL PLUS HD SS FOOTBALL HD @@ -206,7 +199,6 @@ BBLACK AFRICA TELE FONTAINE VIE CNN - TLC CARTOON NETWORK CARTOONITO BOOMERANG @@ -217,11 +209,9 @@ RTB 3 dupli TVCA RTB dupli - TOZALI TV LUMEN CHRISTI PRC JESUS 24 TV - SUNNA TV CH3 CH4 PARLEMENT TV @@ -233,17 +223,30 @@ BCN TV BRIK TV AL NASSR + BENIN TV ALAFIA + ACTIVATION NETFLIX + DNTV + AFRICA MAGIC HAUSA + AFRICA MAGIC YORUBA + MAISHA MAGIC EAST + MAISHA MAGIC PLUS + TEST AFRIQUE + MIEUX + EUROPE 2 POP TV GULLI AFRICA NOVELAS TV + TRACE IVOIRE PACIS TV MY MEDIA PRIME SCIENCE ET VIE TV ENGLISH CLUB TV + ZEE ALWAN FASHION AFRICA TV SEN TV ASONGA TV DIGITAL CONGO TELE 50 + SS WWE DRTV TV MAURITANIE IMPACT TV @@ -252,15 +255,24 @@ BUSINESS 24 CANAL+ SPORT 4 CANAL+ SPORT 5 + VOIR+ RDC ZEE MAGIC ORTM2 EVASION TV RTD + GOLF+ HD + LOVE NATURE CANAL+ FAMILY OUEST ONE TV + CNEWS PRIME + EUROPE 1 TV + AES TV HD + MAISHA MAGIC BONGO + NATIONAL GEOGRAPHIC ENG + STUDIO UNIVERSAL SSM TV MCR TV - OMEGA TV + SUPERSPORT ACTION AFRICANEWS E-TELEVISION ESPACE TV @@ -278,12 +290,11 @@ TREK J-ONE BANTAMBA TV - TRACE MZIKI CNBC AFRICA WALF TV LTM MEDI1 TV - CH1 + CNEWS PRIME IVOIRE TV Music UNIVERS TV MIRACLE TV+ @@ -313,7 +324,7 @@ MUSEUM TV CANAL 2 MOVIES EMCI - CH2 + EUROPE 1 TV A+ IVOIRE Antenne VISION 4 RCA AREWA 24 @@ -331,13 +342,11 @@ TM1 TOUTE L HISTOIRE PSTV - FARIN WATA KC2 TV1 TV O FLASH TV ISANGO STAR TV - GENESIS TV BTN TV CARTOON NETWORK Africa SA TNT Africa @@ -352,7 +361,7 @@ LCA RENOUVEAU TV RTDS - E! ENG + BRAVO ENG TELEMUNDO AFRICA MAGIC EPIC ZEE WORLD @@ -361,7 +370,7 @@ AFRICA MAGIC SHOWCASE MNET MOVIES 3 MNET MOVIES 4 - DISCOVER CHANNEL ENG + DISCOVERY CHANNEL ENG SS EPL SS LA LIGA CANAL 3 BURKINA @@ -375,9 +384,7 @@ TVC DOUNIA BONFEREY - SUNNA TV TVGE - CAPITAL SANTE TV MIKUBA TV LUDIKIDS OI VIXEN diff --git a/sites/canalplus.com/canalplus.com_cf.channels.xml b/sites/canalplus.com/canalplus.com_cf.channels.xml index c85d338bd..90e97f454 100644 --- a/sites/canalplus.com/canalplus.com_cf.channels.xml +++ b/sites/canalplus.com/canalplus.com_cf.channels.xml @@ -22,7 +22,6 @@ BOSOLO TV RTCE MALAIKA TV - HK6 HERITAGE TV E! Bukedde TV @@ -35,8 +34,6 @@ France 2 INT MANGAS RTB ZENITH - HOPE TV - RTNK MEZZO HOREB TV MTV France @@ -55,13 +52,12 @@ AFRIKINFO TV EVANGILE TV REFLET TV + TRACE CHRISTMAS TOUBA TV TELEMUSIK SENEGAL MOURCHID TV - TELE-ECOLE AL MOURIDIYYAH TV MALIKIA TV - CANAL EDUCATION FULBE TF1 KAYES TV @@ -69,6 +65,7 @@ TMC SEGOU TV SUNNA TV SAVANA + CANAL+ CAN GO TV HUSTLER HD TROPIC TV @@ -80,11 +77,9 @@ GALAXIE TELE FRANCE 24 BALAFON TV - TAMBARIN HAUSA TV DASH TV BETV HTV BURUNDI - TPMP RTB 2STV ISIBO TV @@ -121,8 +116,8 @@ TELE CONGO BENIN TV HD RTNC + CANAL+ CAN IVOIRE PRIVATE TV - WILDEARTH TPT+ TRACE AFRICA AFRIQUE VOIR+ @@ -147,7 +142,6 @@ M7 RTB 3 TV AL HOUDA - JES TV SUNNA TV ZARMA TAURARUWA FOR YOU TV @@ -155,7 +149,6 @@ TRACE MBOA SUN+ TV TV+ AFRIQUE - LPC NOLLYWOOD TV RTI2 TV TOGO @@ -170,18 +163,18 @@ CONGO 26 ISHUSHO TV MRTV - SHIF TV + CHIF TV GC7 GC2 GC6 ESPERANCE TV BUJA TV AL JAZEERA ENG - BET ENG + BET (ENG) UNIVERSAL GC1 SHADOW TV - CANAL+ ELLES + C+ MAGIC PARAMOUNT NETWORK SS FOOTBALL PLUS HD SS FOOTBALL HD @@ -206,7 +199,6 @@ BBLACK AFRICA TELE FONTAINE VIE CNN - TLC CARTOON NETWORK CARTOONITO BOOMERANG @@ -217,11 +209,9 @@ RTB 3 dupli TVCA RTB dupli - TOZALI TV LUMEN CHRISTI PRC JESUS 24 TV - SUNNA TV CH3 CH4 PARLEMENT TV @@ -233,17 +223,30 @@ BCN TV BRIK TV AL NASSR + BENIN TV ALAFIA + ACTIVATION NETFLIX + DNTV + AFRICA MAGIC HAUSA + AFRICA MAGIC YORUBA + MAISHA MAGIC EAST + MAISHA MAGIC PLUS + TEST AFRIQUE + MIEUX + EUROPE 2 POP TV GULLI AFRICA NOVELAS TV + TRACE IVOIRE PACIS TV MY MEDIA PRIME SCIENCE ET VIE TV ENGLISH CLUB TV + ZEE ALWAN FASHION AFRICA TV SEN TV ASONGA TV DIGITAL CONGO TELE 50 + SS WWE DRTV TV MAURITANIE IMPACT TV @@ -252,15 +255,24 @@ BUSINESS 24 CANAL+ SPORT 4 CANAL+ SPORT 5 + VOIR+ RDC ZEE MAGIC ORTM2 EVASION TV RTD + GOLF+ HD + LOVE NATURE CANAL+ FAMILY OUEST ONE TV + CNEWS PRIME + EUROPE 1 TV + AES TV HD + MAISHA MAGIC BONGO + NATIONAL GEOGRAPHIC ENG + STUDIO UNIVERSAL SSM TV MCR TV - OMEGA TV + SUPERSPORT ACTION AFRICANEWS E-TELEVISION ESPACE TV @@ -278,12 +290,11 @@ TREK J-ONE BANTAMBA TV - TRACE MZIKI CNBC AFRICA WALF TV LTM MEDI1 TV - CH1 + CNEWS PRIME IVOIRE TV Music UNIVERS TV MIRACLE TV+ @@ -313,7 +324,7 @@ MUSEUM TV CANAL 2 MOVIES EMCI - CH2 + EUROPE 1 TV A+ IVOIRE Antenne VISION 4 RCA AREWA 24 @@ -331,13 +342,11 @@ TM1 TOUTE L HISTOIRE PSTV - FARIN WATA KC2 TV1 TV O FLASH TV ISANGO STAR TV - GENESIS TV BTN TV CARTOON NETWORK Africa SA TNT Africa @@ -352,7 +361,7 @@ LCA RENOUVEAU TV RTDS - E! ENG + BRAVO ENG TELEMUNDO AFRICA MAGIC EPIC ZEE WORLD @@ -361,7 +370,7 @@ AFRICA MAGIC SHOWCASE MNET MOVIES 3 MNET MOVIES 4 - DISCOVER CHANNEL ENG + DISCOVERY CHANNEL ENG SS EPL SS LA LIGA CANAL 3 BURKINA @@ -375,9 +384,7 @@ TVC DOUNIA BONFEREY - SUNNA TV TVGE - CAPITAL SANTE TV MIKUBA TV LUDIKIDS OI VIXEN diff --git a/sites/canalplus.com/canalplus.com_cg.channels.xml b/sites/canalplus.com/canalplus.com_cg.channels.xml index 3997dba4d..ac208819c 100644 --- a/sites/canalplus.com/canalplus.com_cg.channels.xml +++ b/sites/canalplus.com/canalplus.com_cg.channels.xml @@ -22,7 +22,6 @@ BOSOLO TV RTCE MALAIKA TV - HK6 HERITAGE TV E! Bukedde TV @@ -35,8 +34,6 @@ France 2 INT MANGAS RTB ZENITH - HOPE TV - RTNK MEZZO HOREB TV MTV France @@ -55,13 +52,12 @@ AFRIKINFO TV EVANGILE TV REFLET TV + TRACE CHRISTMAS TOUBA TV TELEMUSIK SENEGAL MOURCHID TV - TELE-ECOLE AL MOURIDIYYAH TV MALIKIA TV - CANAL EDUCATION FULBE TF1 KAYES TV @@ -69,6 +65,7 @@ TMC SEGOU TV SUNNA TV SAVANA + CANAL+ CAN GO TV HUSTLER HD TROPIC TV @@ -80,11 +77,9 @@ GALAXIE TELE FRANCE 24 BALAFON TV - TAMBARIN HAUSA TV DASH TV BETV HTV BURUNDI - TPMP RTB 2STV ISIBO TV @@ -121,8 +116,8 @@ TELE CONGO BENIN TV HD RTNC + CANAL+ CAN IVOIRE PRIVATE TV - WILDEARTH TPT+ TRACE AFRICA AFRIQUE VOIR+ @@ -147,7 +142,6 @@ M7 RTB 3 TV AL HOUDA - JES TV SUNNA TV ZARMA TAURARUWA FOR YOU TV @@ -155,7 +149,6 @@ TRACE MBOA SUN+ TV TV+ AFRIQUE - LPC NOLLYWOOD TV RTI2 TV TOGO @@ -170,18 +163,18 @@ CONGO 26 ISHUSHO TV MRTV - SHIF TV + CHIF TV GC7 GC2 GC6 ESPERANCE TV BUJA TV AL JAZEERA ENG - BET ENG + BET (ENG) UNIVERSAL GC1 SHADOW TV - CANAL+ ELLES + C+ MAGIC PARAMOUNT NETWORK SS FOOTBALL PLUS HD SS FOOTBALL HD @@ -206,7 +199,6 @@ BBLACK AFRICA TELE FONTAINE VIE CNN - TLC CARTOON NETWORK CARTOONITO BOOMERANG @@ -217,11 +209,9 @@ RTB 3 dupli TVCA RTB dupli - TOZALI TV LUMEN CHRISTI PRC JESUS 24 TV - SUNNA TV CH3 CH4 PARLEMENT TV @@ -233,17 +223,30 @@ BCN TV BRIK TV AL NASSR + BENIN TV ALAFIA + ACTIVATION NETFLIX + DNTV + AFRICA MAGIC HAUSA + AFRICA MAGIC YORUBA + MAISHA MAGIC EAST + MAISHA MAGIC PLUS + TEST AFRIQUE + MIEUX + EUROPE 2 POP TV GULLI AFRICA NOVELAS TV + TRACE IVOIRE PACIS TV MY MEDIA PRIME SCIENCE ET VIE TV ENGLISH CLUB TV + ZEE ALWAN FASHION AFRICA TV SEN TV ASONGA TV DIGITAL CONGO TELE 50 + SS WWE DRTV TV MAURITANIE IMPACT TV @@ -252,15 +255,24 @@ BUSINESS 24 CANAL+ SPORT 4 CANAL+ SPORT 5 + VOIR+ RDC ZEE MAGIC ORTM2 EVASION TV RTD + GOLF+ HD + LOVE NATURE CANAL+ FAMILY OUEST ONE TV + CNEWS PRIME + EUROPE 1 TV + AES TV HD + MAISHA MAGIC BONGO + NATIONAL GEOGRAPHIC ENG + STUDIO UNIVERSAL SSM TV MCR TV - OMEGA TV + SUPERSPORT ACTION AFRICANEWS E-TELEVISION ESPACE TV @@ -278,12 +290,11 @@ TREK J-ONE BANTAMBA TV - TRACE MZIKI CNBC AFRICA WALF TV LTM MEDI1 TV - CH1 + CNEWS PRIME IVOIRE TV Music UNIVERS TV MIRACLE TV+ @@ -313,7 +324,7 @@ MUSEUM TV CANAL 2 MOVIES EMCI - CH2 + EUROPE 1 TV A+ IVOIRE Antenne VISION 4 RCA AREWA 24 @@ -331,13 +342,11 @@ TM1 TOUTE L HISTOIRE PSTV - FARIN WATA KC2 TV1 TV O FLASH TV ISANGO STAR TV - GENESIS TV BTN TV CARTOON NETWORK Africa SA TNT Africa @@ -352,7 +361,7 @@ LCA RENOUVEAU TV RTDS - E! ENG + BRAVO ENG TELEMUNDO AFRICA MAGIC EPIC ZEE WORLD @@ -361,7 +370,7 @@ AFRICA MAGIC SHOWCASE MNET MOVIES 3 MNET MOVIES 4 - DISCOVER CHANNEL ENG + DISCOVERY CHANNEL ENG SS EPL SS LA LIGA CANAL 3 BURKINA @@ -375,9 +384,7 @@ TVC DOUNIA BONFEREY - SUNNA TV TVGE - CAPITAL SANTE TV MIKUBA TV LUDIKIDS OI VIXEN diff --git a/sites/canalplus.com/canalplus.com_ch.channels.xml b/sites/canalplus.com/canalplus.com_ch.channels.xml index 2eba9db62..33a0ced81 100644 --- a/sites/canalplus.com/canalplus.com_ch.channels.xml +++ b/sites/canalplus.com/canalplus.com_ch.channels.xml @@ -3,7 +3,9 @@ CANAL+FOOT FRANCE 2 CNN + CHAINE: 45 BLOOMBERG TV + 2M MONDE CNBC TVE INTERNACIONAL TEST05 @@ -29,21 +31,20 @@ CANAL+SPORT CANAL+CINEMA.S TEST04 + TV7 TUNISIE AL JAZEERA ARABIC ARIRANG TV CANAL+KIDS 8 MONT-BLANC MEZZO LIVE PLANETE+ - CHAINE JEUNESSE 2 - CHAINE JEUNESSE 1 + FRANCE 24 ARABE + CGTN DOCUMENTARY CHAINE EVENEMENT - CHAINE DECOUVERTE 2 TEVA PARIS PREMIERE W9 CANAL+ - CHAINE DECOUVERTE 1 FRANCE 24 FRANCE 24 ENG TF1 @@ -61,19 +62,20 @@ CINE+ EMOTION CINE+ FRISSON EUROSPORT 2 - CHERIE 25 - TPMP + RMC LIFE L'EQUIPE MTV CNEWS CANAL+SERIES J-ONE PARAMOUNT NETWORK - CANAL 24 HORAS + 24H CARTOON NETWORK ANIMAUX ACTION RTL9 + ALGERIE 3 + CANAL ALGERIE CSTAR BEIN SPORTS 3 NICKTOONS @@ -81,12 +83,12 @@ 6TER CANAL J TF1 SERIES FILMS + NOLLYWOOD TV BOOMERANG CINE+ CLASSIC CINE+ FESTIVAL CINE+ FAMILY COMEDIE+ - CHAINE JEUNESSE 3 DORCEL TV DORCEL XXX EQUIDIA @@ -165,17 +167,18 @@ MUSEUM NICKELODEON+1 CHASSE ET PECHE + CHAINE: 684 POLAR+ NOVELAS TV WARNER TV EURONEWS ALL CANAL+ (CH) - CSTAR HITS FRANCE + EUROPE 2 POP TV + CHAINE: 724 EVENEMENT SPORT 4K UHD CANAL+ UHD RMC SPORT 1 RMC SPORT 2 - CL4 TEST14 CANAL 9 RTS 1 @@ -190,7 +193,6 @@ SRF 2 3 SAT ARD DAS ERSTE - RAI UNO (CH) ORF 1 TRACE LATINA COMEDY CENTRAL @@ -201,8 +203,10 @@ CANAL+ CINEMA.S (CH) OCS (CH) CINE+ FRISSON (CH) - TPMP (CH) CSTAR (CH) + A+ + A+ IVOIRE + NOLLYWOOD TV EPIC EURONEWS ITALIE EVENEMENT SPORT UHD HDR CANAL+ SPORT (CH) @@ -218,24 +222,24 @@ F3 PICARDIE F3 FRANCHE COMTE F3 AQUITAINE - F3 BNORMANDIE + F3 NORMANDIE B F3 AUVERGNE F3 BOURGOGNE F3 ALPES - F3 NORD PDC + F3 NORD F3 LIMOUSIN F3 RHONE ALPES - F3 PROV ALPES - F3 LANGUEDOCROU + F3 PROVENCE ALPES + F3 LANGUEDOCROUS F3 LORRAINE F3 PAYS DE LA LOIRE F3 COTE D'AZUR F3 CENTRE F3 PARIS IDF - F3 POITOUCHAR + F3 POITOU CHARENT F3 CHAMP ARDENNE F3 BRETAGNE - F3 HNORMANDIE + F3 NORMANDIE H F3 ALSACE F3 MIDI PYRENEES F3 CORSEVIASTELLA @@ -245,7 +249,8 @@ CHAINE : 973 CHAINE : 974 CHAINE : 975 - NOA + F3 NOA + CANAL+ MODE EVENT CANAL+FOOT CANAL+SPORT360 CANAL+SPORT 360 (CH) @@ -335,10 +340,32 @@ T18 NOVO19 CINE+ FESTIVAL (CH) - Chaine: 1172 - Chaine: 1173 - Chaine: 1174 - Chaine: 1179 - Chaine: 1180 + CNEWS PRIME + EUROPE 1 TV + LIGUE 1+ 3 + LIGUE 1+ 4 + LIGUE 1+ 5 + MIEUX + CHEVAL TV + SUNU YEUF + PULAAGU + MANDEKA + MABOKE TV + ECHOROUK NEWS + ECHOROUK TV + NESSMA TV + SAMIRA TV + EL HIWAR ETTOUNSI + SKYNEWS ARABIA + MBC 5 + MBC DRAMA + ROTANA CINEMA FR + ROTANA CINEMA + ROTANA KIDS + A+ BENIN + Chaine: 1199 + Chaine: 1200 + Chaine: 1201 + CGTN FRANCAIS ARTE ALLEMAND diff --git a/sites/canalplus.com/canalplus.com_ch_de.channels.xml b/sites/canalplus.com/canalplus.com_ch_de.channels.xml new file mode 100644 index 000000000..b2290a265 --- /dev/null +++ b/sites/canalplus.com/canalplus.com_ch_de.channels.xml @@ -0,0 +1,22 @@ + + + TV5MONDEEurope + ArteHD + DasErsteHD + HistoryChannelHD + NATIONAL GEOGRAPHIC WILD + CrimeInvestigation + 3satHD + ORFEinsHD + SPORT DIGITAL FUSSBALL + 13thStreetHD + SyfyHD + KinoweltTV + Euronews + UniversalTVHD + NationalGeographicHD + SPORT DIGITAL +1 + CANAL+ PREMIER LEAGUE + CANAL+ SPORT EVENT 1 + CANAL+ SPORT EVENT 2 + diff --git a/sites/canalplus.com/canalplus.com_ci.channels.xml b/sites/canalplus.com/canalplus.com_ci.channels.xml index d59bebda3..ee9cfa3ec 100644 --- a/sites/canalplus.com/canalplus.com_ci.channels.xml +++ b/sites/canalplus.com/canalplus.com_ci.channels.xml @@ -22,7 +22,6 @@ BOSOLO TV RTCE MALAIKA TV - HK6 HERITAGE TV E! Bukedde TV @@ -35,8 +34,6 @@ France 2 INT MANGAS RTB ZENITH - HOPE TV - RTNK MEZZO HOREB TV MTV France @@ -55,13 +52,12 @@ AFRIKINFO TV EVANGILE TV REFLET TV + TRACE CHRISTMAS TOUBA TV TELEMUSIK SENEGAL MOURCHID TV - TELE-ECOLE AL MOURIDIYYAH TV MALIKIA TV - CANAL EDUCATION FULBE TF1 KAYES TV @@ -69,6 +65,7 @@ TMC SEGOU TV SUNNA TV SAVANA + CANAL+ CAN GO TV HUSTLER HD TROPIC TV @@ -80,11 +77,9 @@ GALAXIE TELE FRANCE 24 BALAFON TV - TAMBARIN HAUSA TV DASH TV BETV HTV BURUNDI - TPMP RTB 2STV ISIBO TV @@ -121,8 +116,8 @@ TELE CONGO BENIN TV HD RTNC + CANAL+ CAN IVOIRE PRIVATE TV - WILDEARTH TPT+ TRACE AFRICA AFRIQUE VOIR+ @@ -147,7 +142,6 @@ M7 RTB 3 TV AL HOUDA - JES TV SUNNA TV ZARMA TAURARUWA FOR YOU TV @@ -155,7 +149,6 @@ TRACE MBOA SUN+ TV TV+ AFRIQUE - LPC NOLLYWOOD TV RTI2 TV TOGO @@ -170,18 +163,18 @@ CONGO 26 ISHUSHO TV MRTV - SHIF TV + CHIF TV GC7 GC2 GC6 ESPERANCE TV BUJA TV AL JAZEERA ENG - BET ENG + BET (ENG) UNIVERSAL GC1 SHADOW TV - CANAL+ ELLES + C+ MAGIC PARAMOUNT NETWORK SS FOOTBALL PLUS HD SS FOOTBALL HD @@ -206,7 +199,6 @@ BBLACK AFRICA TELE FONTAINE VIE CNN - TLC CARTOON NETWORK CARTOONITO BOOMERANG @@ -217,11 +209,9 @@ RTB 3 dupli TVCA RTB dupli - TOZALI TV LUMEN CHRISTI PRC JESUS 24 TV - SUNNA TV CH3 CH4 PARLEMENT TV @@ -233,17 +223,30 @@ BCN TV BRIK TV AL NASSR + BENIN TV ALAFIA + ACTIVATION NETFLIX + DNTV + AFRICA MAGIC HAUSA + AFRICA MAGIC YORUBA + MAISHA MAGIC EAST + MAISHA MAGIC PLUS + TEST AFRIQUE + MIEUX + EUROPE 2 POP TV GULLI AFRICA NOVELAS TV + TRACE IVOIRE PACIS TV MY MEDIA PRIME SCIENCE ET VIE TV ENGLISH CLUB TV + ZEE ALWAN FASHION AFRICA TV SEN TV ASONGA TV DIGITAL CONGO TELE 50 + SS WWE DRTV TV MAURITANIE IMPACT TV @@ -252,15 +255,24 @@ BUSINESS 24 CANAL+ SPORT 4 CANAL+ SPORT 5 + VOIR+ RDC ZEE MAGIC ORTM2 EVASION TV RTD + GOLF+ HD + LOVE NATURE CANAL+ FAMILY OUEST ONE TV + CNEWS PRIME + EUROPE 1 TV + AES TV HD + MAISHA MAGIC BONGO + NATIONAL GEOGRAPHIC ENG + STUDIO UNIVERSAL SSM TV MCR TV - OMEGA TV + SUPERSPORT ACTION AFRICANEWS E-TELEVISION ESPACE TV @@ -278,12 +290,11 @@ TREK J-ONE BANTAMBA TV - TRACE MZIKI CNBC AFRICA WALF TV LTM MEDI1 TV - CH1 + CNEWS PRIME IVOIRE TV Music UNIVERS TV MIRACLE TV+ @@ -313,7 +324,7 @@ MUSEUM TV CANAL 2 MOVIES EMCI - CH2 + EUROPE 1 TV A+ IVOIRE Antenne VISION 4 RCA AREWA 24 @@ -331,13 +342,11 @@ TM1 TOUTE L HISTOIRE PSTV - FARIN WATA KC2 TV1 TV O FLASH TV ISANGO STAR TV - GENESIS TV BTN TV CARTOON NETWORK Africa SA TNT Africa @@ -352,7 +361,7 @@ LCA RENOUVEAU TV RTDS - E! ENG + BRAVO ENG TELEMUNDO AFRICA MAGIC EPIC ZEE WORLD @@ -361,7 +370,7 @@ AFRICA MAGIC SHOWCASE MNET MOVIES 3 MNET MOVIES 4 - DISCOVER CHANNEL ENG + DISCOVERY CHANNEL ENG SS EPL SS LA LIGA CANAL 3 BURKINA @@ -375,9 +384,7 @@ TVC DOUNIA BONFEREY - SUNNA TV TVGE - CAPITAL SANTE TV MIKUBA TV LUDIKIDS OI VIXEN diff --git a/sites/canalplus.com/canalplus.com_cm.channels.xml b/sites/canalplus.com/canalplus.com_cm.channels.xml index f63298c89..333fd0738 100644 --- a/sites/canalplus.com/canalplus.com_cm.channels.xml +++ b/sites/canalplus.com/canalplus.com_cm.channels.xml @@ -22,7 +22,6 @@ BOSOLO TV RTCE MALAIKA TV - HK6 HERITAGE TV E! Bukedde TV @@ -35,8 +34,6 @@ France 2 INT MANGAS RTB ZENITH - HOPE TV - RTNK MEZZO HOREB TV MTV France @@ -55,13 +52,12 @@ AFRIKINFO TV EVANGILE TV REFLET TV + TRACE CHRISTMAS TOUBA TV TELEMUSIK SENEGAL MOURCHID TV - TELE-ECOLE AL MOURIDIYYAH TV MALIKIA TV - CANAL EDUCATION FULBE TF1 KAYES TV @@ -69,6 +65,7 @@ TMC SEGOU TV SUNNA TV SAVANA + CANAL+ CAN GO TV HUSTLER HD TROPIC TV @@ -80,11 +77,9 @@ GALAXIE TELE FRANCE 24 BALAFON TV - TAMBARIN HAUSA TV DASH TV BETV HTV BURUNDI - TPMP RTB 2STV ISIBO TV @@ -121,8 +116,8 @@ TELE CONGO BENIN TV HD RTNC + CANAL+ CAN IVOIRE PRIVATE TV - WILDEARTH TPT+ TRACE AFRICA AFRIQUE VOIR+ @@ -147,7 +142,6 @@ M7 RTB 3 TV AL HOUDA - JES TV SUNNA TV ZARMA TAURARUWA FOR YOU TV @@ -155,7 +149,6 @@ TRACE MBOA SUN+ TV TV+ AFRIQUE - LPC NOLLYWOOD TV RTI2 TV TOGO @@ -170,18 +163,18 @@ CONGO 26 ISHUSHO TV MRTV - SHIF TV + CHIF TV GC7 GC2 GC6 ESPERANCE TV BUJA TV AL JAZEERA ENG - BET ENG + BET (ENG) UNIVERSAL GC1 SHADOW TV - CANAL+ ELLES + C+ MAGIC PARAMOUNT NETWORK SS FOOTBALL PLUS HD SS FOOTBALL HD @@ -206,7 +199,6 @@ BBLACK AFRICA TELE FONTAINE VIE CNN - TLC CARTOON NETWORK CARTOONITO BOOMERANG @@ -217,11 +209,9 @@ RTB 3 dupli TVCA RTB dupli - TOZALI TV LUMEN CHRISTI PRC JESUS 24 TV - SUNNA TV CH3 CH4 PARLEMENT TV @@ -233,17 +223,30 @@ BCN TV BRIK TV AL NASSR + BENIN TV ALAFIA + ACTIVATION NETFLIX + DNTV + AFRICA MAGIC HAUSA + AFRICA MAGIC YORUBA + MAISHA MAGIC EAST + MAISHA MAGIC PLUS + TEST AFRIQUE + MIEUX + EUROPE 2 POP TV GULLI AFRICA NOVELAS TV + TRACE IVOIRE PACIS TV MY MEDIA PRIME SCIENCE ET VIE TV ENGLISH CLUB TV + ZEE ALWAN FASHION AFRICA TV SEN TV ASONGA TV DIGITAL CONGO TELE 50 + SS WWE DRTV TV MAURITANIE IMPACT TV @@ -252,15 +255,24 @@ BUSINESS 24 CANAL+ SPORT 4 CANAL+ SPORT 5 + VOIR+ RDC ZEE MAGIC ORTM2 EVASION TV RTD + GOLF+ HD + LOVE NATURE CANAL+ FAMILY OUEST ONE TV + CNEWS PRIME + EUROPE 1 TV + AES TV HD + MAISHA MAGIC BONGO + NATIONAL GEOGRAPHIC ENG + STUDIO UNIVERSAL SSM TV MCR TV - OMEGA TV + SUPERSPORT ACTION AFRICANEWS E-TELEVISION ESPACE TV @@ -278,12 +290,11 @@ TREK J-ONE BANTAMBA TV - TRACE MZIKI CNBC AFRICA WALF TV LTM MEDI1 TV - CH1 + CNEWS PRIME IVOIRE TV Music UNIVERS TV MIRACLE TV+ @@ -313,7 +324,7 @@ MUSEUM TV CANAL 2 MOVIES EMCI - CH2 + EUROPE 1 TV A+ IVOIRE Antenne VISION 4 RCA AREWA 24 @@ -331,13 +342,11 @@ TM1 TOUTE L HISTOIRE PSTV - FARIN WATA KC2 TV1 TV O FLASH TV ISANGO STAR TV - GENESIS TV BTN TV CARTOON NETWORK Africa SA TNT Africa @@ -352,7 +361,7 @@ LCA RENOUVEAU TV RTDS - E! ENG + BRAVO ENG TELEMUNDO AFRICA MAGIC EPIC ZEE WORLD @@ -361,7 +370,7 @@ AFRICA MAGIC SHOWCASE MNET MOVIES 3 MNET MOVIES 4 - DISCOVER CHANNEL ENG + DISCOVERY CHANNEL ENG SS EPL SS LA LIGA CANAL 3 BURKINA @@ -375,9 +384,7 @@ TVC DOUNIA BONFEREY - SUNNA TV TVGE - CAPITAL SANTE TV MIKUBA TV LUDIKIDS OI VIXEN diff --git a/sites/canalplus.com/canalplus.com_cv.channels.xml b/sites/canalplus.com/canalplus.com_cv.channels.xml index 62ce36731..865f63dbf 100644 --- a/sites/canalplus.com/canalplus.com_cv.channels.xml +++ b/sites/canalplus.com/canalplus.com_cv.channels.xml @@ -22,7 +22,6 @@ BOSOLO TV RTCE MALAIKA TV - HK6 HERITAGE TV E! Bukedde TV @@ -35,8 +34,6 @@ France 2 INT MANGAS RTB ZENITH - HOPE TV - RTNK MEZZO HOREB TV MTV France @@ -55,13 +52,12 @@ AFRIKINFO TV EVANGILE TV REFLET TV + TRACE CHRISTMAS TOUBA TV TELEMUSIK SENEGAL MOURCHID TV - TELE-ECOLE AL MOURIDIYYAH TV MALIKIA TV - CANAL EDUCATION FULBE TF1 KAYES TV @@ -69,6 +65,7 @@ TMC SEGOU TV SUNNA TV SAVANA + CANAL+ CAN GO TV HUSTLER HD TROPIC TV @@ -80,11 +77,9 @@ GALAXIE TELE FRANCE 24 BALAFON TV - TAMBARIN HAUSA TV DASH TV BETV HTV BURUNDI - TPMP RTB 2STV ISIBO TV @@ -121,8 +116,8 @@ TELE CONGO BENIN TV HD RTNC + CANAL+ CAN IVOIRE PRIVATE TV - WILDEARTH TPT+ TRACE AFRICA AFRIQUE VOIR+ @@ -147,7 +142,6 @@ M7 RTB 3 TV AL HOUDA - JES TV SUNNA TV ZARMA TAURARUWA FOR YOU TV @@ -155,7 +149,6 @@ TRACE MBOA SUN+ TV TV+ AFRIQUE - LPC NOLLYWOOD TV RTI2 TV TOGO @@ -170,18 +163,18 @@ CONGO 26 ISHUSHO TV MRTV - SHIF TV + CHIF TV GC7 GC2 GC6 ESPERANCE TV BUJA TV AL JAZEERA ENG - BET ENG + BET (ENG) UNIVERSAL GC1 SHADOW TV - CANAL+ ELLES + C+ MAGIC PARAMOUNT NETWORK SS FOOTBALL PLUS HD SS FOOTBALL HD @@ -206,7 +199,6 @@ BBLACK AFRICA TELE FONTAINE VIE CNN - TLC CARTOON NETWORK CARTOONITO BOOMERANG @@ -217,11 +209,9 @@ RTB 3 dupli TVCA RTB dupli - TOZALI TV LUMEN CHRISTI PRC JESUS 24 TV - SUNNA TV CH3 CH4 PARLEMENT TV @@ -233,17 +223,30 @@ BCN TV BRIK TV AL NASSR + BENIN TV ALAFIA + ACTIVATION NETFLIX + DNTV + AFRICA MAGIC HAUSA + AFRICA MAGIC YORUBA + MAISHA MAGIC EAST + MAISHA MAGIC PLUS + TEST AFRIQUE + MIEUX + EUROPE 2 POP TV GULLI AFRICA NOVELAS TV + TRACE IVOIRE PACIS TV MY MEDIA PRIME SCIENCE ET VIE TV ENGLISH CLUB TV + ZEE ALWAN FASHION AFRICA TV SEN TV ASONGA TV DIGITAL CONGO TELE 50 + SS WWE DRTV TV MAURITANIE IMPACT TV @@ -252,15 +255,24 @@ BUSINESS 24 CANAL+ SPORT 4 CANAL+ SPORT 5 + VOIR+ RDC ZEE MAGIC ORTM2 EVASION TV RTD + GOLF+ HD + LOVE NATURE CANAL+ FAMILY OUEST ONE TV + CNEWS PRIME + EUROPE 1 TV + AES TV HD + MAISHA MAGIC BONGO + NATIONAL GEOGRAPHIC ENG + STUDIO UNIVERSAL SSM TV MCR TV - OMEGA TV + SUPERSPORT ACTION AFRICANEWS E-TELEVISION ESPACE TV @@ -278,12 +290,11 @@ TREK J-ONE BANTAMBA TV - TRACE MZIKI CNBC AFRICA WALF TV LTM MEDI1 TV - CH1 + CNEWS PRIME IVOIRE TV Music UNIVERS TV MIRACLE TV+ @@ -313,7 +324,7 @@ MUSEUM TV CANAL 2 MOVIES EMCI - CH2 + EUROPE 1 TV A+ IVOIRE Antenne VISION 4 RCA AREWA 24 @@ -331,13 +342,11 @@ TM1 TOUTE L HISTOIRE PSTV - FARIN WATA KC2 TV1 TV O FLASH TV ISANGO STAR TV - GENESIS TV BTN TV CARTOON NETWORK Africa SA TNT Africa @@ -352,7 +361,7 @@ LCA RENOUVEAU TV RTDS - E! ENG + BRAVO ENG TELEMUNDO AFRICA MAGIC EPIC ZEE WORLD @@ -361,7 +370,7 @@ AFRICA MAGIC SHOWCASE MNET MOVIES 3 MNET MOVIES 4 - DISCOVER CHANNEL ENG + DISCOVERY CHANNEL ENG SS EPL SS LA LIGA CANAL 3 BURKINA @@ -375,9 +384,7 @@ TVC DOUNIA BONFEREY - SUNNA TV TVGE - CAPITAL SANTE TV MIKUBA TV LUDIKIDS OI VIXEN diff --git a/sites/canalplus.com/canalplus.com_dj.channels.xml b/sites/canalplus.com/canalplus.com_dj.channels.xml index c27be5ef1..2d523a399 100644 --- a/sites/canalplus.com/canalplus.com_dj.channels.xml +++ b/sites/canalplus.com/canalplus.com_dj.channels.xml @@ -22,7 +22,6 @@ BOSOLO TV RTCE MALAIKA TV - HK6 HERITAGE TV E! Bukedde TV @@ -35,8 +34,6 @@ France 2 INT MANGAS RTB ZENITH - HOPE TV - RTNK MEZZO HOREB TV MTV France @@ -55,13 +52,12 @@ AFRIKINFO TV EVANGILE TV REFLET TV + TRACE CHRISTMAS TOUBA TV TELEMUSIK SENEGAL MOURCHID TV - TELE-ECOLE AL MOURIDIYYAH TV MALIKIA TV - CANAL EDUCATION FULBE TF1 KAYES TV @@ -69,6 +65,7 @@ TMC SEGOU TV SUNNA TV SAVANA + CANAL+ CAN GO TV HUSTLER HD TROPIC TV @@ -80,11 +77,9 @@ GALAXIE TELE FRANCE 24 BALAFON TV - TAMBARIN HAUSA TV DASH TV BETV HTV BURUNDI - TPMP RTB 2STV ISIBO TV @@ -121,8 +116,8 @@ TELE CONGO BENIN TV HD RTNC + CANAL+ CAN IVOIRE PRIVATE TV - WILDEARTH TPT+ TRACE AFRICA AFRIQUE VOIR+ @@ -147,7 +142,6 @@ M7 RTB 3 TV AL HOUDA - JES TV SUNNA TV ZARMA TAURARUWA FOR YOU TV @@ -155,7 +149,6 @@ TRACE MBOA SUN+ TV TV+ AFRIQUE - LPC NOLLYWOOD TV RTI2 TV TOGO @@ -170,18 +163,18 @@ CONGO 26 ISHUSHO TV MRTV - SHIF TV + CHIF TV GC7 GC2 GC6 ESPERANCE TV BUJA TV AL JAZEERA ENG - BET ENG + BET (ENG) UNIVERSAL GC1 SHADOW TV - CANAL+ ELLES + C+ MAGIC PARAMOUNT NETWORK SS FOOTBALL PLUS HD SS FOOTBALL HD @@ -206,7 +199,6 @@ BBLACK AFRICA TELE FONTAINE VIE CNN - TLC CARTOON NETWORK CARTOONITO BOOMERANG @@ -217,11 +209,9 @@ RTB 3 dupli TVCA RTB dupli - TOZALI TV LUMEN CHRISTI PRC JESUS 24 TV - SUNNA TV CH3 CH4 PARLEMENT TV @@ -233,17 +223,30 @@ BCN TV BRIK TV AL NASSR + BENIN TV ALAFIA + ACTIVATION NETFLIX + DNTV + AFRICA MAGIC HAUSA + AFRICA MAGIC YORUBA + MAISHA MAGIC EAST + MAISHA MAGIC PLUS + TEST AFRIQUE + MIEUX + EUROPE 2 POP TV GULLI AFRICA NOVELAS TV + TRACE IVOIRE PACIS TV MY MEDIA PRIME SCIENCE ET VIE TV ENGLISH CLUB TV + ZEE ALWAN FASHION AFRICA TV SEN TV ASONGA TV DIGITAL CONGO TELE 50 + SS WWE DRTV TV MAURITANIE IMPACT TV @@ -252,15 +255,24 @@ BUSINESS 24 CANAL+ SPORT 4 CANAL+ SPORT 5 + VOIR+ RDC ZEE MAGIC ORTM2 EVASION TV RTD + GOLF+ HD + LOVE NATURE CANAL+ FAMILY OUEST ONE TV + CNEWS PRIME + EUROPE 1 TV + AES TV HD + MAISHA MAGIC BONGO + NATIONAL GEOGRAPHIC ENG + STUDIO UNIVERSAL SSM TV MCR TV - OMEGA TV + SUPERSPORT ACTION AFRICANEWS E-TELEVISION ESPACE TV @@ -278,12 +290,11 @@ TREK J-ONE BANTAMBA TV - TRACE MZIKI CNBC AFRICA WALF TV LTM MEDI1 TV - CH1 + CNEWS PRIME IVOIRE TV Music UNIVERS TV MIRACLE TV+ @@ -313,7 +324,7 @@ MUSEUM TV CANAL 2 MOVIES EMCI - CH2 + EUROPE 1 TV A+ IVOIRE Antenne VISION 4 RCA AREWA 24 @@ -331,13 +342,11 @@ TM1 TOUTE L HISTOIRE PSTV - FARIN WATA KC2 TV1 TV O FLASH TV ISANGO STAR TV - GENESIS TV BTN TV CARTOON NETWORK Africa SA TNT Africa @@ -352,7 +361,7 @@ LCA RENOUVEAU TV RTDS - E! ENG + BRAVO ENG TELEMUNDO AFRICA MAGIC EPIC ZEE WORLD @@ -361,7 +370,7 @@ AFRICA MAGIC SHOWCASE MNET MOVIES 3 MNET MOVIES 4 - DISCOVER CHANNEL ENG + DISCOVERY CHANNEL ENG SS EPL SS LA LIGA CANAL 3 BURKINA @@ -375,9 +384,7 @@ TVC DOUNIA BONFEREY - SUNNA TV TVGE - CAPITAL SANTE TV MIKUBA TV LUDIKIDS OI VIXEN diff --git a/sites/canalplus.com/canalplus.com_et.channels.xml b/sites/canalplus.com/canalplus.com_et.channels.xml new file mode 100644 index 000000000..6c2dc476e --- /dev/null +++ b/sites/canalplus.com/canalplus.com_et.channels.xml @@ -0,0 +1,125 @@ + + + MCM TOP + CANAL+ DHANGAA HD + CANAL+ JAAMBOO HD + CANAL+ XOBBEE HD + GAMETOON + TV5 MONDE + PRIME MEDIA + AFAR TV + MARSIL TV + GMM TV + CATHOLIC TV ETHIOPIA + FRANCE 24 FR + AFRICA 24 ENGLISH + ARTS TV + WOLAITA TV + HORN CABLE TV + YA TV + MINBER TV + CANAL+ MENU + ABBAY TV + INPLUS + NOLLYWOOD TV + C+DISKOOVER + MTV HITS + NESIHA + BLOOMBERG TELEVISION + BBC NEWS + ENGLISH CLUB + CARTOON NETWORK + MTV AFRICAN ENG + NBA TV + TNT AFRICA + FASHION AFRICA TV + CANAL+ SPORT HD + TV 9 ETHIO + OBN GAAMMEE + OBN + E! + A+ KIDS + CANAL+ CINEMA 1 HD + CANAL+ NOVELA HD + CANAL+ NOOVEELAA HD + CANAL+ JUMBO HD + CANAL+ DISCOVER HD + CANAL+ GEBETA HD + CANAL+ CINEMA 2 HD + C+ DIK DIK + ESAT + STAR LIFE + MOTORVISION + FIGHT BOX + BETHEL TV + MTV BASE + CARTOONITO + TOONAMI + DREAMWORKS + HISTORY + TRAVEL XP + HARARI TV + SKY NEWS INTL + CNN + EBS HD + FANA TV + KANA + ETV NEWS + ETV ENTERTAINEMENT + ETV LANGUAGES + WALTA TV + NAHOO TV + SRTV + ADDIS MEDIA NETWORK + ASHAM TV + BALAGERU TV + DIRE TV + AMHARA TV + KIX + OBS + SMN TV + EOTC + ELSHADDAI TV NETWORK + LUDIKIDS + FRANCE 24 ENG + DEUTSCHE WELLE + BLOOMBERG ORIGINALS + JIMJAM + FILMBOX + FILMBOX FAMILY + FILMBOX ACTION + CANAL+ ACTION HD + W-SPORT + WILD EARTH + CBS REALITY + TRACE MUZIKA + MEZZO LIVE + TRACE URBAN + AL JAZEERA + ETV YELIJOCH ALEM HD + NBC ETHIOPIA HD + AFRO NEWS HD + BISRAT TV + GOHE TV + HAGERIE TV + K TV + A PLUS TV + ETV AFAN OROMO + TIGRAI TV + OBN HORN OF AFRICA + TIGRAI BROADCASTING SERVICE + BENISHANGUL-GUMUZ TV + KAFFA TV + KEMBATA TV + HADIYA TV + EOTC MK + AFRICA TV 1 + JEILU TV + BILAL TV + HEWYET TV + JESUS TV + RTD + .. + ... + .... + diff --git a/sites/canalplus.com/canalplus.com_fr.channels.xml b/sites/canalplus.com/canalplus.com_fr.channels.xml index 60c686baf..33658819c 100644 --- a/sites/canalplus.com/canalplus.com_fr.channels.xml +++ b/sites/canalplus.com/canalplus.com_fr.channels.xml @@ -1,10 +1,11 @@ - CANAL+FOOT - FRANCE 2 + AL JAZEERA ENG + BBC NEWS + NHK WORLD-JAPAN CNN - BLOOMBERG TV - CNBC + CHAINE: 45 + 2M MONDE TVE INTERNACIONAL TEST05 TEST06 @@ -12,7 +13,6 @@ TEST08 TEST09 TEST10 - CANAL+SPORT360 TEST11 TEST12 TEST13 @@ -20,232 +20,70 @@ TEST16 TEST17 TEST03 - EUROSPORT 1 KTO RTL - USHUAIA TV - ARTE DISCOVERY CHANNEL - CANAL+SPORT CANAL+CINEMA.S TEST04 + TV7 TUNISIE AL JAZEERA ARABIC - ARIRANG TV - CANAL+KIDS 8 MONT-BLANC - MEZZO LIVE - PLANETE+ - CHAINE JEUNESSE 2 - CHAINE JEUNESSE 1 + FRANCE 24 ARABE + CGTN DOCUMENTARY CHAINE EVENEMENT - CHAINE DECOUVERTE 2 - TEVA - PARIS PREMIERE - W9 - CANAL+ - CHAINE DECOUVERTE 1 - FRANCE 24 - FRANCE 24 ENG - TF1 - M6 - OCS - EURONEWS - M6 MUSIC - SERIE CLUB - I24 NEWS A LA UNE TCM CINEMA - GOLF+ - BEIN SPORTS 1 - BEIN SPORTS 2 - CINE+ EMOTION - CINE+ FRISSON - EUROSPORT 2 - CHERIE 25 - TPMP - L'EQUIPE - MTV - CNEWS - CANAL+SERIES - J-ONE - PARAMOUNT NETWORK - CANAL 24 HORAS + RMC LIFE + 24H CARTOON NETWORK - ANIMAUX - ACTION - RTL9 - CSTAR - BEIN SPORTS 3 - NICKTOONS - TV5 MONDE - 6TER - CANAL J - TF1 SERIES FILMS + ALGERIE 3 + CANAL ALGERIE + NOLLYWOOD TV BOOMERANG - CINE+ CLASSIC - CINE+ FESTIVAL CINE+ FAMILY - COMEDIE+ - CHAINE JEUNESSE 3 - DORCEL TV - DORCEL XXX - EQUIDIA - FRANCE 3 - FRANCE 4 - FRANCE 5 EVENEMENT SPORT 4K HDR UHD - VIXEN - GULLI - HISTOIRE TV - INFOSPORT+ - LA CHAINE METEO - LCI - LCP - MCM - RFM TV - MEZZO - MULTISPORTS 1 - MULTISPORTS 2 - MULTISPORTS 3 - MULTISPORTS 4 - MULTISPORTS 5 - MULTISPORTS 6 - NRJ HITS - TFX - RMC STORY CANAL+ CANAL+SPORT - PINK X - PIWI+ - SEASONS - MELODY - TELETOON+ - TELETOON+1 - TIJI - TMC - TRACE URBAN - TV BREIZH - PLANETE+CRIME - PLANETE+AVENTURE - BBC NEWS - NICKELODEON - GAME ONE - NICKELODEON JUNIOR - RMC DECOUVERTE - BEIN SPORTS MAX 4 - BEIN SPORTS MAX 5 - BEIN SPORTS MAX 6 - BEIN SPORTS MAX 7 CANAL+ - BEIN SPORTS MAX 8 - BEIN SPORTS MAX 9 - BEIN SPORTS MAX 10 - AB1 - AUTOMOTO LA CHAINE - MANGAS - XXL - TOUTE L'HISTOIRE - BET - ASTROCENTER TV - BFM TV - EUROSPORT 360 1 - EUROSPORT 360 2 - EUROSPORT 360 3 - EUROSPORT 360 4 LL EVENT UHD - BFM BUSINESS - EUROSPORT 360 5 - EUROSPORT 360 6 - EUROSPORT 360 7 - EUROSPORT 360 8 - NHK WORLD-JAPAN - FRANCEINFO: - MAN X - AL JAZEERA ENG MUSEUM NICKELODEON+1 - CHASSE ET PECHE - POLAR+ - NOVELAS TV + CHAINE: 684 WARNER TV EURONEWS ALL CANAL+ (CH) - CSTAR HITS FRANCE + CHAINE: 724 EVENEMENT SPORT 4K UHD CANAL+ UHD - RMC SPORT 1 - RMC SPORT 2 - CL4 TEST14 CANAL 9 RTS 1 RTS 2 - CANAL ALPHA NE - LA TELE - LEMAN BLEU - TELEBIELINGUE RSI 1 RSI 2 - SRF 1 SRF 2 3 SAT - ARD DAS ERSTE - RAI UNO (CH) - ORF 1 - TRACE LATINA - COMEDY CENTRAL - OLYMPIA TV - CANAL+PREMIER LEAGUE - MGG TV CANAL+ (CH) CANAL+ CINEMA.S (CH) OCS (CH) CINE+ FRISSON (CH) - TPMP (CH) CSTAR (CH) + A+ + A+ IVOIRE + NOLLYWOOD TV EPIC EURONEWS ITALIE EVENEMENT SPORT UHD HDR CANAL+ SPORT (CH) CANAL+ UHD (CH) TEST01 TEST02 - CARAC1 - CARAC3 - CARAC2 - BLUE ZOOM - CANAL+DOCS - CANAL+GRAND ECRAN - F3 PICARDIE - F3 FRANCHE COMTE - F3 AQUITAINE - F3 BNORMANDIE - F3 AUVERGNE - F3 BOURGOGNE - F3 ALPES - F3 NORD PDC - F3 LIMOUSIN - F3 RHONE ALPES - F3 PROV ALPES - F3 LANGUEDOCROU - F3 LORRAINE - F3 PAYS DE LA LOIRE - F3 COTE D'AZUR - F3 CENTRE - F3 PARIS IDF - F3 POITOUCHAR - F3 CHAMP ARDENNE - F3 BRETAGNE - F3 HNORMANDIE - F3 ALSACE - F3 MIDI PYRENEES - F3 CORSEVIASTELLA CHAINE : 970 CHAINE : 971 CHAINE : 972 CHAINE : 973 CHAINE : 974 CHAINE : 975 - NOA + CANAL+ MODE EVENT CANAL+FOOT CANAL+SPORT360 CANAL+SPORT 360 (CH) @@ -335,10 +173,199 @@ T18 NOVO19 CINE+ FESTIVAL (CH) - Chaine: 1172 - Chaine: 1173 - Chaine: 1174 - Chaine: 1179 - Chaine: 1180 + CNEWS PRIME + EUROPE 1 TV + LIGUE 1+ 3 + LIGUE 1+ 4 + LIGUE 1+ 5 + MIEUX + CHEVAL TV + SUNU YEUF + PULAAGU + MANDEKA + MABOKE TV + ECHOROUK NEWS + ECHOROUK TV + NESSMA TV + SAMIRA TV + EL HIWAR ETTOUNSI + SKYNEWS ARABIA + MBC 5 + MBC DRAMA + ROTANA CINEMA FR + ROTANA CINEMA + ROTANA KIDS + A+ BENIN + Chaine: 1199 + Chaine: 1200 + Chaine: 1201 + CGTN FRANCAIS ARTE ALLEMAND + 6TER + AB1 + ACTION + ANIMAUX + ARIRANG TV + ARTE + ASTROCENTER TV + AUTOMOTO LA CHAINE + BEIN SPORTS 1 + BEIN SPORTS 2 + BEIN SPORTS 3 + BEIN SPORTS MAX 4 + BEIN SPORTS MAX 5 + BEIN SPORTS MAX 6 + BEIN SPORTS MAX 7 + BEIN SPORTS MAX 8 + BEIN SPORTS MAX 9 + BEIN SPORTS MAX 10 + BET + BFM BUSINESS + BFM TV + BLOOMBERG TV + BLUE ZOOM + CANAL ALPHA NE + CANAL J + CANAL+ + CANAL+DOCS + CANAL+FOOT + CANAL+GRAND ECRAN + CANAL+KIDS + CANAL+PREMIER LEAGUE + CANAL+SERIES + CANAL+SPORT360 + CANAL+SPORT + CHASSE ET PECHE + CINE+ CLASSIC + CINE+ FESTIVAL + CINE+ EMOTION + CINE+ FRISSON + OCS + CNBC + CNEWS + COMEDIE+ + COMEDY CENTRAL + CSTAR + EUROPE 2 POP TV + ARD DAS ERSTE + DORCEL TV + DORCEL XXX + EQUIDIA + EURONEWS + EUROSPORT 1 + EUROSPORT 2 + EUROSPORT 360 1 + EUROSPORT 360 2 + EUROSPORT 360 3 + EUROSPORT 360 4 + EUROSPORT 360 5 + EUROSPORT 360 6 + EUROSPORT 360 7 + EUROSPORT 360 8 + FRANCE 2 + F3 ALPES + F3 ALSACE + F3 AQUITAINE + F3 AUVERGNE + F3 NORMANDIE B + F3 BOURGOGNE + F3 BRETAGNE + F3 CENTRE + F3 CHAMP ARDENNE + F3 CORSEVIASTELLA + F3 COTE D'AZUR + F3 FRANCHE COMTE + F3 NORMANDIE H + F3 LANGUEDOCROUS + F3 LIMOUSIN + F3 LORRAINE + F3 MIDI PYRENEES + F3 NORD + F3 NOA + F3 PARIS IDF + F3 PAYS DE LA LOIRE + F3 PICARDIE + F3 POITOU CHARENT + F3 PROVENCE ALPES + F3 RHONE ALPES + FRANCE 3 + FRANCE 4 + FRANCE 5 + FRANCE 24 ENG + FRANCE 24 + FRANCEINFO: + GAME ONE + GOLF+ + GULLI + HISTOIRE TV + I24 NEWS + INFOSPORT+ + J-ONE + LA CHAINE METEO + LA TELE + LCI + LCP + LEMAN BLEU + L'EQUIPE + CARAC3 + M6 + M6 MUSIC + MANGAS + MAN X + MCM + MELODY + MEZZO + MEZZO LIVE + MGG TV + MTV + MULTISPORTS 1 + MULTISPORTS 2 + MULTISPORTS 3 + MULTISPORTS 4 + MULTISPORTS 5 + MULTISPORTS 6 + NICKELODEON + NICKELODEON JUNIOR + NICKTOONS + NOVELAS TV + NRJ HITS + OLYMPIA TV + CARAC2 + ORF 1 + PARAMOUNT NETWORK + PARIS PREMIERE + PINK X + PIWI+ + PLANETE+ + PLANETE+AVENTURE + PLANETE+CRIME + POLAR+ + RFM TV + RMC DECOUVERTE + RMC SPORT 1 + RMC SPORT 2 + RMC STORY + CARAC1 + RTL9 + SEASONS + SERIE CLUB + SRF 1 + TELEBIELINGUE + TELETOON+1 + TELETOON+ + TEVA + TF1 + TF1 SERIES FILMS + TFX + TIJI + TMC + TOUTE L'HISTOIRE + TRACE LATINA + TRACE URBAN + TV5 MONDE + TV BREIZH + USHUAIA TV + VIXEN + W9 + XXL diff --git a/sites/canalplus.com/canalplus.com_ga.channels.xml b/sites/canalplus.com/canalplus.com_ga.channels.xml index 09daf682e..60431bf8a 100644 --- a/sites/canalplus.com/canalplus.com_ga.channels.xml +++ b/sites/canalplus.com/canalplus.com_ga.channels.xml @@ -22,7 +22,6 @@ BOSOLO TV RTCE MALAIKA TV - HK6 HERITAGE TV E! Bukedde TV @@ -35,8 +34,6 @@ France 2 INT MANGAS RTB ZENITH - HOPE TV - RTNK MEZZO HOREB TV MTV France @@ -55,13 +52,12 @@ AFRIKINFO TV EVANGILE TV REFLET TV + TRACE CHRISTMAS TOUBA TV TELEMUSIK SENEGAL MOURCHID TV - TELE-ECOLE AL MOURIDIYYAH TV MALIKIA TV - CANAL EDUCATION FULBE TF1 KAYES TV @@ -69,6 +65,7 @@ TMC SEGOU TV SUNNA TV SAVANA + CANAL+ CAN GO TV HUSTLER HD TROPIC TV @@ -80,11 +77,9 @@ GALAXIE TELE FRANCE 24 BALAFON TV - TAMBARIN HAUSA TV DASH TV BETV HTV BURUNDI - TPMP RTB 2STV ISIBO TV @@ -121,8 +116,8 @@ TELE CONGO BENIN TV HD RTNC + CANAL+ CAN IVOIRE PRIVATE TV - WILDEARTH TPT+ TRACE AFRICA AFRIQUE VOIR+ @@ -147,7 +142,6 @@ M7 RTB 3 TV AL HOUDA - JES TV SUNNA TV ZARMA TAURARUWA FOR YOU TV @@ -155,7 +149,6 @@ TRACE MBOA SUN+ TV TV+ AFRIQUE - LPC NOLLYWOOD TV RTI2 TV TOGO @@ -170,18 +163,18 @@ CONGO 26 ISHUSHO TV MRTV - SHIF TV + CHIF TV GC7 GC2 GC6 ESPERANCE TV BUJA TV AL JAZEERA ENG - BET ENG + BET (ENG) UNIVERSAL GC1 SHADOW TV - CANAL+ ELLES + C+ MAGIC PARAMOUNT NETWORK SS FOOTBALL PLUS HD SS FOOTBALL HD @@ -206,7 +199,6 @@ BBLACK AFRICA TELE FONTAINE VIE CNN - TLC CARTOON NETWORK CARTOONITO BOOMERANG @@ -217,11 +209,9 @@ RTB 3 dupli TVCA RTB dupli - TOZALI TV LUMEN CHRISTI PRC JESUS 24 TV - SUNNA TV CH3 CH4 PARLEMENT TV @@ -233,17 +223,30 @@ BCN TV BRIK TV AL NASSR + BENIN TV ALAFIA + ACTIVATION NETFLIX + DNTV + AFRICA MAGIC HAUSA + AFRICA MAGIC YORUBA + MAISHA MAGIC EAST + MAISHA MAGIC PLUS + TEST AFRIQUE + MIEUX + EUROPE 2 POP TV GULLI AFRICA NOVELAS TV + TRACE IVOIRE PACIS TV MY MEDIA PRIME SCIENCE ET VIE TV ENGLISH CLUB TV + ZEE ALWAN FASHION AFRICA TV SEN TV ASONGA TV DIGITAL CONGO TELE 50 + SS WWE DRTV TV MAURITANIE IMPACT TV @@ -252,15 +255,24 @@ BUSINESS 24 CANAL+ SPORT 4 CANAL+ SPORT 5 + VOIR+ RDC ZEE MAGIC ORTM2 EVASION TV RTD + GOLF+ HD + LOVE NATURE CANAL+ FAMILY OUEST ONE TV + CNEWS PRIME + EUROPE 1 TV + AES TV HD + MAISHA MAGIC BONGO + NATIONAL GEOGRAPHIC ENG + STUDIO UNIVERSAL SSM TV MCR TV - OMEGA TV + SUPERSPORT ACTION AFRICANEWS E-TELEVISION ESPACE TV @@ -278,12 +290,11 @@ TREK J-ONE BANTAMBA TV - TRACE MZIKI CNBC AFRICA WALF TV LTM MEDI1 TV - CH1 + CNEWS PRIME IVOIRE TV Music UNIVERS TV MIRACLE TV+ @@ -313,7 +324,7 @@ MUSEUM TV CANAL 2 MOVIES EMCI - CH2 + EUROPE 1 TV A+ IVOIRE Antenne VISION 4 RCA AREWA 24 @@ -331,13 +342,11 @@ TM1 TOUTE L HISTOIRE PSTV - FARIN WATA KC2 TV1 TV O FLASH TV ISANGO STAR TV - GENESIS TV BTN TV CARTOON NETWORK Africa SA TNT Africa @@ -352,7 +361,7 @@ LCA RENOUVEAU TV RTDS - E! ENG + BRAVO ENG TELEMUNDO AFRICA MAGIC EPIC ZEE WORLD @@ -361,7 +370,7 @@ AFRICA MAGIC SHOWCASE MNET MOVIES 3 MNET MOVIES 4 - DISCOVER CHANNEL ENG + DISCOVERY CHANNEL ENG SS EPL SS LA LIGA CANAL 3 BURKINA @@ -375,9 +384,7 @@ TVC DOUNIA BONFEREY - SUNNA TV TVGE - CAPITAL SANTE TV MIKUBA TV LUDIKIDS OI VIXEN diff --git a/sites/canalplus.com/canalplus.com_gf.channels.xml b/sites/canalplus.com/canalplus.com_gf.channels.xml index cd650dd5a..d45e43789 100644 --- a/sites/canalplus.com/canalplus.com_gf.channels.xml +++ b/sites/canalplus.com/canalplus.com_gf.channels.xml @@ -10,34 +10,39 @@ PUNCH TV CANAL J CANAL+ HD - CANAL+ CINEMA(S) - DAZN 1 - DAZN 2 + CANAL+ CINEMA(S) HD + CNEWS PRIME + EUROPE 1 TV DAZN 3 DAZN 4 DAZN 5 CNN - CANAL+ SPORT HD + CANAL+SPORT HD EMCI - CINE+ FESTIVAL - CINE+ EMOTION - CINE+ FAMILY - CINE+ FRISSON HD + CINE+FESTIVAL + CINE+EMOTION + CINE+FAMILY + CINE+FRISSON HD OCS HD EVANGILE TV MANGAS + T18 COMEDIE+ + NOVO19 E! ENTERTAINMENT - EQUIDIA LIVE + EQUIDIA HD ESPN + MIEUX + EUROPE 2 POP TV EUROSPORT 1 HD EUROSPORT 2 HD + RADIO TELE ECLAIR FRANCE 3 FRANCE 5 CNEWS INFOSPORT+ LCI - LCP ASSEMBLEE NATIONALE + LCP L'EQUIPE M6 HD MTV France @@ -61,10 +66,9 @@ XXL FRANCE 24 BEIN SPORTS 1 HD - TPMP PIWI+ GAME ONE - USHUAÏA TV + USHUAIA TVHD W9 PLANETE+ CRIME GULLI @@ -78,7 +82,6 @@ FRANCE 2 FRANCE 4 KMT - NRJ 12 CSTAR NICKELODEON TV GLOBO @@ -96,25 +99,25 @@ HUSTLER TV Métropole CANAL+ SERIES HD - CINE + CLASSIC + CINE+CLASSIC BEIN SPORTS 3 HD - CANAL+ SPORT AYITI 1 - HAITI SPORT 2 + C+SPORT AYITI 1 HD + C+SPORT AYITI 2 HBO HBO Family HBO XTREME ENGLISH CLUB TV - CANAL+ KIDS HD + CANAL+KIDS HD GOLF+ A+ NOLLYWOOD TV france CANAL SONY TV CARAIBES - CHERIE 25 + RMC LIFE CARTOON NETWORK BOOMERANG - CANAL+ SPORT 360 - CANAL+ FOOT + CANAL+SPORT360 HD + CANAL+FOOT HD NOVELAS TV BBLACK CARIBBEAN BEIN SPORTS MAX 4 @@ -145,7 +148,7 @@ TELEMUNDO TOUTE L HISTOIRE OLYMPIA TV - CANAL+ PREMIER LEAGUE + CANAL+PREMIER LEAGUE EVENEMENT 4K ZITATA TV LUDIKIDS OI @@ -153,7 +156,7 @@ TELE SOLEIL GRAPHE TV NICKELODEON JR - STUDIOCANAL + STUDIOCANAL TV NATHAN+ TROTTERS TV FUSION TV @@ -161,11 +164,10 @@ BFM TV BFM BUSINESS RMC STORY - CANAL+ AYITI + CANAL+AYITI HD CANAL EVENEMENT CARA SPORT EN FRANCE - CANAL+ DOCS - TRAVEL XP + CANAL+DOCS CHEVAL TV MEZZO LIVE RMC DECOUVERTE diff --git a/sites/canalplus.com/canalplus.com_gh.channels.xml b/sites/canalplus.com/canalplus.com_gh.channels.xml index ac8e78f07..7dd4e4537 100644 --- a/sites/canalplus.com/canalplus.com_gh.channels.xml +++ b/sites/canalplus.com/canalplus.com_gh.channels.xml @@ -22,7 +22,6 @@ BOSOLO TV RTCE MALAIKA TV - HK6 HERITAGE TV E! Bukedde TV @@ -35,8 +34,6 @@ France 2 INT MANGAS RTB ZENITH - HOPE TV - RTNK MEZZO HOREB TV MTV France @@ -55,13 +52,12 @@ AFRIKINFO TV EVANGILE TV REFLET TV + TRACE CHRISTMAS TOUBA TV TELEMUSIK SENEGAL MOURCHID TV - TELE-ECOLE AL MOURIDIYYAH TV MALIKIA TV - CANAL EDUCATION FULBE TF1 KAYES TV @@ -69,6 +65,7 @@ TMC SEGOU TV SUNNA TV SAVANA + CANAL+ CAN GO TV HUSTLER HD TROPIC TV @@ -80,11 +77,9 @@ GALAXIE TELE FRANCE 24 BALAFON TV - TAMBARIN HAUSA TV DASH TV BETV HTV BURUNDI - TPMP RTB 2STV ISIBO TV @@ -121,8 +116,8 @@ TELE CONGO BENIN TV HD RTNC + CANAL+ CAN IVOIRE PRIVATE TV - WILDEARTH TPT+ TRACE AFRICA AFRIQUE VOIR+ @@ -147,7 +142,6 @@ M7 RTB 3 TV AL HOUDA - JES TV SUNNA TV ZARMA TAURARUWA FOR YOU TV @@ -155,7 +149,6 @@ TRACE MBOA SUN+ TV TV+ AFRIQUE - LPC NOLLYWOOD TV RTI2 TV TOGO @@ -170,18 +163,18 @@ CONGO 26 ISHUSHO TV MRTV - SHIF TV + CHIF TV GC7 GC2 GC6 ESPERANCE TV BUJA TV AL JAZEERA ENG - BET ENG + BET (ENG) UNIVERSAL GC1 SHADOW TV - CANAL+ ELLES + C+ MAGIC PARAMOUNT NETWORK SS FOOTBALL PLUS HD SS FOOTBALL HD @@ -206,7 +199,6 @@ BBLACK AFRICA TELE FONTAINE VIE CNN - TLC CARTOON NETWORK CARTOONITO BOOMERANG @@ -217,11 +209,9 @@ RTB 3 dupli TVCA RTB dupli - TOZALI TV LUMEN CHRISTI PRC JESUS 24 TV - SUNNA TV CH3 CH4 PARLEMENT TV @@ -233,17 +223,30 @@ BCN TV BRIK TV AL NASSR + BENIN TV ALAFIA + ACTIVATION NETFLIX + DNTV + AFRICA MAGIC HAUSA + AFRICA MAGIC YORUBA + MAISHA MAGIC EAST + MAISHA MAGIC PLUS + TEST AFRIQUE + MIEUX + EUROPE 2 POP TV GULLI AFRICA NOVELAS TV + TRACE IVOIRE PACIS TV MY MEDIA PRIME SCIENCE ET VIE TV ENGLISH CLUB TV + ZEE ALWAN FASHION AFRICA TV SEN TV ASONGA TV DIGITAL CONGO TELE 50 + SS WWE DRTV TV MAURITANIE IMPACT TV @@ -252,15 +255,24 @@ BUSINESS 24 CANAL+ SPORT 4 CANAL+ SPORT 5 + VOIR+ RDC ZEE MAGIC ORTM2 EVASION TV RTD + GOLF+ HD + LOVE NATURE CANAL+ FAMILY OUEST ONE TV + CNEWS PRIME + EUROPE 1 TV + AES TV HD + MAISHA MAGIC BONGO + NATIONAL GEOGRAPHIC ENG + STUDIO UNIVERSAL SSM TV MCR TV - OMEGA TV + SUPERSPORT ACTION AFRICANEWS E-TELEVISION ESPACE TV @@ -278,12 +290,11 @@ TREK J-ONE BANTAMBA TV - TRACE MZIKI CNBC AFRICA WALF TV LTM MEDI1 TV - CH1 + CNEWS PRIME IVOIRE TV Music UNIVERS TV MIRACLE TV+ @@ -313,7 +324,7 @@ MUSEUM TV CANAL 2 MOVIES EMCI - CH2 + EUROPE 1 TV A+ IVOIRE Antenne VISION 4 RCA AREWA 24 @@ -331,13 +342,11 @@ TM1 TOUTE L HISTOIRE PSTV - FARIN WATA KC2 TV1 TV O FLASH TV ISANGO STAR TV - GENESIS TV BTN TV CARTOON NETWORK Africa SA TNT Africa @@ -352,7 +361,7 @@ LCA RENOUVEAU TV RTDS - E! ENG + BRAVO ENG TELEMUNDO AFRICA MAGIC EPIC ZEE WORLD @@ -361,7 +370,7 @@ AFRICA MAGIC SHOWCASE MNET MOVIES 3 MNET MOVIES 4 - DISCOVER CHANNEL ENG + DISCOVERY CHANNEL ENG SS EPL SS LA LIGA CANAL 3 BURKINA @@ -375,9 +384,7 @@ TVC DOUNIA BONFEREY - SUNNA TV TVGE - CAPITAL SANTE TV MIKUBA TV LUDIKIDS OI VIXEN diff --git a/sites/canalplus.com/canalplus.com_gm.channels.xml b/sites/canalplus.com/canalplus.com_gm.channels.xml index 13dbd94f5..c92db80a6 100644 --- a/sites/canalplus.com/canalplus.com_gm.channels.xml +++ b/sites/canalplus.com/canalplus.com_gm.channels.xml @@ -22,7 +22,6 @@ BOSOLO TV RTCE MALAIKA TV - HK6 HERITAGE TV E! Bukedde TV @@ -35,8 +34,6 @@ France 2 INT MANGAS RTB ZENITH - HOPE TV - RTNK MEZZO HOREB TV MTV France @@ -55,13 +52,12 @@ AFRIKINFO TV EVANGILE TV REFLET TV + TRACE CHRISTMAS TOUBA TV TELEMUSIK SENEGAL MOURCHID TV - TELE-ECOLE AL MOURIDIYYAH TV MALIKIA TV - CANAL EDUCATION FULBE TF1 KAYES TV @@ -69,6 +65,7 @@ TMC SEGOU TV SUNNA TV SAVANA + CANAL+ CAN GO TV HUSTLER HD TROPIC TV @@ -80,11 +77,9 @@ GALAXIE TELE FRANCE 24 BALAFON TV - TAMBARIN HAUSA TV DASH TV BETV HTV BURUNDI - TPMP RTB 2STV ISIBO TV @@ -121,8 +116,8 @@ TELE CONGO BENIN TV HD RTNC + CANAL+ CAN IVOIRE PRIVATE TV - WILDEARTH TPT+ TRACE AFRICA AFRIQUE VOIR+ @@ -147,7 +142,6 @@ M7 RTB 3 TV AL HOUDA - JES TV SUNNA TV ZARMA TAURARUWA FOR YOU TV @@ -155,7 +149,6 @@ TRACE MBOA SUN+ TV TV+ AFRIQUE - LPC NOLLYWOOD TV RTI2 TV TOGO @@ -170,18 +163,18 @@ CONGO 26 ISHUSHO TV MRTV - SHIF TV + CHIF TV GC7 GC2 GC6 ESPERANCE TV BUJA TV AL JAZEERA ENG - BET ENG + BET (ENG) UNIVERSAL GC1 SHADOW TV - CANAL+ ELLES + C+ MAGIC PARAMOUNT NETWORK SS FOOTBALL PLUS HD SS FOOTBALL HD @@ -206,7 +199,6 @@ BBLACK AFRICA TELE FONTAINE VIE CNN - TLC CARTOON NETWORK CARTOONITO BOOMERANG @@ -217,11 +209,9 @@ RTB 3 dupli TVCA RTB dupli - TOZALI TV LUMEN CHRISTI PRC JESUS 24 TV - SUNNA TV CH3 CH4 PARLEMENT TV @@ -233,17 +223,30 @@ BCN TV BRIK TV AL NASSR + BENIN TV ALAFIA + ACTIVATION NETFLIX + DNTV + AFRICA MAGIC HAUSA + AFRICA MAGIC YORUBA + MAISHA MAGIC EAST + MAISHA MAGIC PLUS + TEST AFRIQUE + MIEUX + EUROPE 2 POP TV GULLI AFRICA NOVELAS TV + TRACE IVOIRE PACIS TV MY MEDIA PRIME SCIENCE ET VIE TV ENGLISH CLUB TV + ZEE ALWAN FASHION AFRICA TV SEN TV ASONGA TV DIGITAL CONGO TELE 50 + SS WWE DRTV TV MAURITANIE IMPACT TV @@ -252,15 +255,24 @@ BUSINESS 24 CANAL+ SPORT 4 CANAL+ SPORT 5 + VOIR+ RDC ZEE MAGIC ORTM2 EVASION TV RTD + GOLF+ HD + LOVE NATURE CANAL+ FAMILY OUEST ONE TV + CNEWS PRIME + EUROPE 1 TV + AES TV HD + MAISHA MAGIC BONGO + NATIONAL GEOGRAPHIC ENG + STUDIO UNIVERSAL SSM TV MCR TV - OMEGA TV + SUPERSPORT ACTION AFRICANEWS E-TELEVISION ESPACE TV @@ -278,12 +290,11 @@ TREK J-ONE BANTAMBA TV - TRACE MZIKI CNBC AFRICA WALF TV LTM MEDI1 TV - CH1 + CNEWS PRIME IVOIRE TV Music UNIVERS TV MIRACLE TV+ @@ -313,7 +324,7 @@ MUSEUM TV CANAL 2 MOVIES EMCI - CH2 + EUROPE 1 TV A+ IVOIRE Antenne VISION 4 RCA AREWA 24 @@ -331,13 +342,11 @@ TM1 TOUTE L HISTOIRE PSTV - FARIN WATA KC2 TV1 TV O FLASH TV ISANGO STAR TV - GENESIS TV BTN TV CARTOON NETWORK Africa SA TNT Africa @@ -352,7 +361,7 @@ LCA RENOUVEAU TV RTDS - E! ENG + BRAVO ENG TELEMUNDO AFRICA MAGIC EPIC ZEE WORLD @@ -361,7 +370,7 @@ AFRICA MAGIC SHOWCASE MNET MOVIES 3 MNET MOVIES 4 - DISCOVER CHANNEL ENG + DISCOVERY CHANNEL ENG SS EPL SS LA LIGA CANAL 3 BURKINA @@ -375,9 +384,7 @@ TVC DOUNIA BONFEREY - SUNNA TV TVGE - CAPITAL SANTE TV MIKUBA TV LUDIKIDS OI VIXEN diff --git a/sites/canalplus.com/canalplus.com_gn.channels.xml b/sites/canalplus.com/canalplus.com_gn.channels.xml index c1a45e448..cc6757c82 100644 --- a/sites/canalplus.com/canalplus.com_gn.channels.xml +++ b/sites/canalplus.com/canalplus.com_gn.channels.xml @@ -22,7 +22,6 @@ BOSOLO TV RTCE MALAIKA TV - HK6 HERITAGE TV E! Bukedde TV @@ -35,8 +34,6 @@ France 2 INT MANGAS RTB ZENITH - HOPE TV - RTNK MEZZO HOREB TV MTV France @@ -55,13 +52,12 @@ AFRIKINFO TV EVANGILE TV REFLET TV + TRACE CHRISTMAS TOUBA TV TELEMUSIK SENEGAL MOURCHID TV - TELE-ECOLE AL MOURIDIYYAH TV MALIKIA TV - CANAL EDUCATION FULBE TF1 KAYES TV @@ -69,6 +65,7 @@ TMC SEGOU TV SUNNA TV SAVANA + CANAL+ CAN GO TV HUSTLER HD TROPIC TV @@ -80,11 +77,9 @@ GALAXIE TELE FRANCE 24 BALAFON TV - TAMBARIN HAUSA TV DASH TV BETV HTV BURUNDI - TPMP RTB 2STV ISIBO TV @@ -121,8 +116,8 @@ TELE CONGO BENIN TV HD RTNC + CANAL+ CAN IVOIRE PRIVATE TV - WILDEARTH TPT+ TRACE AFRICA AFRIQUE VOIR+ @@ -147,7 +142,6 @@ M7 RTB 3 TV AL HOUDA - JES TV SUNNA TV ZARMA TAURARUWA FOR YOU TV @@ -155,7 +149,6 @@ TRACE MBOA SUN+ TV TV+ AFRIQUE - LPC NOLLYWOOD TV RTI2 TV TOGO @@ -170,18 +163,18 @@ CONGO 26 ISHUSHO TV MRTV - SHIF TV + CHIF TV GC7 GC2 GC6 ESPERANCE TV BUJA TV AL JAZEERA ENG - BET ENG + BET (ENG) UNIVERSAL GC1 SHADOW TV - CANAL+ ELLES + C+ MAGIC PARAMOUNT NETWORK SS FOOTBALL PLUS HD SS FOOTBALL HD @@ -206,7 +199,6 @@ BBLACK AFRICA TELE FONTAINE VIE CNN - TLC CARTOON NETWORK CARTOONITO BOOMERANG @@ -217,11 +209,9 @@ RTB 3 dupli TVCA RTB dupli - TOZALI TV LUMEN CHRISTI PRC JESUS 24 TV - SUNNA TV CH3 CH4 PARLEMENT TV @@ -233,17 +223,30 @@ BCN TV BRIK TV AL NASSR + BENIN TV ALAFIA + ACTIVATION NETFLIX + DNTV + AFRICA MAGIC HAUSA + AFRICA MAGIC YORUBA + MAISHA MAGIC EAST + MAISHA MAGIC PLUS + TEST AFRIQUE + MIEUX + EUROPE 2 POP TV GULLI AFRICA NOVELAS TV + TRACE IVOIRE PACIS TV MY MEDIA PRIME SCIENCE ET VIE TV ENGLISH CLUB TV + ZEE ALWAN FASHION AFRICA TV SEN TV ASONGA TV DIGITAL CONGO TELE 50 + SS WWE DRTV TV MAURITANIE IMPACT TV @@ -252,15 +255,24 @@ BUSINESS 24 CANAL+ SPORT 4 CANAL+ SPORT 5 + VOIR+ RDC ZEE MAGIC ORTM2 EVASION TV RTD + GOLF+ HD + LOVE NATURE CANAL+ FAMILY OUEST ONE TV + CNEWS PRIME + EUROPE 1 TV + AES TV HD + MAISHA MAGIC BONGO + NATIONAL GEOGRAPHIC ENG + STUDIO UNIVERSAL SSM TV MCR TV - OMEGA TV + SUPERSPORT ACTION AFRICANEWS E-TELEVISION ESPACE TV @@ -278,12 +290,11 @@ TREK J-ONE BANTAMBA TV - TRACE MZIKI CNBC AFRICA WALF TV LTM MEDI1 TV - CH1 + CNEWS PRIME IVOIRE TV Music UNIVERS TV MIRACLE TV+ @@ -313,7 +324,7 @@ MUSEUM TV CANAL 2 MOVIES EMCI - CH2 + EUROPE 1 TV A+ IVOIRE Antenne VISION 4 RCA AREWA 24 @@ -331,13 +342,11 @@ TM1 TOUTE L HISTOIRE PSTV - FARIN WATA KC2 TV1 TV O FLASH TV ISANGO STAR TV - GENESIS TV BTN TV CARTOON NETWORK Africa SA TNT Africa @@ -352,7 +361,7 @@ LCA RENOUVEAU TV RTDS - E! ENG + BRAVO ENG TELEMUNDO AFRICA MAGIC EPIC ZEE WORLD @@ -361,7 +370,7 @@ AFRICA MAGIC SHOWCASE MNET MOVIES 3 MNET MOVIES 4 - DISCOVER CHANNEL ENG + DISCOVERY CHANNEL ENG SS EPL SS LA LIGA CANAL 3 BURKINA @@ -375,9 +384,7 @@ TVC DOUNIA BONFEREY - SUNNA TV TVGE - CAPITAL SANTE TV MIKUBA TV LUDIKIDS OI VIXEN diff --git a/sites/canalplus.com/canalplus.com_gp.channels.xml b/sites/canalplus.com/canalplus.com_gp.channels.xml index 460bc2ca0..befbc24da 100644 --- a/sites/canalplus.com/canalplus.com_gp.channels.xml +++ b/sites/canalplus.com/canalplus.com_gp.channels.xml @@ -22,7 +22,6 @@ BOSOLO TV RTCE MALAIKA TV - HK6 HERITAGE TV E! Bukedde TV @@ -35,8 +34,6 @@ France 2 INT MANGAS RTB ZENITH - HOPE TV - RTNK MEZZO HOREB TV MTV France @@ -55,13 +52,12 @@ AFRIKINFO TV EVANGILE TV REFLET TV + TRACE CHRISTMAS TOUBA TV TELEMUSIK SENEGAL MOURCHID TV - TELE-ECOLE AL MOURIDIYYAH TV MALIKIA TV - CANAL EDUCATION FULBE TF1 KAYES TV @@ -69,6 +65,7 @@ TMC SEGOU TV SUNNA TV SAVANA + CANAL+ CAN GO TV HUSTLER HD TROPIC TV @@ -80,11 +77,9 @@ GALAXIE TELE FRANCE 24 BALAFON TV - TAMBARIN HAUSA TV DASH TV BETV HTV BURUNDI - TPMP RTB 2STV ISIBO TV @@ -121,8 +116,8 @@ TELE CONGO BENIN TV HD RTNC + CANAL+ CAN IVOIRE PRIVATE TV - WILDEARTH TPT+ TRACE AFRICA AFRIQUE VOIR+ @@ -147,7 +142,6 @@ M7 RTB 3 TV AL HOUDA - JES TV SUNNA TV ZARMA TAURARUWA FOR YOU TV @@ -155,7 +149,6 @@ TRACE MBOA SUN+ TV TV+ AFRIQUE - LPC NOLLYWOOD TV RTI2 TV TOGO @@ -170,18 +163,18 @@ CONGO 26 ISHUSHO TV MRTV - SHIF TV + CHIF TV GC7 GC2 GC6 ESPERANCE TV BUJA TV AL JAZEERA ENG - BET ENG + BET (ENG) UNIVERSAL GC1 SHADOW TV - CANAL+ ELLES + C+ MAGIC PARAMOUNT NETWORK SS FOOTBALL PLUS HD SS FOOTBALL HD @@ -206,7 +199,6 @@ BBLACK AFRICA TELE FONTAINE VIE CNN - TLC CARTOON NETWORK CARTOONITO BOOMERANG @@ -217,11 +209,9 @@ RTB 3 dupli TVCA RTB dupli - TOZALI TV LUMEN CHRISTI PRC JESUS 24 TV - SUNNA TV CH3 CH4 PARLEMENT TV @@ -233,17 +223,30 @@ BCN TV BRIK TV AL NASSR + BENIN TV ALAFIA + ACTIVATION NETFLIX + DNTV + AFRICA MAGIC HAUSA + AFRICA MAGIC YORUBA + MAISHA MAGIC EAST + MAISHA MAGIC PLUS + TEST AFRIQUE + MIEUX + EUROPE 2 POP TV GULLI AFRICA NOVELAS TV + TRACE IVOIRE PACIS TV MY MEDIA PRIME SCIENCE ET VIE TV ENGLISH CLUB TV + ZEE ALWAN FASHION AFRICA TV SEN TV ASONGA TV DIGITAL CONGO TELE 50 + SS WWE DRTV TV MAURITANIE IMPACT TV @@ -252,15 +255,24 @@ BUSINESS 24 CANAL+ SPORT 4 CANAL+ SPORT 5 + VOIR+ RDC ZEE MAGIC ORTM2 EVASION TV RTD + GOLF+ HD + LOVE NATURE CANAL+ FAMILY OUEST ONE TV + CNEWS PRIME + EUROPE 1 TV + AES TV HD + MAISHA MAGIC BONGO + NATIONAL GEOGRAPHIC ENG + STUDIO UNIVERSAL SSM TV MCR TV - OMEGA TV + SUPERSPORT ACTION AFRICANEWS E-TELEVISION ESPACE TV @@ -278,12 +290,11 @@ TREK J-ONE BANTAMBA TV - TRACE MZIKI CNBC AFRICA WALF TV LTM MEDI1 TV - CH1 + CNEWS PRIME IVOIRE TV Music UNIVERS TV MIRACLE TV+ @@ -313,7 +324,7 @@ MUSEUM TV CANAL 2 MOVIES EMCI - CH2 + EUROPE 1 TV A+ IVOIRE Antenne VISION 4 RCA AREWA 24 @@ -331,13 +342,11 @@ TM1 TOUTE L HISTOIRE PSTV - FARIN WATA KC2 TV1 TV O FLASH TV ISANGO STAR TV - GENESIS TV BTN TV CARTOON NETWORK Africa SA TNT Africa @@ -352,7 +361,7 @@ LCA RENOUVEAU TV RTDS - E! ENG + BRAVO ENG TELEMUNDO AFRICA MAGIC EPIC ZEE WORLD @@ -361,7 +370,7 @@ AFRICA MAGIC SHOWCASE MNET MOVIES 3 MNET MOVIES 4 - DISCOVER CHANNEL ENG + DISCOVERY CHANNEL ENG SS EPL SS LA LIGA CANAL 3 BURKINA @@ -375,9 +384,7 @@ TVC DOUNIA BONFEREY - SUNNA TV TVGE - CAPITAL SANTE TV MIKUBA TV LUDIKIDS OI VIXEN diff --git a/sites/canalplus.com/canalplus.com_gw.channels.xml b/sites/canalplus.com/canalplus.com_gw.channels.xml index 431a341c8..285245493 100644 --- a/sites/canalplus.com/canalplus.com_gw.channels.xml +++ b/sites/canalplus.com/canalplus.com_gw.channels.xml @@ -22,7 +22,6 @@ BOSOLO TV RTCE MALAIKA TV - HK6 HERITAGE TV E! Bukedde TV @@ -35,8 +34,6 @@ France 2 INT MANGAS RTB ZENITH - HOPE TV - RTNK MEZZO HOREB TV MTV France @@ -55,13 +52,12 @@ AFRIKINFO TV EVANGILE TV REFLET TV + TRACE CHRISTMAS TOUBA TV TELEMUSIK SENEGAL MOURCHID TV - TELE-ECOLE AL MOURIDIYYAH TV MALIKIA TV - CANAL EDUCATION FULBE TF1 KAYES TV @@ -69,6 +65,7 @@ TMC SEGOU TV SUNNA TV SAVANA + CANAL+ CAN GO TV HUSTLER HD TROPIC TV @@ -80,11 +77,9 @@ GALAXIE TELE FRANCE 24 BALAFON TV - TAMBARIN HAUSA TV DASH TV BETV HTV BURUNDI - TPMP RTB 2STV ISIBO TV @@ -121,8 +116,8 @@ TELE CONGO BENIN TV HD RTNC + CANAL+ CAN IVOIRE PRIVATE TV - WILDEARTH TPT+ TRACE AFRICA AFRIQUE VOIR+ @@ -147,7 +142,6 @@ M7 RTB 3 TV AL HOUDA - JES TV SUNNA TV ZARMA TAURARUWA FOR YOU TV @@ -155,7 +149,6 @@ TRACE MBOA SUN+ TV TV+ AFRIQUE - LPC NOLLYWOOD TV RTI2 TV TOGO @@ -170,18 +163,18 @@ CONGO 26 ISHUSHO TV MRTV - SHIF TV + CHIF TV GC7 GC2 GC6 ESPERANCE TV BUJA TV AL JAZEERA ENG - BET ENG + BET (ENG) UNIVERSAL GC1 SHADOW TV - CANAL+ ELLES + C+ MAGIC PARAMOUNT NETWORK SS FOOTBALL PLUS HD SS FOOTBALL HD @@ -206,7 +199,6 @@ BBLACK AFRICA TELE FONTAINE VIE CNN - TLC CARTOON NETWORK CARTOONITO BOOMERANG @@ -217,11 +209,9 @@ RTB 3 dupli TVCA RTB dupli - TOZALI TV LUMEN CHRISTI PRC JESUS 24 TV - SUNNA TV CH3 CH4 PARLEMENT TV @@ -233,17 +223,30 @@ BCN TV BRIK TV AL NASSR + BENIN TV ALAFIA + ACTIVATION NETFLIX + DNTV + AFRICA MAGIC HAUSA + AFRICA MAGIC YORUBA + MAISHA MAGIC EAST + MAISHA MAGIC PLUS + TEST AFRIQUE + MIEUX + EUROPE 2 POP TV GULLI AFRICA NOVELAS TV + TRACE IVOIRE PACIS TV MY MEDIA PRIME SCIENCE ET VIE TV ENGLISH CLUB TV + ZEE ALWAN FASHION AFRICA TV SEN TV ASONGA TV DIGITAL CONGO TELE 50 + SS WWE DRTV TV MAURITANIE IMPACT TV @@ -252,15 +255,24 @@ BUSINESS 24 CANAL+ SPORT 4 CANAL+ SPORT 5 + VOIR+ RDC ZEE MAGIC ORTM2 EVASION TV RTD + GOLF+ HD + LOVE NATURE CANAL+ FAMILY OUEST ONE TV + CNEWS PRIME + EUROPE 1 TV + AES TV HD + MAISHA MAGIC BONGO + NATIONAL GEOGRAPHIC ENG + STUDIO UNIVERSAL SSM TV MCR TV - OMEGA TV + SUPERSPORT ACTION AFRICANEWS E-TELEVISION ESPACE TV @@ -278,12 +290,11 @@ TREK J-ONE BANTAMBA TV - TRACE MZIKI CNBC AFRICA WALF TV LTM MEDI1 TV - CH1 + CNEWS PRIME IVOIRE TV Music UNIVERS TV MIRACLE TV+ @@ -313,7 +324,7 @@ MUSEUM TV CANAL 2 MOVIES EMCI - CH2 + EUROPE 1 TV A+ IVOIRE Antenne VISION 4 RCA AREWA 24 @@ -331,13 +342,11 @@ TM1 TOUTE L HISTOIRE PSTV - FARIN WATA KC2 TV1 TV O FLASH TV ISANGO STAR TV - GENESIS TV BTN TV CARTOON NETWORK Africa SA TNT Africa @@ -352,7 +361,7 @@ LCA RENOUVEAU TV RTDS - E! ENG + BRAVO ENG TELEMUNDO AFRICA MAGIC EPIC ZEE WORLD @@ -361,7 +370,7 @@ AFRICA MAGIC SHOWCASE MNET MOVIES 3 MNET MOVIES 4 - DISCOVER CHANNEL ENG + DISCOVERY CHANNEL ENG SS EPL SS LA LIGA CANAL 3 BURKINA @@ -375,9 +384,7 @@ TVC DOUNIA BONFEREY - SUNNA TV TVGE - CAPITAL SANTE TV MIKUBA TV LUDIKIDS OI VIXEN diff --git a/sites/canalplus.com/canalplus.com_ht.channels.xml b/sites/canalplus.com/canalplus.com_ht.channels.xml index a6e50bdb4..86b3eda95 100644 --- a/sites/canalplus.com/canalplus.com_ht.channels.xml +++ b/sites/canalplus.com/canalplus.com_ht.channels.xml @@ -10,34 +10,39 @@ PUNCH TV CANAL J CANAL+ HD - CANAL+ CINEMA(S) - DAZN 1 - DAZN 2 + CANAL+ CINEMA(S) HD + CNEWS PRIME + EUROPE 1 TV DAZN 3 DAZN 4 DAZN 5 CNN - CANAL+ SPORT HD + CANAL+SPORT HD EMCI - CINE+ FESTIVAL - CINE+ EMOTION - CINE+ FAMILY - CINE+ FRISSON HD + CINE+FESTIVAL + CINE+EMOTION + CINE+FAMILY + CINE+FRISSON HD OCS HD EVANGILE TV MANGAS + T18 COMEDIE+ + NOVO19 E! ENTERTAINMENT - EQUIDIA LIVE + EQUIDIA HD ESPN + MIEUX + EUROPE 2 POP TV EUROSPORT 1 HD EUROSPORT 2 HD + RADIO TELE ECLAIR FRANCE 3 FRANCE 5 CNEWS INFOSPORT+ LCI - LCP ASSEMBLEE NATIONALE + LCP L'EQUIPE M6 HD MTV France @@ -61,10 +66,9 @@ XXL FRANCE 24 BEIN SPORTS 1 HD - TPMP PIWI+ GAME ONE - USHUAÏA TV + USHUAIA TVHD W9 PLANETE+ CRIME GULLI @@ -78,7 +82,6 @@ FRANCE 2 FRANCE 4 KMT - NRJ 12 CSTAR NICKELODEON TV GLOBO @@ -96,25 +99,25 @@ HUSTLER TV Métropole CANAL+ SERIES HD - CINE + CLASSIC + CINE+CLASSIC BEIN SPORTS 3 HD - CANAL+ SPORT AYITI 1 - HAITI SPORT 2 + C+SPORT AYITI 1 HD + C+SPORT AYITI 2 HBO HBO Family HBO XTREME ENGLISH CLUB TV - CANAL+ KIDS HD + CANAL+KIDS HD GOLF+ A+ NOLLYWOOD TV france CANAL SONY TV CARAIBES - CHERIE 25 + RMC LIFE CARTOON NETWORK BOOMERANG - CANAL+ SPORT 360 - CANAL+ FOOT + CANAL+SPORT360 HD + CANAL+FOOT HD NOVELAS TV BBLACK CARIBBEAN BEIN SPORTS MAX 4 @@ -145,7 +148,7 @@ TELEMUNDO TOUTE L HISTOIRE OLYMPIA TV - CANAL+ PREMIER LEAGUE + CANAL+PREMIER LEAGUE EVENEMENT 4K ZITATA TV LUDIKIDS OI @@ -153,7 +156,7 @@ TELE SOLEIL GRAPHE TV NICKELODEON JR - STUDIOCANAL + STUDIOCANAL TV NATHAN+ TROTTERS TV FUSION TV @@ -161,11 +164,10 @@ BFM TV BFM BUSINESS RMC STORY - CANAL+ AYITI + CANAL+AYITI HD CANAL EVENEMENT CARA SPORT EN FRANCE - CANAL+ DOCS - TRAVEL XP + CANAL+DOCS CHEVAL TV MEZZO LIVE RMC DECOUVERTE diff --git a/sites/canalplus.com/canalplus.com_km.channels.xml b/sites/canalplus.com/canalplus.com_km.channels.xml new file mode 100644 index 000000000..c07f5d529 --- /dev/null +++ b/sites/canalplus.com/canalplus.com_km.channels.xml @@ -0,0 +1,399 @@ + + + 13EME RUE + GLOBAL AFRICA + AB1 + ZACU TV + AFRICA 24 INFINITY + ARTE France + BBC NEWS + AFRICA 24 SPORT + CRTV + W-SPORT + AFRICA 24 ENGLISH + LERAL TV + CANAL+ CINEMA OUEST + RTG2 + CANAL+ PREMIERE OUEST + KABACK TV + INFO TV + CAM10 + DBS + BOSOLO TV + RTCE + MALAIKA TV + HERITAGE TV + E! + Bukedde TV + EURONEWS + FRANCE 3 + FRANCE 5 + SINEMA ZETU + CNEWS + LCI + France 2 INT + MANGAS + RTB ZENITH + MEZZO + HOREB TV + MTV France + TFX + KTN + ORTM1 + PLANETE+ + PLANETE+ AVENTURE + A+ BENIN + RTS + SYFY + TCHAD INFOS + SERIE CLUB + MTV LEBANON + PITCHOUN AFRICA + AFRIKINFO TV + EVANGILE TV + REFLET TV + TRACE CHRISTMAS + TOUBA TV + TELEMUSIK SENEGAL + MOURCHID TV + AL MOURIDIYYAH TV + MALIKIA TV + FULBE + TF1 + KAYES TV + TIJI + TMC + SEGOU TV + SUNNA TV SAVANA + CANAL+ CAN + GO TV + HUSTLER HD + TROPIC TV + TV5 MONDE (Afrique) + EDEN TV + XXL + TENERE + LABARI + GALAXIE TELE + FRANCE 24 + BALAFON TV + DASH TV + BETV + HTV BURUNDI + RTB + 2STV + ISIBO TV + CANAL+ SPORT 2 + CANAL+ CINEMA CENTRE + CHINGUIT TV + ELWATANIYA TV + PIWI+ + CANAL+ PREMIERE CENTRE + GAME ONE + USHUAÏA TV + EDUC TV + PLANETE+ CRIME + CANAL+ FAMILY CENTRE + TCHAD 24 + MTV HITS + TELETOON+ + CANAL+ SPORT 3 + DORCEL TV + HISTOIRE TV + RATELKI + AFRICABLE + AFRICA 24 + EQUINOXE TV + RTI 1 + CANAL 2 INTER + LIPTAKO TV + TRACE Urban Afrique + GABON 1ERE + 7TV + STV + VOX AFRICA + RTG + TELE CONGO + BENIN TV HD + RTNC + CANAL+ CAN IVOIRE + PRIVATE TV + TPT+ + TRACE AFRICA AFRIQUE + VOIR+ + CSTAR + CANAL EVENEMENT EASY + TOUMAI TV + TFM + TELE AFRICA + SENSATION TV + SARAOUNIA TV + RTL9 HD + ACTION HD + CANAL EVENEMENT AFRIQUE + NICKELODEON GLOBAL + NOVELAS TV HD (RDC) + RWANDA TV + MANDEKA HD + PULAAGU HD + LA GUINEE FE HD + BLOOMBERG ORIGINALS + EDUCA TV + M7 + RTB 3 + TV AL HOUDA + SUNNA TV ZARMA + TAURARUWA + FOR YOU TV + MELODY D'AFRIQUE + TRACE MBOA + SUN+ TV + TV+ AFRIQUE + NOLLYWOOD TV + RTI2 + TV TOGO + B-ONE + TELE SAHEL + TV TCHAD + MAAJABU TV + AL JAZEERA + KTO + IQRAA + RTGA + CONGO 26 + ISHUSHO TV + MRTV + CHIF TV + GC7 + GC2 + GC6 + ESPERANCE TV + BUJA TV + AL JAZEERA ENG + BET (ENG) + UNIVERSAL + GC1 + SHADOW TV + C+ MAGIC + PARAMOUNT NETWORK + SS FOOTBALL PLUS HD + SS FOOTBALL HD + INFOSPORT+ + NHK WORLD TV + CGTN-FRANCAIS + SPORT EN FRANCE + PASSION BOLLYWOOD + C+ KIDS + CAVI MEDIAS + WEST AFRICA TV + FRANCE 24 EN + GTV + GULLI BIL ARABI + 2M + BNEWS + ANTENNE A + LMTV + CARREFOUR + BENIE TV + TV10 + BBLACK AFRICA + TELE FONTAINE VIE + CNN + CARTOON NETWORK + CARTOONITO + BOOMERANG + DISCOVERY CHANNEL + A+ + RTB ZENITH dupli + BF1 TV + RTB 3 dupli + TVCA + RTB dupli + LUMEN CHRISTI + PRC + JESUS 24 TV + CH3 + CH4 + PARLEMENT TV + NCA + DISCOVERY INVESTIGATION + LUTTE TV + PYRAMIDE TV + TV2 + BCN TV + BRIK TV + AL NASSR + BENIN TV ALAFIA + ACTIVATION NETFLIX + DNTV + AFRICA MAGIC HAUSA + AFRICA MAGIC YORUBA + MAISHA MAGIC EAST + MAISHA MAGIC PLUS + TEST AFRIQUE + MIEUX + EUROPE 2 POP TV + GULLI AFRICA + NOVELAS TV + TRACE IVOIRE + PACIS TV + MY MEDIA PRIME + SCIENCE ET VIE TV + ENGLISH CLUB TV + ZEE ALWAN + FASHION AFRICA TV + SEN TV + ASONGA TV + DIGITAL CONGO + TELE 50 + SS WWE + DRTV + TV MAURITANIE + IMPACT TV + ELECTRON TV + VISION 4 + BUSINESS 24 + CANAL+ SPORT 4 + CANAL+ SPORT 5 + VOIR+ RDC + ZEE MAGIC + ORTM2 + EVASION TV + RTD + GOLF+ HD + LOVE NATURE + CANAL+ FAMILY OUEST + ONE TV + CNEWS PRIME + EUROPE 1 TV + AES TV HD + MAISHA MAGIC BONGO + NATIONAL GEOGRAPHIC ENG + STUDIO UNIVERSAL + SSM TV + MCR TV + SUPERSPORT ACTION + AFRICANEWS + E-TELEVISION + ESPACE TV + GABON 24 + NYOTA + TELE 24 + TGB + JOLIBA + TIVI5 MONDE + CANAL 3 BENIN + NBA TV + BURKINA INFO + VOX TV + AUTOMOTO + TREK + J-ONE + BANTAMBA TV + CNBC AFRICA + WALF TV + LTM + MEDI1 TV + CNEWS PRIME + IVOIRE TV Music + UNIVERS TV + MIRACLE TV+ + MANDE TV + NOLLYWOOD EPIC + CIS TV + ASFIYAHI + TF1 SERIES FILMS + MSI TV + TRACE GOSPEL + TRACE KITOKO + 3TV + CANAL+ SPORT 1 + CANAL+ ACTION CENTRE + MISHAPI + CANAL+ POP + LUX TV + KALAC TV + NIETA TV + CANAL+ ACTION OUEST + PENTHOUSE BLACK + SAVANE TV + MOLIERE TV + RTS 2 + CRTV NEWS + CHERIFLA TV + MUSEUM TV + CANAL 2 MOVIES + EMCI + EUROPE 1 TV + A+ IVOIRE Antenne + VISION 4 RCA + AREWA 24 + SAHARA TV + DORCEL TV AFRICA + SUNU YEUF + CUISINES + M6 INTERNATIONAL + TRACE TERANGA + NCI + RTNB + CRTV SPORT + GC4 + ITV + TM1 + TOUTE L HISTOIRE + PSTV + KC2 + TV1 + TV O + FLASH TV + ISANGO STAR TV + BTN TV + CARTOON NETWORK Africa SA + TNT Africa + ANIMAUX + CRIME DISTRICT + LA3 + LIFE TV + TV7 + CVK + CDIRECT + ALBAYANE + LCA + RENOUVEAU TV + RTDS + BRAVO ENG + TELEMUNDO + AFRICA MAGIC EPIC + ZEE WORLD + NICKELODEON ENG + NICKELODEON JR ENG + AFRICA MAGIC SHOWCASE + MNET MOVIES 3 + MNET MOVIES 4 + DISCOVERY CHANNEL ENG + SS EPL + SS LA LIGA + CANAL 3 BURKINA + VOIR+ COTE D IVOIRE + SUD 1ERE + 7INFO + GABON CULTURE + BLOOMBERG TV + LAMP FALL TV + ALAFIA TV + TVC + DOUNIA + BONFEREY + TVGE + MIKUBA TV + LUDIKIDS OI + VIXEN + NICKELODEON JR + NATHAN+ + NOVELAS (Cameroun) + MADI TV + MABOKE TV + ECCLESIA TV + SOS DOCTEUR TV + CANAL+ DOCS + diff --git a/sites/canalplus.com/canalplus.com_mf.channels.xml b/sites/canalplus.com/canalplus.com_mf.channels.xml index 679b998c8..615f9fca9 100644 --- a/sites/canalplus.com/canalplus.com_mf.channels.xml +++ b/sites/canalplus.com/canalplus.com_mf.channels.xml @@ -10,34 +10,39 @@ PUNCH TV CANAL J CANAL+ HD - CANAL+ CINEMA(S) - DAZN 1 - DAZN 2 + CANAL+ CINEMA(S) HD + CNEWS PRIME + EUROPE 1 TV DAZN 3 DAZN 4 DAZN 5 CNN - CANAL+ SPORT HD + CANAL+SPORT HD EMCI - CINE+ FESTIVAL - CINE+ EMOTION - CINE+ FAMILY - CINE+ FRISSON HD + CINE+FESTIVAL + CINE+EMOTION + CINE+FAMILY + CINE+FRISSON HD OCS HD EVANGILE TV MANGAS + T18 COMEDIE+ + NOVO19 E! ENTERTAINMENT - EQUIDIA LIVE + EQUIDIA HD ESPN + MIEUX + EUROPE 2 POP TV EUROSPORT 1 HD EUROSPORT 2 HD + RADIO TELE ECLAIR FRANCE 3 FRANCE 5 CNEWS INFOSPORT+ LCI - LCP ASSEMBLEE NATIONALE + LCP L'EQUIPE M6 HD MTV France @@ -61,10 +66,9 @@ XXL FRANCE 24 BEIN SPORTS 1 HD - TPMP PIWI+ GAME ONE - USHUAÏA TV + USHUAIA TVHD W9 PLANETE+ CRIME GULLI @@ -78,7 +82,6 @@ FRANCE 2 FRANCE 4 KMT - NRJ 12 CSTAR NICKELODEON TV GLOBO @@ -96,25 +99,25 @@ HUSTLER TV Métropole CANAL+ SERIES HD - CINE + CLASSIC + CINE+CLASSIC BEIN SPORTS 3 HD - CANAL+ SPORT AYITI 1 - HAITI SPORT 2 + C+SPORT AYITI 1 HD + C+SPORT AYITI 2 HBO HBO Family HBO XTREME ENGLISH CLUB TV - CANAL+ KIDS HD + CANAL+KIDS HD GOLF+ A+ NOLLYWOOD TV france CANAL SONY TV CARAIBES - CHERIE 25 + RMC LIFE CARTOON NETWORK BOOMERANG - CANAL+ SPORT 360 - CANAL+ FOOT + CANAL+SPORT360 HD + CANAL+FOOT HD NOVELAS TV BBLACK CARIBBEAN BEIN SPORTS MAX 4 @@ -145,7 +148,7 @@ TELEMUNDO TOUTE L HISTOIRE OLYMPIA TV - CANAL+ PREMIER LEAGUE + CANAL+PREMIER LEAGUE EVENEMENT 4K ZITATA TV LUDIKIDS OI @@ -153,7 +156,7 @@ TELE SOLEIL GRAPHE TV NICKELODEON JR - STUDIOCANAL + STUDIOCANAL TV NATHAN+ TROTTERS TV FUSION TV @@ -161,11 +164,10 @@ BFM TV BFM BUSINESS RMC STORY - CANAL+ AYITI + CANAL+AYITI HD CANAL EVENEMENT CARA SPORT EN FRANCE - CANAL+ DOCS - TRAVEL XP + CANAL+DOCS CHEVAL TV MEZZO LIVE RMC DECOUVERTE diff --git a/sites/canalplus.com/canalplus.com_mg.channels.xml b/sites/canalplus.com/canalplus.com_mg.channels.xml index cff465c88..645fe2c6f 100644 --- a/sites/canalplus.com/canalplus.com_mg.channels.xml +++ b/sites/canalplus.com/canalplus.com_mg.channels.xml @@ -1,392 +1,229 @@ - 13EME RUE - GLOBAL AFRICA - AB1 - ZACU TV - AFRICA 24 INFINITY - ARTE France - BBC NEWS - AFRICA 24 SPORT - CRTV - W-SPORT - AFRICA 24 ENGLISH - LERAL TV - CANAL+ CINEMA OUEST - RTG2 - CANAL+ PREMIERE OUEST - KABACK TV - INFO TV - CAM10 - DBS - BOSOLO TV - RTCE - MALAIKA TV - HK6 - HERITAGE TV - E! - Bukedde TV - EURONEWS - FRANCE 3 - FRANCE 5 - SINEMA ZETU - CNEWS - LCI - France 2 INT - MANGAS - RTB ZENITH - HOPE TV - RTNK - MEZZO - HOREB TV - MTV France - TFX - KTN - ORTM1 - PLANETE+ - PLANETE+ AVENTURE - A+ BENIN - RTS - SYFY - TCHAD INFOS - SERIE CLUB - MTV LEBANON - PITCHOUN AFRICA - AFRIKINFO TV - EVANGILE TV - REFLET TV - TOUBA TV - TELEMUSIK SENEGAL - MOURCHID TV - TELE-ECOLE - AL MOURIDIYYAH TV - MALIKIA TV - CANAL EDUCATION - FULBE - TF1 - KAYES TV - TIJI - TMC - SEGOU TV - SUNNA TV SAVANA - GO TV - HUSTLER HD - TROPIC TV - TV5 MONDE (Afrique) - EDEN TV - XXL - TENERE - LABARI - GALAXIE TELE - FRANCE 24 - BALAFON TV - TAMBARIN HAUSA TV - DASH TV - BETV - HTV BURUNDI - TPMP - RTB - 2STV - ISIBO TV - CANAL+ SPORT 2 - CANAL+ CINEMA CENTRE - CHINGUIT TV - ELWATANIYA TV - PIWI+ - CANAL+ PREMIERE CENTRE - GAME ONE - USHUAÏA TV - EDUC TV - PLANETE+ CRIME - CANAL+ FAMILY CENTRE - TCHAD 24 - MTV HITS - TELETOON+ - CANAL+ SPORT 3 - DORCEL TV - HISTOIRE TV - RATELKI - AFRICABLE - AFRICA 24 - EQUINOXE TV - RTI 1 - CANAL 2 INTER - LIPTAKO TV - TRACE Urban Afrique - GABON 1ERE - 7TV - STV - VOX AFRICA - RTG - TELE CONGO - BENIN TV HD - RTNC - PRIVATE TV - WILDEARTH - TPT+ - TRACE AFRICA AFRIQUE - VOIR+ - CSTAR - CANAL EVENEMENT EASY - TOUMAI TV - TFM - TELE AFRICA - SENSATION TV - SARAOUNIA TV - RTL9 HD - ACTION HD - CANAL EVENEMENT AFRIQUE - NICKELODEON GLOBAL - NOVELAS TV HD (RDC) - RWANDA TV - MANDEKA HD - PULAAGU HD - LA GUINEE FE HD - BLOOMBERG ORIGINALS - EDUCA TV - M7 - RTB 3 - TV AL HOUDA - JES TV - SUNNA TV ZARMA - TAURARUWA - FOR YOU TV - MELODY D'AFRIQUE - TRACE MBOA - SUN+ TV - TV+ AFRIQUE - LPC - NOLLYWOOD TV - RTI2 - TV TOGO - B-ONE - TELE SAHEL - TV TCHAD - MAAJABU TV - AL JAZEERA - KTO - IQRAA - RTGA - CONGO 26 - ISHUSHO TV - MRTV - SHIF TV - GC7 - GC2 - GC6 - ESPERANCE TV - BUJA TV - AL JAZEERA ENG - BET ENG - UNIVERSAL - GC1 - SHADOW TV - CANAL+ ELLES - PARAMOUNT NETWORK - SS FOOTBALL PLUS HD - SS FOOTBALL HD - INFOSPORT+ - NHK WORLD TV - CGTN-FRANCAIS - SPORT EN FRANCE - PASSION BOLLYWOOD - C+ KIDS - CAVI MEDIAS - WEST AFRICA TV - FRANCE 24 EN - GTV - GULLI BIL ARABI - 2M - BNEWS - ANTENNE A - LMTV - CARREFOUR - BENIE TV - TV10 - BBLACK AFRICA - TELE FONTAINE VIE - CNN - TLC - CARTOON NETWORK - CARTOONITO - BOOMERANG - DISCOVERY CHANNEL - A+ - RTB ZENITH dupli - BF1 TV - RTB 3 dupli - TVCA - RTB dupli - TOZALI TV - LUMEN CHRISTI - PRC - JESUS 24 TV - SUNNA TV - CH3 - CH4 - PARLEMENT TV - NCA - DISCOVERY INVESTIGATION - LUTTE TV - PYRAMIDE TV - TV2 - BCN TV - BRIK TV - AL NASSR - GULLI AFRICA - NOVELAS TV - PACIS TV - MY MEDIA PRIME - SCIENCE ET VIE TV - ENGLISH CLUB TV - FASHION AFRICA TV - SEN TV - ASONGA TV - DIGITAL CONGO - TELE 50 - DRTV - TV MAURITANIE - IMPACT TV - ELECTRON TV - VISION 4 - BUSINESS 24 - CANAL+ SPORT 4 - CANAL+ SPORT 5 - ZEE MAGIC - ORTM2 - EVASION TV - RTD - CANAL+ FAMILY OUEST - ONE TV - SSM TV - MCR TV - OMEGA TV - AFRICANEWS - E-TELEVISION - ESPACE TV - GABON 24 - NYOTA - TELE 24 - TGB - JOLIBA - TIVI5 MONDE - CANAL 3 BENIN - NBA TV - BURKINA INFO - VOX TV - AUTOMOTO - TREK - J-ONE - BANTAMBA TV - TRACE MZIKI - CNBC AFRICA - WALF TV - LTM - MEDI1 TV - CH1 - IVOIRE TV Music - UNIVERS TV - MIRACLE TV+ - MANDE TV - NOLLYWOOD EPIC - CIS TV - ASFIYAHI - TF1 SERIES FILMS - MSI TV - TRACE GOSPEL - TRACE KITOKO - 3TV - CANAL+ SPORT 1 - CANAL+ ACTION CENTRE - MISHAPI - CANAL+ POP - LUX TV - KALAC TV - NIETA TV - CANAL+ ACTION OUEST - PENTHOUSE BLACK - SAVANE TV - MOLIERE TV - RTS 2 - CRTV NEWS - CHERIFLA TV - MUSEUM TV - CANAL 2 MOVIES - EMCI - CH2 - A+ IVOIRE Antenne - VISION 4 RCA - AREWA 24 - SAHARA TV - DORCEL TV AFRICA - SUNU YEUF - CUISINES - M6 INTERNATIONAL - TRACE TERANGA - NCI - RTNB - CRTV SPORT - GC4 - ITV - TM1 - TOUTE L HISTOIRE - PSTV - FARIN WATA - KC2 - TV1 - TV O - FLASH TV - ISANGO STAR TV - GENESIS TV - BTN TV - CARTOON NETWORK Africa SA - TNT Africa - ANIMAUX - CRIME DISTRICT - LA3 - LIFE TV - TV7 - CVK - CDIRECT - ALBAYANE - LCA - RENOUVEAU TV - RTDS - E! ENG - TELEMUNDO - AFRICA MAGIC EPIC - ZEE WORLD - NICKELODEON ENG - NICKELODEON JR ENG - AFRICA MAGIC SHOWCASE - MNET MOVIES 3 - MNET MOVIES 4 - DISCOVER CHANNEL ENG - SS EPL - SS LA LIGA - CANAL 3 BURKINA - VOIR+ COTE D IVOIRE - SUD 1ERE - 7INFO - GABON CULTURE - BLOOMBERG TV - LAMP FALL TV - ALAFIA TV - TVC - DOUNIA - BONFEREY - SUNNA TV - TVGE - CAPITAL SANTE TV - MIKUBA TV - LUDIKIDS OI - VIXEN - NICKELODEON JR - NATHAN+ - NOVELAS (Cameroun) - MADI TV - MABOKE TV - ECCLESIA TV - SOS DOCTEUR TV - CANAL+ DOCS + MBC 1 + 13EME RUE + MBC 2 + ACTION + ANTENNE REUNION + MBC 3 + ARTE France + BBC NEWS + W-SPORT + MBC 4 + CANAL J + MBC 5 + MBC 11 + CANAL+ CINEMA(S) + MBC HD + PUNCH TV + CANAL+ + SPORT EN FRANCE + CANAL+ SPORT HD + CNN + CINE+ FESTIVAL + CINE+ EMOTION + CINE+ FAMILY + CINE+ FRISSON + OCS HD + EUROPE 1 TV + COMEDIE+ + E! ENTERTAINMENT + EQUIDIA + SS EPL + SS LA LIGA + SS FOOTBALL HD + EUROSPORT 1 HD + EUROSPORT 2 + SS FOOTBALL PLUS HD + AL JAZEERA ENG + FRANCE 3 + FRANCE 5 + BET (ENG) + CNEWS + TELEMUNDO DSTV + INFOSPORT+ + UNIVERSAL + MNET MOVIES 3 + MNET MOVIES 4 + LCI + LCP ASSEMBLEE NATIONALE + L'EQUIPE + M6 HD + DISCOVERY CHANNEL DSTV + ZEE WORLD DSTV + NICKELODEON DSTV + RFM TV + NICKELODEON JR (DSTV) + MEZZO + BRAVO + MTV France + AFR MAGIC EPIC + TFX + AFR MAGIC SHOW DSTV + GASYSPORT TV + PARIS PREMIERE + BEIN SPORTS MAX 6 + PLANETE+ + PLANETE+ AVENTURE + BEIN SPORTS MAX 7 + BEIN SPORTS MAX 8 + RTL9 + SYFY + SEASONS + SERIE CLUB + BEIN SPORTS MAX 9 + BEIN SPORTS MAX 10 + CANAL+ FAMILY + CANAL+ POP + CANAL+ MAGIC + MANGAS + PASSION BOLLYWOOD + REUNION 1ERE + TVM 2 + MALAGASY TV + KULTURA TV + REAL TV + MADI TV + TEVA + TF1 + T18 + MIEUX + TMC + CANAL+ CAN HD + EUROPE 2 POP TV + ACTIVATION NETFLIX + TRACE URBAN + SS WWE HD + TV BREIZH + TV5 MONDE (Afrique) + NATIONAL GEOGRAPHIC ENG + TV5 MONDE FR + STUDIO UNIVERSAL + XXL + FRANCE 24 + BEIN SPORTS 1 HD + ZEE CINEMA HD + ZING + ZEE TV + CANAL+ SPORT 2 HD + PIWI+ + GAME ONE + USHUAÏA TV + W9 + PLANETE+ CRIME + GULLI + MTV HITS + TELETOON+ + CANAL+ SPORT 3 HD + KANALAUSTRAL.TV + DORCEL HD + HISTOIRE + CANAL EVENEMENT INDO + AFRICA 24 + DISCOVERY CHANNEL + FRANCE 2 + TVMalgache + ORTComores + FRANCE 4 + TELE KREOL + MAYOTTE 1ERE + STARPLUS + TRACE AFRICA + CSTAR + COLORS + NICKELODEON + BEIN SPORTS 2 HD + CANAL+ BOX OFFICE + KTO + IQRAA + PENTHOUSE BLACK + STARGOLD + VOIR+ OCEAN INDIEN + PARAMOUNT NETWORK + HUSTLER + INFOSPORT+ AFR + CGTN-FRANCAIS + CANAL+ SERIES + CINE+ CLASSIC + TV PLUS + KOLO TV + VIVA + MTV India + MBC SAT + BEIN SPORTS 3 HD + ENGLISH CLUB TV + CANAL+ SPORT 4 + CANAL+ SPORT 5 HD + CANAL+ KIDS HD + RECORD + GOLF+ HD + A+ + NOLLYWOOD TV france + RMC LIFE + CARTOON NETWORK + BOOMERANG + CANAL+ SPORT 360 HD + CANAL+ FOOT + NOVELAS TV + BEIN SPORTS MAX 4 + BEIN SPORTS MAX 5 + SONY MAX + AUTOMOTO + TREK + PRIVATE + TF1 SERIES FILMS + 6TER + CANAL+ SPORT 1 HD + TEST DROM + TEST + C+ ACTION CENTRE + MUSEUM TV + MBS + DREAMIN + WARNER TV + WARNER TV NEXT + FRANCE INFO: + CUISINES + RTA + OLYMPIA TV + CANAL+ PREMIER LEAGUE + EVENEMENT 4K + NOVEGASY + TRACE VANILLA + LUDIKIDS OI + ZEE THIRAI + VIXEN + NICKELODEON JR + UTSAV BHARAT + NATHAN+ + BFM TV + BFM BUSINESS + RMC STORY + KWEZI + CANAL+ DOCS + CHEVAL TV + MEZZO LIVE + RMC DECOUVERTE + CARTOONITO + TLC + DISCOVERY INVESTIGATION + CANAL+LIVE 1 + CANAL+LIVE 2 + CANAL+LIVE 3 + CANAL+LIVE 4 + CANAL+LIVE 5 + CANAL+LIVE 6 + CANAL+LIVE 7 + CANAL+LIVE 8 + CANAL+LIVE 9 + CANAL+LIVE 10 + CANAL+LIVE 11 + CANAL+LIVE 12 + CANAL+LIVE 13 + CANAL+LIVE 14 + CANAL+LIVE 15 + CANAL+LIVE 16 + CANAL+LIVE 17 + CANAL+LIVE 18 + TCM CINEMA diff --git a/sites/canalplus.com/canalplus.com_ml.channels.xml b/sites/canalplus.com/canalplus.com_ml.channels.xml index 57433fd1a..7a5fab776 100644 --- a/sites/canalplus.com/canalplus.com_ml.channels.xml +++ b/sites/canalplus.com/canalplus.com_ml.channels.xml @@ -22,7 +22,6 @@ BOSOLO TV RTCE MALAIKA TV - HK6 HERITAGE TV E! Bukedde TV @@ -35,8 +34,6 @@ France 2 INT MANGAS RTB ZENITH - HOPE TV - RTNK MEZZO HOREB TV MTV France @@ -55,13 +52,12 @@ AFRIKINFO TV EVANGILE TV REFLET TV + TRACE CHRISTMAS TOUBA TV TELEMUSIK SENEGAL MOURCHID TV - TELE-ECOLE AL MOURIDIYYAH TV MALIKIA TV - CANAL EDUCATION FULBE TF1 KAYES TV @@ -69,6 +65,7 @@ TMC SEGOU TV SUNNA TV SAVANA + CANAL+ CAN GO TV HUSTLER HD TROPIC TV @@ -80,11 +77,9 @@ GALAXIE TELE FRANCE 24 BALAFON TV - TAMBARIN HAUSA TV DASH TV BETV HTV BURUNDI - TPMP RTB 2STV ISIBO TV @@ -121,8 +116,8 @@ TELE CONGO BENIN TV HD RTNC + CANAL+ CAN IVOIRE PRIVATE TV - WILDEARTH TPT+ TRACE AFRICA AFRIQUE VOIR+ @@ -147,7 +142,6 @@ M7 RTB 3 TV AL HOUDA - JES TV SUNNA TV ZARMA TAURARUWA FOR YOU TV @@ -155,7 +149,6 @@ TRACE MBOA SUN+ TV TV+ AFRIQUE - LPC NOLLYWOOD TV RTI2 TV TOGO @@ -170,18 +163,18 @@ CONGO 26 ISHUSHO TV MRTV - SHIF TV + CHIF TV GC7 GC2 GC6 ESPERANCE TV BUJA TV AL JAZEERA ENG - BET ENG + BET (ENG) UNIVERSAL GC1 SHADOW TV - CANAL+ ELLES + C+ MAGIC PARAMOUNT NETWORK SS FOOTBALL PLUS HD SS FOOTBALL HD @@ -206,7 +199,6 @@ BBLACK AFRICA TELE FONTAINE VIE CNN - TLC CARTOON NETWORK CARTOONITO BOOMERANG @@ -217,11 +209,9 @@ RTB 3 dupli TVCA RTB dupli - TOZALI TV LUMEN CHRISTI PRC JESUS 24 TV - SUNNA TV CH3 CH4 PARLEMENT TV @@ -233,17 +223,30 @@ BCN TV BRIK TV AL NASSR + BENIN TV ALAFIA + ACTIVATION NETFLIX + DNTV + AFRICA MAGIC HAUSA + AFRICA MAGIC YORUBA + MAISHA MAGIC EAST + MAISHA MAGIC PLUS + TEST AFRIQUE + MIEUX + EUROPE 2 POP TV GULLI AFRICA NOVELAS TV + TRACE IVOIRE PACIS TV MY MEDIA PRIME SCIENCE ET VIE TV ENGLISH CLUB TV + ZEE ALWAN FASHION AFRICA TV SEN TV ASONGA TV DIGITAL CONGO TELE 50 + SS WWE DRTV TV MAURITANIE IMPACT TV @@ -252,15 +255,24 @@ BUSINESS 24 CANAL+ SPORT 4 CANAL+ SPORT 5 + VOIR+ RDC ZEE MAGIC ORTM2 EVASION TV RTD + GOLF+ HD + LOVE NATURE CANAL+ FAMILY OUEST ONE TV + CNEWS PRIME + EUROPE 1 TV + AES TV HD + MAISHA MAGIC BONGO + NATIONAL GEOGRAPHIC ENG + STUDIO UNIVERSAL SSM TV MCR TV - OMEGA TV + SUPERSPORT ACTION AFRICANEWS E-TELEVISION ESPACE TV @@ -278,12 +290,11 @@ TREK J-ONE BANTAMBA TV - TRACE MZIKI CNBC AFRICA WALF TV LTM MEDI1 TV - CH1 + CNEWS PRIME IVOIRE TV Music UNIVERS TV MIRACLE TV+ @@ -313,7 +324,7 @@ MUSEUM TV CANAL 2 MOVIES EMCI - CH2 + EUROPE 1 TV A+ IVOIRE Antenne VISION 4 RCA AREWA 24 @@ -331,13 +342,11 @@ TM1 TOUTE L HISTOIRE PSTV - FARIN WATA KC2 TV1 TV O FLASH TV ISANGO STAR TV - GENESIS TV BTN TV CARTOON NETWORK Africa SA TNT Africa @@ -352,7 +361,7 @@ LCA RENOUVEAU TV RTDS - E! ENG + BRAVO ENG TELEMUNDO AFRICA MAGIC EPIC ZEE WORLD @@ -361,7 +370,7 @@ AFRICA MAGIC SHOWCASE MNET MOVIES 3 MNET MOVIES 4 - DISCOVER CHANNEL ENG + DISCOVERY CHANNEL ENG SS EPL SS LA LIGA CANAL 3 BURKINA @@ -375,9 +384,7 @@ TVC DOUNIA BONFEREY - SUNNA TV TVGE - CAPITAL SANTE TV MIKUBA TV LUDIKIDS OI VIXEN diff --git a/sites/canalplus.com/canalplus.com_mq.channels.xml b/sites/canalplus.com/canalplus.com_mq.channels.xml index 8ea8f0144..f352fbd4a 100644 --- a/sites/canalplus.com/canalplus.com_mq.channels.xml +++ b/sites/canalplus.com/canalplus.com_mq.channels.xml @@ -10,34 +10,39 @@ PUNCH TV CANAL J CANAL+ HD - CANAL+ CINEMA(S) - DAZN 1 - DAZN 2 + CANAL+ CINEMA(S) HD + CNEWS PRIME + EUROPE 1 TV DAZN 3 DAZN 4 DAZN 5 CNN - CANAL+ SPORT HD + CANAL+SPORT HD EMCI - CINE+ FESTIVAL - CINE+ EMOTION - CINE+ FAMILY - CINE+ FRISSON HD + CINE+FESTIVAL + CINE+EMOTION + CINE+FAMILY + CINE+FRISSON HD OCS HD EVANGILE TV MANGAS + T18 COMEDIE+ + NOVO19 E! ENTERTAINMENT - EQUIDIA LIVE + EQUIDIA HD ESPN + MIEUX + EUROPE 2 POP TV EUROSPORT 1 HD EUROSPORT 2 HD + RADIO TELE ECLAIR FRANCE 3 FRANCE 5 CNEWS INFOSPORT+ LCI - LCP ASSEMBLEE NATIONALE + LCP L'EQUIPE M6 HD MTV France @@ -61,10 +66,9 @@ XXL FRANCE 24 BEIN SPORTS 1 HD - TPMP PIWI+ GAME ONE - USHUAÏA TV + USHUAIA TVHD W9 PLANETE+ CRIME GULLI @@ -78,7 +82,6 @@ FRANCE 2 FRANCE 4 KMT - NRJ 12 CSTAR NICKELODEON TV GLOBO @@ -96,25 +99,25 @@ HUSTLER TV Métropole CANAL+ SERIES HD - CINE + CLASSIC + CINE+CLASSIC BEIN SPORTS 3 HD - CANAL+ SPORT AYITI 1 - HAITI SPORT 2 + C+SPORT AYITI 1 HD + C+SPORT AYITI 2 HBO HBO Family HBO XTREME ENGLISH CLUB TV - CANAL+ KIDS HD + CANAL+KIDS HD GOLF+ A+ NOLLYWOOD TV france CANAL SONY TV CARAIBES - CHERIE 25 + RMC LIFE CARTOON NETWORK BOOMERANG - CANAL+ SPORT 360 - CANAL+ FOOT + CANAL+SPORT360 HD + CANAL+FOOT HD NOVELAS TV BBLACK CARIBBEAN BEIN SPORTS MAX 4 @@ -145,7 +148,7 @@ TELEMUNDO TOUTE L HISTOIRE OLYMPIA TV - CANAL+ PREMIER LEAGUE + CANAL+PREMIER LEAGUE EVENEMENT 4K ZITATA TV LUDIKIDS OI @@ -153,7 +156,7 @@ TELE SOLEIL GRAPHE TV NICKELODEON JR - STUDIOCANAL + STUDIOCANAL TV NATHAN+ TROTTERS TV FUSION TV @@ -161,11 +164,10 @@ BFM TV BFM BUSINESS RMC STORY - CANAL+ AYITI + CANAL+AYITI HD CANAL EVENEMENT CARA SPORT EN FRANCE - CANAL+ DOCS - TRAVEL XP + CANAL+DOCS CHEVAL TV MEZZO LIVE RMC DECOUVERTE diff --git a/sites/canalplus.com/canalplus.com_mr.channels.xml b/sites/canalplus.com/canalplus.com_mr.channels.xml index ac35c9925..f32be43b2 100644 --- a/sites/canalplus.com/canalplus.com_mr.channels.xml +++ b/sites/canalplus.com/canalplus.com_mr.channels.xml @@ -22,7 +22,6 @@ BOSOLO TV RTCE MALAIKA TV - HK6 HERITAGE TV E! Bukedde TV @@ -35,8 +34,6 @@ France 2 INT MANGAS RTB ZENITH - HOPE TV - RTNK MEZZO HOREB TV MTV France @@ -55,13 +52,12 @@ AFRIKINFO TV EVANGILE TV REFLET TV + TRACE CHRISTMAS TOUBA TV TELEMUSIK SENEGAL MOURCHID TV - TELE-ECOLE AL MOURIDIYYAH TV MALIKIA TV - CANAL EDUCATION FULBE TF1 KAYES TV @@ -69,6 +65,7 @@ TMC SEGOU TV SUNNA TV SAVANA + CANAL+ CAN GO TV HUSTLER HD TROPIC TV @@ -80,11 +77,9 @@ GALAXIE TELE FRANCE 24 BALAFON TV - TAMBARIN HAUSA TV DASH TV BETV HTV BURUNDI - TPMP RTB 2STV ISIBO TV @@ -121,8 +116,8 @@ TELE CONGO BENIN TV HD RTNC + CANAL+ CAN IVOIRE PRIVATE TV - WILDEARTH TPT+ TRACE AFRICA AFRIQUE VOIR+ @@ -147,7 +142,6 @@ M7 RTB 3 TV AL HOUDA - JES TV SUNNA TV ZARMA TAURARUWA FOR YOU TV @@ -155,7 +149,6 @@ TRACE MBOA SUN+ TV TV+ AFRIQUE - LPC NOLLYWOOD TV RTI2 TV TOGO @@ -170,18 +163,18 @@ CONGO 26 ISHUSHO TV MRTV - SHIF TV + CHIF TV GC7 GC2 GC6 ESPERANCE TV BUJA TV AL JAZEERA ENG - BET ENG + BET (ENG) UNIVERSAL GC1 SHADOW TV - CANAL+ ELLES + C+ MAGIC PARAMOUNT NETWORK SS FOOTBALL PLUS HD SS FOOTBALL HD @@ -206,7 +199,6 @@ BBLACK AFRICA TELE FONTAINE VIE CNN - TLC CARTOON NETWORK CARTOONITO BOOMERANG @@ -217,11 +209,9 @@ RTB 3 dupli TVCA RTB dupli - TOZALI TV LUMEN CHRISTI PRC JESUS 24 TV - SUNNA TV CH3 CH4 PARLEMENT TV @@ -233,17 +223,30 @@ BCN TV BRIK TV AL NASSR + BENIN TV ALAFIA + ACTIVATION NETFLIX + DNTV + AFRICA MAGIC HAUSA + AFRICA MAGIC YORUBA + MAISHA MAGIC EAST + MAISHA MAGIC PLUS + TEST AFRIQUE + MIEUX + EUROPE 2 POP TV GULLI AFRICA NOVELAS TV + TRACE IVOIRE PACIS TV MY MEDIA PRIME SCIENCE ET VIE TV ENGLISH CLUB TV + ZEE ALWAN FASHION AFRICA TV SEN TV ASONGA TV DIGITAL CONGO TELE 50 + SS WWE DRTV TV MAURITANIE IMPACT TV @@ -252,15 +255,24 @@ BUSINESS 24 CANAL+ SPORT 4 CANAL+ SPORT 5 + VOIR+ RDC ZEE MAGIC ORTM2 EVASION TV RTD + GOLF+ HD + LOVE NATURE CANAL+ FAMILY OUEST ONE TV + CNEWS PRIME + EUROPE 1 TV + AES TV HD + MAISHA MAGIC BONGO + NATIONAL GEOGRAPHIC ENG + STUDIO UNIVERSAL SSM TV MCR TV - OMEGA TV + SUPERSPORT ACTION AFRICANEWS E-TELEVISION ESPACE TV @@ -278,12 +290,11 @@ TREK J-ONE BANTAMBA TV - TRACE MZIKI CNBC AFRICA WALF TV LTM MEDI1 TV - CH1 + CNEWS PRIME IVOIRE TV Music UNIVERS TV MIRACLE TV+ @@ -313,7 +324,7 @@ MUSEUM TV CANAL 2 MOVIES EMCI - CH2 + EUROPE 1 TV A+ IVOIRE Antenne VISION 4 RCA AREWA 24 @@ -331,13 +342,11 @@ TM1 TOUTE L HISTOIRE PSTV - FARIN WATA KC2 TV1 TV O FLASH TV ISANGO STAR TV - GENESIS TV BTN TV CARTOON NETWORK Africa SA TNT Africa @@ -352,7 +361,7 @@ LCA RENOUVEAU TV RTDS - E! ENG + BRAVO ENG TELEMUNDO AFRICA MAGIC EPIC ZEE WORLD @@ -361,7 +370,7 @@ AFRICA MAGIC SHOWCASE MNET MOVIES 3 MNET MOVIES 4 - DISCOVER CHANNEL ENG + DISCOVERY CHANNEL ENG SS EPL SS LA LIGA CANAL 3 BURKINA @@ -375,9 +384,7 @@ TVC DOUNIA BONFEREY - SUNNA TV TVGE - CAPITAL SANTE TV MIKUBA TV LUDIKIDS OI VIXEN diff --git a/sites/canalplus.com/canalplus.com_mu.channels.xml b/sites/canalplus.com/canalplus.com_mu.channels.xml index c490d6a20..8bbef5c5b 100644 --- a/sites/canalplus.com/canalplus.com_mu.channels.xml +++ b/sites/canalplus.com/canalplus.com_mu.channels.xml @@ -25,12 +25,8 @@ CINE+ FAMILY CINE+ FRISSON OCS HD - CH1 - CH2 - CH3 - CH4 + EUROPE 1 TV COMEDIE+ - CH5 E! ENTERTAINMENT EQUIDIA SS EPL @@ -42,7 +38,7 @@ AL JAZEERA ENG FRANCE 3 FRANCE 5 - BET ENG + BET (ENG) CNEWS TELEMUNDO DSTV INFOSPORT+ @@ -59,7 +55,7 @@ RFM TV NICKELODEON JR (DSTV) MEZZO - E! Entertainment DSTV + BRAVO MTV France AFR MAGIC EPIC TFX @@ -79,22 +75,30 @@ BEIN SPORTS MAX 10 CANAL+ FAMILY CANAL+ POP - CANAL+ ELLES + CANAL+ MAGIC MANGAS PASSION BOLLYWOOD REUNION 1ERE TVM 2 MALAGASY TV - FREE TV + KULTURA TV REAL TV MADI TV TEVA TF1 + T18 + MIEUX TMC + CANAL+ CAN HD + EUROPE 2 POP TV + ACTIVATION NETFLIX TRACE URBAN + SS WWE HD TV BREIZH TV5 MONDE (Afrique) + NATIONAL GEOGRAPHIC ENG TV5 MONDE FR + STUDIO UNIVERSAL XXL FRANCE 24 BEIN SPORTS 1 HD @@ -155,7 +159,7 @@ GOLF+ HD A+ NOLLYWOOD TV france - CHERIE 25 + RMC LIFE CARTOON NETWORK BOOMERANG CANAL+ SPORT 360 HD @@ -174,6 +178,7 @@ TEST C+ ACTION CENTRE MUSEUM TV + MBS DREAMIN WARNER TV WARNER TV NEXT diff --git a/sites/canalplus.com/canalplus.com_nc.channels.xml b/sites/canalplus.com/canalplus.com_nc.channels.xml index e91062d26..4265ac83b 100644 --- a/sites/canalplus.com/canalplus.com_nc.channels.xml +++ b/sites/canalplus.com/canalplus.com_nc.channels.xml @@ -16,8 +16,8 @@ CANAL+ CINEMA(S) PUNCH TV CNN - DAZN 1 - DAZN 2 + CNEWS PRIME + EUROPE 1 TV DAZN 3 CANAL+ SPORT HD DAZN 4 @@ -36,10 +36,14 @@ CINEWESTERN CINE NANAR VOIR+ + CANAL+ GRAND ECRAN HD EUROSPORT 1 EUROSPORT 2 + T18 + NOVO19 FRANCE 3 FRANCE 5 + MIEUX CNEWS INFOSPORT+ LCI @@ -100,7 +104,7 @@ TCM CINEMA CANAL+ KIDS HD GOLF+ - CHERIE 25 + RMC LIFE CARTOON NETWORK BOOMERANG CANAL+ SPORT 360 @@ -134,7 +138,7 @@ BFM BUSINESS RMC STORY SPORT EN FRANCE - CSTAR HITS + EUROPE 2 POP TV CANAL+ DOCS ABC AUSTRALIA HISTOIRE TV 24/24 diff --git a/sites/canalplus.com/canalplus.com_ne.channels.xml b/sites/canalplus.com/canalplus.com_ne.channels.xml index d94740352..5837c0e61 100644 --- a/sites/canalplus.com/canalplus.com_ne.channels.xml +++ b/sites/canalplus.com/canalplus.com_ne.channels.xml @@ -22,7 +22,6 @@ BOSOLO TV RTCE MALAIKA TV - HK6 HERITAGE TV E! Bukedde TV @@ -35,8 +34,6 @@ France 2 INT MANGAS RTB ZENITH - HOPE TV - RTNK MEZZO HOREB TV MTV France @@ -55,13 +52,12 @@ AFRIKINFO TV EVANGILE TV REFLET TV + TRACE CHRISTMAS TOUBA TV TELEMUSIK SENEGAL MOURCHID TV - TELE-ECOLE AL MOURIDIYYAH TV MALIKIA TV - CANAL EDUCATION FULBE TF1 KAYES TV @@ -69,6 +65,7 @@ TMC SEGOU TV SUNNA TV SAVANA + CANAL+ CAN GO TV HUSTLER HD TROPIC TV @@ -80,11 +77,9 @@ GALAXIE TELE FRANCE 24 BALAFON TV - TAMBARIN HAUSA TV DASH TV BETV HTV BURUNDI - TPMP RTB 2STV ISIBO TV @@ -121,8 +116,8 @@ TELE CONGO BENIN TV HD RTNC + CANAL+ CAN IVOIRE PRIVATE TV - WILDEARTH TPT+ TRACE AFRICA AFRIQUE VOIR+ @@ -147,7 +142,6 @@ M7 RTB 3 TV AL HOUDA - JES TV SUNNA TV ZARMA TAURARUWA FOR YOU TV @@ -155,7 +149,6 @@ TRACE MBOA SUN+ TV TV+ AFRIQUE - LPC NOLLYWOOD TV RTI2 TV TOGO @@ -170,18 +163,18 @@ CONGO 26 ISHUSHO TV MRTV - SHIF TV + CHIF TV GC7 GC2 GC6 ESPERANCE TV BUJA TV AL JAZEERA ENG - BET ENG + BET (ENG) UNIVERSAL GC1 SHADOW TV - CANAL+ ELLES + C+ MAGIC PARAMOUNT NETWORK SS FOOTBALL PLUS HD SS FOOTBALL HD @@ -206,7 +199,6 @@ BBLACK AFRICA TELE FONTAINE VIE CNN - TLC CARTOON NETWORK CARTOONITO BOOMERANG @@ -217,11 +209,9 @@ RTB 3 dupli TVCA RTB dupli - TOZALI TV LUMEN CHRISTI PRC JESUS 24 TV - SUNNA TV CH3 CH4 PARLEMENT TV @@ -233,17 +223,30 @@ BCN TV BRIK TV AL NASSR + BENIN TV ALAFIA + ACTIVATION NETFLIX + DNTV + AFRICA MAGIC HAUSA + AFRICA MAGIC YORUBA + MAISHA MAGIC EAST + MAISHA MAGIC PLUS + TEST AFRIQUE + MIEUX + EUROPE 2 POP TV GULLI AFRICA NOVELAS TV + TRACE IVOIRE PACIS TV MY MEDIA PRIME SCIENCE ET VIE TV ENGLISH CLUB TV + ZEE ALWAN FASHION AFRICA TV SEN TV ASONGA TV DIGITAL CONGO TELE 50 + SS WWE DRTV TV MAURITANIE IMPACT TV @@ -252,15 +255,24 @@ BUSINESS 24 CANAL+ SPORT 4 CANAL+ SPORT 5 + VOIR+ RDC ZEE MAGIC ORTM2 EVASION TV RTD + GOLF+ HD + LOVE NATURE CANAL+ FAMILY OUEST ONE TV + CNEWS PRIME + EUROPE 1 TV + AES TV HD + MAISHA MAGIC BONGO + NATIONAL GEOGRAPHIC ENG + STUDIO UNIVERSAL SSM TV MCR TV - OMEGA TV + SUPERSPORT ACTION AFRICANEWS E-TELEVISION ESPACE TV @@ -278,12 +290,11 @@ TREK J-ONE BANTAMBA TV - TRACE MZIKI CNBC AFRICA WALF TV LTM MEDI1 TV - CH1 + CNEWS PRIME IVOIRE TV Music UNIVERS TV MIRACLE TV+ @@ -313,7 +324,7 @@ MUSEUM TV CANAL 2 MOVIES EMCI - CH2 + EUROPE 1 TV A+ IVOIRE Antenne VISION 4 RCA AREWA 24 @@ -331,13 +342,11 @@ TM1 TOUTE L HISTOIRE PSTV - FARIN WATA KC2 TV1 TV O FLASH TV ISANGO STAR TV - GENESIS TV BTN TV CARTOON NETWORK Africa SA TNT Africa @@ -352,7 +361,7 @@ LCA RENOUVEAU TV RTDS - E! ENG + BRAVO ENG TELEMUNDO AFRICA MAGIC EPIC ZEE WORLD @@ -361,7 +370,7 @@ AFRICA MAGIC SHOWCASE MNET MOVIES 3 MNET MOVIES 4 - DISCOVER CHANNEL ENG + DISCOVERY CHANNEL ENG SS EPL SS LA LIGA CANAL 3 BURKINA @@ -375,9 +384,7 @@ TVC DOUNIA BONFEREY - SUNNA TV TVGE - CAPITAL SANTE TV MIKUBA TV LUDIKIDS OI VIXEN diff --git a/sites/canalplus.com/canalplus.com_pf.channels.xml b/sites/canalplus.com/canalplus.com_pf.channels.xml index 65b3abf7e..5532f0887 100644 --- a/sites/canalplus.com/canalplus.com_pf.channels.xml +++ b/sites/canalplus.com/canalplus.com_pf.channels.xml @@ -27,7 +27,6 @@ BEIN SPORTS 3 PLANETE+ OCS HD - C8 COMEDIE+ LCP DORCEL TV @@ -46,8 +45,7 @@ USHUAÏA TV TiJi PIWI+ - C Star hits en Fr - NRJ 12 + EUROPE 2 POP TV RMC STORY Seasons Histoire TV @@ -74,11 +72,7 @@ CANAL EVENEMENT CNN SPORT EN FRANCE - DAZN 1 - DAZN 2 - DAZN 3 - DAZN 4 - DAZN 5 + EUROPE 1 TV EVANGILE TV RTL9 MANGAS @@ -92,11 +86,21 @@ BEIN SPORTS MAX 8 BEIN SPORTS MAX 9 BEIN SPORTS MAX 10 + CANAL+ GRAND ECRAN HD + T18 + NOVO19 + L'EQUIPE + MIEUX + COMEDY CENTRAL + MTV + LOVE NATURE + DOG & CAT TV + NICKELODEON JUNIOR + NICKELODEON DISCOVERY CHANNEL CANAL+ BOX OFFICE - CANAL+ SERIES TCM CINEMA - CHERIE 25 + RMC LIFE CARTOON NETWORK BOOMERANG PLANETE+ CRIME diff --git a/sites/canalplus.com/canalplus.com_pl.channels.xml b/sites/canalplus.com/canalplus.com_pl.channels.xml index 79289d828..4e3ead333 100644 --- a/sites/canalplus.com/canalplus.com_pl.channels.xml +++ b/sites/canalplus.com/canalplus.com_pl.channels.xml @@ -2,6 +2,7 @@ WP BABY TV + Dorcel TV TVP 1 4FUN DISCOVERY LIFE HD @@ -22,7 +23,7 @@ EUROSPORT 2 HD KINO POLSKA AMC HD - MTV ROCKS + MTV 90s MTV POLSKA polsat 2 TVPULSE HD @@ -32,8 +33,9 @@ TVN STYLE HD TVN TURBO HD TVP 2 + TVP KULTURA TVP Sport HD - NickMusic + MTV MUSIC HGTV TVN 24 BiS HD TVP INFO @@ -43,6 +45,8 @@ HBO 2 HD FILMBOX PREMIUM HD FILMBOX EXTRA + TVP POLONIA + TVP HD DISNEY CHANNEL HD POLSAT JIM JAM NICK. @@ -62,27 +66,35 @@ Warner TV TRAVEL CHANNEL HD TV4 + TVP HISTORIA FILMBOX FAMILY - MTV LIVE + MTV LIVE HD TVN 7 HD TVN ESKA TV EXTRA ID INVESTIGATION BBC News + TVS NAT GEO WILD HD ANIMAL PLANET HD DISNEY XD + Blue Hustler + Private TV BBC FIRST HD FX - MTV 00 + MTV 00s TVP SERIALE POLSAT COMEDY CENTRAL EXTRA HD BBC EARTH POLSAT CAFE HD + POLSAT FILM HD POLSAT POLSAT PLAY HD + TV 6 HD ROMANCE TV HD PARAMOUNT CHANNEL HD + SUPER POLSAT HD + HUSTLER HD TTV NICK JR. NICKTOONS HD @@ -90,6 +102,7 @@ POLSAT CRIME & INVESTIGATION HISTORY HD SUNDANCE TV HD + Redlight HD 4FUN HITS GOLD MINIMINI+ HD PLANETE+ HD @@ -105,7 +118,8 @@ ALE KINO+ HD ELEVEN SPORTS 2 HD CANAL+ SPORT 5 - Autopromocja + CANAL+ FAMILY HD + TVP ROZRYWKA polotv PULS 2 NAT GEO PEOPLE HD @@ -113,19 +127,26 @@ KINO POLSKA MUZYKA Film Cafe 4FUN DANCE - CBS REALITY + Program 12 + POLSAT Seriale SCI FI 13 ULICA HD MOTOWIZJA HD STOPKLATKA TV (new) + FOKUS TV DISCO POLO MUSIC + TVC VOX MUSIC TV + TVP ABC POWER TV ADVENTURE HD TV REPUBLIKA + POLSAT MUSIC HD HISTORY 2 HD CANAL+ EXTRA 17 FX COMEDY + Active Family + TVN FABUŁA HD CANAL+ SERIALE HD CANAL+ SPORT 2 CANAL+ DOKUMENT HD @@ -139,6 +160,7 @@ ELEVEN SPORTS 3 HD eskarock ESKA TV + NOWA TV FOOD NETWORK DEUTSCHE WELLE NUTA TV @@ -153,26 +175,31 @@ POLSAT SPORT PREMIUM 4 POLSAT SPORT PREMIUM 5 POLSAT SPORT PREMIUM 6 + HOME TV CANAL+ PREMIUM CANAL+ PREMIUM CANAL+ SPORT 3 CANAL+ SPORT 4 + StudioMed TV Eleven Sports 1 4K - CLUB MTV + GOLF CHANNEL HD + MTV DANCE MTV HITS - VH1 CLASSIC + Program 13 BIZNES24 EURONEWS HD CNBC + TVP DOKUMENT WPOLSCE 24 NOVELAS+ VIVID RED Sejm RP + Antena CANAL+ CANAL+ Sport (EPL) CANAL+ SPORT2 CANAL+ EXTRA 18 - CANAL+ EXTRA 15 + Canal+ Now TeenNick polsat games BLOOMBERG @@ -206,7 +233,9 @@ TVP 3 Kielce TVP 3 Olsztyn TVP 3 Opole + Current Time TV CANAL+ LIVE 5 + NUTA GOLD Alfa TVP TVP World TVP Historia 2 @@ -214,8 +243,12 @@ TVP ABC 2 TVP Nauka TVP Kobieta + CTV - DLA CIEBIE + TVC SUPER + SZLAGIER TV VIASAT TRUE CRIME CANAL+ 360 HD + Love Nature 4K CANAL+ EXTRA 2 HD CANAL+ EXTRA 3 HD CANAL+ EXTRA 4 HD @@ -223,14 +256,24 @@ CANAL+ EXTRA 6 HD CANAL+ EXTRA 7 HD CANAL+ EXTRA 1 HD + WYDARZENIA 24 + POLSAT DOKU HD + POLSAT RODZINA HD CANAL+ LIVE 6 STREFA ABONENTA wPolsce24 - Polsat - PulsPL - TV4PL - ZoomTV - Stopklatka TV + Program 7 + Program 8 + Program 9 + Program 10 + STOPKLATKA TV + Polsat + PULS + TV4 + Zoom TV + Stopklatka TV + Kabaret TV + Kanal Zero CANAL+ LIVE 1 CANAL+ LIVE 2 CANAL+ LIVE 3 diff --git a/sites/canalplus.com/canalplus.com_re.channels.xml b/sites/canalplus.com/canalplus.com_re.channels.xml index 3aaef7c43..24dae4526 100644 --- a/sites/canalplus.com/canalplus.com_re.channels.xml +++ b/sites/canalplus.com/canalplus.com_re.channels.xml @@ -4,7 +4,6 @@ 13EME RUE MBC 2 ACTION - ANTENNE REUNION MBC 3 ARTE France BBC NEWS @@ -25,12 +24,8 @@ CINE+ FAMILY CINE+ FRISSON OCS HD - CH1 - CH2 - CH3 - CH4 + EUROPE 1 TV COMEDIE+ - CH5 E! ENTERTAINMENT EQUIDIA SS EPL @@ -42,7 +37,7 @@ AL JAZEERA ENG FRANCE 3 FRANCE 5 - BET ENG + BET (ENG) CNEWS TELEMUNDO DSTV INFOSPORT+ @@ -59,7 +54,7 @@ RFM TV NICKELODEON JR (DSTV) MEZZO - E! Entertainment DSTV + BRAVO MTV France AFR MAGIC EPIC TFX @@ -79,22 +74,30 @@ BEIN SPORTS MAX 10 CANAL+ FAMILY CANAL+ POP - CANAL+ ELLES + CANAL+ MAGIC MANGAS PASSION BOLLYWOOD REUNION 1ERE TVM 2 MALAGASY TV - FREE TV + KULTURA TV REAL TV MADI TV TEVA TF1 + T18 + MIEUX TMC + CANAL+ CAN HD + EUROPE 2 POP TV + ACTIVATION NETFLIX TRACE URBAN + SS WWE HD TV BREIZH TV5 MONDE (Afrique) + NATIONAL GEOGRAPHIC ENG TV5 MONDE FR + STUDIO UNIVERSAL XXL FRANCE 24 BEIN SPORTS 1 HD @@ -155,7 +158,7 @@ GOLF+ HD A+ NOLLYWOOD TV france - CHERIE 25 + RMC LIFE CARTOON NETWORK BOOMERANG CANAL+ SPORT 360 HD @@ -174,6 +177,7 @@ TEST C+ ACTION CENTRE MUSEUM TV + MBS DREAMIN WARNER TV WARNER TV NEXT @@ -221,4 +225,5 @@ CANAL+LIVE 17 CANAL+LIVE 18 TCM CINEMA + ANTENNE REUNION diff --git a/sites/canalplus.com/canalplus.com_rw.channels.xml b/sites/canalplus.com/canalplus.com_rw.channels.xml index 92de1d7bf..580ec7b85 100644 --- a/sites/canalplus.com/canalplus.com_rw.channels.xml +++ b/sites/canalplus.com/canalplus.com_rw.channels.xml @@ -22,7 +22,6 @@ BOSOLO TV RTCE MALAIKA TV - HK6 HERITAGE TV E! Bukedde TV @@ -35,8 +34,6 @@ France 2 INT MANGAS RTB ZENITH - HOPE TV - RTNK MEZZO HOREB TV MTV France @@ -55,13 +52,12 @@ AFRIKINFO TV EVANGILE TV REFLET TV + TRACE CHRISTMAS TOUBA TV TELEMUSIK SENEGAL MOURCHID TV - TELE-ECOLE AL MOURIDIYYAH TV MALIKIA TV - CANAL EDUCATION FULBE TF1 KAYES TV @@ -69,6 +65,7 @@ TMC SEGOU TV SUNNA TV SAVANA + CANAL+ CAN GO TV HUSTLER HD TROPIC TV @@ -80,11 +77,9 @@ GALAXIE TELE FRANCE 24 BALAFON TV - TAMBARIN HAUSA TV DASH TV BETV HTV BURUNDI - TPMP RTB 2STV ISIBO TV @@ -121,8 +116,8 @@ TELE CONGO BENIN TV HD RTNC + CANAL+ CAN IVOIRE PRIVATE TV - WILDEARTH TPT+ TRACE AFRICA AFRIQUE VOIR+ @@ -147,7 +142,6 @@ M7 RTB 3 TV AL HOUDA - JES TV SUNNA TV ZARMA TAURARUWA FOR YOU TV @@ -155,7 +149,6 @@ TRACE MBOA SUN+ TV TV+ AFRIQUE - LPC NOLLYWOOD TV RTI2 TV TOGO @@ -170,18 +163,18 @@ CONGO 26 ISHUSHO TV MRTV - SHIF TV + CHIF TV GC7 GC2 GC6 ESPERANCE TV BUJA TV AL JAZEERA ENG - BET ENG + BET (ENG) UNIVERSAL GC1 SHADOW TV - CANAL+ ELLES + C+ MAGIC PARAMOUNT NETWORK SS FOOTBALL PLUS HD SS FOOTBALL HD @@ -206,7 +199,6 @@ BBLACK AFRICA TELE FONTAINE VIE CNN - TLC CARTOON NETWORK CARTOONITO BOOMERANG @@ -217,11 +209,9 @@ RTB 3 dupli TVCA RTB dupli - TOZALI TV LUMEN CHRISTI PRC JESUS 24 TV - SUNNA TV CH3 CH4 PARLEMENT TV @@ -233,17 +223,30 @@ BCN TV BRIK TV AL NASSR + BENIN TV ALAFIA + ACTIVATION NETFLIX + DNTV + AFRICA MAGIC HAUSA + AFRICA MAGIC YORUBA + MAISHA MAGIC EAST + MAISHA MAGIC PLUS + TEST AFRIQUE + MIEUX + EUROPE 2 POP TV GULLI AFRICA NOVELAS TV + TRACE IVOIRE PACIS TV MY MEDIA PRIME SCIENCE ET VIE TV ENGLISH CLUB TV + ZEE ALWAN FASHION AFRICA TV SEN TV ASONGA TV DIGITAL CONGO TELE 50 + SS WWE DRTV TV MAURITANIE IMPACT TV @@ -252,15 +255,24 @@ BUSINESS 24 CANAL+ SPORT 4 CANAL+ SPORT 5 + VOIR+ RDC ZEE MAGIC ORTM2 EVASION TV RTD + GOLF+ HD + LOVE NATURE CANAL+ FAMILY OUEST ONE TV + CNEWS PRIME + EUROPE 1 TV + AES TV HD + MAISHA MAGIC BONGO + NATIONAL GEOGRAPHIC ENG + STUDIO UNIVERSAL SSM TV MCR TV - OMEGA TV + SUPERSPORT ACTION AFRICANEWS E-TELEVISION ESPACE TV @@ -278,12 +290,11 @@ TREK J-ONE BANTAMBA TV - TRACE MZIKI CNBC AFRICA WALF TV LTM MEDI1 TV - CH1 + CNEWS PRIME IVOIRE TV Music UNIVERS TV MIRACLE TV+ @@ -313,7 +324,7 @@ MUSEUM TV CANAL 2 MOVIES EMCI - CH2 + EUROPE 1 TV A+ IVOIRE Antenne VISION 4 RCA AREWA 24 @@ -331,13 +342,11 @@ TM1 TOUTE L HISTOIRE PSTV - FARIN WATA KC2 TV1 TV O FLASH TV ISANGO STAR TV - GENESIS TV BTN TV CARTOON NETWORK Africa SA TNT Africa @@ -352,7 +361,7 @@ LCA RENOUVEAU TV RTDS - E! ENG + BRAVO ENG TELEMUNDO AFRICA MAGIC EPIC ZEE WORLD @@ -361,7 +370,7 @@ AFRICA MAGIC SHOWCASE MNET MOVIES 3 MNET MOVIES 4 - DISCOVER CHANNEL ENG + DISCOVERY CHANNEL ENG SS EPL SS LA LIGA CANAL 3 BURKINA @@ -375,9 +384,7 @@ TVC DOUNIA BONFEREY - SUNNA TV TVGE - CAPITAL SANTE TV MIKUBA TV LUDIKIDS OI VIXEN diff --git a/sites/canalplus.com/canalplus.com_sl.channels.xml b/sites/canalplus.com/canalplus.com_sl.channels.xml index 666af5c7d..1318dc4e3 100644 --- a/sites/canalplus.com/canalplus.com_sl.channels.xml +++ b/sites/canalplus.com/canalplus.com_sl.channels.xml @@ -22,7 +22,6 @@ BOSOLO TV RTCE MALAIKA TV - HK6 HERITAGE TV E! Bukedde TV @@ -35,8 +34,6 @@ France 2 INT MANGAS RTB ZENITH - HOPE TV - RTNK MEZZO HOREB TV MTV France @@ -55,13 +52,12 @@ AFRIKINFO TV EVANGILE TV REFLET TV + TRACE CHRISTMAS TOUBA TV TELEMUSIK SENEGAL MOURCHID TV - TELE-ECOLE AL MOURIDIYYAH TV MALIKIA TV - CANAL EDUCATION FULBE TF1 KAYES TV @@ -69,6 +65,7 @@ TMC SEGOU TV SUNNA TV SAVANA + CANAL+ CAN GO TV HUSTLER HD TROPIC TV @@ -80,11 +77,9 @@ GALAXIE TELE FRANCE 24 BALAFON TV - TAMBARIN HAUSA TV DASH TV BETV HTV BURUNDI - TPMP RTB 2STV ISIBO TV @@ -121,8 +116,8 @@ TELE CONGO BENIN TV HD RTNC + CANAL+ CAN IVOIRE PRIVATE TV - WILDEARTH TPT+ TRACE AFRICA AFRIQUE VOIR+ @@ -147,7 +142,6 @@ M7 RTB 3 TV AL HOUDA - JES TV SUNNA TV ZARMA TAURARUWA FOR YOU TV @@ -155,7 +149,6 @@ TRACE MBOA SUN+ TV TV+ AFRIQUE - LPC NOLLYWOOD TV RTI2 TV TOGO @@ -170,18 +163,18 @@ CONGO 26 ISHUSHO TV MRTV - SHIF TV + CHIF TV GC7 GC2 GC6 ESPERANCE TV BUJA TV AL JAZEERA ENG - BET ENG + BET (ENG) UNIVERSAL GC1 SHADOW TV - CANAL+ ELLES + C+ MAGIC PARAMOUNT NETWORK SS FOOTBALL PLUS HD SS FOOTBALL HD @@ -206,7 +199,6 @@ BBLACK AFRICA TELE FONTAINE VIE CNN - TLC CARTOON NETWORK CARTOONITO BOOMERANG @@ -217,11 +209,9 @@ RTB 3 dupli TVCA RTB dupli - TOZALI TV LUMEN CHRISTI PRC JESUS 24 TV - SUNNA TV CH3 CH4 PARLEMENT TV @@ -233,17 +223,30 @@ BCN TV BRIK TV AL NASSR + BENIN TV ALAFIA + ACTIVATION NETFLIX + DNTV + AFRICA MAGIC HAUSA + AFRICA MAGIC YORUBA + MAISHA MAGIC EAST + MAISHA MAGIC PLUS + TEST AFRIQUE + MIEUX + EUROPE 2 POP TV GULLI AFRICA NOVELAS TV + TRACE IVOIRE PACIS TV MY MEDIA PRIME SCIENCE ET VIE TV ENGLISH CLUB TV + ZEE ALWAN FASHION AFRICA TV SEN TV ASONGA TV DIGITAL CONGO TELE 50 + SS WWE DRTV TV MAURITANIE IMPACT TV @@ -252,15 +255,24 @@ BUSINESS 24 CANAL+ SPORT 4 CANAL+ SPORT 5 + VOIR+ RDC ZEE MAGIC ORTM2 EVASION TV RTD + GOLF+ HD + LOVE NATURE CANAL+ FAMILY OUEST ONE TV + CNEWS PRIME + EUROPE 1 TV + AES TV HD + MAISHA MAGIC BONGO + NATIONAL GEOGRAPHIC ENG + STUDIO UNIVERSAL SSM TV MCR TV - OMEGA TV + SUPERSPORT ACTION AFRICANEWS E-TELEVISION ESPACE TV @@ -278,12 +290,11 @@ TREK J-ONE BANTAMBA TV - TRACE MZIKI CNBC AFRICA WALF TV LTM MEDI1 TV - CH1 + CNEWS PRIME IVOIRE TV Music UNIVERS TV MIRACLE TV+ @@ -313,7 +324,7 @@ MUSEUM TV CANAL 2 MOVIES EMCI - CH2 + EUROPE 1 TV A+ IVOIRE Antenne VISION 4 RCA AREWA 24 @@ -331,13 +342,11 @@ TM1 TOUTE L HISTOIRE PSTV - FARIN WATA KC2 TV1 TV O FLASH TV ISANGO STAR TV - GENESIS TV BTN TV CARTOON NETWORK Africa SA TNT Africa @@ -352,7 +361,7 @@ LCA RENOUVEAU TV RTDS - E! ENG + BRAVO ENG TELEMUNDO AFRICA MAGIC EPIC ZEE WORLD @@ -361,7 +370,7 @@ AFRICA MAGIC SHOWCASE MNET MOVIES 3 MNET MOVIES 4 - DISCOVER CHANNEL ENG + DISCOVERY CHANNEL ENG SS EPL SS LA LIGA CANAL 3 BURKINA @@ -375,9 +384,7 @@ TVC DOUNIA BONFEREY - SUNNA TV TVGE - CAPITAL SANTE TV MIKUBA TV LUDIKIDS OI VIXEN diff --git a/sites/canalplus.com/canalplus.com_sn.channels.xml b/sites/canalplus.com/canalplus.com_sn.channels.xml index 029c8a124..b709453d3 100644 --- a/sites/canalplus.com/canalplus.com_sn.channels.xml +++ b/sites/canalplus.com/canalplus.com_sn.channels.xml @@ -22,7 +22,6 @@ BOSOLO TV RTCE MALAIKA TV - HK6 HERITAGE TV E! Bukedde TV @@ -35,8 +34,6 @@ France 2 INT MANGAS RTB ZENITH - HOPE TV - RTNK MEZZO HOREB TV MTV France @@ -55,13 +52,12 @@ AFRIKINFO TV EVANGILE TV REFLET TV + TRACE CHRISTMAS TOUBA TV TELEMUSIK SENEGAL MOURCHID TV - TELE-ECOLE AL MOURIDIYYAH TV MALIKIA TV - CANAL EDUCATION FULBE TF1 KAYES TV @@ -69,6 +65,7 @@ TMC SEGOU TV SUNNA TV SAVANA + CANAL+ CAN GO TV HUSTLER HD TROPIC TV @@ -80,13 +77,10 @@ GALAXIE TELE FRANCE 24 BALAFON TV - TAMBARIN HAUSA TV DASH TV BETV HTV BURUNDI - TPMP RTB - 2STV ISIBO TV CANAL+ SPORT 2 CANAL+ CINEMA CENTRE @@ -121,8 +115,8 @@ TELE CONGO BENIN TV HD RTNC + CANAL+ CAN IVOIRE PRIVATE TV - WILDEARTH TPT+ TRACE AFRICA AFRIQUE VOIR+ @@ -147,7 +141,6 @@ M7 RTB 3 TV AL HOUDA - JES TV SUNNA TV ZARMA TAURARUWA FOR YOU TV @@ -155,7 +148,6 @@ TRACE MBOA SUN+ TV TV+ AFRIQUE - LPC NOLLYWOOD TV RTI2 TV TOGO @@ -170,18 +162,18 @@ CONGO 26 ISHUSHO TV MRTV - SHIF TV + CHIF TV GC7 GC2 GC6 ESPERANCE TV BUJA TV AL JAZEERA ENG - BET ENG + BET (ENG) UNIVERSAL GC1 SHADOW TV - CANAL+ ELLES + C+ MAGIC PARAMOUNT NETWORK SS FOOTBALL PLUS HD SS FOOTBALL HD @@ -206,7 +198,6 @@ BBLACK AFRICA TELE FONTAINE VIE CNN - TLC CARTOON NETWORK CARTOONITO BOOMERANG @@ -217,11 +208,9 @@ RTB 3 dupli TVCA RTB dupli - TOZALI TV LUMEN CHRISTI PRC JESUS 24 TV - SUNNA TV CH3 CH4 PARLEMENT TV @@ -233,17 +222,30 @@ BCN TV BRIK TV AL NASSR + BENIN TV ALAFIA + ACTIVATION NETFLIX + DNTV + AFRICA MAGIC HAUSA + AFRICA MAGIC YORUBA + MAISHA MAGIC EAST + MAISHA MAGIC PLUS + TEST AFRIQUE + MIEUX + EUROPE 2 POP TV GULLI AFRICA NOVELAS TV + TRACE IVOIRE PACIS TV MY MEDIA PRIME SCIENCE ET VIE TV ENGLISH CLUB TV + ZEE ALWAN FASHION AFRICA TV SEN TV ASONGA TV DIGITAL CONGO TELE 50 + SS WWE DRTV TV MAURITANIE IMPACT TV @@ -252,15 +254,24 @@ BUSINESS 24 CANAL+ SPORT 4 CANAL+ SPORT 5 + VOIR+ RDC ZEE MAGIC ORTM2 EVASION TV RTD + GOLF+ HD + LOVE NATURE CANAL+ FAMILY OUEST ONE TV + CNEWS PRIME + EUROPE 1 TV + AES TV HD + MAISHA MAGIC BONGO + NATIONAL GEOGRAPHIC ENG + STUDIO UNIVERSAL SSM TV MCR TV - OMEGA TV + SUPERSPORT ACTION AFRICANEWS E-TELEVISION ESPACE TV @@ -278,12 +289,11 @@ TREK J-ONE BANTAMBA TV - TRACE MZIKI CNBC AFRICA WALF TV LTM MEDI1 TV - CH1 + CNEWS PRIME IVOIRE TV Music UNIVERS TV MIRACLE TV+ @@ -313,7 +323,7 @@ MUSEUM TV CANAL 2 MOVIES EMCI - CH2 + EUROPE 1 TV A+ IVOIRE Antenne VISION 4 RCA AREWA 24 @@ -331,13 +341,11 @@ TM1 TOUTE L HISTOIRE PSTV - FARIN WATA KC2 TV1 TV O FLASH TV ISANGO STAR TV - GENESIS TV BTN TV CARTOON NETWORK Africa SA TNT Africa @@ -352,7 +360,7 @@ LCA RENOUVEAU TV RTDS - E! ENG + BRAVO ENG TELEMUNDO AFRICA MAGIC EPIC ZEE WORLD @@ -361,7 +369,7 @@ AFRICA MAGIC SHOWCASE MNET MOVIES 3 MNET MOVIES 4 - DISCOVER CHANNEL ENG + DISCOVERY CHANNEL ENG SS EPL SS LA LIGA CANAL 3 BURKINA @@ -375,9 +383,7 @@ TVC DOUNIA BONFEREY - SUNNA TV TVGE - CAPITAL SANTE TV MIKUBA TV LUDIKIDS OI VIXEN @@ -389,4 +395,5 @@ ECCLESIA TV SOS DOCTEUR TV CANAL+ DOCS + 2STV diff --git a/sites/canalplus.com/canalplus.com_td.channels.xml b/sites/canalplus.com/canalplus.com_td.channels.xml index 1f75ec53d..9e4d672f1 100644 --- a/sites/canalplus.com/canalplus.com_td.channels.xml +++ b/sites/canalplus.com/canalplus.com_td.channels.xml @@ -22,7 +22,6 @@ BOSOLO TV RTCE MALAIKA TV - HK6 HERITAGE TV E! Bukedde TV @@ -35,8 +34,6 @@ France 2 INT MANGAS RTB ZENITH - HOPE TV - RTNK MEZZO HOREB TV MTV France @@ -55,13 +52,12 @@ AFRIKINFO TV EVANGILE TV REFLET TV + TRACE CHRISTMAS TOUBA TV TELEMUSIK SENEGAL MOURCHID TV - TELE-ECOLE AL MOURIDIYYAH TV MALIKIA TV - CANAL EDUCATION FULBE TF1 KAYES TV @@ -69,6 +65,7 @@ TMC SEGOU TV SUNNA TV SAVANA + CANAL+ CAN GO TV HUSTLER HD TROPIC TV @@ -80,11 +77,9 @@ GALAXIE TELE FRANCE 24 BALAFON TV - TAMBARIN HAUSA TV DASH TV BETV HTV BURUNDI - TPMP RTB 2STV ISIBO TV @@ -121,8 +116,8 @@ TELE CONGO BENIN TV HD RTNC + CANAL+ CAN IVOIRE PRIVATE TV - WILDEARTH TPT+ TRACE AFRICA AFRIQUE VOIR+ @@ -147,7 +142,6 @@ M7 RTB 3 TV AL HOUDA - JES TV SUNNA TV ZARMA TAURARUWA FOR YOU TV @@ -155,7 +149,6 @@ TRACE MBOA SUN+ TV TV+ AFRIQUE - LPC NOLLYWOOD TV RTI2 TV TOGO @@ -170,18 +163,18 @@ CONGO 26 ISHUSHO TV MRTV - SHIF TV + CHIF TV GC7 GC2 GC6 ESPERANCE TV BUJA TV AL JAZEERA ENG - BET ENG + BET (ENG) UNIVERSAL GC1 SHADOW TV - CANAL+ ELLES + C+ MAGIC PARAMOUNT NETWORK SS FOOTBALL PLUS HD SS FOOTBALL HD @@ -206,7 +199,6 @@ BBLACK AFRICA TELE FONTAINE VIE CNN - TLC CARTOON NETWORK CARTOONITO BOOMERANG @@ -217,11 +209,9 @@ RTB 3 dupli TVCA RTB dupli - TOZALI TV LUMEN CHRISTI PRC JESUS 24 TV - SUNNA TV CH3 CH4 PARLEMENT TV @@ -233,17 +223,30 @@ BCN TV BRIK TV AL NASSR + BENIN TV ALAFIA + ACTIVATION NETFLIX + DNTV + AFRICA MAGIC HAUSA + AFRICA MAGIC YORUBA + MAISHA MAGIC EAST + MAISHA MAGIC PLUS + TEST AFRIQUE + MIEUX + EUROPE 2 POP TV GULLI AFRICA NOVELAS TV + TRACE IVOIRE PACIS TV MY MEDIA PRIME SCIENCE ET VIE TV ENGLISH CLUB TV + ZEE ALWAN FASHION AFRICA TV SEN TV ASONGA TV DIGITAL CONGO TELE 50 + SS WWE DRTV TV MAURITANIE IMPACT TV @@ -252,15 +255,24 @@ BUSINESS 24 CANAL+ SPORT 4 CANAL+ SPORT 5 + VOIR+ RDC ZEE MAGIC ORTM2 EVASION TV RTD + GOLF+ HD + LOVE NATURE CANAL+ FAMILY OUEST ONE TV + CNEWS PRIME + EUROPE 1 TV + AES TV HD + MAISHA MAGIC BONGO + NATIONAL GEOGRAPHIC ENG + STUDIO UNIVERSAL SSM TV MCR TV - OMEGA TV + SUPERSPORT ACTION AFRICANEWS E-TELEVISION ESPACE TV @@ -278,12 +290,11 @@ TREK J-ONE BANTAMBA TV - TRACE MZIKI CNBC AFRICA WALF TV LTM MEDI1 TV - CH1 + CNEWS PRIME IVOIRE TV Music UNIVERS TV MIRACLE TV+ @@ -313,7 +324,7 @@ MUSEUM TV CANAL 2 MOVIES EMCI - CH2 + EUROPE 1 TV A+ IVOIRE Antenne VISION 4 RCA AREWA 24 @@ -331,13 +342,11 @@ TM1 TOUTE L HISTOIRE PSTV - FARIN WATA KC2 TV1 TV O FLASH TV ISANGO STAR TV - GENESIS TV BTN TV CARTOON NETWORK Africa SA TNT Africa @@ -352,7 +361,7 @@ LCA RENOUVEAU TV RTDS - E! ENG + BRAVO ENG TELEMUNDO AFRICA MAGIC EPIC ZEE WORLD @@ -361,7 +370,7 @@ AFRICA MAGIC SHOWCASE MNET MOVIES 3 MNET MOVIES 4 - DISCOVER CHANNEL ENG + DISCOVERY CHANNEL ENG SS EPL SS LA LIGA CANAL 3 BURKINA @@ -375,9 +384,7 @@ TVC DOUNIA BONFEREY - SUNNA TV TVGE - CAPITAL SANTE TV MIKUBA TV LUDIKIDS OI VIXEN diff --git a/sites/canalplus.com/canalplus.com_tg.channels.xml b/sites/canalplus.com/canalplus.com_tg.channels.xml index 1051587d7..693b0fe3f 100644 --- a/sites/canalplus.com/canalplus.com_tg.channels.xml +++ b/sites/canalplus.com/canalplus.com_tg.channels.xml @@ -22,7 +22,6 @@ BOSOLO TV RTCE MALAIKA TV - HK6 HERITAGE TV E! Bukedde TV @@ -35,8 +34,6 @@ France 2 INT MANGAS RTB ZENITH - HOPE TV - RTNK MEZZO HOREB TV MTV France @@ -55,13 +52,12 @@ AFRIKINFO TV EVANGILE TV REFLET TV + TRACE CHRISTMAS TOUBA TV TELEMUSIK SENEGAL MOURCHID TV - TELE-ECOLE AL MOURIDIYYAH TV MALIKIA TV - CANAL EDUCATION FULBE TF1 KAYES TV @@ -69,6 +65,7 @@ TMC SEGOU TV SUNNA TV SAVANA + CANAL+ CAN GO TV HUSTLER HD TROPIC TV @@ -80,11 +77,9 @@ GALAXIE TELE FRANCE 24 BALAFON TV - TAMBARIN HAUSA TV DASH TV BETV HTV BURUNDI - TPMP RTB 2STV ISIBO TV @@ -121,8 +116,8 @@ TELE CONGO BENIN TV HD RTNC + CANAL+ CAN IVOIRE PRIVATE TV - WILDEARTH TPT+ TRACE AFRICA AFRIQUE VOIR+ @@ -147,7 +142,6 @@ M7 RTB 3 TV AL HOUDA - JES TV SUNNA TV ZARMA TAURARUWA FOR YOU TV @@ -155,7 +149,6 @@ TRACE MBOA SUN+ TV TV+ AFRIQUE - LPC NOLLYWOOD TV RTI2 TV TOGO @@ -170,18 +163,18 @@ CONGO 26 ISHUSHO TV MRTV - SHIF TV + CHIF TV GC7 GC2 GC6 ESPERANCE TV BUJA TV AL JAZEERA ENG - BET ENG + BET (ENG) UNIVERSAL GC1 SHADOW TV - CANAL+ ELLES + C+ MAGIC PARAMOUNT NETWORK SS FOOTBALL PLUS HD SS FOOTBALL HD @@ -206,7 +199,6 @@ BBLACK AFRICA TELE FONTAINE VIE CNN - TLC CARTOON NETWORK CARTOONITO BOOMERANG @@ -217,11 +209,9 @@ RTB 3 dupli TVCA RTB dupli - TOZALI TV LUMEN CHRISTI PRC JESUS 24 TV - SUNNA TV CH3 CH4 PARLEMENT TV @@ -233,17 +223,30 @@ BCN TV BRIK TV AL NASSR + BENIN TV ALAFIA + ACTIVATION NETFLIX + DNTV + AFRICA MAGIC HAUSA + AFRICA MAGIC YORUBA + MAISHA MAGIC EAST + MAISHA MAGIC PLUS + TEST AFRIQUE + MIEUX + EUROPE 2 POP TV GULLI AFRICA NOVELAS TV + TRACE IVOIRE PACIS TV MY MEDIA PRIME SCIENCE ET VIE TV ENGLISH CLUB TV + ZEE ALWAN FASHION AFRICA TV SEN TV ASONGA TV DIGITAL CONGO TELE 50 + SS WWE DRTV TV MAURITANIE IMPACT TV @@ -252,15 +255,24 @@ BUSINESS 24 CANAL+ SPORT 4 CANAL+ SPORT 5 + VOIR+ RDC ZEE MAGIC ORTM2 EVASION TV RTD + GOLF+ HD + LOVE NATURE CANAL+ FAMILY OUEST ONE TV + CNEWS PRIME + EUROPE 1 TV + AES TV HD + MAISHA MAGIC BONGO + NATIONAL GEOGRAPHIC ENG + STUDIO UNIVERSAL SSM TV MCR TV - OMEGA TV + SUPERSPORT ACTION AFRICANEWS E-TELEVISION ESPACE TV @@ -278,12 +290,11 @@ TREK J-ONE BANTAMBA TV - TRACE MZIKI CNBC AFRICA WALF TV LTM MEDI1 TV - CH1 + CNEWS PRIME IVOIRE TV Music UNIVERS TV MIRACLE TV+ @@ -313,7 +324,7 @@ MUSEUM TV CANAL 2 MOVIES EMCI - CH2 + EUROPE 1 TV A+ IVOIRE Antenne VISION 4 RCA AREWA 24 @@ -331,13 +342,11 @@ TM1 TOUTE L HISTOIRE PSTV - FARIN WATA KC2 TV1 TV O FLASH TV ISANGO STAR TV - GENESIS TV BTN TV CARTOON NETWORK Africa SA TNT Africa @@ -352,7 +361,7 @@ LCA RENOUVEAU TV RTDS - E! ENG + BRAVO ENG TELEMUNDO AFRICA MAGIC EPIC ZEE WORLD @@ -361,7 +370,7 @@ AFRICA MAGIC SHOWCASE MNET MOVIES 3 MNET MOVIES 4 - DISCOVER CHANNEL ENG + DISCOVERY CHANNEL ENG SS EPL SS LA LIGA CANAL 3 BURKINA @@ -375,9 +384,7 @@ TVC DOUNIA BONFEREY - SUNNA TV TVGE - CAPITAL SANTE TV MIKUBA TV LUDIKIDS OI VIXEN diff --git a/sites/canalplus.com/canalplus.com_wf.channels.xml b/sites/canalplus.com/canalplus.com_wf.channels.xml index 1d8574e10..331766fed 100644 --- a/sites/canalplus.com/canalplus.com_wf.channels.xml +++ b/sites/canalplus.com/canalplus.com_wf.channels.xml @@ -16,8 +16,8 @@ CANAL+ CINEMA(S) PUNCH TV CNN - DAZN 1 - DAZN 2 + CNEWS PRIME + EUROPE 1 TV DAZN 3 CANAL+ SPORT HD DAZN 4 @@ -36,10 +36,14 @@ CINEWESTERN CINE NANAR VOIR+ + CANAL+ GRAND ECRAN HD EUROSPORT 1 EUROSPORT 2 + T18 + NOVO19 FRANCE 3 FRANCE 5 + MIEUX CNEWS INFOSPORT+ LCI @@ -100,7 +104,7 @@ TCM CINEMA CANAL+ KIDS HD GOLF+ - CHERIE 25 + RMC LIFE CARTOON NETWORK BOOMERANG CANAL+ SPORT 360 @@ -134,7 +138,7 @@ BFM BUSINESS RMC STORY SPORT EN FRANCE - CSTAR HITS + EUROPE 2 POP TV CANAL+ DOCS ABC AUSTRALIA HISTOIRE TV 24/24 diff --git a/sites/canalplus.com/canalplus.com_yt.channels.xml b/sites/canalplus.com/canalplus.com_yt.channels.xml index b6d15f987..d6d982569 100644 --- a/sites/canalplus.com/canalplus.com_yt.channels.xml +++ b/sites/canalplus.com/canalplus.com_yt.channels.xml @@ -25,12 +25,8 @@ CINE+ FAMILY CINE+ FRISSON OCS HD - CH1 - CH2 - CH3 - CH4 + EUROPE 1 TV COMEDIE+ - CH5 E! ENTERTAINMENT EQUIDIA SS EPL @@ -42,7 +38,7 @@ AL JAZEERA ENG FRANCE 3 FRANCE 5 - BET ENG + BET (ENG) CNEWS TELEMUNDO DSTV INFOSPORT+ @@ -59,7 +55,7 @@ RFM TV NICKELODEON JR (DSTV) MEZZO - E! Entertainment DSTV + BRAVO MTV France AFR MAGIC EPIC TFX @@ -79,22 +75,30 @@ BEIN SPORTS MAX 10 CANAL+ FAMILY CANAL+ POP - CANAL+ ELLES + CANAL+ MAGIC MANGAS PASSION BOLLYWOOD REUNION 1ERE TVM 2 MALAGASY TV - FREE TV + KULTURA TV REAL TV MADI TV TEVA TF1 + T18 + MIEUX TMC + CANAL+ CAN HD + EUROPE 2 POP TV + ACTIVATION NETFLIX TRACE URBAN + SS WWE HD TV BREIZH TV5 MONDE (Afrique) + NATIONAL GEOGRAPHIC ENG TV5 MONDE FR + STUDIO UNIVERSAL XXL FRANCE 24 BEIN SPORTS 1 HD @@ -155,7 +159,7 @@ GOLF+ HD A+ NOLLYWOOD TV france - CHERIE 25 + RMC LIFE CARTOON NETWORK BOOMERANG CANAL+ SPORT 360 HD @@ -174,6 +178,7 @@ TEST C+ ACTION CENTRE MUSEUM TV + MBS DREAMIN WARNER TV WARNER TV NEXT diff --git a/sites/canalplus.com/readme.md b/sites/canalplus.com/readme.md index 8d3e72892..b0e0f9cf2 100644 --- a/sites/canalplus.com/readme.md +++ b/sites/canalplus.com/readme.md @@ -1,47 +1,49 @@ # canalplus.com -| Country | Code | URL | -| ------------------------ | ---- | ------------------------------------------ | -| Andorra | `ad` | https://www.canalplus.com/ad/programme-tv/ | -| Benign | `bj` | https://www.canalplus.com/bj/programme-tv/ | -| Burkina Faso | `bf` | https://www.canalplus.com/bf/programme-tv/ | -| Burundi | `bi` | https://www.canalplus.com/bi/programme-tv/ | -| Cabo Verde | `cv` | https://www.canalplus.com/cv/programme-tv/ | -| Cameroon | `cm` | https://www.canalplus.com/cm/programme-tv/ | -| Central African Republic | `cf` | https://www.canalplus.com/cf/programme-tv/ | -| Chad | `td` | https://www.canalplus.com/td/programme-tv/ | -| Congo | `cg` | https://www.canalplus.com/cg/programme-tv/ | -| Djibouti | `dj` | https://www.canalplus.com/dj/programme-tv/ | -| DRC | `cd` | https://www.canalplus.com/cd/programme-tv/ | -| Equatorial Guinea | `gp` | https://www.canalplus.com/gp/programme-tv/ | -| France | `fr` | https://www.canalplus.com/programme-tv/ | -| French Guiana | `gf` | https://www.canalplus.com/gf/programme-tv/ | -| French Polynesia | `pf` | https://www.canalplus.com/pf/programme-tv/ | -| Gabon | `ga` | https://www.canalplus.com/ga/programme-tv/ | -| Gambia | `gm` | https://www.canalplus.com/gm/programme-tv/ | -| Ghana | `gh` | https://www.canalplus.com/gh/programme-tv/ | -| Guinea-Bissau | `gw` | https://www.canalplus.com/gw/programme-tv/ | -| Guinea | `gn` | https://www.canalplus.com/gn/programme-tv/ | -| Haiti | `ht` | https://www.canalplus.com/ht/programme-tv/ | -| Ivory Coast | `ci` | https://www.canalplus.com/ci/programme-tv/ | -| Madagascar | `mg` | https://www.canalplus.com/mg/programme-tv/ | -| Mali | `ml` | https://www.canalplus.com/ml/programme-tv/ | -| Martinique | `mq` | https://www.canalplus.com/mq/programme-tv/ | -| Mauritania | `mr` | https://www.canalplus.com/mr/programme-tv/ | -| Mauritius | `mu` | https://www.canalplus.com/mu/programme-tv/ | -| Mayotte | `yt` | https://www.canalplus.com/yt/programme-tv/ | -| New Caledonia | `nc` | https://www.canalplus.com/nc/programme-tv/ | -| Niger | `ne` | https://www.canalplus.com/ne/programme-tv/ | -| Poland | `pl` | https://www.canalplus.com/pl/programme-tv/ | -| Rwanda | `rw` | https://www.canalplus.com/rw/programme-tv/ | -| Réunion | `re` | https://www.canalplus.com/re/programme-tv/ | -| Saint Barthélemy | `bl` | https://www.canalplus.com/bl/programme-tv/ | -| Saint-Martin | `mf` | https://www.canalplus.com/mf/programme-tv/ | -| Senegal | `sn` | https://www.canalplus.com/sn/programme-tv/ | -| Sierra Leone | `sl` | https://www.canalplus.com/sl/programme-tv/ | -| Switzerland | `ch` | https://www.canalplus.com/ch/programme-tv/ | -| Togo | `tg` | https://www.canalplus.com/tg/programme-tv/ | -| Wallis and Futuna | `wf` | https://www.canalplus.com/wf/programme-tv/ | +| Country | Code | URL | +| ------------------------ | -------- | ------------------------------------------ | +| Andorra | `ad` | https://www.canalplus.com/ad/programme-tv/ | +| Benin | `bj` | https://www.canalplus.com/bj/programme-tv/ | +| Burkina Faso | `bf` | https://www.canalplus.com/bf/programme-tv/ | +| Burundi | `bi` | https://www.canalplus.com/bi/programme-tv/ | +| Cabo Verde | `cv` | https://www.canalplus.com/cv/programme-tv/ | +| Cameroon | `cm` | https://www.canalplus.com/cm/programme-tv/ | +| Central African Republic | `cf` | https://www.canalplus.com/cf/programme-tv/ | +| Chad | `td` | https://www.canalplus.com/td/programme-tv/ | +| Congo | `cg` | https://www.canalplus.com/cg/programme-tv/ | +| Djibouti | `dj` | https://www.canalplus.com/dj/programme-tv/ | +| DRC | `cd` | https://www.canalplus.com/cd/programme-tv/ | +| Equatorial Guinea | `gp` | https://www.canalplus.com/gp/programme-tv/ | +| France | `fr` | https://www.canalplus.com/programme-tv/ | +| French Guiana | `gf` | https://www.canalplus.com/gf/programme-tv/ | +| French Polynesia | `pf` | https://www.canalplus.com/pf/programme-tv/ | +| Gabon | `ga` | https://www.canalplus.com/ga/programme-tv/ | +| Gambia | `gm` | https://www.canalplus.com/gm/programme-tv/ | +| Ghana | `gh` | https://www.canalplus.com/gh/programme-tv/ | +| Guinea-Bissau | `gw` | https://www.canalplus.com/gw/programme-tv/ | +| Guinea | `gn` | https://www.canalplus.com/gn/programme-tv/ | +| Haiti | `ht` | https://www.canalplus.com/ht/programme-tv/ | +| Ivory Coast | `ci` | https://www.canalplus.com/ci/programme-tv/ | +| Italy | `it` | | +| Madagascar | `mg` | https://www.canalplus.com/mg/programme-tv/ | +| Madagascar (alternative) | `mg_alt` | https://www.canalplus.com/mg/programme-tv/ | +| Mali | `ml` | https://www.canalplus.com/ml/programme-tv/ | +| Martinique | `mq` | https://www.canalplus.com/mq/programme-tv/ | +| Mauritania | `mr` | https://www.canalplus.com/mr/programme-tv/ | +| Mauritius | `mu` | https://www.canalplus.com/mu/programme-tv/ | +| Mayotte | `yt` | https://www.canalplus.com/yt/programme-tv/ | +| New Caledonia | `nc` | https://www.canalplus.com/nc/programme-tv/ | +| Niger | `ne` | https://www.canalplus.com/ne/programme-tv/ | +| Poland | `pl` | https://www.canalplus.com/pl/program-tv/ | +| Rwanda | `rw` | https://www.canalplus.com/rw/programme-tv/ | +| Réunion | `re` | https://www.canalplus.com/re/programme-tv/ | +| Saint Barthélemy | `bl` | https://www.canalplus.com/bl/programme-tv/ | +| Saint-Martin | `mf` | https://www.canalplus.com/mf/programme-tv/ | +| Senegal | `sn` | https://www.canalplus.com/sn/programme-tv/ | +| Sierra Leone | `sl` | https://www.canalplus.com/sl/programme-tv/ | +| Switzerland | `ch` | https://www.canalplus.com/ch/programme-tv/ | +| Togo | `tg` | https://www.canalplus.com/tg/programme-tv/ | +| Wallis and Futuna | `wf` | https://www.canalplus.com/wf/programme-tv/ | ### Download the guide From f90b742d3d7d3e409fc8fa0487b47e1a109c06bb Mon Sep 17 00:00:00 2001 From: theofficialomega <30985701+BellezaEmporium@users.noreply.github.com> Date: Thu, 16 Apr 2026 10:26:39 +0200 Subject: [PATCH 14/92] fix skyperfectv.co.jp --- .../skyperfectv.co.jp.channels.xml | 263 +++++++++--------- .../skyperfectv.co.jp.config.js | 7 +- 2 files changed, 136 insertions(+), 134 deletions(-) diff --git a/sites/skyperfectv.co.jp/skyperfectv.co.jp.channels.xml b/sites/skyperfectv.co.jp/skyperfectv.co.jp.channels.xml index 4275324a0..a6c790fa3 100644 --- a/sites/skyperfectv.co.jp/skyperfectv.co.jp.channels.xml +++ b/sites/skyperfectv.co.jp/skyperfectv.co.jp.channels.xml @@ -1,137 +1,134 @@ BS10プレミアム - フェニックステレビ(鳳凰衛視) - 囲碁・将棋チャンネル - ショップチャンネル - QVC(キューヴィーシー) - ジュエリー☆GSTV - セレクトショッピング - ベターライフチャンネル - 大人のイキヌキ!ヌーヴェルパラダイス - パチンコ★パチスロTV! - パチ・スロ サイトセブンTV - 釣りビジョンHD - 寄席チャンネル - 旅チャンネル - 鉄道チャンネル - SORA―お天気チャンネル― - BBCニュース - CNNj(国際ニュースCNN24時間チャンネル) - CNN U.S. - 中国テレビ★大富チャンネル - 日経CNBC - 日テレNEWS24 - TBS NEWS - スポーツライブ+ - スカチャン1 - スポーツライブ+ 2 - スカチャン5 - スカチャン6 - スカチャン7 - スカチャン8 - スカチャン9 - スカチャン10 - スカチャン11 - スカパー!プロモ599 - FIGHTING TV サムライ - ゴルフネットワーク - GAORA SPORTS - J SPORTS 1 - J SPORTS 2 - J SPORTS 4 - J SPORTS 3 - スカイA - 日テレジータス - 刺激ストロングチャンネル - テレ朝チャンネル1 - テレ朝チャンネル2 - フジテレビNEXT ライブ・プレミアム - フジテレビONE スポーツ・バラエティ - フジテレビTWO ドラマ・アニメ - TBSチャンネル1 最新ドラマ・音楽・映画 - TBSチャンネル2 名作ドラマ・スポーツ・アニメ - エンタメ~テレ☆シネドラバラエティ - 日テレプラス ドラマ・アニメ・音楽ライブ - ディズニー・チャンネル - WOWOWプライム - WOWOWライブ - WOWOWシネマ - BS10プレミアム - 衛星劇場 - 東映チャンネル - WOWOWプラス 映画・ドラマ・スポーツ・音楽 - ザ・シネマ - ムービープラス - 映画・チャンネルNECO - 日本映画専門チャンネル - V☆パラダイス - エキサイティング・グランプリ - ミュージック・エア - ミュージック・ジャパンTV - MTV - MUSIC ON! TV(エムオン!) - 音楽・ライブ! スペースシャワーTV - 歌謡ポップスチャンネル - ミュージック・グラフィティTV - スーパー!ドラマTV #海外ドラマ☆エンタメ - ミステリーチャンネル - アクションチャンネル - Dlife(ディーライフ) - 女性チャンネル♪LaLa TV - アジアドラマチックTV(アジドラ) - KBS World 韓流専門チャンネル - KNTV - Mnet - MONDO TV - ファミリー劇場 - ホームドラマチャンネル 韓流・時代劇・国内ドラマ - 時代劇専門チャンネル - アイドル専門チャンネルPigoo - チャンネル銀河 歴史ドラマ・サスペンス・日本のうた - ダンスチャンネル by エンタメ~テレ - アニメシアターX(AT-X) - カートゥーン ネットワーク 海外アニメ国内アニメ - キッズステーション テレビアニメ・劇場版・OVA - アニマックス - ディズニージュニア - ヒストリーチャンネル 日本・世界の歴史&エンタメ - ナショナル ジオグラフィック - ディスカバリーチャンネル - アニマルプラネット - 南関東地方競馬チャンネル - JLC680 - JLC681 - JLC682 - JLC683 - JLC684 - グリーンチャンネル - グリーンチャンネル2 - SPEEDチャンネル(競輪ライブ) 690 - SPEEDチャンネル(競輪ライブ) 691 - SPEEDチャンネル(競輪ライブ) 692 - SPEEDチャンネル(競輪ライブ) 693 - SPEEDチャンネル(競輪ライブ) 694 - SPEEDチャンネル(競輪ライブ) 695 - SPEEDチャンネル(競輪ライブ) 696 - 地方競馬ナイン 701 - 地方競馬ナイン 702 - 地方競馬ナイン 703 - kmpチャンネル - プレイボーイ チャンネル - レインボーチャンネル - ミッドナイト・ブルー - パラダイステレビ - チェリーボム - VENUS - バニラスカイチャンネル - エンタ!959 - Zaptv - ダイナマイトTV - AV王 - レッドチェリー - Splash - フラミンゴ + フェニックステレビ(鳳凰衛視) + 囲碁・将棋チャンネル + ショップチャンネル + QVC(キューヴィーシー) + ジュエリー☆GSTV + セレクトショッピング + ベターライフチャンネル + 大人のイキヌキ!ヌーヴェルパラダイス + パチンコ★パチスロTV! + パチ・スロ サイトセブンTV + 釣りビジョンHD + 寄席チャンネル + 旅チャンネル + 鉄道チャンネル + BBCニュース + CNNj(国際ニュースCNN24時間チャンネル) + CNN U.S. + 中国テレビ★大富チャンネル + 日経CNBC + 日テレNEWS24 + TBS NEWS + スポーツライブ+ + スカチャン1 + スポーツライブ+ 2 + スカチャン5 + スカチャン6 + スカチャン7 + スカチャン8 + スカチャン9 + スカチャン10 + スカチャン11 + FIGHTING TV サムライ + ゴルフネットワーク + GAORA SPORTS + J SPORTS 1 + J SPORTS 2 + J SPORTS 4 + J SPORTS 3 + スカイA + 日テレジータス + 刺激ストロングチャンネル + テレ朝チャンネル1 + テレ朝チャンネル2 + フジテレビNEXT ライブ・プレミアム + フジテレビONE スポーツ・バラエティ + フジテレビTWO ドラマ・アニメ + TBSチャンネル1 最新ドラマ・音楽・映画 + TBSチャンネル2 名作ドラマ・スポーツ・アニメ + メ~テレNEXT ドラマ・エンタメ・ダンス + 日テレプラス ドラマ・アニメ・音楽ライブ + ディズニー・チャンネル + WOWOWプライム + WOWOWライブ + WOWOWシネマ + BS10プレミアム + 衛星劇場 + 東映チャンネル + WOWOWプラス 映画・ドラマ・スポーツ・音楽 + ザ・シネマ + ムービープラス + 映画・チャンネルNECO + 日本映画専門チャンネル + V☆パラダイス + エキサイティング・グランプリ + ミュージック・エア + ミュージック・ジャパンTV + MTV + MUSIC ON! TV(エムオン!) + 音楽・ライブ! スペースシャワーTV + 歌謡ポップスチャンネル + ミュージック・グラフィティTV + スーパー!ドラマTV #海外ドラマ☆エンタメ + ミステリーチャンネル + アクションチャンネル + Dlife(ディーライフ) + LaLa TV 韓・華・ライフスタイル + アジアドラマチックTV(アジドラ) + KBS World 韓流専門チャンネル + KNTV + Mnet + MONDO TV + ファミリー劇場 + ホームドラマチャンネル 韓流・時代劇・国内ドラマ + 時代劇専門チャンネル + アイドル専門チャンネルPigoo + チャンネル銀河 歴史ドラマ・サスペンス・日本のうた + アニメシアターX(AT-X) + カートゥーン ネットワーク 海外アニメ国内アニメ + キッズステーション テレビアニメ・劇場版・OVA + アニマックス + ディズニージュニア + ヒストリーチャンネル 日本・世界の歴史&エンタメ + ナショナル ジオグラフィック + ディスカバリーチャンネル + アニマルプラネット + 南関東地方競馬チャンネル + JLC680 + JLC681 + JLC682 + JLC683 + JLC684 + グリーンチャンネル + グリーンチャンネル2 + SPEEDチャンネル(競輪ライブ) 690 + SPEEDチャンネル(競輪ライブ) 691 + SPEEDチャンネル(競輪ライブ) 692 + SPEEDチャンネル(競輪ライブ) 693 + SPEEDチャンネル(競輪ライブ) 694 + SPEEDチャンネル(競輪ライブ) 695 + SPEEDチャンネル(競輪ライブ) 696 + 地方競馬ナイン 701 + 地方競馬ナイン 702 + 地方競馬ナイン 703 + kmpチャンネル + プレイボーイ チャンネル + レインボーチャンネル + ミッドナイト・ブルー + パラダイステレビ + チェリーボム + VENUS + バニラスカイチャンネル + エンタ!959 + Zaptv + ダイナマイトTV + AV王 + レッドチェリー + Splash + フラミンゴ アクションチャンネル アニマルプラネット アニマックス @@ -146,7 +143,7 @@ ディズニージュニア Dlife(ディーライフ) 衛星劇場 - エンタメ~テレ☆シネドラバラエティ + メ~テレNEXT ドラマ・エンタメ・ダンス ファミリー劇場 BS釣りビジョン フジテレビNEXT ライブ・プレミアム @@ -166,7 +163,7 @@ 歌謡ポップスチャンネル KBS World 韓流専門チャンネル キッズステーション テレビアニメ・劇場版・OVA - 女性チャンネル♪LaLa TV + LaLa TV 韓・華・ライフスタイル Mnet MONDO TV ムービープラス diff --git a/sites/skyperfectv.co.jp/skyperfectv.co.jp.config.js b/sites/skyperfectv.co.jp/skyperfectv.co.jp.config.js index a064ba55c..4c0708d33 100644 --- a/sites/skyperfectv.co.jp/skyperfectv.co.jp.config.js +++ b/sites/skyperfectv.co.jp/skyperfectv.co.jp.config.js @@ -95,12 +95,17 @@ const exported = { const href = $el.find('a.p-channel__link').attr('href') || $el.find('a').first().attr('href') const idFromDom = normalizeText($el.find('.p-channel__id').first().text()) - const id = idFromDom || getChannelIdFromHref(href) + let id = idFromDom || getChannelIdFromHref(href) const name = normalizeText($el.find('.p-channel__name').first().text()) + // Premium channels have an additional "Ch." added, which needs to be removed in order for it to work. if (!id || !name) return + if (type === 'premium') { + id = id.replace(/^Ch\.\s*/i, '') + } + const site_id = `${type}_${id}` if (!map.has(site_id)) { map.set(site_id, { site_id, name, lang: 'ja' }) From ce691529a58dbf9d4776563aea6dec8cd0914c06 Mon Sep 17 00:00:00 2001 From: "iptv-bot[bot]" <84861620+iptv-bot[bot]@users.noreply.github.com> Date: Fri, 17 Apr 2026 01:56:01 +0000 Subject: [PATCH 15/92] [Bot] Update SITES.md Committed by [iptv-bot](https://github.com/apps/iptv-bot) via [update](https://github.com/iptv-org/epg/actions/runs/24543731042) workflow. --- SITES.md | 36 ++++++++++++++++++------------------ 1 file changed, 18 insertions(+), 18 deletions(-) diff --git a/SITES.md b/SITES.md index 2e37c9bd3..f4e0f8914 100644 --- a/SITES.md +++ b/SITES.md @@ -24,10 +24,10 @@ beinsports.com13081🟢 berrymedia.co.kr55🟢 cableplus.com.uy17144🟢 - canalplus.com13118179🟢https://github.com/iptv-org/epg/issues/3002 + canalplus.com13940172🟢 cgates.lt4729🟢 chada.ma11🟢 - chaines-tv.orange.fr373328🟢 + chaines-tv.orange.fr397327🟢 claro.com.br2730🟢https://github.com/iptv-org/epg/issues/2988 clarotvmais.com.br1580🟢 clickthecity.com3230🟢 @@ -35,7 +35,7 @@ cosmotetv.gr1090🟢 ctc.ru11🟢 cubmu.com140104🟢 - cyta.com.cy1190🔴https://github.com/iptv-org/epg/issues/3037 + cyta.com.cy1170🟢 dens.tv5448🟢 derana.lk11🟢 digea.gr880🟢 @@ -65,7 +65,7 @@ freeview.co.uk166104🟢 frikanalen.no11🟢 galamtv.kz2722🟢 - gatotv.com475360🟢 + gatotv.com477342🟢 getafteritmedia.com55🟢 gigatv.3bbtv.co.th7937🟢 go3.ee1470🟢 @@ -75,7 +75,7 @@ guidetnt.com6968🟢 horizon.tv184172🟢 hoy.tv31🟢 - i.mjh.nz108582935🟢 + i.mjh.nz108702935🟢 i24news.tv43🟢 iltalehti.fi1470🟢 indihometv.com128122🟢 @@ -95,7 +95,7 @@ mediaklikk.hu88🟢 mediasetinfinity.mediaset.it1313🟢 melita.com127110🟢 - meo.pt212199🟢https://github.com/iptv-org/epg/issues/3022 + meo.pt212199🟢 meuguia.tv10296🟢 mewatch.sg2524🟢 mi.tv2084614🟢 @@ -103,7 +103,7 @@ moji.id11🟢 mojmaxtv.hrvatskitelekom.hr2430🟢 mon-programme-tv.be11194🟢 - movistarplus.es1780🟢 + movistarplus.es1380🟢 mtel.ba5010🟢 mts.rs4570🟢 mujtvprogram.cz213190🟢 @@ -135,7 +135,7 @@ programacion-tv.elpais.com195101🟢 programacion.tcc.com.uy14955🟢 programetv.ro331223🟢 - programme-tv.net295196🟢 + programme-tv.net299171🟢 programme-tv.vini.pf582🟢 programme.tvb.com86🟢 programtv.onet.pl590356🟢 @@ -152,24 +152,24 @@ s.mxtv.jp22🟢 sat.tv30308249🟢 shahid.mbc.net205172🟢 - siba.com.co9895🟢 - singtel.com155113🟢 + siba.com.co24488🟢 + singtel.com139100🟢 sjonvarp.is1313🟢 - sky.co.nz11193🟢 - sky.com542489🟡https://github.com/iptv-org/epg/issues/2763 + sky.co.nz9188🟢 + sky.com533471🟡https://github.com/iptv-org/epg/issues/2763 sky.de7474🟢 skylife.co.kr2570🟢 - skyperfectv.co.jp137129🟢 + skyperfectv.co.jp19667🟢 snrt.ma117🟢 sporttv.pt99🟢 starhubtvplus.com232208🟢https://github.com/iptv-org/epg/issues/2965 startimestv.com7758🟢 - stod2.is128🟢 streamingtvguides.com30661🟢 superguidatv.it204159🟢 + syn.is90🟢 taiwanplus.com11🟢 tapdmv.com397🟢 - tataplay.com1103747🟢 + tataplay.com1097727🟢 telebilbao.es11🟢 teleboy.ch3250🟢 telenet.tv26091🟢 @@ -178,7 +178,7 @@ telsu.fi1715🟢 thesportplus.com30🟢 tivie.id4542🟢 - tivu.tv6964🟢 + tivu.tv809🟢 toonamiaftermath.com11🟢 turksatkablo.com.tr177118🟢 tv-programme.telecablesat.fr268248🟢 @@ -235,10 +235,10 @@ watch.whaletvplus.com364166🟢 watchyour.tv4024🟢 wavve.com7776🟢 - web.magentatv.de348226🟢https://github.com/iptv-org/epg/issues/2966 + web.magentatv.de337216🟢https://github.com/iptv-org/epg/issues/2966 webtv.delta.nl247204🟢 webtv.sk1860🟢 - winplay.co22🟢https://github.com/iptv-org/epg/issues/3003 + winplay.co30🟢 worldfishingnetwork.com11🟢 www3.nhk.or.jp11🟢 xem.kplus.vn770🟢 From 0937dc97faab180387f0b2b9b110f8837fe6a52a Mon Sep 17 00:00:00 2001 From: "iptv-bot[bot]" <84861620+iptv-bot[bot]@users.noreply.github.com> Date: Sat, 18 Apr 2026 01:47:35 +0000 Subject: [PATCH 16/92] [Bot] Update SITES.md Committed by [iptv-bot](https://github.com/apps/iptv-bot) via [update](https://github.com/iptv-org/epg/actions/runs/24594148491) workflow. --- SITES.md | 1 - 1 file changed, 1 deletion(-) diff --git a/SITES.md b/SITES.md index f4e0f8914..d4ca1c038 100644 --- a/SITES.md +++ b/SITES.md @@ -82,7 +82,6 @@ ionplustv.com11🟢 ipko.tv194151🟢 jiotv.com10940🟢 - kan.org.il33🔴https://github.com/iptv-org/epg/issues/2273 knr.gl11🟢 kvf.fo11🟢 m.tv.sms.cz1027449🟢 From 50f472e6298ab3c19a81bbadf53e1ad7ceb8efea Mon Sep 17 00:00:00 2001 From: freearhey <7253922+freearhey@users.noreply.github.com> Date: Sat, 18 Apr 2026 07:31:00 +0300 Subject: [PATCH 17/92] Create program_1.json --- sites/foxtel.com.au/__data__/program_1.json | 1 + 1 file changed, 1 insertion(+) create mode 100644 sites/foxtel.com.au/__data__/program_1.json diff --git a/sites/foxtel.com.au/__data__/program_1.json b/sites/foxtel.com.au/__data__/program_1.json new file mode 100644 index 000000000..d6a87495c --- /dev/null +++ b/sites/foxtel.com.au/__data__/program_1.json @@ -0,0 +1 @@ +{"event":{"eventId":174868153,"programTitle":"Hawaii Five-0","channelId":548,"scheduledDate":1776488400000,"duration":60,"episodeTitle":"Hana Komo Pae","audio":"DIGITAL","parentalRating":"M","seriesLink":"27163","widescreenInd":false,"closedCaptionInd":true,"subtitledInd":false,"premiereInd":false,"hdInd":true,"actors":["Alex O'Loughlin","Scott Caan","Grace Park","Masi Oka","Chi McBride"],"mergedSynopsis":"(v) S7, Ep8. Hana Komo Pae: While Danny chaperones Grace's winter formal, terrorists seize the venue and hold everyone hostage in order to kidnap a diplomat's son.","seriesNumber":"7","episodeNumber":"8","genreCode":"02","subGenreCode":"5","webLinks":[{"title":"IMDB","url":"http://www.imdb.com/title/tt1600194/"}],"yearOfProduction":"2016","consumerAdvice":"v","countryOfOrigin":"United States","language":"English","displaySepNum":true,"versionNum":2588617,"shortSynopsis":"While Danny chaperones Grace's winter formal, terrorists seize the venue and hold everyone hostage in order to kidnap a diplomat's son.","imageUrl":"https://images1.resources.foxtel.com.au/store2/mount1/16/3/61x61.jpg?maxheight=213&limit=536db4ca3ea686d56daed0b545cc1b4faaeec82f","genre":"Entertainment","subGenre":"Drama","placeholder":false,"isMovie":false,"adultsOnly":false},"alternateEpisodes":[{"eventId":174868152,"programTitle":"Hawaii Five-0","channelId":548,"scheduledDate":1776484800000,"duration":60,"episodeTitle":"Ka Makuahine A Me Ke Keikikane","audio":"DIGITAL","parentalRating":"M","seriesLink":"27163","widescreenInd":false,"closedCaptionInd":true,"subtitledInd":false,"premiereInd":false,"hdInd":true,"actors":["Alex O'Loughlin","Scott Caan","Grace Park","Masi Oka","Chi McBride"],"mergedSynopsis":"(v) S7, Ep7. Ka Makuahine A Me Ke Keikikane: McGarrett's long-lost love, Catherine, returns to Hawaii unexpectedly to tell Steve that Doris is in trouble and needs his help to be rescued.","seriesNumber":"7","episodeNumber":"7","genreCode":"02","subGenreCode":"5","webLinks":[{"title":"IMDB","url":"http://www.imdb.com/title/tt1600194/"}],"yearOfProduction":"2016","consumerAdvice":"v","countryOfOrigin":"United States","language":"English","displaySepNum":true,"versionNum":2588617,"shortSynopsis":"McGarrett's long-lost love, Catherine, returns to Hawaii unexpectedly to tell Steve that Doris is in trouble and needs his help to be rescued.","imageUrl":"https://images1.resources.foxtel.com.au/store2/mount1/16/3/8w048.jpg?maxheight=213&limit=b456324f41f17d5a7726f94ef2b1ae1e8102a7dd","genre":"Entertainment","subGenre":"Drama","placeholder":false,"isMovie":false,"adultsOnly":false},{"eventId":174869805,"programTitle":"Hawaii Five-0","channelId":714,"scheduledDate":1776492000000,"duration":60,"episodeTitle":"Ka Makuahine A Me Ke Keikikane","audio":"DIGITAL","parentalRating":"M","seriesLink":"26816","widescreenInd":true,"closedCaptionInd":true,"subtitledInd":false,"premiereInd":false,"hdInd":false,"actors":["Alex O'Loughlin","Scott Caan","Grace Park","Masi Oka","Chi McBride"],"mergedSynopsis":"(v) S7, Ep7. Ka Makuahine A Me Ke Keikikane: McGarrett's long-lost love, Catherine, returns to Hawaii unexpectedly to tell Steve that Doris is in trouble and needs his help to be rescued.","seriesNumber":"7","episodeNumber":"7","genreCode":"02","subGenreCode":"5","webLinks":[{"title":"IMDB","url":"http://www.imdb.com/title/tt1600194/"}],"yearOfProduction":"2016","consumerAdvice":"v","countryOfOrigin":"United States","language":"English","displaySepNum":true,"versionNum":2588617,"shortSynopsis":"McGarrett's long-lost love, Catherine, returns to Hawaii unexpectedly to tell Steve that Doris is in trouble and needs his help to be rescued.","imageUrl":"https://images1.resources.foxtel.com.au/store2/mount1/16/3/8w048.jpg?maxheight=213&limit=b456324f41f17d5a7726f94ef2b1ae1e8102a7dd","genre":"Entertainment","subGenre":"Drama","placeholder":false,"isMovie":false,"adultsOnly":false},{"eventId":174868167,"programTitle":"Hawaii Five-0","channelId":548,"scheduledDate":1776542700000,"duration":55,"episodeTitle":"Elua La MA Nowemapa","audio":"DIGITAL","parentalRating":"MA","seriesLink":"61248","widescreenInd":false,"closedCaptionInd":true,"subtitledInd":false,"premiereInd":false,"hdInd":true,"actors":["Alex O'Loughlin","Scott Caan","Grace Park","Masi Oka","Chi McBride"],"mergedSynopsis":"(v) S7, Ep9. Elua La MA Nowemapa: A conspiracy theorist with compelling information that JFK's own cabinet planned his assassination is murdered. Jerry tells the story of the Honolulu Conference on November 20, 1963.","seriesNumber":"7","episodeNumber":"9","genreCode":"02","subGenreCode":"5","webLinks":[{"title":"IMDB","url":"http://www.imdb.com/title/tt1600194/"}],"yearOfProduction":"2016","consumerAdvice":"v","countryOfOrigin":"United States","language":"English","displaySepNum":true,"versionNum":2588617,"shortSynopsis":"A conspiracy theorist with compelling information that JFK's own cabinet planned his assassination is murdered. Jerry tells the story of the Honolulu Conference on November 20, 1963.","imageUrl":"https://images1.resources.foxtel.com.au/store2/mount1/16/3/6ww1q.jpg?maxheight=213&limit=dad1d2722cbb5b3ca8fb073fd3ed81387072fa7c","genre":"Entertainment","subGenre":"Drama","placeholder":false,"isMovie":false,"adultsOnly":false},{"eventId":174868168,"programTitle":"Hawaii Five-0","channelId":548,"scheduledDate":1776546000000,"duration":55,"episodeTitle":"Ka Luhi","audio":"DIGITAL","parentalRating":"M","seriesLink":"61248","widescreenInd":false,"closedCaptionInd":true,"subtitledInd":false,"premiereInd":false,"hdInd":true,"actors":["Alex O'Loughlin","Scott Caan","Grace Park","Masi Oka","Chi McBride"],"mergedSynopsis":"(a) S7, Ep10. Ka Luhi: Five-0 investigates the 10-year-old cold case of a missing teen when a boy suffering from PTSD undergoes hypnosis and realises he may have witnessed her murder.","extendedSynopsis":"Five-0 investigates the 10-year-old cold case of a missing teen when a boy suffering from PTSD undergoes hypnosis and realizes he may have witnessed her murder. Also, Danny's sister, Bridget (guest star Missy Peregrym), visits Oahu for a business conference, and he suspects that she may be getting too close to a co-worker.","seriesNumber":"7","episodeNumber":"10","genreCode":"02","subGenreCode":"5","webLinks":[{"title":"IMDB","url":"http://www.imdb.com/title/tt1600194/"}],"yearOfProduction":"2016","consumerAdvice":"a","countryOfOrigin":"United States","language":"English","displaySepNum":true,"versionNum":2588617,"shortSynopsis":"Five-0 investigates the 10-year-old cold case of a missing teen when a boy suffering from PTSD undergoes hypnosis and realises he may have witnessed her murder.","imageUrl":"https://images1.resources.foxtel.com.au/store2/mount1/16/3/a15do.jpg?maxheight=213&limit=de8d920233e635e513b4c4d62d2651041a5aad41","genre":"Entertainment","subGenre":"Drama","placeholder":false,"isMovie":false,"adultsOnly":false},{"eventId":174869820,"programTitle":"Hawaii Five-0","channelId":714,"scheduledDate":1776549900000,"duration":55,"episodeTitle":"Elua La MA Nowemapa","audio":"DIGITAL","parentalRating":"MA","seriesLink":"60751","widescreenInd":true,"closedCaptionInd":true,"subtitledInd":false,"premiereInd":false,"hdInd":false,"actors":["Alex O'Loughlin","Scott Caan","Grace Park","Masi Oka","Chi McBride"],"mergedSynopsis":"(v) S7, Ep9. Elua La MA Nowemapa: A conspiracy theorist with compelling information that JFK's own cabinet planned his assassination is murdered. Jerry tells the story of the Honolulu Conference on November 20, 1963.","seriesNumber":"7","episodeNumber":"9","genreCode":"02","subGenreCode":"5","webLinks":[{"title":"IMDB","url":"http://www.imdb.com/title/tt1600194/"}],"yearOfProduction":"2016","consumerAdvice":"v","countryOfOrigin":"United States","language":"English","displaySepNum":true,"versionNum":2588617,"shortSynopsis":"A conspiracy theorist with compelling information that JFK's own cabinet planned his assassination is murdered. Jerry tells the story of the Honolulu Conference on November 20, 1963.","imageUrl":"https://images1.resources.foxtel.com.au/store2/mount1/16/3/6ww1q.jpg?maxheight=213&limit=dad1d2722cbb5b3ca8fb073fd3ed81387072fa7c","genre":"Entertainment","subGenre":"Drama","placeholder":false,"isMovie":false,"adultsOnly":false}],"alternateTimes":[{"eventId":174869806,"programTitle":"Hawaii Five-0","channelId":714,"scheduledDate":1776495600000,"duration":60,"episodeTitle":"Hana Komo Pae","audio":"DIGITAL","parentalRating":"M","seriesLink":"26816","widescreenInd":true,"closedCaptionInd":true,"subtitledInd":false,"premiereInd":false,"hdInd":false,"actors":["Alex O'Loughlin","Scott Caan","Grace Park","Masi Oka","Chi McBride"],"mergedSynopsis":"(v) S7, Ep8. Hana Komo Pae: While Danny chaperones Grace's winter formal, terrorists seize the venue and hold everyone hostage in order to kidnap a diplomat's son.","seriesNumber":"7","episodeNumber":"8","genreCode":"02","subGenreCode":"5","webLinks":[{"title":"IMDB","url":"http://www.imdb.com/title/tt1600194/"}],"yearOfProduction":"2016","consumerAdvice":"v","countryOfOrigin":"United States","language":"English","displaySepNum":true,"versionNum":2588617,"shortSynopsis":"While Danny chaperones Grace's winter formal, terrorists seize the venue and hold everyone hostage in order to kidnap a diplomat's son.","genre":"Entertainment","subGenre":"Drama","placeholder":false,"isMovie":false,"adultsOnly":false}],"moreLikeThis":[{"eventId":174868177,"programTitle":"S.W.A.T.","channelId":548,"scheduledDate":1776581400000,"duration":55,"episodeTitle":"Allegiance","audio":"digital","parentalRating":"M","seriesLink":"661813","widescreenInd":true,"closedCaptionInd":true,"subtitledInd":false,"premiereInd":false,"hdInd":false,"seriesNumber":"7","episodeNumber":"12","genreCode":"2","yearOfProduction":"2024","displaySepNum":false,"imageUrl":"https://images1.resources.foxtel.com.au/store2/mount1/16/4/c16y1k.jpg?maxheight=213&limit=b4951eec0ab9c5f7b60f76796cd1a0f85f74a3ae","placeholder":false,"isMovie":false,"adultsOnly":false},{"eventId":174868297,"programTitle":"Blue Bloods","channelId":548,"scheduledDate":1776992700000,"duration":55,"episodeTitle":"My Brother's Keeper","audio":"digital","parentalRating":"M","seriesLink":"655050","widescreenInd":true,"closedCaptionInd":true,"subtitledInd":false,"premiereInd":false,"hdInd":false,"seriesNumber":"9","episodeNumber":"14","genreCode":"2","yearOfProduction":"2018","displaySepNum":false,"imageUrl":"https://images1.resources.foxtel.com.au/store2/mount1/16/3/94d0l.jpg?maxheight=213&limit=a0057b16e5035cde9b5596bc38f8da86d3a03b25","placeholder":false,"isMovie":false,"adultsOnly":false},{"eventId":175562561,"programTitle":"Blue Bloods","channelId":548,"scheduledDate":1776896400000,"duration":55,"episodeTitle":"My Funny Valentine","audio":"digital","parentalRating":"M","seriesLink":"661918","widescreenInd":true,"closedCaptionInd":true,"subtitledInd":false,"premiereInd":false,"hdInd":false,"seriesNumber":"1","episodeNumber":"14","genreCode":"2","yearOfProduction":"2010","displaySepNum":false,"imageUrl":"https://images1.resources.foxtel.com.au/store2/mount1/16/3/a8rgy.jpg?maxheight=213&limit=ce300c06bc798e07bb73469cad41d2973a1df57d","placeholder":false,"isMovie":false,"adultsOnly":false},{"eventId":174645222,"programTitle":"NCIS: New Orleans","channelId":555,"scheduledDate":1777067400000,"duration":45,"episodeTitle":"Sins Of The Father","audio":"digital","parentalRating":"M","seriesLink":"656048","widescreenInd":true,"closedCaptionInd":true,"subtitledInd":false,"premiereInd":false,"hdInd":false,"seriesNumber":"4","episodeNumber":"8","genreCode":"2","yearOfProduction":"2018","displaySepNum":false,"imageUrl":"https://images1.resources.foxtel.com.au/store2/mount1/16/3/8w3zb.jpg?maxheight=213&limit=1f5ab1440dfe8b43a201fe1179b0cb413f687499","placeholder":false,"isMovie":false,"adultsOnly":false},{"eventId":174583439,"programTitle":"New York Undercover","channelId":21,"scheduledDate":1776522600000,"duration":60,"episodeTitle":"Missing","audio":"stereo","parentalRating":"M","seriesLink":"656671","widescreenInd":true,"closedCaptionInd":true,"subtitledInd":false,"premiereInd":false,"hdInd":false,"seriesNumber":"1","episodeNumber":"8","genreCode":"2","yearOfProduction":"1995","displaySepNum":false,"imageUrl":"https://images1.resources.foxtel.com.au/store1/mount1/HAL/2024/dsww1k.jpg?maxheight=213&limit=a7094fd3e1958dd63f792fa806c088343516620c","placeholder":false,"isMovie":false,"adultsOnly":false},{"eventId":176072598,"programTitle":"Blue Lights","scheduledDate":1777471200000,"duration":65,"episodeTitle":"The Code","audio":"stereo","parentalRating":"M","seriesLink":"H662705","widescreenInd":true,"closedCaptionInd":true,"subtitledInd":false,"premiereInd":false,"hdInd":false,"seriesNumber":"1","episodeNumber":"1","genreCode":"2","yearOfProduction":"2023","displaySepNum":false,"imageUrl":"https://images1.resources.foxtel.com.au/store2/mount1/28/81f989a1-55b8-51d1-af69-9ae8b062888b.jpeg?maxheight=213&limit=db8a3607b491dda2a00f29f016c4ef4cc2672d94","placeholder":false,"isMovie":false,"adultsOnly":false},{"eventId":175562587,"programTitle":"Blue Bloods","channelId":548,"scheduledDate":1776723600000,"duration":55,"episodeTitle":"Family Ties","audio":"digital","parentalRating":"M","seriesLink":"661918","widescreenInd":true,"closedCaptionInd":true,"subtitledInd":false,"premiereInd":false,"hdInd":false,"seriesNumber":"1","episodeNumber":"12","genreCode":"2","yearOfProduction":"2010","displaySepNum":false,"imageUrl":"https://images1.resources.foxtel.com.au/store2/mount1/16/3/b1azh.jpg?maxheight=213&limit=5eaa1d8f60af8373ccc4af84c91f0f2414e9eaed","placeholder":false,"isMovie":false,"adultsOnly":false},{"eventId":174645192,"programTitle":"CSI: NY","channelId":555,"scheduledDate":1776975600000,"duration":45,"episodeTitle":"Pay Up","audio":"stereo","parentalRating":"M","seriesLink":"651367","widescreenInd":true,"closedCaptionInd":true,"subtitledInd":false,"premiereInd":false,"hdInd":false,"seriesNumber":"5","episodeNumber":"25","genreCode":"2","yearOfProduction":"2008","displaySepNum":false,"imageUrl":"https://images1.resources.foxtel.com.au/store1/mount1/PAR/2021/I@092798_L.jpg?maxheight=213&limit=5537e09f68de97335b852b9ceb7bf89ceca60ecc","placeholder":false,"isMovie":false,"adultsOnly":false}],"userDevices":[]} \ No newline at end of file From 927e66ab0d57e2ad105535cc099d2eb916ec3bdc Mon Sep 17 00:00:00 2001 From: freearhey <7253922+freearhey@users.noreply.github.com> Date: Sat, 18 Apr 2026 07:31:02 +0300 Subject: [PATCH 18/92] Update content.html --- sites/foxtel.com.au/__data__/content.html | 9748 ++++++++++----------- 1 file changed, 4874 insertions(+), 4874 deletions(-) diff --git a/sites/foxtel.com.au/__data__/content.html b/sites/foxtel.com.au/__data__/content.html index 88e604efd..a093c292c 100644 --- a/sites/foxtel.com.au/__data__/content.html +++ b/sites/foxtel.com.au/__data__/content.html @@ -1,4874 +1,4874 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - TV Guide - - - - - - - - - - - - - - - - - - - - -
-
- - - - - - - - -
-
-
- - - - - -
- -
-
-
-
-
-
-
-
-
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
-
- -
-
- -
- - -
- - - - - - - - - - - - - -
-
-
-
-
-
-
-
-
-
-
-
- - - - - - - - - - - - - - - - -
- -
-
-
-
-
- -

TV GUIDE

-
-
- - - - -
- - -
-
- - - -
-
-
-
- -
-
-
- - - - - - - - -
- -
- -
-
-
- - FULL GUIDE - -
- -
- -
-
-
- - - - -
- - 11:40pm Monday - -
-
- -
-
- The Equalizer - -
- - - S1 - , - - - - Ep2 - , - - - Glory - - (M) - -
-
-
-
-
-
- - The Equalizer Image - -
-
-
-
-
- - - -
- - 12:30am - -
-
- -
-
- Emergence - -
- - - S1 - , - - - - Ep13 - , - - - Killshot (2) - - (M) - -
-
-
-
-
-
- - Emergence Image - -
-
-
-
-
- - - -
- - 1:30am - -
-
- -
-
- TV Shop - Home Shopping - -
- - Perfect Fit Bed - - (G) - -
-
-
-
-
-
- - TV Shop - Home Shopping Image - -
-
-
-
-
- - - -
- - 2:00am - -
-
- -
-
- TV Shop - Home Shopping - -
- - Total Gym FIT - - (G) - -
-
-
-
-
-
- - TV Shop - Home Shopping Image - -
-
-
-
-
- - - -
- - 2:30am - -
-
- -
-
- Global Shop - -
- - Copper Chef Titan Pan - - (G) - -
-
-
-
-
-
- - Global Shop Image - -
-
-
-
-
- - - -
- - 3:00am - -
-
- -
-
- TV Shop - Home Shopping - -
- - TEBO Massage Chair - - (G) - -
-
-
-
-
-
- - TV Shop - Home Shopping Image - -
-
-
-
-
- - - -
- - 3:30am - -
-
- -
-
- TV Shop - Home Shopping - -
- - Transforma Ladders - - (G) - -
-
-
-
-
-
- - TV Shop - Home Shopping Image - -
-
-
-
-
- - - -
- - 4:00am - -
-
- -
-
- Believer's Voice of Victory - -
- - God's WORD Is Filled With Power - - (PG) - -
-
-
-
-
-
- - Believer's Voice of Victory Image - -
-
-
-
-
- - - -
- - 4:30am - -
-
- -
-
- A Current Affair - -
- - - -
-
-
-
-
-
- - A Current Affair Image - -
-
-
-
-
- - - -
- - 5:00am - -
-
- -
-
- Nine News Early Edition - -
- - - -
-
-
-
-
-
- - Nine News Early Edition Image - -
-
-
-
-
- - - -
- - 5:30am - -
-
- -
-
- Today - -
- - - S2022 - , - - - - Ep222 - - - - - -
-
-
-
-
-
- - Today Image - -
-
-
-
-
- - - -
- - 9:00am - -
-
- -
-
- Today Extra - -
- - - - (PG) - -
-
-
-
-
-
- - Today Extra Image - -
-
-
-
-
- - - -
- - 11:30am - -
-
- -
-
- Nine Morning News - -
- - - -
-
-
-
-
-
- - Nine Morning News Image - -
-
-
-
-
- - - -
- - 12:00pm - -
-
- -
-
- My Mum, Your Dad - -
- - - S1 - , - - - - Ep1 - , - - - We're Like The FBI Right Now - - (M) - -
-
-
-
-
-
- - My Mum, Your Dad Image - -
-
-
-
-
- - - -
- - 1:50pm - -
-
- -
-
- Talking Honey - -
- - - S2022 - , - - - - Ep3 - , - - - Cultural Tokenism or Awareness - - (PG) - -
-
-
-
-
-
- - Talking Honey Image - -
-
-
-
-
- - - -
- - 2:00pm - -
-
- -
-
- Pointless - -
- - - S27 - , - - - - Ep35 - - - - - - (PG) - -
-
-
-
-
-
- - Pointless Image - -
-
-
-
-
- - - -
- - 3:00pm - -
-
- -
-
- Tipping Point - -
- - - S11 - , - - - - Ep154 - - - - - - (PG) - -
-
-
-
-
-
- - Tipping Point Image - -
-
-
-
-
- - - -
- - 4:00pm - -
-
- -
-
- Nine Afternoon News - -
- - - -
-
-
-
-
-
- - Nine Afternoon News Image - -
-
-
-
-
- - - -
- - 5:00pm - -
-
- -
-
- Millionaire Hot Seat - -
- - - S2022 - , - - - - Ep2466 - - - - - - (G) - -
-
-
-
-
-
- - Millionaire Hot Seat Image - -
-
-
-
-
- - - -
- - 6:00pm - -
-
- -
-
- Nine News - -
- - - -
-
-
-
-
-
- - Nine News Image - -
-
-
-
-
- - - -
- - 7:00pm - -
-
- -
-
- A Current Affair - -
- - - -
-
-
-
-
-
- - A Current Affair Image - -
-
-
-
-
- - - -
- - 7:30pm - -
-
- -
-
- My Mum, Your Dad - -
- - - S1 - , - - - - Ep2 - , - - - This Might Get a Little Weird - - (M) - -
-
-
-
-
-
- - My Mum, Your Dad Image - -
-
-
-
-
- - - -
- - 9:10pm - -
-
- -
-
- Travel Guides - -
- - - S4 - , - - - - Ep2 - , - - - Red Centre - - (PG) - -
-
-
-
-
-
- - Travel Guides Image - -
-
-
-
-
- - - -
- - 10:10pm - -
-
- -
-
- Botched - -
- - - S6 - , - - - - Ep16 - , - - - Cross-Eyed Nips and Cartel Hips - - (M) - -
-
-
-
-
-
- - Botched Image - -
-
-
-
-
- - - -
- - 11:10pm - -
-
- -
-
- Nine News Late - -
- - - -
-
-
-
-
-
- -
-
-
-
-
- - - -
- - 11:40pm - -
-
- -
-
- Skin - -
- - - S1 - , - - - - Ep5 - - - - - - (M) - -
-
-
-
-
-
- - Skin Image - -
-
-
-
-
- - -
-
-
-
- - - - - - - - - - - - -
- -
-
-
-
-
-
-
- - - -
- - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + TV Guide + + + + + + + + + + + + + + + + + + + + +
+
+ + + + + + + + +
+
+
+ + + + + +
+ +
+
+
+
+
+
+
+
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+
+ +
+
+ +
+ + +
+ + + + + + + + + + + + + +
+
+
+
+
+
+
+
+
+
+
+
+ + + + + + + + + + + + + + + + +
+ +
+
+
+
+
+ +

TV GUIDE

+
+
+ + + + +
+ + +
+
+ + + +
+
+
+
+ +
+
+
+ + + + + + + + +
+ +
+ +
+
+
+ + FULL GUIDE + +
+ +
+ +
+
+
+ + + + +
+ + 11:40pm Monday + +
+
+ +
+
+ The Equalizer + +
+ + + S1 + , + + + + Ep2 + , + + + Glory + + (M) + +
+
+
+
+
+
+ + The Equalizer Image + +
+
+
+
+
+ + + +
+ + 12:30am + +
+
+ +
+
+ Emergence + +
+ + + S1 + , + + + + Ep13 + , + + + Killshot (2) + + (M) + +
+
+
+
+
+
+ + Emergence Image + +
+
+
+
+
+ + + +
+ + 1:30am + +
+
+ +
+
+ TV Shop - Home Shopping + +
+ + Perfect Fit Bed + + (G) + +
+
+
+
+
+
+ + TV Shop - Home Shopping Image + +
+
+
+
+
+ + + +
+ + 2:00am + +
+
+ +
+
+ TV Shop - Home Shopping + +
+ + Total Gym FIT + + (G) + +
+
+
+
+
+
+ + TV Shop - Home Shopping Image + +
+
+
+
+
+ + + +
+ + 2:30am + +
+
+ +
+
+ Global Shop + +
+ + Copper Chef Titan Pan + + (G) + +
+
+
+
+
+
+ + Global Shop Image + +
+
+
+
+
+ + + +
+ + 3:00am + +
+
+ +
+
+ TV Shop - Home Shopping + +
+ + TEBO Massage Chair + + (G) + +
+
+
+
+
+
+ + TV Shop - Home Shopping Image + +
+
+
+
+
+ + + +
+ + 3:30am + +
+
+ +
+
+ TV Shop - Home Shopping + +
+ + Transforma Ladders + + (G) + +
+
+
+
+
+
+ + TV Shop - Home Shopping Image + +
+
+
+
+
+ + + +
+ + 4:00am + +
+
+ +
+
+ Believer's Voice of Victory + +
+ + God's WORD Is Filled With Power + + (PG) + +
+
+
+
+
+
+ + Believer's Voice of Victory Image + +
+
+
+
+
+ + + +
+ + 4:30am + +
+
+ +
+
+ A Current Affair + +
+ + + +
+
+
+
+
+
+ + A Current Affair Image + +
+
+
+
+
+ + + +
+ + 5:00am + +
+
+ +
+
+ Nine News Early Edition + +
+ + + +
+
+
+
+
+
+ + Nine News Early Edition Image + +
+
+
+
+
+ + + +
+ + 5:30am + +
+
+ +
+
+ Today + +
+ + + S2022 + , + + + + Ep222 + + + + + +
+
+
+
+
+
+ + Today Image + +
+
+
+
+
+ + + +
+ + 9:00am + +
+
+ +
+
+ Today Extra + +
+ + + + (PG) + +
+
+
+
+
+
+ + Today Extra Image + +
+
+
+
+
+ + + +
+ + 11:30am + +
+
+ +
+
+ Nine Morning News + +
+ + + +
+
+
+
+
+
+ + Nine Morning News Image + +
+
+
+
+
+ + + +
+ + 12:00pm + +
+
+ +
+
+ My Mum, Your Dad + +
+ + + S1 + , + + + + Ep1 + , + + + We're Like The FBI Right Now + + (M) + +
+
+
+
+
+
+ + My Mum, Your Dad Image + +
+
+
+
+
+ + + +
+ + 1:50pm + +
+
+ +
+
+ Talking Honey + +
+ + + S2022 + , + + + + Ep3 + , + + + Cultural Tokenism or Awareness + + (PG) + +
+
+
+
+
+
+ + Talking Honey Image + +
+
+
+
+
+ + + +
+ + 2:00pm + +
+
+ +
+
+ Pointless + +
+ + + S27 + , + + + + Ep35 + + + + + + (PG) + +
+
+
+
+
+
+ + Pointless Image + +
+
+
+
+
+ + + +
+ + 3:00pm + +
+
+ +
+
+ Tipping Point + +
+ + + S11 + , + + + + Ep154 + + + + + + (PG) + +
+
+
+
+
+
+ + Tipping Point Image + +
+
+
+
+
+ + + +
+ + 4:00pm + +
+
+ +
+
+ Nine Afternoon News + +
+ + + +
+
+
+
+
+
+ + Nine Afternoon News Image + +
+
+
+
+
+ + + +
+ + 5:00pm + +
+
+ +
+
+ Millionaire Hot Seat + +
+ + + S2022 + , + + + + Ep2466 + + + + + + (G) + +
+
+
+
+
+
+ + Millionaire Hot Seat Image + +
+
+
+
+
+ + + +
+ + 6:00pm + +
+
+ +
+
+ Nine News + +
+ + + +
+
+
+
+
+
+ + Nine News Image + +
+
+
+
+
+ + + +
+ + 7:00pm + +
+
+ +
+
+ A Current Affair + +
+ + + +
+
+
+
+
+
+ + A Current Affair Image + +
+
+
+
+
+ + + +
+ + 7:30pm + +
+
+ +
+
+ My Mum, Your Dad + +
+ + + S1 + , + + + + Ep2 + , + + + This Might Get a Little Weird + + (M) + +
+
+
+
+
+
+ + My Mum, Your Dad Image + +
+
+
+
+
+ + + +
+ + 9:10pm + +
+
+ +
+
+ Travel Guides + +
+ + + S4 + , + + + + Ep2 + , + + + Red Centre + + (PG) + +
+
+
+
+
+
+ + Travel Guides Image + +
+
+
+
+
+ + + +
+ + 10:10pm + +
+
+ +
+
+ Botched + +
+ + + S6 + , + + + + Ep16 + , + + + Cross-Eyed Nips and Cartel Hips + + (M) + +
+
+
+
+
+
+ + Botched Image + +
+
+
+
+
+ + + +
+ + 11:10pm + +
+
+ +
+
+ Nine News Late + +
+ + + +
+
+
+
+
+
+ +
+
+
+
+
+ + + +
+ + 11:40pm + +
+
+ +
+
+ Skin + +
+ + + S1 + , + + + + Ep5 + + + + + + (M) + +
+
+
+
+
+
+ + Skin Image + +
+
+
+
+
+ + +
+
+
+
+ + + + + + + + + + + + +
+ +
+
+
+
+
+
+
+ + + +
+ + + From bf8f00c0d2da25be45e5752a3c76f363e89d40c9 Mon Sep 17 00:00:00 2001 From: freearhey <7253922+freearhey@users.noreply.github.com> Date: Sat, 18 Apr 2026 07:31:27 +0300 Subject: [PATCH 19/92] Update foxtel.com.au.test.js --- sites/foxtel.com.au/foxtel.com.au.test.js | 28 +++++++++++++++++++---- 1 file changed, 24 insertions(+), 4 deletions(-) diff --git a/sites/foxtel.com.au/foxtel.com.au.test.js b/sites/foxtel.com.au/foxtel.com.au.test.js index 3485c6f2a..7046fac9b 100644 --- a/sites/foxtel.com.au/foxtel.com.au.test.js +++ b/sites/foxtel.com.au/foxtel.com.au.test.js @@ -1,3 +1,4 @@ +const axios = require('axios') const { parser, url, request } = require('./foxtel.com.au.config.js') const fs = require('fs') const path = require('path') @@ -7,6 +8,23 @@ const customParseFormat = require('dayjs/plugin/customParseFormat') dayjs.extend(customParseFormat) dayjs.extend(utc) +jest.mock('axios') + +axios.get.mockImplementation(url => { + if ( + url === + 'https://www.foxtel.com.au/webepg/ws/foxtel/event/174868153?movieHeight=213&tvShowHeight=213®ionId=8336' + ) { + return Promise.resolve({ + data: JSON.parse(fs.readFileSync(path.resolve(__dirname, '__data__/program_1.json'))) + }) + } else { + return Promise.resolve({ + data: '{}' + }) + } +}) + const date = dayjs.utc('2022-11-08', 'YYYY-MM-DD').startOf('d') const channel = { site_id: 'Channel-9-Sydney/NIN', @@ -26,10 +44,10 @@ it('can generate valid request headers', () => { }) }) -it('can parse response', () => { +it('can parse response', async () => { const content = fs.readFileSync(path.resolve(__dirname, '__data__/content.html')) - let results = parser({ content }) + let results = await parser({ content }) results = results.map(p => { p.start = p.start.toJSON() p.stop = p.stop.toJSON() @@ -41,6 +59,8 @@ it('can parse response', () => { stop: '2022-11-07T13:30:00.000Z', title: 'The Equalizer', sub_title: 'Glory', + description: + "While Danny chaperones Grace's winter formal, terrorists seize the venue and hold everyone hostage in order to kidnap a diplomat's son.", image: 'https://images1.resources.foxtel.com.au/store2/mount1/16/3/69e0v.jpg?maxheight=90&limit=91aa1c7a2c485aeeba0706941f79f111adb35830', rating: { @@ -52,8 +72,8 @@ it('can parse response', () => { }) }) -it('can handle empty guide', () => { - const result = parser({ +it('can handle empty guide', async () => { + const result = await parser({ content: fs.readFileSync(path.resolve(__dirname, '__data__/no-content.html')) }) expect(result).toMatchObject([]) From 3a282f5108939990a86e912ed77328c6bbaccf35 Mon Sep 17 00:00:00 2001 From: freearhey <7253922+freearhey@users.noreply.github.com> Date: Sat, 18 Apr 2026 07:32:08 +0300 Subject: [PATCH 20/92] Update foxtel.com.au.config.js --- sites/foxtel.com.au/foxtel.com.au.config.js | 48 ++++++++++++++++++--- 1 file changed, 43 insertions(+), 5 deletions(-) diff --git a/sites/foxtel.com.au/foxtel.com.au.config.js b/sites/foxtel.com.au/foxtel.com.au.config.js index da6f04b1b..050261719 100644 --- a/sites/foxtel.com.au/foxtel.com.au.config.js +++ b/sites/foxtel.com.au/foxtel.com.au.config.js @@ -14,10 +14,11 @@ module.exports = { headers: { 'Accept-Language': 'en-US,en;', Cookie: 'AAMC_foxtel_0=REGION|7', - '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' + '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' } }, - parser: function ({ content, date }) { + async parser({ content, date }) { let programs = [] const items = parseItems(content) for (let item of items) { @@ -32,9 +33,18 @@ module.exports = { prev.stop = start } const stop = start.add(30, 'm') + + const programId = parseProgramId($item) + const details = await loadProgramDetails(programId) + let description + if (details) { + description = parseDescription(details) + } + programs.push({ title: parseTitle($item), sub_title: parseSubTitle($item), + description, image: parseImage($item), rating: parseRating($item), season: parseSeason($item), @@ -72,6 +82,34 @@ module.exports = { } } +function parseProgramId($item) { + const href = $item('*').attr('href') + + return href.split('/')[1] +} + +async function loadProgramDetails(programId) { + if (!programId) return {} + + return await axios + .get( + `https://www.foxtel.com.au/webepg/ws/foxtel/event/${programId}?movieHeight=213&tvShowHeight=213®ionId=8336`, + { + headers: { + 'sec-fetch-dest': 'empty', + 'sec-fetch-site': 'same-origin', + 'User-Agent': 'insomnia/2022.7.5' + } + } + ) + .then(r => r.data) + .catch(console.log) +} + +function parseDescription(details) { + return details?.event?.shortSynopsis +} + function parseSeason($item) { let seasonString = $item('.epg-event-description > div > abbr:nth-child(1)').attr('title') if (!seasonString) return null @@ -118,9 +156,9 @@ function parseRating($item) { return rating ? { - system: 'ACB', - value: rating - } + system: 'ACB', + value: rating + } : null } From c463e6e1fc57beb2f59dd2a42b55411ae2c0a123 Mon Sep 17 00:00:00 2001 From: freearhey <7253922+freearhey@users.noreply.github.com> Date: Sat, 18 Apr 2026 09:08:18 +0300 Subject: [PATCH 21/92] Create content.json --- sites/aljazeera.com/__data__/content.json | 1 + 1 file changed, 1 insertion(+) create mode 100644 sites/aljazeera.com/__data__/content.json diff --git a/sites/aljazeera.com/__data__/content.json b/sites/aljazeera.com/__data__/content.json new file mode 100644 index 000000000..bc87ce29d --- /dev/null +++ b/sites/aljazeera.com/__data__/content.json @@ -0,0 +1 @@ +{"data":{"post":{"title":"Schedule","id":"568783","content":"","schedule":[{"showDay":"Friday","showTimeslot":"00:00","showName":"NEWSHOUR","showDescription":"Latest news and in-depth analysis from around the world.","duration":"01:00:0","startDate":"1776384000","__typename":"Schedule"},{"showDay":"Friday","showTimeslot":"01:00","showName":"NEWSHOUR","showDescription":"Latest news and in-depth analysis from around the world.","duration":"01:00:0","startDate":"1776384000","__typename":"Schedule"},{"showDay":"Friday","showTimeslot":"02:00","showName":"NEWS 30min","showDescription":"Latest news and analysis from around the world.","duration":"00:30:0","startDate":"1776384000","__typename":"Schedule"},{"showDay":"Friday","showTimeslot":"02:30","showName":"Counting the Cost","showDescription":"From tolls to blockades - who really controls access to the Strait of Hormuz?","duration":"00:30:0","startDate":"1776384000","__typename":"Schedule"},{"showDay":"Friday","showTimeslot":"03:00","showName":"NEWSHOUR","showDescription":"Latest news and in-depth analysis from around the world.","duration":"01:00:0","startDate":"1776384000","__typename":"Schedule"},{"showDay":"Friday","showTimeslot":"04:00","showName":"NEWSHOUR","showDescription":"Latest news and in-depth analysis from around the world.","duration":"01:00:0","startDate":"1776384000","__typename":"Schedule"},{"showDay":"Friday","showTimeslot":"05:00","showName":"NEWS 30min","showDescription":"Latest news and analysis from around the world.","duration":"00:30:0","startDate":"1776384000","__typename":"Schedule"},{"showDay":"Friday","showTimeslot":"05:30","showName":"Inside Story","showDescription":"Beyond the headlines to the heart of the news of the day. Al Jazeera gets the Inside Story from some of the best minds from around the globe.","duration":"00:30:0","startDate":"1776384000","__typename":"Schedule"},{"showDay":"Friday","showTimeslot":"06:00","showName":"NEWSHOUR","showDescription":"Latest news and in-depth analysis from around the world.","duration":"01:00:0","startDate":"1776384000","__typename":"Schedule"},{"showDay":"Friday","showTimeslot":"07:00","showName":"NEWSHOUR","showDescription":"Latest news and in-depth analysis from around the world.","duration":"01:00:0","startDate":"1776384000","__typename":"Schedule"},{"showDay":"Friday","showTimeslot":"08:00","showName":"NEWS 30min","showDescription":"Latest news and analysis from around the world.","duration":"00:30:0","startDate":"1776384000","__typename":"Schedule"},{"showDay":"Friday","showTimeslot":"08:30","showName":"Talk to Al Jazeera : Zohran Mamdani","showDescription":"New York City’s mayor reflects on his first 100 days in office, from childcare to affordability, bigotry, war and the future of Democrats.","duration":"00:30:0","startDate":"1776384000","__typename":"Schedule"},{"showDay":"Friday","showTimeslot":"09:00","showName":"NEWSHOUR","showDescription":"Latest news and in-depth analysis from around the world.","duration":"01:00:0","startDate":"1776384000","__typename":"Schedule"},{"showDay":"Friday","showTimeslot":"10:00","showName":"NEWSHOUR","showDescription":"Latest news and in-depth analysis from around the world.","duration":"01:00:0","startDate":"1776384000","__typename":"Schedule"},{"showDay":"Friday","showTimeslot":"11:00","showName":"NEWS 30min","showDescription":"Latest news and analysis from around the world.","duration":"00:30:0","startDate":"1776384000","__typename":"Schedule"},{"showDay":"Friday","showTimeslot":"11:30","showName":"Inside Story","showDescription":"Beyond the headlines to the heart of the news of the day. Al Jazeera gets the Inside Story from some of the best minds from around the globe.","duration":"00:30:0","startDate":"1776384000","__typename":"Schedule"},{"showDay":"Friday","showTimeslot":"12:00","showName":"NEWSHOUR","showDescription":"Latest news and in-depth analysis from around the world.","duration":"01:00:0","startDate":"1776384000","__typename":"Schedule"},{"showDay":"Friday","showTimeslot":"13:00","showName":"NEWSHOUR","showDescription":"Latest news and in-depth analysis from around the world.","duration":"01:00:0","startDate":"1776384000","__typename":"Schedule"},{"showDay":"Friday","showTimeslot":"14:00","showName":"NEWSHOUR","showDescription":"Latest news and in-depth analysis from around the world.","duration":"01:00:0","startDate":"1776384000","__typename":"Schedule"},{"showDay":"Friday","showTimeslot":"15:00","showName":"NEWSHOUR","showDescription":"Latest news and in-depth analysis from around the world.","duration":"01:00:0","startDate":"1776384000","__typename":"Schedule"},{"showDay":"Friday","showTimeslot":"16:00","showName":"NEWSHOUR","showDescription":"Latest news and in-depth analysis from around the world.","duration":"01:00:0","startDate":"1776384000","__typename":"Schedule"},{"showDay":"Friday","showTimeslot":"17:00","showName":"NEWS 30min","showDescription":"Latest news and analysis from around the world.","duration":"00:30:0","startDate":"1776384000","__typename":"Schedule"},{"showDay":"Friday","showTimeslot":"17:30","showName":"Inside Story","showDescription":"Beyond the headlines to the heart of the news of the day. Al Jazeera gets the Inside Story from some of the best minds from around the globe.","duration":"00:30:0","startDate":"1776384000","__typename":"Schedule"},{"showDay":"Friday","showTimeslot":"18:00","showName":"NEWSHOUR","showDescription":"Latest news and in-depth analysis from around the world.","duration":"01:00:0","startDate":"1776384000","__typename":"Schedule"},{"showDay":"Friday","showTimeslot":"19:00","showName":"NEWS 30min","showDescription":"Latest news and analysis from around the world.","duration":"00:30:0","startDate":"1776384000","__typename":"Schedule"},{"showDay":"Friday","showTimeslot":"19:30","showName":"UpFront","showDescription":"Redi Tlhabi asks renowned economist Marian Mazzucato if she believes the Iran war will lead to a new global economic system.","duration":"00:30:0","startDate":"1776384000","__typename":"Schedule"},{"showDay":"Friday","showTimeslot":"20:00","showName":"NEWSHOUR","showDescription":"Latest news and in-depth analysis from around the world.","duration":"01:00:0","startDate":"1776384000","__typename":"Schedule"},{"showDay":"Friday","showTimeslot":"21:00","showName":"NEWSHOUR","showDescription":"Latest news and in-depth analysis from around the world.","duration":"01:00:0","startDate":"1776384000","__typename":"Schedule"},{"showDay":"Friday","showTimeslot":"22:00","showName":"NEWS 30min","showDescription":"Latest news and analysis from around the world.","duration":"00:30:0","startDate":"1776384000","__typename":"Schedule"},{"showDay":"Friday","showTimeslot":"22:30","showName":"Counting the Cost","showDescription":"Will the war push Iran’s economy to the brink or can it hold up?","duration":"00:30:0","startDate":"1776384000","__typename":"Schedule"},{"showDay":"Friday","showTimeslot":"23:00","showName":"NEWS 30min","showDescription":"Latest news and analysis from around the world.","duration":"00:30:0","startDate":"1776384000","__typename":"Schedule"},{"showDay":"Friday","showTimeslot":"23:30","showName":"Inside Story","showDescription":"Beyond the headlines to the heart of the news of the day. Al Jazeera gets the Inside Story from some of the best minds from around the globe.","duration":"00:30:0","startDate":"1776384000","__typename":"Schedule"},{"showDay":"Saturday","showTimeslot":"00:00","showName":"NEWSHOUR","showDescription":"Latest news and in-depth analysis from around the world.","duration":"01:00:0","startDate":"1776470400","__typename":"Schedule"},{"showDay":"Saturday","showTimeslot":"01:00","showName":"NEWSHOUR","showDescription":"Latest news and in-depth analysis from around the world.","duration":"01:00:0","startDate":"1776470400","__typename":"Schedule"},{"showDay":"Saturday","showTimeslot":"02:00","showName":"NEWSHOUR","showDescription":"Latest news and in-depth analysis from around the world.","duration":"01:00:0","startDate":"1776470400","__typename":"Schedule"},{"showDay":"Saturday","showTimeslot":"03:00","showName":"NEWSHOUR","showDescription":"Latest news and in-depth analysis from around the world.","duration":"01:00:0","startDate":"1776470400","__typename":"Schedule"},{"showDay":"Saturday","showTimeslot":"04:00","showName":"NEWS 30min","showDescription":"Latest news and analysis from around the world.","duration":"00:30:0","startDate":"1776470400","__typename":"Schedule"},{"showDay":"Saturday","showTimeslot":"04:30","showName":"UpFront","showDescription":"Redi Tlhabi asks renowned economist Marian Mazzucato if she believes the Iran war will lead to a new global economic system.","duration":"00:30:0","startDate":"1776470400","__typename":"Schedule"},{"showDay":"Saturday","showTimeslot":"05:00","showName":"NEWS 30min","showDescription":"Latest news and analysis from around the world.","duration":"00:30:0","startDate":"1776470400","__typename":"Schedule"},{"showDay":"Saturday","showTimeslot":"05:30","showName":"Inside Story","showDescription":"Beyond the headlines to the heart of the news of the day. Al Jazeera gets the Inside Story from some of the best minds from around the globe.","duration":"00:30:0","startDate":"1776470400","__typename":"Schedule"},{"showDay":"Saturday","showTimeslot":"06:00","showName":"NEWSHOUR","showDescription":"Latest news and in-depth analysis from around the world.","duration":"01:00:0","startDate":"1776470400","__typename":"Schedule"},{"showDay":"Saturday","showTimeslot":"07:00","showName":"NEWSHOUR","showDescription":"Latest news and in-depth analysis from around the world.","duration":"01:00:0","startDate":"1776470400","__typename":"Schedule"},{"showDay":"Saturday","showTimeslot":"08:00","showName":"NEWSHOUR","showDescription":"Latest news and in-depth analysis from around the world.","duration":"01:00:0","startDate":"1776470400","__typename":"Schedule"},{"showDay":"Saturday","showTimeslot":"09:00","showName":"NEWS 30min","showDescription":"Latest news and analysis from around the world.","duration":"00:30:0","startDate":"1776470400","__typename":"Schedule"},{"showDay":"Saturday","showTimeslot":"09:30","showName":"Counting the Cost","showDescription":"Will the war push Iran’s economy to the brink or can it hold up?","duration":"00:30:0","startDate":"1776470400","__typename":"Schedule"},{"showDay":"Saturday","showTimeslot":"10:00","showName":"NEWSHOUR","showDescription":"Latest news and in-depth analysis from around the world.","duration":"01:00:0","startDate":"1776470400","__typename":"Schedule"},{"showDay":"Saturday","showTimeslot":"11:00","showName":"NEWS 30min","showDescription":"Latest news and analysis from around the world.","duration":"00:30:0","startDate":"1776470400","__typename":"Schedule"},{"showDay":"Saturday","showTimeslot":"11:30","showName":"Inside Story","showDescription":"Beyond the headlines to the heart of the news of the day. Al Jazeera gets the Inside Story from some of the best minds from around the globe.","duration":"00:30:0","startDate":"1776470400","__typename":"Schedule"},{"showDay":"Saturday","showTimeslot":"12:00","showName":"NEWSHOUR","showDescription":"Latest news and in-depth analysis from around the world.","duration":"01:00:0","startDate":"1776470400","__typename":"Schedule"},{"showDay":"Saturday","showTimeslot":"13:00","showName":"NEWSHOUR","showDescription":"Latest news and in-depth analysis from around the world.","duration":"01:00:0","startDate":"1776470400","__typename":"Schedule"},{"showDay":"Saturday","showTimeslot":"14:00","showName":"NEWS 30min","showDescription":"Latest news and analysis from around the world.","duration":"00:30:0","startDate":"1776470400","__typename":"Schedule"},{"showDay":"Saturday","showTimeslot":"14:30","showName":"UpFront","showDescription":"Redi Tlhabi asks renowned economist Marian Mazzucato if she believes the Iran war will lead to a new global economic system.","duration":"00:30:0","startDate":"1776470400","__typename":"Schedule"},{"showDay":"Saturday","showTimeslot":"15:00","showName":"NEWSHOUR","showDescription":"Latest news and in-depth analysis from around the world.","duration":"01:00:0","startDate":"1776470400","__typename":"Schedule"},{"showDay":"Saturday","showTimeslot":"16:00","showName":"NEWSHOUR","showDescription":"Latest news and in-depth analysis from around the world.","duration":"01:00:0","startDate":"1776470400","__typename":"Schedule"},{"showDay":"Saturday","showTimeslot":"17:00","showName":"NEWS 30min","showDescription":"Latest news and analysis from around the world.","duration":"00:30:0","startDate":"1776470400","__typename":"Schedule"},{"showDay":"Saturday","showTimeslot":"17:30","showName":"Inside Story","showDescription":"Beyond the headlines to the heart of the news of the day. Al Jazeera gets the Inside Story from some of the best minds from around the globe.","duration":"00:30:0","startDate":"1776470400","__typename":"Schedule"},{"showDay":"Saturday","showTimeslot":"18:00","showName":"NEWSHOUR","showDescription":"Latest news and in-depth analysis from around the world.","duration":"01:00:0","startDate":"1776470400","__typename":"Schedule"},{"showDay":"Saturday","showTimeslot":"19:00","showName":"NEWS 30min","showDescription":"Latest news and analysis from around the world.","duration":"00:30:0","startDate":"1776470400","__typename":"Schedule"},{"showDay":"Saturday","showTimeslot":"19:30","showName":"The Listening Post","showDescription":"The blockade saga in Hormuz and the tactics of war versus tactics of propaganda. Plus, Narges Bajoghli on how the Iranian diaspora is being used to justify war.","duration":"00:30:0","startDate":"1776470400","__typename":"Schedule"},{"showDay":"Saturday","showTimeslot":"20:00","showName":"NEWSHOUR","showDescription":"Latest news and in-depth analysis from around the world.","duration":"01:00:0","startDate":"1776470400","__typename":"Schedule"},{"showDay":"Saturday","showTimeslot":"21:00","showName":"NEWSHOUR","showDescription":"Latest news and in-depth analysis from around the world.","duration":"01:00:0","startDate":"1776470400","__typename":"Schedule"},{"showDay":"Saturday","showTimeslot":"22:00","showName":"NEWS 30min","showDescription":"Latest news and analysis from around the world.","duration":"00:30:0","startDate":"1776470400","__typename":"Schedule"},{"showDay":"Saturday","showTimeslot":"22:30","showName":"The Bottom Line","showDescription":"How will Iran-U.S. talks unfold? Host Steve Clemons speaks with political scientist Mohsen Milani.","duration":"00:30:0","startDate":"1776470400","__typename":"Schedule"},{"showDay":"Saturday","showTimeslot":"23:00","showName":"NEWS 30min","showDescription":"Latest news and analysis from around the world.","duration":"00:30:0","startDate":"1776470400","__typename":"Schedule"},{"showDay":"Saturday","showTimeslot":"23:30","showName":"Inside Story","showDescription":"Beyond the headlines to the heart of the news of the day. Al Jazeera gets the Inside Story from some of the best minds from around the globe.","duration":"00:30:0","startDate":"1776470400","__typename":"Schedule"},{"showDay":"Sunday","showTimeslot":"00:00","showName":"NEWSHOUR","showDescription":"Latest news and in-depth analysis from around the world.","duration":"01:00:0","startDate":"1776556800","__typename":"Schedule"},{"showDay":"Sunday","showTimeslot":"01:00","showName":"NEWSHOUR","showDescription":"Latest news and in-depth analysis from around the world.","duration":"01:00:0","startDate":"1776556800","__typename":"Schedule"},{"showDay":"Sunday","showTimeslot":"02:00","showName":"NEWSHOUR","showDescription":"Latest news and in-depth analysis from around the world.","duration":"01:00:0","startDate":"1776556800","__typename":"Schedule"},{"showDay":"Sunday","showTimeslot":"03:00","showName":"NEWS 30min","showDescription":"Latest news and analysis from around the world.","duration":"00:30:0","startDate":"1776556800","__typename":"Schedule"},{"showDay":"Sunday","showTimeslot":"03:30","showName":"Counting the Cost","showDescription":"Will the war push Iran’s economy to the brink or can it hold up?","duration":"00:30:0","startDate":"1776556800","__typename":"Schedule"},{"showDay":"Sunday","showTimeslot":"04:00","showName":"NEWS 30min","showDescription":"Latest news and analysis from around the world.","duration":"00:30:0","startDate":"1776556800","__typename":"Schedule"},{"showDay":"Sunday","showTimeslot":"04:30","showName":"The Listening Post","showDescription":"The blockade saga in Hormuz and the tactics of war versus tactics of propaganda. Plus, Narges Bajoghli on how the Iranian diaspora is being used to justify war.","duration":"00:30:0","startDate":"1776556800","__typename":"Schedule"},{"showDay":"Sunday","showTimeslot":"05:00","showName":"NEWS 30min","showDescription":"Latest news and analysis from around the world.","duration":"00:30:0","startDate":"1776556800","__typename":"Schedule"},{"showDay":"Sunday","showTimeslot":"05:30","showName":"Inside Story","showDescription":"Beyond the headlines to the heart of the news of the day. Al Jazeera gets the Inside Story from some of the best minds from around the globe.","duration":"00:30:0","startDate":"1776556800","__typename":"Schedule"},{"showDay":"Sunday","showTimeslot":"06:00","showName":"NEWSHOUR","showDescription":"Latest news and in-depth analysis from around the world.","duration":"01:00:0","startDate":"1776556800","__typename":"Schedule"},{"showDay":"Sunday","showTimeslot":"07:00","showName":"NEWSHOUR","showDescription":"Latest news and in-depth analysis from around the world.","duration":"01:00:0","startDate":"1776556800","__typename":"Schedule"},{"showDay":"Sunday","showTimeslot":"08:00","showName":"NEWS 30min","showDescription":"Latest news and analysis from around the world.","duration":"00:30:0","startDate":"1776556800","__typename":"Schedule"},{"showDay":"Sunday","showTimeslot":"08:30","showName":"UpFront","showDescription":"Redi Tlhabi asks renowned economist Marian Mazzucato if she believes the Iran war will lead to a new global economic system.","duration":"00:30:0","startDate":"1776556800","__typename":"Schedule"},{"showDay":"Sunday","showTimeslot":"09:00","showName":"NEWS 30min","showDescription":"Latest news and analysis from around the world.","duration":"00:30:0","startDate":"1776556800","__typename":"Schedule"},{"showDay":"Sunday","showTimeslot":"09:30","showName":"The Bottom Line","showDescription":"How will Iran-U.S. talks unfold? Host Steve Clemons speaks with political scientist Mohsen Milani.","duration":"00:30:0","startDate":"1776556800","__typename":"Schedule"},{"showDay":"Sunday","showTimeslot":"10:00","showName":"NEWSHOUR","showDescription":"Latest news and in-depth analysis from around the world.","duration":"01:00:0","startDate":"1776556800","__typename":"Schedule"},{"showDay":"Sunday","showTimeslot":"11:00","showName":"NEWS 30min","showDescription":"Latest news and analysis from around the world.","duration":"00:30:0","startDate":"1776556800","__typename":"Schedule"},{"showDay":"Sunday","showTimeslot":"11:30","showName":"Inside Story","showDescription":"Beyond the headlines to the heart of the news of the day. Al Jazeera gets the Inside Story from some of the best minds from around the globe.","duration":"00:30:0","startDate":"1776556800","__typename":"Schedule"},{"showDay":"Sunday","showTimeslot":"12:00","showName":"NEWSHOUR","showDescription":"Latest news and in-depth analysis from around the world.","duration":"01:00:0","startDate":"1776556800","__typename":"Schedule"},{"showDay":"Sunday","showTimeslot":"13:00","showName":"NEWSHOUR","showDescription":"Latest news and in-depth analysis from around the world.","duration":"01:00:0","startDate":"1776556800","__typename":"Schedule"},{"showDay":"Sunday","showTimeslot":"14:00","showName":"NEWS 30min","showDescription":"Latest news and analysis from around the world.","duration":"00:30:0","startDate":"1776556800","__typename":"Schedule"},{"showDay":"Sunday","showTimeslot":"14:30","showName":"The Listening Post","showDescription":"The blockade saga in Hormuz and the tactics of war versus tactics of propaganda. Plus, Narges Bajoghli on how the Iranian diaspora is being used to justify war.","duration":"00:30:0","startDate":"1776556800","__typename":"Schedule"},{"showDay":"Sunday","showTimeslot":"15:00","showName":"NEWSHOUR","showDescription":"Latest news and in-depth analysis from around the world.","duration":"01:00:0","startDate":"1776556800","__typename":"Schedule"},{"showDay":"Sunday","showTimeslot":"16:00","showName":"NEWSHOUR","showDescription":"Latest news and in-depth analysis from around the world.","duration":"01:00:0","startDate":"1776556800","__typename":"Schedule"},{"showDay":"Sunday","showTimeslot":"17:00","showName":"NEWS 30min","showDescription":"Latest news and analysis from around the world.","duration":"00:30:0","startDate":"1776556800","__typename":"Schedule"},{"showDay":"Sunday","showTimeslot":"17:30","showName":"Inside Story","showDescription":"Beyond the headlines to the heart of the news of the day. Al Jazeera gets the Inside Story from some of the best minds from around the globe.","duration":"00:30:0","startDate":"1776556800","__typename":"Schedule"},{"showDay":"Sunday","showTimeslot":"18:00","showName":"NEWSHOUR","showDescription":"Latest news and in-depth analysis from around the world.","duration":"01:00:0","startDate":"1776556800","__typename":"Schedule"},{"showDay":"Sunday","showTimeslot":"19:00","showName":"NEWS 30min","showDescription":"Latest news and analysis from around the world.","duration":"00:30:0","startDate":"1776556800","__typename":"Schedule"},{"showDay":"Sunday","showTimeslot":"19:30","showName":"Talk To Al Jazeera","showDescription":"One-on-one conversations with global leaders, icons, influencers and alternative voices shaping our times.","duration":"00:30:0","startDate":"1776556800","__typename":"Schedule"},{"showDay":"Sunday","showTimeslot":"20:00","showName":"NEWSHOUR","showDescription":"Latest news and in-depth analysis from around the world.","duration":"01:00:0","startDate":"1776556800","__typename":"Schedule"},{"showDay":"Sunday","showTimeslot":"21:00","showName":"NEWSHOUR","showDescription":"Latest news and in-depth analysis from around the world.","duration":"01:00:0","startDate":"1776556800","__typename":"Schedule"},{"showDay":"Sunday","showTimeslot":"22:00","showName":"NEWSHOUR","showDescription":"Latest news and in-depth analysis from around the world.","duration":"01:00:0","startDate":"1776556800","__typename":"Schedule"},{"showDay":"Sunday","showTimeslot":"23:00","showName":"NEWS 30min","showDescription":"Latest news and analysis from around the world.","duration":"00:30:0","startDate":"1776556800","__typename":"Schedule"},{"showDay":"Sunday","showTimeslot":"23:30","showName":"Inside Story","showDescription":"Beyond the headlines to the heart of the news of the day. Al Jazeera gets the Inside Story from some of the best minds from around the globe.","duration":"00:30:0","startDate":"1776556800","__typename":"Schedule"},{"showDay":"Monday","showTimeslot":"00:00","showName":"NEWSHOUR","showDescription":"Latest news and in-depth analysis from around the world.","duration":"01:00:0","startDate":"1776643200","__typename":"Schedule"},{"showDay":"Monday","showTimeslot":"01:00","showName":"NEWSHOUR","showDescription":"Latest news and in-depth analysis from around the world.","duration":"01:00:0","startDate":"1776643200","__typename":"Schedule"},{"showDay":"Monday","showTimeslot":"02:00","showName":"NEWS 30min","showDescription":"Latest news and analysis from around the world.","duration":"00:30:0","startDate":"1776643200","__typename":"Schedule"},{"showDay":"Monday","showTimeslot":"02:30","showName":"UpFront","showDescription":"Redi Tlhabi asks renowned economist Marian Mazzucato if she believes the Iran war will lead to a new global economic system.","duration":"00:30:0","startDate":"1776643200","__typename":"Schedule"},{"showDay":"Monday","showTimeslot":"03:00","showName":"NEWS 30min","showDescription":"Latest news and analysis from around the world.","duration":"00:30:0","startDate":"1776643200","__typename":"Schedule"},{"showDay":"Monday","showTimeslot":"03:30","showName":"The Bottom Line","showDescription":"How will Iran-U.S. talks unfold? Host Steve Clemons speaks with political scientist Mohsen Milani.","duration":"00:30:0","startDate":"1776643200","__typename":"Schedule"},{"showDay":"Monday","showTimeslot":"04:00","showName":"NEWS 30min","showDescription":"Latest news and analysis from around the world.","duration":"00:30:0","startDate":"1776643200","__typename":"Schedule"},{"showDay":"Monday","showTimeslot":"04:30","showName":"Talk To Al Jazeera","showDescription":"One-on-one conversations with global leaders, icons, influencers and alternative voices shaping our times.","duration":"00:30:0","startDate":"1776643200","__typename":"Schedule"},{"showDay":"Monday","showTimeslot":"05:00","showName":"NEWS 30min","showDescription":"Latest news and analysis from around the world.","duration":"00:30:0","startDate":"1776643200","__typename":"Schedule"},{"showDay":"Monday","showTimeslot":"05:30","showName":"Inside Story","showDescription":"Beyond the headlines to the heart of the news of the day. Al Jazeera gets the Inside Story from some of the best minds from around the globe.","duration":"00:30:0","startDate":"1776643200","__typename":"Schedule"},{"showDay":"Monday","showTimeslot":"06:00","showName":"NEWSHOUR","showDescription":"Latest news and in-depth analysis from around the world.","duration":"01:00:0","startDate":"1776643200","__typename":"Schedule"},{"showDay":"Monday","showTimeslot":"07:00","showName":"NEWS 30min","showDescription":"Latest news and analysis from around the world.","duration":"00:30:0","startDate":"1776643200","__typename":"Schedule"},{"showDay":"Monday","showTimeslot":"07:30","showName":"Counting the Cost","showDescription":"Will the war push Iran’s economy to the brink or can it hold up?","duration":"00:30:0","startDate":"1776643200","__typename":"Schedule"},{"showDay":"Monday","showTimeslot":"08:00","showName":"NEWS 30min","showDescription":"Latest news and analysis from around the world.","duration":"00:30:0","startDate":"1776643200","__typename":"Schedule"},{"showDay":"Monday","showTimeslot":"08:30","showName":"The Listening Post","showDescription":"The blockade saga in Hormuz and the tactics of war versus tactics of propaganda. Plus, Narges Bajoghli on how the Iranian diaspora is being used to justify war.","duration":"00:30:0","startDate":"1776643200","__typename":"Schedule"},{"showDay":"Monday","showTimeslot":"09:00","showName":"NEWSHOUR","showDescription":"Latest news and in-depth analysis from around the world.","duration":"01:00:0","startDate":"1776643200","__typename":"Schedule"},{"showDay":"Monday","showTimeslot":"10:00","showName":"NEWSHOUR","showDescription":"Latest news and in-depth analysis from around the world.","duration":"01:00:0","startDate":"1776643200","__typename":"Schedule"},{"showDay":"Monday","showTimeslot":"11:00","showName":"NEWS 30min","showDescription":"Latest news and analysis from around the world.","duration":"00:30:0","startDate":"1776643200","__typename":"Schedule"},{"showDay":"Monday","showTimeslot":"11:30","showName":"Inside Story","showDescription":"Beyond the headlines to the heart of the news of the day. Al Jazeera gets the Inside Story from some of the best minds from around the globe.","duration":"00:30:0","startDate":"1776643200","__typename":"Schedule"},{"showDay":"Monday","showTimeslot":"12:00","showName":"NEWSHOUR","showDescription":"Latest news and in-depth analysis from around the world.","duration":"01:00:0","startDate":"1776643200","__typename":"Schedule"},{"showDay":"Monday","showTimeslot":"13:00","showName":"NEWSHOUR","showDescription":"Latest news and in-depth analysis from around the world.","duration":"01:00:0","startDate":"1776643200","__typename":"Schedule"},{"showDay":"Monday","showTimeslot":"14:00","showName":"NEWS 30min","showDescription":"Latest news and analysis from around the world.","duration":"00:30:0","startDate":"1776643200","__typename":"Schedule"},{"showDay":"Monday","showTimeslot":"14:30","showName":"Talk To Al Jazeera","showDescription":"One-on-one conversations with global leaders, icons, influencers and alternative voices shaping our times.","duration":"00:30:0","startDate":"1776643200","__typename":"Schedule"},{"showDay":"Monday","showTimeslot":"15:00","showName":"NEWSHOUR","showDescription":"Latest news and in-depth analysis from around the world.","duration":"01:00:0","startDate":"1776643200","__typename":"Schedule"},{"showDay":"Monday","showTimeslot":"16:00","showName":"NEWSHOUR","showDescription":"Latest news and in-depth analysis from around the world.","duration":"01:00:0","startDate":"1776643200","__typename":"Schedule"},{"showDay":"Monday","showTimeslot":"17:00","showName":"NEWS 30min","showDescription":"Latest news and analysis from around the world.","duration":"00:30:0","startDate":"1776643200","__typename":"Schedule"},{"showDay":"Monday","showTimeslot":"17:30","showName":"Inside Story","showDescription":"Beyond the headlines to the heart of the news of the day. Al Jazeera gets the Inside Story from some of the best minds from around the globe.","duration":"00:30:0","startDate":"1776643200","__typename":"Schedule"},{"showDay":"Monday","showTimeslot":"18:00","showName":"NEWSHOUR","showDescription":"Latest news and in-depth analysis from around the world.","duration":"01:00:0","startDate":"1776643200","__typename":"Schedule"},{"showDay":"Monday","showTimeslot":"19:00","showName":"NEWS 30min","showDescription":"Latest news and analysis from around the world.","duration":"00:30:0","startDate":"1776643200","__typename":"Schedule"},{"showDay":"Monday","showTimeslot":"19:30","showName":"Al Jazeera Untangles - The Coloniser’s Academy : British Empire - Rule the Waves","showDescription":"How Britain fused naval dominance with corporate reach to build a global empire of trade and control.","duration":"00:30:0","startDate":"1776643200","__typename":"Schedule"},{"showDay":"Monday","showTimeslot":"20:00","showName":"NEWSHOUR","showDescription":"Latest news and in-depth analysis from around the world.","duration":"01:00:0","startDate":"1776643200","__typename":"Schedule"},{"showDay":"Monday","showTimeslot":"21:00","showName":"NEWSHOUR","showDescription":"Latest news and in-depth analysis from around the world.","duration":"01:00:0","startDate":"1776643200","__typename":"Schedule"},{"showDay":"Monday","showTimeslot":"22:00","showName":"NEWSHOUR","showDescription":"Latest news and in-depth analysis from around the world.","duration":"01:00:0","startDate":"1776643200","__typename":"Schedule"},{"showDay":"Monday","showTimeslot":"23:00","showName":"NEWS 30min","showDescription":"Latest news and analysis from around the world.","duration":"00:30:0","startDate":"1776643200","__typename":"Schedule"},{"showDay":"Monday","showTimeslot":"23:30","showName":"Inside Story","showDescription":"Beyond the headlines to the heart of the news of the day. Al Jazeera gets the Inside Story from some of the best minds from around the globe.","duration":"00:30:0","startDate":"1776643200","__typename":"Schedule"},{"showDay":"Tuesday","showTimeslot":"00:00","showName":"NEWSHOUR","showDescription":"Latest news and in-depth analysis from around the world.","duration":"01:00:0","startDate":"1776729600","__typename":"Schedule"},{"showDay":"Tuesday","showTimeslot":"01:00","showName":"NEWSHOUR","showDescription":"Latest news and in-depth analysis from around the world.","duration":"01:00:0","startDate":"1776729600","__typename":"Schedule"},{"showDay":"Tuesday","showTimeslot":"02:00","showName":"NEWS 30min","showDescription":"Latest news and analysis from around the world.","duration":"00:30:0","startDate":"1776729600","__typename":"Schedule"},{"showDay":"Tuesday","showTimeslot":"02:30","showName":"The Listening Post","showDescription":"The blockade saga in Hormuz and the tactics of war versus tactics of propaganda. Plus, Narges Bajoghli on how the Iranian diaspora is being used to justify war.","duration":"00:30:0","startDate":"1776729600","__typename":"Schedule"},{"showDay":"Tuesday","showTimeslot":"03:00","showName":"NEWSHOUR","showDescription":"Latest news and in-depth analysis from around the world.","duration":"01:00:0","startDate":"1776729600","__typename":"Schedule"},{"showDay":"Tuesday","showTimeslot":"04:00","showName":"NEWS 30min","showDescription":"Latest news and analysis from around the world.","duration":"00:30:0","startDate":"1776729600","__typename":"Schedule"},{"showDay":"Tuesday","showTimeslot":"04:30","showName":"Al Jazeera Untangles - The Coloniser’s Academy : British Empire - Rule the Waves","showDescription":"How Britain fused naval dominance with corporate reach to build a global empire of trade and control.","duration":"00:30:0","startDate":"1776729600","__typename":"Schedule"},{"showDay":"Tuesday","showTimeslot":"05:00","showName":"NEWS 30min","showDescription":"Latest news and analysis from around the world.","duration":"00:30:0","startDate":"1776729600","__typename":"Schedule"},{"showDay":"Tuesday","showTimeslot":"05:30","showName":"Inside Story","showDescription":"Beyond the headlines to the heart of the news of the day. Al Jazeera gets the Inside Story from some of the best minds from around the globe.","duration":"00:30:0","startDate":"1776729600","__typename":"Schedule"},{"showDay":"Tuesday","showTimeslot":"06:00","showName":"NEWSHOUR","showDescription":"Latest news and in-depth analysis from around the world.","duration":"01:00:0","startDate":"1776729600","__typename":"Schedule"},{"showDay":"Tuesday","showTimeslot":"07:00","showName":"NEWS 30min","showDescription":"Latest news and analysis from around the world.","duration":"00:30:0","startDate":"1776729600","__typename":"Schedule"},{"showDay":"Tuesday","showTimeslot":"07:30","showName":"The Bottom Line","showDescription":"How will Iran-U.S. talks unfold? Host Steve Clemons speaks with political scientist Mohsen Milani.","duration":"00:30:0","startDate":"1776729600","__typename":"Schedule"},{"showDay":"Tuesday","showTimeslot":"08:00","showName":"NEWS 30min","showDescription":"Latest news and analysis from around the world.","duration":"00:30:0","startDate":"1776729600","__typename":"Schedule"},{"showDay":"Tuesday","showTimeslot":"08:30","showName":"Talk To Al Jazeera","showDescription":"One-on-one conversations with global leaders, icons, influencers and alternative voices shaping our times.","duration":"00:30:0","startDate":"1776729600","__typename":"Schedule"},{"showDay":"Tuesday","showTimeslot":"09:00","showName":"NEWSHOUR","showDescription":"Latest news and in-depth analysis from around the world.","duration":"01:00:0","startDate":"1776729600","__typename":"Schedule"},{"showDay":"Tuesday","showTimeslot":"10:00","showName":"NEWSHOUR","showDescription":"Latest news and in-depth analysis from around the world.","duration":"01:00:0","startDate":"1776729600","__typename":"Schedule"},{"showDay":"Tuesday","showTimeslot":"11:00","showName":"NEWS 30min","showDescription":"Latest news and analysis from around the world.","duration":"00:30:0","startDate":"1776729600","__typename":"Schedule"},{"showDay":"Tuesday","showTimeslot":"11:30","showName":"Inside Story","showDescription":"Beyond the headlines to the heart of the news of the day. Al Jazeera gets the Inside Story from some of the best minds from around the globe.","duration":"00:30:0","startDate":"1776729600","__typename":"Schedule"},{"showDay":"Tuesday","showTimeslot":"12:00","showName":"NEWSHOUR","showDescription":"Latest news and in-depth analysis from around the world.","duration":"01:00:0","startDate":"1776729600","__typename":"Schedule"},{"showDay":"Tuesday","showTimeslot":"13:00","showName":"NEWSHOUR","showDescription":"Latest news and in-depth analysis from around the world.","duration":"01:00:0","startDate":"1776729600","__typename":"Schedule"},{"showDay":"Tuesday","showTimeslot":"14:00","showName":"NEWS 30min","showDescription":"Latest news and analysis from around the world.","duration":"00:30:0","startDate":"1776729600","__typename":"Schedule"},{"showDay":"Tuesday","showTimeslot":"14:30","showName":"Al Jazeera Untangles - The Coloniser’s Academy : British Empire - Rule the Waves","showDescription":"How Britain fused naval dominance with corporate reach to build a global empire of trade and control.","duration":"00:30:0","startDate":"1776729600","__typename":"Schedule"},{"showDay":"Tuesday","showTimeslot":"15:00","showName":"NEWSHOUR","showDescription":"Latest news and in-depth analysis from around the world.","duration":"01:00:0","startDate":"1776729600","__typename":"Schedule"},{"showDay":"Tuesday","showTimeslot":"16:00","showName":"NEWS 30min","showDescription":"Latest news and analysis from around the world.","duration":"00:30:0","startDate":"1776729600","__typename":"Schedule"},{"showDay":"Tuesday","showTimeslot":"16:30","showName":"Counting the Cost","showDescription":"Counting the Cost provides background to the economics stories that shape our world and impact the lives of ordinary people.","duration":"00:30:0","startDate":"1776729600","__typename":"Schedule"},{"showDay":"Tuesday","showTimeslot":"17:00","showName":"NEWS 30min","showDescription":"Latest news and analysis from around the world.","duration":"00:30:0","startDate":"1776729600","__typename":"Schedule"},{"showDay":"Tuesday","showTimeslot":"17:30","showName":"Inside Story","showDescription":"Beyond the headlines to the heart of the news of the day. Al Jazeera gets the Inside Story from some of the best minds from around the globe.","duration":"00:30:0","startDate":"1776729600","__typename":"Schedule"},{"showDay":"Tuesday","showTimeslot":"18:00","showName":"NEWSHOUR","showDescription":"Latest news and in-depth analysis from around the world.","duration":"01:00:0","startDate":"1776729600","__typename":"Schedule"},{"showDay":"Tuesday","showTimeslot":"19:00","showName":"NEWS 30min","showDescription":"Latest news and analysis from around the world.","duration":"00:30:0","startDate":"1776729600","__typename":"Schedule"},{"showDay":"Tuesday","showTimeslot":"19:30","showName":"UpFront","showDescription":"Redi Tlhabi asks renowned economist Marian Mazzucato if she believes the Iran war will lead to a new global economic system.","duration":"00:30:0","startDate":"1776729600","__typename":"Schedule"},{"showDay":"Tuesday","showTimeslot":"20:00","showName":"NEWSHOUR","showDescription":"Latest news and in-depth analysis from around the world.","duration":"01:00:0","startDate":"1776729600","__typename":"Schedule"},{"showDay":"Tuesday","showTimeslot":"21:00","showName":"NEWSHOUR","showDescription":"Latest news and in-depth analysis from around the world.","duration":"01:00:0","startDate":"1776729600","__typename":"Schedule"},{"showDay":"Tuesday","showTimeslot":"22:00","showName":"NEWSHOUR","showDescription":"Latest news and in-depth analysis from around the world.","duration":"01:00:0","startDate":"1776729600","__typename":"Schedule"},{"showDay":"Tuesday","showTimeslot":"23:00","showName":"NEWS 30min","showDescription":"Latest news and analysis from around the world.","duration":"00:30:0","startDate":"1776729600","__typename":"Schedule"},{"showDay":"Tuesday","showTimeslot":"23:30","showName":"Inside Story","showDescription":"Beyond the headlines to the heart of the news of the day. Al Jazeera gets the Inside Story from some of the best minds from around the globe.","duration":"00:30:0","startDate":"1776729600","__typename":"Schedule"},{"showDay":"Wednesday","showTimeslot":"00:00","showName":"NEWSHOUR","showDescription":"Latest news and in-depth analysis from around the world.","duration":"01:00:0","startDate":"1776816000","__typename":"Schedule"},{"showDay":"Wednesday","showTimeslot":"01:00","showName":"NEWSHOUR","showDescription":"Latest news and in-depth analysis from around the world.","duration":"01:00:0","startDate":"1776816000","__typename":"Schedule"},{"showDay":"Wednesday","showTimeslot":"02:00","showName":"NEWS 30min","showDescription":"Latest news and analysis from around the world.","duration":"00:30:0","startDate":"1776816000","__typename":"Schedule"},{"showDay":"Wednesday","showTimeslot":"02:30","showName":"Talk To Al Jazeera","showDescription":"One-on-one conversations with global leaders, icons, influencers and alternative voices shaping our times.","duration":"00:30:0","startDate":"1776816000","__typename":"Schedule"},{"showDay":"Wednesday","showTimeslot":"03:00","showName":"NEWSHOUR","showDescription":"Latest news and in-depth analysis from around the world.","duration":"01:00:0","startDate":"1776816000","__typename":"Schedule"},{"showDay":"Wednesday","showTimeslot":"04:00","showName":"NEWS 30min","showDescription":"Latest news and analysis from around the world.","duration":"00:30:0","startDate":"1776816000","__typename":"Schedule"},{"showDay":"Wednesday","showTimeslot":"04:30","showName":"UpFront","showDescription":"Redi Tlhabi asks renowned economist Marian Mazzucato if she believes the Iran war will lead to a new global economic system.","duration":"00:30:0","startDate":"1776816000","__typename":"Schedule"},{"showDay":"Wednesday","showTimeslot":"05:00","showName":"NEWS 30min","showDescription":"Latest news and analysis from around the world.","duration":"00:30:0","startDate":"1776816000","__typename":"Schedule"},{"showDay":"Wednesday","showTimeslot":"05:30","showName":"Inside Story","showDescription":"Beyond the headlines to the heart of the news of the day. Al Jazeera gets the Inside Story from some of the best minds from around the globe.","duration":"00:30:0","startDate":"1776816000","__typename":"Schedule"},{"showDay":"Wednesday","showTimeslot":"06:00","showName":"NEWS 30min","showDescription":"Latest news and analysis from around the world.","duration":"00:30:0","startDate":"1776816000","__typename":"Schedule"},{"showDay":"Wednesday","showTimeslot":"06:30","showName":"Counting the Cost","showDescription":"Counting the Cost provides background to the economics stories that shape our world and impact the lives of ordinary people.","duration":"00:30:0","startDate":"1776816000","__typename":"Schedule"},{"showDay":"Wednesday","showTimeslot":"07:00","showName":"NEWSHOUR","showDescription":"Latest news and in-depth analysis from around the world.","duration":"01:00:0","startDate":"1776816000","__typename":"Schedule"},{"showDay":"Wednesday","showTimeslot":"08:00","showName":"NEWS 30min","showDescription":"Latest news and analysis from around the world.","duration":"00:30:0","startDate":"1776816000","__typename":"Schedule"},{"showDay":"Wednesday","showTimeslot":"08:30","showName":"Al Jazeera Untangles - The Coloniser’s Academy : British Empire - Rule the Waves","showDescription":"How Britain fused naval dominance with corporate reach to build a global empire of trade and control.","duration":"00:30:0","startDate":"1776816000","__typename":"Schedule"},{"showDay":"Wednesday","showTimeslot":"09:00","showName":"NEWSHOUR","showDescription":"Latest news and in-depth analysis from around the world.","duration":"01:00:0","startDate":"1776816000","__typename":"Schedule"},{"showDay":"Wednesday","showTimeslot":"10:00","showName":"NEWSHOUR","showDescription":"Latest news and in-depth analysis from around the world.","duration":"01:00:0","startDate":"1776816000","__typename":"Schedule"},{"showDay":"Wednesday","showTimeslot":"11:00","showName":"NEWS 30min","showDescription":"Latest news and analysis from around the world.","duration":"00:30:0","startDate":"1776816000","__typename":"Schedule"},{"showDay":"Wednesday","showTimeslot":"11:30","showName":"Inside Story","showDescription":"Beyond the headlines to the heart of the news of the day. Al Jazeera gets the Inside Story from some of the best minds from around the globe.","duration":"00:30:0","startDate":"1776816000","__typename":"Schedule"},{"showDay":"Wednesday","showTimeslot":"12:00","showName":"NEWSHOUR","showDescription":"Latest news and in-depth analysis from around the world.","duration":"01:00:0","startDate":"1776816000","__typename":"Schedule"},{"showDay":"Wednesday","showTimeslot":"13:00","showName":"NEWSHOUR","showDescription":"Latest news and in-depth analysis from around the world.","duration":"01:00:0","startDate":"1776816000","__typename":"Schedule"},{"showDay":"Wednesday","showTimeslot":"14:00","showName":"NEWS 30min","showDescription":"Latest news and analysis from around the world.","duration":"00:30:0","startDate":"1776816000","__typename":"Schedule"},{"showDay":"Wednesday","showTimeslot":"14:30","showName":"The Listening Post","showDescription":"The blockade saga in Hormuz and the tactics of war versus tactics of propaganda. Plus, Narges Bajoghli on how the Iranian diaspora is being used to justify war.","duration":"00:30:0","startDate":"1776816000","__typename":"Schedule"},{"showDay":"Wednesday","showTimeslot":"15:00","showName":"NEWSHOUR","showDescription":"Latest news and in-depth analysis from around the world.","duration":"01:00:0","startDate":"1776816000","__typename":"Schedule"},{"showDay":"Wednesday","showTimeslot":"16:00","showName":"NEWS 30min","showDescription":"Latest news and analysis from around the world.","duration":"00:30:0","startDate":"1776816000","__typename":"Schedule"},{"showDay":"Wednesday","showTimeslot":"16:30","showName":"The Bottom Line","showDescription":"How will Iran-U.S. talks unfold? Host Steve Clemons speaks with political scientist Mohsen Milani.","duration":"00:30:0","startDate":"1776816000","__typename":"Schedule"},{"showDay":"Wednesday","showTimeslot":"17:00","showName":"NEWS 30min","showDescription":"Latest news and analysis from around the world.","duration":"00:30:0","startDate":"1776816000","__typename":"Schedule"},{"showDay":"Wednesday","showTimeslot":"17:30","showName":"Inside Story","showDescription":"Beyond the headlines to the heart of the news of the day. Al Jazeera gets the Inside Story from some of the best minds from around the globe.","duration":"00:30:0","startDate":"1776816000","__typename":"Schedule"},{"showDay":"Wednesday","showTimeslot":"18:00","showName":"NEWSHOUR","showDescription":"Latest news and in-depth analysis from around the world.","duration":"01:00:0","startDate":"1776816000","__typename":"Schedule"},{"showDay":"Wednesday","showTimeslot":"19:00","showName":"NEWS 30min","showDescription":"Latest news and analysis from around the world.","duration":"00:30:0","startDate":"1776816000","__typename":"Schedule"},{"showDay":"Wednesday","showTimeslot":"19:30","showName":"Counting the Cost","showDescription":"Counting the Cost provides background to the economics stories that shape our world and impact the lives of ordinary people.","duration":"00:30:0","startDate":"1776816000","__typename":"Schedule"},{"showDay":"Wednesday","showTimeslot":"20:00","showName":"NEWSHOUR","showDescription":"Latest news and in-depth analysis from around the world.","duration":"01:00:0","startDate":"1776816000","__typename":"Schedule"},{"showDay":"Wednesday","showTimeslot":"21:00","showName":"NEWSHOUR","showDescription":"Latest news and in-depth analysis from around the world.","duration":"01:00:0","startDate":"1776816000","__typename":"Schedule"},{"showDay":"Wednesday","showTimeslot":"22:00","showName":"NEWSHOUR","showDescription":"Latest news and in-depth analysis from around the world.","duration":"01:00:0","startDate":"1776816000","__typename":"Schedule"},{"showDay":"Wednesday","showTimeslot":"23:00","showName":"NEWS 30min","showDescription":"Latest news and analysis from around the world.","duration":"00:30:0","startDate":"1776816000","__typename":"Schedule"},{"showDay":"Wednesday","showTimeslot":"23:30","showName":"Inside Story","showDescription":"Beyond the headlines to the heart of the news of the day. Al Jazeera gets the Inside Story from some of the best minds from around the globe.","duration":"00:30:0","startDate":"1776816000","__typename":"Schedule"},{"showDay":"Thursday","showTimeslot":"00:00","showName":"NEWSHOUR","showDescription":"Latest news and in-depth analysis from around the world.","duration":"01:00:0","startDate":"1776902400","__typename":"Schedule"},{"showDay":"Thursday","showTimeslot":"01:00","showName":"NEWSHOUR","showDescription":"Latest news and in-depth analysis from around the world.","duration":"01:00:0","startDate":"1776902400","__typename":"Schedule"},{"showDay":"Thursday","showTimeslot":"02:00","showName":"NEWS 30min","showDescription":"Latest news and analysis from around the world.","duration":"00:30:0","startDate":"1776902400","__typename":"Schedule"},{"showDay":"Thursday","showTimeslot":"02:30","showName":"Al Jazeera Untangles - The Coloniser’s Academy : British Empire - Rule the Waves","showDescription":"How Britain fused naval dominance with corporate reach to build a global empire of trade and control.","duration":"00:30:0","startDate":"1776902400","__typename":"Schedule"},{"showDay":"Thursday","showTimeslot":"03:00","showName":"NEWSHOUR","showDescription":"Latest news and in-depth analysis from around the world.","duration":"01:00:0","startDate":"1776902400","__typename":"Schedule"},{"showDay":"Thursday","showTimeslot":"04:00","showName":"NEWSHOUR","showDescription":"Latest news and in-depth analysis from around the world.","duration":"01:00:0","startDate":"1776902400","__typename":"Schedule"},{"showDay":"Thursday","showTimeslot":"05:00","showName":"NEWS 30min","showDescription":"Latest news and analysis from around the world.","duration":"00:30:0","startDate":"1776902400","__typename":"Schedule"},{"showDay":"Thursday","showTimeslot":"05:30","showName":"Inside Story","showDescription":"Beyond the headlines to the heart of the news of the day. Al Jazeera gets the Inside Story from some of the best minds from around the globe.","duration":"00:30:0","startDate":"1776902400","__typename":"Schedule"},{"showDay":"Thursday","showTimeslot":"06:00","showName":"NEWS 30min","showDescription":"Latest news and analysis from around the world.","duration":"00:30:0","startDate":"1776902400","__typename":"Schedule"},{"showDay":"Thursday","showTimeslot":"06:30","showName":"The Bottom Line","showDescription":"How will Iran-U.S. talks unfold? Host Steve Clemons speaks with political scientist Mohsen Milani.","duration":"00:30:0","startDate":"1776902400","__typename":"Schedule"},{"showDay":"Thursday","showTimeslot":"07:00","showName":"NEWSHOUR","showDescription":"Latest news and in-depth analysis from around the world.","duration":"01:00:0","startDate":"1776902400","__typename":"Schedule"},{"showDay":"Thursday","showTimeslot":"08:00","showName":"NEWS 30min","showDescription":"Latest news and analysis from around the world.","duration":"00:30:0","startDate":"1776902400","__typename":"Schedule"},{"showDay":"Thursday","showTimeslot":"08:30","showName":"Counting the Cost","showDescription":"Counting the Cost provides background to the economics stories that shape our world and impact the lives of ordinary people.","duration":"00:30:0","startDate":"1776902400","__typename":"Schedule"},{"showDay":"Thursday","showTimeslot":"09:00","showName":"NEWSHOUR","showDescription":"Latest news and in-depth analysis from around the world.","duration":"01:00:0","startDate":"1776902400","__typename":"Schedule"},{"showDay":"Thursday","showTimeslot":"10:00","showName":"NEWSHOUR","showDescription":"Latest news and in-depth analysis from around the world.","duration":"01:00:0","startDate":"1776902400","__typename":"Schedule"},{"showDay":"Thursday","showTimeslot":"11:00","showName":"NEWS 30min","showDescription":"Latest news and analysis from around the world.","duration":"00:30:0","startDate":"1776902400","__typename":"Schedule"},{"showDay":"Thursday","showTimeslot":"11:30","showName":"Inside Story","showDescription":"Beyond the headlines to the heart of the news of the day. Al Jazeera gets the Inside Story from some of the best minds from around the globe.","duration":"00:30:0","startDate":"1776902400","__typename":"Schedule"},{"showDay":"Thursday","showTimeslot":"12:00","showName":"NEWSHOUR","showDescription":"Latest news and in-depth analysis from around the world.","duration":"01:00:0","startDate":"1776902400","__typename":"Schedule"},{"showDay":"Thursday","showTimeslot":"13:00","showName":"NEWSHOUR","showDescription":"Latest news and in-depth analysis from around the world.","duration":"01:00:0","startDate":"1776902400","__typename":"Schedule"},{"showDay":"Thursday","showTimeslot":"14:00","showName":"NEWS 30min","showDescription":"Latest news and analysis from around the world.","duration":"00:30:0","startDate":"1776902400","__typename":"Schedule"},{"showDay":"Thursday","showTimeslot":"14:30","showName":"Talk To Al Jazeera","showDescription":"One-on-one conversations with global leaders, icons, influencers and alternative voices shaping our times.","duration":"00:30:0","startDate":"1776902400","__typename":"Schedule"},{"showDay":"Thursday","showTimeslot":"15:00","showName":"NEWSHOUR","showDescription":"Latest news and in-depth analysis from around the world.","duration":"01:00:0","startDate":"1776902400","__typename":"Schedule"},{"showDay":"Thursday","showTimeslot":"16:00","showName":"NEWSHOUR","showDescription":"Latest news and in-depth analysis from around the world.","duration":"01:00:0","startDate":"1776902400","__typename":"Schedule"},{"showDay":"Thursday","showTimeslot":"17:00","showName":"NEWS 30min","showDescription":"Latest news and analysis from around the world.","duration":"00:30:0","startDate":"1776902400","__typename":"Schedule"},{"showDay":"Thursday","showTimeslot":"17:30","showName":"Inside Story","showDescription":"Beyond the headlines to the heart of the news of the day. Al Jazeera gets the Inside Story from some of the best minds from around the globe.","duration":"00:30:0","startDate":"1776902400","__typename":"Schedule"},{"showDay":"Thursday","showTimeslot":"18:00","showName":"NEWSHOUR","showDescription":"Latest news and in-depth analysis from around the world.","duration":"01:00:0","startDate":"1776902400","__typename":"Schedule"},{"showDay":"Thursday","showTimeslot":"19:00","showName":"NEWSHOUR","showDescription":"Latest news and in-depth analysis from around the world.","duration":"01:00:0","startDate":"1776902400","__typename":"Schedule"},{"showDay":"Thursday","showTimeslot":"20:00","showName":"NEWSHOUR","showDescription":"Latest news and in-depth analysis from around the world.","duration":"01:00:0","startDate":"1776902400","__typename":"Schedule"},{"showDay":"Thursday","showTimeslot":"21:00","showName":"NEWSHOUR","showDescription":"Latest news and in-depth analysis from around the world.","duration":"01:00:0","startDate":"1776902400","__typename":"Schedule"},{"showDay":"Thursday","showTimeslot":"22:00","showName":"NEWSHOUR","showDescription":"Latest news and in-depth analysis from around the world.","duration":"01:00:0","startDate":"1776902400","__typename":"Schedule"},{"showDay":"Thursday","showTimeslot":"23:00","showName":"NEWS 30min","showDescription":"Latest news and analysis from around the world.","duration":"00:30:0","startDate":"1776902400","__typename":"Schedule"},{"showDay":"Thursday","showTimeslot":"23:30","showName":"Inside Story","showDescription":"Beyond the headlines to the heart of the news of the day. Al Jazeera gets the Inside Story from some of the best minds from around the globe.","duration":"00:30:0","startDate":"1776902400","__typename":"Schedule"},{"showDay":"Friday","showTimeslot":"00:00","showName":"NEWSHOUR","showDescription":"Latest news and in-depth analysis from around the world.","duration":"01:00:0","startDate":"1776988800","__typename":"Schedule"},{"showDay":"Friday","showTimeslot":"01:00","showName":"NEWSHOUR","showDescription":"Latest news and in-depth analysis from around the world.","duration":"01:00:0","startDate":"1776988800","__typename":"Schedule"},{"showDay":"Friday","showTimeslot":"02:00","showName":"NEWS 30min","showDescription":"Latest news and analysis from around the world.","duration":"00:30:0","startDate":"1776988800","__typename":"Schedule"},{"showDay":"Friday","showTimeslot":"02:30","showName":"Counting the Cost","showDescription":"Counting the Cost provides background to the economics stories that shape our world and impact the lives of ordinary people.","duration":"00:30:0","startDate":"1776988800","__typename":"Schedule"},{"showDay":"Friday","showTimeslot":"03:00","showName":"NEWSHOUR","showDescription":"Latest news and in-depth analysis from around the world.","duration":"01:00:0","startDate":"1776988800","__typename":"Schedule"},{"showDay":"Friday","showTimeslot":"04:00","showName":"NEWS 30min","showDescription":"Latest news and analysis from around the world.","duration":"00:30:0","startDate":"1776988800","__typename":"Schedule"},{"showDay":"Friday","showTimeslot":"04:30","showName":"The Stream","showDescription":"Powered by social media, The Stream brings fresh perspectives and new voices, beyond the headlines.","duration":"00:30:0","startDate":"1776988800","__typename":"Schedule"},{"showDay":"Friday","showTimeslot":"05:00","showName":"NEWS 30min","showDescription":"Latest news and analysis from around the world.","duration":"00:30:0","startDate":"1776988800","__typename":"Schedule"},{"showDay":"Friday","showTimeslot":"05:30","showName":"Inside Story","showDescription":"Beyond the headlines to the heart of the news of the day. Al Jazeera gets the Inside Story from some of the best minds from around the globe.","duration":"00:30:0","startDate":"1776988800","__typename":"Schedule"},{"showDay":"Friday","showTimeslot":"06:00","showName":"NEWSHOUR","showDescription":"Latest news and in-depth analysis from around the world.","duration":"01:00:0","startDate":"1776988800","__typename":"Schedule"},{"showDay":"Friday","showTimeslot":"07:00","showName":"NEWSHOUR","showDescription":"Latest news and in-depth analysis from around the world.","duration":"01:00:0","startDate":"1776988800","__typename":"Schedule"},{"showDay":"Friday","showTimeslot":"08:00","showName":"NEWS 30min","showDescription":"Latest news and analysis from around the world.","duration":"00:30:0","startDate":"1776988800","__typename":"Schedule"},{"showDay":"Friday","showTimeslot":"08:30","showName":"Talk To Al Jazeera","showDescription":"One-on-one conversations with global leaders, icons, influencers and alternative voices shaping our times.","duration":"00:30:0","startDate":"1776988800","__typename":"Schedule"},{"showDay":"Friday","showTimeslot":"09:00","showName":"NEWSHOUR","showDescription":"Latest news and in-depth analysis from around the world.","duration":"01:00:0","startDate":"1776988800","__typename":"Schedule"},{"showDay":"Friday","showTimeslot":"10:00","showName":"NEWSHOUR","showDescription":"Latest news and in-depth analysis from around the world.","duration":"01:00:0","startDate":"1776988800","__typename":"Schedule"},{"showDay":"Friday","showTimeslot":"11:00","showName":"NEWS 30min","showDescription":"Latest news and analysis from around the world.","duration":"00:30:0","startDate":"1776988800","__typename":"Schedule"},{"showDay":"Friday","showTimeslot":"11:30","showName":"Inside Story","showDescription":"Beyond the headlines to the heart of the news of the day. Al Jazeera gets the Inside Story from some of the best minds from around the globe.","duration":"00:30:0","startDate":"1776988800","__typename":"Schedule"},{"showDay":"Friday","showTimeslot":"12:00","showName":"NEWSHOUR","showDescription":"Latest news and in-depth analysis from around the world.","duration":"01:00:0","startDate":"1776988800","__typename":"Schedule"},{"showDay":"Friday","showTimeslot":"13:00","showName":"NEWSHOUR","showDescription":"Latest news and in-depth analysis from around the world.","duration":"01:00:0","startDate":"1776988800","__typename":"Schedule"},{"showDay":"Friday","showTimeslot":"14:00","showName":"NEWS 30min","showDescription":"Latest news and analysis from around the world.","duration":"00:30:0","startDate":"1776988800","__typename":"Schedule"},{"showDay":"Friday","showTimeslot":"14:30","showName":"The Stream","showDescription":"Powered by social media, The Stream brings fresh perspectives and new voices, beyond the headlines.","duration":"00:30:0","startDate":"1776988800","__typename":"Schedule"},{"showDay":"Friday","showTimeslot":"15:00","showName":"NEWSHOUR","showDescription":"Latest news and in-depth analysis from around the world.","duration":"01:00:0","startDate":"1776988800","__typename":"Schedule"},{"showDay":"Friday","showTimeslot":"16:00","showName":"NEWSHOUR","showDescription":"Latest news and in-depth analysis from around the world.","duration":"01:00:0","startDate":"1776988800","__typename":"Schedule"},{"showDay":"Friday","showTimeslot":"17:00","showName":"NEWS 30min","showDescription":"Latest news and analysis from around the world.","duration":"00:30:0","startDate":"1776988800","__typename":"Schedule"},{"showDay":"Friday","showTimeslot":"17:30","showName":"Inside Story","showDescription":"Beyond the headlines to the heart of the news of the day. Al Jazeera gets the Inside Story from some of the best minds from around the globe.","duration":"00:30:0","startDate":"1776988800","__typename":"Schedule"},{"showDay":"Friday","showTimeslot":"18:00","showName":"NEWSHOUR","showDescription":"Latest news and in-depth analysis from around the world.","duration":"01:00:0","startDate":"1776988800","__typename":"Schedule"},{"showDay":"Friday","showTimeslot":"19:00","showName":"NEWS 30min","showDescription":"Latest news and analysis from around the world.","duration":"00:30:0","startDate":"1776988800","__typename":"Schedule"},{"showDay":"Friday","showTimeslot":"19:30","showName":"UpFront","showDescription":"Frank, blunt and inquisitive, UpFront cuts through the headlines to get to the heart of the matter with influential guests and newsmakers.","duration":"00:30:0","startDate":"1776988800","__typename":"Schedule"},{"showDay":"Friday","showTimeslot":"20:00","showName":"NEWSHOUR","showDescription":"Latest news and in-depth analysis from around the world.","duration":"01:00:0","startDate":"1776988800","__typename":"Schedule"},{"showDay":"Friday","showTimeslot":"21:00","showName":"NEWSHOUR","showDescription":"Latest news and in-depth analysis from around the world.","duration":"01:00:0","startDate":"1776988800","__typename":"Schedule"},{"showDay":"Friday","showTimeslot":"22:00","showName":"NEWS 30min","showDescription":"Latest news and analysis from around the world.","duration":"00:30:0","startDate":"1776988800","__typename":"Schedule"},{"showDay":"Friday","showTimeslot":"22:30","showName":"Counting the Cost","showDescription":"Counting the Cost provides background to the economics stories that shape our world and impact the lives of ordinary people.","duration":"00:30:0","startDate":"1776988800","__typename":"Schedule"},{"showDay":"Friday","showTimeslot":"23:00","showName":"NEWS 30min","showDescription":"Latest news and analysis from around the world.","duration":"00:30:0","startDate":"1776988800","__typename":"Schedule"},{"showDay":"Friday","showTimeslot":"23:30","showName":"Inside Story","showDescription":"Beyond the headlines to the heart of the news of the day. Al Jazeera gets the Inside Story from some of the best minds from around the globe.","duration":"00:30:0","startDate":"1776988800","__typename":"Schedule"}],"__typename":"Post"}}} From 897c01986f6810bca078b85e53bdb3c14a25978a Mon Sep 17 00:00:00 2001 From: freearhey <7253922+freearhey@users.noreply.github.com> Date: Sat, 18 Apr 2026 09:08:29 +0300 Subject: [PATCH 22/92] Create aljazeera.com.test.js --- sites/aljazeera.com/aljazeera.com.test.js | 55 +++++++++++++++++++++++ 1 file changed, 55 insertions(+) create mode 100644 sites/aljazeera.com/aljazeera.com.test.js diff --git a/sites/aljazeera.com/aljazeera.com.test.js b/sites/aljazeera.com/aljazeera.com.test.js new file mode 100644 index 000000000..751c1ad7a --- /dev/null +++ b/sites/aljazeera.com/aljazeera.com.test.js @@ -0,0 +1,55 @@ +const { parser, url, request } = require('./aljazeera.com.config.js') +const fs = require('fs') +const path = require('path') +const dayjs = require('dayjs') +const utc = require('dayjs/plugin/utc') +const customParseFormat = require('dayjs/plugin/customParseFormat') +dayjs.extend(customParseFormat) +dayjs.extend(utc) + +const date = dayjs.utc('2026-04-22', 'YYYY-MM-DD').startOf('d') +const channel = { site_id: 'aje' } + +it('can generate valid url', () => { + expect(url({ channel })).toBe( + 'https://www.aljazeera.com/graphql?wp-site=aje&operationName=ArchipelagoSchedulePageQuery&variables=%7B%22postName%22%3A%22schedule%22%2C%22preview%22%3A%22%22%7D' + ) +}) + +it('can generate valid request headers', () => { + expect(request.headers({ channel })).toMatchObject({ + 'wp-site': 'aje' + }) +}) + +it('can parse response', () => { + const content = fs.readFileSync(path.resolve(__dirname, '__data__/content.json')) + + const results = parser({ content, date }).map(p => { + p.start = p.start.toJSON() + p.stop = p.stop.toJSON() + + return p + }) + + expect(results.length).toBe(35) + expect(results[0]).toMatchObject({ + title: 'NEWSHOUR', + description: 'Latest news and in-depth analysis from around the world.', + start: '2026-04-21T12:00:00.000Z', + stop: '2026-04-21T13:00:00.000Z' + }) + expect(results[34]).toMatchObject({ + title: 'Inside Story', + description: + 'Beyond the headlines to the heart of the news of the day. Al Jazeera gets the Inside Story from some of the best minds from around the globe.', + start: '2026-04-22T11:30:00.000Z', + stop: '2026-04-22T12:00:00.000Z' + }) +}) + +it('can handle empty guide', () => { + const results = parser({ content: '', date }) + + expect(results).toMatchObject([]) +}) From 5183fca8177a83ac64bf00730ab6ae58efaab800 Mon Sep 17 00:00:00 2001 From: freearhey <7253922+freearhey@users.noreply.github.com> Date: Sat, 18 Apr 2026 09:08:38 +0300 Subject: [PATCH 23/92] Create aljazeera.com.config.js --- sites/aljazeera.com/aljazeera.com.config.js | 66 +++++++++++++++++++++ 1 file changed, 66 insertions(+) create mode 100644 sites/aljazeera.com/aljazeera.com.config.js diff --git a/sites/aljazeera.com/aljazeera.com.config.js b/sites/aljazeera.com/aljazeera.com.config.js new file mode 100644 index 000000000..4c3b79c82 --- /dev/null +++ b/sites/aljazeera.com/aljazeera.com.config.js @@ -0,0 +1,66 @@ +const dayjs = require('dayjs') +const utc = require('dayjs/plugin/utc') +const timezone = require('dayjs/plugin/timezone') + +dayjs.extend(utc) +dayjs.extend(timezone) + +module.exports = { + site: 'aljazeera.com', + days: 2, + url({ channel }) { + return `https://www.aljazeera.com/graphql?wp-site=${channel.site_id}&operationName=ArchipelagoSchedulePageQuery&variables=%7B%22postName%22%3A%22schedule%22%2C%22preview%22%3A%22%22%7D` + }, + request: { + headers({ channel }) { + return { + 'wp-site': channel.site_id + } + } + }, + parser({ content, date }) { + const items = parseItems(content, date) + + return items.map(item => { + const start = parseStart(item, date) + const duration = parseDuration(item.duration) + const stop = start.add(duration, 's') + + return { + title: item.showName, + description: item.showDescription, + start, + stop + } + }) + }, + channels() { + return [ + { site_id: 'aje', lang: 'en', xmltv_id: 'AlJazeera.qa@English', name: 'Al Jazeera English' }, + { site_id: 'aja', lang: 'ar', xmltv_id: 'AlJazeera.qa@Arabic', name: 'Al Jazeera Arabic' } + ] + } +} + +function parseStart(item, date) { + return dayjs(`${date.format('YYYY-MM-DD')} ${item.showTimeslot}`, 'YYYY-MM-DD HH:mm').utc() +} + +function parseDuration(duration) { + const [, HH, mm, ss] = duration.match(/(\d+):(\d+)(?::(\d+))?/) + + return parseInt(HH) * 3600 + parseInt(mm) * 60 + parseInt(ss || 0) +} + +function parseItems(content, date) { + try { + const data = JSON.parse(content) + if (!data?.data?.post || !Array.isArray(data.data.post.schedule)) return [] + + const startOfDay = date.startOf('day') + + return data.data.post.schedule.filter(item => item.startDate === startOfDay.unix().toString()) + } catch { + return [] + } +} From 676f908d98e15877c9098e7b1288aa6a59f29d30 Mon Sep 17 00:00:00 2001 From: freearhey <7253922+freearhey@users.noreply.github.com> Date: Sat, 18 Apr 2026 09:08:49 +0300 Subject: [PATCH 24/92] Create aljazeera.com.channels.xml --- sites/aljazeera.com/aljazeera.com.channels.xml | 5 +++++ 1 file changed, 5 insertions(+) create mode 100644 sites/aljazeera.com/aljazeera.com.channels.xml diff --git a/sites/aljazeera.com/aljazeera.com.channels.xml b/sites/aljazeera.com/aljazeera.com.channels.xml new file mode 100644 index 000000000..78d2742ba --- /dev/null +++ b/sites/aljazeera.com/aljazeera.com.channels.xml @@ -0,0 +1,5 @@ + + + Al Jazeera Arabic + Al Jazeera English + From 631036a257231f64ece4f85e53d829afba5a190c Mon Sep 17 00:00:00 2001 From: freearhey <7253922+freearhey@users.noreply.github.com> Date: Sat, 18 Apr 2026 09:09:16 +0300 Subject: [PATCH 25/92] Create readme.md --- sites/aljazeera.com/readme.md | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) create mode 100644 sites/aljazeera.com/readme.md diff --git a/sites/aljazeera.com/readme.md b/sites/aljazeera.com/readme.md new file mode 100644 index 000000000..2e7e56c9a --- /dev/null +++ b/sites/aljazeera.com/readme.md @@ -0,0 +1,21 @@ +# aljazeera.com + +https://www.aljazeera.com/schedule + +### Download the guide + +```sh +npm run grab --- --sites=aljazeera.com +``` + +### Update channel list + +```sh +npm run channels:parse --- --config=./sites/aljazeera.com/aljazeera.com.config.js --output=./sites/aljazeera.com/aljazeera.com.channels.xml +``` + +### Test + +```sh +npm test --- aljazeera.com +``` From 29a18bf01fe6e6658ad18d73f09422f0f474a751 Mon Sep 17 00:00:00 2001 From: theofficialomega <30985701+BellezaEmporium@users.noreply.github.com> Date: Sat, 18 Apr 2026 12:19:24 +0200 Subject: [PATCH 26/92] conform to new eslint rules --- package-lock.json | 611 +- package.json | 20 +- scripts/core/utils.ts | 2 +- .../airtelxstream.in.config.js | 2 +- sites/elcinema.com/elcinema.com.config.js | 2 +- sites/freetv.tv/freetv.tv.config.js | 2 +- sites/tvprofil.com/tvprofil.com.channels.xml | 11272 ++++++++-------- 7 files changed, 5846 insertions(+), 6065 deletions(-) diff --git a/package-lock.json b/package-lock.json index 140e5aab0..ad2200d62 100644 --- a/package-lock.json +++ b/package-lock.json @@ -9,18 +9,18 @@ "license": "UNLICENSED", "dependencies": { "@eslint/eslintrc": "^3.3.5", - "@eslint/js": "^9.39.4", + "@eslint/js": "^10.0.1", "@freearhey/chronos": "^0.0.1", "@freearhey/core": "^0.15.2", "@freearhey/search-js": "^0.2.1", "@freearhey/storage-js": "^0.2.0", - "@iptv-org/sdk": "^1.2.0", + "@iptv-org/sdk": "^1.3.0", "@ntlab/sfetch": "^1.2.0", "@octokit/core": "^7.0.6", "@octokit/plugin-paginate-rest": "^14.0.0", "@octokit/plugin-rest-endpoint-methods": "^17.0.0", "@stylistic/eslint-plugin": "^5.10.0", - "@swc/core": "^1.15.24", + "@swc/core": "^1.15.26", "@swc/jest": "^0.2.39", "@types/cli-progress": "^3.11.6", "@types/fs-extra": "^11.0.4", @@ -32,10 +32,10 @@ "@types/lodash.sortby": "^4.7.9", "@types/lodash.startcase": "^4.4.9", "@types/lodash.uniqby": "^4.7.9", - "@types/node": "^25.5.2", + "@types/node": "^25.6.0", "@types/pako": "^2.0.4", - "@typescript-eslint/eslint-plugin": "^8.58.1", - "@typescript-eslint/parser": "^8.58.1", + "@typescript-eslint/eslint-plugin": "^8.58.2", + "@typescript-eslint/parser": "^8.58.2", "axios": "^1.15.0", "chalk": "^5.6.2", "cheerio": "^1.2.0", @@ -48,11 +48,11 @@ "dayjs": "^1.11.20", "epg-grabber": "^0.46.1", "epg-parser": "^0.5.0", - "eslint": "^10.2.0", + "eslint": "^10.2.1", "eslint-config-prettier": "^10.1.8", "fs-extra": "^11.3.4", "glob": "^13.0.6", - "globals": "^17.4.0", + "globals": "^17.5.0", "husky": "^9.1.7", "iconv-lite": "^0.7.2", "inquirer": "^13.4.1", @@ -73,10 +73,10 @@ "socks-proxy-agent": "^10.0.0", "srcset": "^5.0.3", "table2array": "^0.0.2", - "tabletojson": "^4.1.9", + "tabletojson": "^4.1.10", "tough-cookie": "^6.0.1", "tsx": "^4.21.0", - "typescript": "^6.0.2", + "typescript": "^6.0.3", "uuid": "^13.0.0" } }, @@ -116,7 +116,6 @@ "resolved": "https://registry.npmjs.org/@babel/core/-/core-7.29.0.tgz", "integrity": "sha512-CGOfOJqWjg2qW/Mb6zNsDm+u5vFQ8DxXfbM09z69p5Z6+mE1ikP2jUXw+j42Pf1XTYED2Rni5f95npYeuwMDQA==", "license": "MIT", - "peer": true, "dependencies": { "@babel/code-frame": "^7.29.0", "@babel/generator": "^7.29.0", @@ -1174,15 +1173,23 @@ } }, "node_modules/@eslint/js": { - "version": "9.39.4", - "resolved": "https://registry.npmjs.org/@eslint/js/-/js-9.39.4.tgz", - "integrity": "sha512-nE7DEIchvtiFTwBw4Lfbu59PG+kCofhjsKaCWzxTpt4lfRjRMqG6uMBzKXuEcyXhOHoUp9riAm7/aWYGhXZ9cw==", + "version": "10.0.1", + "resolved": "https://registry.npmjs.org/@eslint/js/-/js-10.0.1.tgz", + "integrity": "sha512-zeR9k5pd4gxjZ0abRoIaxdc7I3nDktoXZk2qOv9gCNWx3mVwEn32VRhyLaRsDiJjTs0xq/T8mfPtyuXu7GWBcA==", "license": "MIT", "engines": { - "node": "^18.18.0 || ^20.9.0 || >=21.1.0" + "node": "^20.19.0 || ^22.13.0 || >=24" }, "funding": { "url": "https://eslint.org/donate" + }, + "peerDependencies": { + "eslint": "^10.0.0" + }, + "peerDependenciesMeta": { + "eslint": { + "optional": true + } } }, "node_modules/@eslint/object-schema": { @@ -1788,15 +1795,15 @@ } }, "node_modules/@iptv-org/sdk": { - "version": "1.2.0", - "resolved": "https://registry.npmjs.org/@iptv-org/sdk/-/sdk-1.2.0.tgz", - "integrity": "sha512-eayI7tCcIZJUFgRQ2JFt2yeN8O83fdFWeoX3jSD088HCCEr/dnd7QNogHM2JVOMKQuj32umnUJR5G3cqrcUItg==", + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/@iptv-org/sdk/-/sdk-1.3.0.tgz", + "integrity": "sha512-iSUfH/V6coya2/hoKp8XViQp5tt6DXb/Us9WBPCp7J9TCsKpFmBzFU4kCmBUwxlZDzxxBOpFnqHTxqIW70l4+Q==", "license": "UNLICENSED", "dependencies": { "@freearhey/core": "^0.15.1", "@freearhey/search-js": "^0.2.1", "@ntlab/sfetch": "^1.2.0", - "axios": "^1.11.0", + "axios": "^1.15.0", "dayjs": "^1.11.18" } }, @@ -2864,7 +2871,6 @@ "resolved": "https://registry.npmjs.org/@octokit/core/-/core-7.0.6.tgz", "integrity": "sha512-DhGl4xMVFGVIyMwswXeyzdL4uXD5OGILGX5N8Y+f6W7LhC1Ze2poSNrkF/fedpVDHEEZ+PHFW0vL14I+mm8K3Q==", "license": "MIT", - "peer": true, "dependencies": { "@octokit/auth-token": "^6.0.0", "@octokit/graphql": "^9.0.3", @@ -3269,12 +3275,11 @@ } }, "node_modules/@swc/core": { - "version": "1.15.24", - "resolved": "https://registry.npmjs.org/@swc/core/-/core-1.15.24.tgz", - "integrity": "sha512-5Hj8aNasue7yusUt8LGCUe/AjM7RMAce8ZoyDyiFwx7Al+GbYKL+yE7g4sJk8vEr1dKIkTRARkNIJENc4CjkBQ==", + "version": "1.15.26", + "resolved": "https://registry.npmjs.org/@swc/core/-/core-1.15.26.tgz", + "integrity": "sha512-tglZGyx8N5PC+x1Nd/JrZxqpqlcZoSuG9gTDKO6AuFToFiVB3uS8HvbKFuO7g3lJzvFf9riAb94xs9HU2UhAHQ==", "hasInstallScript": true, "license": "Apache-2.0", - "peer": true, "dependencies": { "@swc/counter": "^0.1.3", "@swc/types": "^0.1.26" @@ -3287,18 +3292,18 @@ "url": "https://opencollective.com/swc" }, "optionalDependencies": { - "@swc/core-darwin-arm64": "1.15.24", - "@swc/core-darwin-x64": "1.15.24", - "@swc/core-linux-arm-gnueabihf": "1.15.24", - "@swc/core-linux-arm64-gnu": "1.15.24", - "@swc/core-linux-arm64-musl": "1.15.24", - "@swc/core-linux-ppc64-gnu": "1.15.24", - "@swc/core-linux-s390x-gnu": "1.15.24", - "@swc/core-linux-x64-gnu": "1.15.24", - "@swc/core-linux-x64-musl": "1.15.24", - "@swc/core-win32-arm64-msvc": "1.15.24", - "@swc/core-win32-ia32-msvc": "1.15.24", - "@swc/core-win32-x64-msvc": "1.15.24" + "@swc/core-darwin-arm64": "1.15.26", + "@swc/core-darwin-x64": "1.15.26", + "@swc/core-linux-arm-gnueabihf": "1.15.26", + "@swc/core-linux-arm64-gnu": "1.15.26", + "@swc/core-linux-arm64-musl": "1.15.26", + "@swc/core-linux-ppc64-gnu": "1.15.26", + "@swc/core-linux-s390x-gnu": "1.15.26", + "@swc/core-linux-x64-gnu": "1.15.26", + "@swc/core-linux-x64-musl": "1.15.26", + "@swc/core-win32-arm64-msvc": "1.15.26", + "@swc/core-win32-ia32-msvc": "1.15.26", + "@swc/core-win32-x64-msvc": "1.15.26" }, "peerDependencies": { "@swc/helpers": ">=0.5.17" @@ -3310,9 +3315,9 @@ } }, "node_modules/@swc/core-darwin-arm64": { - "version": "1.15.24", - "resolved": "https://registry.npmjs.org/@swc/core-darwin-arm64/-/core-darwin-arm64-1.15.24.tgz", - "integrity": "sha512-uM5ZGfFXjtvtJ+fe448PVBEbn/CSxS3UAyLj3O9xOqKIWy3S6hPTXSPbszxkSsGDYKi+YFhzAsR4r/eXLxEQ0g==", + "version": "1.15.26", + "resolved": "https://registry.npmjs.org/@swc/core-darwin-arm64/-/core-darwin-arm64-1.15.26.tgz", + "integrity": "sha512-OmcP96CFsNOwa65tamQayRcfqhNlcQ3YCWOq+0Wb+CAM4uB7kOMrXY41Gj4atthxrGhLQ9pg7Vk26iApb88idA==", "cpu": [ "arm64" ], @@ -3326,9 +3331,9 @@ } }, "node_modules/@swc/core-darwin-x64": { - "version": "1.15.24", - "resolved": "https://registry.npmjs.org/@swc/core-darwin-x64/-/core-darwin-x64-1.15.24.tgz", - "integrity": "sha512-fMIb/Zfn929pw25VMBhV7Ji2Dl+lCWtUPNdYJQYOke+00E5fcQ9ynxtP8+qhUo/HZc+mYQb1gJxwHM9vty+lXg==", + "version": "1.15.26", + "resolved": "https://registry.npmjs.org/@swc/core-darwin-x64/-/core-darwin-x64-1.15.26.tgz", + "integrity": "sha512-liTTTpKSv89ivIxcZ+iU1cRige9Y7JkOjVnJ2Ystzl+DsWNHqt7wLTTgm/u7gEqmmAS2JKryODLQn3q1UtFNPQ==", "cpu": [ "x64" ], @@ -3342,9 +3347,9 @@ } }, "node_modules/@swc/core-linux-arm-gnueabihf": { - "version": "1.15.24", - "resolved": "https://registry.npmjs.org/@swc/core-linux-arm-gnueabihf/-/core-linux-arm-gnueabihf-1.15.24.tgz", - "integrity": "sha512-vOkjsyjjxnoYx3hMEWcGxQrMgnNrRm6WAegBXrN8foHtDAR+zpdhpGF5a4lj1bNPgXAvmysjui8cM1ov/Clkaw==", + "version": "1.15.26", + "resolved": "https://registry.npmjs.org/@swc/core-linux-arm-gnueabihf/-/core-linux-arm-gnueabihf-1.15.26.tgz", + "integrity": "sha512-Y/g+m3I8CeBof5A3kWWOS6QA2HOIUytF5EeTgfwcAK+GKT/tGe7Xqo5svBtaqflU5od2zzbMTWqkinPXgRWGgA==", "cpu": [ "arm" ], @@ -3358,12 +3363,15 @@ } }, "node_modules/@swc/core-linux-arm64-gnu": { - "version": "1.15.24", - "resolved": "https://registry.npmjs.org/@swc/core-linux-arm64-gnu/-/core-linux-arm64-gnu-1.15.24.tgz", - "integrity": "sha512-h/oNu+upkXJ6Cicnq7YGVj9PkdfarLCdQa8l/FlHYvfv8CEiMaeeTnpLU7gSBH/rGxosM6Qkfa/J9mThGF9CLA==", + "version": "1.15.26", + "resolved": "https://registry.npmjs.org/@swc/core-linux-arm64-gnu/-/core-linux-arm64-gnu-1.15.26.tgz", + "integrity": "sha512-19IvwyPfBN/rz9s7qXhOTQmW0922+pjpRUUvIebu+CMM75nX6YuDzHsGx8hSmn5dS89SNaMCh1lgUuXqm++6jg==", "cpu": [ "arm64" ], + "libc": [ + "glibc" + ], "license": "Apache-2.0 AND MIT", "optional": true, "os": [ @@ -3374,12 +3382,15 @@ } }, "node_modules/@swc/core-linux-arm64-musl": { - "version": "1.15.24", - "resolved": "https://registry.npmjs.org/@swc/core-linux-arm64-musl/-/core-linux-arm64-musl-1.15.24.tgz", - "integrity": "sha512-ZpF/pRe1guk6sKzQI9D1jAORtjTdNlyeXn9GDz8ophof/w2WhojRblvSDJaGe7rJjcPN8AaOkhwdRUh7q8oYIg==", + "version": "1.15.26", + "resolved": "https://registry.npmjs.org/@swc/core-linux-arm64-musl/-/core-linux-arm64-musl-1.15.26.tgz", + "integrity": "sha512-iNlbvTIo425rkKzDLLWFJGnFXr3myETUdIDHcjuiPNZE8b0ogmcAuilC4yEJX7FSHGbnlsoJcCT2xf4b3VJmmQ==", "cpu": [ "arm64" ], + "libc": [ + "musl" + ], "license": "Apache-2.0 AND MIT", "optional": true, "os": [ @@ -3390,12 +3401,15 @@ } }, "node_modules/@swc/core-linux-ppc64-gnu": { - "version": "1.15.24", - "resolved": "https://registry.npmjs.org/@swc/core-linux-ppc64-gnu/-/core-linux-ppc64-gnu-1.15.24.tgz", - "integrity": "sha512-QZEsZfisHTSJlmyChgDFNmKPb3W6Lhbfo/O76HhIngfEdnQNmukS38/VSe1feho+xkV5A5hETyCbx3sALBZKAQ==", + "version": "1.15.26", + "resolved": "https://registry.npmjs.org/@swc/core-linux-ppc64-gnu/-/core-linux-ppc64-gnu-1.15.26.tgz", + "integrity": "sha512-AuuEOtG+YXKIjIUup4RsxYNklx6XVB3WKWfhxG6hnfPrn7vp89RNOLbbyyprgj6Sk7k9ulwGVTJElEvmBNPSCA==", "cpu": [ "ppc64" ], + "libc": [ + "glibc" + ], "license": "Apache-2.0 AND MIT", "optional": true, "os": [ @@ -3406,12 +3420,15 @@ } }, "node_modules/@swc/core-linux-s390x-gnu": { - "version": "1.15.24", - "resolved": "https://registry.npmjs.org/@swc/core-linux-s390x-gnu/-/core-linux-s390x-gnu-1.15.24.tgz", - "integrity": "sha512-DLdJKVsJgglqQrJBuoUYNmzm3leI7kUZhLbZGHv42onfKsGf6JDS3+bzCUQfte/XOqDjh/tmmn1DR/CF/tCJFw==", + "version": "1.15.26", + "resolved": "https://registry.npmjs.org/@swc/core-linux-s390x-gnu/-/core-linux-s390x-gnu-1.15.26.tgz", + "integrity": "sha512-JcMDWQvW1BchUyRg8E0jHiTx7CQYpUr5uDEL1dnPDECrEjBEGG2ynmJ3XX70sWXql0JagqR1t3VpANYFWdUnqA==", "cpu": [ "s390x" ], + "libc": [ + "glibc" + ], "license": "Apache-2.0 AND MIT", "optional": true, "os": [ @@ -3422,12 +3439,15 @@ } }, "node_modules/@swc/core-linux-x64-gnu": { - "version": "1.15.24", - "resolved": "https://registry.npmjs.org/@swc/core-linux-x64-gnu/-/core-linux-x64-gnu-1.15.24.tgz", - "integrity": "sha512-IpLYfposPA/XLxYOKpRfeccl1p5dDa3+okZDHHTchBkXEaVCnq5MADPmIWwIYj1tudt7hORsEHccG5no6IUQRw==", + "version": "1.15.26", + "resolved": "https://registry.npmjs.org/@swc/core-linux-x64-gnu/-/core-linux-x64-gnu-1.15.26.tgz", + "integrity": "sha512-FW7V7Mbpq4+PA7BiAq76LJs8MdNuUSylyuRVfQRkhIyeWadFroZ+KOPgjku8Z/fXzngxBRvsk+PGGB0t8mGcjA==", "cpu": [ "x64" ], + "libc": [ + "glibc" + ], "license": "Apache-2.0 AND MIT", "optional": true, "os": [ @@ -3438,12 +3458,15 @@ } }, "node_modules/@swc/core-linux-x64-musl": { - "version": "1.15.24", - "resolved": "https://registry.npmjs.org/@swc/core-linux-x64-musl/-/core-linux-x64-musl-1.15.24.tgz", - "integrity": "sha512-JHy3fMSc0t/EPWgo74+OK5TGr51aElnzqfUPaiRf2qJ/BfX5CUCfMiWVBuhI7qmVMBnk1jTRnL/xZnOSHDPLYg==", + "version": "1.15.26", + "resolved": "https://registry.npmjs.org/@swc/core-linux-x64-musl/-/core-linux-x64-musl-1.15.26.tgz", + "integrity": "sha512-w8erqMHsVcdGwUfJxF6LaiTuPoKnyLOcUbhLcxiXrlLt5MLjtlgcIeUY/NWK/oPoyqkgH+/i8pOJnMTxvl83ZQ==", "cpu": [ "x64" ], + "libc": [ + "musl" + ], "license": "Apache-2.0 AND MIT", "optional": true, "os": [ @@ -3454,9 +3477,9 @@ } }, "node_modules/@swc/core-win32-arm64-msvc": { - "version": "1.15.24", - "resolved": "https://registry.npmjs.org/@swc/core-win32-arm64-msvc/-/core-win32-arm64-msvc-1.15.24.tgz", - "integrity": "sha512-Txj+qUH1z2bUd1P3JvwByfjKFti3cptlAxhWgmunBUUxy/IW3CXLZ6l6Gk4liANadKkU71nIU1X30Z5vpMT3BA==", + "version": "1.15.26", + "resolved": "https://registry.npmjs.org/@swc/core-win32-arm64-msvc/-/core-win32-arm64-msvc-1.15.26.tgz", + "integrity": "sha512-uDCWCNpUiqkbvPmsuPUTn/P7ag9SqNXD2JT/W3dUu7yZ2krzN+nmmoQ2xRX63/J6RYiHI7aT4jo7Z++lsljlPA==", "cpu": [ "arm64" ], @@ -3470,9 +3493,9 @@ } }, "node_modules/@swc/core-win32-ia32-msvc": { - "version": "1.15.24", - "resolved": "https://registry.npmjs.org/@swc/core-win32-ia32-msvc/-/core-win32-ia32-msvc-1.15.24.tgz", - "integrity": "sha512-15D/nl3XwrhFpMv+MADFOiVwv3FvH9j8c6Rf8EXBT3Q5LoMh8YnDnSgPYqw1JzPnksvsBX6QPXLiPqmcR/Z4qQ==", + "version": "1.15.26", + "resolved": "https://registry.npmjs.org/@swc/core-win32-ia32-msvc/-/core-win32-ia32-msvc-1.15.26.tgz", + "integrity": "sha512-2k1ax1QmmqLEnpC0uRCw7OXhBfyvdPqERBXupDasjYbChT6ZSO/uha28Bp38cw0viKIG79L27aTDkbkABsMW3w==", "cpu": [ "ia32" ], @@ -3486,9 +3509,9 @@ } }, "node_modules/@swc/core-win32-x64-msvc": { - "version": "1.15.24", - "resolved": "https://registry.npmjs.org/@swc/core-win32-x64-msvc/-/core-win32-x64-msvc-1.15.24.tgz", - "integrity": "sha512-PR0PlTlPra2JbaDphrOAzm6s0v9rA0F17YzB+XbWD95B4g2cWcZY9LAeTa4xll70VLw9Jr7xBrlohqlQmelMFQ==", + "version": "1.15.26", + "resolved": "https://registry.npmjs.org/@swc/core-win32-x64-msvc/-/core-win32-x64-msvc-1.15.26.tgz", + "integrity": "sha512-aUuYecSEGa4SUSdyCWaI/vk8jdseifYnsF1GZQx2+piL8GIuT/5QrVcFfmes4Iwy7FIVXxtzD063z/FfpZ7K7w==", "cpu": [ "x64" ], @@ -3747,12 +3770,12 @@ } }, "node_modules/@types/node": { - "version": "25.5.2", - "resolved": "https://registry.npmjs.org/@types/node/-/node-25.5.2.tgz", - "integrity": "sha512-tO4ZIRKNC+MDWV4qKVZe3Ql/woTnmHDr5JD8UI5hn2pwBrHEwOEMZK7WlNb5RKB6EoJ02gwmQS9OrjuFnZYdpg==", + "version": "25.6.0", + "resolved": "https://registry.npmjs.org/@types/node/-/node-25.6.0.tgz", + "integrity": "sha512-+qIYRKdNYJwY3vRCZMdJbPLJAtGjQBudzZzdzwQYkEPQd+PJGixUL5QfvCLDaULoLv+RhT3LDkwEfKaAkgSmNQ==", "license": "MIT", "dependencies": { - "undici-types": "~7.18.0" + "undici-types": "~7.19.0" } }, "node_modules/@types/pako": { @@ -3794,16 +3817,16 @@ "integrity": "sha512-iO9ZQHkZxHn4mSakYV0vFHAVDyEOIJQrV2uZ06HxEPcx+mt8swXoZHIbaaJ2crJYFfErySgktuTZ3BeLz+XmFA==" }, "node_modules/@typescript-eslint/eslint-plugin": { - "version": "8.58.1", - "resolved": "https://registry.npmjs.org/@typescript-eslint/eslint-plugin/-/eslint-plugin-8.58.1.tgz", - "integrity": "sha512-eSkwoemjo76bdXl2MYqtxg51HNwUSkWfODUOQ3PaTLZGh9uIWWFZIjyjaJnex7wXDu+TRx+ATsnSxdN9YWfRTQ==", + "version": "8.58.2", + "resolved": "https://registry.npmjs.org/@typescript-eslint/eslint-plugin/-/eslint-plugin-8.58.2.tgz", + "integrity": "sha512-aC2qc5thQahutKjP+cl8cgN9DWe3ZUqVko30CMSZHnFEHyhOYoZSzkGtAI2mcwZ38xeImDucI4dnqsHiOYuuCw==", "license": "MIT", "dependencies": { "@eslint-community/regexpp": "^4.12.2", - "@typescript-eslint/scope-manager": "8.58.1", - "@typescript-eslint/type-utils": "8.58.1", - "@typescript-eslint/utils": "8.58.1", - "@typescript-eslint/visitor-keys": "8.58.1", + "@typescript-eslint/scope-manager": "8.58.2", + "@typescript-eslint/type-utils": "8.58.2", + "@typescript-eslint/utils": "8.58.2", + "@typescript-eslint/visitor-keys": "8.58.2", "ignore": "^7.0.5", "natural-compare": "^1.4.0", "ts-api-utils": "^2.5.0" @@ -3816,7 +3839,7 @@ "url": "https://opencollective.com/typescript-eslint" }, "peerDependencies": { - "@typescript-eslint/parser": "^8.58.1", + "@typescript-eslint/parser": "^8.58.2", "eslint": "^8.57.0 || ^9.0.0 || ^10.0.0", "typescript": ">=4.8.4 <6.1.0" } @@ -3831,16 +3854,15 @@ } }, "node_modules/@typescript-eslint/parser": { - "version": "8.58.1", - "resolved": "https://registry.npmjs.org/@typescript-eslint/parser/-/parser-8.58.1.tgz", - "integrity": "sha512-gGkiNMPqerb2cJSVcruigx9eHBlLG14fSdPdqMoOcBfh+vvn4iCq2C8MzUB89PrxOXk0y3GZ1yIWb9aOzL93bw==", + "version": "8.58.2", + "resolved": "https://registry.npmjs.org/@typescript-eslint/parser/-/parser-8.58.2.tgz", + "integrity": "sha512-/Zb/xaIDfxeJnvishjGdcR4jmr7S+bda8PKNhRGdljDM+elXhlvN0FyPSsMnLmJUrVG9aPO6dof80wjMawsASg==", "license": "MIT", - "peer": true, "dependencies": { - "@typescript-eslint/scope-manager": "8.58.1", - "@typescript-eslint/types": "8.58.1", - "@typescript-eslint/typescript-estree": "8.58.1", - "@typescript-eslint/visitor-keys": "8.58.1", + "@typescript-eslint/scope-manager": "8.58.2", + "@typescript-eslint/types": "8.58.2", + "@typescript-eslint/typescript-estree": "8.58.2", + "@typescript-eslint/visitor-keys": "8.58.2", "debug": "^4.4.3" }, "engines": { @@ -3873,13 +3895,13 @@ } }, "node_modules/@typescript-eslint/project-service": { - "version": "8.58.1", - "resolved": "https://registry.npmjs.org/@typescript-eslint/project-service/-/project-service-8.58.1.tgz", - "integrity": "sha512-gfQ8fk6cxhtptek+/8ZIqw8YrRW5048Gug8Ts5IYcMLCw18iUgrZAEY/D7s4hkI0FxEfGakKuPK/XUMPzPxi5g==", + "version": "8.58.2", + "resolved": "https://registry.npmjs.org/@typescript-eslint/project-service/-/project-service-8.58.2.tgz", + "integrity": "sha512-Cq6UfpZZk15+r87BkIh5rDpi38W4b+Sjnb8wQCPPDDweS/LRCFjCyViEbzHk5Ck3f2QDfgmlxqSa7S7clDtlfg==", "license": "MIT", "dependencies": { - "@typescript-eslint/tsconfig-utils": "^8.58.1", - "@typescript-eslint/types": "^8.58.1", + "@typescript-eslint/tsconfig-utils": "^8.58.2", + "@typescript-eslint/types": "^8.58.2", "debug": "^4.4.3" }, "engines": { @@ -3911,13 +3933,13 @@ } }, "node_modules/@typescript-eslint/scope-manager": { - "version": "8.58.1", - "resolved": "https://registry.npmjs.org/@typescript-eslint/scope-manager/-/scope-manager-8.58.1.tgz", - "integrity": "sha512-TPYUEqJK6avLcEjumWsIuTpuYODTTDAtoMdt8ZZa93uWMTX13Nb8L5leSje1NluammvU+oI3QRr5lLXPgihX3w==", + "version": "8.58.2", + "resolved": "https://registry.npmjs.org/@typescript-eslint/scope-manager/-/scope-manager-8.58.2.tgz", + "integrity": "sha512-SgmyvDPexWETQek+qzZnrG6844IaO02UVyOLhI4wpo82dpZJY9+6YZCKAMFzXb7qhx37mFK1QcPQ18tud+vo6Q==", "license": "MIT", "dependencies": { - "@typescript-eslint/types": "8.58.1", - "@typescript-eslint/visitor-keys": "8.58.1" + "@typescript-eslint/types": "8.58.2", + "@typescript-eslint/visitor-keys": "8.58.2" }, "engines": { "node": "^18.18.0 || ^20.9.0 || >=21.1.0" @@ -3928,9 +3950,9 @@ } }, "node_modules/@typescript-eslint/tsconfig-utils": { - "version": "8.58.1", - "resolved": "https://registry.npmjs.org/@typescript-eslint/tsconfig-utils/-/tsconfig-utils-8.58.1.tgz", - "integrity": "sha512-JAr2hOIct2Q+qk3G+8YFfqkqi7sC86uNryT+2i5HzMa2MPjw4qNFvtjnw1IiA1rP7QhNKVe21mSSLaSjwA1Olw==", + "version": "8.58.2", + "resolved": "https://registry.npmjs.org/@typescript-eslint/tsconfig-utils/-/tsconfig-utils-8.58.2.tgz", + "integrity": "sha512-3SR+RukipDvkkKp/d0jP0dyzuls3DbGmwDpVEc5wqk5f38KFThakqAAO0XMirWAE+kT00oTauTbzMFGPoAzB0A==", "license": "MIT", "engines": { "node": "^18.18.0 || ^20.9.0 || >=21.1.0" @@ -3944,14 +3966,14 @@ } }, "node_modules/@typescript-eslint/type-utils": { - "version": "8.58.1", - "resolved": "https://registry.npmjs.org/@typescript-eslint/type-utils/-/type-utils-8.58.1.tgz", - "integrity": "sha512-HUFxvTJVroT+0rXVJC7eD5zol6ID+Sn5npVPWoFuHGg9Ncq5Q4EYstqR+UOqaNRFXi5TYkpXXkLhoCHe3G0+7w==", + "version": "8.58.2", + "resolved": "https://registry.npmjs.org/@typescript-eslint/type-utils/-/type-utils-8.58.2.tgz", + "integrity": "sha512-Z7EloNR/B389FvabdGeTo2XMs4W9TjtPiO9DAsmT0yom0bwlPyRjkJ1uCdW1DvrrrYP50AJZ9Xc3sByZA9+dcg==", "license": "MIT", "dependencies": { - "@typescript-eslint/types": "8.58.1", - "@typescript-eslint/typescript-estree": "8.58.1", - "@typescript-eslint/utils": "8.58.1", + "@typescript-eslint/types": "8.58.2", + "@typescript-eslint/typescript-estree": "8.58.2", + "@typescript-eslint/utils": "8.58.2", "debug": "^4.4.3", "ts-api-utils": "^2.5.0" }, @@ -3985,9 +4007,9 @@ } }, "node_modules/@typescript-eslint/types": { - "version": "8.58.1", - "resolved": "https://registry.npmjs.org/@typescript-eslint/types/-/types-8.58.1.tgz", - "integrity": "sha512-io/dV5Aw5ezwzfPBBWLoT+5QfVtP8O7q4Kftjn5azJ88bYyp/ZMCsyW1lpKK46EXJcaYMZ1JtYj+s/7TdzmQMw==", + "version": "8.58.2", + "resolved": "https://registry.npmjs.org/@typescript-eslint/types/-/types-8.58.2.tgz", + "integrity": "sha512-9TukXyATBQf/Jq9AMQXfvurk+G5R2MwfqQGDR2GzGz28HvY/lXNKGhkY+6IOubwcquikWk5cjlgPvD2uAA7htQ==", "license": "MIT", "engines": { "node": "^18.18.0 || ^20.9.0 || >=21.1.0" @@ -3998,15 +4020,15 @@ } }, "node_modules/@typescript-eslint/typescript-estree": { - "version": "8.58.1", - "resolved": "https://registry.npmjs.org/@typescript-eslint/typescript-estree/-/typescript-estree-8.58.1.tgz", - "integrity": "sha512-w4w7WR7GHOjqqPnvAYbazq+Y5oS68b9CzasGtnd6jIeOIeKUzYzupGTB2T4LTPSv4d+WPeccbxuneTFHYgAAWg==", + "version": "8.58.2", + "resolved": "https://registry.npmjs.org/@typescript-eslint/typescript-estree/-/typescript-estree-8.58.2.tgz", + "integrity": "sha512-ELGuoofuhhoCvNbQjFFiobFcGgcDCEm0ThWdmO4Z0UzLqPXS3KFvnEZ+SHewwOYHjM09tkzOWXNTv9u6Gqtyuw==", "license": "MIT", "dependencies": { - "@typescript-eslint/project-service": "8.58.1", - "@typescript-eslint/tsconfig-utils": "8.58.1", - "@typescript-eslint/types": "8.58.1", - "@typescript-eslint/visitor-keys": "8.58.1", + "@typescript-eslint/project-service": "8.58.2", + "@typescript-eslint/tsconfig-utils": "8.58.2", + "@typescript-eslint/types": "8.58.2", + "@typescript-eslint/visitor-keys": "8.58.2", "debug": "^4.4.3", "minimatch": "^10.2.2", "semver": "^7.7.3", @@ -4090,15 +4112,15 @@ } }, "node_modules/@typescript-eslint/utils": { - "version": "8.58.1", - "resolved": "https://registry.npmjs.org/@typescript-eslint/utils/-/utils-8.58.1.tgz", - "integrity": "sha512-Ln8R0tmWC7pTtLOzgJzYTXSCjJ9rDNHAqTaVONF4FEi2qwce8mD9iSOxOpLFFvWp/wBFlew0mjM1L1ihYWfBdQ==", + "version": "8.58.2", + "resolved": "https://registry.npmjs.org/@typescript-eslint/utils/-/utils-8.58.2.tgz", + "integrity": "sha512-QZfjHNEzPY8+l0+fIXMvuQ2sJlplB4zgDZvA+NmvZsZv3EQwOcc1DuIU1VJUTWZ/RKouBMhDyNaBMx4sWvrzRA==", "license": "MIT", "dependencies": { "@eslint-community/eslint-utils": "^4.9.1", - "@typescript-eslint/scope-manager": "8.58.1", - "@typescript-eslint/types": "8.58.1", - "@typescript-eslint/typescript-estree": "8.58.1" + "@typescript-eslint/scope-manager": "8.58.2", + "@typescript-eslint/types": "8.58.2", + "@typescript-eslint/typescript-estree": "8.58.2" }, "engines": { "node": "^18.18.0 || ^20.9.0 || >=21.1.0" @@ -4113,12 +4135,12 @@ } }, "node_modules/@typescript-eslint/visitor-keys": { - "version": "8.58.1", - "resolved": "https://registry.npmjs.org/@typescript-eslint/visitor-keys/-/visitor-keys-8.58.1.tgz", - "integrity": "sha512-y+vH7QE8ycjoa0bWciFg7OpFcipUuem1ujhrdLtq1gByKwfbC7bPeKsiny9e0urg93DqwGcHey+bGRKCnF1nZQ==", + "version": "8.58.2", + "resolved": "https://registry.npmjs.org/@typescript-eslint/visitor-keys/-/visitor-keys-8.58.2.tgz", + "integrity": "sha512-f1WO2Lx8a9t8DARmcWAUPJbu0G20bJlj8L4z72K00TMeJAoyLr/tHhI/pzYBLrR4dXWkcxO1cWYZEOX8DKHTqA==", "license": "MIT", "dependencies": { - "@typescript-eslint/types": "8.58.1", + "@typescript-eslint/types": "8.58.2", "eslint-visitor-keys": "^5.0.0" }, "engines": { @@ -4407,7 +4429,6 @@ "resolved": "https://registry.npmjs.org/acorn/-/acorn-8.16.0.tgz", "integrity": "sha512-UVJyE9MttOsBQIDKw1skb9nAwQuR5wuGD3+82K6JgJlm/Y+KI92oNsMNGZCYdDsVtRHSak0pcV5Dno5+4jh9sw==", "license": "MIT", - "peer": true, "bin": { "acorn": "bin/acorn" }, @@ -4595,7 +4616,6 @@ "resolved": "https://registry.npmjs.org/axios/-/axios-1.15.0.tgz", "integrity": "sha512-wWyJDlAatxk30ZJer+GeCWS209sA42X+N5jU2jy6oHTp7ufw8uzUTVFBX9+wTfAlhiJXGS0Bq7X6efruWjuK9Q==", "license": "MIT", - "peer": true, "dependencies": { "follow-redirects": "^1.15.11", "form-data": "^4.0.5", @@ -4969,7 +4989,6 @@ } ], "license": "MIT", - "peer": true, "dependencies": { "baseline-browser-mapping": "^2.10.12", "caniuse-lite": "^1.0.30001782", @@ -6106,18 +6125,17 @@ } }, "node_modules/eslint": { - "version": "10.2.0", - "resolved": "https://registry.npmjs.org/eslint/-/eslint-10.2.0.tgz", - "integrity": "sha512-+L0vBFYGIpSNIt/KWTpFonPrqYvgKw1eUI5Vn7mEogrQcWtWYtNQ7dNqC+px/J0idT3BAkiWrhfS7k+Tum8TUA==", + "version": "10.2.1", + "resolved": "https://registry.npmjs.org/eslint/-/eslint-10.2.1.tgz", + "integrity": "sha512-wiyGaKsDgqXvF40P8mDwiUp/KQjE1FdrIEJsM8PZ3XCiniTMXS3OHWWUe5FI5agoCnr8x4xPrTDZuxsBlNHl+Q==", "license": "MIT", - "peer": true, "dependencies": { "@eslint-community/eslint-utils": "^4.8.0", "@eslint-community/regexpp": "^4.12.2", - "@eslint/config-array": "^0.23.4", - "@eslint/config-helpers": "^0.5.4", - "@eslint/core": "^1.2.0", - "@eslint/plugin-kit": "^0.7.0", + "@eslint/config-array": "^0.23.5", + "@eslint/config-helpers": "^0.5.5", + "@eslint/core": "^1.2.1", + "@eslint/plugin-kit": "^0.7.1", "@humanfs/node": "^0.16.6", "@humanwhocodes/module-importer": "^1.0.1", "@humanwhocodes/retry": "^0.4.2", @@ -6936,9 +6954,9 @@ } }, "node_modules/globals": { - "version": "17.4.0", - "resolved": "https://registry.npmjs.org/globals/-/globals-17.4.0.tgz", - "integrity": "sha512-hjrNztw/VajQwOLsMNT1cbJiH2muO3OROCHnbehc8eY5JyD2gqz4AcMHPqgaOR59DjgUjYAYLeH699g/eWi2jw==", + "version": "17.5.0", + "resolved": "https://registry.npmjs.org/globals/-/globals-17.5.0.tgz", + "integrity": "sha512-qoV+HK2yFl/366t2/Cb3+xxPUo5BuMynomoDmiaZBIdbs+0pYbjfZU+twLhGKp4uCZ/+NbtpVepH5bGCxRyy2g==", "license": "MIT", "engines": { "node": ">=18" @@ -11131,9 +11149,9 @@ } }, "node_modules/tabletojson": { - "version": "4.1.9", - "resolved": "https://registry.npmjs.org/tabletojson/-/tabletojson-4.1.9.tgz", - "integrity": "sha512-/m6LXvhFSPS1DSxfGKtJR1wBuyeYyNsllzSxlsTxX//Xekc32jIxP+Wr8PDHeVHpo6Gb5f7rlZxXQbCfdKXIBQ==", + "version": "4.1.10", + "resolved": "https://registry.npmjs.org/tabletojson/-/tabletojson-4.1.10.tgz", + "integrity": "sha512-hvYEHg+iXpXrlOXXwa9waMJ2hgFPKHxgmHKnoN1lbi6rPcKS1rswMi0fhlqAHxmuz4st9gKcYGbuiKAfftM4wg==", "license": "ISC", "dependencies": { "cheerio": "^1.2.0" @@ -11226,7 +11244,6 @@ "resolved": "https://registry.npmjs.org/picomatch/-/picomatch-4.0.4.tgz", "integrity": "sha512-QP88BAKvMam/3NxH6vj2o21R6MjxZUAd6nlwAS/pnGvN9IVLocLHxGYIzFhg6fUQ+5th6P4dv4eW9jX3DSIj7A==", "license": "MIT", - "peer": true, "engines": { "node": ">=12" }, @@ -11383,11 +11400,10 @@ } }, "node_modules/typescript": { - "version": "6.0.2", - "resolved": "https://registry.npmjs.org/typescript/-/typescript-6.0.2.tgz", - "integrity": "sha512-bGdAIrZ0wiGDo5l8c++HWtbaNCWTS4UTv7RaTH/ThVIgjkveJt83m74bBHMJkuCbslY8ixgLBVZJIOiQlQTjfQ==", + "version": "6.0.3", + "resolved": "https://registry.npmjs.org/typescript/-/typescript-6.0.3.tgz", + "integrity": "sha512-y2TvuxSZPDyQakkFRPZHKFm+KKVqIisdg9/CZwm9ftvKXLP8NRWj38/ODjNbr43SsoXqNuAisEf1GdCxqWcdBw==", "license": "Apache-2.0", - "peer": true, "bin": { "tsc": "bin/tsc", "tsserver": "bin/tsserver" @@ -11406,9 +11422,9 @@ } }, "node_modules/undici-types": { - "version": "7.18.2", - "resolved": "https://registry.npmjs.org/undici-types/-/undici-types-7.18.2.tgz", - "integrity": "sha512-AsuCzffGHJybSaRrmr5eHr81mwJU3kjw6M+uprWvCXiNeN9SOGwQ3Jn8jb8m3Z6izVgknn1R0FTCEAP2QrLY/w==", + "version": "7.19.2", + "resolved": "https://registry.npmjs.org/undici-types/-/undici-types-7.19.2.tgz", + "integrity": "sha512-qYVnV5OEm2AW8cJMCpdV20CDyaN3g0AjDlOGf1OW4iaDEx8MwdtChUp4zu4H0VP3nDRF/8RKWH+IPp9uW0YGZg==", "license": "MIT" }, "node_modules/universal-user-agent": { @@ -11896,7 +11912,6 @@ "version": "7.29.0", "resolved": "https://registry.npmjs.org/@babel/core/-/core-7.29.0.tgz", "integrity": "sha512-CGOfOJqWjg2qW/Mb6zNsDm+u5vFQ8DxXfbM09z69p5Z6+mE1ikP2jUXw+j42Pf1XTYED2Rni5f95npYeuwMDQA==", - "peer": true, "requires": { "@babel/code-frame": "^7.29.0", "@babel/generator": "^7.29.0", @@ -12478,9 +12493,10 @@ } }, "@eslint/js": { - "version": "9.39.4", - "resolved": "https://registry.npmjs.org/@eslint/js/-/js-9.39.4.tgz", - "integrity": "sha512-nE7DEIchvtiFTwBw4Lfbu59PG+kCofhjsKaCWzxTpt4lfRjRMqG6uMBzKXuEcyXhOHoUp9riAm7/aWYGhXZ9cw==" + "version": "10.0.1", + "resolved": "https://registry.npmjs.org/@eslint/js/-/js-10.0.1.tgz", + "integrity": "sha512-zeR9k5pd4gxjZ0abRoIaxdc7I3nDktoXZk2qOv9gCNWx3mVwEn32VRhyLaRsDiJjTs0xq/T8mfPtyuXu7GWBcA==", + "requires": {} }, "@eslint/object-schema": { "version": "3.0.5", @@ -12811,14 +12827,14 @@ "requires": {} }, "@iptv-org/sdk": { - "version": "1.2.0", - "resolved": "https://registry.npmjs.org/@iptv-org/sdk/-/sdk-1.2.0.tgz", - "integrity": "sha512-eayI7tCcIZJUFgRQ2JFt2yeN8O83fdFWeoX3jSD088HCCEr/dnd7QNogHM2JVOMKQuj32umnUJR5G3cqrcUItg==", + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/@iptv-org/sdk/-/sdk-1.3.0.tgz", + "integrity": "sha512-iSUfH/V6coya2/hoKp8XViQp5tt6DXb/Us9WBPCp7J9TCsKpFmBzFU4kCmBUwxlZDzxxBOpFnqHTxqIW70l4+Q==", "requires": { "@freearhey/core": "^0.15.1", "@freearhey/search-js": "^0.2.1", "@ntlab/sfetch": "^1.2.0", - "axios": "^1.11.0", + "axios": "^1.15.0", "dayjs": "^1.11.18" } }, @@ -13583,7 +13599,6 @@ "version": "7.0.6", "resolved": "https://registry.npmjs.org/@octokit/core/-/core-7.0.6.tgz", "integrity": "sha512-DhGl4xMVFGVIyMwswXeyzdL4uXD5OGILGX5N8Y+f6W7LhC1Ze2poSNrkF/fedpVDHEEZ+PHFW0vL14I+mm8K3Q==", - "peer": true, "requires": { "@octokit/auth-token": "^6.0.0", "@octokit/graphql": "^9.0.3", @@ -13882,97 +13897,96 @@ } }, "@swc/core": { - "version": "1.15.24", - "resolved": "https://registry.npmjs.org/@swc/core/-/core-1.15.24.tgz", - "integrity": "sha512-5Hj8aNasue7yusUt8LGCUe/AjM7RMAce8ZoyDyiFwx7Al+GbYKL+yE7g4sJk8vEr1dKIkTRARkNIJENc4CjkBQ==", - "peer": true, + "version": "1.15.26", + "resolved": "https://registry.npmjs.org/@swc/core/-/core-1.15.26.tgz", + "integrity": "sha512-tglZGyx8N5PC+x1Nd/JrZxqpqlcZoSuG9gTDKO6AuFToFiVB3uS8HvbKFuO7g3lJzvFf9riAb94xs9HU2UhAHQ==", "requires": { - "@swc/core-darwin-arm64": "1.15.24", - "@swc/core-darwin-x64": "1.15.24", - "@swc/core-linux-arm-gnueabihf": "1.15.24", - "@swc/core-linux-arm64-gnu": "1.15.24", - "@swc/core-linux-arm64-musl": "1.15.24", - "@swc/core-linux-ppc64-gnu": "1.15.24", - "@swc/core-linux-s390x-gnu": "1.15.24", - "@swc/core-linux-x64-gnu": "1.15.24", - "@swc/core-linux-x64-musl": "1.15.24", - "@swc/core-win32-arm64-msvc": "1.15.24", - "@swc/core-win32-ia32-msvc": "1.15.24", - "@swc/core-win32-x64-msvc": "1.15.24", + "@swc/core-darwin-arm64": "1.15.26", + "@swc/core-darwin-x64": "1.15.26", + "@swc/core-linux-arm-gnueabihf": "1.15.26", + "@swc/core-linux-arm64-gnu": "1.15.26", + "@swc/core-linux-arm64-musl": "1.15.26", + "@swc/core-linux-ppc64-gnu": "1.15.26", + "@swc/core-linux-s390x-gnu": "1.15.26", + "@swc/core-linux-x64-gnu": "1.15.26", + "@swc/core-linux-x64-musl": "1.15.26", + "@swc/core-win32-arm64-msvc": "1.15.26", + "@swc/core-win32-ia32-msvc": "1.15.26", + "@swc/core-win32-x64-msvc": "1.15.26", "@swc/counter": "^0.1.3", "@swc/types": "^0.1.26" } }, "@swc/core-darwin-arm64": { - "version": "1.15.24", - "resolved": "https://registry.npmjs.org/@swc/core-darwin-arm64/-/core-darwin-arm64-1.15.24.tgz", - "integrity": "sha512-uM5ZGfFXjtvtJ+fe448PVBEbn/CSxS3UAyLj3O9xOqKIWy3S6hPTXSPbszxkSsGDYKi+YFhzAsR4r/eXLxEQ0g==", + "version": "1.15.26", + "resolved": "https://registry.npmjs.org/@swc/core-darwin-arm64/-/core-darwin-arm64-1.15.26.tgz", + "integrity": "sha512-OmcP96CFsNOwa65tamQayRcfqhNlcQ3YCWOq+0Wb+CAM4uB7kOMrXY41Gj4atthxrGhLQ9pg7Vk26iApb88idA==", "optional": true }, "@swc/core-darwin-x64": { - "version": "1.15.24", - "resolved": "https://registry.npmjs.org/@swc/core-darwin-x64/-/core-darwin-x64-1.15.24.tgz", - "integrity": "sha512-fMIb/Zfn929pw25VMBhV7Ji2Dl+lCWtUPNdYJQYOke+00E5fcQ9ynxtP8+qhUo/HZc+mYQb1gJxwHM9vty+lXg==", + "version": "1.15.26", + "resolved": "https://registry.npmjs.org/@swc/core-darwin-x64/-/core-darwin-x64-1.15.26.tgz", + "integrity": "sha512-liTTTpKSv89ivIxcZ+iU1cRige9Y7JkOjVnJ2Ystzl+DsWNHqt7wLTTgm/u7gEqmmAS2JKryODLQn3q1UtFNPQ==", "optional": true }, "@swc/core-linux-arm-gnueabihf": { - "version": "1.15.24", - "resolved": "https://registry.npmjs.org/@swc/core-linux-arm-gnueabihf/-/core-linux-arm-gnueabihf-1.15.24.tgz", - "integrity": "sha512-vOkjsyjjxnoYx3hMEWcGxQrMgnNrRm6WAegBXrN8foHtDAR+zpdhpGF5a4lj1bNPgXAvmysjui8cM1ov/Clkaw==", + "version": "1.15.26", + "resolved": "https://registry.npmjs.org/@swc/core-linux-arm-gnueabihf/-/core-linux-arm-gnueabihf-1.15.26.tgz", + "integrity": "sha512-Y/g+m3I8CeBof5A3kWWOS6QA2HOIUytF5EeTgfwcAK+GKT/tGe7Xqo5svBtaqflU5od2zzbMTWqkinPXgRWGgA==", "optional": true }, "@swc/core-linux-arm64-gnu": { - "version": "1.15.24", - "resolved": "https://registry.npmjs.org/@swc/core-linux-arm64-gnu/-/core-linux-arm64-gnu-1.15.24.tgz", - "integrity": "sha512-h/oNu+upkXJ6Cicnq7YGVj9PkdfarLCdQa8l/FlHYvfv8CEiMaeeTnpLU7gSBH/rGxosM6Qkfa/J9mThGF9CLA==", + "version": "1.15.26", + "resolved": "https://registry.npmjs.org/@swc/core-linux-arm64-gnu/-/core-linux-arm64-gnu-1.15.26.tgz", + "integrity": "sha512-19IvwyPfBN/rz9s7qXhOTQmW0922+pjpRUUvIebu+CMM75nX6YuDzHsGx8hSmn5dS89SNaMCh1lgUuXqm++6jg==", "optional": true }, "@swc/core-linux-arm64-musl": { - "version": "1.15.24", - "resolved": "https://registry.npmjs.org/@swc/core-linux-arm64-musl/-/core-linux-arm64-musl-1.15.24.tgz", - "integrity": "sha512-ZpF/pRe1guk6sKzQI9D1jAORtjTdNlyeXn9GDz8ophof/w2WhojRblvSDJaGe7rJjcPN8AaOkhwdRUh7q8oYIg==", + "version": "1.15.26", + "resolved": "https://registry.npmjs.org/@swc/core-linux-arm64-musl/-/core-linux-arm64-musl-1.15.26.tgz", + "integrity": "sha512-iNlbvTIo425rkKzDLLWFJGnFXr3myETUdIDHcjuiPNZE8b0ogmcAuilC4yEJX7FSHGbnlsoJcCT2xf4b3VJmmQ==", "optional": true }, "@swc/core-linux-ppc64-gnu": { - "version": "1.15.24", - "resolved": "https://registry.npmjs.org/@swc/core-linux-ppc64-gnu/-/core-linux-ppc64-gnu-1.15.24.tgz", - "integrity": "sha512-QZEsZfisHTSJlmyChgDFNmKPb3W6Lhbfo/O76HhIngfEdnQNmukS38/VSe1feho+xkV5A5hETyCbx3sALBZKAQ==", + "version": "1.15.26", + "resolved": "https://registry.npmjs.org/@swc/core-linux-ppc64-gnu/-/core-linux-ppc64-gnu-1.15.26.tgz", + "integrity": "sha512-AuuEOtG+YXKIjIUup4RsxYNklx6XVB3WKWfhxG6hnfPrn7vp89RNOLbbyyprgj6Sk7k9ulwGVTJElEvmBNPSCA==", "optional": true }, "@swc/core-linux-s390x-gnu": { - "version": "1.15.24", - "resolved": "https://registry.npmjs.org/@swc/core-linux-s390x-gnu/-/core-linux-s390x-gnu-1.15.24.tgz", - "integrity": "sha512-DLdJKVsJgglqQrJBuoUYNmzm3leI7kUZhLbZGHv42onfKsGf6JDS3+bzCUQfte/XOqDjh/tmmn1DR/CF/tCJFw==", + "version": "1.15.26", + "resolved": "https://registry.npmjs.org/@swc/core-linux-s390x-gnu/-/core-linux-s390x-gnu-1.15.26.tgz", + "integrity": "sha512-JcMDWQvW1BchUyRg8E0jHiTx7CQYpUr5uDEL1dnPDECrEjBEGG2ynmJ3XX70sWXql0JagqR1t3VpANYFWdUnqA==", "optional": true }, "@swc/core-linux-x64-gnu": { - "version": "1.15.24", - "resolved": "https://registry.npmjs.org/@swc/core-linux-x64-gnu/-/core-linux-x64-gnu-1.15.24.tgz", - "integrity": "sha512-IpLYfposPA/XLxYOKpRfeccl1p5dDa3+okZDHHTchBkXEaVCnq5MADPmIWwIYj1tudt7hORsEHccG5no6IUQRw==", + "version": "1.15.26", + "resolved": "https://registry.npmjs.org/@swc/core-linux-x64-gnu/-/core-linux-x64-gnu-1.15.26.tgz", + "integrity": "sha512-FW7V7Mbpq4+PA7BiAq76LJs8MdNuUSylyuRVfQRkhIyeWadFroZ+KOPgjku8Z/fXzngxBRvsk+PGGB0t8mGcjA==", "optional": true }, "@swc/core-linux-x64-musl": { - "version": "1.15.24", - "resolved": "https://registry.npmjs.org/@swc/core-linux-x64-musl/-/core-linux-x64-musl-1.15.24.tgz", - "integrity": "sha512-JHy3fMSc0t/EPWgo74+OK5TGr51aElnzqfUPaiRf2qJ/BfX5CUCfMiWVBuhI7qmVMBnk1jTRnL/xZnOSHDPLYg==", + "version": "1.15.26", + "resolved": "https://registry.npmjs.org/@swc/core-linux-x64-musl/-/core-linux-x64-musl-1.15.26.tgz", + "integrity": "sha512-w8erqMHsVcdGwUfJxF6LaiTuPoKnyLOcUbhLcxiXrlLt5MLjtlgcIeUY/NWK/oPoyqkgH+/i8pOJnMTxvl83ZQ==", "optional": true }, "@swc/core-win32-arm64-msvc": { - "version": "1.15.24", - "resolved": "https://registry.npmjs.org/@swc/core-win32-arm64-msvc/-/core-win32-arm64-msvc-1.15.24.tgz", - "integrity": "sha512-Txj+qUH1z2bUd1P3JvwByfjKFti3cptlAxhWgmunBUUxy/IW3CXLZ6l6Gk4liANadKkU71nIU1X30Z5vpMT3BA==", + "version": "1.15.26", + "resolved": "https://registry.npmjs.org/@swc/core-win32-arm64-msvc/-/core-win32-arm64-msvc-1.15.26.tgz", + "integrity": "sha512-uDCWCNpUiqkbvPmsuPUTn/P7ag9SqNXD2JT/W3dUu7yZ2krzN+nmmoQ2xRX63/J6RYiHI7aT4jo7Z++lsljlPA==", "optional": true }, "@swc/core-win32-ia32-msvc": { - "version": "1.15.24", - "resolved": "https://registry.npmjs.org/@swc/core-win32-ia32-msvc/-/core-win32-ia32-msvc-1.15.24.tgz", - "integrity": "sha512-15D/nl3XwrhFpMv+MADFOiVwv3FvH9j8c6Rf8EXBT3Q5LoMh8YnDnSgPYqw1JzPnksvsBX6QPXLiPqmcR/Z4qQ==", + "version": "1.15.26", + "resolved": "https://registry.npmjs.org/@swc/core-win32-ia32-msvc/-/core-win32-ia32-msvc-1.15.26.tgz", + "integrity": "sha512-2k1ax1QmmqLEnpC0uRCw7OXhBfyvdPqERBXupDasjYbChT6ZSO/uha28Bp38cw0viKIG79L27aTDkbkABsMW3w==", "optional": true }, "@swc/core-win32-x64-msvc": { - "version": "1.15.24", - "resolved": "https://registry.npmjs.org/@swc/core-win32-x64-msvc/-/core-win32-x64-msvc-1.15.24.tgz", - "integrity": "sha512-PR0PlTlPra2JbaDphrOAzm6s0v9rA0F17YzB+XbWD95B4g2cWcZY9LAeTa4xll70VLw9Jr7xBrlohqlQmelMFQ==", + "version": "1.15.26", + "resolved": "https://registry.npmjs.org/@swc/core-win32-x64-msvc/-/core-win32-x64-msvc-1.15.26.tgz", + "integrity": "sha512-aUuYecSEGa4SUSdyCWaI/vk8jdseifYnsF1GZQx2+piL8GIuT/5QrVcFfmes4Iwy7FIVXxtzD063z/FfpZ7K7w==", "optional": true }, "@swc/counter": { @@ -14192,11 +14206,11 @@ } }, "@types/node": { - "version": "25.5.2", - "resolved": "https://registry.npmjs.org/@types/node/-/node-25.5.2.tgz", - "integrity": "sha512-tO4ZIRKNC+MDWV4qKVZe3Ql/woTnmHDr5JD8UI5hn2pwBrHEwOEMZK7WlNb5RKB6EoJ02gwmQS9OrjuFnZYdpg==", + "version": "25.6.0", + "resolved": "https://registry.npmjs.org/@types/node/-/node-25.6.0.tgz", + "integrity": "sha512-+qIYRKdNYJwY3vRCZMdJbPLJAtGjQBudzZzdzwQYkEPQd+PJGixUL5QfvCLDaULoLv+RhT3LDkwEfKaAkgSmNQ==", "requires": { - "undici-types": "~7.18.0" + "undici-types": "~7.19.0" } }, "@types/pako": { @@ -14236,15 +14250,15 @@ "integrity": "sha512-iO9ZQHkZxHn4mSakYV0vFHAVDyEOIJQrV2uZ06HxEPcx+mt8swXoZHIbaaJ2crJYFfErySgktuTZ3BeLz+XmFA==" }, "@typescript-eslint/eslint-plugin": { - "version": "8.58.1", - "resolved": "https://registry.npmjs.org/@typescript-eslint/eslint-plugin/-/eslint-plugin-8.58.1.tgz", - "integrity": "sha512-eSkwoemjo76bdXl2MYqtxg51HNwUSkWfODUOQ3PaTLZGh9uIWWFZIjyjaJnex7wXDu+TRx+ATsnSxdN9YWfRTQ==", + "version": "8.58.2", + "resolved": "https://registry.npmjs.org/@typescript-eslint/eslint-plugin/-/eslint-plugin-8.58.2.tgz", + "integrity": "sha512-aC2qc5thQahutKjP+cl8cgN9DWe3ZUqVko30CMSZHnFEHyhOYoZSzkGtAI2mcwZ38xeImDucI4dnqsHiOYuuCw==", "requires": { "@eslint-community/regexpp": "^4.12.2", - "@typescript-eslint/scope-manager": "8.58.1", - "@typescript-eslint/type-utils": "8.58.1", - "@typescript-eslint/utils": "8.58.1", - "@typescript-eslint/visitor-keys": "8.58.1", + "@typescript-eslint/scope-manager": "8.58.2", + "@typescript-eslint/type-utils": "8.58.2", + "@typescript-eslint/utils": "8.58.2", + "@typescript-eslint/visitor-keys": "8.58.2", "ignore": "^7.0.5", "natural-compare": "^1.4.0", "ts-api-utils": "^2.5.0" @@ -14258,15 +14272,14 @@ } }, "@typescript-eslint/parser": { - "version": "8.58.1", - "resolved": "https://registry.npmjs.org/@typescript-eslint/parser/-/parser-8.58.1.tgz", - "integrity": "sha512-gGkiNMPqerb2cJSVcruigx9eHBlLG14fSdPdqMoOcBfh+vvn4iCq2C8MzUB89PrxOXk0y3GZ1yIWb9aOzL93bw==", - "peer": true, + "version": "8.58.2", + "resolved": "https://registry.npmjs.org/@typescript-eslint/parser/-/parser-8.58.2.tgz", + "integrity": "sha512-/Zb/xaIDfxeJnvishjGdcR4jmr7S+bda8PKNhRGdljDM+elXhlvN0FyPSsMnLmJUrVG9aPO6dof80wjMawsASg==", "requires": { - "@typescript-eslint/scope-manager": "8.58.1", - "@typescript-eslint/types": "8.58.1", - "@typescript-eslint/typescript-estree": "8.58.1", - "@typescript-eslint/visitor-keys": "8.58.1", + "@typescript-eslint/scope-manager": "8.58.2", + "@typescript-eslint/types": "8.58.2", + "@typescript-eslint/typescript-estree": "8.58.2", + "@typescript-eslint/visitor-keys": "8.58.2", "debug": "^4.4.3" }, "dependencies": { @@ -14281,12 +14294,12 @@ } }, "@typescript-eslint/project-service": { - "version": "8.58.1", - "resolved": "https://registry.npmjs.org/@typescript-eslint/project-service/-/project-service-8.58.1.tgz", - "integrity": "sha512-gfQ8fk6cxhtptek+/8ZIqw8YrRW5048Gug8Ts5IYcMLCw18iUgrZAEY/D7s4hkI0FxEfGakKuPK/XUMPzPxi5g==", + "version": "8.58.2", + "resolved": "https://registry.npmjs.org/@typescript-eslint/project-service/-/project-service-8.58.2.tgz", + "integrity": "sha512-Cq6UfpZZk15+r87BkIh5rDpi38W4b+Sjnb8wQCPPDDweS/LRCFjCyViEbzHk5Ck3f2QDfgmlxqSa7S7clDtlfg==", "requires": { - "@typescript-eslint/tsconfig-utils": "^8.58.1", - "@typescript-eslint/types": "^8.58.1", + "@typescript-eslint/tsconfig-utils": "^8.58.2", + "@typescript-eslint/types": "^8.58.2", "debug": "^4.4.3" }, "dependencies": { @@ -14301,28 +14314,28 @@ } }, "@typescript-eslint/scope-manager": { - "version": "8.58.1", - "resolved": "https://registry.npmjs.org/@typescript-eslint/scope-manager/-/scope-manager-8.58.1.tgz", - "integrity": "sha512-TPYUEqJK6avLcEjumWsIuTpuYODTTDAtoMdt8ZZa93uWMTX13Nb8L5leSje1NluammvU+oI3QRr5lLXPgihX3w==", + "version": "8.58.2", + "resolved": "https://registry.npmjs.org/@typescript-eslint/scope-manager/-/scope-manager-8.58.2.tgz", + "integrity": "sha512-SgmyvDPexWETQek+qzZnrG6844IaO02UVyOLhI4wpo82dpZJY9+6YZCKAMFzXb7qhx37mFK1QcPQ18tud+vo6Q==", "requires": { - "@typescript-eslint/types": "8.58.1", - "@typescript-eslint/visitor-keys": "8.58.1" + "@typescript-eslint/types": "8.58.2", + "@typescript-eslint/visitor-keys": "8.58.2" } }, "@typescript-eslint/tsconfig-utils": { - "version": "8.58.1", - "resolved": "https://registry.npmjs.org/@typescript-eslint/tsconfig-utils/-/tsconfig-utils-8.58.1.tgz", - "integrity": "sha512-JAr2hOIct2Q+qk3G+8YFfqkqi7sC86uNryT+2i5HzMa2MPjw4qNFvtjnw1IiA1rP7QhNKVe21mSSLaSjwA1Olw==", + "version": "8.58.2", + "resolved": "https://registry.npmjs.org/@typescript-eslint/tsconfig-utils/-/tsconfig-utils-8.58.2.tgz", + "integrity": "sha512-3SR+RukipDvkkKp/d0jP0dyzuls3DbGmwDpVEc5wqk5f38KFThakqAAO0XMirWAE+kT00oTauTbzMFGPoAzB0A==", "requires": {} }, "@typescript-eslint/type-utils": { - "version": "8.58.1", - "resolved": "https://registry.npmjs.org/@typescript-eslint/type-utils/-/type-utils-8.58.1.tgz", - "integrity": "sha512-HUFxvTJVroT+0rXVJC7eD5zol6ID+Sn5npVPWoFuHGg9Ncq5Q4EYstqR+UOqaNRFXi5TYkpXXkLhoCHe3G0+7w==", + "version": "8.58.2", + "resolved": "https://registry.npmjs.org/@typescript-eslint/type-utils/-/type-utils-8.58.2.tgz", + "integrity": "sha512-Z7EloNR/B389FvabdGeTo2XMs4W9TjtPiO9DAsmT0yom0bwlPyRjkJ1uCdW1DvrrrYP50AJZ9Xc3sByZA9+dcg==", "requires": { - "@typescript-eslint/types": "8.58.1", - "@typescript-eslint/typescript-estree": "8.58.1", - "@typescript-eslint/utils": "8.58.1", + "@typescript-eslint/types": "8.58.2", + "@typescript-eslint/typescript-estree": "8.58.2", + "@typescript-eslint/utils": "8.58.2", "debug": "^4.4.3", "ts-api-utils": "^2.5.0" }, @@ -14338,19 +14351,19 @@ } }, "@typescript-eslint/types": { - "version": "8.58.1", - "resolved": "https://registry.npmjs.org/@typescript-eslint/types/-/types-8.58.1.tgz", - "integrity": "sha512-io/dV5Aw5ezwzfPBBWLoT+5QfVtP8O7q4Kftjn5azJ88bYyp/ZMCsyW1lpKK46EXJcaYMZ1JtYj+s/7TdzmQMw==" + "version": "8.58.2", + "resolved": "https://registry.npmjs.org/@typescript-eslint/types/-/types-8.58.2.tgz", + "integrity": "sha512-9TukXyATBQf/Jq9AMQXfvurk+G5R2MwfqQGDR2GzGz28HvY/lXNKGhkY+6IOubwcquikWk5cjlgPvD2uAA7htQ==" }, "@typescript-eslint/typescript-estree": { - "version": "8.58.1", - "resolved": "https://registry.npmjs.org/@typescript-eslint/typescript-estree/-/typescript-estree-8.58.1.tgz", - "integrity": "sha512-w4w7WR7GHOjqqPnvAYbazq+Y5oS68b9CzasGtnd6jIeOIeKUzYzupGTB2T4LTPSv4d+WPeccbxuneTFHYgAAWg==", + "version": "8.58.2", + "resolved": "https://registry.npmjs.org/@typescript-eslint/typescript-estree/-/typescript-estree-8.58.2.tgz", + "integrity": "sha512-ELGuoofuhhoCvNbQjFFiobFcGgcDCEm0ThWdmO4Z0UzLqPXS3KFvnEZ+SHewwOYHjM09tkzOWXNTv9u6Gqtyuw==", "requires": { - "@typescript-eslint/project-service": "8.58.1", - "@typescript-eslint/tsconfig-utils": "8.58.1", - "@typescript-eslint/types": "8.58.1", - "@typescript-eslint/visitor-keys": "8.58.1", + "@typescript-eslint/project-service": "8.58.2", + "@typescript-eslint/tsconfig-utils": "8.58.2", + "@typescript-eslint/types": "8.58.2", + "@typescript-eslint/visitor-keys": "8.58.2", "debug": "^4.4.3", "minimatch": "^10.2.2", "semver": "^7.7.3", @@ -14395,22 +14408,22 @@ } }, "@typescript-eslint/utils": { - "version": "8.58.1", - "resolved": "https://registry.npmjs.org/@typescript-eslint/utils/-/utils-8.58.1.tgz", - "integrity": "sha512-Ln8R0tmWC7pTtLOzgJzYTXSCjJ9rDNHAqTaVONF4FEi2qwce8mD9iSOxOpLFFvWp/wBFlew0mjM1L1ihYWfBdQ==", + "version": "8.58.2", + "resolved": "https://registry.npmjs.org/@typescript-eslint/utils/-/utils-8.58.2.tgz", + "integrity": "sha512-QZfjHNEzPY8+l0+fIXMvuQ2sJlplB4zgDZvA+NmvZsZv3EQwOcc1DuIU1VJUTWZ/RKouBMhDyNaBMx4sWvrzRA==", "requires": { "@eslint-community/eslint-utils": "^4.9.1", - "@typescript-eslint/scope-manager": "8.58.1", - "@typescript-eslint/types": "8.58.1", - "@typescript-eslint/typescript-estree": "8.58.1" + "@typescript-eslint/scope-manager": "8.58.2", + "@typescript-eslint/types": "8.58.2", + "@typescript-eslint/typescript-estree": "8.58.2" } }, "@typescript-eslint/visitor-keys": { - "version": "8.58.1", - "resolved": "https://registry.npmjs.org/@typescript-eslint/visitor-keys/-/visitor-keys-8.58.1.tgz", - "integrity": "sha512-y+vH7QE8ycjoa0bWciFg7OpFcipUuem1ujhrdLtq1gByKwfbC7bPeKsiny9e0urg93DqwGcHey+bGRKCnF1nZQ==", + "version": "8.58.2", + "resolved": "https://registry.npmjs.org/@typescript-eslint/visitor-keys/-/visitor-keys-8.58.2.tgz", + "integrity": "sha512-f1WO2Lx8a9t8DARmcWAUPJbu0G20bJlj8L4z72K00TMeJAoyLr/tHhI/pzYBLrR4dXWkcxO1cWYZEOX8DKHTqA==", "requires": { - "@typescript-eslint/types": "8.58.1", + "@typescript-eslint/types": "8.58.2", "eslint-visitor-keys": "^5.0.0" }, "dependencies": { @@ -14551,8 +14564,7 @@ "acorn": { "version": "8.16.0", "resolved": "https://registry.npmjs.org/acorn/-/acorn-8.16.0.tgz", - "integrity": "sha512-UVJyE9MttOsBQIDKw1skb9nAwQuR5wuGD3+82K6JgJlm/Y+KI92oNsMNGZCYdDsVtRHSak0pcV5Dno5+4jh9sw==", - "peer": true + "integrity": "sha512-UVJyE9MttOsBQIDKw1skb9nAwQuR5wuGD3+82K6JgJlm/Y+KI92oNsMNGZCYdDsVtRHSak0pcV5Dno5+4jh9sw==" }, "acorn-jsx": { "version": "5.3.2", @@ -14674,7 +14686,6 @@ "version": "1.15.0", "resolved": "https://registry.npmjs.org/axios/-/axios-1.15.0.tgz", "integrity": "sha512-wWyJDlAatxk30ZJer+GeCWS209sA42X+N5jU2jy6oHTp7ufw8uzUTVFBX9+wTfAlhiJXGS0Bq7X6efruWjuK9Q==", - "peer": true, "requires": { "follow-redirects": "^1.15.11", "form-data": "^4.0.5", @@ -14916,7 +14927,6 @@ "version": "4.28.2", "resolved": "https://registry.npmjs.org/browserslist/-/browserslist-4.28.2.tgz", "integrity": "sha512-48xSriZYYg+8qXna9kwqjIVzuQxi+KYWp2+5nCYnYKPTr0LvD89Jqk2Or5ogxz0NUMfIjhh2lIUX/LyX9B4oIg==", - "peer": true, "requires": { "baseline-browser-mapping": "^2.10.12", "caniuse-lite": "^1.0.30001782", @@ -15707,17 +15717,16 @@ } }, "eslint": { - "version": "10.2.0", - "resolved": "https://registry.npmjs.org/eslint/-/eslint-10.2.0.tgz", - "integrity": "sha512-+L0vBFYGIpSNIt/KWTpFonPrqYvgKw1eUI5Vn7mEogrQcWtWYtNQ7dNqC+px/J0idT3BAkiWrhfS7k+Tum8TUA==", - "peer": true, + "version": "10.2.1", + "resolved": "https://registry.npmjs.org/eslint/-/eslint-10.2.1.tgz", + "integrity": "sha512-wiyGaKsDgqXvF40P8mDwiUp/KQjE1FdrIEJsM8PZ3XCiniTMXS3OHWWUe5FI5agoCnr8x4xPrTDZuxsBlNHl+Q==", "requires": { "@eslint-community/eslint-utils": "^4.8.0", "@eslint-community/regexpp": "^4.12.2", - "@eslint/config-array": "^0.23.4", - "@eslint/config-helpers": "^0.5.4", - "@eslint/core": "^1.2.0", - "@eslint/plugin-kit": "^0.7.0", + "@eslint/config-array": "^0.23.5", + "@eslint/config-helpers": "^0.5.5", + "@eslint/core": "^1.2.1", + "@eslint/plugin-kit": "^0.7.1", "@humanfs/node": "^0.16.6", "@humanwhocodes/module-importer": "^1.0.1", "@humanwhocodes/retry": "^0.4.2", @@ -16235,9 +16244,9 @@ } }, "globals": { - "version": "17.4.0", - "resolved": "https://registry.npmjs.org/globals/-/globals-17.4.0.tgz", - "integrity": "sha512-hjrNztw/VajQwOLsMNT1cbJiH2muO3OROCHnbehc8eY5JyD2gqz4AcMHPqgaOR59DjgUjYAYLeH699g/eWi2jw==" + "version": "17.5.0", + "resolved": "https://registry.npmjs.org/globals/-/globals-17.5.0.tgz", + "integrity": "sha512-qoV+HK2yFl/366t2/Cb3+xxPUo5BuMynomoDmiaZBIdbs+0pYbjfZU+twLhGKp4uCZ/+NbtpVepH5bGCxRyy2g==" }, "gopd": { "version": "1.2.0", @@ -19082,9 +19091,9 @@ } }, "tabletojson": { - "version": "4.1.9", - "resolved": "https://registry.npmjs.org/tabletojson/-/tabletojson-4.1.9.tgz", - "integrity": "sha512-/m6LXvhFSPS1DSxfGKtJR1wBuyeYyNsllzSxlsTxX//Xekc32jIxP+Wr8PDHeVHpo6Gb5f7rlZxXQbCfdKXIBQ==", + "version": "4.1.10", + "resolved": "https://registry.npmjs.org/tabletojson/-/tabletojson-4.1.10.tgz", + "integrity": "sha512-hvYEHg+iXpXrlOXXwa9waMJ2hgFPKHxgmHKnoN1lbi6rPcKS1rswMi0fhlqAHxmuz4st9gKcYGbuiKAfftM4wg==", "requires": { "cheerio": "^1.2.0" } @@ -19142,8 +19151,7 @@ "picomatch": { "version": "4.0.4", "resolved": "https://registry.npmjs.org/picomatch/-/picomatch-4.0.4.tgz", - "integrity": "sha512-QP88BAKvMam/3NxH6vj2o21R6MjxZUAd6nlwAS/pnGvN9IVLocLHxGYIzFhg6fUQ+5th6P4dv4eW9jX3DSIj7A==", - "peer": true + "integrity": "sha512-QP88BAKvMam/3NxH6vj2o21R6MjxZUAd6nlwAS/pnGvN9IVLocLHxGYIzFhg6fUQ+5th6P4dv4eW9jX3DSIj7A==" } } }, @@ -19245,10 +19253,9 @@ "integrity": "sha512-t0rzBq87m3fVcduHDUFhKmyyX+9eo6WQjZvf51Ea/M0Q7+T374Jp1aUiyUl0GKxp8M/OETVHSDvmkyPgvX+X2w==" }, "typescript": { - "version": "6.0.2", - "resolved": "https://registry.npmjs.org/typescript/-/typescript-6.0.2.tgz", - "integrity": "sha512-bGdAIrZ0wiGDo5l8c++HWtbaNCWTS4UTv7RaTH/ThVIgjkveJt83m74bBHMJkuCbslY8ixgLBVZJIOiQlQTjfQ==", - "peer": true + "version": "6.0.3", + "resolved": "https://registry.npmjs.org/typescript/-/typescript-6.0.3.tgz", + "integrity": "sha512-y2TvuxSZPDyQakkFRPZHKFm+KKVqIisdg9/CZwm9ftvKXLP8NRWj38/ODjNbr43SsoXqNuAisEf1GdCxqWcdBw==" }, "undici": { "version": "7.24.7", @@ -19256,9 +19263,9 @@ "integrity": "sha512-H/nlJ/h0ggGC+uRL3ovD+G0i4bqhvsDOpbDv7At5eFLlj2b41L8QliGbnl2H7SnDiYhENphh1tQFJZf+MyfLsQ==" }, "undici-types": { - "version": "7.18.2", - "resolved": "https://registry.npmjs.org/undici-types/-/undici-types-7.18.2.tgz", - "integrity": "sha512-AsuCzffGHJybSaRrmr5eHr81mwJU3kjw6M+uprWvCXiNeN9SOGwQ3Jn8jb8m3Z6izVgknn1R0FTCEAP2QrLY/w==" + "version": "7.19.2", + "resolved": "https://registry.npmjs.org/undici-types/-/undici-types-7.19.2.tgz", + "integrity": "sha512-qYVnV5OEm2AW8cJMCpdV20CDyaN3g0AjDlOGf1OW4iaDEx8MwdtChUp4zu4H0VP3nDRF/8RKWH+IPp9uW0YGZg==" }, "universal-user-agent": { "version": "7.0.3", diff --git a/package.json b/package.json index 7c1108025..ea3e7a07a 100644 --- a/package.json +++ b/package.json @@ -37,18 +37,18 @@ }, "dependencies": { "@eslint/eslintrc": "^3.3.5", - "@eslint/js": "^9.39.4", + "@eslint/js": "^10.0.1", "@freearhey/chronos": "^0.0.1", "@freearhey/core": "^0.15.2", "@freearhey/search-js": "^0.2.1", "@freearhey/storage-js": "^0.2.0", - "@iptv-org/sdk": "^1.2.0", + "@iptv-org/sdk": "^1.3.0", "@ntlab/sfetch": "^1.2.0", "@octokit/core": "^7.0.6", "@octokit/plugin-paginate-rest": "^14.0.0", "@octokit/plugin-rest-endpoint-methods": "^17.0.0", "@stylistic/eslint-plugin": "^5.10.0", - "@swc/core": "^1.15.24", + "@swc/core": "^1.15.26", "@swc/jest": "^0.2.39", "@types/cli-progress": "^3.11.6", "@types/fs-extra": "^11.0.4", @@ -60,10 +60,10 @@ "@types/lodash.sortby": "^4.7.9", "@types/lodash.startcase": "^4.4.9", "@types/lodash.uniqby": "^4.7.9", - "@types/node": "^25.5.2", + "@types/node": "^25.6.0", "@types/pako": "^2.0.4", - "@typescript-eslint/eslint-plugin": "^8.58.1", - "@typescript-eslint/parser": "^8.58.1", + "@typescript-eslint/eslint-plugin": "^8.58.2", + "@typescript-eslint/parser": "^8.58.2", "axios": "^1.15.0", "chalk": "^5.6.2", "cheerio": "^1.2.0", @@ -76,11 +76,11 @@ "dayjs": "^1.11.20", "epg-grabber": "^0.46.1", "epg-parser": "^0.5.0", - "eslint": "^10.2.0", + "eslint": "^10.2.1", "eslint-config-prettier": "^10.1.8", "fs-extra": "^11.3.4", "glob": "^13.0.6", - "globals": "^17.4.0", + "globals": "^17.5.0", "husky": "^9.1.7", "iconv-lite": "^0.7.2", "inquirer": "^13.4.1", @@ -101,10 +101,10 @@ "socks-proxy-agent": "^10.0.0", "srcset": "^5.0.3", "table2array": "^0.0.2", - "tabletojson": "^4.1.9", + "tabletojson": "^4.1.10", "tough-cookie": "^6.0.1", "tsx": "^4.21.0", - "typescript": "^6.0.2", + "typescript": "^6.0.3", "uuid": "^13.0.0" } } diff --git a/scripts/core/utils.ts b/scripts/core/utils.ts index 5f433d503..2ad7673c4 100644 --- a/scripts/core/utils.ts +++ b/scripts/core/utils.ts @@ -88,7 +88,7 @@ export async function loadIssues(props?: { labels: string[] | string }) { if (props && props.labels) { labels = Array.isArray(props.labels) ? props.labels.join(',') : props.labels } - let issues: object[] = [] + let issues: object[] if (TESTING) { issues = (await import('../../tests/__data__/input/sites_update/issues.mjs')).default } else { diff --git a/sites/airtelxstream.in/airtelxstream.in.config.js b/sites/airtelxstream.in/airtelxstream.in.config.js index d1eb3f824..4babe7090 100644 --- a/sites/airtelxstream.in/airtelxstream.in.config.js +++ b/sites/airtelxstream.in/airtelxstream.in.config.js @@ -24,7 +24,7 @@ module.exports = { }, parser({ content }) { - let programs = [] + let programs try { const parsed = JSON.parse(content) diff --git a/sites/elcinema.com/elcinema.com.config.js b/sites/elcinema.com/elcinema.com.config.js index 154b235ca..1e6e858d7 100644 --- a/sites/elcinema.com/elcinema.com.config.js +++ b/sites/elcinema.com/elcinema.com.config.js @@ -44,7 +44,7 @@ module.exports = { }, async channels({ lang }) { const axios = require('axios') - let data = '' + let data try { const res = await axios.get(`https://elcinema.com/${lang}/tvguide/`, { headers: headers diff --git a/sites/freetv.tv/freetv.tv.config.js b/sites/freetv.tv/freetv.tv.config.js index 4b21ba88c..9ee1ad960 100644 --- a/sites/freetv.tv/freetv.tv.config.js +++ b/sites/freetv.tv/freetv.tv.config.js @@ -21,7 +21,7 @@ module.exports = { }, parser: function ({ content }) { const programs = [] - let items = [] + let items try { items = JSON.parse(content) diff --git a/sites/tvprofil.com/tvprofil.com.channels.xml b/sites/tvprofil.com/tvprofil.com.channels.xml index eeb0de2af..58595d675 100644 --- a/sites/tvprofil.com/tvprofil.com.channels.xml +++ b/sites/tvprofil.com/tvprofil.com.channels.xml @@ -1,342 +1,814 @@ - 1-2-3.tv - 2X2 - 4Fun Dance - 4Fun Kids - 4FunTV - Telewizja 13 - 13 Ulica - 20 Mediaset - 21 Mix - 24 Kitchen - 24Kitchen PT - 360 TuneBox - A2 CNN - a Haber - a News - A Para - ABC News Albania - Active Family - Adventure HD - Al Jazeera - Ale Kino+ - ALFA TVP - Alpha TV - AMC PL - Apollon TV - Das Erste - ART Sport 1 - ART Sport 2 - ART Sport 3 - ART Sport 4 - ART Sport 5 - ART Sport 6 - ArtDoku 1 - ArtDoku 2 - ARTE DE - ATV2 - ATV TR - AXN PL - AXN Spin PL - BabyTV - Balkanika TV - Bang Bang - BBC World News - BBN Türk - Beyaz TV - Bloomberg HT - BN music - Cartoonito CEE - Bubble TV - CANAL+ Kuchnia - Canale 5 - Cartoon Network - Film Cafe PL - City TV - Click TV - English Club TV - CNBC Europe - CNN Europe - CNN Türk TV - Comedy Central Extra UK - Comedy Central PL - Crime+Investigation PL - Cufo TV - Deluxe Music - Deutsche Welle English - Disco Polo Music PL - Discovery Animal Planet - Discovery Channel - Discovery Historia - Discovery Science - TLC - Discovery Turbo UK - Disney Channel - Novelas Plus 1 - Dizi Smart Max - Dizi Smart Premium - DMAX DE - DMAX TR - DM SAT - Dream Türk - Ekotürk - European League of Football Channel - Elrodi - Erox HD - Eroxxx HD - ΕΡΤ1 - Eska Rock TV - Eska TV - Eska TV Extra - Eurochannel - EuroNews - Euronews Albania - Eurosport - EWTN PL - Explorer Histori - Explorer Natyra - Explorer Shkence - EXTASY TV - Fashion TV - FashionBox HD - Fast&FunBox HD - FAX News - ФЕН ТВ - Fight Klub HD - FightBox HD - Filmax - FilmBox Arthouse - FilmBox Extra RS - FilmBox Family PL - FilmBox Stars RS - Fokus TV - Folx TV - Food Network - STAR Channel - FX Comedy PL - STAR Crime - STAR Life - FX PL - France24 - France 24 French - Gametoon HD - Haber Global - Habitat TV - Hayat Folk Box - Hayat 2 - HSE24 Extra - HSE24 Trend - Info24 Albania - INTV AL - Investigation Discovery - Italia 1 - Junior TV - KB Peja TV - Kabel Eins - Kabel eins Doku - Kanal 7 - Kanal 10 - KANAL 24 TR - Kanal D - Kanal D TR - Kanali 7 - KiKA - Kino Polska - Kino Polska Muzyka - Klan Kosova - Klan Macedonia - Klan Music - Klan Plus - Kopliku TV - krone.tv - Karadeniz TV - La7 - Living HD - MCN 24 - MCN TV - Mediaset Italia - Melodie TV - DigitAlb Melody TV - MinikaGO TR - Minimini+ - Motowizja - MovieSmart Classic - MovieSmart Türk - MTV Live HD - MUSE - My Music - N24 Doku - NTV DE - National Geographic - National Geographic Channel HD - Nat Geo Wild - Ndihma e Klientit - News 24 - Nickelodeon - Novelas+ - Nowa TV - Number One Türk - NUTA GOLD - NUTA.TV HD - OBN - oe24.TV - One - Ora News - ORF2 - Planete+ PL - Playboy TV - POLO TV - Polonia1 - Polsat 2 - Polsat Cafe - Polsat Comedy Central Extra - Polsat Doku - Polsat Film - Polsat Music - Polsat News - Polsat News 2 - Polsat Play - Polsat Rodzina - Polsat Seriale - Polsat Viasat Explore - Power TV PL - Power Türk TV - Premium Channel - PRO 7 Österreich - QVC 2 DE - QVC Deutschland - RAI UNO - RAI DUE - RAI TRE - RAI 4 - RAI 5 - RAI Gulp - RAI News 24 - RAI Storia - Rai Yoyo - real time - Red Carpet TV PL - Report TV - Rete 4 - RTK 1 - RTK 2 - RTL Nitro - RTLup - RTS 2 - RTSH 1 - RTSH 2 - RTSH 3 - RTSH 24 - RTSH Agro - RTSH Femijë - RTSH Film - RTSH Gjirokastra - RTSH Korça - RTSH Kuvend - RTSH Plus - RTSH Shkollë - RTSH Shqip - RTSH Sport - RTV 21 Popullore - RTV Besa - RTV Ora - Russia Today - Sat.1 Österreich - Scan TV - Shenja TV - Show Türk - Show TV - SinemaTV 2 - SinemaTV 1001 - SinemaTV 1002 - SinemaTV Aile - SinemaTV Aile 2 - SinemaTV Aksiyon - SinemaTV Aksiyon 2 - SinemaTV Komedi - SinemaTV Komedi 2 - SinemaTV Yerli - SinemaTV Yerli 2 - SinemaTV - Sixx - Sixx AT - Tring Smile - Tring Sport News - Stars TV PL - Stinet - Stingray iConcerts - Stopklatka - STV Folk - Sundance TV PL - Super Polsat - Super RTL - Syri TV - Syri Vizion - TAY TV - TBN Polska HD - DIZI - TELE 1 - Tele 5 DE - teve2 - TGCOM24 - TGRT Belgesel - Tip TV - Tivibu Spor - Top Channel - Top News - Travel Channel - Tring Bizarre - Tring Bunga Bunga - Tring Desire - Tring Kanal 7 - Tring Sport 1 - Tring Sport 2 - Tring Sport 3 - Tring Sport 4 - TRT 4K - TRT EBA TV İlkokul - TRT EBA TV Lise - TRT EBA TV Ortaokul - TTV - TV5 - TV100 TR - teve2 TR - TV 7 - TV 8.5 - TV Dukagjini - Klan TV HD - TV Net - TV Trwam - TVN 7 - TVN Style - TVN Turbo - TVP 2 - TVP ABC - TVP HD - TVP Historia - TVP Info - TVP Kobieta - TVP Kultura - TVP Rozrywka - TVP Seriale - TVR PL - TVS - TVT PL - Uçankuş TV - Vizion Plus - VOX - VOX up - Welt - World Fashion Channel - Wydarzenia 24 - Xtreme TV - XXL - Yaban TV - ZDF - ZDFneo - Zico TV - Zjarr TV + 2X2 + 4Fun Dance + 4Fun Kids + 4FunTV + 7/8 TV + Telewizja 13 + 13 Ulica + 24 Kitchen + 360 TuneBox + A2TV TR + a Haber + a News + A Para + Active Family + Adventure HD + Al Jazeera + Ale Kino+ + ALFA TVP + AMC + AMC PL + Das Erste + ARTE FR + ATV1 + ATV2 + Auto Motor und Sport + AXN BG + AXN Black PL + AXN PL + AXN Spin PL + AXN White PL + BabyTV + Balkanika TV + BBC News Channel + BBC World News + BBN Türk + BG-DNES + BHTV + Bloomberg TV + Bloomberg HT + BN music + Body in Balance + Cartoonito CEE + BSTV BG + Canal+ Domo + CANAL+ Kuchnia + Cartoon Network + Cartoonito UK + Первый + Cinemania BG + Cinemax 2 BG + Cinemax BG + CNBC Europe + CNN Europe + Comedy Central PL + Crime & Investigation Channel + Crime+Investigation PL + Da Vinci Learning + Deluxe Music + Deutsche Welle English + Diema Sport 3 BG + Disco Polo Music PL + Discovery Animal Planet + Discovery Channel + Discovery Historia + TLC + Disney Junior BG + Novelas Plus 1 + Dizi Smart Max + Dizi Smart Premium + Stingray Djazz + DMAX TR + DM SAT + Dorcel TV + Dorcel XXX + Dream Türk + DSTV + ducktv SD + ducktv HD + Sportdigital EDGE + Ekotürk + European League of Football Channel + Epic Drama (CEE) + Erox HD + Eroxxx HD + Eska Rock TV + Eska TV + Eska TV Extra + Eurochannel + EuroNews + EuroNews Bulgaria + Euronews FR + Eurosport 2 + Eurosport 1 BG + EWTN PL + EXTASY TV + Extreme Sports Channel + Fashion TV + FashionBox HD + Fast&FunBox HD + Fight Klub BG + Fight Klub HD + FightBox HD + Filmax + FilmBox Arthouse + FilmBox BG + FilmBox Extra BG + FilmBox Family PL + The Fishing and Hunting + The Fishing and Hunting RO + Fix & Foxi + Fokus TV + Folx TV + STAR Channel + FX Comedy PL + FX PL + NOW + France24 + France 2 + France 3 + France 24 French + FunBox UHD + Gametoon HD + Haber Global + Habitat TV + HBO 2 BG + HBO 3 BG + Home & Garden Television + The History Channel + History Channel 2 + HUSTLER TV + Insight TV + Investigation Discovery + JimJam BG + Jukebox + K::CN 2 Music + KANAL 24 TR + Kanal D TR + KiKA + Kino Polska + Kino Polska Muzyka + krone.tv + Karadeniz TV + Love Nature US + LUXE TV + MCM Top + Melodie TV + Metro TV + Mezzo + Mezzo Live HD + MinikaGO TR + Motorvision Plus + Motowizja + MovieSmart Classic + MovieSmart Türk + MTV Europe + MyZen TV + Наша ТВ + Nick Junior + Nick Junior BG + Nickelodeon Commercial + Novelas+ + Nowa TV + Number One Türk + NUTA GOLD + NUTA.TV HD + oe24.TV + ORF2 + Pickbox TV BG + Planeta TV BG + Planete+ PL + Playboy TV + Plovdivska Pravoslavna TV + POLO TV + Polonia1 + Polsat 2 + Polsat Cafe + Polsat Doku + Polsat Film + Polsat Games + Polsat Music + Polsat News + Polsat News 2 + Polsat Play + Polsat Rodzina + Polsat Seriale + Polsat Viasat Explore + Polsat Viasat History + Polsat Viasat Nature + Power TV PL + Brazzers TV (ex. Private Spice) + PRO 7 Österreich + ProSieben MAXX + Puls 4 + RAI UNO + RAI DUE + RAI TRE + RAI News 24 + Reality Kings + Red Carpet TV PL + RedLight HD + RiC DE + Ring TV + Россиᴙ 24 + RT Documentary + RTL Zwei + RTL DE + Russia Today + Sat.1 Österreich + Sat.1 Gold + Show TV + SinemaTV 2 + SinemaTV 1001 + SinemaTV 1002 + SinemaTV Aile + SinemaTV Aile 2 + SinemaTV Aksiyon + SinemaTV Aksiyon 2 + SinemaTV Komedi + SinemaTV Komedi 2 + SinemaTV Yerli + SinemaTV Yerli 2 + SinemaTV + Sixx AT + Sky News + SkyShowtime 1 Nordic + Stars TV PL + Stingray CMusic + Stingray iConcerts + Stopklatka + Sundance TV PL + Super RTL + SuperToons + TAY TV + TBN Polska HD + teve2 + TGRT Belgesel + Tivibu Spor + Travel Channel + TRT 1 + TRT 2 + TRT Spor + TRT 4K + TRT Kurdî + TRT Arapça + TRT Avaz + TRT Belgesel + TRT Çocuk + TRT EBA TV İlkokul + TRT EBA TV Lise + TRT EBA TV Ortaokul + TRT Haber + TRT Müzik + TRT World + TTV + TV5 + TV5 Monde + TV5Monde Europe + TV100 TR + Viasat Kino Balkan + teve2 TR + TV 4 + TV 8 TR + TV 8.5 + TV Net + TV Puls PL + TV Silesia + TV Trwam + TVE Internacional + TVN24 + TVN24 BiS + TVN 7 + TVN Style + TVN Turbo + TVP 2 + TVP 3 + TVP ABC + TVP HD + TVP Historia + TVP Info + TVP Kobieta + TVP Kultura + TVP Regionalna + TVP Rozrywka + TVP Seriale + TVR PL + TVS + Телевизия Стара Загора BG + TVT PL + Uçankuş TV + Viasat Explore CEE + Viasat History + Viasat Nature CEE + Viasat True Crime CEE + VOX + wPolsce PL + Wydarzenia 24 + Xtreme TV + ZDF + 24Kitchen BG + AGRO TV BG + Alfa BG + A Spor + AXN Black BG + AXN White BG + Barely Legal TV + Bloomberg TV BG + БНТ 1 + БНТ 2 + БНТ 3 + БНТ 4 + BOX TV BG + bTV BG + bTV Action + bTV Cinema + bTV Comedy + bTV Story + Bulgaria on Air + City TV BG + Diema + Diema Family + Diema Sport 2 + Diema Sport + Disney Channel BG + DocuBox HD + EKids + ETB Basque + Евроком + Фен Фолк ТВ + ФЕН ТВ + FilmBox Stars BG + HBO BG + Kino Nova + Magic TV BG + MAX Sport 1 BG + MAX Sport 2 BG + MAX Sport 3 BG + Max Sport 4 BG + Movie Star + National Geographic BG + Nat Geo Wild BG + Nova TV BG + Nova News + Nova Sport BG + Planeta Folk BG + Skat TV + STAR BG + STAR Crime BG + STAR Life BG + Travel TV BG + Travelxp + TV1 BG + Родина + Vivacom Arena + VTK BG + Wness TV + 2X2 + Telewizja 13 + 13 Ulica + 24 Kitchen + 24Kitchen PT + Televizija 24 + 360 TuneBox + A2TV TR + a Haber + a News + A Para + Active Family + Adria TV + Adult Channel + Adventure HD + Al Jazeera + Al Jazeera Arabic English + Ale Kino+ + ALFA TV + ALFA TVP + AMC + AMC PL + Anixe HD Serie + ANIXE plus + Das Erste + Arena Esport + Arena Fight + Arena Sport 1 Premium + Arena Sport 1 Premium BiH + Arena Sport 1x2 + Arena Sport 2 BiH + Arena Sport 2 Premium + Arena Sport 2 Premium BiH + Arena Sport 3 BiH + Arena Sport 3 Premium + Arena Sport 3 Premium BiH + Arena Sport 4 BiH + Arena Sport 5 BiH + Arena Sport 6 RS + Arena Sport 6 BiH + Alternativna televizija Banja Luka + ATV2 + AXN Black PL + AXN PL + AXN Spin PL + AXN White PL + B92 + BabyTV + Balkan TV + Balkanika TV + BBC World News + BBN Türk + BDC Televizija + Behar TV Sarajevo + Radio Televizija BIH + Bir TV + BlicTV + Bloomberg TV + Bloomberg Adria + Bloomberg HT + Radio Televizija BN + BN music + Cartoonito CEE + Bravo Music + CANAL+ Kuchnia + Cartoon Network + CCTV 4 Europe + CGTN + Cinema TV + Cinemax + Cinemax 2 + City Play + City TV + English Club TV + Croatian Music Channel + CNBC Europe + CNN Europe + Nicktoons + Comedy Central PL + Crime & Investigation Channel + Crime+Investigation PL + Deutsche Welle English + Dexy TV + Digi 24 + Disco Polo Music PL + Discovery Animal Planet + Discovery Channel + Discovery Historia + TLC + Disney Channel + Disney Channel DE + Novelas Plus 1 + Dizi Smart Max + Dizi Smart Premium + DMAX DE + DMAX TR + DM SAT + Dobra TV + Dorcel TV + Dorcel XXX + DOX TV + Dream Türk + Ekotürk + European League of Football Channel + E! Entertainment + Erox HD + Eroxxx HD + Eska Rock TV + Eska TV Extra + Etno TV RO + Euro Cinema 1 + Euro Cinema 2 + Euro Cinema 3 + Euro Cinema 4 + EuroNews + Euronews FR + EuroNews Srbija + Eurosport + Eurosport 1 DE + EWTN + EWTN PL + Extreme Sports Channel + Fashion TV + FashionBox HD + Fast&FunBox HD + Favorit TV RO + Fight Klub HD + FightBox HD + SK Fight + Filmax + FilmBox Arthouse + FilmBox Extra RS + FilmBox Family PL + FilmBox Stars RS + FilmBox Premium RS + Fokus TV + Folx TV + Food Network + STAR Channel + FX Comedy PL + STAR Crime + STAR Life + STAR Movies + FOX NEWS + FX PL + NOW + France24 + France 24 French + Radio Televizija Federacije BIH + GameHub HR + Gametoon HD + SK Golf + GP1 + Haber Global + Habitat TV + HappyTV + Hayat Folk Box + Hayat Love Box + Hayat 2 + Hayat Stil i život + Hayat TV + HBO + HBO3 + HBO2 + HEMA TV + Herceg TV + Historija TV + The History Channel + HSE + HRT 1 + HRT 3 + HUSTLER TV + Hype TV RS + Imperia TV + InformerTV + Narodna TV + Investigation Discovery + Izvorna TV + Otvorena televizija + JimJam + K1 TV + Kabel Eins + Kanal1 + Kanal 6 + KANAL 24 TR + Kazbuka + KiKA + Kino Polska + Kino Polska Muzyka + Klape i Tambure TV + krone.tv + Karadeniz TV + M1 Family + Maria Vision + Melodie TV + MinikaGO TR + Motowizja + MovieSmart Classic + MovieSmart Türk + MTV Europe + MTV Igman + MY TV + N1 RS + N24 Doku + National Geographic + National Geographic Channel HD + National Geographic RS + Nat Geo Wild + NBA TV + Neon TV + Newsmax Balkans + Nat Geo Wild HD + Nick Junior + Nickelodeon Commercial + NOVA TV + Nova Series + Novelas+ + Nowa TV + Number One Türk + NTV 101 Sanski most + NTV IC Kakanj + NUTA GOLD + NUTA.TV HD + O Kanal Music + O Kanal Plus + OBN + oe24.TV + One + OTV Valentino + Pickbox TV RS + Pikaboo + RTV PINK + RED tv + Vesti + Pink Erotic 1 + Pink Erotic 2 + Pink Erotic 3 + Pink Erotic 4 + Pink Erotic 5 + Pink Erotic 6 + Pink Erotic 7 + Pink Erotic 8 + TV PINK EXTRA + PINK Film + Pink Folk 1 + Pink Hits 2 + Pink Kids + Pink Music 1 + TV PINK PLUS + Pink Reality + Planete+ PL + Playboy TV + POLO TV + Polonia1 + Polsat 2 + Polsat Cafe + Polsat Doku + Polsat Film + Polsat Music + Polsat News + Polsat News 2 + Polsat Play + Polsat Rodzina + Polsat Seriale + Polsat Viasat Explore + Polsat Viasat History + Polsat Viasat Nature + Posavska Televizija + Power TV PL + Premier League TV + Private TV + ProSieben + PRO 7 Österreich + ProSieben MAXX + ProTV Tomislavgrad + Prva Srpska TV + Puls 4 + QVC Deutschland + RAI UNO + RAI DUE + RAI TRE + RAI Education + RAI News 24 + Reality Kings + Red Carpet TV PL + RedLight HD + RT Documentary + RTL 2 + RTL Zwei + RTL DE + RTL Kockica + RTL Nitro + RTRS + RTS 1 + RTS Klasika + RTS Nauka + RTS Poletarac + RTS Život + RTSH 3 + RTSH 24 + RTSH Plus + RTSH Shkollë + RTV7 Tuzla + RTV BPK Goražde + RTV Herceg-Bosne + RTV HIT Brčko + RTV Lukavac + RTV Slon Tuzla + RTV Unsko-sanskog kantona + RTV Vogošća + RTV Zenica + RTV Tuzlanskog Kantona + Russia Today + SAT.1 + Sat.1 Österreich + Sat.1 Gold + SciFi + Sevdah TV + Shoptel + Show TV + SinemaTV 2 + SinemaTV 1001 + SinemaTV 1002 + SinemaTV Aile + SinemaTV Aile 2 + SinemaTV Aksiyon + SinemaTV Aksiyon 2 + SinemaTV Komedi + SinemaTV Komedi 2 + SinemaTV Yerli + SinemaTV Yerli 2 + SinemaTV + Sixx AT + Sky News + Slobomir + Smart TV Tešanj + SOS Plus + Sport Klub 1 Hrvatska + Superstar 2 + Stopklatka + Sundance TV PL + Super RTL + Supermedia Televizija + SuperSat TV + Superstar 3 + Tanjug Tačno + Tatabrada + TAY TV + TBN Polska HD + DIZI + Tele 5 DE + Televizija 5 + teve2 + TGRT Belgesel + Tivibu Spor + TLC DE + TNT Kids + Toxic Folk + Toxic Rap + Toxic TV + Travel Channel + Tropik TV + TRT 1 + TRT 4K + TRT EBA TV İlkokul + TRT EBA TV Lise + TRT EBA TV Ortaokul + TRT World + TTV + TV1 Mreža + TV5 + TV100 TR + teve2 TR + TV 4 + TV 8 TR + TV 8.5 + TV Arena Bijeljina + Arena Sport 1 RS + Arena Sport 1 HR + Arena Sport 4 RS + Televizija Dalmacija + TV Duga + SAT + TV Istočno Sarajevo + TV Net + TV Ras + TV Sarajevo + TV Silesia + TV Trwam + TV Vijesti + RTV Visoko + Televizija Crne Gore MNE + Televizija Doktor + TVN 7 + TVN Style + TVN Turbo + TVP 2 + TVP 3 + TVP ABC + TVP HD + TVP Historia + TVP Info + TVP Kobieta + TVP Kultura + TVP Rozrywka + TVP Seriale + TVR Cluj RO + TVR Craiova RO + TVR Iasi RO + TVR PL + TVR Tg-Mures RO + TVR Timisoara RO + TVS + TVT PL + FREEДОМ + Uçankuş TV + DIVA (ex. Universal) + Valentino Etno + Valentino Music HD + Viasat True Crime CEE + Vikom + VOX + VOX up + Welt + wPolsce PL + Wydarzenia 24 + Xtreme TV + XXL + Yaban TV + ZDF + ZDFinfo + ZDFneo + Arena Sport 4 Premium BiH + Arena Sport 5 Premium BiH + Arena Sport 7 BiH + Arena Sport Adrenalin + Arena Sport Tenis + A Spor + Barely Legal TV + DocuBox HD + ducktv SD + Fix & Foxi + Fuel TV + FunBox UHD + Good Times + Hajduk TV + Hustler HD + Hype 2 RS + HYPE Hrvatska + ICT Business + RTV KD + Televizija Crne Gore 2 + Televizija Crne Gore 3 + TOK Televizija + Viasat Kino 1-2-3.tv 2X2 3 Plus CH @@ -395,7 +867,6 @@ Canal+ France CANAL+ Kuchnia Cartoon Network DE - Film Cafe PL CCTV 4 Europe CGTN CGTN Documentary @@ -494,18 +965,12 @@ Mezzo Mezzo Live HD MinikaGO TR - Minimini+ Motorvision Plus International Motorvision Plus Motowizja MovieSmart Classic MovieSmart Türk - MTV 00s - Club MTV International MTV DE - MTV Hits International - MTV Live HD - MTV 90s International MyZen TV N24 Doku NTV DE @@ -518,7 +983,6 @@ NDR Niedersachsen NDR Schleswig-Holstein Nick Junior - Nick Music Nick DE Niederbayern TV Deggendorf-Straubing Novelas+ @@ -544,7 +1008,6 @@ Polsat 1 Polsat 2 Polsat Cafe - Polsat Comedy Central Extra Polsat Doku Polsat Film Polsat Games @@ -566,10 +1029,8 @@ QVC Deutschland QVC STYLE DE Radio Ticino Channel HD - RAI 4 RAI 5 RAI World Premium - Rai Yoyo RBB Fernsehen Brandenburg RBB Fernsehen Berlin Red Carpet TV PL @@ -641,12 +1102,10 @@ SR Fernsehen SRF Info SRF Zwei - Star TV TR Stars TV PL Stingray Classica Stopklatka Sundance TV PL - Super Polsat Super RTL SWR SWR Baden-Württemberg @@ -654,7 +1113,6 @@ tagesschau24 TAY TV TBN Polska HD - TELE 1 Tele 5 DE TeleBärn Tele Zürich @@ -693,7 +1151,6 @@ TVN 7 TVN Style TVN Turbo - TVP 1 TVP 2 TVP 3 TVP ABC @@ -711,7 +1168,6 @@ TVT PL Uçankuş TV Universal TV DE - MTV 80s Vivid TV VOX W24 @@ -728,964 +1184,6 @@ ZDF ZDFinfo ZDFneo - 2X2 - 4Fun Dance - 4Fun Kids - Telewizja 13 - 13 Ulica - 24 Kitchen - 24Kitchen PT - Televizija 24 - 360 TuneBox - A2TV TR - a Haber - a News - A Para - Active Family - Adria TV - Adult Channel - Adventure HD - Agro TV - Al Jazeera - Al Jazeera Arabic English - Ale Kino+ - ALFA TV - ALFA TVP - AMC - AMC PL - Anixe HD Serie - ANIXE plus - Das Erste - Arena Esport - Arena Fight - Arena Sport 1 BiH - Arena Sport 1 Premium - Arena Sport 1 Premium BiH - Arena Sport 1x2 - Arena Sport 2 BiH - Arena Sport 2 Premium - Arena Sport 2 Premium BiH - Arena Sport 3 BiH - Arena Sport 3 Premium - Arena Sport 3 Premium BiH - Arena Sport 4 BiH - Arena Sport 5 BiH - Arena Sport 6 RS - Arena Sport 6 BiH - Alternativna televizija Banja Luka - ATV2 - AXN - AXN Black PL - AXN PL - AXN Spin - AXN Spin PL - AXN White PL - B1 TV - B92 - BabyTV - Balkan trip - Balkan TV - Balkanika TV - BBC Earth - BBC News Channel - BBC World News - BBN Türk - BDC Televizija - Behar TV Sarajevo - Radio Televizija BIH - Bir TV - BlicTV - Bloomberg TV - Bloomberg Adria - Bloomberg HT - Radio Televizija BN - BN music - BN 2 HD - Cartoonito CEE - Brainz TV - Bravo Music - CANAL+ Kuchnia - Cartoon Network - Film Cafe PL - CBS Reality - CCTV 4 Europe - CGTN - CGTN Documentary - Cinema TV - Cinemax - Cinemax 2 - CineStar Action&Thriller - CineStar Premiere 1 - CineStar Premiere 2 - CineStar TV1 - CineStar TV2 - CineStar TV Comedy Family - CineStar TV Fantasy - City Play - City TV - English Club TV - Croatian Music Channel - CNBC Europe - CNN Europe - Nicktoons - Comedy Central PL - Crime & Investigation Channel - Crime+Investigation PL - Da Vinci Learning - Deutsche Welle English - Dexy TV - Digi 24 - Disco Polo Music PL - Discovery Animal Planet - Discovery Channel - Discovery Historia - Discovery Science - TLC - Disney Channel - Disney Channel DE - Novelas Plus 1 - Dizi Smart Max - Dizi Smart Premium - DMAX DE - DMAX TR - DM SAT - Dobra TV - DOKU TV - Doma TV - Dorcel TV - Dorcel XXX - DOX TV - Dream Türk - Sport 1 DE - Ekotürk - European League of Football Channel - E! Entertainment - Epic Drama (CEE) - Erox HD - Eroxxx HD - Eska Rock TV - Eska TV Extra - Etno TV RO - Euro Cinema 1 - Euro Cinema 2 - Euro Cinema 3 - Euro Cinema 4 - EuroNews - Euronews FR - EuroNews Srbija - Eurosport - Eurosport 2 - Eurosport 1 DE - EWTN - EWTN PL - Extreme Sports Channel - FACE TV - Fashion TV - FashionBox HD - Fast&FunBox HD - Favorit TV RO - Fight Klub HD - FightBox HD - SK Fight - Filmax - FilmBox Arthouse - FilmBox Extra RS - FilmBox Family PL - FilmBox Stars RS - FilmBox Premium RS - Fokus TV - Folx TV - Food Network - STAR Channel - FX Comedy PL - STAR Crime - STAR Life - STAR Movies - FOX NEWS - FX PL - NOW - France24 - France24 Arabic - France 24 French - Radio Televizija Federacije BIH - GameHub HR - Gametoon HD - SK Golf - GP1 - Grand Televizija - Haber Global - Habitat TV - HappyTV - Hayat Folk Box - Hayat Love Box - Hayat Music Box - Hayat 2 - Hayat Stil i život - Hayat TV - Hayatovci - HBO - HBO3 - HBO2 - HEMA TV - Herceg TV - Home & Garden Television - Historija TV - The History Channel - History Channel 2 - HSE - HRT 1 - HRT 2 - HRT 3 - HRT 4 - HRT Int. - HUSTLER TV - Hype TV - IDJ World - Imperia TV - InformerTV - Insajder TV - Narodna TV - Investigation Discovery - Izvorna TV - Otvorena televizija - JimJam - Jugoton TV - K1 TV - K::CN 2 Music - Kabel Eins - Kanal1 - Kanal 3 Prnjavor - Kanal 6 - KANAL 24 TR - Kazbuka - KiKA - Kino Polska - Kino Polska Muzyka - KinoTV - KitchenTV - Klape i Tambure TV - KLASIK - K::CN 1 Kopernikus - krone.tv - Karadeniz TV - Kurir TV - Laudato TV - Lov i ribolov - M1 Family - M1 FILM - M1 Gold - Maria Vision - Melodie TV - MinikaGO TR - Minimax - Minimini+ - Motorvision Plus International - Motowizja - MovieSmart Classic - MovieSmart Türk - МРТ 1 - MTV Europe - MTV 00s - Club MTV International - MTV Hits International - MTV Igman - MTV Live HD - MTV 90s International - MY TV - N1 BA - N1 HR - N1 RS - N24 Doku - National Geographic - National Geographic Channel HD - National Geographic RS - Nat Geo Wild - NBA TV - Neon TV - Newsmax Balkans - Nat Geo Wild HD - Nick Junior - Nick Music - Nickelodeon Commercial - NOVA TV - Nova BH - Nova Max - Nova S - Nova Series - Nova Sport Srbija - Novelas+ - Nowa TV - Number One Türk - NTV 101 Sanski most - NTV IC Kakanj - NUTA GOLD - NUTA.TV HD - O Kanal - O Kanal Music - O Kanal Plus - OBN - oe24.TV - One - OTV Valentino - Pickbox TV RS - Pikaboo - RTV PINK - RED tv - Vesti - Pink Action - Pink Thriller - Pink Crime & Mystery - Pink BH - Pink Classic - Pink Comedy - Pink Erotic 1 - Pink Erotic 2 - Pink Erotic 3 - Pink Erotic 4 - Pink Erotic 5 - Pink Erotic 6 - Pink Erotic 7 - Pink Erotic 8 - TV PINK EXTRA - PINK Family - Pink Fashion - Pink Fight Network - PINK Film - Pink Folk 1 - Pink Folk 2 - Pink Ha Ha - Pink Hits - Pink Hits 2 - Pink Horror - Pink Kids - Pink Koncert - Pink Kuvar - Pink LOL - Pink M - Pink Movies - Pink Romance - Pink SCI FI & Fantasy - Pink Music 1 - Pink and Roll - Pink Pedia - TV PINK PLUS - Pink Premium - Pink Reality - Pink Serije - Pink Show - Pink Soap - Pink Style - Pink Super Kids - Pink Timeout - Pink Western - PINK World - Pink World Cinema - PINK Zabava - Planete+ PL - Playboy TV - Poljoprivredna TV - POLO TV - Polonia1 - Polsat 2 - Polsat Cafe - Polsat Comedy Central Extra - Polsat Doku - Polsat Film - Polsat Music - Polsat News - Polsat News 2 - Polsat Play - Polsat Rodzina - Polsat Seriale - Polsat Viasat Explore - Polsat Viasat History - Polsat Viasat Nature - Posavska Televizija - Power TV PL - Premier League TV - Brazzers TV (ex. Private Spice) - Private TV - ProSieben - PRO 7 Österreich - ProSieben MAXX - ProTV Tomislavgrad - Prva FILES - Prva KICK - Prva LIFE - Prva MAX - Prva Plus - Prva Srpska TV - Prva World - Puls 4 - QVC Deutschland - RAI UNO - RAI DUE - RAI TRE - RAI Education - RAI News 24 - Rai Yoyo - Reality Kings - Red Carpet TV PL - RedLight HD - Россиᴙ 24 - RT Documentary - RTL - RTL 2 - RTL Zwei - RTL DE - RTL Kockica - RTL Living - RTL Nitro - RTRS - RTRS PLUS - RTS 1 - RTS 2 - RTS Drama - RTS Klasika - RTS Kolo - RTS Muzika - RTS Nauka - RTS Poletarac - RTS SVET - RTS Trezor - RTS Život - RTSH 3 - RTSH 24 - RTSH Plus - RTSH Shkollë - RTV7 Tuzla - RTV BPK Goražde - RTV Herceg-Bosne - RTV HIT Brčko - RTV Lukavac - RTV Slon Tuzla - RTV Unsko-sanskog kantona - RTV Vogošća - RTV Zenica - RTV Tuzlanskog Kantona - Russia Today - SAT.1 - Sat.1 Österreich - Sat.1 Gold - SciFi - Sevdah TV - Shoptel - Show TV - SinemaTV 2 - SinemaTV 1001 - SinemaTV 1002 - SinemaTV Aile - SinemaTV Aile 2 - SinemaTV Aksiyon - SinemaTV Aksiyon 2 - SinemaTV Komedi - SinemaTV Komedi 2 - SinemaTV Yerli - SinemaTV Yerli 2 - SinemaTV - Sixx AT - Sky News - RTV Slovenija 1 - RTV Slovenija 2 - RTV Slovenija 3 - Slobomir - Smart TV Tešanj - SOS Plus - Sport Klub 4 - Sport Klub 5 - Sport Klub 6 - Sport Klub 1 Hrvatska - Sport Klub 3 - Sportska Televizija - Superstar 2 - Star TV TR - Stars TV PL - Stingray iConcerts - Stopklatka - Sundance TV PL - Super Polsat - Super RTL - Supermedia Televizija - SuperSat TV - Superstar 3 - Superstar TV - K::CN 3 Svet Plus - Tanjug Tačno - Tatabrada - TAY TV - TBN Polska HD - DIZI - TELE 1 - Tele 5 DE - Televizija 5 - Televizija Alfa - teve2 - TGRT Belgesel - Tivibu Spor - TLC DE - TNT Kids - TOGGO plus - Toxic Folk - Toxic Rap - Toxic TV - Trace Urban - Travel Channel - Tropik TV - TRT 1 - TRT 4K - TRT Arapça - TRT Avaz - TRT EBA TV İlkokul - TRT EBA TV Lise - TRT EBA TV Ortaokul - TRT World - TTV - TV1 Mreža - TV5 - TV100 TR - Viasat Kino Balkan - teve2 TR - TV 4 - TV 8 TR - TV 8.5 - TV Arena Bijeljina - Arena Sport 1 RS - Arena Sport 1 HR - Arena Sport 4 RS - Televizija Dalmacija - TV Duga + SAT - Телевизија Храм - TV Istočno Sarajevo - TV Net - TV Ras - TV Sarajevo - TV Silesia - TV Trwam - TV Vijesti - RTV Visoko - Televizija Crne Gore MNE - Televizija Doktor - TVN 7 - TVN Style - TVN Turbo - TVP 2 - TVP 3 - TVP ABC - TVP HD - TVP Historia - TVP Info - TVP Kobieta - TVP Kultura - TVP Rozrywka - TVP Seriale - TVR Cluj RO - TVR Craiova RO - TVR Iasi RO - TVR PL - TVR Tg-Mures RO - TVR Timisoara RO - TVS - TVT PL - FREEДОМ - Uçankuş TV - DIVA (ex. Universal) - Valentino Etno - Valentino Music HD - Vavoom - MTV 80s - Viasat Explore CEE - Viasat History - Viasat Nature CEE - Viasat True Crime CEE - Vikom - RT Vojvodina 1 - VOX - VOX up - Welt - wPolsce PL - Wydarzenia 24 - Xtreme TV - XXL - Yaban TV - Zagrebačka Televizija - ZDF - ZDFinfo - ZDFneo - 2X2 - 4Fun Dance - 4Fun Kids - 4FunTV - 7/8 TV - Telewizja 13 - 13 Ulica - 24 Kitchen - 24Kitchen BG - 360 TuneBox - A2TV TR - a Haber - a News - A Para - Active Family - Adventure HD - AGRO TV BG - Al Jazeera - Ale Kino+ - Alfa BG - ALFA TVP - AMC - AMC PL - Das Erste - ARTE FR - ATV1 - ATV2 - Auto Motor und Sport - AXN BG - AXN Black BG - AXN Black PL - AXN PL - AXN Spin PL - AXN White BG - AXN White PL - BabyTV - Balkanika TV - Barely Legal TV - BBC News Channel - BBC World News - BBN Türk - BG-DNES - BG Music Channel - BHTV - Bloomberg TV - Bloomberg HT - Bloomberg TV BG - BN music - БНТ 1 - БНТ 2 - БНТ 3 - БНТ 4 - Body in Balance - Cartoonito CEE - BOX TV BG - BSTV BG - bTV Action - bTV BG - bTV Cinema - bTV Comedy - bTV Story - Bulgaria on Air - Canal+ Domo - CANAL+ Kuchnia - Cartoon Network - Cartoonito UK - Film Cafe PL - CBS Reality - Первый - Cinemania BG - Cinemax 2 BG - Cinemax BG - City TV BG - CNBC Europe - CNN Europe - Comedy Central BG - Comedy Central Extra BG - Comedy Central PL - Crime & Investigation Channel - Crime+Investigation PL - Da Vinci Learning - Deluxe Music - Deutsche Welle English - Diema - Diema Family - Diema Sport - Diema Sport 2 - Diema Sport 3 BG - Disco Polo Music PL - Discovery Animal Planet - Discovery Channel - Discovery Historia - Discovery Science - TLC - Disney Channel BG - Disney Junior BG - Novelas Plus 1 - Dizi Smart Max - Dizi Smart Premium - Stingray Djazz - DMAX TR - DM SAT - Dorcel TV - Dorcel XXX - Dream Türk - DSTV - ducktv SD - ducktv HD - Sportdigital EDGE - EKids - Ekotürk - European League of Football Channel - Epic Drama (CEE) - Erox HD - Eroxxx HD - Eska Rock TV - Eska TV - Eska TV Extra - Eurochannel - Евроком - EuroNews - EuroNews Bulgaria - Euronews FR - Eurosport 2 - Eurosport 1 BG - EWTN PL - EXTASY TV - Extreme Sports Channel - Fashion TV - FashionBox HD - Fast&FunBox HD - Фен Фолк ТВ - ФЕН ТВ - Fight Klub BG - Fight Klub HD - FightBox HD - Filmax - FilmBox Arthouse - FilmBox BG - FilmBox Extra BG - FilmBox Family PL - FilmBox Stars BG - The Fishing and Hunting - The Fishing and Hunting RO - Fix & Foxi - Fokus TV - Folx TV - STAR Channel - STAR BG - FX Comedy PL - STAR Crime BG - STAR Life BG - FX PL - NOW - France24 - France 2 - France 3 - France 24 French - Fuel TV - FunBox UHD - Gametoon HD - Haber Global - Habitat TV - HBO 2 BG - HBO 3 BG - HBO BG - Home & Garden Television - The History Channel - History Channel 2 - HUSTLER TV - Insight TV - Investigation Discovery - JimJam BG - Jukebox - K::CN 2 Music - Kanal 7 - KANAL 24 TR - Kanal D TR - KiKA - Kino Nova - Kino Polska - Kino Polska Muzyka - krone.tv - Karadeniz TV - Love Nature US - LUXE TV - Magic TV BG - MAX Sport 1 BG - MAX Sport 2 BG - MAX Sport 3 BG - Max Sport 4 BG - MCM Top - Melodie TV - Metro TV - Mezzo - Mezzo Live HD - MinikaGO TR - Minimini+ - Motorvision Plus - Motowizja - Movie Star - MovieSmart Classic - MovieSmart Türk - MTV Europe - MTV 00s - Club MTV International - MTV Hits International - MTV Live HD - MTV 90s International - MyZen TV - Наша ТВ - Nat Geo Wild BG - National Geographic BG - Nick Junior - Nick Junior BG - Nickelodeon Commercial - Nova News - Nova Sport BG - Nova TV BG - Novelas+ - Nowa TV - Number One Türk - NUTA GOLD - NUTA.TV HD - oe24.TV - ORF2 - Passion XXX - Pickbox TV BG - Planeta Folk BG - Planeta TV BG - Planete+ PL - Playboy TV - Plovdivska Pravoslavna TV - POLO TV - Polonia1 - Polsat 2 - Polsat Cafe - Polsat Comedy Central Extra - Polsat Doku - Polsat Film - Polsat Games - Polsat Music - Polsat News - Polsat News 2 - Polsat Play - Polsat Rodzina - Polsat Seriale - Polsat Viasat Explore - Polsat Viasat History - Polsat Viasat Nature - Power TV PL - Brazzers TV (ex. Private Spice) - PRO 7 Österreich - ProSieben MAXX - Puls 4 - RAI UNO - RAI DUE - RAI TRE - RAI News 24 - Rai Yoyo - Reality Kings - Red Carpet TV PL - RedLight HD - RiC DE - Ring TV - Россиᴙ 24 - RT Documentary - RTL Zwei - RTL DE - Russia Today - Sat.1 Österreich - Sat.1 Gold - Show TV - SinemaTV 2 - SinemaTV 1001 - SinemaTV 1002 - SinemaTV Aile - SinemaTV Aile 2 - SinemaTV Aksiyon - SinemaTV Aksiyon 2 - SinemaTV Komedi - SinemaTV Komedi 2 - SinemaTV Yerli - SinemaTV Yerli 2 - SinemaTV - Sixx AT - Skat TV - Sky News - SkyShowtime 1 Nordic - Star TV TR - Stars TV PL - Stingray CMusic - Stingray iConcerts - Stopklatka - Sundance TV PL - Super Polsat - Super RTL - SuperToons - TAY TV - TBN Polska HD - TELE 1 - teve2 - TGRT Belgesel - The Voice BG - Tivibu Spor - Travel Channel - Travel TV BG - Travelxp - TRT 1 - TRT 2 - TRT Spor - TRT 4K - TRT Kurdî - TRT Arapça - TRT Avaz - TRT Belgesel - TRT Çocuk - TRT EBA TV İlkokul - TRT EBA TV Lise - TRT EBA TV Ortaokul - TRT Haber - TRT Müzik - TRT World - TTV - TV1 BG - TV5 - TV5 Monde - TV5Monde Europe - TV100 TR - Viasat Kino Balkan - teve2 TR - TV 4 - TV 8 TR - TV 8.5 - TV Net - TV Puls PL - Родина - TV Silesia - TV Trwam - TVE Internacional - TVN24 - TVN24 BiS - TVN 7 - TVN Style - TVN Turbo - TVP 2 - TVP 3 - TVP ABC - TVP HD - TVP Historia - TVP Info - TVP Kobieta - TVP Kultura - TVP Regionalna - TVP Rozrywka - TVP Seriale - TVR PL - TVS - Телевизия Стара Загора BG - TVT PL - Uçankuş TV - MTV 80s - Viasat Explore CEE - Viasat History - Viasat Nature CEE - Viasat True Crime CEE - Vivacom Arena - VOX - VTK BG - Wness TV - wPolsce PL - Wydarzenia 24 - Xtreme TV - XXL - ZDF 2X2 3 Plus CH 3SAT @@ -1758,12 +1256,11 @@ Cartoonito Italia CBBC Cbeebies - Film Cafe PL CCTV 4 Europe Challenge TV Channel 4 Channel 5 - Chérie 25 + RMC Life cielo Cine34 Children's ITV @@ -1844,7 +1341,6 @@ France Info Frisbee FunBox UHD - Game One Giallo TV Golf plus Gulli @@ -1874,7 +1370,6 @@ K-TV Katholisches Fernsehen Kabel Eins Kabel eins Doku - Kanal 7 Kanal 9 TV KANAL 24 TR Kanal D TR @@ -1886,7 +1381,7 @@ L'Equipe La Cinque La7 - La7d + LA7 Cinema La Télé La Chaîne Info LUXE TV @@ -1896,7 +1391,6 @@ Melodie TV MGG TV MinikaGO TR - Minimini+ More4 More Than Sports TV Motorvision Plus International @@ -1944,7 +1438,6 @@ Polsat 1 Polsat 2 Polsat Cafe - Polsat Comedy Central Extra Polsat Doku Polsat Film Polsat Music @@ -1992,11 +1485,11 @@ RTL DE RTL Nitro RTLup - RTP3 + RTP Noticias RTP Internacional RTS 2 Suisse RTS SVET - RTS Un + RTS 1 Suisse Russia Today S1 CH S4C @@ -2036,14 +1529,12 @@ SRF 1 SRF Info SRF Zwei - Star TV TR Stars TV PL Stingray Classica Stingray iConcerts Stopklatka Sundance TV PL Super! - Super Polsat Super RTL Swiss1 TV SWR @@ -2162,7 +1653,6 @@ Animal Planet DE Anixe HD Serie ANIXE plus - Antena Europe Das Erste ARD-alpha ARTE DE @@ -2197,14 +1687,12 @@ Canal+ France CANAL+ Kuchnia Cartoon Network DE - Film Cafe PL CGTN CGTN Documentary ClipMyHorse.TV Linear TV Croatian Music Channel CNBC Europe CNN Europe - CNN Türk TV Comedy Central DE Nicktoons Comedy Central PL @@ -2240,7 +1728,6 @@ Eska TV Eska TV Extra eSports 1 - Euro D Euro Star EuroNews Eurosport 2 DE @@ -2317,7 +1804,6 @@ Melodie TV Metro TV MinikaGO TR - Minimini+ More Than Sports TV Motorvision Plus International Motorvision Plus @@ -2325,7 +1811,6 @@ MovieSmart Classic MovieSmart Türk MTV DE - MTV Live HD münchen.tv MyZen TV N24 Doku @@ -2359,11 +1844,9 @@ Planete+ PL POLO TV Polonia1 - TVP Polonia Polsat Polsat 2 Polsat Cafe - Polsat Comedy Central Extra Polsat Doku Polsat Film Polsat Games @@ -2379,32 +1862,25 @@ Private TV ProSieben PRO 7 Österreich - ProSieben Fun ProSieben MAXX Puls 4 Puls 8 QVC 2 DE QVC Deutschland - QVC Style - QVC STYLE DE Radio Ticino Channel HD - RadioBremen RAI UNO RAI DUE RAI TRE - RAI 4 RAI 5 RAI Italia Australia RAI News 24 RAI Storia RAI World Premium - Rai Yoyo RBB Fernsehen Brandenburg RBB Fernsehen Berlin Red Carpet TV PL RedLight HD RiC DE - Rhein Neckar Fernsehen Rocket Beans TV Romance TV Romance TV PL @@ -2479,7 +1955,6 @@ Sky Sport Mix DE Sky Sport News DE Sky Sport Premier League DE - SonLife sonnenklar.TV AXN Black DE AXN White DE @@ -2492,12 +1967,10 @@ SRF 1 SRF Info SRF Zwei - Star TV TR Stars TV PL Stingray Classica Stopklatka Sundance TV PL - Super Polsat Super RTL SWR SWR1 Baden-Württemberg @@ -2507,7 +1980,6 @@ tagesschau24 TAY TV TBN Polska HD - TELE 1 Tele 5 DE TeleBärn Tele Zürich @@ -2548,7 +2020,6 @@ TV24 TV25 TV100 TR - TV1000 Global Kino teve2 TR TV 4 TV 8 TR @@ -2562,13 +2033,10 @@ TV Trwam TVE Internacional TVI - TVN - TVN24 TVN24 BiS TVN 7 TVN Style TVN Turbo - TVP 1 TVP 2 TVP 3 TVP ABC @@ -2584,9 +2052,7 @@ TVS TVT PL Uçankuş TV - Ülke TV VG TV - MTV 80s Vivid Red Vivid TV VOX @@ -2606,814 +2072,19 @@ ZDF ZDFinfo ZDFneo - 2X2 - 4Fun Dance - 4Fun Kids - 4FunTV - 7 TV Región Murcia - Telewizja 13 - Trece TV - 13 Ulica - 3/24 - A2TV TR - a Haber - a News - A Para - À Punt ES - Active Family - Adult Channel - Adult Channel 2 - Adventure HD - Al Jazeera - Ale Kino+ - ALFA TVP - Alquiler 1 - AMC Break PT - AMC Crime PT - AMC PL - AMC PT - Andalucía TV - Antena.nova - Aragón TV - AXN ES - AXN PL - AXN PT - AXN Spin PL - AXN Movies ES - AXN White PL - AXN White PT - BabyTV ES - BabyTV - BBC World News - BBN Türk - Betis TV ES - BFM TV - Bloomberg TV - Bloomberg HT - Boing ES - BOM Cine - BuenViaje - Canal 24H - Canal Extremadura - Canal Fútbol Replay - Canal Hollywood PT - Canal J - Canal Parlamento - Canal+ Domo - CANAL+ Kuchnia - Canal Sur - Casa e Cozinha - Castilla la Mancha TV - Caza y Pesca ES - Film Cafe PL - Capital XTRA - Clan TVE - CNBC Europe - CNN Europe - Comedy Central ES - Comedy Central PL - COSMO - Crime+Investigation PL - Daystar - DAZN 1 ES - DAZN 2 ES - DAZN 3 ES - DAZN 4 ES - DAZN F1 - DAZN LALIGA - DAZN LALIGA 2 - DBike Channel - Deutsche Welle English - Deutsche Welle Espanol - Disco Polo Music PL - Discovery Animal Planet - Discovery Historia - DMAX ES - Disney Junior ES - Novelas Plus 1 - Dizi Smart Max - Dizi Smart Premium - Stingray Djazz - DMAX TR - Dorcel TV - Dorcel XXX - Dream Türk - Ekotürk - El Garage TV - El Toro TV - LEVANTE TV - European League of Football Channel - Erox HD - Eroxxx HD - Eska Rock TV - Eska TV - Eska TV Extra - Esport3 - ETB 1 - ETB 2 - ETB 3 - ETB 4 - ETB Basque - Eurochannel - EuroNews - Euronews FR - Eurosport 1 ES - Eurosport 2 ES - EWTN ES - EWTN PL - Extreme Sports Channel - Fashion TV - Feel Good - Fight Klub HD - Fight Time - Filmax - FilmBox Family PL - Fokus TV - Folx TV - FX Comedy PL - FOX NEWS - FX PL - France24 - GOL PLAY ES - Haber Global - Habitat TV - HispanTV - HIT TV ES - Hustler HD - HUSTLER TV - Iberalia HD CAZA - Iberalia HD PESCA - Iberalia TV - Insight TV - iTVN - iTVN Extra - Kanal 7 - KANAL 24 TR - Kanal D TR - Kino Polska - Kino Polska Muzyka - krone.tv - Karadeniz TV - La 1 Cataluña - La dos - La 7 Murcia - LA 8 MEDITERRANEO - La Otra ES - La primera - La Resistencia por M+ - La Rioja - LALIGA TV HYPERMOTION - LALIGA TV HYPERMOTION 2 - LALIGA TV HYPERMOTION 3 - LUXE TV - Clásicos por M+ - Deportes 2 por M+ - M+ Deportes 3 - Documentales por M+ - Ellas Vamos por M+ - Golf 2 por M+ - Indie por M+ - LALIGA TV 2 por M+ - LALIGA TV 3 por M+ - Liga de Campeones 2 por M+ - Liga de Campeones 3 por M+ - M+ Originales - Vacaciones por M+ - Melodie TV - Metro TV - Mezzo - Mezzo Live HD - MinikaGO TR - Minimini+ - MOTO ADV - Motorvision Plus International - Motorvision Plus - Motowizja - MovieSmart Classic - MovieSmart Türk - Acción por M+ - Cine Español por M+ - Comedia por M+ - Deportes por M+ - Drama por Movistar Plus+ - Movistar Estrenos - Golf por M+ - LALIGA TV por M+ - Liga de Campeones por M+ - Movistar Plus+ - Movistar Plus+ 2 - MTV 00s - Club MTV International - MTV ES - MTV Hits International - MTV Live HD - MTV Music UK - MTV 90s International - MyZen TV - Nat Geo Wild ES - National Geographic ES - Nautica TV - NBC News - Nick Junior Commercial Light - Nickelodeon ES - Nickelodeon PT - Novelas+ - Nowa TV - Number One Türk - NUTA GOLD - NUTA.TV HD - Odisseia - oe24.TV - Paramount Network ES - Paramount Comedy ES - Planete+ PL - POLO TV - Polonia1 - Polsat 1 - Polsat 2 - Polsat Cafe - Polsat Comedy Central Extra - Polsat Doku - Polsat Film - Polsat Games - Polsat Music - Polsat News - Polsat News 2 - Polsat Play - Polsat Rodzina - Polsat Seriale - Polsat Viasat Explore - Power TV PL - Private TV - RAI UNO - RAI DUE - RAI TRE - RAI 4 - RAI 5 - RAI World Premium - Rai Yoyo - Real Madrid TV - Red Carpet TV PL - RedLight HD - Russia Today ES - Sevilla FC TV - SinemaTV 2 - SinemaTV 1001 - SinemaTV 1002 - SinemaTV Aile - SinemaTV Aile 2 - SinemaTV Aksiyon - SinemaTV Aksiyon 2 - SinemaTV Komedi - SinemaTV Komedi 2 - SinemaTV Yerli - SinemaTV Yerli 2 - SinemaTV - Sky News - Star Channel ES - Star TV TR - Stars TV PL - Stingray Classica - Stopklatka - Sundance TV PL - Canal 33 - Super Polsat - SX3 - TAY TV - TBN Polska HD - TCM ES - TELE 1 - TELE ELX - TeleDeporte - TeleMadrid - teve2 - TGRT Belgesel - Tivibu Spor - Warner TV ES - TPA7 - TRT 1 - TRT 2 - TRT Spor - TRT 4K - TRT Kurdî - TRT Arapça - TRT Avaz - TRT Belgesel - TRT Çocuk - TRT EBA TV İlkokul - TRT EBA TV Lise - TRT EBA TV Ortaokul - TRT Haber - TRT Müzik - TRT Turk - TRT World - TTV - TV3 Catalunya - TV3 ES - TV5 - TV5Monde Europe - TV100 TR - teve2 TR - TV 4 - TV 8.5 - TV Canaria - TV Chile - TV Net - TV Puls PL - TV Silesia - TV Trwam - TVE Internacional - Televisión de Galicia - TVG2 - TV Galicia - TVN - TVN24 - TVN 7 - TVN Style - TVN Turbo - TVP 2 - TVP 3 - TVP ABC - TVP HD - TVP Historia - TVP Info - TVP Kobieta - TVP Kultura - TVP Regionalna - TVP Rozrywka - TVP Seriale - TVR PL - TVS - TVT PL - Uçankuş TV - #Vamos - Verdi - VG TV - MTV 80s - Vivid Red - Vivid TV - Warner TV IT - World Fashion Channel - wPolsce PL - Wydarzenia 24 - Xtreme TV - XXL - Yaban TV - 2X2 - 3 Plus CH - 4 Plus - 4Fun Dance - 4Fun Kids - 4FunTV - 5 Plus - 6 plus - 6ter - Telewizja 13 - 13 Ulica - 3/24 - 360 TV - A2TV TR - a Haber - a News - A Para - À Punt ES - AB3 - Action - Active Family - Adult Channel - Adult Channel 2 - Adventure HD - Al Arabiya - Al Jazeera - Ale Kino+ - ALFA TVP - AMC PL - Das Erste - ARTE FR - ARTE DE - ATV1 - ATV2 - auftanken.TV - Auto Moto FR - AXN PL - AXN Spin PL - AXN White PL - BabyTV - BBC World News - BBN Türk - beIN GURME - beIN iZ - beIN Movies Premiere TR - beIN Movies Turk - beIN Sports 1 FR - beIN Sports 2 FR - beIN Sports 3 FR - beIN Sports MAX 5 FR - beIN Sports MAX 6 FR - beIN Sports MAX 7 FR - beIN Sports MAX 8 FR - beIN Sports MAX 9 FR - beIN Sports MAX 10 FR - beIN Sports MAX 4 FR - Benfica TV - BET FR - Beyaz TV - BFM Business - BFM TV - Bloomberg TV - Bloomberg HT - Boing - Cartoonito CEE - Boomerang FR - Boomerang UK - Canal 24H - CANAL+ DOCS - Canal+ Kids FR - CANAL+ GRAND ECRAN - Canal J - Canal+ Cinéma(s) FR - Canal+ Domo - Canal+ France - CANAL+ Kuchnia - Canal Plus Sport FR - Canal+ Series FR - CANAL+SPORT360 - Cartoon Network - Cartoon Network FR - Film Cafe PL - CCTV 4 Europe - CGTN - CGTN Documentary - Первый - Chérie 25 - Ciné+ Classic - Ciné+ Club - Ciné+ Emotion - Ciné+ Famiz - Ciné+ Frisson - Polar+ - Cine+ Premier FR - English Club TV - CNBC Europe - CNews - CNN Europe - CNN Türk TV - Comedie+ - Comedy Central FR - Comedy Central PL - Comedy Central UK - Crime District - Crime+Investigation PL - CStar FR - CStar Hits France - Daystar - Deutsche Welle English - Disco Polo Music PL - Discovery Animal Planet - Discovery Channel FR - Discovery Historia - Discovery Investigation FR - Disney Channel FR - Disney Junior FR - Novelas Plus 1 - Dizi Smart Max - Dizi Smart Premium - Stingray Djazz - DMAX TR - Dorcel TV - Dorcel XXX - Dream Türk - Ekotürk - European League of Football Channel - E! Entertainment - Erox HD - Eroxxx HD - Eska Rock TV - Eska TV - Eska TV Extra - ETB 1 - ETB 2 - ETB 3 - ETB 4 - ETB Basque - Euro D - Euro Star - Eurochannel - Eurochannel FR - EuroNews - Euronews FR - Eurosport 2 FR - Eurosport FR - EWTN - EWTN PL - Fashion TV - Fight Klub HD - FightBox HD - Filmax - FilmBox Family PL - Fokus TV - Folx TV - FX Comedy PL - FOX NEWS - FX PL - NOW - France24 - France24 Arabic MENA - France 2 - France 3 - France 4 - France 5 - France24 Arabic - France 24 French - France Info - Game One - Game One+1 - Ginx Esports TV - Golf Channel Češka - Golf plus - Gulli - Haber Global - Habertürk - Habitat TV - Hustler HD - HUSTLER TV - i24News FR - Infosport+ - Insight TV - iTVN - iTVN Extra - J-One - Kabel Eins - Kanal 7 - KANAL 24 TR - Kanal D TR - KBS World HD - KiKA - Kino Polska - Kino Polska Muzyka - krone.tv - Karadeniz TV - L'Equipe - La7 - La Chaîne Info - LCP - M6 - Mangas - MCM FR - MCM Top - Mediaset Italia - Melodie TV - Metro TV - Mezzo - Mezzo Live HD - MGG TV - MinikaGO TR - Minimini+ - Motorvision Plus International - Motorvision Plus France - Motowizja - MovieSmart Classic - MovieSmart Türk - MTV Europe - MTV 00s - MTV FR - MTV Hits FR - MTV Hits International - Museum TV - NTV DE - Nat Geo Wild FR - National Geographic FR - The Nautical Channel - NBC News - Nickelodeon FR - Nickelodeon Junior FR - Nickelodeon Teen FR - Novelas+ - Novelas TV FR - Nowa TV - Number One Türk - RMC Story - NUTA GOLD - NUTA.TV HD - OCS Geants - OCS Max - OCS Pulp - oe24.TV - OLTV - Olympia TV - ORF2 - Paramount Channel FR - Paris premiere - Vesti - TV PINK EXTRA - PINK Film - Pink Music 1 - TV PINK PLUS - Piwi+ - Planète+ Aventure - Planete+ Crime - Planète+ - Planete+ PL - Playboy TV - POLO TV - Polonia1 - Polsat 1 - Polsat 2 - Polsat Cafe - Polsat Comedy Central Extra - Polsat Doku - Polsat Film - Polsat Games - Polsat Music - Polsat News - Polsat News 2 - Polsat Play - Polsat Rodzina - Polsat Seriale - Polsat Viasat Explore - Power TV PL - Power Türk TV - Brazzers TV (ex. Private Spice) - Private TV - ProSieben - PRO 7 Österreich - Puls 4 - Puls 8 - Radio Ticino Channel HD - RAI UNO - RAI DUE - RAI TRE - RAI 4 - RAI 5 - RAI Education - RAI News 24 - RAI Storia - RAI World Premium - Rai Yoyo - Real Madrid TV - Reality Kings - Red Carpet TV PL - RedLight HD - RMC Découverte - RMC Sport 1 - RMC Sport 2 - RMC Sport Live 4 - RMC Sport Live 5 - RMC Sport Live 6 - RMC Sport Live 7 - RMC Sport Live 8 - RMC Sport Live 9 - RMC Sport Live 10 - RMC Sport Live 11 - RMC Sport Live 12 - RMC Sport Live 13 - RMC Sport Live 14 - RMC Sport Live 15 - RMC Sport Live 16 - RMC Sport Live 17 - RMC Sport Live 3 - RSI La 1 - RSI La 2 - RT Documentary - RTL Zwei - RTL DE - RTL Nitro - RTP3 - RTS 2 Suisse - RTS SVET - Russia Today - S1 CH - SAT.1 - Sat.1 Österreich - Seasons - Show Türk - Show TV - SIC - SIC Internacional - SinemaTV 2 - SinemaTV 1001 - SinemaTV 1002 - SinemaTV Aile - SinemaTV Aile 2 - SinemaTV Aksiyon - SinemaTV Aksiyon 2 - SinemaTV Komedi - SinemaTV Komedi 2 - SinemaTV Yerli - SinemaTV Yerli 2 - SinemaTV - Sixx AT - Sky News - SR Fernsehen - SRF 1 - SRF Info - SRF Zwei - Star TV TR - Stars TV PL - Stingray CMusic - Stingray Classica - Stingray iConcerts - Stopklatka - Sundance TV PL - Super Polsat - Super RTL - SWR - SWR Baden-Württemberg - SX3 - TAY TV - TBN Polska HD - TCM Cinéma - TELE 1 - TeleBärn - TeleDeporte - Télétoon+ FR - Tele Zürich - teve2 - Télévision française 1 - TF1 Séries Films - TFX - TGCOM24 - TGRT Belgesel - TGRT EU - TGRT HABER - TiJi - Tivibu Spor - TMC - Trace Urban - Travel Channel - TRT 1 - TRT Spor - TRT 4K - TRT Kurdî - TRT Arapça - TRT Avaz - TRT Belgesel - TRT Çocuk - TRT Diyanet - TRT EBA TV İlkokul - TRT EBA TV Lise - TRT EBA TV Ortaokul - TRT Haber - TRT Müzik - TRT Turk - TRT World - TTV - TV3 Catalunya - TV5 - TV5 Monde - TV5Monde Asia - TV5Monde Europe - TV24 - TV25 - TV100 TR - TV1000 Global Kino - teve2 TR - TV 4 - TV 8 TR - TV 8.5 - TV Breizh - TV Net - TV Puls PL - TV Silesia - TV Trwam - TVE Internacional - Televisión de Galicia - TVG2 - TV Galicia - TVN - TVN 7 - TVN Style - TVN Turbo - TVP 1 - TVP 2 - TVP 3 - TVP ABC - TVP HD - TVP Historia - TVP Info - TVP Kobieta - TVP Kultura - TVP Regionalna - TVP Rozrywka - TVP Seriale - TVR PL - TVS - TVT PL - Uçankuş TV - Ülke TV - VG TV - MTV 80s - Vivid Red - Vivid TV - Vosges Télévision - VOX - W9 - Warner TV FR - Welt - wPolsce PL - Wydarzenia 24 - Xtreme TV - Yaban TV - ZDF - ZDFinfo + Antena 3 + A Spor + A Spor + CARAC5 + DocuBox HD + ETB Basque + ETB Basque + Fuel TV + Fuel TV + Fuel TV + Nick - Comedy Central+1 + Nick - Comedy Central+1 + SAT.1 Rheinland Pfalz & Hessen 4Fun Dance 4Fun Kids 4FunTV @@ -3478,7 +2149,6 @@ CBBC Cbeebies TRUE CRIME XTRA - Film Cafe PL TRUE CRIME Challenge TV Channel 4 @@ -3522,7 +2192,7 @@ Euro D Euro Star EuroNews - Eurosport.com + TNT Sports EWTN PL Extreme Sports Channel Fight Klub HD @@ -3560,7 +2230,6 @@ iTVN iTVN Extra Jewellery Channel - Kanal 7 KANAL 24 TR Kanal D TR Ketchup TV @@ -3574,16 +2243,12 @@ Manchester TV Melodie TV Metro TV - Minimini+ More4 MotorTrend Motorvision Plus International Motorvision Plus France Motowizja Movies 24 - MTV 80s UK - MTV 90s UK - MTV Live HD MTV Music UK MTV UK 5Select @@ -3594,7 +2259,6 @@ NBC News Nick Jr. Too UK Nick Junior UK - Nick Music Nickelodeon UK Nicktoons UK Now 70s @@ -3615,7 +2279,6 @@ Polsat 1 Polsat 2 Polsat Cafe - Polsat Comedy Central Extra Polsat Doku Polsat Film Polsat Games @@ -3637,12 +2300,7 @@ Quest Red QVC Beauty QVC Style - RAI UNO - RAI DUE - RAI TRE - RAI 4 RAI 5 - Rai Yoyo Really UKTV Red Carpet TV PL RedLight HD @@ -3662,14 +2320,11 @@ Sky Documentaries Sky Kids Sky Witness - Sky Max Sky Cinema Action Sky Cinema Comedy Sky Family Sky Cinema Premiere Sky Nature UK - Sky Replay - Sky Showcase Sky Sports Main Event Sky Sports Cricket Sky Sports Action @@ -3685,21 +2340,18 @@ Smithsonian Channel SonLife Sony Channel - Great! Movies + Great! Mystery Great! Movies Action Great! Movies Classic - Great! Movies +1 - Star TV TR + Great! Mystery +1 Stars TV PL Stopklatka STV UK Sundance TV PL - Super Polsat Sky Sci-Fi Talking Pictures TV TAY TV TBN Polska HD - TELE 1 TGRT Belgesel TGRT EU That's TV @@ -3733,7 +2385,6 @@ TVN 7 TVN Style TVN Turbo - TVP 1 TVP 2 TVP HD TVP Info @@ -3755,339 +2406,6 @@ XXL Yaban TV U&Yesterday - 2X2 - 4Fun Dance - 4Fun Kids - 4FunTV - Telewizja 13 - 13 Ulica - 360 TuneBox - A2TV TR - a Haber - a News - A Para - Active Family - Adult Channel - Adult Channel 2 - Adventure HD - Ale Kino+ - ALFA TVP - AMC HU - AMC PL - Apostol TV - Das Erste - ARD-alpha - Arena4 HU - ATV1 - ATV2 - ATV Spirit HU - AXN HU - AXN PL - AXN Spin PL - AXN White PL - BabyTV - BBC News Channel - BBC World News - BBN Türk - Bloomberg TV - Bloomberg HT - Body in Balance - Cartoonito CEE - Canal+ Domo - Canal+ France - CANAL+ Kuchnia - Film Cafe PL - CBS Reality - CCTV 4 Europe - Cinemax 2 HU - Cinemax HU - English Club TV - CNN Europe - Comedy Central HU - Comedy Central PL - CoolTV - Crime+Investigation PL - D1 TV HU - Da Vinci Learning - Deutsche Welle English - Disco Polo Music PL - Discovery Channel HU - Discovery Historia - Disney Channel HU - Novelas Plus 1 - Dizi Smart Max - Dizi Smart Premium - Stingray Djazz - DMAX TR - Dorcel XXX - Dream Türk - ducktv SD - ducktv HD - Duna TV - Duna World - Ekotürk - European League of Football Channel - E! Entertainment - Epic Drama (CEE) - Erox HD - Eroxxx HD - Eska Rock TV - Eska TV - Eska TV Extra - Extreme Sports Channel - Fashion TV - FashionBox HD - Fast&FunBox HD - Fehérvár TV - TV2 Klub - Fight Klub HD - FightBox HD - Film4 HU - Film Cafe HU - Film+ HU - Filmax - FilmBox Arthouse - Filmbox Extra HU - Filmbox Family HU - FilmBox HU - Filmbox Premium HU - Filmbox Stars HU - Film Mania HU - The Fishing and Hunting - Fokus TV - Folx TV - Food Network - FX Comedy PL - FX PL - NOW - France24 - FunBox UHD - Galaxy4 - Gametoon HD - H!T Music Channel RO - Haber Global - Habitat TV - HBO - HBO 2 HU - HBO 3 HU - HBO HU - Home & Garden Television - Hír TV - The History Channel - History Channel 2 - History Channel HU - Home & Garden Television UK - Hustler HD - HUSTLER TV - Investigation Discovery - Investigation Discovery UK - Izaura TV - Jazz TV HU - JimJam - JockyTV - Kanal 7 - KANAL 24 TR - Kanal D TR - KiKA - Kino Polska - Kino Polska Muzyka - Kölyökklub - krone.tv - Karadeniz TV - Life TV HU - LUXE TV - Magyar Televízió 1 - M2 Petőfi - Magyar Televízió 3 - M4 sport - M4 Sport Plus - m5 - ATV HU - Magyar Mozi TV - Magyar Sláger TV - MATCH4 - MAX4 - Mediaset Italia - Melodie TV - Metro TV - Mezzo - Mezzo Live HD - MinikaGO TR - Minimax - Minimax HU - Minimini+ - Motorvision Plus International - Motowizja - MovieSmart Classic - MovieSmart Türk - Moziklub - Moziverzum - MTV 00s - Club MTV International - MTV Europe HU - MTV Hits International - MTV Live HD - MTV 90s International - Muzsika TV - MyZen TV - Nat Geo Wild HU - National Geographic HU - Nick Junior PL - Nickelodeon Commercial - Nicktoons PL - Novelas+ - Nowa TV - Number One Türk - NUTA GOLD - NUTA.TV HD - oe24.TV - ORF3 - Ozone Network - Paramount Network HU - PΛX - Planete+ PL - Playboy TV - POLO TV - Polonia1 - Polsat 2 - Polsat Cafe - Polsat Comedy Central Extra - Polsat Doku - Polsat Film - Polsat Games - Polsat Music - Polsat News - Polsat News 2 - Polsat Play - Polsat Rodzina - Polsat Seriale - Polsat Viasat Explore - Polsat Viasat History - Polsat Viasat Nature - Power TV PL - Prime - Private TV - Mozi plusz TV - ProSieben - PRO 7 Österreich - Puls 4 - RAI UNO - RAI TRE - Rai Yoyo - Red Carpet TV PL - RedLight HD - Romance TV PL - RTL Zwei - RTL DE - RTL Gold - RTL Három - RTL Ketto - RTL HU - RTL Otthon - SAT.1 - Sat.1 Österreich - Show TV - SinemaTV 2 - SinemaTV 1001 - SinemaTV 1002 - SinemaTV Aile - SinemaTV Aile 2 - SinemaTV Aksiyon - SinemaTV Aksiyon 2 - SinemaTV Komedi - SinemaTV Komedi 2 - SinemaTV Yerli - SinemaTV Yerli 2 - SinemaTV - Sixx AT - Sky News - SkyShowtime 1 Nordic - Viasat Film HU - Sorozat+ - Sorozatklub - Spektrum Home HU - Spektrum TV - Spíler2 TV - Spíler1 TV - Sport 1 HU - Sport 2 HU - Star TV TR - Stars TV PL - Stingray Classica - Stingray iConcerts - Stopklatka - Story4 - Sundance TV PL - Super Polsat - Super RTL - Super TV2 - TAY TV - TBN Polska HD - TeenNick - TELE 1 - teve2 - TGRT Belgesel - Tivibu Spor - Travel Channel - TRT 4K - TRT EBA TV İlkokul - TRT EBA TV Lise - TRT EBA TV Ortaokul - TRT World - TTV - TV2 Comedy - TV2 HU - TV2 Kids - TV2 Séf - TV4 HU - TV5 - Viasat 6 - TV100 TR - teve2 TR - TV 4 - TV 8 TR - TV 8.5 - TV Net - TV Paprika HU - TV Puls PL - TV Silesia - TV Trwam - TVE Internacional - TVN24 - TVN 7 - TVN Style - TVN Turbo - TVP 2 - TVP 3 - TVP ABC - TVP HD - TVP Historia - TVP Info - TVP Kobieta - TVP Kultura - TVP Regionalna - TVP Rozrywka - TVP Seriale - TVR PL - TVS - TVT PL - UTV RO - Uçankuş TV - MTV 80s - Viasat3 - Viasat 2 - Viasat History - Viasat Nature CEE - Vivid Red - Vivid TV - VOX - World Fashion Channel - wPolsce PL - Wydarzenia 24 - Xtreme TV - Yaban TV - ZDF - Zenebutik 2X2 4Fun Dance 4Fun Kids @@ -4145,7 +2463,6 @@ CBBC Cbeebies TRUE CRIME XTRA - Film Cafe PL TRUE CRIME CGTN Challenge TV @@ -4222,7 +2539,6 @@ ITV Quiz iTVN iTVN Extra - Kanal 7 KANAL 24 TR Kanal D TR Kino Polska @@ -4234,15 +2550,12 @@ Melodie TV Metro TV MinikaGO TR - Minimini+ More4 Motorvision Plus International Motowizja Movies 24 MovieSmart Classic MovieSmart Türk - MTV 80s UK - MTV 90s UK MTV Music UK MTV UK 5Select @@ -4287,7 +2600,6 @@ Quest Red QVC Beauty QVC Style - Rai Yoyo Really UKTV Red Carpet TV PL Revelation TV @@ -4316,32 +2628,27 @@ Sky Crime Sky Kids Sky Witness - Sky Max Sky Cinema Action Sky Cinema Comedy Sky Family Sky Nature UK - Sky Showcase Sky Sports Racing Sky News Smithsonian Channel SonLife Sony Channel Great! TV - Great! Movies + Great! Mystery Great! Movies Action Great! Movies Classic - Great! Movies +1 - Star TV TR + Great! Mystery +1 Stars TV PL Stopklatka Sundance TV PL - Super Polsat Sky Sci-Fi Talking Pictures TV TAY TV TBN Polska HD - TELE 1 teve2 TG4 Ireland TGRT Belgesel @@ -4367,7 +2674,6 @@ TVN 7 TVN Style TVN Turbo - TVP 1 TVP 2 TVP 3 TVP ABC @@ -4396,6 +2702,2352 @@ Xtreme TV Yaban TV U&Yesterday + 2X2 + 3SAT + 4Fun Dance + 4Fun Kids + Telewizja 13 + 13 Ulica + 20 Mediaset + 24 Kitchen + 24Kitchen PT + Televizija 24 + 360 TuneBox + A2 CNN + A2TV TR + a Haber + a News + A Para + ABC News Albania + Active Family + Adria TV + Adventure HD + Agro TV + Ale Kino+ + ALFA TVP + AMC + AMC PL + Anixe HD Serie + Das Erste + Arena Esport + Arena Fight + Arena Sport 1 Premium + Arena Sport 1x2 + Arena Sport 2 Premium + Arena Sport 3 Premium + Arena Sport 5 RS + Arena Sport 6 RS + Arena Sport 7 RS + Arena Sport 8 RS + Arena Sport 9 RS + Arena Sport 10 RS + ARTE DE + ATV1 + ATV2 + AXN + AXN Black PL + AXN PL + AXN Spin + AXN Spin PL + AXN White PL + B92 + BabyTV + Balkan trip + Balkan TV + Bang Bang + BBC Earth + BBC World News + BBN Türk + BlicTV + Bloomberg Adria + Bloomberg HT + Radio Televizija BN + BN music + BN 2 HD + Cartoonito CEE + Brainz TV + Bravo Music + CANAL+ Kuchnia + Cartoon Network + CCTV 4 Europe + CGTN + CGTN Documentary + Cinemax + Cinemax 2 + CineStar Premiere 1 + CineStar Premiere 2 + CineStar TV2 + CineStar TV Comedy Family + CineStar TV Fantasy + Click TV + Croatian Music Channel + CNN Europe + Nicktoons + Comedy Central PL + Crime & Investigation Channel + Crime+Investigation PL + Cufo TV + Deutsche Welle English + Disco Polo Music PL + Discovery Animal Planet + Discovery Channel + Discovery Historia + TLC + Disney Channel + Disney Junior + Novelas Plus 1 + Dizi Smart Max + Dizi Smart Premium + DMAX TR + DM SAT + Dorcel TV + Dorcel XXX + DOX TV + Dream Türk + ducktv SD + ducktv HD + Ekotürk + European League of Football Channel + Elrodi + E! Entertainment + Epic Drama (CEE) + Erox HD + Eroxxx HD + Eska Rock TV + Eska TV Extra + Euro Cinema 1 + Euro Cinema 2 + Euro Cinema 3 + Euro Cinema 4 + Eurochannel + EuroNews + Euronews Albania + EuroNews Srbija + Eurosport + Eurosport 2 + EWTN PL + Explorer Histori + Explorer Natyra + Explorer Shkence + Extreme Sports Channel + FACE TV + Fashion TV + FashionBox HD + Fast&FunBox HD + FAX News + Fight Klub HD + FightBox HD + SK Fight + Filmax + FilmBox Arthouse + FilmBox Extra RS + FilmBox Family PL + FilmBox Stars RS + FilmBox Premium RS + Fokus TV + Folx TV + Food Network + STAR Channel + FX Comedy PL + STAR Crime + STAR Life + STAR Movies + FOX NEWS + FX PL + France24 + France 3 + France 24 French + Gametoon HD + SK Golf + Golica TV + Grand Televizija + Haber Global + Habitat TV + HappyTV + Hayat Folk Box + Hayat Music Box + Hayat 2 + Hayat TV + Hayatovci + HBO + HBO3 + HBO2 + HEMA TV + Home & Garden Television + The History Channel + History Channel 2 + HRT 1 + HRT 2 + HRT 3 + HRT 4 + HUSTLER TV + IDJ World + Insajder TV + Narodna TV + Investigation Discovery + Jugoton TV + Junior TV + K1 TV + K::CN 2 Music + Kanal 3 Prnjavor + KANAL 24 TR + Kanal D Drama TR + Kanali 7 + Kazbuka + Kino Polska + Kino Polska Muzyka + KitchenTV + Klan Kosova + K::CN 1 Kopernikus + krone.tv + Karadeniz TV + Kurir TV + Living HD + Lov i ribolov + MCN TV + Mediaset Italia + Melodie TV + DigitAlb Melody TV + Mezzo Live HD + MinikaGO TR + Minimax + Motowizja + MovieSmart Classic + MovieSmart Türk + MTV Europe + MUSE + My Music + MyZen TV + N1 RS + Наша ТВ + National Geographic + National Geographic Channel HD + Nat Geo Wild + NBA TV + News 24 + Nat Geo Wild HD + Nick Junior + Nickelodeon Commercial + Nova Max + Nova S + Nova Series + Novelas+ + RTV Novi Pazar + Nowa TV + Number One Türk + NUTA GOLD + NUTA.TV HD + O Kanal + OBN + oe24.TV + Ora News + ORF2 + OTV Valentino + Pickbox TV RS + Pikaboo + RTV PINK + RED tv + Vesti + Pink Action + Pink Thriller + Pink Crime & Mystery + Pink BH + Pink Classic + Pink Comedy + Pink Erotic 1 + Pink Erotic 2 + Pink Erotic 3 + Pink Erotic 4 + Pink Erotic 5 + Pink Erotic 6 + Pink Erotic 7 + Pink Erotic 8 + TV PINK EXTRA + PINK Family + Pink Fashion + PINK Film + Pink Folk 1 + Pink Folk 2 + Pink Ha Ha + Pink Hits + Pink Hits 2 + Pink Horror + Pink Kids + Pink Koncert + Pink Kuvar + Pink LOL + Pink M + Pink Movies + Pink Romance + Pink SCI FI & Fantasy + Pink Music 1 + Pink and Roll + Pink Pedia + TV PINK PLUS + Pink Premium + Pink Reality + Pink Serije + Pink Show + Pink Soap + Pink Style + Pink Super Kids + Pink Western + PINK World + Pink World Cinema + PINK Zabava + Planete+ PL + POLO TV + Polonia1 + Polsat 1 + Polsat 2 + Polsat Cafe + Polsat Doku + Polsat Film + Polsat Music + Polsat News + Polsat News 2 + Polsat Play + Polsat Rodzina + Polsat Seriale + Polsat Viasat Explore + Polsat Viasat History + Polsat Viasat Nature + Power TV PL + Premier League TV + Brazzers TV (ex. Private Spice) + Private TV + ProSieben + PRO 7 Österreich + Prva FILES + Prva KICK + Prva LIFE + Prva MAX + Prva Plus + Prva Srpska TV + Prva TV Crna Gora + Prva World + Puls 4 + RAI UNO + RAI DUE + RAI 5 + Reality Kings + Red Carpet TV PL + Report TV + Россиᴙ 24 + RT Documentary + RTK 1 + RTL + RTL 2 + RTL Croatia World + RTL Kockica + RTL Living + RTRS + RTRS PLUS + RTS 1 + RTS 2 + RTS 3 + RTS Drama + RTS Klasika + RTS Kolo + RTS Muzika + RTS Nauka + RTS SVET + RTS Trezor + RTS Život + Radio Televizija Budva + Russia Today + Sat.1 Österreich + Scan TV + SciFi + SinemaTV 2 + SinemaTV 1001 + SinemaTV 1002 + SinemaTV Aile + SinemaTV Aile 2 + SinemaTV Aksiyon + SinemaTV Aksiyon 2 + SinemaTV Komedi + SinemaTV Komedi 2 + SinemaTV Yerli + SinemaTV Yerli 2 + SinemaTV + Sixx AT + Sky News + RTV Slovenija 1 + Tring Smile + SOS Plus + Sport Klub 1 Slovenija + Sport Klub 3 + Superstar 2 + Stinet + Stopklatka + Studio B + STV Folk + Sundance TV PL + Superstar TV + K::CN 3 Svet Plus + Syri TV + Televizioni 7 + Tanjug Tačno + TAY TV + TBN Polska HD + DIZI + TELE 1 + teve2 + TGCOM24 + TGRT Belgesel + Tip TV + Tivibu Spor + TOGGO plus + Top Channel + Top News + Toxic Folk + Toxic TV + Travel Channel + TRT 4K + TRT EBA TV İlkokul + TRT EBA TV Lise + TRT EBA TV Ortaokul + TTV + TV5 + TV5Monde Europe + TV100 TR + Viasat Kino Balkan + TV 4 + TV 8.5 + Televizija TV7 + Arena Sport 1 RS + Arena Sport 2 RS + Arena Sport 3 RS + Arena Sport 4 RS + TV Duga + SAT + Телевизија Храм + RTV Most + TV Net + TV Silesia + TV Trwam + Televizija Crne Gore 3 + Televizija Doktor + TVN 7 + TVN Style + TVN Turbo + TVP 2 + TVP 3 + TVP ABC + TVP HD + TVP Historia + TVP Info + TVP Kobieta + TVP Kultura + TVP Rozrywka + TVP Seriale + TVR PL + TVT PL + Uçankuş TV + UNA TV + DIVA (ex. Universal) + Viasat Explore CEE + Viasat History + Viasat Nature CEE + Vikom + Vizion Plus + RT Vojvodina 1 + RT Vojvodina 2 + wPolsce PL + Wydarzenia 24 + Xtreme TV + XXL + Yaban TV + ZDFinfo + ZDFneo + Zdrava televizija + Zico TV + Arena Sport 4 Premium + Arena Sport 5 Premium + Arena Sport Adrenalin + Arena Sport Tenis + A Spor + A Spor + A Spor + beIN Movies Turk + BG Music Channel + DocuBox HD + DocuBox HD + ETB Basque + Fuel TV + Fuel TV + Fuel TV + Passion XXX + Radio Televizija BIH + Show Türk + Superstar 3 + The Voice BG + TRT Haber + Ülke TV + Еспресо TV + 2X2 + 4Fun Dance + 4Fun Kids + 4FunTV + 7 TV Región Murcia + Telewizja 13 + Trece TV + 13 Ulica + 3/24 + A2TV TR + a Haber + a News + A Para + À Punt ES + Active Family + Adult Channel + Adult Channel 2 + Adventure HD + Al Jazeera + Ale Kino+ + ALFA TVP + Alquiler 1 + AMC Break PT + AMC Crime PT + AMC PL + AMC PT + Andalucía TV + Antena.nova + Aragón TV + AXN ES + AXN PL + AXN PT + AXN Spin PL + AXN Movies ES + AXN White PL + AXN White PT + BabyTV ES + BabyTV + BBC World News + BBN Türk + Betis TV ES + BFM TV + Bloomberg TV + Bloomberg HT + Boing ES + BOM Cine + BuenViaje + Canal 24H + Canal Extremadura + Canal Fútbol Replay + Canal Hollywood PT + Canal J + Canal Parlamento + Canal+ Domo + CANAL+ Kuchnia + Canal Sur + Casa e Cozinha + Castilla la Mancha TV + Caza y Pesca ES + Capital XTRA + Clan TVE + CNBC Europe + CNN Europe + Comedy Central ES + Comedy Central PL + COSMO + Crime+Investigation PL + Daystar + DAZN 1 ES + DAZN 2 ES + DAZN 3 ES + DAZN 4 ES + DAZN F1 + DAZN LALIGA + DAZN LALIGA 2 + DBike Channel + Deutsche Welle English + Deutsche Welle Espanol + Disco Polo Music PL + Discovery Animal Planet + Discovery Historia + Disney Junior ES + Novelas Plus 1 + Dizi Smart Max + Dizi Smart Premium + Stingray Djazz + DMAX TR + Dorcel TV + Dorcel XXX + Dream Türk + Ekotürk + El Garage TV + El Toro TV + LEVANTE TV + European League of Football Channel + Erox HD + Eroxxx HD + Eska Rock TV + Eska TV + Eska TV Extra + Esport3 + ETB 1 + ETB 2 + ETB1 ON + ETB2 ON + ETB Basque + Eurochannel + EuroNews + Euronews FR + Eurosport 1 ES + Eurosport 2 ES + EWTN ES + EWTN PL + Extreme Sports Channel + Fashion TV + Feel Good + Fight Klub HD + Fight Time + Filmax + FilmBox Family PL + Fokus TV + Folx TV + FX Comedy PL + FOX NEWS + FX PL + France24 + GOL PLAY ES + Haber Global + Habitat TV + HispanTV + HIT TV ES + Hustler HD + HUSTLER TV + Iberalia HD CAZA + Iberalia HD PESCA + Iberalia TV + Insight TV + iTVN + iTVN Extra + KANAL 24 TR + Kanal D TR + Kino Polska + Kino Polska Muzyka + krone.tv + Karadeniz TV + La 1 Cataluña + La dos + La 7 Murcia + LA 8 MEDITERRANEO + La Otra ES + La primera + La Resistencia por M+ + La Rioja + LALIGA TV HYPERMOTION + LALIGA TV HYPERMOTION 2 + LALIGA TV HYPERMOTION 3 + LUXE TV + Clásicos por M+ + Deportes 2 por M+ + M+ Deportes 3 + Documentales por M+ + Ellas Vamos por M+ + Golf 2 por M+ + Indie por M+ + LALIGA TV 2 por M+ + LALIGA TV 3 por M+ + Liga de Campeones 2 por M+ + Liga de Campeones 3 por M+ + M+ Originales + Vacaciones por M+ + Melodie TV + Metro TV + Mezzo + Mezzo Live HD + MinikaGO TR + Motorvision Plus International + Motorvision Plus + Motowizja + MovieSmart Classic + MovieSmart Türk + Acción por M+ + Cine Español por M+ + Comedia por M+ + Deportes por M+ + Drama por Movistar Plus+ + Movistar Estrenos + Golf por M+ + LALIGA TV por M+ + Liga de Campeones por M+ + Movistar Plus+ + Movistar Plus+ 2 + MTV ES + MTV Music UK + MyZen TV + Nat Geo Wild ES + National Geographic ES + Nautica TV + NBC News + Nick Junior Commercial Light + Nickelodeon PT + Novelas+ + Nowa TV + Number One Türk + NUTA GOLD + NUTA.TV HD + Odisseia + oe24.TV + Paramount Comedy ES + Planete+ PL + POLO TV + Polonia1 + Polsat 1 + Polsat 2 + Polsat Cafe + Polsat Doku + Polsat Film + Polsat Games + Polsat Music + Polsat News + Polsat News 2 + Polsat Play + Polsat Rodzina + Polsat Seriale + Polsat Viasat Explore + Power TV PL + Private TV + RAI 5 + RAI World Premium + Real Madrid TV + Red Carpet TV PL + RedLight HD + Russia Today ES + Sevilla FC TV + SinemaTV 2 + SinemaTV 1001 + SinemaTV 1002 + SinemaTV Aile + SinemaTV Aile 2 + SinemaTV Aksiyon + SinemaTV Aksiyon 2 + SinemaTV Komedi + SinemaTV Komedi 2 + SinemaTV Yerli + SinemaTV Yerli 2 + SinemaTV + Sky News + Star Channel ES + Stars TV PL + Stingray Classica + Stopklatka + Sundance TV PL + Canal 33 + SX3 + TAY TV + TBN Polska HD + TCM ES + TELE ELX + TeleDeporte + TeleMadrid + teve2 + TGRT Belgesel + Tivibu Spor + Warner TV ES + TPA7 + TRT 1 + TRT 2 + TRT Spor + TRT 4K + TRT Kurdî + TRT Arapça + TRT Avaz + TRT Belgesel + TRT Çocuk + TRT EBA TV İlkokul + TRT EBA TV Lise + TRT EBA TV Ortaokul + TRT Haber + TRT Müzik + TRT Turk + TRT World + TTV + TV3 Catalunya + TV3 ES + TV5 + TV5Monde Europe + TV100 TR + teve2 TR + TV 4 + TV 8.5 + TV Canaria + TV Chile + TV Net + TV Puls PL + TV Silesia + TV Trwam + TVE Internacional + Televisión de Galicia + TVG2 - TV Galicia + TVN + TVN24 + TVN 7 + TVN Style + TVN Turbo + TVP 2 + TVP 3 + TVP ABC + TVP HD + TVP Historia + TVP Info + TVP Kobieta + TVP Kultura + TVP Regionalna + TVP Rozrywka + TVP Seriale + TVR PL + TVS + TVT PL + Uçankuş TV + #Vamos + Verdi + VG TV + Vivid Red + Vivid TV + World Fashion Channel + wPolsce PL + Wydarzenia 24 + Xtreme TV + XXL + Yaban TV + Antena 3 + A Spor + Cuatro + Fuel TV + La sexta + 2X2 + 3 Plus CH + 4 Plus + 4Fun Dance + 4Fun Kids + 4FunTV + 5 Plus + 6 plus + 6ter + Telewizja 13 + 13 Ulica + 3/24 + 360 TV + A2TV TR + a Haber + a News + A Para + À Punt ES + AB3 + Action + Active Family + Adult Channel + Adult Channel 2 + Adventure HD + Al Arabiya + Al Jazeera + Ale Kino+ + ALFA TVP + AMC PL + Das Erste + ARTE FR + ARTE DE + ATV1 + ATV2 + auftanken.TV + Auto Moto FR + AXN PL + AXN Spin PL + AXN White PL + BabyTV + BBC World News + BBN Türk + beIN GURME + beIN iZ + beIN Movies Premiere TR + beIN Movies Turk + beIN Sports 1 FR + beIN Sports 2 FR + beIN Sports 3 FR + beIN Sports MAX 5 FR + beIN Sports MAX 6 FR + beIN Sports MAX 7 FR + beIN Sports MAX 8 FR + beIN Sports MAX 9 FR + beIN Sports MAX 10 FR + beIN Sports MAX 4 FR + Benfica TV + Beyaz TV + BFM Business + BFM TV + Bloomberg TV + Bloomberg HT + Boing + Cartoonito CEE + Boomerang FR + Boomerang UK + Canal 24H + CANAL+ DOCS + Canal+ Kids FR + CANAL+ GRAND ECRAN + Canal J + Canal+ Cinéma(s) FR + Canal+ Domo + Canal+ France + CANAL+ Kuchnia + Canal Plus Sport FR + CANAL+SPORT360 + Cartoon Network + Cartoon Network FR + CCTV 4 Europe + CGTN + CGTN Documentary + Первый + RMC Life + Ciné+ Classic + Ciné+ Festival + Ciné+ Emotion + Ciné+ Family + Ciné+ Frisson + Polar+ + Cine+ OCS FR + English Club TV + CNBC Europe + CNews + CNN Europe + CNN Türk TV + Comedie+ + Comedy Central FR + Comedy Central PL + Comedy Central UK + Crime District + Crime+Investigation PL + CStar FR + CStar Hits France + Daystar + Deutsche Welle English + Disco Polo Music PL + Discovery Animal Planet + Discovery Historia + Discovery Investigation FR + Disney Channel FR + Disney Junior FR + Novelas Plus 1 + Dizi Smart Max + Dizi Smart Premium + Stingray Djazz + DMAX TR + Dorcel TV + Dorcel XXX + Dream Türk + Ekotürk + European League of Football Channel + E! Entertainment + Erox HD + Eroxxx HD + Eska Rock TV + Eska TV + Eska TV Extra + ETB 1 + ETB 2 + ETB1 ON + ETB2 ON + ETB Basque + Euro D + Euro Star + Eurochannel + Eurochannel FR + EuroNews + Euronews FR + Eurosport 2 FR + Eurosport FR + EWTN + EWTN PL + Fashion TV + Fight Klub HD + FightBox HD + Filmax + FilmBox Family PL + Fokus TV + Folx TV + FX Comedy PL + FOX NEWS + FX PL + NOW + France24 + France24 Arabic MENA + France 2 + France 3 + France 4 + France 5 + France24 Arabic + France 24 French + France Info + Game One+1 + Ginx Esports TV + Golf Channel Češka + Golf plus + Gulli + Haber Global + Habertürk + Habitat TV + Hustler HD + HUSTLER TV + i24News FR + Infosport+ + Insight TV + iTVN + iTVN Extra + Kabel Eins + Kanal 7 + KANAL 24 TR + Kanal D TR + KBS World HD + KiKA + Kino Polska + Kino Polska Muzyka + krone.tv + Karadeniz TV + L'Equipe + La7 + La Chaîne Info + LCP + M6 + Mangas + MCM FR + MCM Top + Mediaset Italia + Melodie TV + Metro TV + Mezzo + Mezzo Live HD + MGG TV + MinikaGO TR + Motorvision Plus International + Motorvision Plus France + Motowizja + MovieSmart Classic + MovieSmart Türk + MTV Europe + MTV FR + Museum TV + NTV DE + Nat Geo Wild FR + National Geographic FR + The Nautical Channel + NBC News + Nickelodeon FR + Nickelodeon Junior FR + Nickelodeon Teen FR + Novelas+ + Novelas TV FR + Nowa TV + Number One Türk + RMC Story + NUTA GOLD + NUTA.TV HD + OCS Geants + OCS Pulp + oe24.TV + OLTV + Olympia TV + ORF2 + Paris premiere + Vesti + TV PINK EXTRA + PINK Film + Pink Music 1 + TV PINK PLUS + Piwi+ + Planète+ Aventure + Planete+ Crime + Planète+ + Planete+ PL + Playboy TV + POLO TV + Polonia1 + Polsat 1 + Polsat 2 + Polsat Cafe + Polsat Doku + Polsat Film + Polsat Games + Polsat Music + Polsat News + Polsat News 2 + Polsat Play + Polsat Rodzina + Polsat Seriale + Polsat Viasat Explore + Power TV PL + Power Türk TV + Brazzers TV (ex. Private Spice) + Private TV + ProSieben + PRO 7 Österreich + Puls 4 + Puls 8 + Radio Ticino Channel HD + RAI UNO + RAI DUE + RAI TRE + RAI 5 + RAI Education + RAI News 24 + RAI Storia + RAI World Premium + Real Madrid TV + Reality Kings + Red Carpet TV PL + RedLight HD + RMC Découverte + RMC Sport 1 + RMC Sport 2 + RMC Sport Live 4 + RMC Sport Live 5 + RMC Sport Live 6 + RMC Sport Live 7 + RMC Sport Live 8 + RMC Sport Live 9 + RMC Sport Live 10 + RMC Sport Live 11 + RMC Sport Live 12 + RMC Sport Live 13 + RMC Sport Live 14 + RMC Sport Live 15 + RMC Sport Live 16 + RMC Sport Live 17 + RMC Sport Live 3 + RSI La 1 + RSI La 2 + RT Documentary + RTL Zwei + RTL DE + RTL Nitro + RTP Noticias + RTS 2 Suisse + RTS SVET + Russia Today + S1 CH + SAT.1 + Sat.1 Österreich + Seasons + Show Türk + Show TV + SIC + SIC Internacional + SinemaTV 2 + SinemaTV 1001 + SinemaTV 1002 + SinemaTV Aile + SinemaTV Aile 2 + SinemaTV Aksiyon + SinemaTV Aksiyon 2 + SinemaTV Komedi + SinemaTV Komedi 2 + SinemaTV Yerli + SinemaTV Yerli 2 + SinemaTV + Sixx AT + Sky News + SR Fernsehen + SRF 1 + SRF Info + SRF Zwei + Stars TV PL + Stingray CMusic + Stingray Classica + Stingray iConcerts + Stopklatka + Sundance TV PL + Super RTL + SWR + SWR Baden-Württemberg + SX3 + TAY TV + TBN Polska HD + TCM Cinéma + TELE 1 + TeleBärn + TeleDeporte + Télétoon+ FR + Tele Zürich + teve2 + Télévision française 1 + TF1 Séries Films + TFX + TGCOM24 + TGRT Belgesel + TGRT EU + TGRT HABER + TiJi + Tivibu Spor + TMC + Trace Urban + Travel Channel + TRT 1 + TRT Spor + TRT 4K + TRT Kurdî + TRT Arapça + TRT Avaz + TRT Belgesel + TRT Çocuk + TRT Diyanet + TRT EBA TV İlkokul + TRT EBA TV Lise + TRT EBA TV Ortaokul + TRT Haber + TRT Müzik + TRT Turk + TRT World + TTV + TV3 Catalunya + TV5 + TV5 Monde + TV5Monde Asia + TV5Monde Europe + TV24 + TV25 + TV100 TR + TV1000 Global Kino + teve2 TR + TV 4 + TV 8 TR + TV 8.5 + TV Breizh + TV Net + TV Puls PL + TV Silesia + TV Trwam + TVE Internacional + Televisión de Galicia + TVG2 - TV Galicia + TVN + TVN 7 + TVN Style + TVN Turbo + TVP 2 + TVP 3 + TVP ABC + TVP HD + TVP Historia + TVP Info + TVP Kobieta + TVP Kultura + TVP Regionalna + TVP Rozrywka + TVP Seriale + TVR PL + TVS + TVT PL + Uçankuş TV + Ülke TV + VG TV + Vivid Red + Vivid TV + Vosges Télévision + VOX + W9 + Warner TV FR + Welt + wPolsce PL + Wydarzenia 24 + Xtreme TV + Yaban TV + ZDF + ZDFinfo + Al Jazeera Arabic Arabic + Antena 3 + A Spor + BBC News Channel + Fuel TV + Kanal D Drama TR + RTS 1 Suisse + XXL + Jugoton TV + Pink Folk 2 + AXN HU + 2X2 + 3SAT + Telewizja 13 + 13 Ulica + 20 Mediaset + 24 Kitchen + 24Kitchen PT + Televizija 24 + 360 TuneBox + A2TV TR + a Haber + a News + A Para + Active Family + Adult Channel + Adventure HD + Al Jazeera + Ale Kino+ + ALFA TVP + AMC + AMC PL + Das Erste + Arena Esport + Arena Fight + Arena Sport 4 HR + Arena Sport 6 HR + Arena Sport 8 HR + Arena Sport 9 HR + Arena Sport 10 HR + ARTE DE + Alternativna televizija Banja Luka + ATV1 + ATV2 + Aurora TV + AXN + AXN Black PL + AXN PL + AXN Spin + AXN Spin PL + AXN White PL + B1 TV + B92 + BabyTV + Balkan trip + Balkan TV + Balkanika TV + BBC Earth + BBC First + BBC World News + BBN Türk + Radio Televizija BIH + Bloomberg TV + Bloomberg Adria + Bloomberg HT + Blue Hustler + Radio Televizija BN + BN music + BN 2 HD + Body in Balance + Cartoonito CEE + Canal+ Domo + CANAL+ Kuchnia + Cartoon Network + CCTV 4 Europe + CGTN + CGTN Documentary + Cinemax + Cinemax 2 + CineStar Action&Thriller + CineStar Premiere 1 + CineStar Premiere 2 + CineStar TV1 + CineStar TV2 + CineStar TV Comedy Family + CineStar TV Fantasy + English Club TV + Croatian Music Channel + CNBC Europe + CNN Europe + Comedy Central DE + Nicktoons + Comedy Central PL + Crime & Investigation Channel + Crime+Investigation PL + Da Vinci Learning + Deluxe Music + Deutsche Welle English + Diadora TV + Disco Polo Music PL + Discovery Animal Planet + Discovery Channel + Discovery Historia + TLC + Disney Channel + Novelas Plus 1 + Dizi Smart Max + Dizi Smart Premium + Stingray Djazz + DMAX DE + DMAX TR + DMC televizija + DM SAT + DOKU TV + Doma TV + Dorcel TV + Dorcel XXX + DOX TV + Dream Türk + Sport 1 DE + ducktv SD + ducktv HD + Ekotürk + European League of Football Channel + E! Entertainment + Epic Drama (CEE) + Erox HD + Eroxxx HD + Eska Rock TV + Eska TV Extra + Eurochannel + EuroNews + Eurosport + Eurosport 2 + Eurosport 2 DE + TNT Sports + Eurosport 1 DE + EWTN PL + ExtraTV + Extreme Sports Channel + FACE TV + Fashion TV + FashionBox HD + Fast&FunBox HD + Fight Klub HD + FightBox HD + SK Fight + Film4 + Filmax + FilmBox Arthouse + FilmBox Extra RS + FilmBox Family PL + FilmBox Stars RS + FilmBox Premium RS + Fireplace + Fokus TV + Folx TV + Food Network + STAR Channel + FX Comedy PL + STAR Crime + STAR Life + STAR Movies + FOX NEWS + FX PL + NOW + France24 + France 24 French + Radio Televizija Federacije BIH + Fuel TV + FullTV + FunBox UHD + GameHub HR + Gametoon HD + Ginx Esports TV + SK Golf + Good Times + GP1 + Grand Televizija + Haber Global + Habitat TV + Hajduk TV + HappyTV + Hayat Folk Box + Hayat TV + Hayatovci + HBO + HBO3 + HBO2 + HEMA TV + Home & Garden Television + The History Channel + History Channel 2 + HIT TV + HSE + HRT 1 + HRT 2 + HRT 3 + HRT 4 + HRT Int. + HUSTLER TV + ICT Business + Narodna TV + Italia 2 + Otvorena televizija + JimJam + Jugoton TV + K::CN 2 Music + Kabel Eins + Kabel eins Österreich + Kabel eins Doku + KANAL 24 TR + Kanal Rijeka + KBS World HD + KiKA + Kino Polska + Kino Polska Muzyka + KinoTV + KitchenTV + Pop Max + Klape i Tambure TV + KLASIK HR + KLASIK + K::CN 1 Kopernikus + krone.tv + Karadeniz TV + La Cinque + La7 + LA7 Cinema + Laudato TV + Legend + Libertas TV + Lov i ribolov + LUXE TV + M1 Family + M1 FILM + M1 Gold + Maria Vision + MAXSport 1 + MAXSport 2 + MAXSport 3 + MAXSport 4 + MAXSport 5 + Mediaset Italia + Melodie TV + Metro TV + Mezzo + Mezzo Live HD + MinikaGO TR + Motowizja + MG Movie Generation + MovieSmart Classic + MovieSmart Türk + MRT SAT + MTV Europe + MyZen TV + N1 HR + N24 Doku + NTV DE + National Geographic + National Geographic Channel HD + Nat Geo Wild + The Nautical Channel + Blue Televizija ZG + Nat Geo Wild HD + Nick Junior + Nickelodeon + NOVA TV + Nova BH + Nova Plus Family + Novelas+ + Nowa TV + Number One Türk + NUTA GOLD + NUTA.TV HD + O Kanal + OBN + oe24.TV + One + ORF1 + ORF2 + Osječka televizija + OTV Valentino + Phoenix + Pikaboo 2 + RTV PINK + RED tv + Vesti + Pink BH + TV PINK EXTRA + Pink Fashion + PINK Film + Pink Folk 1 + Pink Kids + Pink Koncert + Pink M + Pink Music 1 + TV PINK PLUS + PINK World + Planete+ PL + Plava televizija + Playboy TV + Poljoprivredna TV + POLO TV + Polonia1 + Polsat 2 + Polsat Cafe + Polsat Doku + Polsat Film + Polsat Games + Polsat Music + Polsat News + Polsat News 2 + Polsat Play + Polsat Rodzina + Polsat Seriale + Polsat Viasat Explore + Polsat Viasat History + Polsat Viasat Nature + Power TV PL + TV Zelina + Brazzers TV (ex. Private Spice) + Private TV + ProSieben + PRO 7 Österreich + ProSieben MAXX + Prva Plus + Prva Srpska TV + QVC Deutschland + RAI UNO + RAI DUE + RAI TRE + RAI 5 + RAI Education + RAI News 24 + RAI Sport 1 + RAI Storia + Rai Yoyo + Reality Kings + Red Carpet TV PL + RedLight HD + RiC DE + Radiotelevizija Banovina + RTL + RTL 2 + RTL Zwei + RTL Adria + RTL DE + RTL Kockica + RTL Living + RTLup + RTRS + RTS 1 + RTS 2 + RTS SVET + RTV Herceg-Bosne + Russia Today + Saborska TV + SAT.1 + Sat.1 Österreich + Sat.1 Gold + Slavonskobrodska Televizija + SciFi + ServusTV + Show TV + SinemaTV 2 + SinemaTV 1001 + SinemaTV 1002 + SinemaTV Aile + SinemaTV Aile 2 + SinemaTV Aksiyon + SinemaTV Aksiyon 2 + SinemaTV Komedi + SinemaTV Komedi 2 + SinemaTV Yerli + SinemaTV Yerli 2 + SinemaTV + Sixx AT + Sky News + SkyShowtime 1 Nordic + TV Slavonije i Baranje + RTV Slovenija 1 + RTV Slovenija 2 + RTV Slovenija 3 + sonnenklar.TV + Sony Channel + Great! Movies Action + Great! Movies Classic + Great! Mystery +1 + SOS Plus + Sport Klub 4 + Sport Klub 5 + Sport Klub 6 + Sport Klub 1 Hrvatska + Sport Klub 2 Hrvatska + Sport Klub 3 + Sportska Televizija + Stingray CMusic + Stingray Classica + Stingray iConcerts + Stopklatka + Studio B + Sundance TV PL + Super RTL + Supertennis HD + K::CN 3 Svet Plus + Tanjug Tačno + TAY TV + TBN Polska HD + DIZI + Tele 5 DE + Telequattro + Televizija Alfa + teve2 + TGRT Belgesel + TiJi + Tiny Pop TV + Tivibu Spor + TOGGO plus + Toon kids + Toxic Folk + Toxic Rap + Toxic TV + Trace Urban + Travel Channel + TRT 4K + TRT EBA TV İlkokul + TRT EBA TV Lise + TRT EBA TV Ortaokul + TTV + TV5 + TV5 Monde + TV5Monde Europe + TV100 TR + Viasat Kino Balkan + teve2 TR + TV 4 + TV 8 TR + TV 8.5 + Arena Sport 1 HR + Arena Sport 2 HR + Arena Sport 3 HR + Televizija Dalmacija + TV Jadran + TV Net + TV Puls PL + TV Silesia + TV Trwam + TV Vijesti + Televizija Zapad Zaprešić + Televizija Crne Gore MNE + TVE Internacional + TVN24 + TVN 7 + TVN Style + TVN Turbo + TVP 2 + TVP 3 + TVP ABC + TVP HD + TVP Historia + TVP Info + TVP Kobieta + TVP Kultura + TVP Regionalna + TVP Rozrywka + TVP Seriale + TVR PL + TVS + TVT PL + Uçankuş TV + UNA TV + DIVA (ex. Universal) + Varaždinska Televizija + VG TV + Viasat Explore CEE + Viasat History + Viasat Nature CEE + Viasat True Crime CEE + Plava vinkovačka TV + Vivid Red + Vivid TV + Vizion Plus + RT Vojvodina 1 + VOX + Welt + Wydarzenia 24 + Xtreme TV + XXL + Yaban TV + Zagrebačka Televizija + ZDF + ZDFinfo + ZDFneo + Zdrava televizija + ZONASPORT TV + 4Fun Dance + 4Fun Kids + 24 Kitchen + 360 TuneBox + Agro TV + Televizija Alfa + Al Jazeera + Alpha TV + AMC HU + Antena Europe + Apostol TV + Arena4 HU + Arena Esport + Arena Fight + Arena Sport 1 BiH + Arena Sport 1 RS + Arena Sport 1 SI + Arena Sport 1 Premium + Arena Sport 1 Premium SI + Arena Sport 1x2 + Arena Sport 2 RS + Arena Sport 2 SI + Arena Sport 2 Premium + Arena Sport 3 RS + Arena Sport 3 SI + Arena Sport 3 Premium + Arena Sport 4 RS + Arena Sport 4 SI + Arena Sport 5 HR + Arena Sport 5 RS + Arena Sport 6 RS + Arena Sport 7 HR + Arena Sport 7 RS + Arena Sport 8 RS + ARTE DE + A Spor + ATV Avrupa + AXN + AXN Spin + B1 TV + Balkanika TV + Balkan trip + BBC Earth + BBC News Channel + BBC World News + TV Belle Amie + BN 2 HD + BN music + Brainz TV + Brazzers TV (ex. Private Spice) + BRIO + Canale 5 + Cartoonito CEE + CGTN Documentary + Cinemania TV + CineStar TV1 + CineStar TV RS + CineStar TV2 + CineStar Action&Thriller + CineStar Action&Thriller RS + CineStar TV Comedy Family + CineStar TV Fantasy + CineStar Premiere 1 + CineStar Premiere 2 + CNN Europe + CNN Türk TV + CoolTV + Cufo TV + D1 TV HU + Das Erste + Da Vinci Learning + Dexy TV + Discovery Channel HU + Disney Channel HU + DM SAT + DocuBox HD + DOKU TV + Doma TV + Deutsche Welle English + English Club TV + Epic Drama (CEE) + Erox HD + Eroxxx HD + ETV HD + Eurochannel + Euro D + EuroNews + Eurosport + Eurosport 2 + Explorer Histori + Explorer Natyra + Explorer Shkence + FACE TV + FashionBox HD + Fashion TV + Fast&FunBox HD + TV2 Klub + FightBox HD + Pink Fight Network + Film4 HU + FilmBox Arthouse + Filmbox Stars HU + Film Cafe HU + Film Mania HU + Film+ HU + Food Network + STAR Crime + France24 Arabic + France24 + France 24 French + Galaxy4 + Gametoon HD + Golica TV + Grand Televizija + Pink Ha Ha + Hayat Folk Box + Hayat Music Box + Hayatovci + Hayat 2 + HBO HU + Home & Garden Television + Hír TV + History Channel 2 + HRT 2 + HRT 4 + HRT Int. + HYPE Hrvatska + IDJ World + Investigation Discovery + Italia 1 + Izaura TV + JockyTV + Kanal 3 Prnjavor + Kanal D TR + Kazbuka + POP KINO + KinoTV + KitchenTV + Klan Kosova + Klan Macedonia + KLASIK + Kurir TV + La7 + Laudato TV + Life TV HU + Living HD + Pink LOL + Lov i ribolov + M1 FILM + M1 Gold + Mediaset Italia + Minimax + MiniTV + Mozi plusz TV + Moziverzum + МРТ 1 + МРТ 2 + MTV Europe HU + Muzsika TV + N1 BA + N1 HR + National Geographic HU + Nat Geo Wild HU + RTL Nitro + Nova 24 TV + Nova S + Nova Plus Cinema + Nova BH + TV NOVA Pula + Nova M + Nova World + Novosadska TV + OBN + O Kanal + One + OTO + PΛX + Pickbox 2 + Pickbox TV + Pink Action + Pink BH + Pink Classic + Pink Comedy + Pink Crime & Mystery + PINK Family + Pink Fashion + Pink Hits + Pink Horror + Pink Koncert + Pink Kuvar + Pink M + Pink Movies + Pink and Roll + Pink Pedia + Pink Premium + Pink Romance + Pink SCI FI & Fantasy + Pink Serije + Pink Show + Pink Soap + Pink Style + Pink Super Kids + Pink Thriller + Pink Western + PINK World + Pink World Cinema + PINK Zabava + Planeta TV BG + Playboy TV + Power Türk TV + Prime + ProSieben Fun + Prva FILES + Prva KICK + Prva LIFE + Prva MAX + Prva TV Crna Gora + Prva Plus + Prva World + QVC STYLE DE + QVC Style + RadioBremen + RAI UNO + RAI DUE + RAI TRE + RAI Gulp + RAI News 24 + RAI Storia + real time + Rete 4 + Russia Today + RTK 1 + RTK 2 + RTL + RTL HU + RTL Crime + RTL Gold + RTL Ketto + RTL Living + RTL Passion + Super RTL + RTRS PLUS + RTS 2 + RTS 3 + RTS Drama + RTS Kolo + RTS Muzika + RTS Poletarac + RTS SVET + RTS Trezor + RT Vojvodina 1 + RT Vojvodina 2 + RTV21 + Россиᴙ 24 + SonLife + Show Türk + SkyShowtime 2 Nordic + Magyar Sláger TV + Sorozat+ + Spektrum TV + Spektrum Home HU + Spíler1 TV + Spíler2 TV + Sport 1 DE + Sport 1 HU + Sport 2 HU + Sport Klub 1 Slovenija + Sport Klub 2 Slovenija + Sport Klub 11 + Sport Klub 12 + SK Golf + Sportska Televizija + Sport TV1.pt + Šport TV 1 + Sport TV2 + Šport TV 2 + Stars TV PL + Stingray iConcerts + Story4 + Superstar TV + Super TV2 + Televizija Crne Gore 2 + Televizija Crne Gore 3 + TGCOM24 + The Fishing and Hunting + TLC + TOGGO plus + Trace Urban + Travel Channel + TRT Arapça + TRT Avaz + TV2 HU + TV2 Comedy + TV2 Kids + TV2 Séf + TV4 HU + TV Arena + Televizija Crne Gore 1 + Televizija Crne Gore 2 + Televizija Crne Gore MNE + TV Galaksija + Телевизија Храм + K::CN 1 Kopernikus + K::CN 2 Music + K::CN 3 Svet Plus + TV Koper + TVN24 + TVN + TV Paprika HU + TVP Polonia + RTV Slovenija 1 + RTV Slovenija 2 + RTV Slovenija 3 + ТВ Сонце + TV Vijesti + Ülke TV + Viasat3 + Viasat 6 + Viasat Explore CEE + Viasat History + TV1000 Global Kino + Viasat Nature CEE + Viasat Kino Balkan + VOX + World Fashion Channel + Zagrebačka Televizija + ZDF + Zenebutik + ZONASPORT 2 + 2X2 + 4Fun Dance + 4Fun Kids + 4FunTV + Telewizja 13 + 13 Ulica + 360 TuneBox + A2TV TR + a Haber + a News + A Para + Active Family + Adult Channel + Adult Channel 2 + Adventure HD + Ale Kino+ + ALFA TVP + AMC PL + ARD-alpha + ATV1 + ATV2 + ATV Extra HU + AXN PL + AXN Spin PL + AXN White PL + BabyTV + BBC News Channel + BBC World News + BBN Türk + Bloomberg TV + Bloomberg HT + Body in Balance + Cartoonito CEE + Canal+ Domo + Canal+ France + CANAL+ Kuchnia + CCTV 4 Europe + Cinemax 2 HU + Cinemax HU + English Club TV + CNN Europe + Comedy Central PL + Crime+Investigation PL + Da Vinci Learning + Deutsche Welle English + Disco Polo Music PL + Discovery Historia + Novelas Plus 1 + Dizi Smart Max + Dizi Smart Premium + Stingray Djazz + DMAX TR + Dorcel XXX + Dream Türk + ducktv SD + ducktv HD + Duna TV + Duna World + Ekotürk + European League of Football Channel + E! Entertainment + Epic Drama (CEE) + Erox HD + Eroxxx HD + Eska Rock TV + Eska TV + Eska TV Extra + Extreme Sports Channel + Fashion TV + FashionBox HD + Fast&FunBox HD + Fehérvár TV + Fight Klub HD + FightBox HD + Filmax + FilmBox Arthouse + Filmbox Extra HU + Filmbox Family HU + FilmBox HU + Filmbox Premium HU + Fokus TV + Folx TV + Food Network + FX Comedy PL + FX PL + NOW + France24 + FunBox UHD + Gametoon HD + H!T Music Channel RO + Haber Global + Habitat TV + HBO + HBO 2 HU + HBO 3 HU + Home & Garden Television + The History Channel + History Channel 2 + History Channel HU + Home & Garden Television UK + Hustler HD + HUSTLER TV + Investigation Discovery + Investigation Discovery UK + Jazz TV HU + JimJam + KANAL 24 TR + Kanal D TR + KiKA + Kino Polska + Kino Polska Muzyka + Kölyökklub + krone.tv + Karadeniz TV + LUXE TV + Magyar Televízió 1 + M2 Petőfi + Magyar Televízió 3 + M4 sport + M4 Sport Plus + m5 + ATV HU + Magyar Mozi TV + MATCH4 + MAX4 + Mediaset Italia + Melodie TV + Metro TV + Mezzo + Mezzo Live HD + MinikaGO TR + Minimax + Minimax HU + Motorvision Plus International + Motowizja + MovieSmart Classic + MovieSmart Türk + Moziklub + MyZen TV + Nick Junior PL + Nickelodeon Commercial + Nicktoons PL + Novelas+ + Nowa TV + Number One Türk + NUTA GOLD + NUTA.TV HD + oe24.TV + ORF3 + Ozone Network + Planete+ PL + Playboy TV + POLO TV + Polonia1 + Polsat 2 + Polsat Cafe + Polsat Doku + Polsat Film + Polsat Games + Polsat Music + Polsat News + Polsat News 2 + Polsat Play + Polsat Rodzina + Polsat Seriale + Polsat Viasat Explore + Polsat Viasat History + Polsat Viasat Nature + Power TV PL + Private TV + ProSieben + PRO 7 Österreich + Puls 4 + RAI UNO + RAI TRE + Red Carpet TV PL + RedLight HD + Romance TV PL + RTL DE + RTL Három + RTL Otthon + SAT.1 + Sat.1 Österreich + Show TV + SinemaTV 2 + SinemaTV 1001 + SinemaTV 1002 + SinemaTV Aile + SinemaTV Aile 2 + SinemaTV Aksiyon + SinemaTV Aksiyon 2 + SinemaTV Komedi + SinemaTV Komedi 2 + SinemaTV Yerli + SinemaTV Yerli 2 + SinemaTV + Sixx AT + Sky News + SkyShowtime 1 Nordic + Viasat Film HU + Sorozatklub + Stars TV PL + Stingray Classica + Stingray iConcerts + Stopklatka + Sundance TV PL + Super RTL + TAY TV + TBN Polska HD + teve2 + TGRT Belgesel + Tivibu Spor + Travel Channel + TRT 4K + TRT EBA TV İlkokul + TRT EBA TV Lise + TRT EBA TV Ortaokul + TRT World + TTV + TV5 + TV100 TR + teve2 TR + TV 4 + TV 8 TR + TV 8.5 + TV Net + TV Puls PL + TV Silesia + TV Trwam + TVE Internacional + TVN24 + TVN 7 + TVN Style + TVN Turbo + TVP 2 + TVP 3 + TVP ABC + TVP HD + TVP Historia + TVP Info + TVP Kobieta + TVP Kultura + TVP Regionalna + TVP Rozrywka + TVP Seriale + TVR PL + TVS + TVT PL + UTV RO + Uçankuş TV + Viasat 2 + Viasat History + Viasat Nature CEE + Vivid Red + Vivid TV + VOX + World Fashion Channel + wPolsce PL + Wydarzenia 24 + Xtreme TV + Yaban TV + ZDF + A Spor + Canal+ Action HU + DocuBox HD + Fuel TV + Stingray CMusic 2X2 3 Plus CH 4 Plus @@ -4443,7 +5095,6 @@ Canale 7 Cartoon Network IT Cartoonito Italia - Film Cafe PL cielo Cine34 Class TV Moda @@ -4457,7 +5108,6 @@ Discovery Animal Planet Discovery Channel IT Discovery Historia - DMAX ES Novelas Plus 1 Dizi Smart Max Dizi Smart Premium @@ -4499,7 +5149,6 @@ iTVN iTVN Extra K2 - Kanal 7 KANAL 24 TR Kanal D TR Kino Polska @@ -4509,7 +5158,7 @@ La Cinque La7 La7 AU - La7d + LA7 Cinema Lazio Style Channel La Chaîne Info LUXE TV @@ -4522,16 +5171,13 @@ Mezzo Live HD Milan TV MinikaGO TR - Minimini+ MotorTrend Motowizja MovieSmart Classic MovieSmart Türk - MTV Hits International MTV Italia MTV Music UK MTV Music IT - MTV 90s International MyZen TV National Geographic NBC News @@ -4555,7 +5201,6 @@ Polsat 1 Polsat 2 Polsat Cafe - Polsat Comedy Central Extra Polsat Doku Polsat Film Polsat Games @@ -4593,7 +5238,7 @@ RSI La 1 RSI La 2 RTS 2 Suisse - RTS Un + RTS 1 Suisse S1 CH Sat.1 Österreich Show TV @@ -4631,23 +5276,20 @@ Sky Sport 3 IT Sky Sport F1 IT Sky Sport MotoGP IT - Sky Sport Plus IT + Sky Sport Basket Sky TG24 HD Sky Uno Sportitalia SRF 1 SRF Info SRF Zwei - Star TV TR Stars TV PL Stopklatka Sundance TV PL Super! - Super Polsat Supertennis HD TAY TV TBN Polska HD - TELE 1 TeleBärn Telequattro Teletutto @@ -4694,7 +5336,6 @@ TVN 7 TVN Style TVN Turbo - TVP 1 TVP 2 TVP 3 TVP ABC @@ -4714,7 +5355,6 @@ VG TV Vivid Red Vivid TV - Warner TV IT Welt World Fashion Channel wPolsce PL @@ -4722,6 +5362,2292 @@ Xtreme TV XXL Yaban TV + A Spor + ETB Basque + Fuel TV + 2X2 + 4Fun Dance + 4Fun Kids + Telewizja 13 + 13 Ulica + 24 Kitchen + 24Kitchen PT + Televizija 24 + 360 TV + A2TV TR + a Haber + a News + A Para + ABC News Albania + Active Family + Adventure HD + Agro TV + Al Jazeera + Ale Kino+ + ALFA TV + ALFA TVP + Алсат М + AMC + AMC PL + Anixe HD Serie + Das Erste + Arena Esport + Arena Fight + Arena Sport 1 MK + Arena Sport 1 Premium + Arena Sport 2 Premium + Arena Sport 3 Premium + Arena Sport 5 RS + ARTE DE + Alternativna televizija Banja Luka + ATV1 + ATV2 + AXN + AXN Black PL + AXN PL + AXN Spin + AXN Spin PL + AXN White PL + Balkan trip + Balkanika TV + Bang Bang + BBC First + BBC World News + BBN Türk + Bloomberg TV + Bloomberg Adria + Bloomberg HT + Radio Televizija BN + BN music + BN 2 HD + Cartoonito CEE + Brainz TV + CANAL+ Kuchnia + Cartoon Network + Cinemania TV + Cinemax + Cinemax 2 + CineStar Premiere 1 + CineStar Premiere 2 + CineStar TV2 + Croatian Music Channel + CNBC Europe + CNN Europe + Nicktoons + Comedy Central PL + Crime & Investigation Channel + Crime+Investigation PL + Cufo TV + Da Vinci Learning + Deluxe Music + Deutsche Welle English + Disco Polo Music PL + Discovery Animal Planet + Discovery Channel + Discovery Historia + TLC + Disney Channel + Disney Junior + Novelas Plus 1 + Dizi Smart Max + Dizi Smart Premium + DMAX TR + DM SAT + Dream Türk + Sport 1 DE + ducktv SD + Ekotürk + European League of Football Channel + E! Entertainment + Epic Drama (CEE) + Erox HD + Eroxxx HD + Eska Rock TV + Eska TV + Eska TV Extra + Euro D + Euro Star + Eurochannel + EuroNews + Euronews Albania + Eurosport + Eurosport 2 + EWTN PL + Explorer Histori + Explorer Natyra + Explorer Shkence + Extreme Sports Channel + FACE TV + Fashion TV + FashionBox HD + Fast&FunBox HD + Fight Klub HD + FightBox HD + SK Fight + Filmax + FilmBox Arthouse + FilmBox Extra RS + FilmBox Family PL + FilmBox Stars RS + The Fishing and Hunting + Fokus TV + Folx TV + Food Network + STAR Channel + FX Comedy PL + STAR Crime + STAR Life + STAR Movies + FX PL + NOW + France24 + France 24 French + Radio Televizija Federacije BIH + Ginx Esports TV + SK Golf + Grand Televizija + Haber Global + Habitat TV + HappyTV + Hayat Folk Box + Hayat Music Box + Hayat 2 + Hayat TV + Hayatovci + HBO + HBO3 + HBO2 + The History Channel + HRT 1 + HRT 3 + HRT 4 + HUSTLER TV + IDJ World + JimJam + Jugoton TV + Junior TV + K::CN 2 Music + Kabel Eins + Kanal1 + Канал 5 + Канал 8 + Kanal 10 + KANAL 24 TR + Kanal D Drama TR + Kanal D TR + KiKA + Kino Polska + Kino Polska Muzyka + TV Kiss Menada + KitchenTV + Klan Macedonia + KLASIK + K::CN 1 Kopernikus + krone.tv + Karadeniz TV + Living HD + Lov i ribolov + M1 Family + M1 Film MK + M1 Gold MK + Melodie TV + DigitAlb Melody TV + Mezzo + Mezzo Live HD + MinikaGO TR + Minimax + Motowizja + MovieSmart Classic + MovieSmart Türk + МРТ 1 + МРТ 3 + МРТ 4 + МРТ 5 + MRT SAT + MTM Televizija + MTV Europe + MUSE + My Music + N1 RS + Наша ТВ + National Geographic + National Geographic Channel HD + Nat Geo Wild + News 24 + Nick Junior + Nickelodeon Commercial + Nova S + Novelas+ + RTV Novi Pazar + Nowa TV + Number One Türk + NUTA GOLD + NUTA.TV HD + O Kanal + OBN + oe24.TV + Ora News + Pickbox TV MK + Pikaboo + Pink Music 1 + Pink Serije + Pink Show + Planete+ PL + Playboy TV + POLO TV + Polonia1 + Polsat 2 + Polsat Cafe + Polsat Doku + Polsat Film + Polsat Music + Polsat News + Polsat News 2 + Polsat Play + Polsat Rodzina + Polsat Seriale + Polsat Viasat Explore + Polsat Viasat History + Polsat Viasat Nature + Power TV PL + Brazzers TV (ex. Private Spice) + Private TV + ProSieben + PRO 7 Österreich + Prva FILES + Prva KICK + Prva LIFE + Prva MAX + Prva Plus + Prva Srpska TV + Prva World + Puls 4 + RAI UNO + RAI DUE + RAI TRE + RAI Sport 1 + RAI Storia + Red Carpet TV PL + RedLight HD + Report TV + Россиᴙ 24 + RT Documentary + RTK 1 + RTK 2 + RTK 4 + RTL + RTL 2 + RTL Zwei + RTL DE + RTL Kockica + RTL Living + RTRS + RTS 1 + RTS 2 + RTS 3 + RTS SVET + RTSH 1 + RTV 21 Popullore + RTV Besa + RTV Slon Tuzla + Russia Today + SAT.1 + Sat.1 Österreich + Scan TV + SciFi + Shenja TV + Show TV + SinemaTV 2 + SinemaTV 1001 + SinemaTV 1002 + SinemaTV Aile + SinemaTV Aile 2 + SinemaTV Aksiyon + SinemaTV Aksiyon 2 + SinemaTV Komedi + SinemaTV Komedi 2 + SinemaTV Yerli + SinemaTV Yerli 2 + SinemaTV + Сител + Sixx AT + Sky News + RTV Slovenija 1 + RTV Slovenija 2 + RTV Slovenija 3 + Tring Smile + SOS Plus + Sport Klub 1 Hrvatska + Sport Klub 2 Hrvatska + Sport Klub 3 + Superstar 2 + Stars TV PL + Stinet + Stingray CMusic + Stopklatka + Studio B + STV Folk + Sundance TV PL + Super RTL + Superstar TV + K::CN 3 Svet Plus + Syri TV + Televizioni 7 + Tanjug Tačno + TAY TV + TBN Polska HD + DIZI + Telma + Tera TV + teve2 + TGRT Belgesel + TGRT EU + Tip TV + Tivibu Spor + Top Channel + Top News + Toxic Folk + Toxic Rap + Toxic TV + Trace Urban + Travel Channel + Travelxp + Tring Bunga Bunga + Tring Desire + TRT 1 + TRT 4K + TRT EBA TV İlkokul + TRT EBA TV Lise + TRT EBA TV Ortaokul + TRT Spor Yıldız + TRT Turk + TRT World + TTV + TV5 + TV5 Monde + TV100 TR + Viasat Kino Balkan + teve2 TR + TV 4 + TV 8 TR + TV 8.5 + Arena Sport 2 RS + Arena Sport 3 RS + Arena Sport 4 RS + TV Duga + SAT + TV Dukagjini + TV Edo + Klan TV HD + TVM Ohrid + TV Net + TV Sarajevo + TV Silesia + TV Trwam + Televizija Crne Gore MNE + TVN 7 + TVN Style + TVN Turbo + TVP 2 + TVP 3 + TVP ABC + TVP HD + TVP Historia + TVP Info + TVP Kobieta + TVP Kultura + TVP Rozrywka + TVP Seriale + TVR PL + TVS + TVT PL + Uçankuş TV + Ülke TV + DIVA (ex. Universal) + Valentino Music HD + Viasat Explore CEE + Viasat History + Viasat Nature CEE + Viasat True Crime CEE + Vikom + Vizion Plus + VOX + Welt + Wness TV + World Fashion Channel + wPolsce PL + Wydarzenia 24 + Xtreme TV + XXL + Yaban TV + ZDF + Zdrava televizija + Arena Sport 4 Premium + Arena Sport 5 Premium + Arena Sport Adrenalin + Arena Sport Tenis + A Spor + DocuBox HD + Fuel TV + Televizija Crne Gore 2 + Televizija Crne Gore 3 + 1-2-3.tv + 2X2 + 3SAT + 4Fun Dance + 4Fun Kids + 4FunTV + Telewizja 13 + 13 Ulica + 360 TuneBox + A2TV TR + a Haber + a News + A Para + Active Family + Adult Channel + Adult Channel 2 + Adventure HD + Al Jazeera + Ale Kino+ + ALFA TVP + AMC PL + Animal Planet PL + Anixe HD Serie + Antena HD + Das Erste + ARD-alpha + ARTE FR + ARTE DE + ATV1 + ATV2 + AXN Black PL + AXN PL + AXN Spin PL + AXN White PL + BabyTV + BabyTV PL + Bayerischen Fernsehen Nord + BBC Brit PL + BBC Earth PL + BBC First PL + BBC Lifestyle PL + BBC News Channel + BBC World News + BBN Türk + Belsat TV + Beyaz TV + BFM TV + Bibel TV + Das Bild TV + Biznes24 + Bloomberg TV + Bloomberg HT + Blue Hustler + Body in Balance + Bollywood PL + Cartoonito CEE + BR Fernsehen Süd + CANAL+ 4K Ultra HD + CANAL+ Dokument + CANAL+ Family PL + CANAL+ Film PL + CANAL+ Now PL + Canal+ Domo + Canal+ Extra 1 PL + Canal+ Extra 2 PL + Canal+ Extra 3 PL + Canal+ Extra 4 PL + Canal+ Extra 5 PL + Canal+ Extra 6 PL + Canal+ France + CANAL+ Kuchnia + CANAL+ Premium PL + CANAL+ Seriale PL + CANAL+ Sport 2 + CANAL+ Sport 3 + CANAL+ Sport 4 + CANAL+ Sport 5 + CANAL+ Sport PL + Cartoon Network PL + Cartoonito UK + CBeebies PL + CGTN Documentary + Ciné+ Festival + Ciné+ Emotion + Ciné+ Family + Cinemax 2 PL + Cinemax PL + CNBC Europe + CNews + CNN Europe + Comedy Central DE + Comedy Central PL + Crime+Investigation PL + ČT 1 + ČT 2 + ČT 24 + ČT :D + ČT Sport + Da Vinci Learning PL + Deluxe Music + Deutsche Welle English + Disco Polo Music PL + Discovery Animal Planet + Discovery Channel PL + Discovery Historia + Discovery Life PL + Discovery Science PL + Disney Channel PL + Disney Junior Polska + Disney XD PL + Novelas Plus 1 + Dizi Smart Max + Dizi Smart Premium + Stingray Djazz + DMAX DE + DMAX TR + Dorcel TV + Dorcel XXX + Dream Türk + Sport 1 DE + DTX PL + ducktv Plus + ducktv HD + E-Sport HD + Ekotürk + Eleven Sports 1 PL + Eleven Sports 2 PL + Eleven Sports 3 PL + Eleven Sports 4 PL + European League of Football Channel + E! Entertainment + Epic Drama (Poland) + Eska Rock TV + Eska TV + Eska TV Extra + Еспресо TV + Eurochannel + EuroNews + Euronews FR + Eurosport 1 PL + Eurosport 2 PL + EWTN + EWTN PL + EXTASY TV + Extreme Sports PL + Fashion TV + FashionBox HD + Fast&FunBox HD + Fight Klub HD + FightBox HD + Filmax + FilmBox Action PL + FilmBox Arthouse + FilmBox Extra PL + FilmBox Family PL + FilmBox Premium PL + Fokus TV + Folx TV + Food Network PL + FX Comedy PL + FX PL + NOW + France24 + France 2 + France 3 + France 4 + France 5 + FunBox UHD + Gametoon HD + Ginx Esports TV + Golf Channel PL + Haber Global + Habitat TV + HBO 2 PL + HBO 3 PL + HBO PL + Das Health TV + HGTV PL + History 2 Polska + History Channel Polska + HR Fernsehen + HSE + HSE24 Extra + Hustler HD + HUSTLER TV + Insight TV + Investigation Discovery PL + Italia 2 + iTVN + iTVN Extra + JimJam PL + Kabel Eins + Kabel eins Österreich + Kabel eins Doku + KANAL 24 TR + Kanal D TR + KiKA + Kino Polska + Kino Polska Muzyka + KinoTV PL + krone.tv + Karadeniz TV + LCP + Leo TV + Love Nature US + LUXE TV + MDR Sachsen-Anhalt + MDR Thüringen + Melodie TV + Metro TV + Mezzo + Mezzo Live HD + MinikaGO TR + Minimini+ + Motorvision Plus International + Motowizja + MovieSmart Classic + MovieSmart Türk + MTV Europe + MTV DE + MTV PL + münchen.tv + Music Box Polska + MyZen TV + N24 Doku + NTV DE + National Geographic Wild PL + National Geographic PL + National Geographic People PL + The Nautical Channel + NDR Niedersachsen + News 24 + Nick Junior PL + Nick DE + Nickelodeon PL + Nicktoons PL + Niederbayern TV Deggendorf-Straubing + Novela TV + Novelas+ + Nowa TV + Number One Türk + NUTA GOLD + NUTA.TV HD + oe24.TV + One + ORF2 + Paramount Network PL + Parole di Vita + Phoenix + Planete+ PL + Playboy TV + POLO TV + Polonia1 + TVP Polonia + Polsat + Polsat 1 + Polsat 2 + Polsat Cafe + Polsat Doku + Polsat Film + Polsat Games + Polsat Music + Polsat News + Polsat News 2 + Polsat News Polityka + Polsat Play + Polsat Rodzina + Polsat Seriale + Polsat Sport 1 + Polsat Sport 2 + Polsat Sport Fight + Polsat Sport 3 + Polsat Sport Premium 1 + Polsat Sport Premium 2 + Polsat Sport Extra 1 + Polsat Sport Extra 2 + Polsat Sport Extra 3 + Polsat Sport Extra 4 + Polsat Viasat Explore + Polsat Viasat History + Polsat Viasat Nature + Power TV PL + Brazzers TV (ex. Private Spice) + Private TV + ProSieben + PRO 7 Österreich + Proart + ProSieben MAXX + Puls 4 + QVC Deutschland + Radio Italia TV + Radiofreccia + RAI World Premium + RBB Fernsehen Brandenburg + RBB Fernsehen Berlin + Reality Kings + Red Carpet TV PL + RedLight HD + Romance TV PL + RT Documentary + RTL Zwei + RTL DE + RTL Nitro + Russia Today + SAT.1 + Sat.1 Österreich + Sat.1 Gold + SciFi + ServusTV + Show TV + SinemaTV 2 + SinemaTV 1001 + SinemaTV 1002 + SinemaTV Aile + SinemaTV Aile 2 + SinemaTV Aksiyon + SinemaTV Aksiyon 2 + SinemaTV Komedi + SinemaTV Komedi 2 + SinemaTV Yerli + SinemaTV Yerli 2 + SinemaTV + Sixx AT + Sky News + SkyShowtime 1 Nordic + SkyShowtime 2 Nordic + sonnenklar.TV + Sportklub PL + SR Fernsehen + Stars TV PL + Stingray CMusic + Stingray Classica + Stingray iConcerts + Stopklatka + Sundance TV PL + Super Polsat + Super RTL + SWR Baden-Württemberg + tagesschau24 + TAY TV + TBN Polska HD + Tele 5 PL + Tele 5 DE + teleTOON+ + teve2 + TGRT Belgesel + Tivibu Spor + TLC PL + TOGGO plus + Top Kids PL + Trace Urban + Travel Channel PL + Travelxp + TRT 4K + TRT Arapça + TRT Diyanet + TRT EBA TV İlkokul + TRT EBA TV Lise + TRT EBA TV Ortaokul + TTV + TV5 + TV5Monde Europe + TV6 PL + TV100 TR + teve2 TR + TV 4 + TV 8 TR + TV 8.5 + TV Net + TV Puls 2 + TV Puls PL + TV Regionalna.pl + TV Republika + TV Silesia + Toya TV + TV Trwam + TVC PL + TVE Internacional + TVN + TVN24 + TVN24 BiS + TVN 7 + TVN Fabuła + TVN Style + TVN Turbo + TVP3 Białystok + TVP3 Bydgoszcz + TVP3 Gdańsk + TVP3 Katowice + TVP3 Kielce + TVP3 Kraków + TVP3 Łódź + TVP3 Lublin + TVP3 Olsztyn + TVP3 Opole + TVP3 Poznań + TVP3 Rzeszów + TVP3 Szczecin + TVP3 Warszawa + TVP3 Wrocław + TVP 1 + TVP 2 + TVP 3 + TVP ABC + TVP ABC 2 + TVP Dokument + TVP HD + TVP Historia + TVP Historia 2 + TVP Info + TVP Kobieta + TVP Kultura + TVP Kultura 2 + TVP Nauka + TVP Regionalna + TVP Rozrywka + TVP Seriale + TVP Sport + TVP Wilno + TVP World + TVR PL + TVS + TVT PL + Uçankuş TV + VG TV + Viasat Explore CEE + Viasat True Crime PL + ViDoc TV + Vivid Red + Vivid TV + VOX + VOX Music TV PL + Warner TV FR + Warner TV PL + Water Planet + WDR Fernsehen Köln + Welt + World Fashion Channel + WP TV + wPolsce PL + Wydarzenia 24 + Xtreme TV + XXL + Yaban TV + ZDFinfo + ZDFneo + Zoom TV PL + Art TV GR + A Spor + DocuBox HD + ETB Basque + Fuel TV + QVC 2 DE + 2X2 + 3SAT + 4Fun Dance + 4Fun Kids + 4FunTV + Telewizja 13 + 13 Ulica + 24 Kitchen + 24Kitchen PT + A2TV TR + a Haber + a News + A Para + Active Family + Adult Channel + Adult Channel 2 + Adventure HD + Al Jazeera + Ale Kino+ + ALFA TVP + AMC Break PT + AMC Crime PT + AMC PL + AMC PT + Andalucía TV + ARD-alpha + ARTE FR + ARTV + ATV1 + ATV2 + AXN Movies PT + AXN PL + AXN PT + AXN Spin PL + AXN White PL + AXN White PT + BabyTV ES + BabyTV + BBC News Channel + BBC World News + BBN Türk + Benfica TV + BFM TV + Biggs + Bloomberg TV + Bloomberg HT + Canal 11 PT + Canal 24H + Canal Hollywood PT + Canal J + Canal Panda PT + Canal+ Domo + CANAL+ Kuchnia + Canal Sur + Cartoon Network PT + Cartoonito PT + Casa e Cozinha + Caza y Pesca ES + CCTV 4 Europe + CGTN + Cinemundo + CMTV + CNBC Europe + CNN Europe + CNN PT + Comedy Central DE + Comedy Central PL + Crime+Investigation PL + Deutsche Welle English + Disco Polo Music PL + Discovery Animal Planet + Discovery Historia + Disney Channel PT + Disney Junior PT + Novelas Plus 1 + Dizi Smart Max + Dizi Smart Premium + Stingray Djazz + DMAX TR + Dorcel TV + Dorcel XXX + Dream Türk + Sport 1 DE + Ekotürk + DAZN 1 PT + European League of Football Channel + E! Entertainment + Erox HD + Eroxxx HD + Eska Rock TV + Eska TV + Eska TV Extra + Eurochannel + EuroNews + Eurosport 1 PT + Eurosport 2 PT + EWTN PL + Fashion TV + FashionBox HD + Fast&FunBox HD + Fight Klub HD + FightBox HD + Filmax + FilmBox Arthouse + FilmBox Family PL + Fokus TV + Folx TV + Food Network + Food Network UK + FX Comedy PL + STAR Comedy PT + STAR Crime PT + STAR Life PT + STAR Movies PT + FOX NEWS + FX PL + STAR PT + France24 + France 24 French + Fuel TV + FunBox UHD + Gametoon HD + Ginx Esports TV + Globo Portugal + Haber Global + Habitat TV + Canal HISTÓRIA PT + Hustler HD + HUSTLER TV + Insight TV + Investigation Discovery + iTVN + iTVN Extra + JimJam + KANAL 24 TR + KiKA + Kino Polska + Kino Polska Muzyka + krone.tv + Karadeniz TV + LUXE TV + M6 + MCM Top + Melodie TV + Metro TV + Mezzo + Mezzo Live HD + MinikaGO TR + Motorvision Plus International + Motorvision Plus + Motowizja + MovieSmart Classic + MovieSmart Türk + MTV ES + MTV PT + Museum TV + MyZen TV + Nat Geo Wild ES + National Geographic Portugal + The Nautical Channel + Nick Jr. PT + Nick Junior Commercial Light + Nickelodeon PT + Novelas+ + Nowa TV + Number One Türk + NUTA GOLD + NUTA.TV HD + Odisseia + oe24.TV + ORF2 + Panda Kids + Phoenix + Planete+ PL + Playboy TV + POLO TV + Polonia1 + Polsat 1 + Polsat 2 + Polsat Cafe + Polsat Doku + Polsat Film + Polsat Games + Polsat Music + Polsat News + Polsat News 2 + Polsat Play + Polsat Rodzina + Polsat Seriale + Polsat Viasat Explore + Power TV PL + Private TV + ProSieben + PRO 7 Österreich + Puls 4 + RAI UNO + RAI DUE + RAI World Premium + Red Carpet TV PL + RedLight HD + RT Documentary + RTL DE + RTP1 + RTP2 + RTP Noticias + RTP Açores + RTP Africa + RTP Madeira + RTP Memória + RTP Internacional + Russia Today + Russia Today ES + SAT.1 + Sat.1 Österreich + SIC + SIC Caras + SIC Internacional + SIC K + SIC Mulher + SIC Noticias + SIC Radical + SinemaTV 2 + SinemaTV 1001 + SinemaTV 1002 + SinemaTV Aile + SinemaTV Aile 2 + SinemaTV Aksiyon + SinemaTV Aksiyon 2 + SinemaTV Komedi + SinemaTV Komedi 2 + SinemaTV Yerli + SinemaTV Yerli 2 + SinemaTV + Sixx AT + Sky News + SkyShowtime 1 Nordic + Sport TV+ + Sport TV1.pt + Sport TV2 + Sport TV3 + Sport TV4 + Sport TV5 + Sport TV6 + Sport TV7 + STAR Mundo PT + Stars TV PL + Stingray CMusic + Stingray iConcerts + Stopklatka + Sundance TV PL + Super RTL + Syfy PT + TAY TV + TBN Polska HD + TeleDeporte + teve2 + TGRT Belgesel + Tivibu Spor + TLC PAN + TPA7 + Trace Urban + Travel Channel + TRT 4K + TRT EBA TV İlkokul + TRT EBA TV Lise + TRT EBA TV Ortaokul + TTV + TV5 + TV5 Monde + TV5Monde Europe + TV100 TR + TV 4 + TV 8.5 + TV Cine Action + TV Cine Edition + TV Cine Emotion + TV Cine Top + TV Net + TV Puls PL + TV Silesia + TV Trwam + TVE Internacional + Televisión de Galicia + TVG2 - TV Galicia + TVI + V Mais + TVI Reality + TVN + TVN24 + TVN 7 + TVN Style + TVN Turbo + TVP 2 + TVP 3 + TVP ABC + TVP HD + TVP Historia + TVP Info + TVP Kobieta + TVP Kultura + TVP Regionalna + TVP Rozrywka + TVP Seriale + TVR PL + TVS + TVT PL + Uçankuş TV + Vivid Red + Vivid TV + VOX + Wydarzenia 24 + Xtreme TV + XXL + Yaban TV + ZDF + ZDFneo + Antena 3 + A Spor + DAZN 2 PT + DAZN 3 PT + DAZN 4 PT + DAZN 5 PT + DAZN 6 PT + DocuBox HD + ETB Basque + 2X2 + 4Fun Dance + 4Fun Kids + 4FunTV + Telewizja 13 + 13 Ulica + A2TV TR + a Haber + a News + A Para + Active Family + Adult Channel + Adventure HD + AgroTV RO + Al Jazeera + Al Jazeera Arabic English + Ale Kino+ + ALFA TVP + AMC PL + AMC RO + Antena1 RO + Antena 3 CNN + Antena Stars RO + ARTE FR + ATV1 + ATV2 + ATV Extra HU + ATV TR + Auto Motor und Sport + AXN Black PL + AXN Black RO + AXN PL + AXN RO + AXN Spin PL + AXN Spin RO + AXN White PL + AXN White RO + B1 TV RO + BabyTV + Balkanika TV + BBC Earth + BBC First + BBC World News + BBN Türk + Bloomberg TV + Bloomberg HT + Body in Balance + Bollywood Film RO + Cartoonito CEE + Bucuresti TV RO + Canal 33 RO + Canal+ Domo + CANAL+ Kuchnia + Cartoon Network RO + CCTV 4 Europe + CGTN + CGTN Documentary + Cinemaraton RO + Cinemax 2 RO + Cinemax RO + Cinethronix RO + CNBC Europe + CNN Europe + Comedy Central PL + Comedy Central RO + Credo TV + Crime & Investigation Channel + Crime+Investigation PL + Da Vinci Learning + Deutsche Welle English + Digi 24 + Digi Animal World RO + Digi Life RO + TV Digi Sport 2 + TV Digi Sport 3 + TV Digi Sport 4 + Digi World RO + Disco Polo Music PL + Discovery Animal Planet + Discovery Channel + Discovery Historia + TLC + Disney Channel RO + Disney Junior + Diva Universal RO + Novelas Plus 1 + Dizi Smart Max + Dizi Smart Premium + Stingray Djazz + DMAX TR + Dorcel TV + Dorcel XXX + Dream Türk + ducktv HD + Duna TV + Duna World + Ekotürk + European League of Football Channel + E! Entertainment + Epic Drama (CEE) + Erox HD + Eroxxx HD + Eska Rock TV + Eska TV + Eska TV Extra + Etno TV RO + EuroNews + Eurosport + Eurosport 1 INT + Eurosport 2 INT + EWTN PL + Extreme Sports Channel + Fashion TV + Fast&FunBox HD + Favorit TV RO + TV2 Klub + Fight Klub HD + FightBox HD + Film Cafe RO + Film Now RO + Film+ HU + Filmax + FilmBox Extra RO + FilmBox Family PL + FilmBox Family RO + FilmBox Plus RO + FilmBox Premium RO + FilmBox RO + FilmBox Stars BG + Filmbox Stars HU + The Fishing and Hunting RO + Focus TV + Fokus TV + Folx TV + Food Network + FX Comedy PL + FX PL + NOW + Galaxy4 + H!T Music Channel RO + Haber Global + Habitat TV + Happy Channel RO + HBO 2 RO + HBO 3 RO + HBO RO + Home & Garden Television + Hír TV + History Channel RO + HUSTLER TV + IDA RO + Inedit TV RO + Investigation Discovery + Izaura TV + JimJam + KANAL 24 TR + Kanal D RO + Kanal D TR + Kino Polska + Kino Polska Muzyka + Kiss TV RO + krone.tv + Karadeniz TV + Love Nature US + LUXE TV + Magyar Televízió 1 + M2 Petőfi + M4 sport + Magic TV BG + ATV HU + Magyar Sláger TV + Mediaset Italia + Medika TV RO + Melodie TV + Metro TV + Mezzo + Mezzo Live HD + MinikaGO TR + Minimax HU + Minimax RO + Moldova TV + Mooz Dance + Mooz HD RO + Mooz Hits RO + Mooz Ro RO + Motorvision Plus International + Motorvision Plus + Motowizja + MovieSmart Classic + MovieSmart Türk + MTV Europe HU + MTV Music UK + Museum HD RO + Music Channel 1 RO + Muzsika TV + MyZen TV + National 24 Plus RO + Nasul TV RO + National Geographic People RO + Nat Geo Wild RO + National Geographic RO + National TV RO + The Nautical Channel + Nick Junior PL + Nickelodeon Commercial + Nicktoons PL + Novelas+ + Nowa TV + Number One Türk + NUTA GOLD + NUTA.TV HD + oe24.TV + ORF2 + TV Paprika RO + Planete+ PL + Playboy TV + POLO TV + Polonia1 + Polsat 2 + Polsat Cafe + Polsat Doku + Polsat Film + Polsat Games + Polsat Music + Polsat News + Polsat News 2 + Polsat Play + Polsat Rodzina + Polsat Seriale + Polsat Sport 2 + Polsat Viasat Explore + Polsat Viasat History + Polsat Viasat Nature + Power TV PL + Prima Sport 1 RO + Prima Sport 2 RO + Prima Sport 3 RO + Prima Sport 4 RO + Prima Sport 5 RO + Prima TV RO + Prime + Brazzers TV (ex. Private Spice) + Private TV + Mozi plusz TV + Acasă + ProSieben + PRO 7 Österreich + Pro Cinema RO + Acasă Gold + PRO TV Internațional + PRO ARENA RO + ProTV + Puls 4 + RAI UNO + RAI TRE + RAI World Premium + Realitatea Plus RO + Reality Kings + Red Carpet TV PL + Romance TV PL + România TV + RTL DE + RTL Gold + RTL Ketto + RTL HU + RTLup + SAT.1 + Sat.1 Österreich + Show TV + SinemaTV 2 + SinemaTV 1001 + SinemaTV 1002 + SinemaTV Aile + SinemaTV Aile 2 + SinemaTV Aksiyon + SinemaTV Aksiyon 2 + SinemaTV Komedi + SinemaTV Komedi 2 + SinemaTV Yerli + SinemaTV Yerli 2 + SinemaTV + Sixx AT + Sky News + SkyShowtime 1 Nordic + Sorozat+ + Speranta TV + Spíler1 TV + Stars TV PL + Stingray CMusic + Stingray Classica + Stingray iConcerts + Stopklatka + Story4 + Sundance TV PL + Super RTL + Super TV2 + Taraf Tv RO + TAY TV + TBN Polska HD + DIZI + TV1000 Russian Kino RO + teve2 + TGRT Belgesel + Tivibu Spor + Trace Urban + Travel Channel + Travel Mix RO + Travelxp + Trinitas HD RO + TRT 4K + TRT EBA TV İlkokul + TRT EBA TV Lise + TRT EBA TV Ortaokul + TRT Turk + TRT World + TTV + TV2 Comedy + TV2 HU + TV2 Kids + TV2 Séf + TV4 HU + TV5 + TV5Monde Europe + TV100 TR + Viasat Kino Balkan + TV1000 Global Kino + teve2 TR + TV 4 + TV 8 TR + TV 8.5 + TV Digi Sport 1 + TV Net + TV Paprika HU + TV Puls PL + TV Silesia + TV SudEst + TV Trwam + TVE Internacional + TVN24 + TVN24 BiS + TVN 7 + TVN Style + TVN Turbo + TVP 2 + TVP 3 + TVP ABC + TVP HD + TVP Historia + TVP Info + TVP Kobieta + TVP Kultura + TVP Regionalna + TVP Rozrywka + TVP Seriale + Televiziunea Româna 1 + Televiziunea Româna 2 + TVR3 RO + TVR Cluj RO + TVR Craiova RO + TVR Iasi RO + TVR PL + TVR Tg-Mures RO + TVR Timisoara RO + Televiziunea Româna International + TVS + TVT PL + UTV RO + Uçankuş TV + Viasat Explore CEE + Viasat History + Viasat Nature CEE + VTV RO + Warner TV RO + World Fashion Channel + wPolsce PL + Wydarzenia 24 + Xtreme TV + XXL + Yaban TV + Zenebutik + Zu TV + A Spor + Bollywood Clasic RO + CineWow + DocuBox HD + Fuel TV + 2X2 + 3SAT + 4Fun Dance + 4Fun Kids + 4FunTV + Telewizja 13 + 13 Ulica + 20 Mediaset + 24 Kitchen + 24Kitchen PT + A2TV TR + a Haber + a News + A Para + Active Family + Adventure HD + Agro TV + Al Jazeera + Ale Kino+ + ALFA TV + ALFA TVP + Алсат М + AMC PL + AMC SI + Anixe HD Serie + Das Erste + Arena Esport + Arena Fight + ARTE FR + ARTE DE + ASTRA TV + Alternativna televizija Banja Luka + ATV1 + ATV2 + ATV TR + AXN + AXN Black PL + AXN PL + AXN Spin + AXN Spin PL + AXN White PL + B92 + BabyTV + Balkan trip + Balkanika TV + BBC Earth + BBC First + BBC World News + BBN Türk + Radio Televizija BIH + BK TV + Bloomberg TV + Bloomberg Adria + Bloomberg HT + Radio Televizija BN + BN music + BN 2 HD + БНТ 2 + Cartoonito CEE + Canal+ Domo + CANAL+ Kuchnia + Canale 5 + Cartoon Network + Cartoon Network DE + CCTV 4 Europe + CGTN + Cinemax + Cinemax 2 + CineStar Action&Thriller + CineStar Premiere 1 + CineStar Premiere 2 + CineStar TV1 + CineStar TV2 + CineStar TV Comedy Family + CineStar TV Fantasy + English Club TV + Croatian Music Channel + CNBC Europe + CNN Europe + Comedy Central DE + Nicktoons + Comedy Central PL + Crime & Investigation Channel + Crime+Investigation PL + Da Vinci Learning + Disco Polo Music PL + Discovery Animal Planet + Discovery Channel + Discovery Historia + TLC + Disney Channel + Disney Junior + Novelas Plus 1 + Dizi Smart Max + Dizi Smart Premium + Stingray Djazz + DMAX TR + DM SAT + Dorcel TV + Dorcel XXX + Dream Türk + Sport 1 DE + ducktv SD + ducktv HD + Duna TV + Duna World + Ekotürk + European League of Football Channel + E! Entertainment + Epic Drama (CEE) + Erox HD + Eroxxx HD + Eska Rock TV + Eska TV + Eska TV Extra + Eurochannel + EuroNews + Eurosport + Eurosport 2 + EWTN + EWTN PL + Exodus TV + Extreme Sports Channel + Fashion TV + FashionBox HD + Fast&FunBox HD + Fight Klub HD + FightBox HD + SK Fight + Filmax + FilmBox Arthouse + FilmBox Extra RS + FilmBox Family PL + FilmBox Stars RS + The Fishing and Hunting + Focus TV + Fokus TV + Folx TV + FX Comedy PL + STAR Crime SI + STAR Life SI + STAR Movies SI + FX PL + STAR SI + NOW + France24 + France 2 + France 24 French + Radio Televizija Federacije BIH + GEA TV + Ginx Esports TV + SK Golf + Golica TV + Gorenjska televizija + Grand Televizija + Haber Global + Habitat TV + HappyTV + Hayat Folk Box + Hayat Music Box + Hayat 2 + Hayat TV + Hayatovci + HBO + HBO3 + HBO2 + HEMA TV + Home & Garden Television + The History Channel + History Channel 2 + HIT TV + HRT 1 + HRT 2 + HRT 3 + HRT 4 + HUSTLER TV + IDJ World + Investigation Discovery + Italia 1 + Otvorena televizija + JimJam + Jugoton TV + K::CN 2 Music + Kabel Eins + Канал 5 + KANAL 24 TR + Kanal A, SLO + Kanal D Drama TR + Kanal Rijeka + KiKA + Kino Polska + Kino Polska Muzyka + Klape i Tambure TV + KLASIK + K::CN 1 Kopernikus + krone.tv + Karadeniz TV + KTV Ormož + Living HD + Lov i ribolov + LUXE TV + M2 Petőfi + TV Maribor + Mediaset Italia + Melodie TV + Metro TV + Mezzo + Mezzo Live HD + MinikaGO TR + Minimax + Minimax SI + Motorvision Plus + Motowizja + MovieSmart Classic + MovieSmart Türk + МРТ 1 + МРТ 2 + МРТ 3 + MTV Europe + MTV DE + MyZen TV + N1 BA + N1 HR + N1 RS + NTV DE + Nat Geo Wild SI + National Geographic + National Geographic Channel HD + Nat Geo Wild + The Nautical Channel + Blue Televizija ZG + Net TV + Nat Geo Wild HD + Nick Junior + Nickelodeon + Nickelodeon Commercial + NOVA TV + Novelas+ + Nowa TV + Number One Türk + NTV IC Kakanj + NUTA GOLD + NUTA.TV HD + O Kanal + OBN + oe24.TV + ORF1 + ORF2 + ORF3 + OTV Valentino + Pickbox TV SI + Pikaboo 2 + RTV PINK + RED tv + TV PINK EXTRA + PINK Family + Pink Fashion + PINK Film + Pink Folk 1 + Pink Folk 2 + Pink Kids + Pink Movies + Pink Music 1 + TV PINK PLUS + Pink Reality + Pink Serije + Pink Show + PINK World + PINK Zabava + Planet 2 + Planete+ PL + Planet TV SI + Playboy TV + POLO TV + Polonia1 + Polsat 2 + Polsat Cafe + Polsat Doku + Polsat Film + Polsat Games + Polsat Music + Polsat News + Polsat News 2 + Polsat Play + Polsat Rodzina + Polsat Seriale + Polsat Viasat Explore + Polsat Viasat History + Polsat Viasat Nature + POP TV + Power TV PL + Brazzers TV (ex. Private Spice) + Private TV + ProSieben + PRO 7 Österreich + Prva Srpska TV + Prva World + Ptujska televizija + Puls 4 + RAI UNO + RAI DUE + RAI TRE + RAI 3 Bis + RAI 5 + RAI Education + RAI Gulp + RAI News 24 + RAI Sport 1 + RAI Storia + RAI World Premium + Rai Yoyo + Reality Kings + Red Carpet TV PL + RedLight HD + Rete 4 + Россиᴙ 24 + RTK 1 + RTL + RTL 2 + RTL Zwei + RTL DE + RTL Kockica + RTL Living + RTRS + RTS 1 + RTS 2 + RTS SVET + RTV International + RTV Unsko-sanskog kantona + RTV Tuzlanskog Kantona + Russia Today + SAT.1 + Sat.1 Österreich + SciFi + ServusTV + Sexation TV + Show TV + SinemaTV 2 + SinemaTV 1001 + SinemaTV 1002 + SinemaTV Aile + SinemaTV Aile 2 + SinemaTV Aksiyon + SinemaTV Aksiyon 2 + SinemaTV Komedi + SinemaTV Komedi 2 + SinemaTV Yerli + SinemaTV Yerli 2 + SinemaTV + Televizija skupnih internih programov + Сител + Sixx + Sixx AT + Sky News + RTV Slovenija 1 + RTV Slovenija 2 + RTV Slovenija 3 + SOS Plus + Sport Klub 4 + Sport Klub 5 + Sport Klub 6 + Sportitalia + Sport Klub 3 + Stars TV PL + Stingray iConcerts + Stopklatka + ŠTV3 + Sundance TV PL + Super RTL + K::CN 3 Svet Plus + Tanjug Tačno + TAY TV + TBN Polska HD + Telequattro + Televizija Alfa + Televizija AS + Telma + teve2 + TGRT Belgesel + Tivibu Spor + Top TV + Toxic TV + Trace Urban + Travel Channel + Travelxp + TRT 4K + TRT EBA TV İlkokul + TRT EBA TV Lise + TRT EBA TV Ortaokul + TRT World + TTV + TV3 + TV 3 Medias + TV5 + TV5 Monde + TV100 TR + Viasat Kino Balkan + teve2 TR + TV 4 + TV 8.5 + TV ATM + TV Celje + TV Duga + SAT + TV Galeja + TV Idea + TV Jadran + TV Net + TV Puls PL + TV Sarajevo + TV Silesia + TV Trwam + TV Veseljak + TV Vijesti + Televizija Crne Gore 1 + Televizija Crne Gore 2 + Televizija Crne Gore MNE + TVN24 + TVN 7 + TVN Style + TVN Turbo + TVP 2 + TVP 3 + TVP ABC + TVP HD + TVP Historia + TVP Info + TVP Kobieta + TVP Kultura + TVP Regionalna + TVP Rozrywka + TVP Seriale + TVR PL + TVS + TVT PL + Uçankuş TV + DIVA (ex. Universal) + Varaždinska Televizija + Vaš kanal + Viasat Explore CEE + Viasat History + Viasat Nature CEE + Viasat True Crime CEE + Vikom + VOX + VTV Studio + Welt + wPolsce PL + Wydarzenia 24 + Xtreme TV + XXL + Yaban TV + Zagrebačka Televizija + ZDF + Zdrava televizija + A Spor + DocuBox HD + Fuel TV + 1-2-3.tv + 2X2 + 4Fun Dance + 4Fun Kids + 4FunTV + Telewizja 13 + 13 Ulica + 20 Mediaset + 21 Mix + 24Kitchen PT + A2 CNN + a Haber + a News + A Para + ABC News Albania + Active Family + Adventure HD + Ale Kino+ + ALFA TVP + AMC PL + Apollon TV + ART Sport 1 + ART Sport 2 + ART Sport 3 + ART Sport 4 + ART Sport 5 + ART Sport 6 + Doku 1 + Doku 2 + ATV2 + ATV TR + AXN PL + AXN Spin PL + BabyTV + Bang Bang + BBN Türk + Beyaz TV + Bloomberg HT + Bubble TV + CANAL+ Kuchnia + Cartoon Network + City TV + Click TV + CNBC Europe + CNN Türk TV + Comedy Central Extra UK + Comedy Central PL + Crime+Investigation PL + Deluxe Music + Disco Polo Music PL + Discovery Animal Planet + Discovery Channel + Discovery Historia + Discovery Turbo UK + Disney Channel + Novelas Plus 1 + Dizi Smart Max + Dizi Smart Premium + DMAX DE + DMAX TR + Dream Türk + Ekotürk + European League of Football Channel + Elrodi + ΕΡΤ1 + Eska Rock TV + Eska TV + Eska TV Extra + Euronews Albania + EWTN PL + EXTASY TV + FAX News + ФЕН ТВ + Fight Klub HD + Filmax + FilmBox Extra RS + FilmBox Family PL + FilmBox Stars RS + Fokus TV + Folx TV + STAR Channel + FX Comedy PL + STAR Life + FX PL + Haber Global + Habitat TV + HSE24 Extra + HSE24 Trend + Info24 Albania + INTV AL + Junior TV + KB Peja TV + Kabel Eins + Kabel eins Doku + Kanal 7 + Kanal 10 + KANAL 24 TR + Kanal D Drama TR + Kanali 7 + KiKA + Kino Polska + Kino Polska Muzyka + Klan Music + Klan Plus + Kopliku TV + krone.tv + Karadeniz TV + MCN 24 + MCN TV + Melodie TV + DigitAlb Melody TV + MinikaGO TR + Motowizja + MovieSmart Classic + MovieSmart Türk + My Music + N24 Doku + NTV DE + National Geographic + National Geographic Channel HD + Nat Geo Wild + Ndihma e Klientit + Nickelodeon + Novelas+ + Nowa TV + Number One Türk + NUTA GOLD + NUTA.TV HD + oe24.TV + ORF2 + Planete+ PL + POLO TV + Polonia1 + Polsat 2 + Polsat Cafe + Polsat Doku + Polsat Film + Polsat Music + Polsat News + Polsat News 2 + Polsat Play + Polsat Rodzina + Polsat Seriale + Polsat Viasat Explore + Power TV PL + Premium Channel + PRO 7 Österreich + QVC 2 DE + QVC Deutschland + RAI 4 + RAI 5 + Rai Yoyo + Red Carpet TV PL + RTLup + RTS 2 + RTSH Agro + RTSH Femijë + RTSH Film + RTSH Gjirokastra + RTSH Korça + RTSH Kuvend + RTV 21 Popullore + RTV Besa + RTV Ora + Sat.1 Österreich + Scan TV + Shenja TV + Show TV + SinemaTV 2 + SinemaTV 1001 + SinemaTV 1002 + SinemaTV Aile + SinemaTV Aile 2 + SinemaTV Aksiyon + SinemaTV Aksiyon 2 + SinemaTV Komedi + SinemaTV Komedi 2 + SinemaTV Yerli + SinemaTV Yerli 2 + SinemaTV + Sixx + Sixx AT + Stars TV PL + Stingray iConcerts + Stopklatka + Sundance TV PL + Syri TV + Syri Vizion + TAY TV + TBN Polska HD + DIZI + Tele 5 DE + teve2 + TGRT Belgesel + Tivibu Spor + Tring Bizarre + Tring Bunga Bunga + Tring Desire + Tring Kanal 7 + TRT 4K + TRT EBA TV İlkokul + TRT EBA TV Lise + TRT EBA TV Ortaokul + TTV + TV5 + TV100 TR + teve2 TR + TV 7 + TV 8.5 + TV Dukagjini + TV Net + TV Trwam + TVN 7 + TVN Style + TVN Turbo + TVP 2 + TVP ABC + TVP HD + TVP Historia + TVP Info + TVP Kobieta + TVP Kultura + TVP Rozrywka + TVP Seriale + TVR PL + TVS + TVT PL + Uçankuş TV + VOX up + Welt + Wydarzenia 24 + Xtreme TV + XXL + Yaban TV + ZDFneo + Zico TV + Zjarr TV 2X2 4FunTV Telewizja 13 @@ -4772,8 +7698,6 @@ Bubble TV CANAL+ Kuchnia Cartoon Network - Film Cafe PL - CBS Reality Cinemax Cinemax 2 CineStar Action&Thriller RS @@ -4861,7 +7785,7 @@ Kanal 7 Kanal 10 KANAL 24 TR - Kanal D + Kanal D Drama TR Kanali 7 Kino Polska KitchenTV @@ -4872,15 +7796,10 @@ Living HD MinikaGO TR Minimax - Minimini+ Motorvision Plus International MovieSmart Classic MovieSmart Türk MTV Europe - MTV 00s - MTV Hits International - MTV Live HD - MTV 90s International MUSE My Music NTV DE @@ -4926,7 +7845,6 @@ Polonia1 Polsat 2 Polsat Cafe - Polsat Comedy Central Extra Polsat Doku Polsat Viasat Explore Power TV @@ -5005,7 +7923,6 @@ Syri Vizion TAY TV DIZI - TELE 1 teve2 TGRT Belgesel TGRT EU @@ -5063,8 +7980,6 @@ Uçankuş TV Ülke TV DIVA (ex. Universal) - Vavoom - MTV 80s Viasat Explore CEE Viasat History Viasat Nature CEE @@ -5076,2145 +7991,40 @@ Yaban TV Zico TV Zjarr TV - 2X2 - 3SAT - 4Fun Dance - 4Fun Kids - Telewizja 13 - 13 Ulica - 20 Mediaset - 24 Kitchen - 24Kitchen PT - Televizija 24 - 360 TuneBox - A2 CNN - A2TV TR - a Haber - a News - A Para - ABC News Albania - Active Family - Adria TV - Adventure HD - Agro TV - Ale Kino+ - ALFA TVP - AMC - AMC PL - Anixe HD Serie - Das Erste - Arena Esport - Arena Fight - Arena Sport 1 Premium - Arena Sport 1x2 - Arena Sport 2 Premium - Arena Sport 3 Premium - Arena Sport 5 RS - Arena Sport 6 RS - Arena Sport 7 RS - Arena Sport 8 RS - Arena Sport 9 RS - Arena Sport 10 RS - ARTE DE - ATV1 - ATV2 - AXN - AXN Black PL - AXN PL - AXN Spin - AXN Spin PL - AXN White PL - B92 - BabyTV - Balkan trip - Balkan TV - Bang Bang - BBC Earth - BBC World News - BBN Türk - BlicTV - Bloomberg Adria - Bloomberg HT - Radio Televizija BN - BN music - BN 2 HD - Cartoonito CEE - Brainz TV - Bravo Music - CANAL+ Kuchnia - Cartoon Network - Film Cafe PL - CBS Reality - CBS Reality PL - CCTV 4 Europe - CGTN - CGTN Documentary - Cinemania TV - Cinemax - Cinemax 2 - CineStar Action&Thriller RS - CineStar Premiere 1 - CineStar Premiere 2 - CineStar TV2 - CineStar TV Comedy Family - CineStar TV Fantasy - CineStar TV RS - Click TV - Croatian Music Channel - CNN Europe - Nicktoons - Comedy Central PL - Crime & Investigation Channel - Crime+Investigation PL - Cufo TV - Deutsche Welle English - Dexy TV - Disco Polo Music PL - Discovery Animal Planet - Discovery Channel - Discovery Historia - Discovery Science - TLC - Disney Channel - Disney Junior - Novelas Plus 1 - Dizi Smart Max - Dizi Smart Premium - DMAX TR - DM SAT - Dorcel TV - Dorcel XXX - DOX TV - Dream Türk - ducktv SD - ducktv HD - Ekotürk - European League of Football Channel - Elrodi - E! Entertainment - Epic Drama (CEE) - Erox HD - Eroxxx HD - Eska Rock TV - Eska TV Extra - Euro Cinema 1 - Euro Cinema 2 - Euro Cinema 3 - Euro Cinema 4 - Eurochannel - EuroNews - Euronews Albania - EuroNews Srbija - Eurosport - Eurosport 2 - EWTN PL - Explorer Histori - Explorer Natyra - Explorer Shkence - Extreme Sports Channel - FACE TV - Fashion TV - FashionBox HD - Fast&FunBox HD - FAX News - Fight Klub HD - FightBox HD - SK Fight - Filmax - FilmBox Arthouse - FilmBox Extra RS - FilmBox Family PL - FilmBox Stars RS - FilmBox Premium RS - Fokus TV - Folx TV - Food Network - STAR Channel - FX Comedy PL - STAR Crime - STAR Life - STAR Movies - FOX NEWS - FX PL - France24 - France 3 - France 24 French - Radio Televizija Federacije BIH - Gametoon HD - SK Golf - Golica TV - Grand Televizija - Haber Global - Habitat TV - HappyTV - Hayat Folk Box - Hayat Music Box - Hayat 2 - Hayat TV - Hayatovci - HBO - HBO3 - HBO2 - HEMA TV - Home & Garden Television - The History Channel - History Channel 2 - HRT 1 - HRT 2 - HRT 3 - HRT 4 - HUSTLER TV - IDJ World - Insajder TV - Narodna TV - INTV AL - Investigation Discovery - Jugoton TV - Junior TV - K1 TV - K::CN 2 Music - Kanal 3 Prnjavor - KANAL 24 TR - Kanal D - Kanali 7 - Kazbuka - Kino Polska - Kino Polska Muzyka - KitchenTV - Klan Kosova - K::CN 1 Kopernikus - krone.tv - Karadeniz TV - Kurir TV - Living HD - Lov i ribolov - MCN TV - Mediaset Italia - Melodie TV - DigitAlb Melody TV - Mezzo Live HD - MinikaGO TR - Minimax - Minimini+ - Motowizja - MovieSmart Classic - MovieSmart Türk - MTV Europe - MTV 00s - Club MTV International - MTV Hits International - MTV Live HD - MTV 90s International - MUSE - My Music - MyZen TV - N1 RS - Наша ТВ - National Geographic - National Geographic Channel HD - Nat Geo Wild - NBA TV - News 24 - Nat Geo Wild HD - Nick Junior - Nickelodeon Commercial - Nova M - Nova Max - Nova S - Nova Series - Nova Sport Srbija - Novelas+ - RTV Novi Pazar - Nowa TV - Number One Türk - NTV IC Kakanj - NUTA GOLD - NUTA.TV HD - O Kanal - OBN - oe24.TV - Ora News - ORF2 - OTV Valentino - Pickbox TV RS - Pikaboo - RTV PINK - RED tv - Vesti - Pink Action - Pink Thriller - Pink Crime & Mystery - Pink BH - Pink Classic - Pink Comedy - Pink Erotic 1 - Pink Erotic 2 - Pink Erotic 3 - Pink Erotic 4 - Pink Erotic 5 - Pink Erotic 6 - Pink Erotic 7 - Pink Erotic 8 - TV PINK EXTRA - PINK Family - Pink Fashion - PINK Film - Pink Folk 1 - Pink Folk 2 - Pink Ha Ha - Pink Hits - Pink Hits 2 - Pink Horror - Pink Kids - Pink Koncert - Pink Kuvar - Pink LOL - Pink M - Pink Movies - Pink Romance - Pink SCI FI & Fantasy - Pink Music 1 - Pink and Roll - Pink Pedia - TV PINK PLUS - Pink Premium - Pink Reality - Pink Serije - Pink Show - Pink Soap - Pink Style - Pink Super Kids - Pink Western - PINK World - Pink World Cinema - PINK Zabava - Planete+ PL - POLO TV - Polonia1 - Polsat 1 - Polsat 2 - Polsat Cafe - Polsat Comedy Central Extra - Polsat Doku - Polsat Film - Polsat Music - Polsat News - Polsat News 2 - Polsat Play - Polsat Rodzina - Polsat Seriale - Polsat Viasat Explore - Polsat Viasat History - Polsat Viasat Nature - Power TV PL - Premier League TV - Brazzers TV (ex. Private Spice) - Private TV - ProSieben - PRO 7 Österreich - Prva FILES - Prva KICK - Prva LIFE - Prva MAX - Prva Plus - Prva Srpska TV - Prva TV Crna Gora - Prva World - Puls 4 - RAI UNO - RAI DUE - RAI 4 - RAI 5 - Rai Yoyo - Reality Kings - Red Carpet TV PL - Report TV - Россиᴙ 24 - RT Documentary - RTK 1 - RTL - RTL 2 - RTL Croatia World - RTL Kockica - RTL Living - RTRS - RTRS PLUS - RTS 1 - RTS 2 - RTS 3 - RTS Drama - RTS Klasika - RTS Kolo - RTS Muzika - RTS Nauka - RTS Poletarac - RTS SVET - RTS Trezor - RTS Život - Radio Televizija Budva - Russia Today - Sat.1 Österreich - Scan TV - SciFi - SinemaTV 2 - SinemaTV 1001 - SinemaTV 1002 - SinemaTV Aile - SinemaTV Aile 2 - SinemaTV Aksiyon - SinemaTV Aksiyon 2 - SinemaTV Komedi - SinemaTV Komedi 2 - SinemaTV Yerli - SinemaTV Yerli 2 - SinemaTV - Sixx AT - Sky News - RTV Slovenija 1 - Tring Smile - SOS Plus - Sport Klub 1 Slovenija - Sport Klub 3 - Superstar 2 - Star TV TR - Stinet - Stopklatka - Studio B - STV Folk - Sundance TV PL - Super Polsat - Superstar TV - K::CN 3 Svet Plus - Syri TV - Televizioni 7 - Tanjug Tačno - TAY TV - TBN Polska HD - DIZI - TELE 1 - teve2 - TGCOM24 - TGRT Belgesel - Tip TV - Tivibu Spor - TOGGO plus - Top Channel - Top News - Toxic Folk - Toxic TV - Travel Channel - TRT 4K - TRT EBA TV İlkokul - TRT EBA TV Lise - TRT EBA TV Ortaokul - TTV - TV5 - TV5Monde Europe - TV100 TR - Viasat Kino Balkan - TV 4 - TV 8.5 - Televizija TV7 - Arena Sport 1 RS - Arena Sport 2 RS - Arena Sport 3 RS - Arena Sport 4 RS - TV Duga + SAT - TV Dukagjini - Телевизија Храм - RTV Most - TV Net - TV Silesia - TV Trwam - TV Vijesti - Televizija Crne Gore 1 - Televizija Crne Gore 2 - Televizija Crne Gore 3 - Televizija Crne Gore MNE - Televizija Doktor - TVN 7 - TVN Style - TVN Turbo - TVP 2 - TVP 3 - TVP ABC - TVP HD - TVP Historia - TVP Info - TVP Kobieta - TVP Kultura - TVP Rozrywka - TVP Seriale - TVR PL - TVT PL - Uçankuş TV - UNA TV - DIVA (ex. Universal) - Vavoom - MTV 80s - Viasat Explore CEE - Viasat History - Viasat Nature CEE - Vikom - Vizion Plus - RT Vojvodina 1 - RT Vojvodina 2 - wPolsce PL - Wydarzenia 24 - Xtreme TV - XXL - Yaban TV - ZDFinfo - ZDFneo - Zdrava televizija - Zico TV - 2X2 - 4Fun Dance - 4Fun Kids - Telewizja 13 - 13 Ulica - 24 Kitchen - 24Kitchen PT - Televizija 24 - 360 TV - A2TV TR - a Haber - a News - A Para - ABC News Albania - Active Family - Adventure HD - Agro TV - Al Jazeera - Ale Kino+ - ALFA TV - ALFA TVP - Алсат М - AMC - AMC PL - Anixe HD Serie - Das Erste - Arena Esport - Arena Fight - Arena Sport 1 MK - Arena Sport 1 Premium - Arena Sport 2 Premium - Arena Sport 3 Premium - Arena Sport 5 RS - ARTE DE - Alternativna televizija Banja Luka - ATV1 - ATV2 - ATV Avrupa - AXN - AXN Black PL - AXN PL - AXN Spin - AXN Spin PL - AXN White PL - Balkan trip - Balkanika TV - Bang Bang - BBC First - BBC World News - BBN Türk - Bloomberg TV - Bloomberg Adria - Bloomberg HT - Radio Televizija BN - BN music - BN 2 HD - Cartoonito CEE - Brainz TV - CANAL+ Kuchnia - Cartoon Network - Film Cafe PL - CBS Reality - Cinemania TV - Cinemax - Cinemax 2 - CineStar Premiere 1 - CineStar Premiere 2 - CineStar TV2 - Croatian Music Channel - CNBC Europe - CNN Europe - Nicktoons - Comedy Central PL - Crime & Investigation Channel - Crime+Investigation PL - Cufo TV - Da Vinci Learning - Deluxe Music - Deutsche Welle English - Disco Polo Music PL - Discovery Animal Planet - Discovery Channel - Discovery Historia - Discovery Science - TLC - Disney Channel - Disney Junior - Novelas Plus 1 - Dizi Smart Max - Dizi Smart Premium - DMAX TR - DM SAT - Dream Türk - Sport 1 DE - ducktv SD - Ekotürk - European League of Football Channel - E! Entertainment - Epic Drama (CEE) - Erox HD - Eroxxx HD - Eska Rock TV - Eska TV - Eska TV Extra - Euro D - Euro Star - Eurochannel - EuroNews - Euronews Albania - Eurosport - Eurosport 2 - EWTN PL - Explorer Histori - Explorer Natyra - Explorer Shkence - Extreme Sports Channel - FACE TV - Fashion TV - FashionBox HD - Fast&FunBox HD - Fight Klub HD - FightBox HD - SK Fight - Filmax - FilmBox Arthouse - FilmBox Extra RS - FilmBox Family PL - FilmBox Stars RS - The Fishing and Hunting - Fokus TV - Folx TV - Food Network - STAR Channel - FX Comedy PL - STAR Crime - STAR Life - STAR Movies - FX PL - NOW - France24 - France 24 French - Radio Televizija Federacije BIH - Ginx Esports TV - SK Golf - Grand Televizija - Haber Global - Habitat TV - HappyTV - Hayat Folk Box - Hayat Music Box - Hayat 2 - Hayat TV - Hayatovci - HBO - HBO3 - HBO2 - The History Channel - HRT 1 - HRT 3 - HRT 4 - HUSTLER TV - IDJ World - JimJam - Jugoton TV - Junior TV - K::CN 2 Music - Kabel Eins - Kanal1 - Канал 5 - Канал 8 - Kanal 7 - Kanal 10 - KANAL 24 TR - Kanal D - Kanal D TR - KiKA - Kino Polska - Kino Polska Muzyka - TV Kiss Menada - KitchenTV - Klan Macedonia - KLASIK - K::CN 1 Kopernikus - krone.tv - Karadeniz TV - Living HD - Lov i ribolov - M1 Family - M1 Film MK - M1 Gold MK - Melodie TV - DigitAlb Melody TV - Mezzo - Mezzo Live HD - MinikaGO TR - Minimax - Minimini+ - Motowizja - MovieSmart Classic - MovieSmart Türk - МРТ 1 - МРТ 2 - МРТ 3 - МРТ 4 - МРТ 5 - MRT SAT - MTM Televizija - MTV Europe - MTV 00s - Club MTV International - MTV Hits International - MTV Live HD - MTV 90s International - MUSE - My Music - N1 RS - Наша ТВ - National Geographic - National Geographic Channel HD - Nat Geo Wild - News 24 - Nick Junior - Nickelodeon Commercial - Nova S - Nova Sport Srbija - Novelas+ - RTV Novi Pazar - Nowa TV - Number One Türk - NUTA GOLD - NUTA.TV HD - O Kanal - OBN - oe24.TV - Ora News - Pickbox TV MK - Pikaboo - Pink Music 1 - Pink Serije - Pink Show - Planeta TV BG - Planete+ PL - Playboy TV - POLO TV - Polonia1 - Polsat 2 - Polsat Cafe - Polsat Comedy Central Extra - Polsat Doku - Polsat Film - Polsat Music - Polsat News - Polsat News 2 - Polsat Play - Polsat Rodzina - Polsat Seriale - Polsat Viasat Explore - Polsat Viasat History - Polsat Viasat Nature - Power TV PL - Brazzers TV (ex. Private Spice) - Private TV - ProSieben - PRO 7 Österreich - Prva FILES - Prva KICK - Prva LIFE - Prva MAX - Prva Plus - Prva Srpska TV - Prva World - Puls 4 - RAI UNO - RAI DUE - RAI TRE - RAI Sport 1 - RAI Storia - Rai Yoyo - Red Carpet TV PL - RedLight HD - Report TV - Россиᴙ 24 - RT Documentary - RTK 1 - RTK 2 - RTK 4 - RTL - RTL 2 - RTL Zwei - RTL DE - RTL Kockica - RTL Living - RTRS - RTS 1 - RTS 2 - RTS 3 - RTS SVET - RTSH 1 - RTV21 - RTV 21 Popullore - RTV Besa - RTV Slon Tuzla - Russia Today - SAT.1 - Sat.1 Österreich - Scan TV - SciFi - Shenja TV - Show TV - SinemaTV 2 - SinemaTV 1001 - SinemaTV 1002 - SinemaTV Aile - SinemaTV Aile 2 - SinemaTV Aksiyon - SinemaTV Aksiyon 2 - SinemaTV Komedi - SinemaTV Komedi 2 - SinemaTV Yerli - SinemaTV Yerli 2 - SinemaTV - Сител - Sixx AT - Sky News - RTV Slovenija 1 - RTV Slovenija 2 - RTV Slovenija 3 - Tring Smile - SOS Plus - Sport Klub 1 Hrvatska - Sport Klub 2 Hrvatska - Sport Klub 3 - Superstar 2 - Star TV TR - Stars TV PL - Stinet - Stingray CMusic - Stopklatka - Studio B - STV Folk - Sundance TV PL - Super Polsat - Super RTL - Superstar TV - K::CN 3 Svet Plus - Syri TV - Televizioni 7 - Tanjug Tačno - TAY TV - TBN Polska HD - DIZI - TELE 1 - Telma - Tera TV - teve2 - TGRT Belgesel - TGRT EU - Tip TV - Tivibu Spor - Top Channel - Top News - Toxic Folk - Toxic Rap - Toxic TV - Trace Urban - Travel Channel - Travelxp - Tring Bunga Bunga - Tring Desire - TRT 1 - TRT 4K - TRT EBA TV İlkokul - TRT EBA TV Lise - TRT EBA TV Ortaokul - TRT Spor Yıldız - TRT Turk - TRT World - TTV - TV5 - TV5 Monde - TV100 TR - Viasat Kino Balkan - teve2 TR - TV 4 - TV 8 TR - TV 8.5 - Arena Sport 2 RS - Arena Sport 3 RS - Arena Sport 4 RS - TV Duga + SAT - TV Dukagjini - TV Edo - Klan TV HD - TVM Ohrid - TV Net - TV Sarajevo - TV Silesia - ТВ Сонце - TV Trwam - Televizija Crne Gore MNE - TVN 7 - TVN Style - TVN Turbo - TVP 2 - TVP 3 - TVP ABC - TVP HD - TVP Historia - TVP Info - TVP Kobieta - TVP Kultura - TVP Rozrywka - TVP Seriale - TVR PL - TVS - TVT PL - Uçankuş TV - Ülke TV - DIVA (ex. Universal) - Valentino Music HD - Vavoom - MTV 80s - Viasat Explore CEE - Viasat History - Viasat Nature CEE - Viasat True Crime CEE - Vikom - Vizion Plus - VOX - Welt - Wness TV - World Fashion Channel - wPolsce PL - Wydarzenia 24 - Xtreme TV - XXL - Yaban TV - ZDF - Zdrava televizija - 1-2-3.tv - 2X2 - 3SAT - 4Fun Dance - 4Fun Kids - 4FunTV - Telewizja 13 - 13 Ulica - 360 TuneBox - A2TV TR - a Haber - a News - A Para - Active Family - Adult Channel - Adult Channel 2 - Adventure HD - Al Jazeera - Ale Kino+ - ALFA TVP - AMC PL - Animal Planet PL - Anixe HD Serie - Antena HD - Das Erste - ARD-alpha - ARTE FR - ARTE DE - ATV1 - ATV2 - AXN Black PL - AXN PL - AXN Spin PL - AXN White PL - BabyTV - BabyTV PL - Bayerischen Fernsehen Nord - BBC Brit PL - BBC Earth PL - BBC First PL - BBC Lifestyle PL - BBC News Channel - BBC World News - BBN Türk - Belsat TV - Beyaz TV - BFM TV - Bibel TV - Das Bild TV - Biznes24 - Bloomberg TV - Bloomberg HT - Blue Hustler - Body in Balance - Bollywood PL - Cartoonito CEE - BR Fernsehen Süd - CANAL+ 4K Ultra HD - CANAL+ Dokument - CANAL+ Family PL - CANAL+ Film PL - CANAL+ Now PL - Canal+ Domo - Canal+ Extra 1 PL - Canal+ Extra 2 PL - Canal+ Extra 3 PL - Canal+ Extra 4 PL - Canal+ Extra 5 PL - Canal+ Extra 6 PL - Canal+ France - CANAL+ Kuchnia - CANAL+ Premium PL - CANAL+ Seriale PL - Canal+ Series FR - CANAL+ Sport 2 - CANAL+ Sport 3 - CANAL+ Sport 4 - CANAL+ Sport 5 - CANAL+ Sport PL - Cartoon Network PL - Cartoonito UK - CBeebies PL - Film Cafe PL - CBS Reality PL - CGTN Documentary - Ciné+ Club - Ciné+ Emotion - Ciné+ Famiz - Cinemax 2 PL - Cinemax PL - CNBC Europe - CNews - CNN Europe - Comedy Central DE - Comedy Central PL - COSMO - Crime+Investigation PL - ČT 1 - ČT 2 - ČT 24 - ČT :D - ČT Sport - Da Vinci Learning PL - Deluxe Music - Deutsche Welle English - Disco Polo Music PL - Discovery Animal Planet - Discovery Channel PL - Discovery Historia - Discovery Life PL - Discovery Science PL - Disney Channel PL - Disney Junior Polska - Disney XD PL - Novelas Plus 1 - Dizi Smart Max - Dizi Smart Premium - Stingray Djazz - DMAX DE - DMAX TR - Dorcel TV - Dorcel XXX - Dream Türk - Sport 1 DE - DTX PL - ducktv Plus - ducktv HD - E-Sport HD - Ekotürk - Eleven Sports 1 PL - Eleven Sports 2 PL - Eleven Sports 3 PL - Eleven Sports 4 PL - European League of Football Channel - E! Entertainment - Epic Drama (Poland) - Eska Rock TV - Eska TV - Eska TV Extra - Еспресо TV - Eurochannel - EuroNews - Euronews FR - Eurosport 1 PL - Eurosport 2 PL - EWTN - EWTN PL - EXTASY TV - Extreme Sports PL - Fashion TV - FashionBox HD - Fast&FunBox HD - Fight Klub HD - FightBox HD - Filmax - FilmBox Action PL - FilmBox Arthouse - FilmBox Extra PL - FilmBox Family PL - FilmBox Premium PL - Fokus TV - Folx TV - Food Network PL - FX Comedy PL - FX PL - NOW - France24 - France 2 - France 3 - France 4 - France 5 - France Info - FunBox UHD - Gametoon HD - Ginx Esports TV - Golf Channel PL - Haber Global - Habitat TV - HBO 2 PL - HBO 3 PL - HBO PL - Das Health TV - HGTV PL - History 2 Polska - History Channel Polska - HR Fernsehen - HSE - HSE24 Extra - Hustler HD - HUSTLER TV - Insight TV - Investigation Discovery PL - Italia 2 - iTVN - iTVN Extra - JimJam PL - K-TV Katholisches Fernsehen - Kabel Eins - Kabel eins Österreich - Kabel eins Doku - Kanal 7 - KANAL 24 TR - Kanal D TR - KiKA - Kino Polska - Kino Polska Muzyka - KinoTV PL - krone.tv - Karadeniz TV - La Chaîne Info - LCP - Leo TV - Love Nature US - LUXE TV - MDR Sachsen-Anhalt - MDR Sachsen - MDR Thüringen - Melodie TV - Metro TV - Mezzo - Mezzo Live HD - MinikaGO TR - Minimini+ - Motorvision Plus International - Motowizja - MovieSmart Classic - MovieSmart Türk - MTV Europe - MTV 00s - Club MTV International - MTV DE - MTV Hits International - MTV Live HD - MTV PL - MTV 90s International - münchen.tv - Music Box Polska - MyZen TV - N24 Doku - NTV DE - National Geographic Wild PL - National Geographic PL - National Geographic People PL - The Nautical Channel - NDR Niedersachsen - News 24 - Nick Junior PL - Nick Music - Nick DE - Nickelodeon PL - Nickelodeon Ukraine Pluto - Nicktoons PL - Niederbayern TV Deggendorf-Straubing - Novela TV - Novelas+ - Nowa TV - Number One Türk - NUTA GOLD - NUTA.TV HD - oe24.TV - One - ORF2 - Paramount Network PL - Parole di Vita - Phoenix - Planete+ PL - Playboy TV - POLO TV - Polonia1 - TVP Polonia - Polsat - Polsat 1 - Polsat 2 - Polsat Cafe - Polsat Comedy Central Extra - Polsat Doku - Polsat Film - Polsat Games - Polsat Music - Polsat News - Polsat News 2 - Polsat News Polityka - Polsat Play - Polsat Rodzina - Polsat Seriale - Polsat Sport 1 - Polsat Sport 2 - Polsat Sport Fight - Polsat Sport 3 - Polsat Sport Premium 1 - Polsat Sport Premium 2 - Polsat Sport Premium 3 PPV - Polsat Sport Premium 4 PPV - Polsat Sport Premium 5 PPV - Polsat Sport Premium 6 PPV - Polsat Viasat Explore - Polsat Viasat History - Polsat Viasat Nature - Power TV PL - Brazzers TV (ex. Private Spice) - Private TV - ProSieben - PRO 7 Österreich - Proart - ProSieben MAXX - Puls 4 - QVC Deutschland - Radio Italia TV - Radiofreccia - RAI World Premium - RBB Fernsehen Brandenburg - RBB Fernsehen Berlin - Reality Kings - Red Carpet TV PL - RedLight HD - Romance TV PL - RT Documentary - RTL Zwei - RTL DE - RTL Nitro - Russia Today - SAT.1 - Sat.1 Österreich - Sat.1 Gold - SciFi - ServusTV - Show TV - SinemaTV 2 - SinemaTV 1001 - SinemaTV 1002 - SinemaTV Aile - SinemaTV Aile 2 - SinemaTV Aksiyon - SinemaTV Aksiyon 2 - SinemaTV Komedi - SinemaTV Komedi 2 - SinemaTV Yerli - SinemaTV Yerli 2 - SinemaTV - Sixx AT - Sky Sport News DE - Sky News - SkyShowtime 1 Nordic - SkyShowtime 2 Nordic - sonnenklar.TV - Sportklub PL - SR Fernsehen - SRF Info - Star TV TR - Stars TV PL - Stingray CMusic - Stingray Classica - Stingray iConcerts - Stopklatka - Sundance TV PL - Super Polsat - Super RTL - SWR Baden-Württemberg - tagesschau24 - TAY TV - TBN Polska HD - TeenNick - Tele 5 PL - TELE 1 - Tele 5 DE - teleTOON+ - teve2 - TGRT Belgesel - Tivibu Spor - TLC PL - TOGGO plus - Top Kids PL - Trace Urban - Travel Channel PL - Travelxp - TRT 4K - TRT Arapça - TRT Diyanet - TRT EBA TV İlkokul - TRT EBA TV Lise - TRT EBA TV Ortaokul - TTV - TV5 - TV5Monde Europe - TV6 PL - TV100 TR - teve2 TR - TV 4 - TV 8 TR - TV 8.5 - TV Net - TV Puls 2 - TV Puls PL - TV Regionalna.pl - TV Republika - TV Silesia - Toya TV - TV Trwam - TVC PL - TVE Internacional - TVN - TVN24 - TVN24 BiS - TVN 7 - TVN Fabuła - TVN Style - TVN Turbo - TVP3 Białystok - TVP3 Bydgoszcz - TVP3 Gdańsk - TVP3 Katowice - TVP3 Kielce - TVP3 Kraków - TVP3 Łódź - TVP3 Lublin - TVP3 Olsztyn - TVP3 Opole - TVP3 Poznań - TVP3 Rzeszów - TVP3 Szczecin - TVP3 Warszawa - TVP3 Wrocław - TVP 1 - TVP 2 - TVP 3 - TVP ABC - TVP ABC 2 - TVP Dokument - TVP HD - TVP Historia - TVP Historia 2 - TVP Info - TVP Kobieta - TVP Kultura - TVP Kultura 2 - TVP Nauka - TVP Regionalna - TVP Rozrywka - TVP Seriale - TVP Sport - TVP Wilno - TVP World - TVR PL - TVS - TVT PL - Uçankuş TV - VG TV - MTV 80s - Viasat Explore CEE - Viasat True Crime PL - ViDoc TV - Vivid Red - Vivid TV - VOX - VOX Music TV PL - Warner TV FR - Warner TV IT - Warner TV PL - Water Planet - WDR Fernsehen Köln - Welt - Welt der Wunder - World Fashion Channel - WP TV - wPolsce PL - Wydarzenia 24 - Xtreme TV - XXL - Yaban TV - ZDFinfo - ZDFneo - Zoom TV PL - 2X2 - 3SAT - 4Fun Dance - 4Fun Kids - 4FunTV - Telewizja 13 - 13 Ulica - 24 Kitchen - 24Kitchen PT - A2TV TR - a Haber - a News - A Para - Active Family - Adult Channel - Adult Channel 2 - Adventure HD - Al Jazeera - Ale Kino+ - ALFA TVP - AMC Break PT - AMC Crime PT - AMC PL - AMC PT - Andalucía TV - ARD-alpha - ARTE FR - ARTV - ATV1 - ATV2 - AXN Movies PT - AXN PL - AXN PT - AXN Spin PL - AXN White PL - AXN White PT - BabyTV ES - BabyTV - BBC News Channel - BBC World News - BBN Türk - Benfica TV - BFM TV - Biggs - Bloomberg TV - Bloomberg HT - Canal 11 PT - Canal 24H - Canal Hollywood PT - Canal J - Canal Panda PT - Canal+ Domo - CANAL+ Kuchnia - Canal Sur - Cartoon Network PT - Cartoonito PT - Casa e Cozinha - Caza y Pesca ES - Film Cafe PL - CBS Reality - CCTV 4 Europe - CGTN - Cinemundo - CMTV - CNBC Europe - CNN Europe - CNN PT - Comedy Central DE - Comedy Central PL - Crime+Investigation PL - Deutsche Welle English - Disco Polo Music PL - Discovery Animal Planet - Discovery Channel PT - Discovery Historia - Discovery Science - Disney Channel PT - Disney Junior PT - Novelas Plus 1 - Dizi Smart Max - Dizi Smart Premium - Stingray Djazz - DMAX TR - Dorcel TV - Dorcel XXX - Dream Türk - Sport 1 DE - Ekotürk - Eleven Sports 1 PT - Eleven Sports 2 PT - Eleven Sports 3 PT - Eleven Sports 4 PT - Eleven Sports 5 PT - Eleven Sports 6 PT - European League of Football Channel - E! Entertainment - Erox HD - Eroxxx HD - Eska Rock TV - Eska TV - Eska TV Extra - Eurochannel - EuroNews - Eurosport 1 PT - Eurosport 2 PT - EWTN PL - Fashion TV - FashionBox HD - Fast&FunBox HD - Fight Klub HD - FightBox HD - Filmax - FilmBox Arthouse - FilmBox Family PL - Fokus TV - Folx TV - Food Network - Food Network UK - FX Comedy PL - STAR Comedy PT - STAR Crime PT - STAR Life PT - STAR Movies PT - FOX NEWS - FX PL - STAR PT - France24 - France 24 French - Fuel TV - FunBox UHD - Gametoon HD - Ginx Esports TV - Globo Portugal - Haber Global - Habitat TV - Canal HISTÓRIA PT - Hustler HD - HUSTLER TV - Insight TV - Investigation Discovery - iTVN - iTVN Extra - JimJam - KANAL 24 TR - KiKA - Kino Polska - Kino Polska Muzyka - krone.tv - Karadeniz TV - LUXE TV - M6 - MCM Top - Melodie TV - Metro TV - Mezzo - Mezzo Live HD - MinikaGO TR - Minimini+ - Motorvision Plus International - Motorvision Plus - Motowizja - MovieSmart Classic - MovieSmart Türk - MTV 00s - MTV ES - MTV Live HD - MTV PT - Museum TV - MyZen TV - Nat Geo Wild ES - National Geographic Portugal - The Nautical Channel - Nick Jr. PT - Nick Junior Commercial Light - Nickelodeon PT - Nickelodeon Ukraine Pluto - Novelas+ - Nowa TV - Number One Türk - NUTA GOLD - NUTA.TV HD - Odisseia - oe24.TV - ORF2 - Panda Kids - Phoenix - Planete+ PL - Playboy TV - POLO TV - Polonia1 - Polsat 1 - Polsat 2 - Polsat Cafe - Polsat Comedy Central Extra - Polsat Doku - Polsat Film - Polsat Games - Polsat Music - Polsat News - Polsat News 2 - Polsat Play - Polsat Rodzina - Polsat Seriale - Polsat Viasat Explore - Power TV PL - Private TV - ProSieben - PRO 7 Österreich - Puls 4 - RAI UNO - RAI DUE - RAI World Premium - Rai Yoyo - Red Carpet TV PL - RedLight HD - RT Documentary - RTL DE - RTP1 - RTP2 - RTP3 - RTP Açores - RTP Africa - RTP Madeira - RTP Memória - RTP Internacional - Russia Today - Russia Today ES - SAT.1 - Sat.1 Österreich - SIC - SIC Caras - SIC Internacional - SIC K - SIC Mulher - SIC Noticias - SIC Radical - SinemaTV 2 - SinemaTV 1001 - SinemaTV 1002 - SinemaTV Aile - SinemaTV Aile 2 - SinemaTV Aksiyon - SinemaTV Aksiyon 2 - SinemaTV Komedi - SinemaTV Komedi 2 - SinemaTV Yerli - SinemaTV Yerli 2 - SinemaTV - Sixx AT - Sky News - SkyShowtime 1 Nordic - Sport TV+ - Sport TV1.pt - Sport TV2 - Sport TV3 - Sport TV4 - Sport TV5 - Sport TV6 - Sport TV7 - STAR Mundo PT - Star TV TR - Stars TV PL - Stingray CMusic - Stingray iConcerts - Stopklatka - Sundance TV PL - Super Polsat - Super RTL - Syfy PT - TAY TV - TBN Polska HD - TELE 1 - TeleDeporte - teve2 - TGRT Belgesel - Tivibu Spor - TLC PAN - TPA7 - Trace Urban - Travel Channel - TRT 4K - TRT EBA TV İlkokul - TRT EBA TV Lise - TRT EBA TV Ortaokul - TTV - TV5 - TV5 Monde - TV5Monde Europe - TV100 TR - TV 4 - TV 8.5 - TV Cine Action - TV Cine Edition - TV Cine Emotion - TV Cine Top - TV Net - TV Puls PL - TV Silesia - TV Trwam - TVE Internacional - Televisión de Galicia - TVG2 - TV Galicia - TVI - V Mais - TVI Reality - TVN - TVN24 - TVN 7 - TVN Style - TVN Turbo - TVP 2 - TVP 3 - TVP ABC - TVP HD - TVP Historia - TVP Info - TVP Kobieta - TVP Kultura - TVP Regionalna - TVP Rozrywka - TVP Seriale - TVR PL - TVS - TVT PL - Uçankuş TV - Vivid Red - Vivid TV - VOX - Wydarzenia 24 - Xtreme TV - XXL - Yaban TV - ZDF - ZDFneo - 2X2 - 4Fun Dance - 4Fun Kids - 4FunTV - Telewizja 13 - 13 Ulica - A2TV TR - a Haber - a News - A Para - Active Family - Adult Channel - Adventure HD - AgroTV RO - Al Jazeera - Al Jazeera Arabic English - Ale Kino+ - ALFA TVP - AMC PL - AMC RO - Antena1 RO - Antena 3 CNN - Antena Stars RO - ARTE FR - ATV1 - ATV2 - ATV Spirit HU - ATV TR - Auto Motor und Sport - AXN Black PL - AXN Black RO - AXN PL - AXN RO - AXN Spin PL - AXN Spin RO - AXN White PL - AXN White RO - B1 TV RO - BabyTV - Balkanika TV - BBC Earth - BBC First - BBC World News - BBN Türk - Bloomberg TV - Bloomberg HT - Body in Balance - Bollywood Film RO - Cartoonito CEE - Bucuresti TV RO - Canal 33 RO - Canal+ Domo - CANAL+ Kuchnia - Cartoon Network RO - Film Cafe PL - CBS Reality - CBS Reality PL - CCTV 4 Europe - CGTN - CGTN Documentary - Cinemaraton RO - Cinemax 2 RO - Cinemax RO - Cinethronix RO - CNBC Europe - CNN Europe - Comedy Central Extra BG - Comedy Central HU - Comedy Central PL - Comedy Central RO - Credo TV - Crime & Investigation Channel - Crime+Investigation PL - Da Vinci Learning - Deutsche Welle English - Digi 24 - Digi Animal World RO - Digi Life RO - TV Digi Sport 2 - TV Digi Sport 3 - TV Digi Sport 4 - Digi World RO - Disco Polo Music PL - Discovery Animal Planet - Discovery Channel - Discovery Historia - Discovery Science - TLC - Disney Channel RO - Disney Junior - Diva Universal RO - Novelas Plus 1 - Dizi Smart Max - Dizi Smart Premium - Stingray Djazz - DMAX TR - Dorcel TV - Dorcel XXX - Dream Türk - ducktv HD - Duna TV - Duna World - Ekotürk - European League of Football Channel - E! Entertainment - Epic Drama (CEE) - Erox HD - Eroxxx HD - Eska Rock TV - Eska TV - Eska TV Extra - Etno TV RO - EuroNews - Eurosport - Eurosport 1 INT - Eurosport 2 INT - EWTN PL - Extreme Sports Channel - Fashion TV - Fast&FunBox HD - Favorit TV RO - TV2 Klub - Fight Klub HD - FightBox HD - Film Cafe RO - Film Now RO - Film+ HU - Filmax - FilmBox Extra RO - FilmBox Family PL - FilmBox Family RO - FilmBox Plus RO - FilmBox Premium RO - FilmBox RO - FilmBox Stars BG - Filmbox Stars HU - The Fishing and Hunting RO - Focus TV - Fokus TV - Folx TV - Food Network - FX Comedy PL - FX PL - NOW - Galaxy4 - H!T Music Channel RO - Haber Global - Habitat TV - Happy Channel RO - HBO 2 RO - HBO 3 RO - HBO RO - Home & Garden Television - Hír TV - History Channel RO - HUSTLER TV - IDA RO - Inedit TV RO - Investigation Discovery - Izaura TV - JimJam - Kanal 7 - KANAL 24 TR - Kanal D RO - Kanal D TR - Kino Polska - Kino Polska Muzyka - Kiss TV RO - krone.tv - Karadeniz TV - Love Nature US - LUXE TV - Magyar Televízió 1 - M2 Petőfi - M4 sport - Magic TV BG - ATV HU - Magyar Sláger TV - Mediaset Italia - Medika TV RO - Melodie TV - Metro TV - Mezzo - Mezzo Live HD - MinikaGO TR - Minimax HU - Minimax RO - Minimini+ - Moldova TV - Mooz Dance - Mooz HD RO - Mooz Hits RO - Mooz Ro RO - Motorvision Plus International - Motorvision Plus - Motowizja - MovieSmart Classic - MovieSmart Türk - MTV 00s - Club MTV International - MTV Europe HU - MTV Hits International - MTV Live HD - MTV Music UK - MTV 90s International - Museum HD RO - Music Channel 1 RO - Muzsika TV - MyZen TV - National 24 Plus RO - Nasul TV RO - National Geographic People RO - Nat Geo Wild RO - National Geographic RO - National TV RO - The Nautical Channel - Nick Junior PL - Nickelodeon Commercial - Nicktoons PL - Novelas+ - Nowa TV - Number One Türk - NUTA GOLD - NUTA.TV HD - oe24.TV - ORF2 - TV Paprika RO - Planete+ PL - Playboy TV - POLO TV - Polonia1 - Polsat 2 - Polsat Cafe - Polsat Comedy Central Extra - Polsat Doku - Polsat Film - Polsat Games - Polsat Music - Polsat News - Polsat News 2 - Polsat Play - Polsat Rodzina - Polsat Seriale - Polsat Sport 2 - Polsat Viasat Explore - Polsat Viasat History - Polsat Viasat Nature - Power TV PL - Prima Sport 1 RO - Prima Sport 2 RO - Prima Sport 3 RO - Prima Sport 4 RO - Prima Sport 5 RO - Prima TV RO - Prime - Brazzers TV (ex. Private Spice) - Private TV - Mozi plusz TV - Acasă - ProSieben - PRO 7 Österreich - Pro Cinema RO - Acasă Gold - PRO TV Internațional - PRO ARENA RO - ProTV - Puls 4 - RAI UNO - RAI TRE - RAI World Premium - Rai Yoyo - Realitatea Plus RO - Reality Kings - Red Carpet TV PL - Romance TV PL - România TV - RTL DE - RTL Gold - RTL Ketto - RTL HU - RTLup - SAT.1 - Sat.1 Österreich - Show TV - SinemaTV 2 - SinemaTV 1001 - SinemaTV 1002 - SinemaTV Aile - SinemaTV Aile 2 - SinemaTV Aksiyon - SinemaTV Aksiyon 2 - SinemaTV Komedi - SinemaTV Komedi 2 - SinemaTV Yerli - SinemaTV Yerli 2 - SinemaTV - Sixx AT - Sky News - SkyShowtime 1 Nordic - Sorozat+ - Speranta TV - Spíler1 TV - Star TV TR - Stars TV PL - Stingray CMusic - Stingray Classica - Stingray iConcerts - Stopklatka - Story4 - Sundance TV PL - Super Polsat - Super RTL - Super TV2 - Taraf Tv RO - TAY TV - TBN Polska HD - DIZI - TeenNick - TELE 1 - TV1000 Russian Kino RO - teve2 - TGRT Belgesel - Tivibu Spor - Trace Urban - Travel Channel - Travel Mix RO - Travelxp - Trinitas HD RO - TRT 4K - TRT EBA TV İlkokul - TRT EBA TV Lise - TRT EBA TV Ortaokul - TRT Turk - TRT World - TTV - TV2 Comedy - TV2 HU - TV2 Kids - TV2 Séf - TV4 HU - TV5 - TV5Monde Europe - TV100 TR - Viasat Kino Balkan - TV1000 Global Kino - teve2 TR - TV 4 - TV 8 TR - TV 8.5 - TV Digi Sport 1 - TV Net - TV Paprika HU - TV Puls PL - TV Silesia - TV SudEst - TV Trwam - TVE Internacional - TVN24 - TVN24 BiS - TVN 7 - TVN Style - TVN Turbo - TVP 2 - TVP 3 - TVP ABC - TVP HD - TVP Historia - TVP Info - TVP Kobieta - TVP Kultura - TVP Regionalna - TVP Rozrywka - TVP Seriale - Televiziunea Româna 1 - Televiziunea Româna 2 - TVR3 RO - TVR Cluj RO - TVR Craiova RO - TVR Iasi RO - TVR PL - TVR Tg-Mures RO - TVR Timisoara RO - Televiziunea Româna International - TVS - TVT PL - UTV RO - Uçankuş TV - MTV 80s - Viasat Explore CEE - Viasat History - Viasat Nature CEE - VTV RO - Warner TV IT - Warner TV RO - World Fashion Channel - wPolsce PL - Wydarzenia 24 - Xtreme TV - XXL - Yaban TV - Zenebutik - Zu TV + A Spor + A Spor + DocuBox HD + DocuBox HD + Fuel TV + MUSE + News 24 + Ora News + Report TV + RTSH 1 + RTSH 2 + RTSH 3 + RTSH 24 + RTSH Plus + RTSH Shkollë + RTSH Shqip + RTSH Sport + Tring Smile + Stinet + STV Folk + Televizija Crne Gore 1 + Televizija Crne Gore 1 + Televizija Crne Gore 2 + Televizija Crne Gore 2 + Televizija Crne Gore 3 + Televizija Crne Gore 3 + Televizija Crne Gore MNE + Televizija Crne Gore MNE + Tip TV + Top Channel + Top News + Tring Sport News + Klan TV HD + Vizion Plus 2X2 3SAT 4Fun Dance @@ -7243,18 +8053,8 @@ AMC PL ANIXE plus Das Erste - Arena Esport - Arena Fight - Arena Sport 1 Premium - Arena Sport 1x2 - Arena Sport 2 Premium - Arena Sport 3 Premium Arena Sport 4 Premium - Arena Sport 5 RS Arena Sport 5 Premium - Arena Sport 6 RS - Arena Sport 7 RS - Arena Sport 8 RS Arena Sport 9 RS Arena Sport 10 RS Arena Sport Adrenalin @@ -7278,7 +8078,6 @@ BBC News Channel BBC World News BBN Türk - TV Belle Amie Bit TV BK TV BlicTV @@ -7293,8 +8092,6 @@ Bravo Music CANAL+ Kuchnia Cartoon Network - Film Cafe PL - CBS Reality CCTV 4 Europe CGTN CGTN Documentary @@ -7318,7 +8115,6 @@ CNBC Europe CNN Europe Nicktoons - Comedy Central HU Comedy Central PL Comedy Central UK CoolTV @@ -7334,7 +8130,6 @@ Discovery Channel HU Discovery Channel Discovery Historia - Discovery Science TLC Disney Channel Disney Channel DE @@ -7413,7 +8208,6 @@ France 24 French Radio Televizija Federacije BIH Gametoon HD - SK Golf Golica TV Grand Televizija Haber Global @@ -7440,7 +8234,7 @@ HRT 3 HRT 4 HUSTLER TV - Hype TV + Hype TV RS ICT Business IDJ World Info24 Albania @@ -7457,7 +8251,6 @@ Kabel eins Doku Kanal 9 TV KANAL 24 TR - Kazbuka KiKA Kino Polska Kino Polska Muzyka @@ -7483,7 +8276,6 @@ MinikaGO TR Minimax Minimax HU - Minimini+ Moj Happy Život Moja Happy Muzika Moja Happy Zemlja @@ -7492,11 +8284,6 @@ MovieSmart Classic MovieSmart Türk MTV Europe - MTV 00s - Club MTV International - MTV Hits International - MTV Live HD - MTV 90s International Muzsika TV N1 HR N1 RS @@ -7511,17 +8298,14 @@ Nat Geo Wild HD Nick Junior Nick Junior PL - Nick Music Nickelodeon Commercial Nicktoons PL NOVA TV Nova Max Nova S Nova Series - Nova Sport Srbija Novelas+ RTV Novi Pazar - Novosadska TV Now Rock Nowa TV Number One Türk @@ -7593,7 +8377,6 @@ Polonia1 Polsat 2 Polsat Cafe - Polsat Comedy Central Extra Polsat Doku Polsat Film Polsat Music @@ -7617,7 +8400,6 @@ Prva MAX Prva Plus Prva Srpska TV - Prva TV Crna Gora Prva World Puls 4 QVC Deutschland @@ -7628,7 +8410,6 @@ RAI News 24 RAI Storia RAI World Premium - Rai Yoyo Reality Kings Red Carpet TV PL RedLight HD @@ -7693,14 +8474,12 @@ Spektrum Home HU Sremska TV Superstar 2 - Star TV TR Stars TV PL Stingray Classica Stingray iConcerts Stopklatka Studio B Sundance TV PL - Super Polsat Super RTL Super TV2 SuperSat TV @@ -7712,7 +8491,6 @@ TAY TV TBN Polska HD DIZI - TELE 1 Tele 5 DE Televizija 5 Televizija Alfa @@ -7744,12 +8522,7 @@ TV 4 TV 8 TR TV 8.5 - Arena Sport 1 RS - Arena Sport 2 RS - Arena Sport 3 RS - Arena Sport 4 RS TV Duga + SAT - TV Galaksija Телевизија Храм TV K23 TV Markíza SK @@ -7786,8 +8559,6 @@ Uçankuş TV UNA TV DIVA (ex. Universal) - Vavoom - MTV 80s Viasat Explore CEE Viasat History Viasat Nature CEE @@ -7805,495 +8576,22 @@ ZDF ZDFinfo ZDFneo - 2X2 - 3SAT - 4Fun Dance - 4Fun Kids - 4FunTV - Telewizja 13 - 13 Ulica - 20 Mediaset - 24 Kitchen - 24Kitchen PT - A2TV TR - a Haber - a News - A Para - Active Family - Adventure HD - Agro TV - Al Jazeera - Ale Kino+ - ALFA TV - ALFA TVP - Алсат М - AMC PL - AMC SI - Anixe HD Serie - Das Erste - Arena Esport - Arena Fight - Arena Sport 1 Premium SI - Arena Sport 1 SI - Arena Sport 2 SI - Arena Sport 3 SI - Arena Sport 4 SI - ARTE FR - ARTE DE - ASTRA TV - Alternativna televizija Banja Luka - ATV1 - ATV2 - ATV TR - AXN - AXN Black PL - AXN PL - AXN Spin - AXN Spin PL - AXN White PL - B92 - BabyTV - Balkan trip - Balkanika TV - BBC Earth - BBC First - BBC World News - BBN Türk - Radio Televizija BIH - BK TV - Bloomberg TV - Bloomberg Adria - Bloomberg HT - Radio Televizija BN - BN music - BN 2 HD - БНТ 2 - Cartoonito CEE - Canal+ Domo - CANAL+ Kuchnia - Canale 5 - Cartoon Network - Cartoon Network DE - Film Cafe PL - CBS Reality - CCTV 4 Europe - CGTN - Cinemax - Cinemax 2 - CineStar Action&Thriller - CineStar Premiere 1 - CineStar Premiere 2 - CineStar TV1 - CineStar TV2 - CineStar TV Comedy Family - CineStar TV Fantasy - English Club TV - Croatian Music Channel - CNBC Europe - CNN Europe - Comedy Central DE - Nicktoons - Comedy Central PL - Crime & Investigation Channel - Crime+Investigation PL - Da Vinci Learning - Disco Polo Music PL - Discovery Animal Planet - Discovery Channel - Discovery Historia - Discovery Science - TLC - Disney Channel - Disney Junior - Novelas Plus 1 - Dizi Smart Max - Dizi Smart Premium - Stingray Djazz - DMAX TR - DM SAT - Dorcel TV - Dorcel XXX - Dream Türk - Sport 1 DE - ducktv SD - ducktv HD - Duna TV - Duna World - Ekotürk - European League of Football Channel - E! Entertainment - Epic Drama (CEE) - Erox HD - Eroxxx HD - Eska Rock TV - Eska TV - Eska TV Extra - ETV HD - Eurochannel - EuroNews - Eurosport - Eurosport 2 - EWTN - EWTN PL - Exodus TV - Extreme Sports Channel - Fashion TV - FashionBox HD - Fast&FunBox HD - Fight Klub HD - FightBox HD - SK Fight - Filmax - FilmBox Arthouse - FilmBox Extra RS - FilmBox Family PL - FilmBox Stars RS - The Fishing and Hunting - Focus TV - Fokus TV - Folx TV - FX Comedy PL - STAR Crime SI - STAR Life SI - STAR Movies SI - FX PL - STAR SI - NOW - France24 - France 2 - France 24 French - Radio Televizija Federacije BIH - GEA TV - Ginx Esports TV - SK Golf - Golica TV - Gorenjska televizija - Grand Televizija - Haber Global - Habitat TV - HappyTV - Hayat Folk Box - Hayat Music Box - Hayat 2 - Hayat TV - Hayatovci - HBO - HBO3 - HBO2 - HEMA TV - Home & Garden Television - The History Channel - History Channel 2 - HIT TV - HRT 1 - HRT 2 - HRT 3 - HRT 4 - HUSTLER TV - IDJ World - Investigation Discovery - Italia 1 - Otvorena televizija - JimJam - Jugoton TV - K::CN 2 Music - Kabel Eins - Канал 5 - KANAL 24 TR - Kanal A, SLO - Kanal D - Kanal Rijeka - KiKA - Kino Polska - Kino Polska Muzyka - Klape i Tambure TV - KLASIK - TV Koper - K::CN 1 Kopernikus - krone.tv - Karadeniz TV - KTV Ormož - Living HD - Lov i ribolov - LUXE TV - M2 Petőfi - TV Maribor - Mediaset Italia - Melodie TV - Metro TV - Mezzo - Mezzo Live HD - MinikaGO TR - Minimax - Minimax SI - Minimini+ - Motorvision Plus - Motowizja - MovieSmart Classic - MovieSmart Türk - МРТ 1 - МРТ 2 - МРТ 3 - MTV Europe - MTV 00s - Club MTV International - MTV DE - MTV Hits International - MTV Live HD - MTV 90s International - MyZen TV - N1 BA - N1 HR - N1 RS - NTV DE - Nat Geo Wild SI - National Geographic - National Geographic Channel HD - Nat Geo Wild - The Nautical Channel - NBA TV - MrežaZG - Net TV - Nat Geo Wild HD - Nick Junior - Nickelodeon - Nickelodeon Commercial - NOVA TV - Nova 24 TV - Novelas+ - Nowa TV - Number One Türk - NTV IC Kakanj - NUTA GOLD - NUTA.TV HD - O Kanal - OBN - oe24.TV - ORF1 - ORF2 - ORF3 - OTV Valentino - Pickbox TV SI - Pikaboo 2 - RTV PINK - RED tv - TV PINK EXTRA - PINK Family - Pink Fashion - PINK Film - Pink Folk 1 - Pink Folk 2 - Pink Kids - Pink Movies - Pink Music 1 - TV PINK PLUS - Pink Reality - Pink Serije - Pink Show - PINK World - PINK Zabava - Planet 2 - Planete+ PL - Planet TV SI - Playboy TV - POLO TV - Polonia1 - Polsat 2 - Polsat Cafe - Polsat Comedy Central Extra - Polsat Doku - Polsat Film - Polsat Games - Polsat Music - Polsat News - Polsat News 2 - Polsat Play - Polsat Rodzina - Polsat Seriale - Polsat Viasat Explore - Polsat Viasat History - Polsat Viasat Nature - BRIO - POP KINO - OTO - POP TV - Power TV PL - Brazzers TV (ex. Private Spice) - Private TV - ProSieben - PRO 7 Österreich - Prva Srpska TV - Prva World - Ptujska televizija - Puls 4 - RAI UNO - RAI DUE - RAI TRE - RAI 3 Bis - RAI 4 - RAI 5 - RAI Education - RAI Gulp - RAI News 24 - RAI Sport 1 - RAI Storia - RAI World Premium - Rai Yoyo - Reality Kings - Red Carpet TV PL - RedLight HD - Rete 4 - Россиᴙ 24 - RTK 1 - RTL - RTL 2 - RTL Zwei - RTL DE - RTL Kockica - RTL Living - RTRS - RTS 1 - RTS 2 - RTS SVET - RTV International - RTV Unsko-sanskog kantona - RTV Tuzlanskog Kantona - Russia Today - SAT.1 - Sat.1 Österreich - SciFi - ServusTV - Sexation TV - Show TV - SinemaTV 2 - SinemaTV 1001 - SinemaTV 1002 - SinemaTV Aile - SinemaTV Aile 2 - SinemaTV Aksiyon - SinemaTV Aksiyon 2 - SinemaTV Komedi - SinemaTV Komedi 2 - SinemaTV Yerli - SinemaTV Yerli 2 - SinemaTV - Televizija skupnih internih programov - Сител - Sixx - Sixx AT - Sky News - RTV Slovenija 1 - RTV Slovenija 2 - RTV Slovenija 3 - SOS Plus - Sport Klub 4 - Sport Klub 5 - Sport Klub 6 - Sport Klub 2 Slovenija - Sport Klub 1 Slovenija - Sport TV1.pt - Sport TV2 - Šport TV 1 - Šport TV 2 - Sportitalia - Sport Klub 3 - Star TV TR - Stars TV PL - Stingray iConcerts - Stopklatka - ŠTV3 - Sundance TV PL - Super Polsat - Super RTL - K::CN 3 Svet Plus - Tanjug Tačno - TAY TV - TBN Polska HD - TELE 1 - Telequattro - Televizija Alfa - Televizija AS - Telma - teve2 - TGRT Belgesel - Tivibu Spor - Top TV - Toxic TV - Trace Urban - Travel Channel - Travelxp - TRT 4K - TRT EBA TV İlkokul - TRT EBA TV Lise - TRT EBA TV Ortaokul - TRT World - TTV - TV3 - TV 3 Medias - TV5 - TV5 Monde - TV100 TR - Viasat Kino Balkan - teve2 TR - TV 4 - TV 8.5 - TV Arena - TV ATM - TV Celje - TV Duga + SAT - TV Galeja - TV Idea - TV Jadran - TV Net - TV Puls PL - TV Sarajevo - TV Silesia - TV Trwam - TV Veseljak - TV Vijesti - Televizija Crne Gore 1 - Televizija Crne Gore 2 - Televizija Crne Gore MNE - TVN24 - TVN 7 - TVN Style - TVN Turbo - TVP 2 - TVP 3 - TVP ABC - TVP HD - TVP Historia - TVP Info - TVP Kobieta - TVP Kultura - TVP Regionalna - TVP Rozrywka - TVP Seriale - TVR PL - TVS - TVT PL - Uçankuş TV - DIVA (ex. Universal) - Varaždinska Televizija - Vaš kanal - Vavoom - MTV 80s - Viasat Explore CEE - Viasat History - Viasat Nature CEE - Viasat True Crime CEE - Vikom - VOX - VTV Studio - Welt - wPolsce PL - Wydarzenia 24 - Xtreme TV - XXL - Yaban TV - Zagrebačka Televizija - ZDF - Zdrava televizija + A Spor + Dajto + DocuBox HD + Fuel TV + Hype 2 RS + JOJ Plus + JOJ TV + Kölyökklub + Markíza Doma + Moziklub + RTL Otthon + Sorozatklub + Televizija Crne Gore 2 + Televizija Crne Gore 3 + TOK Televizija + Еспресо TV 2X2 4Fun Dance 4Fun Kids @@ -8355,7 +8653,6 @@ CANAL+ Kuchnia Cartoon Network TR Cbeebies - Film Cafe PL CGTN CGTN Documentary CNBC Europe @@ -8371,7 +8668,6 @@ Discovery Animal Planet Discovery Channel Discovery Historia - Discovery Science TLC Disney Junior Novelas Plus 1 @@ -8416,7 +8712,7 @@ Kanal 7 KANAL 24 TR Kanal B - Kanal D + Kanal D Drama TR Kanal D TR Kino Polska Kino Polska Muzyka @@ -8432,14 +8728,10 @@ Mezzo Live HD Minika Çocuk MinikaGO TR - Minimini+ Motorvision Plus International Motowizja MovieSmart Classic MovieSmart Türk - MTV 00s - MTV Hits International - MTV Live HD National Geographic Wild TR National Geographic Turkey NBA TV @@ -8457,7 +8749,6 @@ Polonia1 Polsat 2 Polsat Cafe - Polsat Comedy Central Extra Polsat Doku Polsat Film Polsat Music @@ -8473,7 +8764,6 @@ Power Türk TV Private TV PRO 7 Österreich - Rai Yoyo Red Carpet TV PL RedLight HD S Sport @@ -8501,7 +8791,6 @@ Stars TV PL Stopklatka Sundance TV PL - Super Polsat TAY TV TBN Polska HD TELE 1 @@ -8572,523 +8861,8 @@ Wydarzenia 24 Xtreme TV Yaban TV - 2X2 - 3SAT - Telewizja 13 - 13 Ulica - 20 Mediaset - 24 Kitchen - 24Kitchen PT - Televizija 24 - 360 TuneBox - A2TV TR - a Haber - a News - A Para - Active Family - Adult Channel - Adventure HD - Al Jazeera - Ale Kino+ - ALFA TVP - AMC - AMC PL - Das Erste - Arena Esport - Arena Fight - Arena Sport 4 HR - Arena Sport 5 HR - Arena Sport 6 HR - Arena Sport 7 HR - Arena Sport 8 HR - Arena Sport 9 HR - Arena Sport 10 HR - ARTE DE - Alternativna televizija Banja Luka - ATV1 - ATV2 - Aurora TV - AXN - AXN Black PL - AXN PL - AXN Spin - AXN Spin PL - AXN White PL - B1 TV - B92 - BabyTV - Balkan trip - Balkan TV - Balkanika TV - BBC Earth - BBC First - BBC World News - BBN Türk - Radio Televizija BIH - Bloomberg TV - Bloomberg Adria - Bloomberg HT - Blue Hustler - Radio Televizija BN - BN music - BN 2 HD - Body in Balance - Cartoonito CEE - Canal+ Domo - CANAL+ Kuchnia - Cartoon Network - Cartoonito UK - Film Cafe PL - CBS Reality - CCTV 4 Europe - CGTN - CGTN Documentary - Cinemax - Cinemax 2 - CineStar Action&Thriller - CineStar Premiere 1 - CineStar Premiere 2 - CineStar TV1 - CineStar TV2 - CineStar TV Comedy Family - CineStar TV Fantasy - English Club TV - Croatian Music Channel - CNBC Europe - CNN Europe - Comedy Central DE - Nicktoons - Comedy Central PL - Crime & Investigation Channel - Crime+Investigation PL - Da Vinci Learning - Deluxe Music - Deutsche Welle English - Diadora TV - Disco Polo Music PL - Discovery Animal Planet - Discovery Channel - Discovery Historia - TLC - Disney Channel - Novelas Plus 1 - Dizi Smart Max - Dizi Smart Premium - Stingray Djazz - DMAX DE - DMAX TR - DMC televizija - DM SAT - DOKU TV - Doma TV - Dorcel TV - Dorcel XXX - DOX TV - Dream Türk - Sport 1 DE - ducktv SD - ducktv HD - Ekotürk - European League of Football Channel - E! Entertainment - Epic Drama (CEE) - Erox HD - Eroxxx HD - Eska Rock TV - Eska TV Extra - Eurochannel - EuroNews - Eurosport - Eurosport 2 - Eurosport 2 DE - Eurosport.com - Eurosport 1 DE - EWTN PL - ExtraTV - Extreme Sports Channel - FACE TV - Fashion TV - FashionBox HD - Fast&FunBox HD - Fight Klub HD - FightBox HD - SK Fight - Film4 - Filmax - FilmBox Arthouse - FilmBox Extra RS - FilmBox Family PL - FilmBox Stars RS - FilmBox Premium RS - Fireplace - Fokus TV - Folx TV - Food Network - STAR Channel - FX Comedy PL - STAR Crime - STAR Life - STAR Movies - FOX NEWS - FX PL - NOW - France24 - France 24 French - Radio Televizija Federacije BIH - Fuel TV - FullTV - FunBox UHD - GameHub HR - Gametoon HD - Ginx Esports TV - SK Golf - Golica TV - Good Times - GP1 - Grand Televizija - Haber Global - Habitat TV - Hajduk TV - HappyTV - Hayat Folk Box - Hayat TV - Hayatovci - HBO - HBO3 - HBO2 - HEMA TV - Home & Garden Television - The History Channel - History Channel 2 - HIT TV - HSE - HRT 1 - HRT 2 - HRT 3 - HRT 4 - HRT Int. - HUSTLER TV - ICT Business - Narodna TV - Italia 2 - Otvorena televizija - JimJam - Jugoton TV - K::CN 2 Music - Kabel Eins - Kabel eins Österreich - Kabel eins Doku - KANAL 24 TR - Kanal Rijeka - KBS World HD - KiKA - Kino Polska - Kino Polska Muzyka - KinoTV - KitchenTV - Pop Max - Klape i Tambure TV - KLASIK HR - KLASIK - K::CN 1 Kopernikus - krone.tv - Karadeniz TV - La Cinque - La7 - La7d - Laudato TV - Legend - Libertas TV - Lov i ribolov - LUXE TV - M1 Family - M1 FILM - M1 Gold - Maria Vision - MAXSport 1 - MAXSport 2 - MAXSport 3 - MAXSport 4 - MAXSport 5 - Mediaset Italia - Melodie TV - Metro TV - Mezzo - Mezzo Live HD - MinikaGO TR - Minimini+ - MiniTV - Motowizja - MG Movie Generation - MovieSmart Classic - MovieSmart Türk - MRT SAT - MTV Europe - MTV 00s - Club MTV International - MTV Hits International - MTV Live HD - MTV 90s International - MyZen TV - N1 HR - N24 Doku - NTV DE - National Geographic - National Geographic Channel HD - Nat Geo Wild - The Nautical Channel - NBA TV - MrežaZG - Nat Geo Wild HD - Nick Junior - Nick Junior UK - Nick Music - Nickelodeon - NOVA TV - Nova BH - Nova Plus Cinema - Nova Plus Family - Nova Sport Srbija - Nova World - Novelas+ - Nowa TV - Number One Türk - NUTA GOLD - NUTA.TV HD - O Kanal - OBN - oe24.TV - One - ORF1 - ORF2 - Osječka televizija - OTV Valentino - Phoenix - Pickbox TV - Pikaboo 2 - RTV PINK - RED tv - Vesti - Pink BH - TV PINK EXTRA - Pink Fashion - PINK Film - Pink Folk 1 - Pink Kids - Pink Koncert - Pink M - Pink Music 1 - TV PINK PLUS - PINK World - Planete+ PL - Plava televizija - Playboy TV - Poljoprivredna TV - POLO TV - Polonia1 - Polsat 2 - Polsat Cafe - Polsat Comedy Central Extra - Polsat Doku - Polsat Film - Polsat Games - Polsat Music - Polsat News - Polsat News 2 - Polsat Play - Polsat Rodzina - Polsat Seriale - Polsat Viasat Explore - Polsat Viasat History - Polsat Viasat Nature - Power TV PL - TV Zelina - Brazzers TV (ex. Private Spice) - Private TV - ProSieben - PRO 7 Österreich - ProSieben MAXX - Prva Plus - Prva Srpska TV - QVC Deutschland - RAI UNO - RAI DUE - RAI TRE - RAI 4 - RAI 5 - RAI Education - RAI News 24 - RAI Sport 1 - RAI Storia - Rai Yoyo - Reality Kings - Red Carpet TV PL - RedLight HD - RiC DE - Radiotelevizija Banovina - RTL - RTL 2 - RTL Zwei - RTL Adria - RTL Crime - RTL DE - RTL Kockica - RTL Living - RTL Passion - RTLup - RTRS - RTS 1 - RTS 2 - RTS 3 - RTS SVET - RTV Herceg-Bosne - Russia Today - Saborska TV - Samobor TV - SAT.1 - Sat.1 Österreich - Sat.1 Gold - Slavonskobrodska Televizija - SciFi - ServusTV - Show TV - SinemaTV 2 - SinemaTV 1001 - SinemaTV 1002 - SinemaTV Aile - SinemaTV Aile 2 - SinemaTV Aksiyon - SinemaTV Aksiyon 2 - SinemaTV Komedi - SinemaTV Komedi 2 - SinemaTV Yerli - SinemaTV Yerli 2 - SinemaTV - Sixx AT - Sky News - SkyShowtime 1 Nordic - TV Slavonije i Baranje - RTV Slovenija 1 - RTV Slovenija 2 - RTV Slovenija 3 - sonnenklar.TV - Sony Channel - Great! Movies Action - Great! Movies Classic - Great! Movies +1 - SOS Plus - Sport Klub 4 - Sport Klub 5 - Sport Klub 6 - Sport Klub 1 Hrvatska - Sport Klub 2 Hrvatska - Sport Klub 3 - Sportska Televizija - Star TV TR - Stingray CMusic - Stingray Classica - Stingray iConcerts - Stopklatka - Studio B - Sundance TV PL - Super Polsat - Super RTL - Supertennis HD - K::CN 3 Svet Plus - Tanjug Tačno - TAY TV - TBN Polska HD - DIZI - TELE 1 - Tele 5 DE - Telequattro - Televizija Alfa - teve2 - TGRT Belgesel - TiJi - Tiny Pop TV - Tivibu Spor - TOGGO plus - Toon kids - Toxic Folk - Toxic Rap - Toxic TV - Trace Urban - Travel Channel - TRT 4K - TRT EBA TV İlkokul - TRT EBA TV Lise - TRT EBA TV Ortaokul - TTV - Trend TV - TV5 - TV5 Monde - TV5Monde Europe - TV100 TR - Viasat Kino Balkan - teve2 TR - TV 4 - TV 8 TR - TV 8.5 - Arena Sport 1 HR - Arena Sport 2 HR - Arena Sport 3 HR - Televizija Dalmacija - TV Jadran - TV Net - TV NOVA Pula - TV Puls PL - TV Silesia - TV Trwam - TV Vijesti - Televizija Zapad Zaprešić - Televizija Crne Gore MNE - TVE Internacional - TVN24 - TVN 7 - TVN Style - TVN Turbo - TVP 2 - TVP 3 - TVP ABC - TVP HD - TVP Historia - TVP Info - TVP Kobieta - TVP Kultura - TVP Regionalna - TVP Rozrywka - TVP Seriale - TVR PL - TVS - TVT PL - Uçankuş TV - UNA TV - DIVA (ex. Universal) - Varaždinska Televizija - Vavoom - VG TV - MTV 80s - Viasat Explore CEE - Viasat History - Viasat Nature CEE - Viasat True Crime CEE - Plava vinkovačka TV - Vivid Red - Vivid TV - Vizion Plus - RT Vojvodina 1 - RT Vojvodina 2 - VOX - Welt - Wydarzenia 24 - Xtreme TV - XXL - Yaban TV - Zagrebačka Televizija - ZDF - ZDFinfo - ZDFneo - Zdrava televizija - ZONASPORT TV + A Spor + DocuBox HD + Fuel TV + TV4 TR From c074cc55a0e078c6555bc9950ce5e9ce825a7c10 Mon Sep 17 00:00:00 2001 From: theofficialomega <30985701+BellezaEmporium@users.noreply.github.com> Date: Sat, 18 Apr 2026 12:33:52 +0200 Subject: [PATCH 27/92] change gatotv channels gathering --- sites/gatotv.com/gatotv.com.channels.xml | 2402 +++++++++++++++++----- sites/gatotv.com/gatotv.com.config.js | 37 +- 2 files changed, 1949 insertions(+), 490 deletions(-) diff --git a/sites/gatotv.com/gatotv.com.channels.xml b/sites/gatotv.com/gatotv.com.channels.xml index 83b79c81c..01a9f6832 100644 --- a/sites/gatotv.com/gatotv.com.channels.xml +++ b/sites/gatotv.com/gatotv.com.channels.xml @@ -1,480 +1,1928 @@ - 5 de México - 9 de Honduras - 9 de México - 13 de Costa Rica - 13 de Guatemala - 14 de México - ADN Noticias - AMC Colombia - AMC México - AMC Series Argentina - AMC Series Costa Rica - AMC Series El Salvador - AMC Series Guatemala - AMC Series Honduras - AMC Series México - AMC Series Nicaragua - AMC Series Panamá - AMC Series Paraguay - AMC Series República Dominicana - AMC Series Uruguay - Animal Planet México - Animal Planet Panregional - Animal Planet Sur - AXN Venezuela - Azteca Uno -1 h - Azteca Uno -2 h - Baby TV Latam. - Barça TV - Bloomberg - Capital Colombia - Cartoonito Panregional - Cartoonito Sur - Cinelatino USA - Cinema - City TV - Claro TV - Clic - Comedy Central Centro - Comedy Central México - las Estrellas - 1 Hora - las Estrellas -2 Horas - DW - Discovery Home & Health Colombia - Discovery Kids LATAM - Discovery Turbo LATAM. - DW Latam. - E! Entertainment Television Chile - E! Entertainment Television Panregional - El Financiero TV - El Heraldo TV - Elgourmet - TBN - ESPN 2 Sur - ESPN 2 Venezuela - ESPN 3 Norte - ESPN 4 C. A. y R. D. - ESPN 4 México - ESPN 4 Sur - ESPN 5 C. A. y R. D. - ESPN 5 Sur - ESPN 6 C. A. y R. D. - ESPN 6 Sur - ESPN 7 Bolivia - ESPN 7 Chile - ESPN 7 Colombia - ESPN 7 Ecuador - ESPN 7 Paraguay - ESPN 7 Perú - ESPN 7 Sudamérica - ESPN 7 Uruguay - ESPN 7 Venezuela - ESPN Premium Chile - ESPN Sur - Euronews - EWTN en Español - Exa TV - Film & Arts - Fox Sports 2 Cono Norte - Fox Sports 3 Cono Norte - Fox Sports Cono Norte - Fox Sports Cono Sur - FX Centro - Galicia TV - Gol Play España - Golden Edge - Golden México - Golden MPX - HBO Chile - Hollywood España - La Red Chile - MTV Centro - MTV México - National Geographic Centro - Nick Jr. Latinoamérica - Nickelodeon Centro - Nickelodeon México - RAI International - RCN Colombia - RCN Internacional - Región+ - Sony Centro - Sony Chile - Sony Movies LATAM - Space Chile - Star Channel Argentina - Star Channel Centro - Star TVE - Starz Encore Español - Sun Channel - TC Televisión - Telehit Música Plus - Telemundo PAN - Telemundo Puerto Rico - TN23 - TNT Centroamérica y Caribe - TNT Novelas GT - TNT Novelas LATAM - TNT Series Lat. - Tr3s - TUDN Centroamérica - TV Agro C. A. - Ultra Cine - Ultra Docu - Ultra Fiesta - Ultra Film - Ultra Kidz - Ultra Tainment - Univision Latinoamérica - Canal USA Network LATAM - Ve Plus LATAM - Warner TV Chile - Warner TV España - Warner TV México - Warner TV Sur - ZooMoo Latinoamérica - 24 Horas Chile - 24 Horas - M+ Acción - Adrenalina Sports Network - A&E Chile - A&E México - A&E PAN - Agrotendencia TV - AMC Break - AMC Crime - AMC España - América Televisión Perú - América TeVé - America TV Argentina - Antena 3 de España - Antena 3 Internacional - 7 de República Dominicana - a+ - Aprende - Atreseries España - Atreseries Internacional - ATV - AXN ES - AXN Andes - AXN México - AXN Sur - AYM Sports - TV Azteca Corazón - TV Azteca Mundo - Azteca 7 - Azteca Guate - Azteca Uno - BabyFirst TV - Bandamax - BBC World News - beIN Sports en Español - Be Mad - BET Jams - BitMe - 9 Noticias Paraguay - Cablenoticias - Calle 13 - 1 Colombia - 2 de Nicaragua - 2 de El Salvador - 3 de Guatemala - 4 de Costa Rica - 4 de El Salvador - 5 de Honduras - 6 de Costa Rica - 6 de El Salvador - Multimedios Costa Rica - 11 de Costa Rica - 12 de El Salvador - 13 de Chile - Canal Antigua - Cocina - Canal Congreso Colombia - Institucional Colombia - Sur - Sur Andalucía - Tro - Caracol Internacional - Caracol Colombia - Cartoonito México - Cartoon Network Pacífico - Cartoon Network México - Cartoon Network Atlántico Norte - Cartoon Network Atlántico Sur - 37 de República Dominicana - CDN Deportes - Chilevisión (CHV) - Cinecanal México - Cinecanal Pacífico - Cinecanal Sur - CineClick - Cine Estelar - Cinelatino - Cinema Platino - Cinema + - Cinemax Chile - Cinemax México - Cinemax Panregional - Cine Mexicano - Cine Nostalgia - Cine Sony - Clan TVE - Castilla-La Mancha Media - CNN Chile - CNN en Español - CNN Internacional - 9 de República Dominicana - M+ Comedia - Comedy Central España - Concert Channel - Cosmopolitan España - Cuatro de España - De Película Clásico - De Película - DHE - 15 de República Dominicana - Discovery Channel España - Discovery Channel Chile - Discovery Channel México - Discovery en Español - Discovery Familia - Discovery H&H MX - Discovery Kids Chile - Discovery Kids MX - Discovery Science LATAM - Discovery Theater LATAM. - Discovery World Lat. - Disney Channel Centro - Disney Channel México - Disney Channel Sur - Disney Junior Norte - Disney Junior Sur - Disney Junior España - Distrito Comedia - Divinity - Ecuador TV - Ecuavisa Ecuador - Ecuavisa Internacional - Efekto TV - 13 de Argentina - Energy - ESNE TV - ESPN 2 Colombia - ESPN 2 México - ESPN 2 Norte - ESPN 3 Sur - ESPN 4 Norte - ESPN Deportes - ESPN Chile - ESPN Colombia - ESPN México - ESPN Norte - Estrella TV - ETB 1 - ETB 2 - Eurochannel - Europa Europa - Eurosport 1 España - Eurosport 2 España - Excelsior TV - 42 de Costa Rica - Foro TV - Fox Deportes - Fox News - FUTV - FX Chile - FX México - Gamavisión - Golden Panregional - Golden Plus - Golden Premier 2 - Golden Premier - Golf Channel Latinoamérica - Gol TV USA - Guatevisión - HBO 2 LATAM - HBO Family LATAM - HBO Latinoamérica - HBO Latino Este - HBO Mundi - HBO Plus - HBO Pop - HBO Signature LATAM - HBO Xtreme - Historia España - History 2 México - History 2 Panregional - History Chile - History MX - History en Español - History Panregional - HITN - HLN - ¡Hola! TV - HTV - Iberalia TV - Ingenio TV México - Inti Network - ID México - ID Panregional - La 1 - La 2 - M+ LaLiga - laOtra - La Red TV Guatemala - 2 de México - Las Estrellas LATAM - La Sexta - La Tele Paraguay - Frecuencia Latina - Lifetime México - Lifetime PAN - María Visión - MC - Mega Chile - Mega España - Meganoticias MX - 12 de El Salvador - Mexiquense TV - Milenio - MTV España - MTV Sur - Multimedios Plus - National Geographic España - National Geographic México - Universo - Neox - NFL Network - NHK World - Nickelodeon España - Nick Jr. España - NickMusic - Nova - Noticias PY - NTN24 - Odisea - Pakapaka - Panamericana Televisión - Pánico - Paraguay TV - Paravisión - Pasiones Estados Unidos - Pasiones Latinoamérica - Perú Mágico - PX Sports - RCN Novelas - Real Madrid TV - RTS - Semillitas - Señal Colombia - Sky One México - Sky Sports 1 México - Sky Sports 16 - Sky Sports 24 - SNT - Sony México - Sorpresa - Space México - Space Panregional - Space Sur - Star Channel México - Studio Universal México - Studio Universal Panregional - Sundance TV España - Sur TV Itapúa Paraguay - Syfy España - TCM España - TCM Panregional - Teleamazonas - 2 de República Dominicana - Teleantioquia - Telecafé - Telecaribe - 13 de República Dominicana - Telecentro TV - Telecinco - Teledeporte - Telefé (Argentina) - Telefe Internacional - Telefórmula - Telefuturo - Telehit - Telehit Música - Tele Isla - Teleislas - TeleMadrid - Telemicro - Telemundo México - Telenostalgia - 11 de Guatemala - Telepacífico - 11 de República Dominicana - 7 de Costa Rica - Teleunion - 29 de República Dominicana - 4 de Guadalajara - 7 de Guatemala - TV Canaria - Television Dominicana - Tigo Sports Costa Rica - Tigo Sports Guatemala - Tigo Sports El Salvador - TLC MX - TLC Panregional - TLNovelas LATAM - TLNovelas México - TNT Pacífico - TNT México - TNT Sur - Tooncast - 13 de Colombia - 13 de Paraguay - Telesistema Informativo (TSI) - TUDN México - TUDN USA - TV5Monde - TVC Deportes - TV Chile - TVE Internacional - TV Globo Internacional - 9 de Panamá - TVN Chile - 2 de Panamá - Televisión Pública Argentina - TVUNAM - TyC Sports - Unicable MX - Unicanal - Universal Cinema - Universal Comedy - Universal Crime - Universal Premiere - Universal Reality - Universal TV México - Universal TV Panregional - Univision TLNovelas - M+ #Vamos - Ve Plus Estados Unidos - Vía X - Vibra TV - Video Rola - ViendoMovies - 13 de Nicaragua - VTV Honduras - WAPA-TV - WAPA 2 Deportes - Warner TV Panregional - Willax TV - WIPR - Punto 2 - WOBI - 13 de Puerto Rico - 4 de Monterrey - 22 de México - 11 de México - Zona Latina - ZOOM Colombia + Canal 3ABN Latino + Canal 4 de Panamá (RPC TV) + Canal 5 de México (XHGC) + Canal 6 de Nicaragua + Canal 9 de Argentina (El Nueve) + Canal 9 de Costa Rica + Canal 9 de Honduras (Vica) + Canal 9 de México (XEQ-TDT) + Canal 11 de Honduras + Canal 13 de Argentina, Internacional (El Trece) + Canal 13 de Costa Rica + Canal 13 de Guatemala + Canal 13 de Panamá (Telemetro) + Canal 14 de México + Canal 14 de Nicaragua (Vos TV) + Canal 22 de México (Internacional) + Canal 26 de Argentina + Canal 27 de Guatemala + Canal 34 de Monterrey (MTY tv) + Canal A24 + Canal A&E (Argentina) + Canal A&E (Bolivia) + Canal A&E (Colombia) + Canal A&E (Costa Rica) + Canal A&E (Ecuador) + Canal A&E (El Salvador) + Canal A&E (Guatemala) + Canal A&E (Honduras) + Canal A&E (Nicaragua) + Canal A&E (Panamá) + Canal A&E (Paraguay) + Canal A&E (Perú) + Canal A&E (República Dominicana) + Canal A&E (Sur) + Canal A&E (Uruguay) + Canal A&E (Venezuela) + Canal ADN 40 + Canal ADN Noticias + Canal Afizzionados + Canal AMC (Argentina) + Canal AMC (Bolivia) + Canal AMC (Chile) + Canal AMC (Colombia) + Canal AMC (Costa Rica) + Canal AMC (Ecuador) + Canal AMC (El Salvador) + Canal AMC (Guatemala) + Canal AMC (Honduras) + Canal AMC (México) + Canal AMC (Nicaragua) + Canal AMC (Panamá) + Canal AMC (Paraguay) + Canal AMC (Perú) + Canal AMC (República Dominicana) + Canal AMC Series (Argentina) + Canal AMC Series (Bolivia) + Canal AMC Series (Chile) + Canal AMC Series (Colombia) + Canal AMC Series (Costa Rica) + Canal AMC Series (Ecuador) + Canal AMC Series (El Salvador) + Canal AMC Series (Guatemala) + Canal AMC Series (Honduras) + Canal AMC Series (México) + Canal AMC Series (Nicaragua) + Canal AMC Series (Panamá) + Canal AMC Series (Paraguay) + Canal AMC Series (Perú) + Canal AMC Series (República Dominicana) + Canal AMC Series (Uruguay) + Canal AMC Series (Venezuela) + Canal AMC (Uruguay) + Canal AMC (Venezuela) + Canal American Network + Canal Animal Planet (Argentina) + Canal Animal Planet (Bolivia) + Canal Animal Planet (Chile) + Canal Animal Planet (Colombia) + Canal Animal Planet (Costa Rica) + Canal Animal Planet (Ecuador) + Canal Animal Planet (El Salvador) + Canal Animal Planet (Guatemala) + Canal Animal Planet (Honduras) + Canal Animal Planet (México) + Canal Animal Planet (Nicaragua) + Canal Animal Planet (Panamá) + Canal Animal Planet (Panregional) + Canal Animal Planet (Paraguay) + Canal Animal Planet (Perú) + Canal Animal Planet (República Dominicana) + Canal Animal Planet (Sur) + Canal Animal Planet (Uruguay) + Canal Animal Planet (Venezuela) + Canal Animax + Canal Antigua Sports + Canal AXN (Argentina) + Canal AXN (Bolivia) + Canal AXN (Chile) + Canal AXN (Colombia) + Canal AXN (Costa Rica) + Canal AXN (Ecuador) + Canal AXN (El Salvador) + Canal AXN (Guatemala) + Canal AXN (Honduras) + Canal AXN (Nicaragua) + Canal AXN (Panamá) + Canal AXN (Paraguay) + Canal AXN (Perú) + Canal AXN (República Dominicana) + Canal AXN (Uruguay) + Canal AXN (Venezuela) + Canal AXN White España + Canal Azteca América + Canal Azteca Uno -1 Hora + Canal Azteca Uno -2 Horas + Canal Baby TV (Latinoamérica) + Canal Bang TV + Canal Barça TV + Canal BBC Entertainment + Canal Bein LaLiga + Canal beIN Sports España + Canal Biography + Canal Blaze (España) + Canal Bloomberg + Canal Boing (España) + Canal Boomerang (Argentina) + Canal Boomerang (Bolivia) + Canal Boomerang (Chile) + Canal Boomerang (Colombia) + Canal Boomerang (Costa Rica) + Canal Boomerang (Ecuador) + Canal Boomerang (El Salvador) + Canal Boomerang (Guatemala) + Canal Boomerang (Honduras) + Canal Boomerang (México) + Canal Boomerang (Nicaragua) + Canal Boomerang (Panamá) + Canal Boomerang (Panregional) + Canal Boomerang (Paraguay) + Canal Boomerang (Perú) + Canal Boomerang (República Dominicana) + Canal Boomerang (Uruguay) + Canal Boomerang (Venezuela) + Canal BYU TV International + Canal C5N + Canal Cadena 3 + Canal Capital (Colombia) + Canal Capital TV (Perú) + Canal Cartoon Network + Canal Cartoon Network (Argentina) + Canal Cartoon Network (Bolivia) + Canal Cartoon Network (Centroamérica) + Canal Cartoon Network (Chile) + Canal Cartoon Network (Colombia) + Canal Cartoon Network (Costa Rica) + Canal Cartoon Network (Ecuador) + Canal Cartoon Network (El Salvador) + Canal Cartoon Network (Guatemala) + Canal Cartoon Network (Honduras) + Canal Cartoon Network (Nicaragua) + Canal Cartoon Network (Panamá) + Canal Cartoon Network (Paraguay) + Canal Cartoon Network (Perú) + Canal Cartoon Network (República Dominicana) + Canal Cartoon Network (Uruguay) + Canal Cartoon Network (Venezuela) + Canal Cartoonito (Argentina) + Canal Cartoonito (Bolivia) + Canal Cartoonito (Chile) + Canal Cartoonito (Colombia) + Canal Cartoonito (Costa Rica) + Canal Cartoonito (Ecuador) + Canal Cartoonito (El Salvador) + Canal Cartoonito (Guatemala) + Canal Cartoonito (Honduras) + Canal Cartoonito (Nicaragua) + Canal Cartoonito (Panamá) + Canal Cartoonito (Panregional) + Canal Cartoonito (Paraguay) + Canal Cartoonito (Perú) + Canal Cartoonito (República Dominicana) + Canal Cartoonito (Sur) + Canal Cartoonito (Uruguay) + Canal Cartoonito (Venezuela) + Canal Casa Club TV + Canal CBeebies + Canal CDF Básico + Canal CDF HD + Canal CDF Premium + Canal CDM Internacional + Canal CGTN-Español + Canal Cincomas + Canal Cinecanal (Argentina) + Canal Cinecanal (Bolivia) + Canal Cinecanal (Chile) + Canal Cinecanal (Colombia) + Canal Cinecanal (Costa Rica) + Canal Cinecanal (Ecuador) + Canal Cinecanal (El Salvador) + Canal Cinecanal (Guatemala) + Canal Cinecanal (Honduras) + Canal Cinecanal + + Canal Cinecanal (Nicaragua) + Canal Cinecanal (Panamá) + Canal Cinecanal (Panregional) + Canal Cinecanal (Paraguay) + Canal Cinecanal (Perú) + Canal Cinecanal (República Dominicana) + Canal Cinecanal (Uruguay) + Canal Cinecanal (Venezuela) + Canal Cinelatino U.S.A. + Canal Cinema + Canal Cinema Dinamita + Canal Cinemax (Argentina) + Canal Cinemax (Bolivia) + Canal Cinemax (Colombia) + Canal Cinemax (Costa Rica) + Canal Cinemax (Ecuador) + Canal Cinemax (El Salvador) + Canal Cinemax (Guatemala) + Canal Cinemax (Honduras) + Canal Cinemax (Nicaragua) + Canal Cinemax (Panamá) + Canal Cinemax (Paraguay) + Canal Cinemax (Perú) + Canal Cinemax (República Dominicana) + Canal Cinemax (Uruguay) + Canal Cinemax (Venezuela) + Canal City TV + Canal Cityfamily Este + Canal Cityfamily Oeste + Canal Citymix + Canal Citystars + Canal Cityvibe Este + Canal Cityvibe Oeste + Canal Claro Música + Canal Claro Sports + Canal Claro TV + Canal Clásico TV + Canal Classica + Canal Clic + Canal CNN HD + Canal Comedy Central (Argentina) + Canal Comedy Central (Bolivia) + Canal Comedy Central (Centro) + Canal Comedy Central (Chile) + Canal Comedy Central (Colombia) + Canal Comedy Central (Costa Rica) + Canal Comedy Central (Ecuador) + Canal Comedy Central (El Salvador) + Canal Comedy Central (Guatemala) + Canal Comedy Central (Honduras) + Canal Comedy Central (México) + Canal Comedy Central (Nicaragua) + Canal Comedy Central (Panamá) + Canal Comedy Central (Paraguay) + Canal Comedy Central (Perú) + Canal Comedy Central (República Dominicana) + Canal Comedy Central (Sur) + Canal Comedy Central (Uruguay) + Canal Comedy Central (Venezuela) + Canal Cosmopolitan + Canal Crimen + Investigación + Canal Crónica Televisión + Canal DAZN 1 (España) + Canal DAZN 2 (España) + Canal DAZN F1 (España) + Canal de las Estrellas -1 Hora - México (XEW) + Canal de las Estrellas -2 Horas - México (XEW) + Canal De Película (Multiplex) + Canal Decasa + Canal DeporTV + Canal Deutsche Welle + Canal Día TV + Canal Discovery Channel (Argentina) + Canal Discovery Channel (Bolivia) + Canal Discovery Channel (Colombia) + Canal Discovery Channel (Costa Rica) + Canal Discovery Channel (Ecuador) + Canal Discovery Channel (El Salvador) + Canal Discovery Channel (Guatemala) + Canal Discovery Channel (Honduras) + Canal Discovery Channel (Latinoamérica) + Canal Discovery Channel (Nicaragua) + Canal Discovery Channel (Panamá) + Canal Discovery Channel (Paraguay) + Canal Discovery Channel (Perú) + Canal Discovery Channel (República Dominicana) + Canal Discovery Channel (Uruguay) + Canal Discovery Channel (Venezuela) + Canal Discovery Civilization (Latinoamérica) + Canal Discovery Home & Health (Argentina) + Canal Discovery Home & Health (Bolivia) + Canal Discovery Home & Health (Chile) + Canal Discovery Home & Health (Colombia) + Canal Discovery Home & Health (Costa Rica) + Canal Discovery Home & Health (Ecuador) + Canal Discovery Home & Health (El Salvador) + Canal Discovery Home & Health (Guatemala) + Canal Discovery Home & Health (Honduras) + Canal Discovery Home & Health (Nicaragua) + Canal Discovery Home & Health (Panamá) + Canal Discovery Home & Health (Panregional) + Canal Discovery Home & Health (Paraguay) + Canal Discovery Home & Health (Perú) + Canal Discovery Home & Health (República Dominicana) + Canal Discovery Home & Health (Uruguay) + Canal Discovery Home & Health (Venezuela) + Canal Discovery Kids (Argentina) + Canal Discovery Kids (Bolivia) + Canal Discovery Kids (Colombia) + Canal Discovery Kids (Costa Rica) + Canal Discovery Kids (Ecuador) + Canal Discovery Kids (El Salvador) + Canal Discovery Kids (Guatemala) + Canal Discovery Kids (Honduras) + Canal Discovery Kids (Latinoamérica) + Canal Discovery Kids (Nicaragua) + Canal Discovery Kids (Panamá) + Canal Discovery Kids (Paraguay) + Canal Discovery Kids (Perú) + Canal Discovery Kids (República Dominicana) + Canal Discovery Kids (Uruguay) + Canal Discovery Kids (Venezuela) + Canal Discovery Turbo (Latinoamérica) + Canal Disney Channel (Argentina) + Canal Disney Channel (Bolivia) + Canal Disney Channel (Chile) + Canal Disney Channel (Colombia) + Canal Disney Channel (Costa Rica) + Canal Disney Channel (Ecuador) + Canal Disney Channel (El Salvador) + Canal Disney Channel (España) + Canal Disney Channel (Guatemala) + Canal Disney Channel (Honduras) + Canal Disney Channel (Nicaragua) + Canal Disney Channel (Panamá) + Canal Disney Channel (Paraguay) + Canal Disney Channel (Perú) + Canal Disney Channel (República Dominicana) + Canal Disney Channel (Uruguay) + Canal Disney Channel (Venezuela) + Canal Disney Junior (Argentina) + Canal Disney Junior (Bolivia) + Canal Disney Junior (Chile) + Canal Disney Junior (Colombia) + Canal Disney Junior (Costa Rica) + Canal Disney Junior (Ecuador) + Canal Disney Junior (El Salvador) + Canal Disney Junior (Guatemala) + Canal Disney Junior (Honduras) + Canal Disney Junior (México) + Canal Disney Junior (Nicaragua) + Canal Disney Junior (Panamá) + Canal Disney Junior (Paraguay) + Canal Disney Junior (Perú) + Canal Disney Junior (República Dominicana) + Canal Disney Junior (Uruguay) + Canal Disney Junior (Venezuela) + Canal Disney XD (Argentina) + Canal Disney XD (Bolivia) + Canal Disney XD (Chile) + Canal Disney XD (Colombia) + Canal Disney XD (Costa Rica) + Canal Disney XD (Ecuador) + Canal Disney XD (El Salvador) + Canal Disney XD (España) + Canal Disney XD (Guatemala) + Canal Disney XD (Honduras) + Canal Disney XD (México) + Canal Disney XD (Nicaragua) + Canal Disney XD (Panamá) + Canal Disney XD (Panregional) + Canal Disney XD (Paraguay) + Canal Disney XD (Perú) + Canal Disney XD (República Dominicana) + Canal Disney XD (Uruguay) + Canal Disney XD (Venezuela) + Canal DW (Latinoamérica) + Canal E! Entertainment Television (Argentina) + Canal E! Entertainment Television (Bolivia) + Canal E! Entertainment Television (Chile) + Canal E! Entertainment Television (Colombia) + Canal E! Entertainment Television (Costa Rica) + Canal E! Entertainment Television (Ecuador) + Canal E! Entertainment Television (El Salvador) + Canal E! Entertainment Television (Guatemala) + Canal E! Entertainment Television (Honduras) + Canal E! Entertainment Television (Latinoamérica) + Canal E! Entertainment Television (México) + Canal E! Entertainment Television (Nicaragua) + Canal E! Entertainment Television (Panamá) + Canal E! Entertainment Television (Panregional) + Canal E! Entertainment Television (Paraguay) + Canal E! Entertainment Television (Perú) + Canal E! Entertainment Television (República Dominicana) + Canal E! Entertainment Television (Uruguay) + Canal E! Entertainment Television (Venezuela) + Canal Enlace Juvenil (EJTV) + Canal El Financiero TV + Canal El Heraldo TV (México) + Canal Elgourmet + Canal Ella + Canal Encuentro (Argentina) + Canal Enlace (TBN) + Canal ESPN 2 (Andino) + Canal ESPN 2 (Argentina) + Canal ESPN 2 (Bolivia) + Canal ESPN 2 (Chile) + Canal ESPN 2 (Costa Rica) + Canal ESPN 2 (Ecuador) + Canal ESPN 2 (El Salvador) + Canal ESPN 2 (Guatemala) + Canal ESPN 2 (Honduras) + Canal ESPN 2 (Nicaragua) + Canal ESPN 2 (Panamá) + Canal ESPN 2 (Paraguay) + Canal ESPN 2 (Perú) + Canal ESPN 2 (República Dominicana) + Canal ESPN 2 (Sur) + Canal ESPN 2 (Uruguay) + Canal ESPN 2 (Venezuela) + Canal ESPN 3 Latinoamérica + Canal ESPN 3 (Argentina) + Canal ESPN 3 (Bolivia) + Canal ESPN 3 (Chile) + Canal ESPN 3 (Colombia) + Canal ESPN 3 (Costa Rica) + Canal ESPN 3 (Ecuador) + Canal ESPN 3 (El Salvador) + Canal ESPN 3 (Guatemala) + Canal ESPN 3 (Honduras) + Canal ESPN 3 (México) + Canal ESPN 3 (Nicaragua) + Canal ESPN 3 (Norte) + Canal ESPN 3 (Panamá) + Canal ESPN 3 (Paraguay) + Canal ESPN 3 (Perú) + Canal ESPN 3 (República Dominicana) + Canal ESPN 3 (Uruguay) + Canal ESPN 3 (Venezuela) + Canal ESPN 4 (Argentina) + Canal ESPN 4 (Bolivia) + Canal ESPN 4 (Centroamérica y Caribe) + Canal ESPN 4 (Chile) + Canal ESPN 4 (Colombia) + Canal ESPN 4 (Costa Rica) + Canal ESPN 4 (Ecuador) + Canal ESPN 4 (El Salvador) + Canal ESPN 4 (Guatemala) + Canal ESPN 4 (Honduras) + Canal ESPN 4 (México) + Canal ESPN 4 (Nicaragua) + Canal ESPN 4 (Panamá) + Canal ESPN 4 (Paraguay) + Canal ESPN 4 (Perú) + Canal ESPN 4 (República Dominicana) + Canal ESPN 4 (Sur) + Canal ESPN 4 (Uruguay) + Canal ESPN 4 (Venezuela) + Canal ESPN 5 (Bolivia) + Canal ESPN 5 (Centroamérica y República Dominicana) + Canal ESPN 5 (Chile) + Canal ESPN 5 (Colombia) + Canal ESPN 5 (Costa Rica) + Canal ESPN 5 (Ecuador) + Canal ESPN 5 (El Salvador) + Canal ESPN 5 (Guatemala) + Canal ESPN 5 (Honduras) + Canal ESPN 5 (Nicaragua) + Canal ESPN 5 (Panamá) + Canal ESPN 5 (Paraguay) + Canal ESPN 5 (Perú) + Canal ESPN 5 (República Dominicana) + Canal ESPN 5 (Sudamérica) + Canal ESPN 5 (Uruguay) + Canal ESPN 5 (Venezuela) + Canal ESPN 6 (Bolivia) + Canal ESPN 6 (Centroamérica y República Dominicana) + Canal ESPN 6 (Chile) + Canal ESPN 6 (Colombia) + Canal ESPN 6 (Costa Rica) + Canal ESPN 6 (Ecuador) + Canal ESPN 6 (El Salvador) + Canal ESPN 6 (Guatemala) + Canal ESPN 6 (Honduras) + Canal ESPN 6 (Nicaragua) + Canal ESPN 6 (Panamá) + Canal ESPN 6 (Paraguay) + Canal ESPN 6 (Perú) + Canal ESPN 6 (República Dominicana) + Canal ESPN 6 (Sudamérica) + Canal ESPN 6 (Uruguay) + Canal ESPN 6 (Venezuela) + Canal ESPN 7 (Bolivia) + Canal ESPN 7 (Chile) + Canal ESPN 7 (Colombia) + Canal ESPN 7 (Ecuador) + Canal ESPN 7 (Paraguay) + Canal ESPN 7 (Perú) + Canal ESPN 7 (Sudamérica) + Canal ESPN 7 (Uruguay) + Canal ESPN 7 (Venezuela) + Canal ESPN (Argentina) + Canal ESPN (Bolivia) + Canal ESPN (Costa Rica) + Canal ESPN (Ecuador) + Canal ESPN (El Salvador) + Canal ESPN Extra (Latinoamérica) + Canal ESPN (Guatemala) + Canal ESPN (Honduras) + Canal ESPN Internacional + Canal ESPN (Nicaragua) + Canal ESPN (Panamá) + Canal ESPN (Paraguay) + Canal ESPN (Perú) + Canal ESPN Premium (Chile) + Canal ESPN (República Dominicana) + Canal ESPN (Sur) + Canal ESPN (Uruguay) + Canal ESPN (Venezuela) + Canal Euronews + Canal EWTN en Español + Canal Exa TV + Canal F1 Latin America + Canal Fashion TV + Canal Fighting Sports Network + Canal Film & Arts + Canal FOX Centroamérica + Canal Fox Channel (Argentina) + Canal Fox Channel (Bolivia) + Canal Fox Channel (Chile) + Canal Fox Channel (Colombia) + Canal Fox Channel (Ecuador) + Canal Fox Channel (Paraguay) + Canal Fox Channel (Perú) + Canal Fox Channel República Dominicana + Canal Fox Channel (Uruguay) + Canal Fox Channel (Venezuela) + Canal Fox (Costa Rica) + Canal Fox (El Salvador) + Canal Fox (España) + Canal Fox (Guatemala) + Canal Fox (Honduras) + Canal Fox Life (Argentina) + Canal Fox Life (Bolivia) + Canal Fox Life (Chile) + Canal Fox Life (Colombia) + Canal Fox Life (Costa Rica) + Canal Fox Life (Ecuador) + Canal Fox Life (El Salvador) + Canal Fox Life (España) + Canal Fox Life (Guatemala) + Canal Fox Life (Honduras) + Canal Fox Life (México) + Canal Fox Life (Nicaragua) + Canal Fox Life (Panamá) + Canal Fox Life (Panregional) + Canal Fox Life (Paraguay) + Canal Fox Life (Perú) + Canal Fox Life (República Dominicana) + Canal Fox Life (Uruguay) + Canal Fox Life (Venezuela) + Canal Fox (México) + Canal Fox / Natgeo HD + Canal Fox (Nicaragua) + Canal Fox (Panamá) + Canal Fox Premium Action (Este) + Canal Fox Premium Action (Oeste) + Canal Fox Premium Cinéma + Canal Fox Premium Classics + Canal Fox Premium Comedy + Canal Fox Premium Family (Este) + Canal Fox Premium Family (Oeste) + Canal Fox Premium Movies + Canal Fox Premium Series (Este) + Canal Fox Premium Series (Oeste) + Canal Fox Sports + Canal Fox Sports 2 Latinoamérica + Canal Fox Sports 2 (Argentina) + Canal Fox Sports 2 (Bolivia) + Canal Fox Sports 2 (Chile) + Canal Fox Sports 2 (Colombia) + Canal Fox Sports 2 (Cono Norte) + Canal Fox Sports 2 (Cono Sur) + Canal Fox Sports 2 (Costa Rica) + Canal Fox Sports 2 (Ecuador) + Canal Fox Sports 2 (El Salvador) + Canal Fox Sports 2 (Guatemala) + Canal Fox Sports 2 (Honduras) + Canal Fox Sports 2 (México) + Canal Fox Sports 2 (Nicaragua) + Canal Fox Sports 2 (Panamá) + Canal Fox Sports 2 (Paraguay) + Canal Fox Sports 2 (Perú) + Canal Fox Sports 2 (República Dominicana) + Canal Fox Sports 2 (Uruguay) + Canal Fox Sports 2 (Venezuela) + Canal Fox Sports 3 Latinoamérica + Canal Fox Sports 3 (Argentina) + Canal Fox Sports 3 (Bolivia) + Canal Fox Sports 3 (Chile) + Canal Fox Sports 3 (Colombia) + Canal Fox Sports 3 (Cono Norte) + Canal Fox Sports 3 (Cono Sur) + Canal Fox Sports 3 (Costa Rica) + Canal Fox Sports 3 (Ecuador) + Canal Fox Sports 3 (El Salvador) + Canal Fox Sports 3 (Guatemala) + Canal Fox Sports 3 (Honduras) + Canal Fox Sports 3 (México) + Canal Fox Sports 3 (Nicaragua) + Canal Fox Sports 3 (Panamá) + Canal Fox Sports 3 (Paraguay) + Canal Fox Sports 3 (Perú) + Canal Fox Sports 3 (República Dominicana) + Canal Fox Sports 3 (Uruguay) + Canal Fox Sports 3 (Venezuela) + Canal Fox Sports (Argentina) + Canal Fox Sports (Bolivia) + Canal Fox Sports (Chile) + Canal Fox Sports (Colombia) + Canal Fox Sports (Cono Norte) + Canal Fox Sports (Cono Sur) + Canal Fox Sports (Costa Rica) + Canal Fox Sports (Ecuador) + Canal Fox Sports (El Salvador) + Canal Fox Sports (Guatemala) + Canal Fox Sports (Honduras) + Canal Fox Sports + + Canal Fox Sports + HD + Canal Fox Sports (México) + Canal Fox Sports (Nicaragua) + Canal Fox Sports (Panamá) + Canal Fox Sports (Paraguay) + Canal Fox Sports (Perú) + Canal Fox Sports Premium (Argentina) + Canal Fox Sports (República Dominicana) + Canal Fox Sports (Uruguay) + Canal Fox Sports (Venezuela) + Canal FX (Argentina) + Canal FX (Bolivia) + Canal FX (Centro) + Canal FX (Colombia) + Canal FX (Costa Rica) + Canal FX (Ecuador) + Canal FX (El Salvador) + Canal FX (Guatemala) + Canal FX (Honduras) + Canal FX (Nicaragua) + Canal FX (Panamá) + Canal FX (Paraguay) + Canal FX (Perú) + Canal FX (República Dominicana) + Canal FX (Uruguay) + Canal FX (Venezuela) + Canal FXM (Argentina) + Canal FXM (Bolivia) + Canal FXM (Chile) + Canal FXM (Colombia) + Canal FXM (Costa Rica) + Canal FXM (Ecuador) + Canal FXM (El Salvador) + Canal FXM (Guatemala) + Canal FXM (Honduras) + Canal FXM (México) + Canal FXM (Nicaragua) + Canal FXM (Panamá) + Canal FXM (Panregional) + Canal FXM (Paraguay) + Canal FXM (Perú) + Canal FXM (República Dominicana) + Canal FXM (Sur) + Canal FXM (Uruguay) + Canal FXM (Venezuela) + Canal Galicia TV + Canal Glitz + Canal Gol (España) + Canal GOL PLAY (España) + Canal Golden (Argentina) + Canal Golden (Bolivia) + Canal Golden (Chile) + Canal Golden (Colombia) + Canal Golden (Costa Rica) + Canal Golden (Ecuador) + Canal Golden Edge + Canal Golden (El Salvador) + Canal Golden (Guatemala) + Canal Golden (Honduras) + Canal Golden (México) + Canal Golden Multiplex + Canal Golden (Nicaragua) + Canal Golden (Panamá) + Canal Golden (Paraguay) + Canal Golden (Perú) + Canal Golden (República Dominicana) + Canal Golden (Uruguay) + Canal Golden (Venezuela) + Canal GolTV Latinoamérica + Canal Green TV México + Canal HBO (Argentina) + Canal HBO (Bolivia) + Canal HBO (Chile) + Canal HBO (Colombia) + Canal HBO (Costa Rica) + Canal HBO (Ecuador) + Canal HBO (El Salvador) + Canal HBO (Guatemala) + Canal HBO (Honduras) + Canal HBO (México) + Canal HBO (Nicaragua) + Canal HBO (Panamá) + Canal HBO (Paraguay) + Canal HBO (Perú) + Canal HBO (República Dominicana) + Canal HBO (Uruguay) + Canal History 2 (Argentina) + Canal History 2 (Bolivia) + Canal History 2 (Chile) + Canal History 2 (Colombia) + Canal History 2 (Costa Rica) + Canal History 2 (Ecuador) + Canal History 2 (El Salvador) + Canal History 2 (Guatemala) + Canal History 2 (Honduras) + Canal History 2 (Nicaragua) + Canal History 2 (Panamá) + Canal History 2 (Paraguay) + Canal History 2 (Perú) + Canal History 2 (República Dominicana) + Canal History 2 (Uruguay) + Canal History 2 (Venezuela) + Canal History (Argentina) + Canal History (Bolivia) + Canal History (Colombia) + Canal History (Costa Rica) + Canal History (Ecuador) + Canal History (El Salvador) + Canal History (Guatemala) + Canal History (Honduras) + Canal History (Nicaragua) + Canal History (Panamá) + Canal History (Paraguay) + Canal History (Perú) + Canal History (República Dominicana) + Canal History (Uruguay) + Canal History (Venezuela) + Canal Hollywood (España) + Canal I.Sat + Canal Infinito + Canal Investigation Discovery (Argentina) + Canal Investigation Discovery (Bolivia) + Canal Investigation Discovery (Chile) + Canal Investigation Discovery (Colombia) + Canal Investigation Discovery (Costa Rica) + Canal Investigation Discovery (Ecuador) + Canal Investigation Discovery (El Salvador) + Canal Investigation Discovery (Guatemala) + Canal Investigation Discovery (Honduras) + Canal Investigation Discovery (Nicaragua) + Canal Investigation Discovery (Panamá) + Canal Investigation Discovery (Paraguay) + Canal Investigation Discovery (Perú) + Canal Investigation Discovery (República Dominicana) + Canal Investigation Discovery (Sur) + Canal Investigation Discovery (Uruguay) + Canal Investigation Discovery (Venezuela) + Canal Judicial + Canal Justicia TV (México) + Canal K - Music + Canal KW Televisión + Canal LN+ + Canal La Red (Chile) + Canal La Tele Perú + Canal Las Estrellas (Argentina) + Canal Las Estrellas (Bolivia) + Canal Las Estrellas (Chile) + Canal Las Estrellas (Colombia) + Canal Las Estrellas (Costa Rica) + Canal Las Estrellas (Ecuador) + Canal Las Estrellas (El Salvador) + Canal Las Estrellas (Guatemala) + Canal Las Estrellas (Honduras) + Canal Las Estrellas (Nicaragua) + Canal Las Estrellas (Panamá) + Canal Las Estrellas (Paraguay) + Canal Las Estrellas (Perú) + Canal Las Estrellas (República Dominicana) + Canal Las Estrellas (Uruguay) + Canal Las Estrellas (Venezuela) + Canal Latele Novela + Canal Lifetime (Argentina) + Canal Lifetime (Bolivia) + Canal Lifetime (Chile) + Canal Lifetime (Colombia) + Canal Lifetime (Costa Rica) + Canal Lifetime (Ecuador) + Canal Lifetime (El Salvador) + Canal Lifetime (Guatemala) + Canal Lifetime (Honduras) + Canal Lifetime Latinoamérica + Canal Lifetime (Nicaragua) + Canal Lifetime (Panamá) + Canal Lifetime (Paraguay) + Canal Lifetime (Perú) + Canal Lifetime (República Dominicana) + Canal Lifetime (Uruguay) + Canal Lifetime (Venezuela) + Canal LIV + Canal #0 + Canal Cine Español + Canal M+ Deportes + Canal Golf + Liga de Campeones + Canal Series + Canal Series 2 + Canal ManagemenTV + Canal Más Chic Estados Unidos (Este) + Canal Más Chic Latinoamérica + Canal + Musik HD + Canal MGM Latinoamérica + Canal Moviecity Action Este + Canal Moviecity Action HD (Este) + Canal Moviecity Action Oeste + Canal Moviecity Classics + Canal Moviecity Este + Canal Moviecity Family Este + Canal Moviecity Family Oeste + Canal Moviecity HD + Canal Moviecity Hollywood + Canal Moviecity Hollywood HD (Este) + Canal Moviecity Mundo + Canal Moviecity Oeste + Canal Moviecity Premieres Este + Canal Moviecity Premieres HD + Canal Moviecity Premieres Oeste + Canal Movistar Deportes 2 (España) + Canal Movistar Disney + Canal Movistar Drama + Canal Movistar eSports + Canal Movistar Fórmula 1 + Canal MTV 00s + Canal MTV 80s + Canal MTV (Argentina) + Canal MTV (Bolivia) + Canal MTV (Centro) + Canal MTV (Chile) + Canal MTV (Colombia) + Canal MTV (Costa Rica) + Canal MTV (Ecuador) + Canal MTV (El Salvador) + Canal MTV (Guatemala) + Canal MTV Hits + Canal MTV (Honduras) + Canal MTV Jams + Canal MTV Live HD + Canal MTV (México) + Canal MTV (Nicaragua) + Canal MTV (Panamá) + Canal MTV (Paraguay) + Canal MTV (Perú) + Canal MTV (República Dominicana) + Canal MTV (Uruguay) + Canal MTV (Venezuela) + Canal Much Music + Canal Multipremier + Canal Mun2 + Canal MundoFox Latinoamérica + Canal Nat Geo Kids (Argentina) + Canal Nat Geo Kids (Bolivia) + Canal Nat Geo Kids (Chile) + Canal Nat Geo Kids (Colombia) + Canal Nat Geo Kids (Costa Rica) + Canal Nat Geo Kids (Ecuador) + Canal Nat Geo Kids (El Salvador) + Canal Nat Geo Kids (Guatemala) + Canal Nat Geo Kids (Honduras) + Canal Nat Geo Kids (México) + Canal Nat Geo Kids (Nicaragua) + Canal Nat Geo Kids (Pacifico) + Canal Nat Geo Kids (Panamá) + Canal Nat Geo Kids (Panregional) + Canal Nat Geo Kids (Paraguay) + Canal Nat Geo Kids (Perú) + Canal Nat Geo Kids República Dominicana + Canal Nat Geo Kids (Uruguay) + Canal Nat Geo Kids (Venezuela) + Canal Nat Geo Mundo + Canal Nat Geo Wild + Canal National Geographic (NatGeo Latinoamérica) + Canal National Geographic (Argentina) + Canal National Geographic (Bolivia) + Canal National Geographic (Centro) + Canal National Geographic (Chile) + Canal National Geographic (Colombia) + Canal National Geographic (Costa Rica) + Canal National Geographic (Ecuador) + Canal National Geographic (El Salvador) + Canal National Geographic (Guatemala) + Canal National Geographic (Honduras) + Canal National Geographic (Nicaragua) + Canal National Geographic (Pacífico) + Canal National Geographic (Panamá) + Canal National Geographic (Panregional) + Canal National Geographic (Paraguay) + Canal National Geographic (Perú) + Canal National Geographic (República Dominicana) + Canal National Geographic (Sur) + Canal National Geographic (Uruguay) + Canal National Geographic (Venezuela) + Canal National Geographic Wild (Argentina) + Canal National Geographic Wild (Bolivia) + Canal National Geographic Wild (Chile) + Canal National Geographic Wild (Colombia) + Canal National Geographic Wild (Costa Rica) + Canal National Geographic Wild (Ecuador) + Canal National Geographic Wild (El Salvador) + Canal National Geographic Wild (Guatemala) + Canal National Geographic Wild (Honduras) + Canal National Geographic Wild (Latinoamérica) + Canal National Geographic Wild (México) + Canal National Geographic Wild (Nicaragua) + Canal National Geographic Wild (Panamá) + Canal National Geographic Wild (Panregional) + Canal National Geographic Wild (Paraguay) + Canal National Geographic Wild (Perú) + Canal National Geographic Wild República Dominicana + Canal National Geographic Wild (Uruguay) + Canal National Geographic Wild (Venezuela) + Canal NBC Universo (Este) + Canal Nick Jr. + Canal Nick Jr. (Argentina) + Canal Nick Jr. (Bolivia) + Canal Nick Jr. (Chile) + Canal Nick Jr. (Paraguay) + Canal Nick Jr. (Perú) + Canal Nick Jr. (Uruguay) + Canal Nick Jr. (Venezuela) + Canal Nick Jr. (Colombia) + Canal Nick Jr. (Costa Rica) + Canal Nick Jr. (Ecuador) + Canal Nick Jr. (El Salvador) + Canal Nick Jr. (Guatemala) + Canal Nick Jr. (Honduras) + Canal Nick Jr. (Latinoamérica) + Canal Nick Jr. (México) + Canal Nick Jr. (Nicaragua) + Canal Nick Jr. (Panamá) + Canal Nick Jr. (Panregional) + Canal Nick Jr. (República Dominicana) + Canal Nickelodeon (Argentina) + Canal Nickelodeon (Bolivia) + Canal Nickelodeon (Centro) + Canal Nickelodeon (Chile) + Canal Nickelodeon (Colombia) + Canal Nickelodeon (Costa Rica) + Canal Nickelodeon (Ecuador) + Canal Nickelodeon (El Salvador) + Canal Nickelodeon (Guatemala) + Canal Nickelodeon (Honduras) + Canal Nickelodeon (México) + Canal Nickelodeon (Nicaragua) + Canal Nickelodeon (Panamá) + Canal Nickelodeon (Paraguay) + Canal Nickelodeon (Perú) + Canal Nickelodeon (República Dominicana) + Canal Nickelodeon (Sur) + Canal Nickelodeon (Uruguay) + Canal Nickelodeon (Venezuela) + Canal Nicktoons (Latinoamérica) + Canal Nicktoons (México) + Canal Nicktoons (Panregional) + Canal NU music + Canal Orbe 21 + Canal Outdoor Channel HD + Canal Panda (España) + Canal Paramount Channel (Argentina) + Canal Paramount Channel (Bolivia) + Canal Paramount Channel (Chile) + Canal Paramount Channel (Colombia) + Canal Paramount Channel (Costa Rica) + Canal Paramount Channel (Ecuador) + Canal Paramount Channel (El Salvador) + Canal Paramount Channel (España) + Canal Paramount Channel (Guatemala) + Canal Paramount Channel (Honduras) + Canal Paramount Channel Latinoamérica + Canal Paramount Channel (México) + Canal Paramount Channel (Nicaragua) + Canal Paramount Channel (Panamá) + Canal Paramount Channel (Paraguay) + Canal Paramount Channel (Perú) + Canal Paramount Channel (República Dominicana) + Canal Paramount Channel (Uruguay) + Canal Paramount Channel (Venezuela) + Canal Pasiones (Panregional) + Canal Planeta Futbol (Canal 516) + Canal Planeta Futbol 9 (Canal 524) + Canal Planeta Futbol 9 HD (Canal 1524) + Canal Planeta Futbol HD (Canal 1516) + Canal+ Liga + Canal Proyecto 40 + Canal Puerto Rico Sports Network + Canal Puerto Rico TV + Canal RAI International + Canal RCN (Colombia) + Canal RCN Nuestra Tele (Internacional) + Canal Reality TV + Canal Región+ + Canal RPC (Paraguay) + Canal Rush HD + Canal Sony (Andes) + Canal Sony (Argentina) + Canal Sony (Bolivia) + Canal Sony Centro + Canal Sony (Chile) + Canal Sony Colombia + Canal Sony (Costa Rica) + Canal Sony (Ecuador) + Canal Sony (El Salvador) + Canal Sony (Guatemala) + Canal Sony (Honduras) + Canal Sony Movies (Argentina) + Canal Sony Movies (Bolivia) + Canal Sony Movies (Chile) + Canal Sony Movies (Colombia) + Canal Sony Movies (Costa Rica) + Canal Sony Movies (Ecuador) + Canal Sony Movies (El Salvador) + Canal Sony Movies (Guatemala) + Canal Sony Movies (Honduras) + Canal Sony Movies Latinoamérica + Canal Sony Movies (México) + Canal Sony Movies (Nicaragua) + Canal Sony Movies (Panamá) + Canal Sony Movies (Paraguay) + Canal Sony Movies (Perú) + Canal Sony Movies (República Dominicana) + Canal Sony Movies (Uruguay) + Canal Sony Movies (Venezuela) + Canal Sony (Nicaragua) + Canal Sony (Panamá) + Canal Sony (Paraguay) + Canal Sony (Perú) + Canal Sony (República Dominicana) + Canal Sony Spin + Canal Sony (Sur) + Canal Sony (Uruguay) + Canal Sony (Venezuela) + Canal Space (Argentina) + Canal Space (Bolivia) + Canal Space (Chile) + Canal Space (Colombia) + Canal Space (Costa Rica) + Canal Space (Ecuador) + Canal Space (El Salvador) + Canal Space (Guatemala) + Canal Space (Honduras) + Canal Space (Nicaragua) + Canal Space (Panamá) + Canal Space (Paraguay) + Canal Space (Perú) + Canal Space (República Dominicana) + Canal Space (Uruguay) + Canal Space (Venezuela) + Canal Speed Channel + Canal Star Action (Este) + Canal Star Action (Oeste) + Canal Star Channel (Andino) + Canal Star Channel (Argentina) + Canal Star Channel (Bolivia) + Canal Star Channel (Centro) + Canal Star Channel (Chile) + Canal Star Channel (Colombia) + Canal Star Channel (Costa Rica) + Canal Star Channel (Ecuador) + Canal Star Channel (El Salvador) + Canal Star Channel (Guatemala) + Canal Star Channel (Honduras) + Canal Star Channel (Nicaragua) + Canal Star Channel (Panamá) + Canal Star Channel (Paraguay) + Canal Star Channel (Perú) + Canal Star Channel (República Dominicana) + Canal Star Channel (Uruguay) + Canal Star Channel (Venezuela) + Canal Star Cinema + Canal Star Classics + Canal Star Comedy + Canal Star Fun (Este) + Canal Star Fun (Oeste) + Canal Star Hits + Canal Star Life (Argentina) + Canal Star Life (Bolivia) + Canal Star Life (Chile) + Canal Star Life (Colombia) + Canal Star Life (Costa Rica) + Canal Star Life (Ecuador) + Canal Star Life (El Salvador) + Canal Star Life (Guatemala) + Canal Star Life (Honduras) + Canal Star Life (México) + Canal Star Life (Nicaragua) + Canal Star Life (Panamá) + Canal Star Life (Panregional) + Canal Star Life (Paraguay) + Canal Star Life (Perú) + Canal Star Life (República Dominicana) + Canal Star Life (Uruguay) + Canal Star Life (Venezuela) + Canal Star Series (Este) + Canal Star Series (Oeste) + Canal Star TVE + Canal Starz Encore Español + Canal Studio Universal (Argentina) + Canal Studio Universal (Bolivia) + Canal Studio Universal (Chile) + Canal Studio Universal (Colombia) + Canal Studio Universal (Costa Rica) + Canal Studio Universal (Ecuador) + Canal Studio Universal (El Salvador) + Canal Studio Universal (Guatemala) + Canal Studio Universal (Honduras) + Canal Studio Universal (Nicaragua) + Canal Studio Universal (Panamá) + Canal Studio Universal (Paraguay) + Canal Studio Universal (Perú) + Canal Studio Universal (República Dominicana) + Canal Studio Universal (Uruguay) + Canal Studio Universal (Venezuela) + Canal Sun Channel + Canal SundanceTV Latinoamérica + Canal Sundance Channel Latinoamérica + Canal Sundance TV (Colombia) + Canal Sundance TV HD Latinoamérica + Canal Syfy (Argentina) + Canal Syfy (Bolivia) + Canal Syfy (Chile) + Canal Syfy (Colombia) + Canal Syfy (Costa Rica) + Canal Syfy (Ecuador) + Canal Syfy (El Salvador) + Canal Syfy (Guatemala) + Canal Syfy (Honduras) + Canal Syfy (Latinoamérica) + Canal Syfy (México) + Canal Syfy (Nicaragua) + Canal Syfy (Panamá) + Canal Syfy (Paraguay) + Canal Syfy (Perú) + Canal Syfy (República Dominicana) + Canal Syfy (Uruguay) + Canal Syfy (Venezuela) + Canal TBS (Argentina) + Canal TBS (Bolivia) + Canal TBS (Chile) + Canal TBS (Colombia) + Canal TBS (Costa Rica) + Canal TBS (Ecuador) + Canal TBS (El Salvador) + Canal TBS (Guatemala) + Canal TBS (Honduras) + Canal TBS (Latinoamérica) + Canal TBS (México) + Canal TBS (Nicaragua) + Canal TBS (Panamá) + Canal TBS (Paraguay) + Canal TBS (Perú) + Canal TBS (República Dominicana) + Canal TBS (Uruguay) + Canal TBS (Venezuela) + Canal TC Televisión + Canal TCM (Argentina) + Canal TCM (Bolivia) + Canal TCM (Chile) + Canal TCM (Colombia) + Canal TCM (Costa Rica) + Canal TCM (Ecuador) + Canal TCM (El Salvador) + Canal TCM (Guatemala) + Canal TCM (Honduras) + Canal TCM (México) + Canal TCM (Nicaragua) + Canal TCM (Panamá) + Canal TCM (Paraguay) + Canal TCM (Perú) + Canal TCM (República Dominicana) + Canal TCM (Sur) + Canal TCM (Uruguay) + Canal TCM (Venezuela) + Canal TDN 2.0 + Canal TeenNick + Canal Telecadena 7 y 4 (Honduras) + Canal Telehit Música Plus + Canal Telemundo (Abilene) + Canal Telemundo (Albuquerque) + Canal Telemundo (Amarillo) + Canal Telemundo (Anchorage) + Canal Telemundo (Área de la Bahía) + Canal Telemundo (Argentina) + Canal Telemundo (Atlanta) + Canal Telemundo (Austin) + Canal Telemundo (Bakersfield) + Canal Telemundo (Bend) + Canal Telemundo (Boise) + Canal Telemundo (Bolivia) + Canal Telemundo (Boston) + Canal Telemundo (Charlotte) + Canal Telemundo (Chicago) + Canal Telemundo (Chico - Redding) + Canal Telemundo (Chile) + Canal Telemundo (Colombia) + Canal Telemundo (Colorado Springs) + Canal Telemundo (Columbia) + Canal Telemundo (Columbus) + Canal Telemundo (Corpus Christi) + Canal Telemundo (Costa Rica) + Canal Telemundo (Dallas - Fort Worth) + Canal Telemundo (Denver) + Canal Telemundo (Ecuador) + Canal Telemundo (El Paso) + Canal Telemundo (El Salvador) + Canal Telemundo (Evansville) + Canal Telemundo (Filadelfia) + Canal Telemundo (Fort Myers - Naples) + Canal Telemundo (Fort Smith) + Canal Telemundo (Fresno) + Canal Telemundo (Grand Junction) + Canal Telemundo (Guatemala) + Canal Telemundo (Hartford - Springfield) + Canal Telemundo (Honduras) + Canal Telemundo (Honolulu) + Canal Telemundo (Houston) + Canal Telemundo (Idaho Falls) + Canal Telemundo (Indianápolis) + Canal Telemundo (Kansas City) + Canal Telemundo (Lincoln) + Canal Telemundo (Los Ángeles) + Canal Telemundo (Lubbock) + Canal Telemundo (McAllen) + Canal Telemundo (Medford) + Canal Telemundo (Miami) + Canal Telemundo (Milwuakee) + Canal Telemundo (Minneapolis) + Canal Telemundo (New Orleans) + Canal Telemundo (Nicaragua) + Canal Telemundo (Nueva York) + Canal Telemundo (Odessa - Midland) + Canal Telemundo (Oklahoma City) + Canal Telemundo (Orlando) + Canal Telemundo (Palm Springs) + Canal Telemundo (Panamá) + Canal Telemundo (Panregional) + Canal Telemundo (Paraguay) + Canal Telemundo (Perú) + Canal Telemundo (Phoenix) + Canal Telemundo (Portland) + Canal Telemundo (Providence) + Canal Telemundo Puerto Rico + Canal Telemundo (Raleigh) + Canal Telemundo (República Dominicana) + Canal Telemundo (Richmond) + Canal Telemundo (Rochester) + Canal Telemundo (Rockford) + Canal Telemundo (Sacramento) + Canal Telemundo (Salinas - Monterey) + Canal Telemundo (Salisbury) + Canal Telemundo (Salt Lake City) + Canal Telemundo (San Antonio) + Canal Telemundo (San Diego) + Canal Telemundo (Santa Bárbara) + Canal Telemundo (Savannah) + Canal Telemundo (Seattle) + Canal Telemundo (South Bend) + Canal Telemundo (St. Joseph) + Canal Telemundo (Tampa) + Canal Telemundo (Tucson) + Canal Telemundo (Tulsa) + Canal Telemundo (Tyler) + Canal Telemundo (Uruguay) + Canal Telemundo (Venezuela) + Canal Telemundo (Victoria) + Canal Telemundo (Waco) + Canal Telemundo (Washington) + Canal Telemundo (Wichita Falls - Lawton) + Canal Telemundo (Wichita-Hutchinson) + Canal Telemundo (Yakima) + Canal Telemundo (Yuma) + Canal teleSUR + Canal Tiva TV (Puerto Rico) + Canal TLC (Argentina) + Canal TLC (Bolivia) + Canal TLC (Chile) + Canal TLC (Colombia) + Canal TLC (Costa Rica) + Canal TLC (Ecuador) + Canal TLC (El Salvador) + Canal TLC (Guatemala) + Canal TLC (Honduras) + Canal TLC (Nicaragua) + Canal TLC (Panamá) + Canal TLC (Paraguay) + Canal TLC (Perú) + Canal TLC (República Dominicana) + Canal TLC (Sur) + Canal TLC (Uruguay) + Canal TLC (Venezuela) + Canal Telenovelas (TLNovelas) + Canal TLNovelas (Argentina) + Canal TLNovelas (Bolivia) + Canal TLNovelas (Chile) + Canal TLNovelas (Colombia) + Canal TLNovelas (Costa Rica) + Canal TLNovelas (Ecuador) + Canal TLNovelas (El Salvador) + Canal TLNovelas (Guatemala) + Canal TLNovelas (Honduras) + Canal TLNovelas (Nicaragua) + Canal TLNovelas (Panamá) + Canal TLNovelas (Paraguay) + Canal TLNovelas (Perú) + Canal TLNovelas (República Dominicana) + Canal TLNovelas (Uruguay) + Canal TLNovelas (Venezuela) + Canal TN23 + Canal TNT (Argentina) + Canal TNT (Bolivia) + Canal TNT (Centroamérica y Caribe) + Canal TNT (Chile) + Canal TNT (Colombia) + Canal TNT (Costa Rica) + Canal TNT (Ecuador) + Canal TNT (El Salvador) + Canal TNT (España) + Canal TNT (Guatemala) + Canal TNT (Honduras) + Canal TNT (Nicaragua) + Canal TNT Novelas (Argentina) + Canal TNT Novelas (Bolivia) + Canal TNT Novelas (Chile) + Canal TNT Novelas (Colombia) + Canal TNT Novelas (Costa Rica) + Canal TNT Novelas (Ecuador) + Canal TNT Novelas (El Salvador) + Canal TNT Novelas (Guatemala) + Canal TNT Novelas (Honduras) + Canal TNT Novelas (Latinoamérica) + Canal TNT Novelas (México) + Canal TNT Novelas (Nicaragua) + Canal TNT Novelas (Panamá) + Canal TNT Novelas (Paraguay) + Canal TNT Novelas (Perú) + Canal TNT Novelas (República Dominicana) + Canal TNT Novelas (Uruguay) + Canal TNT Novelas (Venezuela) + Canal TNT (Panamá) + Canal TNT (Paraguay) + Canal TNT (Perú) + Canal TNT (República Dominicana) + Canal TNT Series + Canal TNT Series (Argentina) + Canal TNT Series (Bolivia) + Canal TNT Series (Chile) + Canal TNT Series (Colombia) + Canal TNT Series (Costa Rica) + Canal TNT Series (Ecuador) + Canal TNT Series (El Salvador) + Canal TNT Series (Guatemala) + Canal TNT Series (Honduras) + Canal TNT Series (México) + Canal TNT Series (Nicaragua) + Canal TNT Series (Panamá) + Canal TNT Series (Paraguay) + Canal TNT Series (Perú) + Canal TNT Series (República Dominicana) + Canal TNT Series (Uruguay) + Canal TNT Series (Venezuela) + Canal TNT Sports + Canal TNT Sports 2 (Chile) + Canal TNT Sports 3 (Chile) + Canal TNT (Uruguay) + Canal TNT (Venezuela) + Canal Todo Noticias + Canal Tr3s + Canal Trace Sports HD Latinoamérica + Canal truTV + Canal TUDN (Centroamérica) + Canal TUDN (Costa Rica) + Canal TUDN (El Salvador) + Canal TUDN (Guatemala) + Canal TUDN Honduras + Canal TUDN (Nicaragua) + Canal TUDN (Panamá) + Canal TV Agro Centroamérica + Canal TV Azteca Noticias + Canal TV Perú + Canal TVC (México) + Canal UDN (Univision Deportes Network) + Canal UFC Network Latinoamérica + Canal Ultra Cine + Canal Ultra Docu + Canal Ultra Fiesta + Canal Ultra Film + Canal Ultra Kidz + Canal Ultra Tainment + Canal Unicable (Latinoamérica) + Canal UniMás + Canal UniMás (Arizona) + Canal UniMás (Austin) + Canal UniMás (Bakersfield) + Canal UniMás (Boston) + Canal UniMás (Chicago) + Canal UniMás (Chico) + Canal UniMás (Corpus Christi) + Canal UniMás (Costa Central) + Canal UniMás (Dallas - Fort Worth) + Canal UniMás (Denver) + Canal UniMás (Douglas) + Canal UniMás (El Centro) + Canal UniMás (El Paso) + Canal UniMás (Filadelfia) + Canal UniMás (Flagstaff) + Canal UniMás (Fort Myers) + Canal UniMás (Fresno) + Canal UniMás (Hartford) + Canal UniMás (Houston) + Canal UniMás (Laredo) + Canal UniMás (Las Vegas) + Canal UniMás (Los Ángeles) + Canal UniMás (Miami) + Canal UniMás (Monterey - Salinas) + Canal UniMás (Nashville) + Canal UniMás (Nueva York) + Canal UniMás (Nuevo México) + Canal UniMás (Orlando) + Canal UniMás (Palm Springs) + Canal UniMás (Raleigh) + Canal UniMás (Sacramento) + Canal UniMás (San Angelo) + Canal UniMás (San Antonio) + Canal UniMás (San Diego) + Canal UniMás (San Francisco) + Canal UniMás (Tampa) + Canal UniMás (Washington) + Canal Universal TV (Argentina) + Canal Universal TV (Bolivia) + Canal Universal TV (Chile) + Canal Universal TV (Colombia) + Canal Universal TV (Costa Rica) + Canal Universal TV (Ecuador) + Canal Universal TV (El Salvador) + Canal Universal TV (Guatemala) + Canal Universal TV (Honduras) + Canal Universal TV (Nicaragua) + Canal Universal TV (Panamá) + Canal Universal TV (Paraguay) + Canal Universal TV (Perú) + Canal Universal TV (República Dominicana) + Canal Universal TV (Sur) + Canal Universal TV (Uruguay) + Canal Universal TV (Venezuela) + Canal Univisión (Albuquerque) + Canal Univision (Argentina) + Canal Univision (Arizona) + Canal Univisión (Atlanta) + Canal Univision (Austin) + Canal Univision (Bakersfield) + Canal Univision (Bolivia) + Canal Univision (Boston) + Canal Univision (Caguas) + Canal Univision (Carolina del Norte) + Canal Univision (Chicago) + Canal Univision (Chico - Redding) + Canal Univision (Chile) + Canal Univision (Cleveland) + Canal Univision (Colombia) + Canal Univision (Corpus Christi) + Canal Univision (Costa Central) + Canal Univision (Costa Rica) + Canal Univision (Dallas) + Canal Univision (Denver) + Canal Univision (Ecuador) + Canal Univision (El Paso) + Canal Univisión (El Salvador) + Canal Univision (Eureka) + Canal Univision (Filadelfia) + Canal Univision (Fort Myers) + Canal Univision (Fort Smith) + Canal Univision (Fresno) + Canal Univisión (Guatemala) + Canal Univision (Hartford) + Canal Univisión (Honduras) + Canal Univision (Houston) + Canal Univision (Kansas) + Canal Univision (La Grande) + Canal Univision (Laredo) + Canal Univision (Las Vegas) + Canal Univisión (Latinoamérica) + Canal Univision (Little Rock) + Canal Univision (Los Ángeles) + Canal Univision (Miami) + Canal Univision (Minnesota) + Canal Univision (Monterey) + Canal Univisión (Nicaragua) + Canal Univision (Nueva York) + Canal Univision (Oklahoma) + Canal Univision (Orlando) + Canal Univision (Palm Springs) + Canal Univisión (Panamá) + Canal Univisión (Paraguay) + Canal Univisión (Perú) + Canal Univision (Portland) + Canal Univision (Puerto Rico) + Canal Univision (Reno) + Canal Univisión (República Dominicana) + Canal Univision (Sacrameanto) + Canal Univision (Salt Lake City) + Canal Univision (San Antonio) + Canal Univision (San Diego) + Canal Univision (San Francisco) + Canal Univision (Seattle) + Canal Univision (Tampa) + Canal Univisión TDN + Canal Univision (Tucson) + Canal Univision (Tulsa) + Canal Univisión (Uruguay) + Canal Univision (Valle del Río Grande) + Canal Univision (Victoria) + Canal Univision (Washington) + Canal Univision (Wichita) + Canal Univision (Yakima) + Canal Univision (Yuma) + Canal Uno (Ecuador) + Canal USA Network (Argentina) + Canal USA Network (Bolivia) + Canal USA Network (Chile) + Canal USA Network (Colombia) + Canal USA Network (Costa Rica) + Canal USA Network (Ecuador) + Canal USA Network (El Salvador) + Canal USA Network (Guatemala) + Canal USA Network (Honduras) + Canal USA Network (Latinoamérica) + Canal USA Network (México) + Canal USA Network (Nicaragua) + Canal USA Network (Panamá) + Canal USA Network (Paraguay) + Canal USA Network (Perú) + Canal USA Network (República Dominicana) + Canal USA Network (Uruguay) + Canal USA Network (Venezuela) + Canal Utilisima + Canal Ve Plus (Latinoamérica) + Canal Venevisión (USA) + Canal VH1 (Latinoamérica) + Canal VH1 Classic + Canal VH1 (Europa) + Canal VH1 HD (Latinoamérica) + Canal VH1 MegaHits Latinoamérica + Canal Viajar (España) + Canal Vme TV + Canal Warner TV (Argentina) + Canal Warner TV (Bolivia) + Canal Warner TV (Chile) + Canal Warner TV (Colombia) + Canal Warner TV (Costa Rica) + Canal Warner TV (Ecuador) + Canal Warner TV (El Salvador) + Canal Warner TV (España) + Canal Warner TV (Guatemala) + Canal Warner TV (Honduras) + Canal Warner TV (México) + Canal Warner TV (Nicaragua) + Canal Warner TV (Panamá) + Canal Warner TV (Paraguay) + Canal Warner TV (Perú) + Canal Warner TV (República Dominicana) + Canal Warner TV (Sur) + Canal Warner TV (Uruguay) + Canal Warner TV (Venezuela) + Canal ZAZ + Canal Zee Mundo + Canal ZooMoo Latinoamérica + Canal 24 Horas (Chile) + Canal 24 Horas (TVE) + Canal M+ Acción + Canal Adrenalina Sports Network + Canal A&E (Chile) + Canal A&E (México) + Canal A&E (Panregional) + Canal Agrotendencia TV + Canal AMC Break + Canal AMC Crime + Canal AMC (España) + Canal América Televisión (Perú) + Canal América TeVé + Canal America TV (Argentina) + Canal Antena 3 de España + Canal Antena 3 + Canal 7 de Antena Latina (República Dominicana) + Canal a+ + Canal Aprende + Canal Atreseries (España) + Canal Atreseries (Internacional) + Canal ATV + Canal AXN (España) + Canal AXN (Andes) + Canal AXN (México) + Canal AXN (Sur) + Canal AYM Sports + Canal TV Azteca Corazón + Canal TV Azteca Mundo + Canal Azteca 7 (México) + Canal Azteca Guatemala + Canal Azteca Uno + Canal BabyFirst TV + Canal Bandamax + Canal BBC World News + Canal beIN Sport en Español + Canal Be Mad + Canal BET Jams + Canal BitMe + Canal 9 Noticias (Paraguay) + Canal Cablenoticias + Canal Calle 13 + Canal 1 (Colombia) + Canal 2 de Nicaragua (Televicentro) + Canal 2 de El Salvador + Canal 3 de Guatemala + Canal 4 de Costa Rica + Canal 4 de El Salvador + Canal 5 El Líder (Honduras) + Canal 6 de Costa Rica + Canal 6 de El Salvador + Canal Multimedios (Costa Rica) + Canal 11 de Costa Rica + Canal 12 de El Salvador + Canal 13 de Chile + Canal Antigua (Guatemala) + Canal Cocina + Canal Congreso (Colombia) + Canal Institucional (Colombia) + Canal Sur + Canal Sur Andalucía + Canal Tro + Canal Caracol Internacional + Canal Caracol (Colombia) + Canal Cartoonito (México) + Canal Cartoon Network (Pacífico) + Canal Cartoon Network (México) + Canal Cartoon Network (Atlántico Norte) + Canal Cartoon Network (Atlántico Sur) + Canal 37 de República Dominicana (CDN) + Canal CDN Deportes + Canal Chilevisión (CHV) + Canal Cinecanal (México) + Canal Cinecanal (Pacífico) + Canal Cinecanal (Sur) + Canal CineClick + Canal Cine Estelar + Canal Cinelatino + Canal Cinema Platino + Canal Cinema + + Canal Cinemax (Chile) + Canal Cinemax (México) + Canal Cinemax (Panregional) + Canal Cine Mexicano + Canal Cine Nostalgia + Canal Cine Sony + Canal Clan TVE + Canal Castilla-La Mancha Media + Canal CNN Chile + Canal CNN en Español + Canal CNN Internacional + Canal 9 de Color Visión (República Dominicana) + Canal Movistar Comedia + Canal Comedy Central (España) + Canal Concert Channel + Canal Cosmopolitan (España) + Canal Cuatro de España + Canal De Película Clásico + Canal De Película + Canal DHE + Canal 15 (Digital Quince Telemicro) (República Dominicana) + Canal Discovery Channel (España) + Canal Discovery Channel (Chile) + Canal Discovery Channel (México) + Canal Discovery en Español + Canal Discovery Familia + Canal Discovery Home & Health (México) + Canal Discovery Kids (Chile) + Canal Discovery Kids (México) + Canal Discovery Science (Latinoamérica) + Canal Discovery Theater (Latinoamérica) + Canal Discovery World Latinoamérica + Canal Disney Channel (Centro) + Canal Disney Channel (México) + Canal Disney Channel (Sur) + Canal Disney Junior (Norte) + Canal Disney Junior (Sur) + Canal Disney Junior (España) + Canal Distrito Comedia + Canal Divinity + Canal Ecuador TV + Canal Ecuavisa (Ecuador) + Canal Ecuavisa Internacional + Canal Efekto TV (Efekto Noticias) + Canal 13 de Argentina (El Trece) + Canal Energy + Canal ESNE TV + Canal ESPN 2 (Colombia) + Canal ESPN 2 México + Canal ESPN 2 (Norte) + Canal ESPN 3 (Sur) + Canal ESPN 4 (Norte) + Canal ESPN Deportes + Canal ESPN (Chile) + Canal ESPN (Colombia) + Canal ESPN (México) + Canal ESPN (Norte) + Canal Estrella TV + Canal ETB 1 + Canal ETB 2 + Canal Eurochannel + Canal Europa Europa + Canal Eurosport 1 (España) + Canal Eurosport 2 (España) + Canal Excelsior TV + Canal Extra TV 42 de Costa Rica + Canal Foro TV + Canal Fox Deportes + Canal Fox News + Canal FUTV + Canal FX (Chile) + Canal FX (México) + Canal Gamavisión + Canal Golden (Panregional) + Canal Golden Plus + Canal Golden Premier 2 + Canal Golden Premier + Canal Golf Channel (Latinoamérica) + Canal Gol TV Estados Unidos + Canal Guatevisión + Canal HBO 2 Latinoamérica + Canal HBO Family Latinoamérica + Canal HBO (Latinoamérica) + Canal HBO Latino Este + Canal HBO Mundi + Canal HBO Plus + Canal HBO Pop + Canal HBO Signature Latinoamérica + Canal HBO Xtreme + Canal Historia (España) + Canal History 2 (México) + Canal History 2 (Panregional) + Canal History (Chile) + Canal History (México) + Canal History en Español + Canal History (Panregional) + Canal HITN + Canal HLN + Canal ¡HOLA! TV + Canal HTV + Canal Iberalia TV + Canal Ingenio TV (México) + Canal Inti Network + Canal Investigation Discovery (México) + Canal Investigation Discovery (Panregional) + Canal La 1 + Canal La 2 + Canal Movistar LaLiga + Canal laOtra + Canal La Red TV (Guatemala) + Canal 2 de México (Canal Las Estrellas - XEW) + Canal Las Estrellas Latinoamérica + Canal La Sexta + Canal La Tele (Paraguay) + Canal Frecuencia Latina + Canal Lifetime (México) + Canal Lifetime (Panregional) + Canal María Visión + Canal MC + Canal Mega (Chile) + Canal Mega (España) + Canal Meganoticias MX + Canal 21 de El Salvador (Megavisión) + Canal Mexiquense TV + Canal Milenio TV + Canal MTV (España) + Canal MTV (Sur) + Canal Multimedios Plus + Canal National Geographic (España) + Canal National Geographic (México) + Canal Universo + Canal Neox + Canal NFL Network + Canal NHK World + Canal Nickelodeon (España) + Canal Nick Jr. (España) + Canal NickMusic + Canal Nova + Canal Noticias PY (Paraguay) + Canal NTN24 (Nuestra Tele Noticias 24 Horas) + Canal Odisea + Canal Pakapaka + Canal Panamericana Televisión + Canal Pánico + Canal Paraguay TV + Canal Paravisión + Canal Pasiones (Estados Unidos) + Canal Pasiones (Latinoamérica) + Canal Perú Mágico + Canal PX Sports + Canal RCN Novelas + Canal Real Madrid TV + Canal RTS + Canal Semillitas + Canal Señal Colombia + Canal Sky One (México) + Canal Sky Sports 1 (México) + Canal Sky Sports 16 + Canal Sky Sports 24 + Canal SNT (Paraguay) + Canal Sony (México) + Canal Sorpresa + Canal Space (México) + Canal Space (Panregional) + Canal Space (Sur) + Canal Star Channel (México) + Canal Studio Universal (México) + Canal Studio Universal (Panregional) + Canal Sundance TV (España) + Canal Sur TV Itapúa (Paraguay) + Canal Syfy (España) + Canal TCM (España) + Canal TCM (Panregional) + Canal Teleamazonas + Canal 2 de República Dominicana (Teleantillas) + Canal Teleantioquia + Canal Telecafé + Canal Telecaribe + Canal Telecentro (13 de República Dominicana) + Canal Telecentro TV + Canal Telecinco + Canal Teledeporte + Canal Telefé (Argentina) + Canal Telefe Internacional + Canal Telefórmula + Canal Telefuturo + Canal Telehit + Canal Telehit Música + Canal 7 de Puerto Rico (teleisla) + Canal Teleislas + Canal TeleMadrid + Canal 5 de República Dominicana (Telemicro) + Canal Telemundo (México) + Canal Telenostalgia + Canal 11 de Guatemala + Canal Telepacífico + Canal Telesistema 11 (República Dominicana) + Canal 7 de Costa Rica (Teletica) + Canal Teleunion (República Dominicana) + Canal 29 de TeleUniverso (República Dominicana) + Canal 4 de Guadalajara (México) + Canal 7 de Guatemala + Canal Televisión Canaria + Canal Televisión Dominicana + Canal Tigo Sports (Costa Rica) + Canal Tigo Sports (Guatemala) + Canal Tigo Sports (El Salvador) + Canal TLC (México) + Canal TLC (Panregional) + Canal TLNovelas (Latinoamérica) + Canal TLNovelas (México) + Canal TNT (Pacífico) + Canal TNT (México) + Canal TNT (Sur) + Canal Tooncast + Canal 13 de Colombia (Trece) + Canal 13 de Paraguay (Trece) + Canal Telesistema Informativo (TSI) (Honduras) + Canal TUDN (México) + Canal TUDN (Estados Unidos) + Canal TV5MONDE + Canal TVC Deportes + Canal TV Chile + Canal TVE Internacional (Televisión Española) + Canal TV Globo Internacional + Canal 9 de Panamá (TVMax) + Canal TVN (Chile) + Canal 2 de Panamá (TVN-2) + Canal Televisión Pública (Argentina) + Canal TVUNAM + Canal TyC Sports + Canal Unicable (México) + Canal Unicanal + Canal Universal Cinema + Canal Universal Comedy + Canal Universal Crime + Canal Universal Premiere + Canal Universal Reality + Canal Universal TV (México) + Canal Universal TV (Panregional) + Canal Univision TLNovelas + Canal #Vamos + Canal Ve Plus (Estados Unidos) + Canal Vía X + Canal Vibra TV + Canal Video Rola + Canal ViendoMovies + Canal 13 de Nicaragua (Viva Nicaragua) + Canal VTV Honduras (Vica TV) + Canal WAPA-TV + Canal WAPA 2 Deportes + Canal Warner TV (Panregional) + Canal Willax TV + Canal 6 de Puerto Rico (WIPR-TV) + Canal Punto 2 Puerto Rico + Canal WOBI + Canal 13 de Puerto Rico (Teleoro) + Canal 4 de Monterrey (XEFB-TDT) + Canal 22 de México + Canal 11 de México + Canal Zona Latina + Canal ZOOM (Colombia) diff --git a/sites/gatotv.com/gatotv.com.config.js b/sites/gatotv.com/gatotv.com.config.js index cf1b34e0a..fb19cec92 100644 --- a/sites/gatotv.com/gatotv.com.config.js +++ b/sites/gatotv.com/gatotv.com.config.js @@ -1,6 +1,5 @@ const axios = require('axios') const cheerio = require('cheerio') -const url = require('url') const path = require('path') const dayjs = require('dayjs') const utc = require('dayjs/plugin/utc') @@ -44,24 +43,36 @@ module.exports = { }, async channels() { const data = await axios - .get('https://www.gatotv.com/guia_tv/completa') + .get('https://www.gatotv.com/canales_de_tv') .then(response => response.data) .catch(console.log) const $ = cheerio.load(data) - const items = $('.tbl_EPG_row,.tbl_EPG_rowAlternate').toArray() + const items = $('table.tbl_tv_guide tr.tbl_EPG_row, table.tbl_tv_guide tr.tbl_EPG_rowAlternate').toArray() - return items.map(item => { - const $item = cheerio.load(item) - const link = $item('td:nth-child(1) > div:nth-child(2) > a:nth-child(3)').attr('href') - const parsed = url.parse(link) + return items + .map(item => { + const $item = cheerio.load(item) + const link = $item('a[href*="/canal/"]').first().attr('href') + if (!link) return null - return { - lang: 'es', - site_id: path.basename(parsed.pathname), - name: $item('td:nth-child(1) > div:nth-child(2) > a:nth-child(3)').text() - } - }) + let pathname + try { + pathname = new URL(link, 'https://www.gatotv.com').pathname + } catch { + return null + } + + const name = $item('td:nth-child(2) a').text().trim() || $item('a[href*="/canal/"]').last().text().trim() + if (!name) return null + + return { + lang: 'es', + site_id: path.basename(pathname), + name + } + }) + .filter(Boolean) } } From a53abf766852ecda22c951f60c721a618bc29012 Mon Sep 17 00:00:00 2001 From: theofficialomega <30985701+BellezaEmporium@users.noreply.github.com> Date: Sat, 18 Apr 2026 12:42:25 +0200 Subject: [PATCH 28/92] add France.tv & directv fixes --- sites/directv.com/__data__/content.json | 5833 ++++++++++---------- sites/directv.com/__data__/no-content.json | 25 +- sites/directv.com/directv.com.channels.xml | 2199 ++++---- sites/directv.com/directv.com.config.js | 168 +- sites/directv.com/directv.com.test.js | 83 +- sites/france.tv/__data__/content.json | 1028 ++++ sites/france.tv/france.tv.channels.xml | 19 + sites/france.tv/france.tv.config.js | 135 + sites/france.tv/france.tv.test.js | 54 + sites/france.tv/readme.md | 21 + 10 files changed, 5512 insertions(+), 4053 deletions(-) create mode 100644 sites/france.tv/__data__/content.json create mode 100644 sites/france.tv/france.tv.channels.xml create mode 100644 sites/france.tv/france.tv.config.js create mode 100644 sites/france.tv/france.tv.test.js create mode 100644 sites/france.tv/readme.md diff --git a/sites/directv.com/__data__/content.json b/sites/directv.com/__data__/content.json index 9ab30cb36..33ac86ae4 100644 --- a/sites/directv.com/__data__/content.json +++ b/sites/directv.com/__data__/content.json @@ -1,2953 +1,3016 @@ { - "schedule": [ + "schedules": [ { - "secLiveStreaming": "N", - "chNum": 249, - "authCode": "NA", - "chRec": true, - "chCall": "COMWHD", - "chId": 2598, - "secondaryChannelId": 0, - "chHd": true, - "secondary": false, - "blackOut": false, - "chAdult": false, - "chCat": [ - "Entertainment & Music Channels", - "HDTV Channels" - ], - "chLogoId": 157, - "detailsLinkUrl": "/Channels/Comedy-Central-West-HD-249", - "schedules": [ + "channelId": "5070bc2e-dd69-4dee-98b4-a4c5e3b1fd7b", + "contents": [ { - "primaryImageUrl": "/db_photos/movies/AllPhotosAPGI/19526/19526_aa.jpg", - "restartAllowed": false, - "subcategoryList": [ - "Comedy", - "Movies Anywhere", - "Action/Adventure", - "Science Fiction" + "apgId": "EP000169160174", + "canonicalId": "fd8646f0-d4ee-e996-5dd4-a41648186aac", + "categories": [ + "TVShow" ], - "gridViewPrimaryImageUrl": "/db_photos/movies/AllPhotosAPGI/19526/19526_aa_p.jpg", - "rating": "TV14", - "description": null, - "title": "Men in Black", - "episodeNumber": null, - "duration": 120, - "price": 0, - "repeat": true, - "lookBack": false, - "tvAdvisory": [ - "V" + "consumables": [ + { + "augmentation": { + "constraints": { + "isPlayable": false, + "isRecordable": false, + "isRestart": true, + "isLookback": false, + "isDAI": false, + "isFastForwardDisabled": true, + "isExtendable": false, + "isCDVRUpsell": false + } + }, + "consumableType": "LINEAR", + "duration": 1800, + "endTime": "2026-04-06T00:30:00Z", + "format": "HD", + "metadataLanguage": "en", + "parentalRating": "TVPG", + "programChannelId": "5070bc2e-dd69-4dee-98b4-a4c5e3b1fd7b", + "qualifiers": [ + "CC", + "1080p", + "HDTV" + ], + "resourceId": "b0c8df8c-3732-3874-8a36-6810951767c3", + "scheduleId": "b0c8df8c-3732-3874-8a36-6810951767c3", + "startTime": "2026-04-06T00:00:00Z" + } ], - "dimension": "2D", - "ltd": "", - "programID": "MV000510190000", - "blackoutCode": "NA", - "airTime": "2023-01-15T00:00:00.000+0000", - "secLiveStreaming": "N", - "prOrd": 0, - "episodeTitle": null, - "authCode": "NA", - "format": "HD", - "seasonNumber": null, - "listViewPrimaryImageUrl": "/db_photos/movies/AllPhotosAPGI/19526/19526_aa_l.jpg", - "eventCode": "", - "mainCategory": "Movies", - "hd": 1, - "liveStreaming": "N" - }, - { - "primaryImageUrl": "/db_photos/movies/AllPhotosAPGI/29160/29160_aa.jpg", - "restartAllowed": false, - "subcategoryList": [ - "Comedy", - "Movies Anywhere", - "Action/Adventure", - "Science Fiction" - ], - "gridViewPrimaryImageUrl": "/db_photos/movies/AllPhotosAPGI/29160/29160_aa_p.jpg", - "rating": "TV14", - "description": null, - "title": "Men in Black II", - "episodeNumber": null, - "duration": 120, - "price": 0, - "repeat": true, - "lookBack": false, - "dimension": "2D", - "ltd": "", - "programID": "MV001173520000", - "blackoutCode": "NA", - "airTime": "2023-01-15T02:00:00.000+0000", - "secLiveStreaming": "N", - "prOrd": 0, - "episodeTitle": null, - "authCode": "NA", - "format": "HD", - "seasonNumber": null, - "listViewPrimaryImageUrl": "/db_photos/movies/AllPhotosAPGI/29160/29160_aa_l.jpg", - "eventCode": "", - "mainCategory": "Movies", - "hd": 1, - "liveStreaming": "N" - }, - { - "primaryImageUrl": "/db_photos/movies/AllPhotosAPGI/8797139/8797139_aa.jpg", - "restartAllowed": false, - "subcategoryList": [ - "Comedy", - "Movies Anywhere", - "Action/Adventure", - "Science Fiction" - ], - "gridViewPrimaryImageUrl": "/db_photos/movies/AllPhotosAPGI/8797139/8797139_aa_p.jpg", - "rating": "TV14", - "description": null, - "title": "Men in Black 3", - "episodeNumber": null, - "duration": 150, - "price": 0, - "repeat": true, - "lookBack": false, - "dimension": "2D", - "ltd": "", - "programID": "MV003695340000", - "blackoutCode": "NA", - "airTime": "2023-01-15T04:00:00.000+0000", - "secLiveStreaming": "N", - "prOrd": 0, - "episodeTitle": null, - "authCode": "NA", - "format": "HD", - "seasonNumber": null, - "listViewPrimaryImageUrl": "/db_photos/movies/AllPhotosAPGI/8797139/8797139_aa_l.jpg", - "eventCode": "", - "mainCategory": "Movies", - "hd": 1, - "liveStreaming": "N" - }, - { - "primaryImageUrl": "/db_photos/movies/AllPhotosAPGI/11928727/11928727_aa.jpg", - "restartAllowed": false, - "subcategoryList": [ - "Comedy", - "Movies Anywhere", - "Action/Adventure" - ], - "gridViewPrimaryImageUrl": "/db_photos/movies/AllPhotosAPGI/11928727/11928727_aa_p.jpg", - "rating": "TV14", - "description": null, - "title": "Ride Along 2", - "episodeNumber": null, - "duration": 120, - "price": 0, - "repeat": true, - "lookBack": false, - "tvAdvisory": [ - "V" - ], - "dimension": "2D", - "ltd": "", - "programID": "MV007793670000", - "blackoutCode": "NA", - "airTime": "2023-01-15T06:30:00.000+0000", - "secLiveStreaming": "N", - "prOrd": 0, - "episodeTitle": null, - "authCode": "NA", - "format": "HD", - "seasonNumber": null, - "listViewPrimaryImageUrl": "/db_photos/movies/AllPhotosAPGI/11928727/11928727_aa_l.jpg", - "eventCode": "", - "mainCategory": "Movies", - "hd": 1, - "liveStreaming": "N" - }, - { - "primaryImageUrl": "/db_photos/showcards/v5/AllPhotos/184338/p184338_b_v5_aa.jpg", - "restartAllowed": false, - "subcategoryList": [ - "Series", - "Animation", - "Comedy" - ], - "gridViewPrimaryImageUrl": "/db_photos/showcards/v5/AllPhotosAPGT/184338/p184338_b_v5_aa_p.jpg", - "rating": "TVMA", - "description": null, - "title": "South Park", - "episodeNumber": 2, - "duration": 30, - "price": 0, - "repeat": true, - "lookBack": false, - "tvAdvisory": [ - "D", - "L" - ], - "dimension": "2D", - "ltd": "", - "programID": "EP002298270441", - "blackoutCode": "NA", - "airTime": "2023-01-15T08:30:00.000+0000", - "secLiveStreaming": "N", - "prOrd": 0, - "episodeTitle": "Informative Murder Porn", - "authCode": "NA", - "format": "HD", - "seasonNumber": 17, - "listViewPrimaryImageUrl": "/db_photos/showcards/v5/AllPhotosAPGT/184338/p184338_b_v5_aa_l.jpg", - "eventCode": "", - "mainCategory": "TV", - "hd": 1, - "liveStreaming": "N" - }, - { - "primaryImageUrl": "/db_photos/showcards/v5/AllPhotos/184338/p184338_b_v5_aa.jpg", - "restartAllowed": false, - "subcategoryList": [ - "Series", - "Animation", - "Comedy" - ], - "gridViewPrimaryImageUrl": "/db_photos/showcards/v5/AllPhotosAPGT/184338/p184338_b_v5_aa_p.jpg", - "rating": "TVMA", - "description": null, - "title": "South Park", - "episodeNumber": 4, - "duration": 30, - "price": 0, - "repeat": true, - "lookBack": false, - "tvAdvisory": [ - "D", - "L" - ], - "dimension": "2D", - "ltd": "", - "programID": "EP002298270445", - "blackoutCode": "NA", - "airTime": "2023-01-15T09:00:00.000+0000", - "secLiveStreaming": "N", - "prOrd": 0, - "episodeTitle": "Goth Kids 3: Dawn of the Posers", - "authCode": "NA", - "format": "HD", - "seasonNumber": 17, - "listViewPrimaryImageUrl": "/db_photos/showcards/v5/AllPhotosAPGT/184338/p184338_b_v5_aa_l.jpg", - "eventCode": "", - "mainCategory": "TV", - "hd": 1, - "liveStreaming": "N" - }, - { - "primaryImageUrl": "/db_photos/showcards/v5/AllPhotos/184338/p184338_b_v5_aa.jpg", - "restartAllowed": false, - "subcategoryList": [ - "Series", - "Animation", - "Comedy" - ], - "gridViewPrimaryImageUrl": "/db_photos/showcards/v5/AllPhotosAPGT/184338/p184338_b_v5_aa_p.jpg", - "rating": "TVMA", - "description": null, - "title": "South Park", - "episodeNumber": 5, - "duration": 30, - "price": 0, - "repeat": true, - "lookBack": false, - "tvAdvisory": [ - "D", - "L" - ], - "dimension": "2D", - "ltd": "", - "programID": "EP002298270446", - "blackoutCode": "NA", - "airTime": "2023-01-15T09:30:00.000+0000", - "secLiveStreaming": "N", - "prOrd": 0, - "episodeTitle": "Taming Strange", - "authCode": "NA", - "format": "HD", - "seasonNumber": 17, - "listViewPrimaryImageUrl": "/db_photos/showcards/v5/AllPhotosAPGT/184338/p184338_b_v5_aa_l.jpg", - "eventCode": "", - "mainCategory": "TV", - "hd": 1, - "liveStreaming": "N" - }, - { - "primaryImageUrl": "/db_photos/showcards/v5/AllPhotos/184338/p184338_b_v5_aa.jpg", - "restartAllowed": false, - "subcategoryList": [ - "Series", - "Animation", - "Comedy" - ], - "gridViewPrimaryImageUrl": "/db_photos/showcards/v5/AllPhotosAPGT/184338/p184338_b_v5_aa_p.jpg", - "rating": "TVMA", - "description": null, - "title": "South Park", - "episodeNumber": 10, - "duration": 30, - "price": 0, - "repeat": true, - "lookBack": false, - "tvAdvisory": [ - "D", - "L" - ], - "dimension": "2D", - "ltd": "", - "programID": "EP002298270451", - "blackoutCode": "NA", - "airTime": "2023-01-15T10:00:00.000+0000", - "secLiveStreaming": "N", - "prOrd": 0, - "episodeTitle": "The Hobbit", - "authCode": "NA", - "format": "HD", - "seasonNumber": 17, - "listViewPrimaryImageUrl": "/db_photos/showcards/v5/AllPhotosAPGT/184338/p184338_b_v5_aa_l.jpg", - "eventCode": "", - "mainCategory": "TV", - "hd": 1, - "liveStreaming": "N" - }, - { - "primaryImageUrl": "/db_photos/showcards/v5/AllPhotos/184338/p184338_b_v5_aa.jpg", - "restartAllowed": false, - "subcategoryList": [ - "Series", - "Animation", - "Comedy" - ], - "gridViewPrimaryImageUrl": "/db_photos/showcards/v5/AllPhotosAPGT/184338/p184338_b_v5_aa_p.jpg", - "rating": "TVMA", - "description": null, - "title": "South Park", - "episodeNumber": 6, - "duration": 30, - "price": 0, - "repeat": true, - "lookBack": false, - "tvAdvisory": [ - "L" - ], - "dimension": "2D", - "ltd": "", - "programID": "EP002298270782", - "blackoutCode": "NA", - "airTime": "2023-01-15T10:30:00.000+0000", - "secLiveStreaming": "N", - "prOrd": 0, - "episodeTitle": "Season Finale", - "authCode": "NA", - "format": "HD", - "seasonNumber": 23, - "listViewPrimaryImageUrl": "/db_photos/showcards/v5/AllPhotosAPGT/184338/p184338_b_v5_aa_l.jpg", - "eventCode": "", - "mainCategory": "TV", - "hd": 1, - "liveStreaming": "N" - }, - { - "primaryImageUrl": "/db_photos/showcards/v5/AllPhotos/184338/p184338_b_v5_aa.jpg", - "restartAllowed": false, - "subcategoryList": [ - "Series", - "Animation", - "Comedy" - ], - "gridViewPrimaryImageUrl": "/db_photos/showcards/v5/AllPhotosAPGT/184338/p184338_b_v5_aa_p.jpg", - "rating": "TVMA", - "description": null, - "title": "South Park", - "episodeNumber": 7, - "duration": 30, - "price": 0, - "repeat": true, - "lookBack": false, - "tvAdvisory": [ - "L" - ], - "dimension": "2D", - "ltd": "", - "programID": "EP002298270783", - "blackoutCode": "NA", - "airTime": "2023-01-15T11:00:00.000+0000", - "secLiveStreaming": "N", - "prOrd": 0, - "episodeTitle": "Board Girls", - "authCode": "NA", - "format": "HD", - "seasonNumber": 23, - "listViewPrimaryImageUrl": "/db_photos/showcards/v5/AllPhotosAPGT/184338/p184338_b_v5_aa_l.jpg", - "eventCode": "", - "mainCategory": "TV", - "hd": 1, - "liveStreaming": "N" - }, - { - "primaryImageUrl": "/db_photos/showcards/v5/AllPhotos/184338/p184338_b_v5_aa.jpg", - "restartAllowed": false, - "subcategoryList": [ - "Series", - "Animation", - "Comedy" - ], - "gridViewPrimaryImageUrl": "/db_photos/showcards/v5/AllPhotosAPGT/184338/p184338_b_v5_aa_p.jpg", - "rating": "TVMA", - "description": null, - "title": "South Park", - "episodeNumber": 8, - "duration": 30, - "price": 0, - "repeat": true, - "lookBack": false, - "tvAdvisory": [ - "L" - ], - "dimension": "2D", - "ltd": "", - "programID": "EP002298270784", - "blackoutCode": "NA", - "airTime": "2023-01-15T11:30:00.000+0000", - "secLiveStreaming": "N", - "prOrd": 0, - "episodeTitle": "Turd Burglars", - "authCode": "NA", - "format": "HD", - "seasonNumber": 23, - "listViewPrimaryImageUrl": "/db_photos/showcards/v5/AllPhotosAPGT/184338/p184338_b_v5_aa_l.jpg", - "eventCode": "", - "mainCategory": "TV", - "hd": 1, - "liveStreaming": "N" - }, - { - "primaryImageUrl": "/db_photos/showcards/v5/AllPhotos/184338/p184338_b_v5_aa.jpg", - "restartAllowed": false, - "subcategoryList": [ - "Series", - "Animation", - "Comedy" - ], - "gridViewPrimaryImageUrl": "/db_photos/showcards/v5/AllPhotosAPGT/184338/p184338_b_v5_aa_p.jpg", - "rating": "TVMA", - "description": null, - "title": "South Park", - "episodeNumber": 9, - "duration": 30, - "price": 0, - "repeat": true, - "lookBack": false, - "tvAdvisory": [ - "L" - ], - "dimension": "2D", - "ltd": "", - "programID": "EP002298270785", - "blackoutCode": "NA", - "airTime": "2023-01-15T12:00:00.000+0000", - "secLiveStreaming": "N", - "prOrd": 0, - "episodeTitle": "Basic Cable", - "authCode": "NA", - "format": "HD", - "seasonNumber": 23, - "listViewPrimaryImageUrl": "/db_photos/showcards/v5/AllPhotosAPGT/184338/p184338_b_v5_aa_l.jpg", - "eventCode": "", - "mainCategory": "TV", - "hd": 1, - "liveStreaming": "N" - }, - { - "primaryImageUrl": "/db_photos/showcards/v5/AllPhotos/184338/p184338_b_v5_aa.jpg", - "restartAllowed": false, - "subcategoryList": [ - "Series", - "Animation", - "Comedy" - ], - "gridViewPrimaryImageUrl": "/db_photos/showcards/v5/AllPhotosAPGT/184338/p184338_b_v5_aa_p.jpg", - "rating": "TVMA", - "description": null, - "title": "South Park", - "episodeNumber": 8, - "duration": 30, - "price": 0, - "repeat": true, - "lookBack": false, - "dimension": "2D", - "ltd": "", - "programID": "EP002298270467", - "blackoutCode": "NA", - "airTime": "2023-01-15T12:30:00.000+0000", - "secLiveStreaming": "N", - "prOrd": 0, - "episodeTitle": "C... Magic", - "authCode": "NA", - "format": "HD", - "seasonNumber": 18, - "listViewPrimaryImageUrl": "/db_photos/showcards/v5/AllPhotosAPGT/184338/p184338_b_v5_aa_l.jpg", - "eventCode": "", - "mainCategory": "TV", - "hd": 1, - "liveStreaming": "N" - }, - { - "primaryImageUrl": "/db_photos/showcards/v5/AllPhotos/13662735/p13662735_b_v5_aa.jpg", - "restartAllowed": false, - "subcategoryList": [ - "Series", - "Product Info", - "Shopping" - ], - "gridViewPrimaryImageUrl": "/db_photos/showcards/v5/AllPhotosAPGT/13662735/p13662735_b_v5_aa_p.jpg", - "rating": "TVMA", - "description": null, - "title": "Sex Toys - 50 Percent OFF!", - "episodeNumber": null, - "duration": 30, - "price": 0, - "repeat": true, - "lookBack": false, - "dimension": "2D", - "ltd": "", - "programID": "SH025929710000", - "blackoutCode": "NA", - "airTime": "2023-01-15T13:00:00.000+0000", - "secLiveStreaming": "N", - "prOrd": 0, - "episodeTitle": null, - "authCode": "NA", - "format": "SD", - "seasonNumber": null, - "listViewPrimaryImageUrl": "/db_photos/showcards/v5/AllPhotosAPGT/13662735/p13662735_b_v5_aa_l.jpg", - "eventCode": "", - "mainCategory": "TV", - "hd": 1, - "liveStreaming": "N" - }, - { - "primaryImageUrl": "/db_photos/showcards/v5/AllPhotos/16255884/p16255884_b_v5_aa.jpg", - "restartAllowed": false, - "subcategoryList": [ - "Series", - "Product Info", - "Shopping" - ], - "gridViewPrimaryImageUrl": "/db_photos/showcards/v5/AllPhotosAPGT/16255884/p16255884_b_v5_aa_p.jpg", - "rating": "NR (Not Rated)", - "description": null, - "title": "Men's Health: All-Natural Secret for Prostate Health", - "episodeNumber": null, - "duration": 30, - "price": 0, - "repeat": true, - "lookBack": false, - "dimension": "2D", - "ltd": "", - "programID": "SH030991650000", - "blackoutCode": "NA", - "airTime": "2023-01-15T13:30:00.000+0000", - "secLiveStreaming": "N", - "prOrd": 0, - "episodeTitle": null, - "authCode": "NA", - "format": "SD", - "seasonNumber": null, - "listViewPrimaryImageUrl": "/db_photos/showcards/v5/AllPhotosAPGT/16255884/p16255884_b_v5_aa_l.jpg", - "eventCode": "", - "mainCategory": "TV", - "hd": 1, - "liveStreaming": "N" - }, - { - "primaryImageUrl": "/db_photos/default/TV/tv.jpg", - "restartAllowed": false, - "subcategoryList": [ - "Series", - "Product Info", - "Shopping" - ], - "gridViewPrimaryImageUrl": "/db_photos/default/TV/tv_p.jpg", - "rating": "TVG", - "description": null, - "title": "Jane Seymour, Kate Walsh share their skin secrets", - "episodeNumber": null, - "duration": 30, - "price": 0, - "repeat": true, - "lookBack": false, - "dimension": "2D", - "ltd": "", - "programID": "SH043806090000", - "blackoutCode": "NA", - "airTime": "2023-01-15T14:00:00.000+0000", - "secLiveStreaming": "N", - "prOrd": 0, - "episodeTitle": null, - "authCode": "NA", - "format": "SD", - "seasonNumber": null, - "listViewPrimaryImageUrl": "/db_photos/default/TV/tv_l.jpg", - "eventCode": "", - "mainCategory": "TV", - "hd": 1, - "liveStreaming": "N" - }, - { - "primaryImageUrl": "/db_photos/showcards/v5/AllPhotos/194833/p194833_b_v5_aa.jpg", - "restartAllowed": false, - "subcategoryList": [ - "Series", - "Comedy" - ], - "gridViewPrimaryImageUrl": "/db_photos/showcards/v5/AllPhotosAPGT/194833/p194833_b_v5_aa_p.jpg", - "rating": "TVPG", - "description": null, - "title": "Parks and Recreation", - "episodeNumber": 3, - "duration": 30, - "price": 0, - "repeat": true, - "lookBack": false, - "tvAdvisory": [ - "D" - ], - "dimension": "2D", - "ltd": "", - "programID": "EP011281150009", - "blackoutCode": "NA", - "airTime": "2023-01-15T14:30:00.000+0000", - "secLiveStreaming": "N", - "prOrd": 0, - "episodeTitle": "Beauty Pageant", - "authCode": "NA", - "format": "HD", - "seasonNumber": 2, - "listViewPrimaryImageUrl": "/db_photos/showcards/v5/AllPhotosAPGT/194833/p194833_b_v5_aa_l.jpg", - "eventCode": "", - "mainCategory": "TV", - "hd": 1, - "liveStreaming": "N" - }, - { - "primaryImageUrl": "/db_photos/showcards/v5/AllPhotos/194833/p194833_b_v5_aa.jpg", - "restartAllowed": false, - "subcategoryList": [ - "Series", - "Comedy" - ], - "gridViewPrimaryImageUrl": "/db_photos/showcards/v5/AllPhotosAPGT/194833/p194833_b_v5_aa_p.jpg", - "rating": "TVPG", - "description": null, - "title": "Parks and Recreation", - "episodeNumber": 4, - "duration": 30, - "price": 0, - "repeat": true, - "lookBack": false, - "tvAdvisory": [ - "D", - "L" - ], - "dimension": "2D", - "ltd": "", - "programID": "EP011281150010", - "blackoutCode": "NA", - "airTime": "2023-01-15T15:00:00.000+0000", - "secLiveStreaming": "N", - "prOrd": 0, - "episodeTitle": "The Practice Date", - "authCode": "NA", - "format": "HD", - "seasonNumber": 2, - "listViewPrimaryImageUrl": "/db_photos/showcards/v5/AllPhotosAPGT/194833/p194833_b_v5_aa_l.jpg", - "eventCode": "", - "mainCategory": "TV", - "hd": 1, - "liveStreaming": "N" - }, - { - "primaryImageUrl": "/db_photos/showcards/v5/AllPhotos/194833/p194833_b_v5_aa.jpg", - "restartAllowed": false, - "subcategoryList": [ - "Series", - "Comedy" - ], - "gridViewPrimaryImageUrl": "/db_photos/showcards/v5/AllPhotosAPGT/194833/p194833_b_v5_aa_p.jpg", - "rating": "TVPG", - "description": null, - "title": "Parks and Recreation", - "episodeNumber": 5, - "duration": 30, - "price": 0, - "repeat": true, - "lookBack": false, - "dimension": "2D", - "ltd": "", - "programID": "EP011281150011", - "blackoutCode": "NA", - "airTime": "2023-01-15T15:30:00.000+0000", - "secLiveStreaming": "N", - "prOrd": 0, - "episodeTitle": "Sister City", - "authCode": "NA", - "format": "HD", - "seasonNumber": 2, - "listViewPrimaryImageUrl": "/db_photos/showcards/v5/AllPhotosAPGT/194833/p194833_b_v5_aa_l.jpg", - "eventCode": "", - "mainCategory": "TV", - "hd": 1, - "liveStreaming": "N" - }, - { - "primaryImageUrl": "/db_photos/showcards/v5/AllPhotosAPGT/episodes/SH000169160000/EP000169160038/EP000169160038_aa.jpg", - "restartAllowed": false, - "subcategoryList": [ - "Series", - "Comedy" - ], - "gridViewPrimaryImageUrl": "/db_photos/showcards/v5/AllPhotosAPGT/episodes/SH000169160000/EP000169160038/EP000169160038_aa_p.jpg", - "rating": "TVPG", - "description": null, - "title": "Seinfeld", - "episodeNumber": 12, - "duration": 30, - "price": 0, - "repeat": true, - "lookBack": false, - "dimension": "2D", - "ltd": "", - "programID": "EP000169160038", - "blackoutCode": "NA", - "airTime": "2023-01-15T16:00:00.000+0000", - "secLiveStreaming": "N", - "prOrd": 0, - "episodeTitle": "The Red Dot", - "authCode": "NA", - "format": "HD", - "seasonNumber": 3, - "listViewPrimaryImageUrl": "/db_photos/showcards/v5/AllPhotosAPGT/episodes/SH000169160000/EP000169160038/EP000169160038_aa_l.jpg", - "eventCode": "", - "mainCategory": "TV", - "hd": 1, - "liveStreaming": "N" - }, - { - "primaryImageUrl": "/db_photos/showcards/v5/AllPhotosAPGT/episodes/SH000169160000/EP000169160001/EP000169160001_aa.jpg", - "restartAllowed": false, - "subcategoryList": [ - "Series", - "Comedy" - ], - "gridViewPrimaryImageUrl": "/db_photos/showcards/v5/AllPhotosAPGT/episodes/SH000169160000/EP000169160001/EP000169160001_aa_p.jpg", - "rating": "TVPG", - "description": null, - "title": "Seinfeld", - "episodeNumber": 13, - "duration": 30, - "price": 0, - "repeat": true, - "lookBack": false, - "dimension": "2D", - "ltd": "", - "programID": "EP000169160001", - "blackoutCode": "NA", - "airTime": "2023-01-15T16:30:00.000+0000", - "secLiveStreaming": "N", - "prOrd": 0, - "episodeTitle": "The Subway", - "authCode": "NA", - "format": "HD", - "seasonNumber": 3, - "listViewPrimaryImageUrl": "/db_photos/showcards/v5/AllPhotosAPGT/episodes/SH000169160000/EP000169160001/EP000169160001_aa_l.jpg", - "eventCode": "", - "mainCategory": "TV", - "hd": 1, - "liveStreaming": "N" - }, - { - "primaryImageUrl": "/db_photos/showcards/v5/AllPhotosAPGT/episodes/SH000169160000/EP000169160002/EP000169160002_aa.jpg", - "restartAllowed": false, - "subcategoryList": [ - "Series", - "Comedy" - ], - "gridViewPrimaryImageUrl": "/db_photos/showcards/v5/AllPhotosAPGT/episodes/SH000169160000/EP000169160002/EP000169160002_aa_p.jpg", - "rating": "TVPG", - "description": null, - "title": "Seinfeld", - "episodeNumber": 14, - "duration": 30, - "price": 0, - "repeat": true, - "lookBack": false, - "dimension": "2D", - "ltd": "", - "programID": "EP000169160002", - "blackoutCode": "NA", - "airTime": "2023-01-15T17:00:00.000+0000", - "secLiveStreaming": "N", - "prOrd": 0, - "episodeTitle": "The Pez Dispenser", - "authCode": "NA", - "format": "HD", - "seasonNumber": 3, - "listViewPrimaryImageUrl": "/db_photos/showcards/v5/AllPhotosAPGT/episodes/SH000169160000/EP000169160002/EP000169160002_aa_l.jpg", - "eventCode": "", - "mainCategory": "TV", - "hd": 1, - "liveStreaming": "N" - }, - { - "primaryImageUrl": "/db_photos/showcards/v5/AllPhotosAPGT/episodes/SH000169160000/EP000169160006/EP000169160006_aa.jpg", - "restartAllowed": false, - "subcategoryList": [ - "Series", - "Comedy" - ], - "gridViewPrimaryImageUrl": "/db_photos/showcards/v5/AllPhotosAPGT/episodes/SH000169160000/EP000169160006/EP000169160006_aa_p.jpg", - "rating": "TVPG", - "description": null, - "title": "Seinfeld", - "episodeNumber": 16, - "duration": 30, - "price": 0, - "repeat": true, - "lookBack": false, - "dimension": "2D", - "ltd": "", - "programID": "EP000169160006", - "blackoutCode": "NA", - "airTime": "2023-01-15T17:30:00.000+0000", - "secLiveStreaming": "N", - "prOrd": 0, - "episodeTitle": "The Fix-Up", - "authCode": "NA", - "format": "HD", - "seasonNumber": 3, - "listViewPrimaryImageUrl": "/db_photos/showcards/v5/AllPhotosAPGT/episodes/SH000169160000/EP000169160006/EP000169160006_aa_l.jpg", - "eventCode": "", - "mainCategory": "TV", - "hd": 1, - "liveStreaming": "N" - }, - { - "primaryImageUrl": "/db_photos/showcards/v5/AllPhotos/185008/p185008_b_v5_aa.jpg", - "restartAllowed": false, - "subcategoryList": [ - "Series", - "Comedy" - ], - "gridViewPrimaryImageUrl": "/db_photos/showcards/v5/AllPhotosAPGT/185008/p185008_b_v5_aa_p.jpg", - "rating": "TV14", - "description": null, - "title": "The Office", - "episodeNumber": 12, - "duration": 30, - "price": 0, - "repeat": true, - "lookBack": false, - "tvAdvisory": [ - "D", - "L" - ], - "dimension": "2D", - "ltd": "", - "programID": "EP007261330123", - "blackoutCode": "NA", - "airTime": "2023-01-15T18:00:00.000+0000", - "secLiveStreaming": "N", - "prOrd": 0, - "episodeTitle": "Scott's Tots", - "authCode": "NA", - "format": "HD", - "seasonNumber": 6, - "listViewPrimaryImageUrl": "/db_photos/showcards/v5/AllPhotosAPGT/185008/p185008_b_v5_aa_l.jpg", - "eventCode": "", - "mainCategory": "TV", - "hd": 1, - "liveStreaming": "N" - }, - { - "primaryImageUrl": "/db_photos/showcards/v5/AllPhotos/185008/p185008_b_v5_aa.jpg", - "restartAllowed": false, - "subcategoryList": [ - "Series", - "Comedy" - ], - "gridViewPrimaryImageUrl": "/db_photos/showcards/v5/AllPhotosAPGT/185008/p185008_b_v5_aa_p.jpg", - "rating": "TV14", - "description": null, - "title": "The Office", - "episodeNumber": 14, - "duration": 30, - "price": 0, - "repeat": true, - "lookBack": false, - "tvAdvisory": [ - "D", - "L" - ], - "dimension": "2D", - "ltd": "", - "programID": "EP007261330125", - "blackoutCode": "NA", - "airTime": "2023-01-15T18:30:00.000+0000", - "secLiveStreaming": "N", - "prOrd": 0, - "episodeTitle": "The Banker", - "authCode": "NA", - "format": "HD", - "seasonNumber": 6, - "listViewPrimaryImageUrl": "/db_photos/showcards/v5/AllPhotosAPGT/185008/p185008_b_v5_aa_l.jpg", - "eventCode": "", - "mainCategory": "TV", - "hd": 1, - "liveStreaming": "N" - }, - { - "primaryImageUrl": "/db_photos/showcards/v5/AllPhotosAPGT/episodes/SH007261330000/EP007261330126/EP007261330126_aa.jpg", - "restartAllowed": false, - "subcategoryList": [ - "Series", - "Comedy" - ], - "gridViewPrimaryImageUrl": "/db_photos/showcards/v5/AllPhotosAPGT/episodes/SH007261330000/EP007261330126/EP007261330126_aa_p.jpg", - "rating": "TV14", - "description": null, - "title": "The Office", - "episodeNumber": 15, - "duration": 30, - "price": 0, - "repeat": true, - "lookBack": false, - "tvAdvisory": [ - "D", - "L" - ], - "dimension": "2D", - "ltd": "", - "programID": "EP007261330126", - "blackoutCode": "NA", - "airTime": "2023-01-15T19:00:00.000+0000", - "secLiveStreaming": "N", - "prOrd": 0, - "episodeTitle": "Sabre", - "authCode": "NA", - "format": "HD", - "seasonNumber": 6, - "listViewPrimaryImageUrl": "/db_photos/showcards/v5/AllPhotosAPGT/episodes/SH007261330000/EP007261330126/EP007261330126_aa_l.jpg", - "eventCode": "", - "mainCategory": "TV", - "hd": 1, - "liveStreaming": "N" - }, - { - "primaryImageUrl": "/db_photos/showcards/v5/AllPhotosAPGT/episodes/SH007261330000/EP007261330127/EP007261330127_aa.jpg", - "restartAllowed": false, - "subcategoryList": [ - "Series", - "Comedy" - ], - "gridViewPrimaryImageUrl": "/db_photos/showcards/v5/AllPhotosAPGT/episodes/SH007261330000/EP007261330127/EP007261330127_aa_p.jpg", - "rating": "TV14", - "description": null, - "title": "The Office", - "episodeNumber": 16, - "duration": 30, - "price": 0, - "repeat": true, - "lookBack": false, - "tvAdvisory": [ - "D", - "L" - ], - "dimension": "2D", - "ltd": "", - "programID": "EP007261330127", - "blackoutCode": "NA", - "airTime": "2023-01-15T19:30:00.000+0000", - "secLiveStreaming": "N", - "prOrd": 0, - "episodeTitle": "Manager and Salesman", - "authCode": "NA", - "format": "HD", - "seasonNumber": 6, - "listViewPrimaryImageUrl": "/db_photos/showcards/v5/AllPhotosAPGT/episodes/SH007261330000/EP007261330127/EP007261330127_aa_l.jpg", - "eventCode": "", - "mainCategory": "TV", - "hd": 1, - "liveStreaming": "N" - }, - { - "primaryImageUrl": "/db_photos/showcards/v5/AllPhotos/185008/p185008_b_v5_aa.jpg", - "restartAllowed": false, - "subcategoryList": [ - "Series", - "Comedy" - ], - "gridViewPrimaryImageUrl": "/db_photos/showcards/v5/AllPhotosAPGT/185008/p185008_b_v5_aa_p.jpg", - "rating": "TV14", - "description": null, - "title": "The Office", - "episodeNumber": 17, - "duration": 30, - "price": 0, - "repeat": true, - "lookBack": false, - "tvAdvisory": [ - "D", - "L" - ], - "dimension": "2D", - "ltd": "", - "programID": "EP007261330242", - "blackoutCode": "NA", - "airTime": "2023-01-15T20:00:00.000+0000", - "secLiveStreaming": "N", - "prOrd": 0, - "episodeTitle": "The Delivery", - "authCode": "NA", - "format": "HD", - "seasonNumber": 6, - "listViewPrimaryImageUrl": "/db_photos/showcards/v5/AllPhotosAPGT/185008/p185008_b_v5_aa_l.jpg", - "eventCode": "", - "mainCategory": "TV", - "hd": 1, - "liveStreaming": "N" - }, - { - "primaryImageUrl": "/db_photos/showcards/v5/AllPhotos/185008/p185008_b_v5_aa.jpg", - "restartAllowed": false, - "subcategoryList": [ - "Series", - "Comedy" - ], - "gridViewPrimaryImageUrl": "/db_photos/showcards/v5/AllPhotosAPGT/185008/p185008_b_v5_aa_p.jpg", - "rating": "TV14", - "description": null, - "title": "The Office", + "contentType": "EPISODE", + "description": "George finds the ideal napping spot at work; Jerry has his kitchen rebuilt; Elaine meets a new beau (Vince Grant).", + "displayTitle": "Seinfeld", "episodeNumber": 18, - "duration": 30, - "price": 0, - "repeat": true, - "lookBack": false, - "tvAdvisory": [ - "D", - "L" + "episodeTitle": "The Nap", + "genres": [ + "Sitcom" ], - "dimension": "2D", - "ltd": "", - "programID": "EP007261330243", - "blackoutCode": "NA", - "airTime": "2023-01-15T20:30:00.000+0000", - "secLiveStreaming": "N", - "prOrd": 0, - "episodeTitle": "The Delivery", - "authCode": "NA", - "format": "HD", - "seasonNumber": 6, - "listViewPrimaryImageUrl": "/db_photos/showcards/v5/AllPhotosAPGT/185008/p185008_b_v5_aa_l.jpg", - "eventCode": "", - "mainCategory": "TV", - "hd": 1, - "liveStreaming": "N" + "metadataLanguage": "en", + "originalAirDate": "1997-04-10", + "parentalRating": "TVPG", + "releaseYear": 1997, + "seasonId": "5a75c460-5cbb-4ea3-acba-5911532801b3", + "seasonNumber": 8, + "seriesEditId": "42df0f3e-b723-4618-bb7a-170890de7e4f", + "seriesId": "f95949d9-807e-8584-e299-ad8c19f23b6f", + "stbContentId": "1 1 4214 AE", + "title": "Seinfeld", + "tmsConnectorId": "SH000169160000", + "tmsId": "EP000169160174", + "resourceType": "CONTENT", + "resourceId": "b0c8df8c-3732-3874-8a36-6810951767c3", + "editId": "46b19f74-eb27-4294-b260-aa73b9824e50", + "itemType": "VIDEO_PROGRAM" }, { - "primaryImageUrl": "/db_photos/showcards/v5/AllPhotos/185008/p185008_b_v5_aa.jpg", - "restartAllowed": false, - "subcategoryList": [ - "Series", - "Comedy" + "apgId": "EP000169160175", + "canonicalId": "6e06ec4d-fb11-4e76-e396-bbee1f52b798", + "categories": [ + "TVShow" ], - "gridViewPrimaryImageUrl": "/db_photos/showcards/v5/AllPhotosAPGT/185008/p185008_b_v5_aa_p.jpg", - "rating": "TV14", - "description": null, - "title": "The Office", + "consumables": [ + { + "augmentation": { + "constraints": { + "isPlayable": false, + "isRecordable": false, + "isRestart": true, + "isLookback": false, + "isDAI": false, + "isFastForwardDisabled": true, + "isExtendable": false, + "isCDVRUpsell": false + } + }, + "consumableType": "LINEAR", + "duration": 1800, + "endTime": "2026-04-06T01:00:00Z", + "format": "HD", + "metadataLanguage": "en", + "parentalRating": "TVPG", + "programChannelId": "5070bc2e-dd69-4dee-98b4-a4c5e3b1fd7b", + "qualifiers": [ + "CC", + "1080p", + "HDTV" + ], + "resourceId": "5673f156-6b7f-3c69-9ae6-ffa8a818fe5b", + "scheduleId": "5673f156-6b7f-3c69-9ae6-ffa8a818fe5b", + "startTime": "2026-04-06T00:30:00Z" + } + ], + "contentType": "EPISODE", + "description": "George begins to wonder what his new girlfriend (Suzanne Cryer) isn't telling him when she says, \"Yada, yada, yada.\"", + "displayTitle": "Seinfeld", "episodeNumber": 19, - "duration": 30, - "price": 0, - "repeat": true, - "lookBack": false, - "tvAdvisory": [ - "D", - "L" + "episodeTitle": "The Yada Yada", + "genres": [ + "Sitcom" ], - "dimension": "2D", - "ltd": "", - "programID": "EP007261330129", - "blackoutCode": "NA", - "airTime": "2023-01-15T21:00:00.000+0000", - "secLiveStreaming": "N", - "prOrd": 0, - "episodeTitle": "St. Patrick's Day", - "authCode": "NA", - "format": "HD", - "seasonNumber": 6, - "listViewPrimaryImageUrl": "/db_photos/showcards/v5/AllPhotosAPGT/185008/p185008_b_v5_aa_l.jpg", - "eventCode": "", - "mainCategory": "TV", - "hd": 1, - "liveStreaming": "N" + "metadataLanguage": "en", + "originalAirDate": "1997-04-24", + "parentalRating": "TVPG", + "releaseYear": 1997, + "seasonId": "5a75c460-5cbb-4ea3-acba-5911532801b3", + "seasonNumber": 8, + "seriesEditId": "42df0f3e-b723-4618-bb7a-170890de7e4f", + "seriesId": "f95949d9-807e-8584-e299-ad8c19f23b6f", + "stbContentId": "1 1 4214 AF", + "title": "Seinfeld", + "tmsConnectorId": "SH000169160000", + "tmsId": "EP000169160175", + "resourceType": "CONTENT", + "resourceId": "5673f156-6b7f-3c69-9ae6-ffa8a818fe5b", + "editId": "bf725e10-9e51-40eb-8e3a-bc85a7138c2d", + "itemType": "VIDEO_PROGRAM" }, { - "primaryImageUrl": "/db_photos/showcards/v5/AllPhotos/185008/p185008_b_v5_aa.jpg", - "restartAllowed": false, - "subcategoryList": [ - "Series", - "Comedy" + "apgId": "EP000169160176", + "canonicalId": "e816f1ec-5cba-e4d3-6bb6-62bfe4a52441", + "categories": [ + "TVShow" ], - "gridViewPrimaryImageUrl": "/db_photos/showcards/v5/AllPhotosAPGT/185008/p185008_b_v5_aa_p.jpg", - "rating": "TV14", - "description": null, - "title": "The Office", + "consumables": [ + { + "augmentation": { + "constraints": { + "isPlayable": false, + "isRecordable": false, + "isRestart": true, + "isLookback": false, + "isDAI": false, + "isFastForwardDisabled": true, + "isExtendable": false, + "isCDVRUpsell": false + } + }, + "consumableType": "LINEAR", + "duration": 1800, + "endTime": "2026-04-06T01:30:00Z", + "format": "HD", + "metadataLanguage": "en", + "parentalRating": "TVPG", + "programChannelId": "5070bc2e-dd69-4dee-98b4-a4c5e3b1fd7b", + "qualifiers": [ + "CC", + "1080p", + "HDTV" + ], + "resourceId": "2a7eac91-13b5-3b67-a3d4-0cb622497beb", + "scheduleId": "2a7eac91-13b5-3b67-a3d4-0cb622497beb", + "startTime": "2026-04-06T01:00:00Z" + } + ], + "contentType": "EPISODE", + "description": "Newman nixes Kramer's millennium-party plans; Jerry obsesses about his position on his girlfriend's speed dial.", + "displayTitle": "Seinfeld", "episodeNumber": 20, - "duration": 30, - "price": 0, - "repeat": true, - "lookBack": false, - "tvAdvisory": [ - "D", - "L" + "episodeTitle": "The Millennium", + "genres": [ + "Sitcom" ], - "dimension": "2D", - "ltd": "", - "programID": "EP007261330130", - "blackoutCode": "NA", - "airTime": "2023-01-15T21:30:00.000+0000", - "secLiveStreaming": "N", - "prOrd": 0, - "episodeTitle": "New Leads", - "authCode": "NA", - "format": "HD", - "seasonNumber": 6, - "listViewPrimaryImageUrl": "/db_photos/showcards/v5/AllPhotosAPGT/185008/p185008_b_v5_aa_l.jpg", - "eventCode": "", - "mainCategory": "TV", - "hd": 1, - "liveStreaming": "N" + "metadataLanguage": "en", + "originalAirDate": "1997-05-01", + "parentalRating": "TVPG", + "releaseYear": 1997, + "seasonId": "5a75c460-5cbb-4ea3-acba-5911532801b3", + "seasonNumber": 8, + "seriesEditId": "42df0f3e-b723-4618-bb7a-170890de7e4f", + "seriesId": "f95949d9-807e-8584-e299-ad8c19f23b6f", + "stbContentId": "1 1 4214 B0", + "title": "Seinfeld", + "tmsConnectorId": "SH000169160000", + "tmsId": "EP000169160176", + "resourceType": "CONTENT", + "resourceId": "2a7eac91-13b5-3b67-a3d4-0cb622497beb", + "editId": "efe18f88-382f-4e2c-838c-66c3124bfdc0", + "itemType": "VIDEO_PROGRAM" }, { - "primaryImageUrl": "/db_photos/showcards/v5/AllPhotosAPGT/episodes/SH007261330000/EP007261330131/EP007261330131_aa.jpg", - "restartAllowed": false, - "subcategoryList": [ - "Series", - "Comedy" + "apgId": "EP000169160177", + "canonicalId": "a2efb7ff-4c1f-9fba-97a0-a1016d69b82a", + "categories": [ + "TVShow" ], - "gridViewPrimaryImageUrl": "/db_photos/showcards/v5/AllPhotosAPGT/episodes/SH007261330000/EP007261330131/EP007261330131_aa_p.jpg", - "rating": "TV14", - "description": null, - "title": "The Office", + "consumables": [ + { + "augmentation": { + "constraints": { + "isPlayable": false, + "isRecordable": false, + "isRestart": true, + "isLookback": false, + "isDAI": false, + "isFastForwardDisabled": true, + "isExtendable": false, + "isCDVRUpsell": false + } + }, + "consumableType": "LINEAR", + "duration": 1800, + "endTime": "2026-04-06T02:00:00Z", + "format": "HD", + "metadataLanguage": "en", + "parentalRating": "TVPG", + "programChannelId": "5070bc2e-dd69-4dee-98b4-a4c5e3b1fd7b", + "qualifiers": [ + "CC", + "1080p", + "HDTV" + ], + "resourceId": "8feb255f-0340-38f6-bf0d-f2d07363f77e", + "scheduleId": "8feb255f-0340-38f6-bf0d-f2d07363f77e", + "startTime": "2026-04-06T01:30:00Z" + } + ], + "contentType": "EPISODE", + "description": "Elaine's new business, selling only the upper part of muffins, is challenged to dispose of the unused bottoms.", + "displayTitle": "Seinfeld", "episodeNumber": 21, - "duration": 30, - "price": 0, - "repeat": true, - "lookBack": false, - "tvAdvisory": [ - "D", - "L" + "episodeTitle": "The Muffin Tops", + "genres": [ + "Sitcom" ], - "dimension": "2D", - "ltd": "", - "programID": "EP007261330131", - "blackoutCode": "NA", - "airTime": "2023-01-15T22:00:00.000+0000", - "secLiveStreaming": "N", - "prOrd": 0, - "episodeTitle": "Happy Hour", - "authCode": "NA", - "format": "HD", - "seasonNumber": 6, - "listViewPrimaryImageUrl": "/db_photos/showcards/v5/AllPhotosAPGT/episodes/SH007261330000/EP007261330131/EP007261330131_aa_l.jpg", - "eventCode": "", - "mainCategory": "TV", - "hd": 1, - "liveStreaming": "N" + "metadataLanguage": "en", + "originalAirDate": "1997-05-08", + "parentalRating": "TVPG", + "releaseYear": 1997, + "seasonId": "5a75c460-5cbb-4ea3-acba-5911532801b3", + "seasonNumber": 8, + "seriesEditId": "42df0f3e-b723-4618-bb7a-170890de7e4f", + "seriesId": "f95949d9-807e-8584-e299-ad8c19f23b6f", + "stbContentId": "1 1 4214 B1", + "title": "Seinfeld", + "tmsConnectorId": "SH000169160000", + "tmsId": "EP000169160177", + "resourceType": "CONTENT", + "resourceId": "8feb255f-0340-38f6-bf0d-f2d07363f77e", + "editId": "f445e903-00cf-4d92-92b9-2bf4d9f0bf80", + "itemType": "VIDEO_PROGRAM" }, { - "primaryImageUrl": "/db_photos/showcards/v5/AllPhotos/185008/p185008_b_v5_aa.jpg", - "restartAllowed": false, - "subcategoryList": [ - "Series", - "Comedy" + "apgId": "EP002960010307", + "canonicalId": "941d52c6-2784-6c0b-d048-9733311ff085", + "categories": [ + "TVShow" ], - "gridViewPrimaryImageUrl": "/db_photos/showcards/v5/AllPhotosAPGT/185008/p185008_b_v5_aa_p.jpg", - "rating": "TV14", - "description": null, - "title": "The Office", - "episodeNumber": 22, - "duration": 30, - "price": 0, - "repeat": true, - "lookBack": false, - "tvAdvisory": [ - "D", - "L" + "consumables": [ + { + "augmentation": { + "constraints": { + "isPlayable": false, + "isRecordable": false, + "isRestart": true, + "isLookback": false, + "isDAI": false, + "isFastForwardDisabled": true, + "isExtendable": false, + "isCDVRUpsell": false + } + }, + "consumableType": "LINEAR", + "duration": 1800, + "endTime": "2026-04-06T02:30:00Z", + "format": "HD", + "metadataLanguage": "en", + "parentalRating": "TV14", + "programChannelId": "5070bc2e-dd69-4dee-98b4-a4c5e3b1fd7b", + "qualifiers": [ + "CC" + ], + "resourceId": "5c23b28f-8883-3f03-a1ee-4ca03a0d10c8", + "scheduleId": "5c23b28f-8883-3f03-a1ee-4ca03a0d10c8", + "startTime": "2026-04-06T02:00:00Z" + } ], - "dimension": "2D", - "ltd": "", - "programID": "EP007261330134", - "blackoutCode": "NA", - "airTime": "2023-01-15T22:30:00.000+0000", - "secLiveStreaming": "N", - "prOrd": 0, - "episodeTitle": "Secretary's Day", - "authCode": "NA", - "format": "HD", - "seasonNumber": 6, - "listViewPrimaryImageUrl": "/db_photos/showcards/v5/AllPhotosAPGT/185008/p185008_b_v5_aa_l.jpg", - "eventCode": "", - "mainCategory": "TV", - "hd": 1, - "liveStreaming": "N" - }, - { - "primaryImageUrl": "/db_photos/showcards/v5/AllPhotosAPGT/episodes/SH007261330000/EP007261330135/EP007261330135_aa.jpg", - "restartAllowed": false, - "subcategoryList": [ - "Series", - "Comedy" - ], - "gridViewPrimaryImageUrl": "/db_photos/showcards/v5/AllPhotosAPGT/episodes/SH007261330000/EP007261330135/EP007261330135_aa_p.jpg", - "rating": "TV14", - "description": null, - "title": "The Office", - "episodeNumber": 23, - "duration": 30, - "price": 0, - "repeat": true, - "lookBack": false, - "tvAdvisory": [ - "D", - "L" - ], - "dimension": "2D", - "ltd": "", - "programID": "EP007261330135", - "blackoutCode": "NA", - "airTime": "2023-01-15T23:00:00.000+0000", - "secLiveStreaming": "N", - "prOrd": 0, - "episodeTitle": "Body Language", - "authCode": "NA", - "format": "HD", - "seasonNumber": 6, - "listViewPrimaryImageUrl": "/db_photos/showcards/v5/AllPhotosAPGT/episodes/SH007261330000/EP007261330135/EP007261330135_aa_l.jpg", - "eventCode": "", - "mainCategory": "TV", - "hd": 1, - "liveStreaming": "N" - }, - { - "primaryImageUrl": "/db_photos/showcards/v5/AllPhotos/185008/p185008_b_v5_aa.jpg", - "restartAllowed": false, - "subcategoryList": [ - "Series", - "Comedy" - ], - "gridViewPrimaryImageUrl": "/db_photos/showcards/v5/AllPhotosAPGT/185008/p185008_b_v5_aa_p.jpg", - "rating": "TV14", - "description": null, - "title": "The Office", - "episodeNumber": 24, - "duration": 30, - "price": 0, - "repeat": true, - "lookBack": false, - "tvAdvisory": [ - "D", - "L" - ], - "dimension": "2D", - "ltd": "", - "programID": "EP007261330136", - "blackoutCode": "NA", - "airTime": "2023-01-15T23:30:00.000+0000", - "secLiveStreaming": "N", - "prOrd": 0, - "episodeTitle": "The Cover-Up", - "authCode": "NA", - "format": "HD", - "seasonNumber": 6, - "listViewPrimaryImageUrl": "/db_photos/showcards/v5/AllPhotosAPGT/185008/p185008_b_v5_aa_l.jpg", - "eventCode": "", - "mainCategory": "TV", - "hd": 1, - "liveStreaming": "N" - } - ], - "chKey": "2598_1571684400000", - "chName": "Comedy Central West HD", - "chDesc": "The only 24-hour, all-comedy network. Spotlights Emmy and CableAce Award-winning shows like Dr. Katz: Professional Therapist, plus sitcoms, stand-up, animation, talk shows and movies.", - "liveStreaming": "N", - "digitalAdInsertableLive": false - }, - { - "secLiveStreaming": "N", - "chNum": 249, - "authCode": "NA", - "chRec": true, - "chCall": "COMHD", - "chId": 3035, - "secondaryChannelId": 0, - "chHd": true, - "secondary": false, - "blackOut": false, - "chAdult": false, - "chCat": [ - "Alternate content", - "Entertainment & Music Channels", - "HDTV Channels" - ], - "chLogoId": 390, - "detailsLinkUrl": "/Channels/Comedy-Central-HD-249", - "schedules": [ - { - "primaryImageUrl": "/db_photos/movies/AllPhotosAPGI/29160/29160_aa.jpg", - "restartAllowed": true, - "subcategoryList": [ - "Comedy", - "Movies Anywhere", - "Action/Adventure", - "Science Fiction" - ], - "gridViewPrimaryImageUrl": "/db_photos/movies/AllPhotosAPGI/29160/29160_aa_p.jpg", - "rating": "TV14", - "description": null, - "title": "Men in Black II", - "episodeNumber": null, - "duration": 120, - "disableFastForward": true, - "restartMaterialId": "B007881332U3", - "price": 0, - "repeat": true, - "lookBack": false, - "dimension": "2D", - "ltd": "", - "programID": "MV001173520000", - "blackoutCode": "NA", - "airTime": "2023-01-14T23:00:00.000+0000", - "secLiveStreaming": "N", - "prOrd": 0, - "episodeTitle": null, - "authCode": "NA", - "format": "HD", - "seasonNumber": null, - "listViewPrimaryImageUrl": "/db_photos/movies/AllPhotosAPGI/29160/29160_aa_l.jpg", - "eventCode": "", - "mainCategory": "Movies", - "hd": 1, - "liveStreaming": "B" - }, - { - "primaryImageUrl": "/db_photos/movies/AllPhotosAPGI/8797139/8797139_aa.jpg", - "restartAllowed": true, - "subcategoryList": [ - "Comedy", - "Movies Anywhere", - "Action/Adventure", - "Science Fiction" - ], - "gridViewPrimaryImageUrl": "/db_photos/movies/AllPhotosAPGI/8797139/8797139_aa_p.jpg", - "rating": "TV14", - "description": null, - "title": "Men in Black 3", - "episodeNumber": null, - "duration": 150, - "disableFastForward": true, - "restartMaterialId": "B007881439U3", - "price": 0, - "repeat": true, - "lookBack": false, - "dimension": "2D", - "ltd": "", - "programID": "MV003695340000", - "blackoutCode": "NA", - "airTime": "2023-01-15T01:00:00.000+0000", - "secLiveStreaming": "N", - "prOrd": 0, - "episodeTitle": null, - "authCode": "NA", - "format": "HD", - "seasonNumber": null, - "listViewPrimaryImageUrl": "/db_photos/movies/AllPhotosAPGI/8797139/8797139_aa_l.jpg", - "eventCode": "", - "mainCategory": "Movies", - "hd": 1, - "liveStreaming": "B" - }, - { - "primaryImageUrl": "/db_photos/movies/AllPhotosAPGI/11928727/11928727_aa.jpg", - "restartAllowed": true, - "subcategoryList": [ - "Comedy", - "Movies Anywhere", - "Action/Adventure" - ], - "gridViewPrimaryImageUrl": "/db_photos/movies/AllPhotosAPGI/11928727/11928727_aa_p.jpg", - "rating": "TV14", - "description": null, - "title": "Ride Along 2", - "episodeNumber": null, - "duration": 120, - "disableFastForward": true, - "restartMaterialId": "B007881572U3", - "price": 0, - "repeat": true, - "lookBack": false, - "tvAdvisory": [ - "V" - ], - "dimension": "2D", - "ltd": "", - "programID": "MV007793670000", - "blackoutCode": "NA", - "airTime": "2023-01-15T03:30:00.000+0000", - "secLiveStreaming": "N", - "prOrd": 0, - "episodeTitle": null, - "authCode": "NA", - "format": "HD", - "seasonNumber": null, - "listViewPrimaryImageUrl": "/db_photos/movies/AllPhotosAPGI/11928727/11928727_aa_l.jpg", - "eventCode": "", - "mainCategory": "Movies", - "hd": 1, - "liveStreaming": "B" - }, - { - "primaryImageUrl": "/db_photos/showcards/v5/AllPhotos/184338/p184338_b_v5_aa.jpg", - "restartAllowed": true, - "subcategoryList": [ - "Series", - "Animation", - "Comedy" - ], - "gridViewPrimaryImageUrl": "/db_photos/showcards/v5/AllPhotosAPGT/184338/p184338_b_v5_aa_p.jpg", - "rating": "TVMA", - "description": null, - "title": "South Park", - "episodeNumber": 2, - "duration": 30, - "disableFastForward": true, - "restartMaterialId": "B007882364U3", - "price": 0, - "repeat": true, - "lookBack": true, - "tvAdvisory": [ - "D", - "L" - ], - "dimension": "2D", - "ltd": "", - "programID": "EP002298270441", - "blackoutCode": "NA", - "airTime": "2023-01-15T05:30:00.000+0000", - "secLiveStreaming": "N", - "prOrd": 0, - "episodeTitle": "Informative Murder Porn", - "authCode": "NA", - "format": "HD", - "seasonNumber": 17, - "listViewPrimaryImageUrl": "/db_photos/showcards/v5/AllPhotosAPGT/184338/p184338_b_v5_aa_l.jpg", - "eventCode": "", - "mainCategory": "TV", - "hd": 1, - "liveStreaming": "B" - }, - { - "primaryImageUrl": "/db_photos/showcards/v5/AllPhotos/184338/p184338_b_v5_aa.jpg", - "restartAllowed": true, - "subcategoryList": [ - "Series", - "Animation", - "Comedy" - ], - "gridViewPrimaryImageUrl": "/db_photos/showcards/v5/AllPhotosAPGT/184338/p184338_b_v5_aa_p.jpg", - "rating": "TVMA", - "description": null, - "title": "South Park", + "contentType": "EPISODE", + "description": "Viewers are taken for a behind-the-scenes look at a \"Family Guy\" production week; Peter is replaced and pitches a new series to Fox Television Group Chairmen and CEO's Dana Walden and Gary Newman.", + "displayTitle": "Family Guy", "episodeNumber": 4, - "duration": 30, - "disableFastForward": true, - "restartMaterialId": "B007882409U3", - "price": 0, - "repeat": true, - "lookBack": true, - "tvAdvisory": [ - "D", - "L" + "episodeTitle": "Inside Family Guy", + "genres": [ + "Comedy", + "Sitcom", + "Animated" ], - "dimension": "2D", - "ltd": "", - "programID": "EP002298270445", - "blackoutCode": "NA", - "airTime": "2023-01-15T06:00:00.000+0000", - "secLiveStreaming": "N", - "prOrd": 0, - "episodeTitle": "Goth Kids 3: Dawn of the Posers", - "authCode": "NA", - "format": "HD", - "seasonNumber": 17, - "listViewPrimaryImageUrl": "/db_photos/showcards/v5/AllPhotosAPGT/184338/p184338_b_v5_aa_l.jpg", - "eventCode": "", - "mainCategory": "TV", - "hd": 1, - "liveStreaming": "B" + "metadataLanguage": "en", + "originalAirDate": "2016-10-23", + "parentalRating": "TV14", + "releaseYear": 2016, + "seasonId": "7f1d42d9-0f8e-468f-a354-ddd552c95c53", + "seasonNumber": 15, + "seriesEditId": "fd684468-02d1-4a9d-a05a-83e7ba5b84c0", + "seriesId": "e79aa78f-f6b0-20fa-6b4c-a167fb50afe7", + "stbContentId": "1 1 48441 133", + "title": "Family Guy", + "tmsConnectorId": "SH002960010000", + "tmsId": "EP002960010307", + "resourceType": "CONTENT", + "resourceId": "5c23b28f-8883-3f03-a1ee-4ca03a0d10c8", + "editId": "9dc1b4ad-0ebf-4981-9a18-1d90c23127c8", + "itemType": "VIDEO_PROGRAM" }, { - "primaryImageUrl": "/db_photos/showcards/v5/AllPhotos/184338/p184338_b_v5_aa.jpg", - "restartAllowed": true, - "subcategoryList": [ - "Series", - "Animation", - "Comedy" + "apgId": "EP002960010308", + "canonicalId": "1ad407eb-28e4-45fc-11ad-b6ef842e9a46", + "categories": [ + "TVShow" ], - "gridViewPrimaryImageUrl": "/db_photos/showcards/v5/AllPhotosAPGT/184338/p184338_b_v5_aa_p.jpg", - "rating": "TVMA", - "description": null, - "title": "South Park", + "consumables": [ + { + "augmentation": { + "constraints": { + "isPlayable": false, + "isRecordable": false, + "isRestart": true, + "isLookback": false, + "isDAI": false, + "isFastForwardDisabled": true, + "isExtendable": false, + "isCDVRUpsell": false + } + }, + "consumableType": "LINEAR", + "duration": 1800, + "endTime": "2026-04-06T03:00:00Z", + "format": "HD", + "metadataLanguage": "en", + "parentalRating": "TV14", + "programChannelId": "5070bc2e-dd69-4dee-98b4-a4c5e3b1fd7b", + "qualifiers": [ + "CC" + ], + "resourceId": "ae1db982-7a91-3f55-9767-0fa294ac63ba", + "scheduleId": "ae1db982-7a91-3f55-9767-0fa294ac63ba", + "startTime": "2026-04-06T02:30:00Z" + } + ], + "contentType": "EPISODE", + "description": "Taylor Swift agrees to go to the homecoming dance with Chris; Peter decides to become an Uber driver.", + "displayTitle": "Family Guy", "episodeNumber": 5, - "duration": 30, - "disableFastForward": true, - "restartMaterialId": "B007882432U3", - "price": 0, - "repeat": true, - "lookBack": true, - "tvAdvisory": [ - "D", - "L" + "episodeTitle": "Chris Has Got a Date, Date, Date, Date, Date", + "genres": [ + "Comedy", + "Sitcom", + "Animated" ], - "dimension": "2D", - "ltd": "", - "programID": "EP002298270446", - "blackoutCode": "NA", - "airTime": "2023-01-15T06:30:00.000+0000", - "secLiveStreaming": "N", - "prOrd": 0, - "episodeTitle": "Taming Strange", - "authCode": "NA", - "format": "HD", - "seasonNumber": 17, - "listViewPrimaryImageUrl": "/db_photos/showcards/v5/AllPhotosAPGT/184338/p184338_b_v5_aa_l.jpg", - "eventCode": "", - "mainCategory": "TV", - "hd": 1, - "liveStreaming": "B" + "metadataLanguage": "en", + "originalAirDate": "2016-11-06", + "parentalRating": "TV14", + "releaseYear": 2016, + "seasonId": "7f1d42d9-0f8e-468f-a354-ddd552c95c53", + "seasonNumber": 15, + "seriesEditId": "fd684468-02d1-4a9d-a05a-83e7ba5b84c0", + "seriesId": "e79aa78f-f6b0-20fa-6b4c-a167fb50afe7", + "stbContentId": "1 1 48441 134", + "title": "Family Guy", + "tmsConnectorId": "SH002960010000", + "tmsId": "EP002960010308", + "resourceType": "CONTENT", + "resourceId": "ae1db982-7a91-3f55-9767-0fa294ac63ba", + "editId": "97134128-8626-4670-b544-2e31b6d78575", + "itemType": "VIDEO_PROGRAM" }, { - "primaryImageUrl": "/db_photos/showcards/v5/AllPhotos/184338/p184338_b_v5_aa.jpg", - "restartAllowed": true, - "subcategoryList": [ - "Series", - "Animation", - "Comedy" + "apgId": "EP002960010309", + "canonicalId": "3a548ce4-8087-349e-9f43-6f149f3e38b4", + "categories": [ + "TVShow" ], - "gridViewPrimaryImageUrl": "/db_photos/showcards/v5/AllPhotosAPGT/184338/p184338_b_v5_aa_p.jpg", - "rating": "TVMA", - "description": null, - "title": "South Park", - "episodeNumber": 10, - "duration": 30, - "disableFastForward": true, - "restartMaterialId": "B007882467U3", - "price": 0, - "repeat": true, - "lookBack": true, - "tvAdvisory": [ - "D", - "L" + "consumables": [ + { + "augmentation": { + "constraints": { + "isPlayable": false, + "isRecordable": false, + "isRestart": true, + "isLookback": false, + "isDAI": false, + "isFastForwardDisabled": true, + "isExtendable": false, + "isCDVRUpsell": false + } + }, + "consumableType": "LINEAR", + "duration": 1800, + "endTime": "2026-04-06T03:30:00Z", + "format": "HD", + "metadataLanguage": "en", + "parentalRating": "TV14", + "programChannelId": "5070bc2e-dd69-4dee-98b4-a4c5e3b1fd7b", + "qualifiers": [ + "CC" + ], + "resourceId": "52956f83-5d07-3796-9524-893b571a22ae", + "scheduleId": "52956f83-5d07-3796-9524-893b571a22ae", + "startTime": "2026-04-06T03:00:00Z" + } ], - "dimension": "2D", - "ltd": "", - "programID": "EP002298270451", - "blackoutCode": "NA", - "airTime": "2023-01-15T07:00:00.000+0000", - "secLiveStreaming": "N", - "prOrd": 0, - "episodeTitle": "The Hobbit", - "authCode": "NA", - "format": "HD", - "seasonNumber": 17, - "listViewPrimaryImageUrl": "/db_photos/showcards/v5/AllPhotosAPGT/184338/p184338_b_v5_aa_l.jpg", - "eventCode": "", - "mainCategory": "TV", - "hd": 1, - "liveStreaming": "B" - }, - { - "primaryImageUrl": "/db_photos/showcards/v5/AllPhotos/184338/p184338_b_v5_aa.jpg", - "restartAllowed": true, - "subcategoryList": [ - "Series", - "Animation", - "Comedy" - ], - "gridViewPrimaryImageUrl": "/db_photos/showcards/v5/AllPhotosAPGT/184338/p184338_b_v5_aa_p.jpg", - "rating": "TVMA", - "description": null, - "title": "South Park", + "contentType": "EPISODE", + "description": "Peter and Lois decide not to vaccinate Stewie after reading about the potential side effects; the rest of Quahog soon follows suit.", + "displayTitle": "Family Guy", "episodeNumber": 6, - "duration": 30, - "disableFastForward": true, - "restartMaterialId": "B007882501U3", - "price": 0, - "repeat": true, - "lookBack": true, - "tvAdvisory": [ - "L" + "episodeTitle": "Hot Shots", + "genres": [ + "Comedy", + "Sitcom", + "Animated" ], - "dimension": "2D", - "ltd": "", - "programID": "EP002298270782", - "blackoutCode": "NA", - "airTime": "2023-01-15T07:30:00.000+0000", - "secLiveStreaming": "N", - "prOrd": 0, - "episodeTitle": "Season Finale", - "authCode": "NA", - "format": "HD", - "seasonNumber": 23, - "listViewPrimaryImageUrl": "/db_photos/showcards/v5/AllPhotosAPGT/184338/p184338_b_v5_aa_l.jpg", - "eventCode": "", - "mainCategory": "TV", - "hd": 1, - "liveStreaming": "B" + "metadataLanguage": "en", + "originalAirDate": "2016-11-13", + "parentalRating": "TV14", + "releaseYear": 2016, + "seasonId": "7f1d42d9-0f8e-468f-a354-ddd552c95c53", + "seasonNumber": 15, + "seriesEditId": "fd684468-02d1-4a9d-a05a-83e7ba5b84c0", + "seriesId": "e79aa78f-f6b0-20fa-6b4c-a167fb50afe7", + "stbContentId": "1 1 48441 135", + "title": "Family Guy", + "tmsConnectorId": "SH002960010000", + "tmsId": "EP002960010309", + "resourceType": "CONTENT", + "resourceId": "52956f83-5d07-3796-9524-893b571a22ae", + "editId": "ca06af67-9e0e-44f4-bdb6-934af5efaebb", + "itemType": "VIDEO_PROGRAM" }, { - "primaryImageUrl": "/db_photos/showcards/v5/AllPhotos/184338/p184338_b_v5_aa.jpg", - "restartAllowed": true, - "subcategoryList": [ - "Series", - "Animation", - "Comedy" + "apgId": "EP002960010310", + "canonicalId": "8efeb1d4-724f-ca8f-11da-6559586fa6d4", + "categories": [ + "TVShow" ], - "gridViewPrimaryImageUrl": "/db_photos/showcards/v5/AllPhotosAPGT/184338/p184338_b_v5_aa_p.jpg", - "rating": "TVMA", - "description": null, - "title": "South Park", + "consumables": [ + { + "augmentation": { + "constraints": { + "isPlayable": false, + "isRecordable": false, + "isRestart": true, + "isLookback": false, + "isDAI": false, + "isFastForwardDisabled": true, + "isExtendable": false, + "isCDVRUpsell": false + } + }, + "consumableType": "LINEAR", + "duration": 1800, + "endTime": "2026-04-06T04:00:00Z", + "format": "HD", + "metadataLanguage": "en", + "parentalRating": "TV14", + "programChannelId": "5070bc2e-dd69-4dee-98b4-a4c5e3b1fd7b", + "qualifiers": [ + "CC" + ], + "resourceId": "6e5d270b-68a4-3c16-b847-dab23cd5e392", + "scheduleId": "6e5d270b-68a4-3c16-b847-dab23cd5e392", + "startTime": "2026-04-06T03:30:00Z" + } + ], + "contentType": "EPISODE", + "description": "The cast re-enacts \"The Great Gatsby,\" \"The Adventures of Huckleberry Finn\" and \"Of Mice and Men.\"", + "displayTitle": "Family Guy", "episodeNumber": 7, - "duration": 30, - "disableFastForward": true, - "restartMaterialId": "B007882549U3", - "price": 0, - "repeat": true, - "lookBack": true, - "tvAdvisory": [ - "L" + "episodeTitle": "High School English", + "genres": [ + "Comedy", + "Sitcom", + "Animated" ], - "dimension": "2D", - "ltd": "", - "programID": "EP002298270783", - "blackoutCode": "NA", - "airTime": "2023-01-15T08:00:00.000+0000", - "secLiveStreaming": "N", - "prOrd": 0, - "episodeTitle": "Board Girls", - "authCode": "NA", - "format": "HD", - "seasonNumber": 23, - "listViewPrimaryImageUrl": "/db_photos/showcards/v5/AllPhotosAPGT/184338/p184338_b_v5_aa_l.jpg", - "eventCode": "", - "mainCategory": "TV", - "hd": 1, - "liveStreaming": "B" + "metadataLanguage": "en", + "originalAirDate": "2016-11-20", + "parentalRating": "TV14", + "releaseYear": 2016, + "seasonId": "7f1d42d9-0f8e-468f-a354-ddd552c95c53", + "seasonNumber": 15, + "seriesEditId": "fd684468-02d1-4a9d-a05a-83e7ba5b84c0", + "seriesId": "e79aa78f-f6b0-20fa-6b4c-a167fb50afe7", + "stbContentId": "1 1 48441 136", + "title": "Family Guy", + "tmsConnectorId": "SH002960010000", + "tmsId": "EP002960010310", + "resourceType": "CONTENT", + "resourceId": "6e5d270b-68a4-3c16-b847-dab23cd5e392", + "editId": "04b0a0cf-f485-434f-b578-db84bb62ccbb", + "itemType": "VIDEO_PROGRAM" }, { - "primaryImageUrl": "/db_photos/showcards/v5/AllPhotos/184338/p184338_b_v5_aa.jpg", - "restartAllowed": true, - "subcategoryList": [ - "Series", - "Animation", - "Comedy" + "apgId": "EP002960010311", + "canonicalId": "98432cdb-31bb-27af-850c-dcd0a348656f", + "categories": [ + "TVShow" ], - "gridViewPrimaryImageUrl": "/db_photos/showcards/v5/AllPhotosAPGT/184338/p184338_b_v5_aa_p.jpg", - "rating": "TVMA", - "description": null, - "title": "South Park", + "consumables": [ + { + "augmentation": { + "constraints": { + "isPlayable": false, + "isRecordable": false, + "isRestart": true, + "isLookback": false, + "isDAI": false, + "isFastForwardDisabled": true, + "isExtendable": false, + "isCDVRUpsell": false + } + }, + "consumableType": "LINEAR", + "duration": 1800, + "endTime": "2026-04-06T04:30:00Z", + "format": "HD", + "metadataLanguage": "en", + "parentalRating": "TV14", + "programChannelId": "5070bc2e-dd69-4dee-98b4-a4c5e3b1fd7b", + "qualifiers": [ + "CC" + ], + "resourceId": "36d7fc6f-1f70-3c52-89c9-3cf400f0b064", + "scheduleId": "36d7fc6f-1f70-3c52-89c9-3cf400f0b064", + "startTime": "2026-04-06T04:00:00Z" + } + ], + "contentType": "EPISODE", + "description": "When Peter overhears Carter's plan to save money by using toxic chemicals in the brewery's beer cans, he tells a journalist about it; Brian asks for Stewie's help when his driver's license expired.", + "displayTitle": "Family Guy", "episodeNumber": 8, - "duration": 30, - "disableFastForward": true, - "restartMaterialId": "B007882576U3", - "price": 0, - "repeat": true, - "lookBack": true, - "tvAdvisory": [ - "L" + "episodeTitle": "Carter and Tricia", + "genres": [ + "Comedy", + "Sitcom", + "Animated" ], - "dimension": "2D", - "ltd": "", - "programID": "EP002298270784", - "blackoutCode": "NA", - "airTime": "2023-01-15T08:30:00.000+0000", - "secLiveStreaming": "N", - "prOrd": 0, - "episodeTitle": "Turd Burglars", - "authCode": "NA", - "format": "HD", - "seasonNumber": 23, - "listViewPrimaryImageUrl": "/db_photos/showcards/v5/AllPhotosAPGT/184338/p184338_b_v5_aa_l.jpg", - "eventCode": "", - "mainCategory": "TV", - "hd": 1, - "liveStreaming": "B" + "metadataLanguage": "en", + "originalAirDate": "2016-12-04", + "parentalRating": "TV14", + "releaseYear": 2016, + "seasonId": "7f1d42d9-0f8e-468f-a354-ddd552c95c53", + "seasonNumber": 15, + "seriesEditId": "fd684468-02d1-4a9d-a05a-83e7ba5b84c0", + "seriesId": "e79aa78f-f6b0-20fa-6b4c-a167fb50afe7", + "stbContentId": "1 1 48441 137", + "title": "Family Guy", + "tmsConnectorId": "SH002960010000", + "tmsId": "EP002960010311", + "resourceType": "CONTENT", + "resourceId": "36d7fc6f-1f70-3c52-89c9-3cf400f0b064", + "editId": "9f6d1653-17ae-480e-ae4d-7501c9c29454", + "itemType": "VIDEO_PROGRAM" }, { - "primaryImageUrl": "/db_photos/showcards/v5/AllPhotos/184338/p184338_b_v5_aa.jpg", - "restartAllowed": true, - "subcategoryList": [ - "Series", - "Animation", - "Comedy" + "apgId": "EP002960010312", + "canonicalId": "2c37fbe3-6535-9ead-d3b8-ccbfba3ab936", + "categories": [ + "TVShow" ], - "gridViewPrimaryImageUrl": "/db_photos/showcards/v5/AllPhotosAPGT/184338/p184338_b_v5_aa_p.jpg", - "rating": "TVMA", - "description": null, - "title": "South Park", + "consumables": [ + { + "augmentation": { + "constraints": { + "isPlayable": false, + "isRecordable": false, + "isRestart": true, + "isLookback": false, + "isDAI": false, + "isFastForwardDisabled": true, + "isExtendable": false, + "isCDVRUpsell": false + } + }, + "consumableType": "LINEAR", + "duration": 1800, + "endTime": "2026-04-06T05:00:00Z", + "format": "HD", + "metadataLanguage": "en", + "parentalRating": "TV14", + "programChannelId": "5070bc2e-dd69-4dee-98b4-a4c5e3b1fd7b", + "qualifiers": [ + "CC" + ], + "resourceId": "65011367-6a08-3e42-94e2-0bc67b4f0cca", + "scheduleId": "65011367-6a08-3e42-94e2-0bc67b4f0cca", + "startTime": "2026-04-06T04:30:00Z" + } + ], + "contentType": "EPISODE", + "description": "Peter gets power hungry when he's asked to fill in for a mall Santa; Stewie and Brian decide to crash holiday office parties for free food, fun and women.", + "displayTitle": "Family Guy", "episodeNumber": 9, - "duration": 30, - "disableFastForward": true, - "restartMaterialId": "B007882621U3", - "price": 0, - "repeat": true, - "lookBack": true, - "tvAdvisory": [ - "L" + "episodeTitle": "How the Griffin Stole Christmas", + "genres": [ + "Comedy", + "Sitcom", + "Holiday", + "Animated" ], - "dimension": "2D", - "ltd": "", - "programID": "EP002298270785", - "blackoutCode": "NA", - "airTime": "2023-01-15T09:00:00.000+0000", - "secLiveStreaming": "N", - "prOrd": 0, - "episodeTitle": "Basic Cable", - "authCode": "NA", - "format": "HD", - "seasonNumber": 23, - "listViewPrimaryImageUrl": "/db_photos/showcards/v5/AllPhotosAPGT/184338/p184338_b_v5_aa_l.jpg", - "eventCode": "", - "mainCategory": "TV", - "hd": 1, - "liveStreaming": "B" + "metadataLanguage": "en", + "originalAirDate": "2016-12-11", + "parentalRating": "TV14", + "releaseYear": 2016, + "seasonId": "7f1d42d9-0f8e-468f-a354-ddd552c95c53", + "seasonNumber": 15, + "seriesEditId": "fd684468-02d1-4a9d-a05a-83e7ba5b84c0", + "seriesId": "e79aa78f-f6b0-20fa-6b4c-a167fb50afe7", + "stbContentId": "1 1 48441 138", + "title": "Family Guy", + "tmsConnectorId": "SH002960010000", + "tmsId": "EP002960010312", + "resourceType": "CONTENT", + "resourceId": "65011367-6a08-3e42-94e2-0bc67b4f0cca", + "editId": "ca489484-cfc4-4e48-bccc-3c9e5da60f9c", + "itemType": "VIDEO_PROGRAM" }, { - "primaryImageUrl": "/db_photos/showcards/v5/AllPhotos/184338/p184338_b_v5_aa.jpg", - "restartAllowed": true, - "subcategoryList": [ - "Series", - "Animation", - "Comedy" + "apgId": "EP002298270305", + "canonicalId": "f75fc527-993f-d52c-4732-163087c1ba2f", + "categories": [ + "TVShow" ], - "gridViewPrimaryImageUrl": "/db_photos/showcards/v5/AllPhotosAPGT/184338/p184338_b_v5_aa_p.jpg", - "rating": "TVMA", - "description": null, - "title": "South Park", - "episodeNumber": 8, - "duration": 30, - "disableFastForward": true, - "restartMaterialId": "B007882665U3", - "price": 0, - "repeat": true, - "lookBack": true, - "dimension": "2D", - "ltd": "", - "programID": "EP002298270467", - "blackoutCode": "NA", - "airTime": "2023-01-15T09:30:00.000+0000", - "secLiveStreaming": "N", - "prOrd": 0, - "episodeTitle": "C... Magic", - "authCode": "NA", - "format": "HD", - "seasonNumber": 18, - "listViewPrimaryImageUrl": "/db_photos/showcards/v5/AllPhotosAPGT/184338/p184338_b_v5_aa_l.jpg", - "eventCode": "", - "mainCategory": "TV", - "hd": 1, - "liveStreaming": "B" - }, - { - "primaryImageUrl": "/db_photos/showcards/v5/AllPhotos/13662735/p13662735_b_v5_aa.jpg", - "restartAllowed": true, - "subcategoryList": [ - "Series", - "Product Info", - "Shopping" + "consumables": [ + { + "augmentation": { + "constraints": { + "isPlayable": false, + "isRecordable": false, + "isRestart": true, + "isLookback": false, + "isDAI": false, + "isFastForwardDisabled": true, + "isExtendable": false, + "isCDVRUpsell": false + } + }, + "consumableType": "LINEAR", + "duration": 1800, + "endTime": "2026-04-06T05:30:00Z", + "format": "HD", + "metadataLanguage": "en", + "parentalRating": "TVMA", + "programChannelId": "5070bc2e-dd69-4dee-98b4-a4c5e3b1fd7b", + "qualifiers": [ + "CC", + "1080p", + "HDTV" + ], + "resourceId": "db8a692e-7033-324a-908a-6f8bd938df7a", + "scheduleId": "db8a692e-7033-324a-908a-6f8bd938df7a", + "startTime": "2026-04-06T05:00:00Z" + } ], - "gridViewPrimaryImageUrl": "/db_photos/showcards/v5/AllPhotosAPGT/13662735/p13662735_b_v5_aa_p.jpg", - "rating": "TVMA", - "description": null, - "title": "Sex Toys - 50 Percent OFF!", - "episodeNumber": null, - "duration": 30, - "disableFastForward": true, - "restartMaterialId": "B007882701U3", - "price": 0, - "repeat": true, - "lookBack": false, - "dimension": "2D", - "ltd": "", - "programID": "SH025929710000", - "blackoutCode": "NA", - "airTime": "2023-01-15T10:00:00.000+0000", - "secLiveStreaming": "N", - "prOrd": 0, - "episodeTitle": null, - "authCode": "NA", - "format": "SD", - "seasonNumber": null, - "listViewPrimaryImageUrl": "/db_photos/showcards/v5/AllPhotosAPGT/13662735/p13662735_b_v5_aa_l.jpg", - "eventCode": "", - "mainCategory": "TV", - "hd": 1, - "liveStreaming": "B" - }, - { - "primaryImageUrl": "/db_photos/showcards/v5/AllPhotos/16255884/p16255884_b_v5_aa.jpg", - "restartAllowed": true, - "subcategoryList": [ - "Series", - "Product Info", - "Shopping" - ], - "gridViewPrimaryImageUrl": "/db_photos/showcards/v5/AllPhotosAPGT/16255884/p16255884_b_v5_aa_p.jpg", - "rating": "NR (Not Rated)", - "description": null, - "title": "Men's Health: All-Natural Secret for Prostate Health", - "episodeNumber": null, - "duration": 30, - "disableFastForward": true, - "restartMaterialId": "B007882739U3", - "price": 0, - "repeat": true, - "lookBack": false, - "dimension": "2D", - "ltd": "", - "programID": "SH030991650000", - "blackoutCode": "NA", - "airTime": "2023-01-15T10:30:00.000+0000", - "secLiveStreaming": "N", - "prOrd": 0, - "episodeTitle": null, - "authCode": "NA", - "format": "SD", - "seasonNumber": null, - "listViewPrimaryImageUrl": "/db_photos/showcards/v5/AllPhotosAPGT/16255884/p16255884_b_v5_aa_l.jpg", - "eventCode": "", - "mainCategory": "TV", - "hd": 1, - "liveStreaming": "B" - }, - { - "primaryImageUrl": "/db_photos/default/TV/tv.jpg", - "restartAllowed": true, - "subcategoryList": [ - "Series", - "Product Info", - "Shopping" - ], - "gridViewPrimaryImageUrl": "/db_photos/default/TV/tv_p.jpg", - "rating": "TVG", - "description": null, - "title": "Jane Seymour, Kate Walsh share their skin secrets", - "episodeNumber": null, - "duration": 30, - "disableFastForward": true, - "restartMaterialId": "B007882812U3", - "price": 0, - "repeat": true, - "lookBack": false, - "dimension": "2D", - "ltd": "", - "programID": "SH043806090000", - "blackoutCode": "NA", - "airTime": "2023-01-15T11:00:00.000+0000", - "secLiveStreaming": "N", - "prOrd": 0, - "episodeTitle": null, - "authCode": "NA", - "format": "SD", - "seasonNumber": null, - "listViewPrimaryImageUrl": "/db_photos/default/TV/tv_l.jpg", - "eventCode": "", - "mainCategory": "TV", - "hd": 1, - "liveStreaming": "B" - }, - { - "primaryImageUrl": "/db_photos/showcards/v5/AllPhotos/194833/p194833_b_v5_aa.jpg", - "restartAllowed": true, - "subcategoryList": [ - "Series", - "Comedy" - ], - "gridViewPrimaryImageUrl": "/db_photos/showcards/v5/AllPhotosAPGT/194833/p194833_b_v5_aa_p.jpg", - "rating": "TVPG", - "description": null, - "title": "Parks and Recreation", - "episodeNumber": 3, - "duration": 30, - "disableFastForward": true, - "restartMaterialId": "B007882858U3", - "price": 0, - "repeat": true, - "lookBack": false, - "tvAdvisory": [ - "D" - ], - "dimension": "2D", - "ltd": "", - "programID": "EP011281150009", - "blackoutCode": "NA", - "airTime": "2023-01-15T11:30:00.000+0000", - "secLiveStreaming": "N", - "prOrd": 0, - "episodeTitle": "Beauty Pageant", - "authCode": "NA", - "format": "HD", - "seasonNumber": 2, - "listViewPrimaryImageUrl": "/db_photos/showcards/v5/AllPhotosAPGT/194833/p194833_b_v5_aa_l.jpg", - "eventCode": "", - "mainCategory": "TV", - "hd": 1, - "liveStreaming": "B" - }, - { - "primaryImageUrl": "/db_photos/showcards/v5/AllPhotos/194833/p194833_b_v5_aa.jpg", - "restartAllowed": true, - "subcategoryList": [ - "Series", - "Comedy" - ], - "gridViewPrimaryImageUrl": "/db_photos/showcards/v5/AllPhotosAPGT/194833/p194833_b_v5_aa_p.jpg", - "rating": "TVPG", - "description": null, - "title": "Parks and Recreation", - "episodeNumber": 4, - "duration": 30, - "disableFastForward": true, - "restartMaterialId": "B007882910U3", - "price": 0, - "repeat": true, - "lookBack": false, - "tvAdvisory": [ - "D", - "L" - ], - "dimension": "2D", - "ltd": "", - "programID": "EP011281150010", - "blackoutCode": "NA", - "airTime": "2023-01-15T12:00:00.000+0000", - "secLiveStreaming": "N", - "prOrd": 0, - "episodeTitle": "The Practice Date", - "authCode": "NA", - "format": "HD", - "seasonNumber": 2, - "listViewPrimaryImageUrl": "/db_photos/showcards/v5/AllPhotosAPGT/194833/p194833_b_v5_aa_l.jpg", - "eventCode": "", - "mainCategory": "TV", - "hd": 1, - "liveStreaming": "B" - }, - { - "primaryImageUrl": "/db_photos/showcards/v5/AllPhotos/194833/p194833_b_v5_aa.jpg", - "restartAllowed": true, - "subcategoryList": [ - "Series", - "Comedy" - ], - "gridViewPrimaryImageUrl": "/db_photos/showcards/v5/AllPhotosAPGT/194833/p194833_b_v5_aa_p.jpg", - "rating": "TVPG", - "description": null, - "title": "Parks and Recreation", - "episodeNumber": 5, - "duration": 30, - "disableFastForward": true, - "restartMaterialId": "B007882952U3", - "price": 0, - "repeat": true, - "lookBack": false, - "dimension": "2D", - "ltd": "", - "programID": "EP011281150011", - "blackoutCode": "NA", - "airTime": "2023-01-15T12:30:00.000+0000", - "secLiveStreaming": "N", - "prOrd": 0, - "episodeTitle": "Sister City", - "authCode": "NA", - "format": "HD", - "seasonNumber": 2, - "listViewPrimaryImageUrl": "/db_photos/showcards/v5/AllPhotosAPGT/194833/p194833_b_v5_aa_l.jpg", - "eventCode": "", - "mainCategory": "TV", - "hd": 1, - "liveStreaming": "B" - }, - { - "primaryImageUrl": "/db_photos/showcards/v5/AllPhotosAPGT/episodes/SH000169160000/EP000169160038/EP000169160038_aa.jpg", - "restartAllowed": true, - "subcategoryList": [ - "Series", - "Comedy" - ], - "gridViewPrimaryImageUrl": "/db_photos/showcards/v5/AllPhotosAPGT/episodes/SH000169160000/EP000169160038/EP000169160038_aa_p.jpg", - "rating": "TVPG", - "description": null, - "title": "Seinfeld", - "episodeNumber": 12, - "duration": 30, - "disableFastForward": true, - "restartMaterialId": "B007882999U3", - "price": 0, - "repeat": true, - "lookBack": false, - "dimension": "2D", - "ltd": "", - "programID": "EP000169160038", - "blackoutCode": "NA", - "airTime": "2023-01-15T13:00:00.000+0000", - "secLiveStreaming": "N", - "prOrd": 0, - "episodeTitle": "The Red Dot", - "authCode": "NA", - "format": "HD", - "seasonNumber": 3, - "listViewPrimaryImageUrl": "/db_photos/showcards/v5/AllPhotosAPGT/episodes/SH000169160000/EP000169160038/EP000169160038_aa_l.jpg", - "eventCode": "", - "mainCategory": "TV", - "hd": 1, - "liveStreaming": "B" - }, - { - "primaryImageUrl": "/db_photos/showcards/v5/AllPhotosAPGT/episodes/SH000169160000/EP000169160001/EP000169160001_aa.jpg", - "restartAllowed": true, - "subcategoryList": [ - "Series", - "Comedy" - ], - "gridViewPrimaryImageUrl": "/db_photos/showcards/v5/AllPhotosAPGT/episodes/SH000169160000/EP000169160001/EP000169160001_aa_p.jpg", - "rating": "TVPG", - "description": null, - "title": "Seinfeld", - "episodeNumber": 13, - "duration": 30, - "disableFastForward": true, - "restartMaterialId": "B007883030U3", - "price": 0, - "repeat": true, - "lookBack": false, - "dimension": "2D", - "ltd": "", - "programID": "EP000169160001", - "blackoutCode": "NA", - "airTime": "2023-01-15T13:30:00.000+0000", - "secLiveStreaming": "N", - "prOrd": 0, - "episodeTitle": "The Subway", - "authCode": "NA", - "format": "HD", - "seasonNumber": 3, - "listViewPrimaryImageUrl": "/db_photos/showcards/v5/AllPhotosAPGT/episodes/SH000169160000/EP000169160001/EP000169160001_aa_l.jpg", - "eventCode": "", - "mainCategory": "TV", - "hd": 1, - "liveStreaming": "B" - }, - { - "primaryImageUrl": "/db_photos/showcards/v5/AllPhotosAPGT/episodes/SH000169160000/EP000169160002/EP000169160002_aa.jpg", - "restartAllowed": true, - "subcategoryList": [ - "Series", - "Comedy" - ], - "gridViewPrimaryImageUrl": "/db_photos/showcards/v5/AllPhotosAPGT/episodes/SH000169160000/EP000169160002/EP000169160002_aa_p.jpg", - "rating": "TVPG", - "description": null, - "title": "Seinfeld", - "episodeNumber": 14, - "duration": 30, - "disableFastForward": true, - "restartMaterialId": "B007883080U3", - "price": 0, - "repeat": true, - "lookBack": false, - "dimension": "2D", - "ltd": "", - "programID": "EP000169160002", - "blackoutCode": "NA", - "airTime": "2023-01-15T14:00:00.000+0000", - "secLiveStreaming": "N", - "prOrd": 0, - "episodeTitle": "The Pez Dispenser", - "authCode": "NA", - "format": "HD", - "seasonNumber": 3, - "listViewPrimaryImageUrl": "/db_photos/showcards/v5/AllPhotosAPGT/episodes/SH000169160000/EP000169160002/EP000169160002_aa_l.jpg", - "eventCode": "", - "mainCategory": "TV", - "hd": 1, - "liveStreaming": "B" - }, - { - "primaryImageUrl": "/db_photos/showcards/v5/AllPhotosAPGT/episodes/SH000169160000/EP000169160006/EP000169160006_aa.jpg", - "restartAllowed": true, - "subcategoryList": [ - "Series", - "Comedy" - ], - "gridViewPrimaryImageUrl": "/db_photos/showcards/v5/AllPhotosAPGT/episodes/SH000169160000/EP000169160006/EP000169160006_aa_p.jpg", - "rating": "TVPG", - "description": null, - "title": "Seinfeld", - "episodeNumber": 16, - "duration": 30, - "disableFastForward": true, - "restartMaterialId": "B007883111U3", - "price": 0, - "repeat": true, - "lookBack": false, - "dimension": "2D", - "ltd": "", - "programID": "EP000169160006", - "blackoutCode": "NA", - "airTime": "2023-01-15T14:30:00.000+0000", - "secLiveStreaming": "N", - "prOrd": 0, - "episodeTitle": "The Fix-Up", - "authCode": "NA", - "format": "HD", - "seasonNumber": 3, - "listViewPrimaryImageUrl": "/db_photos/showcards/v5/AllPhotosAPGT/episodes/SH000169160000/EP000169160006/EP000169160006_aa_l.jpg", - "eventCode": "", - "mainCategory": "TV", - "hd": 1, - "liveStreaming": "B" - }, - { - "primaryImageUrl": "/db_photos/showcards/v5/AllPhotos/185008/p185008_b_v5_aa.jpg", - "restartAllowed": true, - "subcategoryList": [ - "Series", - "Comedy" - ], - "gridViewPrimaryImageUrl": "/db_photos/showcards/v5/AllPhotosAPGT/185008/p185008_b_v5_aa_p.jpg", - "rating": "TV14", - "description": null, - "title": "The Office", - "episodeNumber": 12, - "duration": 30, - "disableFastForward": true, - "restartMaterialId": "B007883166U3", - "price": 0, - "repeat": true, - "lookBack": false, - "tvAdvisory": [ - "D", - "L" - ], - "dimension": "2D", - "ltd": "", - "programID": "EP007261330123", - "blackoutCode": "NA", - "airTime": "2023-01-15T15:00:00.000+0000", - "secLiveStreaming": "N", - "prOrd": 0, - "episodeTitle": "Scott's Tots", - "authCode": "NA", - "format": "HD", - "seasonNumber": 6, - "listViewPrimaryImageUrl": "/db_photos/showcards/v5/AllPhotosAPGT/185008/p185008_b_v5_aa_l.jpg", - "eventCode": "", - "mainCategory": "TV", - "hd": 1, - "liveStreaming": "B" - }, - { - "primaryImageUrl": "/db_photos/showcards/v5/AllPhotos/185008/p185008_b_v5_aa.jpg", - "restartAllowed": true, - "subcategoryList": [ - "Series", - "Comedy" - ], - "gridViewPrimaryImageUrl": "/db_photos/showcards/v5/AllPhotosAPGT/185008/p185008_b_v5_aa_p.jpg", - "rating": "TV14", - "description": null, - "title": "The Office", - "episodeNumber": 14, - "duration": 30, - "disableFastForward": true, - "restartMaterialId": "B007883199U3", - "price": 0, - "repeat": true, - "lookBack": false, - "tvAdvisory": [ - "D", - "L" - ], - "dimension": "2D", - "ltd": "", - "programID": "EP007261330125", - "blackoutCode": "NA", - "airTime": "2023-01-15T15:30:00.000+0000", - "secLiveStreaming": "N", - "prOrd": 0, - "episodeTitle": "The Banker", - "authCode": "NA", - "format": "HD", - "seasonNumber": 6, - "listViewPrimaryImageUrl": "/db_photos/showcards/v5/AllPhotosAPGT/185008/p185008_b_v5_aa_l.jpg", - "eventCode": "", - "mainCategory": "TV", - "hd": 1, - "liveStreaming": "B" - }, - { - "primaryImageUrl": "/db_photos/showcards/v5/AllPhotosAPGT/episodes/SH007261330000/EP007261330126/EP007261330126_aa.jpg", - "restartAllowed": true, - "subcategoryList": [ - "Series", - "Comedy" - ], - "gridViewPrimaryImageUrl": "/db_photos/showcards/v5/AllPhotosAPGT/episodes/SH007261330000/EP007261330126/EP007261330126_aa_p.jpg", - "rating": "TV14", - "description": null, - "title": "The Office", - "episodeNumber": 15, - "duration": 30, - "disableFastForward": true, - "restartMaterialId": "B007883237U3", - "price": 0, - "repeat": true, - "lookBack": false, - "tvAdvisory": [ - "D", - "L" - ], - "dimension": "2D", - "ltd": "", - "programID": "EP007261330126", - "blackoutCode": "NA", - "airTime": "2023-01-15T16:00:00.000+0000", - "secLiveStreaming": "N", - "prOrd": 0, - "episodeTitle": "Sabre", - "authCode": "NA", - "format": "HD", - "seasonNumber": 6, - "listViewPrimaryImageUrl": "/db_photos/showcards/v5/AllPhotosAPGT/episodes/SH007261330000/EP007261330126/EP007261330126_aa_l.jpg", - "eventCode": "", - "mainCategory": "TV", - "hd": 1, - "liveStreaming": "B" - }, - { - "primaryImageUrl": "/db_photos/showcards/v5/AllPhotosAPGT/episodes/SH007261330000/EP007261330127/EP007261330127_aa.jpg", - "restartAllowed": true, - "subcategoryList": [ - "Series", - "Comedy" - ], - "gridViewPrimaryImageUrl": "/db_photos/showcards/v5/AllPhotosAPGT/episodes/SH007261330000/EP007261330127/EP007261330127_aa_p.jpg", - "rating": "TV14", - "description": null, - "title": "The Office", - "episodeNumber": 16, - "duration": 30, - "disableFastForward": true, - "restartMaterialId": "B007883274U3", - "price": 0, - "repeat": true, - "lookBack": false, - "tvAdvisory": [ - "D", - "L" - ], - "dimension": "2D", - "ltd": "", - "programID": "EP007261330127", - "blackoutCode": "NA", - "airTime": "2023-01-15T16:30:00.000+0000", - "secLiveStreaming": "N", - "prOrd": 0, - "episodeTitle": "Manager and Salesman", - "authCode": "NA", - "format": "HD", - "seasonNumber": 6, - "listViewPrimaryImageUrl": "/db_photos/showcards/v5/AllPhotosAPGT/episodes/SH007261330000/EP007261330127/EP007261330127_aa_l.jpg", - "eventCode": "", - "mainCategory": "TV", - "hd": 1, - "liveStreaming": "B" - }, - { - "primaryImageUrl": "/db_photos/showcards/v5/AllPhotos/185008/p185008_b_v5_aa.jpg", - "restartAllowed": true, - "subcategoryList": [ - "Series", - "Comedy" - ], - "gridViewPrimaryImageUrl": "/db_photos/showcards/v5/AllPhotosAPGT/185008/p185008_b_v5_aa_p.jpg", - "rating": "TV14", - "description": null, - "title": "The Office", - "episodeNumber": 17, - "duration": 30, - "disableFastForward": true, - "restartMaterialId": "B007883325U3", - "price": 0, - "repeat": true, - "lookBack": false, - "tvAdvisory": [ - "D", - "L" - ], - "dimension": "2D", - "ltd": "", - "programID": "EP007261330242", - "blackoutCode": "NA", - "airTime": "2023-01-15T17:00:00.000+0000", - "secLiveStreaming": "N", - "prOrd": 0, - "episodeTitle": "The Delivery", - "authCode": "NA", - "format": "HD", - "seasonNumber": 6, - "listViewPrimaryImageUrl": "/db_photos/showcards/v5/AllPhotosAPGT/185008/p185008_b_v5_aa_l.jpg", - "eventCode": "", - "mainCategory": "TV", - "hd": 1, - "liveStreaming": "B" - }, - { - "primaryImageUrl": "/db_photos/showcards/v5/AllPhotos/185008/p185008_b_v5_aa.jpg", - "restartAllowed": true, - "subcategoryList": [ - "Series", - "Comedy" - ], - "gridViewPrimaryImageUrl": "/db_photos/showcards/v5/AllPhotosAPGT/185008/p185008_b_v5_aa_p.jpg", - "rating": "TV14", - "description": null, - "title": "The Office", - "episodeNumber": 18, - "duration": 30, - "disableFastForward": true, - "restartMaterialId": "B007883353U3", - "price": 0, - "repeat": true, - "lookBack": false, - "tvAdvisory": [ - "D", - "L" - ], - "dimension": "2D", - "ltd": "", - "programID": "EP007261330243", - "blackoutCode": "NA", - "airTime": "2023-01-15T17:30:00.000+0000", - "secLiveStreaming": "N", - "prOrd": 0, - "episodeTitle": "The Delivery", - "authCode": "NA", - "format": "HD", - "seasonNumber": 6, - "listViewPrimaryImageUrl": "/db_photos/showcards/v5/AllPhotosAPGT/185008/p185008_b_v5_aa_l.jpg", - "eventCode": "", - "mainCategory": "TV", - "hd": 1, - "liveStreaming": "B" - }, - { - "primaryImageUrl": "/db_photos/showcards/v5/AllPhotos/185008/p185008_b_v5_aa.jpg", - "restartAllowed": true, - "subcategoryList": [ - "Series", - "Comedy" - ], - "gridViewPrimaryImageUrl": "/db_photos/showcards/v5/AllPhotosAPGT/185008/p185008_b_v5_aa_p.jpg", - "rating": "TV14", - "description": null, - "title": "The Office", - "episodeNumber": 19, - "duration": 30, - "disableFastForward": true, - "restartMaterialId": "B007883369U3", - "price": 0, - "repeat": true, - "lookBack": false, - "tvAdvisory": [ - "D", - "L" - ], - "dimension": "2D", - "ltd": "", - "programID": "EP007261330129", - "blackoutCode": "NA", - "airTime": "2023-01-15T18:00:00.000+0000", - "secLiveStreaming": "N", - "prOrd": 0, - "episodeTitle": "St. Patrick's Day", - "authCode": "NA", - "format": "HD", - "seasonNumber": 6, - "listViewPrimaryImageUrl": "/db_photos/showcards/v5/AllPhotosAPGT/185008/p185008_b_v5_aa_l.jpg", - "eventCode": "", - "mainCategory": "TV", - "hd": 1, - "liveStreaming": "B" - }, - { - "primaryImageUrl": "/db_photos/showcards/v5/AllPhotos/185008/p185008_b_v5_aa.jpg", - "restartAllowed": true, - "subcategoryList": [ - "Series", - "Comedy" - ], - "gridViewPrimaryImageUrl": "/db_photos/showcards/v5/AllPhotosAPGT/185008/p185008_b_v5_aa_p.jpg", - "rating": "TV14", - "description": null, - "title": "The Office", - "episodeNumber": 20, - "duration": 30, - "disableFastForward": true, - "restartMaterialId": "B007883424U3", - "price": 0, - "repeat": true, - "lookBack": false, - "tvAdvisory": [ - "D", - "L" - ], - "dimension": "2D", - "ltd": "", - "programID": "EP007261330130", - "blackoutCode": "NA", - "airTime": "2023-01-15T18:30:00.000+0000", - "secLiveStreaming": "N", - "prOrd": 0, - "episodeTitle": "New Leads", - "authCode": "NA", - "format": "HD", - "seasonNumber": 6, - "listViewPrimaryImageUrl": "/db_photos/showcards/v5/AllPhotosAPGT/185008/p185008_b_v5_aa_l.jpg", - "eventCode": "", - "mainCategory": "TV", - "hd": 1, - "liveStreaming": "B" - }, - { - "primaryImageUrl": "/db_photos/showcards/v5/AllPhotosAPGT/episodes/SH007261330000/EP007261330131/EP007261330131_aa.jpg", - "restartAllowed": true, - "subcategoryList": [ - "Series", - "Comedy" - ], - "gridViewPrimaryImageUrl": "/db_photos/showcards/v5/AllPhotosAPGT/episodes/SH007261330000/EP007261330131/EP007261330131_aa_p.jpg", - "rating": "TV14", - "description": null, - "title": "The Office", - "episodeNumber": 21, - "duration": 30, - "disableFastForward": true, - "restartMaterialId": "B007883486U3", - "price": 0, - "repeat": true, - "lookBack": false, - "tvAdvisory": [ - "D", - "L" - ], - "dimension": "2D", - "ltd": "", - "programID": "EP007261330131", - "blackoutCode": "NA", - "airTime": "2023-01-15T19:00:00.000+0000", - "secLiveStreaming": "N", - "prOrd": 0, - "episodeTitle": "Happy Hour", - "authCode": "NA", - "format": "HD", - "seasonNumber": 6, - "listViewPrimaryImageUrl": "/db_photos/showcards/v5/AllPhotosAPGT/episodes/SH007261330000/EP007261330131/EP007261330131_aa_l.jpg", - "eventCode": "", - "mainCategory": "TV", - "hd": 1, - "liveStreaming": "B" - }, - { - "primaryImageUrl": "/db_photos/showcards/v5/AllPhotos/185008/p185008_b_v5_aa.jpg", - "restartAllowed": true, - "subcategoryList": [ - "Series", - "Comedy" - ], - "gridViewPrimaryImageUrl": "/db_photos/showcards/v5/AllPhotosAPGT/185008/p185008_b_v5_aa_p.jpg", - "rating": "TV14", - "description": null, - "title": "The Office", - "episodeNumber": 22, - "duration": 30, - "disableFastForward": true, - "restartMaterialId": "B007883509U3", - "price": 0, - "repeat": true, - "lookBack": false, - "tvAdvisory": [ - "D", - "L" - ], - "dimension": "2D", - "ltd": "", - "programID": "EP007261330134", - "blackoutCode": "NA", - "airTime": "2023-01-15T19:30:00.000+0000", - "secLiveStreaming": "N", - "prOrd": 0, - "episodeTitle": "Secretary's Day", - "authCode": "NA", - "format": "HD", - "seasonNumber": 6, - "listViewPrimaryImageUrl": "/db_photos/showcards/v5/AllPhotosAPGT/185008/p185008_b_v5_aa_l.jpg", - "eventCode": "", - "mainCategory": "TV", - "hd": 1, - "liveStreaming": "B" - }, - { - "primaryImageUrl": "/db_photos/showcards/v5/AllPhotosAPGT/episodes/SH007261330000/EP007261330135/EP007261330135_aa.jpg", - "restartAllowed": true, - "subcategoryList": [ - "Series", - "Comedy" - ], - "gridViewPrimaryImageUrl": "/db_photos/showcards/v5/AllPhotosAPGT/episodes/SH007261330000/EP007261330135/EP007261330135_aa_p.jpg", - "rating": "TV14", - "description": null, - "title": "The Office", - "episodeNumber": 23, - "duration": 30, - "disableFastForward": true, - "restartMaterialId": "B007883536U3", - "price": 0, - "repeat": true, - "lookBack": false, - "tvAdvisory": [ - "D", - "L" - ], - "dimension": "2D", - "ltd": "", - "programID": "EP007261330135", - "blackoutCode": "NA", - "airTime": "2023-01-15T20:00:00.000+0000", - "secLiveStreaming": "N", - "prOrd": 0, - "episodeTitle": "Body Language", - "authCode": "NA", - "format": "HD", - "seasonNumber": 6, - "listViewPrimaryImageUrl": "/db_photos/showcards/v5/AllPhotosAPGT/episodes/SH007261330000/EP007261330135/EP007261330135_aa_l.jpg", - "eventCode": "", - "mainCategory": "TV", - "hd": 1, - "liveStreaming": "B" - }, - { - "primaryImageUrl": "/db_photos/showcards/v5/AllPhotos/185008/p185008_b_v5_aa.jpg", - "restartAllowed": true, - "subcategoryList": [ - "Series", - "Comedy" - ], - "gridViewPrimaryImageUrl": "/db_photos/showcards/v5/AllPhotosAPGT/185008/p185008_b_v5_aa_p.jpg", - "rating": "TV14", - "description": null, - "title": "The Office", - "episodeNumber": 24, - "duration": 30, - "disableFastForward": true, - "restartMaterialId": "B007883577U3", - "price": 0, - "repeat": true, - "lookBack": false, - "tvAdvisory": [ - "D", - "L" - ], - "dimension": "2D", - "ltd": "", - "programID": "EP007261330136", - "blackoutCode": "NA", - "airTime": "2023-01-15T20:30:00.000+0000", - "secLiveStreaming": "N", - "prOrd": 0, - "episodeTitle": "The Cover-Up", - "authCode": "NA", - "format": "HD", - "seasonNumber": 6, - "listViewPrimaryImageUrl": "/db_photos/showcards/v5/AllPhotosAPGT/185008/p185008_b_v5_aa_l.jpg", - "eventCode": "", - "mainCategory": "TV", - "hd": 1, - "liveStreaming": "B" - }, - { - "primaryImageUrl": "/db_photos/showcards/v5/AllPhotos/185008/p185008_b_v5_aa.jpg", - "restartAllowed": true, - "subcategoryList": [ - "Series", - "Comedy" - ], - "gridViewPrimaryImageUrl": "/db_photos/showcards/v5/AllPhotosAPGT/185008/p185008_b_v5_aa_p.jpg", - "rating": "TV14", - "description": null, - "title": "The Office", - "episodeNumber": 25, - "duration": 30, - "disableFastForward": true, - "restartMaterialId": "B007883619U3", - "price": 0, - "repeat": true, - "lookBack": false, - "tvAdvisory": [ - "D", - "L" - ], - "dimension": "2D", - "ltd": "", - "programID": "EP007261330137", - "blackoutCode": "NA", - "airTime": "2023-01-15T21:00:00.000+0000", - "secLiveStreaming": "N", - "prOrd": 0, - "episodeTitle": "The Chump", - "authCode": "NA", - "format": "HD", - "seasonNumber": 6, - "listViewPrimaryImageUrl": "/db_photos/showcards/v5/AllPhotosAPGT/185008/p185008_b_v5_aa_l.jpg", - "eventCode": "", - "mainCategory": "TV", - "hd": 1, - "liveStreaming": "B" - }, - { - "primaryImageUrl": "/db_photos/showcards/v5/AllPhotos/185008/p185008_b_v5_aa.jpg", - "restartAllowed": true, - "subcategoryList": [ - "Series", - "Comedy" - ], - "gridViewPrimaryImageUrl": "/db_photos/showcards/v5/AllPhotosAPGT/185008/p185008_b_v5_aa_p.jpg", - "rating": "TV14", - "description": null, - "title": "The Office", - "episodeNumber": 26, - "duration": 30, - "disableFastForward": true, - "restartMaterialId": "B007883652U3", - "price": 0, - "repeat": true, - "lookBack": false, - "tvAdvisory": [ - "D", - "L" - ], - "dimension": "2D", - "ltd": "", - "programID": "EP007261330138", - "blackoutCode": "NA", - "airTime": "2023-01-15T21:30:00.000+0000", - "secLiveStreaming": "N", - "prOrd": 0, - "episodeTitle": "Whistleblower", - "authCode": "NA", - "format": "HD", - "seasonNumber": 6, - "listViewPrimaryImageUrl": "/db_photos/showcards/v5/AllPhotosAPGT/185008/p185008_b_v5_aa_l.jpg", - "eventCode": "", - "mainCategory": "TV", - "hd": 1, - "liveStreaming": "B" - }, - { - "primaryImageUrl": "/db_photos/showcards/v5/AllPhotosAPGT/episodes/SH007261330000/EP007261330142/EP007261330142_aa.jpg", - "restartAllowed": true, - "subcategoryList": [ - "Series", - "Comedy" - ], - "gridViewPrimaryImageUrl": "/db_photos/showcards/v5/AllPhotosAPGT/episodes/SH007261330000/EP007261330142/EP007261330142_aa_p.jpg", - "rating": "TV14", - "description": null, - "title": "The Office", + "contentType": "EPISODE", + "description": "South Park citizens contend with widespread use of a racial slur.", + "displayTitle": "South Park", "episodeNumber": 1, - "duration": 30, - "disableFastForward": true, - "restartMaterialId": "B007883695U3", - "price": 0, - "repeat": true, - "lookBack": false, - "tvAdvisory": [ - "D", - "L" + "episodeTitle": "With Apologies to Jesse Jackson", + "genres": [ + "Sitcom", + "Animated" ], - "dimension": "2D", - "ltd": "", - "programID": "EP007261330142", - "blackoutCode": "NA", - "airTime": "2023-01-15T22:00:00.000+0000", - "secLiveStreaming": "N", - "prOrd": 0, - "episodeTitle": "Nepotism", - "authCode": "NA", - "format": "HD", - "seasonNumber": 7, - "listViewPrimaryImageUrl": "/db_photos/showcards/v5/AllPhotosAPGT/episodes/SH007261330000/EP007261330142/EP007261330142_aa_l.jpg", - "eventCode": "", - "mainCategory": "TV", - "hd": 1, - "liveStreaming": "B" - }, - { - "primaryImageUrl": "/db_photos/showcards/v5/AllPhotosAPGT/episodes/SH007261330000/EP007261330143/EP007261330143_aa.jpg", - "restartAllowed": true, - "subcategoryList": [ - "Series", - "Comedy" - ], - "gridViewPrimaryImageUrl": "/db_photos/showcards/v5/AllPhotosAPGT/episodes/SH007261330000/EP007261330143/EP007261330143_aa_p.jpg", - "rating": "TV14", - "description": null, - "title": "The Office", - "episodeNumber": 2, - "duration": 30, - "disableFastForward": true, - "restartMaterialId": "B007883731U3", - "price": 0, - "repeat": true, - "lookBack": false, - "tvAdvisory": [ - "D", - "L" - ], - "dimension": "2D", - "ltd": "", - "programID": "EP007261330143", - "blackoutCode": "NA", - "airTime": "2023-01-15T22:30:00.000+0000", - "secLiveStreaming": "N", - "prOrd": 0, - "episodeTitle": "Counseling", - "authCode": "NA", - "format": "HD", - "seasonNumber": 7, - "listViewPrimaryImageUrl": "/db_photos/showcards/v5/AllPhotosAPGT/episodes/SH007261330000/EP007261330143/EP007261330143_aa_l.jpg", - "eventCode": "", - "mainCategory": "TV", - "hd": 1, - "liveStreaming": "B" - }, - { - "primaryImageUrl": "/db_photos/showcards/v5/AllPhotos/185008/p185008_b_v5_aa.jpg", - "restartAllowed": true, - "subcategoryList": [ - "Series", - "Comedy" - ], - "gridViewPrimaryImageUrl": "/db_photos/showcards/v5/AllPhotosAPGT/185008/p185008_b_v5_aa_p.jpg", - "rating": "TV14", - "description": null, - "title": "The Office", - "episodeNumber": 3, - "duration": 30, - "disableFastForward": true, - "restartMaterialId": "B007883784U3", - "price": 0, - "repeat": true, - "lookBack": false, - "tvAdvisory": [ - "D", - "L" - ], - "dimension": "2D", - "ltd": "", - "programID": "EP007261330144", - "blackoutCode": "NA", - "airTime": "2023-01-15T23:00:00.000+0000", - "secLiveStreaming": "N", - "prOrd": 0, - "episodeTitle": "Andy's Play", - "authCode": "NA", - "format": "HD", - "seasonNumber": 7, - "listViewPrimaryImageUrl": "/db_photos/showcards/v5/AllPhotosAPGT/185008/p185008_b_v5_aa_l.jpg", - "eventCode": "", - "mainCategory": "TV", - "hd": 1, - "liveStreaming": "B" - }, - { - "primaryImageUrl": "/db_photos/showcards/v5/AllPhotosAPGT/episodes/SH007261330000/EP007261330145/EP007261330145_aa.jpg", - "restartAllowed": true, - "subcategoryList": [ - "Series", - "Comedy" - ], - "gridViewPrimaryImageUrl": "/db_photos/showcards/v5/AllPhotosAPGT/episodes/SH007261330000/EP007261330145/EP007261330145_aa_p.jpg", - "rating": "TV14", - "description": null, - "title": "The Office", - "episodeNumber": 4, - "duration": 30, - "disableFastForward": true, - "restartMaterialId": "B007883797U3", - "price": 0, - "repeat": true, - "lookBack": false, - "tvAdvisory": [ - "D", - "L" - ], - "dimension": "2D", - "ltd": "", - "programID": "EP007261330145", - "blackoutCode": "NA", - "airTime": "2023-01-15T23:30:00.000+0000", - "secLiveStreaming": "N", - "prOrd": 0, - "episodeTitle": "Sex Ed", - "authCode": "NA", - "format": "HD", - "seasonNumber": 7, - "listViewPrimaryImageUrl": "/db_photos/showcards/v5/AllPhotosAPGT/episodes/SH007261330000/EP007261330145/EP007261330145_aa_l.jpg", - "eventCode": "", - "mainCategory": "TV", - "hd": 1, - "liveStreaming": "B" - } - ], - "chKey": "3035_1668769200000", - "chName": "Comedy Central HD", - "chDesc": "The only 24-hour, all-comedy network. Spotlights Emmy and CableAce Award-winning shows like Dr. Katz: Professional Therapist, plus sitcoms, stand-up, animation, talk shows and movies.", - "liveStreaming": "B", - "digitalAdInsertableLive": false - }, - { - "secLiveStreaming": "N", - "chNum": 249, - "authCode": "NA", - "chRec": true, - "chCall": "COM", - "chId": 249, - "secondaryChannelId": 0, - "chHd": false, - "secondary": false, - "blackOut": false, - "chAdult": false, - "chCat": [ - "Entertainment & Music Channels" - ], - "chLogoId": 272, - "detailsLinkUrl": "/Channels/Comedy-Central-249", - "schedules": [ - { - "primaryImageUrl": "/db_photos/movies/AllPhotosAPGI/29160/29160_aa.jpg", - "restartAllowed": false, - "subcategoryList": [ - "Comedy", - "Movies Anywhere", - "Action/Adventure", - "Science Fiction" - ], - "gridViewPrimaryImageUrl": "/db_photos/movies/AllPhotosAPGI/29160/29160_aa_p.jpg", - "rating": "TV14", - "description": null, - "title": "Men in Black II", - "episodeNumber": null, - "duration": 120, - "price": 0, - "repeat": true, - "lookBack": false, - "dimension": "2D", - "ltd": "", - "programID": "MV001173520000", - "blackoutCode": "NA", - "airTime": "2023-01-14T23:00:00.000+0000", - "secLiveStreaming": "N", - "prOrd": 0, - "episodeTitle": null, - "authCode": "NA", - "format": "SD", - "seasonNumber": null, - "listViewPrimaryImageUrl": "/db_photos/movies/AllPhotosAPGI/29160/29160_aa_l.jpg", - "eventCode": "", - "mainCategory": "Movies", - "hd": 0, - "liveStreaming": "N" - }, - { - "primaryImageUrl": "/db_photos/showcards/v5/AllPhotos/184338/p184338_b_v5_aa.jpg", - "restartAllowed": false, - "subcategoryList": [ - "Series", - "Animation", - "Comedy" - ], - "gridViewPrimaryImageUrl": "/db_photos/showcards/v5/AllPhotosAPGT/184338/p184338_b_v5_aa_p.jpg", - "rating": "TVMA", - "description": null, + "metadataLanguage": "en", + "originalAirDate": "2007-03-07", + "parentalRating": "TVMA", + "releaseYear": 2007, + "seasonId": "69efb6e8-17ee-4a05-a87f-33e5bf671eb7", + "seasonNumber": 11, + "seriesEditId": "bf0ea01c-3e9f-458c-ac80-2ab99798c7ec", + "seriesId": "daa235fb-5ddc-f267-6016-1b84897680ce", + "stbContentId": "1 1 381C3 131", "title": "South Park", + "tmsConnectorId": "SH002298270000", + "tmsId": "EP002298270305", + "resourceType": "CONTENT", + "resourceId": "db8a692e-7033-324a-908a-6f8bd938df7a", + "editId": "739bebd6-7df3-425c-acbf-8dc2e3efee91", + "itemType": "VIDEO_PROGRAM" + }, + { + "apgId": "EP002298270308", + "canonicalId": "8ece3941-1c89-b379-b1e8-2acfe3f86a17", + "categories": [ + "TVShow" + ], + "consumables": [ + { + "augmentation": { + "constraints": { + "isPlayable": false, + "isRecordable": false, + "isRestart": true, + "isLookback": false, + "isDAI": false, + "isFastForwardDisabled": true, + "isExtendable": false, + "isCDVRUpsell": false + } + }, + "consumableType": "LINEAR", + "duration": 1800, + "endTime": "2026-04-06T06:00:00Z", + "format": "HD", + "metadataLanguage": "en", + "parentalRating": "TV14", + "programChannelId": "5070bc2e-dd69-4dee-98b4-a4c5e3b1fd7b", + "qualifiers": [ + "CC", + "1080p", + "HDTV" + ], + "resourceId": "a1abddcf-cce8-365d-bd56-4588b7715c9b", + "scheduleId": "a1abddcf-cce8-365d-bd56-4588b7715c9b", + "startTime": "2026-04-06T05:30:00Z" + } + ], + "contentType": "EPISODE", + "description": "Hillary Clinton comes to South Park for a campaign rally; Cartman follows a lead on a possible terrorist attack.", + "displayTitle": "South Park", "episodeNumber": 4, - "duration": 30, - "price": 0, - "repeat": true, - "lookBack": false, - "tvAdvisory": [ + "episodeTitle": "The Snuke", + "genres": [ + "Sitcom", + "Animated" + ], + "metadataLanguage": "en", + "originalAirDate": "2007-03-28", + "parentalRating": "TV14", + "releaseYear": 2007, + "seasonId": "69efb6e8-17ee-4a05-a87f-33e5bf671eb7", + "seasonNumber": 11, + "seriesEditId": "bf0ea01c-3e9f-458c-ac80-2ab99798c7ec", + "seriesId": "daa235fb-5ddc-f267-6016-1b84897680ce", + "stbContentId": "1 1 381C3 134", + "title": "South Park", + "tmsConnectorId": "SH002298270000", + "tmsId": "EP002298270308", + "resourceType": "CONTENT", + "resourceId": "a1abddcf-cce8-365d-bd56-4588b7715c9b", + "editId": "9e6bdcd9-26a3-4f1f-aaf9-9c9d9eebac2e", + "itemType": "VIDEO_PROGRAM" + }, + { + "apgId": "EP002298270309", + "canonicalId": "eaba4aa9-6e23-5769-177c-607e713a6383", + "categories": [ + "TVShow" + ], + "consumables": [ + { + "augmentation": { + "constraints": { + "isPlayable": false, + "isRecordable": false, + "isRestart": true, + "isLookback": false, + "isDAI": false, + "isFastForwardDisabled": true, + "isExtendable": false, + "isCDVRUpsell": false + } + }, + "consumableType": "LINEAR", + "duration": 1800, + "endTime": "2026-04-06T06:30:00Z", + "format": "HD", + "metadataLanguage": "en", + "parentalRating": "TVMA", + "programChannelId": "5070bc2e-dd69-4dee-98b4-a4c5e3b1fd7b", + "qualifiers": [ + "CC", + "1080p", + "HDTV" + ], + "resourceId": "ca99de1f-7303-3041-984d-e305eff1ecae", + "scheduleId": "ca99de1f-7303-3041-984d-e305eff1ecae", + "startTime": "2026-04-06T06:00:00Z" + } + ], + "contentType": "EPISODE", + "description": "Stan searches for the real story behind eggs and bunnies in the Easter ritual.", + "displayTitle": "South Park", + "episodeNumber": 5, + "episodeTitle": "Fantastic Easter Special", + "genres": [ + "Sitcom", + "Holiday", + "Animated" + ], + "metadataLanguage": "en", + "originalAirDate": "2007-04-04", + "parentalRating": "TVMA", + "releaseYear": 2007, + "seasonId": "69efb6e8-17ee-4a05-a87f-33e5bf671eb7", + "seasonNumber": 11, + "seriesEditId": "bf0ea01c-3e9f-458c-ac80-2ab99798c7ec", + "seriesId": "daa235fb-5ddc-f267-6016-1b84897680ce", + "stbContentId": "1 1 381C3 135", + "title": "South Park", + "tmsConnectorId": "SH002298270000", + "tmsId": "EP002298270309", + "resourceType": "CONTENT", + "resourceId": "ca99de1f-7303-3041-984d-e305eff1ecae", + "editId": "a62d5d1f-38a3-41b8-8f1a-17c8159ea8a3", + "itemType": "VIDEO_PROGRAM" + }, + { + "apgId": "EP002298270442", + "canonicalId": "12e579ef-5f24-6c76-75d6-fd004f2030c4", + "categories": [ + "TVShow" + ], + "consumables": [ + { + "augmentation": { + "constraints": { + "isPlayable": false, + "isRecordable": false, + "isRestart": true, + "isLookback": false, + "isDAI": false, + "isFastForwardDisabled": true, + "isExtendable": false, + "isCDVRUpsell": false + } + }, + "consumableType": "LINEAR", + "duration": 1800, + "endTime": "2026-04-06T07:00:00Z", + "format": "HD", + "metadataLanguage": "en", + "parentalRating": "TV14", + "programChannelId": "5070bc2e-dd69-4dee-98b4-a4c5e3b1fd7b", + "qualifiers": [ + "CC", + "1080p", + "HDTV" + ], + "resourceId": "76e94f25-73d1-39e6-b71b-0652a6a9a4a1", + "scheduleId": "76e94f25-73d1-39e6-b71b-0652a6a9a4a1", + "startTime": "2026-04-06T06:30:00Z" + } + ], + "contentType": "EPISODE", + "description": "When Ms. Garrison is the victim of another failed relationship, she takes it out on the fourth-graders.", + "displayTitle": "South Park", + "episodeNumber": 6, + "episodeTitle": "D-Yikes!", + "genres": [ + "Sitcom", + "Animated" + ], + "metadataLanguage": "en", + "originalAirDate": "2007-04-11", + "parentalRating": "TV14", + "releaseYear": 2007, + "seasonId": "69efb6e8-17ee-4a05-a87f-33e5bf671eb7", + "seasonNumber": 11, + "seriesEditId": "bf0ea01c-3e9f-458c-ac80-2ab99798c7ec", + "seriesId": "daa235fb-5ddc-f267-6016-1b84897680ce", + "stbContentId": "1 1 381C3 1BA", + "title": "South Park", + "tmsConnectorId": "SH002298270000", + "tmsId": "EP002298270442", + "resourceType": "CONTENT", + "resourceId": "76e94f25-73d1-39e6-b71b-0652a6a9a4a1", + "editId": "39061e8c-e88d-4dd2-ba26-253379ceb78d", + "itemType": "VIDEO_PROGRAM" + }, + { + "apgId": "EP002298270311", + "canonicalId": "619c4f4e-7ed9-1926-53fa-f01132c4a2eb", + "categories": [ + "TVShow" + ], + "consumables": [ + { + "augmentation": { + "constraints": { + "isPlayable": false, + "isRecordable": false, + "isRestart": true, + "isLookback": false, + "isDAI": false, + "isFastForwardDisabled": true, + "isExtendable": false, + "isCDVRUpsell": false + } + }, + "consumableType": "LINEAR", + "duration": 1800, + "endTime": "2026-04-06T07:30:00Z", + "format": "HD", + "metadataLanguage": "en", + "parentalRating": "TV14", + "programChannelId": "5070bc2e-dd69-4dee-98b4-a4c5e3b1fd7b", + "qualifiers": [ + "CC", + "1080p", + "HDTV" + ], + "resourceId": "0e0a32a2-5b63-3f20-8265-34e1e7226f98", + "scheduleId": "0e0a32a2-5b63-3f20-8265-34e1e7226f98", + "startTime": "2026-04-06T07:00:00Z" + } + ], + "contentType": "EPISODE", + "description": "The boys attempt to find a solution to the increasing number of homeless people in South Park.", + "displayTitle": "South Park", + "episodeNumber": 7, + "episodeTitle": "Night of the Living Homeless", + "genres": [ + "Sitcom", + "Animated" + ], + "metadataLanguage": "en", + "originalAirDate": "2007-04-18", + "parentalRating": "TV14", + "releaseYear": 2007, + "seasonId": "69efb6e8-17ee-4a05-a87f-33e5bf671eb7", + "seasonNumber": 11, + "seriesEditId": "bf0ea01c-3e9f-458c-ac80-2ab99798c7ec", + "seriesId": "daa235fb-5ddc-f267-6016-1b84897680ce", + "stbContentId": "1 1 381C3 137", + "title": "South Park", + "tmsConnectorId": "SH002298270000", + "tmsId": "EP002298270311", + "resourceType": "CONTENT", + "resourceId": "0e0a32a2-5b63-3f20-8265-34e1e7226f98", + "editId": "76a97798-517b-4cc3-82f6-431b04ed0bc2", + "itemType": "VIDEO_PROGRAM" + }, + { + "apgId": "EP002298270313", + "canonicalId": "ae4aa43f-5e15-a525-f51a-4e1a8201655f", + "categories": [ + "TVShow" + ], + "consumables": [ + { + "augmentation": { + "constraints": { + "isPlayable": false, + "isRecordable": false, + "isRestart": true, + "isLookback": false, + "isDAI": false, + "isFastForwardDisabled": true, + "isExtendable": false, + "isCDVRUpsell": false + } + }, + "consumableType": "LINEAR", + "duration": 1800, + "endTime": "2026-04-06T08:00:00Z", + "format": "HD", + "metadataLanguage": "en", + "parentalRating": "TVMA", + "programChannelId": "5070bc2e-dd69-4dee-98b4-a4c5e3b1fd7b", + "qualifiers": [ + "CC", + "1080p", + "HDTV" + ], + "resourceId": "332f3ca8-e60f-3698-b01c-f7972faeda91", + "scheduleId": "332f3ca8-e60f-3698-b01c-f7972faeda91", + "startTime": "2026-04-06T07:30:00Z" + } + ], + "contentType": "EPISODE", + "description": "Cartman discovers the joys of having Tourette's syndrome; drunk with the power of saying whatever he wants without getting in trouble for it, he lines up National TV Coverage to take advantage of his new life with no filters.", + "displayTitle": "South Park", + "episodeNumber": 8, + "episodeTitle": "Le Petit Tourette", + "genres": [ + "Sitcom", + "Animated" + ], + "metadataLanguage": "en", + "originalAirDate": "2007-10-03", + "parentalRating": "TVMA", + "releaseYear": 2007, + "seasonId": "69efb6e8-17ee-4a05-a87f-33e5bf671eb7", + "seasonNumber": 11, + "seriesEditId": "bf0ea01c-3e9f-458c-ac80-2ab99798c7ec", + "seriesId": "daa235fb-5ddc-f267-6016-1b84897680ce", + "stbContentId": "1 1 381C3 139", + "title": "South Park", + "tmsConnectorId": "SH002298270000", + "tmsId": "EP002298270313", + "resourceType": "CONTENT", + "resourceId": "332f3ca8-e60f-3698-b01c-f7972faeda91", + "editId": "ee106ae9-87c4-4343-b76a-c60f33808032", + "itemType": "VIDEO_PROGRAM" + }, + { + "apgId": "EP002298270314", + "canonicalId": "4b81dd62-9575-53fa-2945-66c2fbdc6d3b", + "categories": [ + "TVShow" + ], + "consumables": [ + { + "augmentation": { + "constraints": { + "isPlayable": false, + "isRecordable": false, + "isRestart": true, + "isLookback": false, + "isDAI": false, + "isFastForwardDisabled": true, + "isExtendable": false, + "isCDVRUpsell": false + } + }, + "consumableType": "LINEAR", + "duration": 1800, + "endTime": "2026-04-06T08:30:00Z", + "format": "HD", + "metadataLanguage": "en", + "parentalRating": "TV14", + "programChannelId": "5070bc2e-dd69-4dee-98b4-a4c5e3b1fd7b", + "qualifiers": [ + "CC", + "1080p", + "HDTV" + ], + "resourceId": "dd1ab194-ea31-3827-b94f-f6b70d0c55ee", + "scheduleId": "dd1ab194-ea31-3827-b94f-f6b70d0c55ee", + "startTime": "2026-04-06T08:00:00Z" + } + ], + "contentType": "EPISODE", + "description": "Randy becomes a local hero when he thinks that he may have broken a world record.", + "displayTitle": "South Park", + "episodeNumber": 9, + "episodeTitle": "More Crap", + "genres": [ + "Sitcom", + "Animated" + ], + "metadataLanguage": "en", + "originalAirDate": "2007-10-10", + "parentalRating": "TV14", + "releaseYear": 2007, + "seasonId": "69efb6e8-17ee-4a05-a87f-33e5bf671eb7", + "seasonNumber": 11, + "seriesEditId": "bf0ea01c-3e9f-458c-ac80-2ab99798c7ec", + "seriesId": "daa235fb-5ddc-f267-6016-1b84897680ce", + "stbContentId": "1 1 381C3 13A", + "title": "South Park", + "tmsConnectorId": "SH002298270000", + "tmsId": "EP002298270314", + "resourceType": "CONTENT", + "resourceId": "dd1ab194-ea31-3827-b94f-f6b70d0c55ee", + "editId": "bce6075c-8685-487a-8219-9de9ba12d288", + "itemType": "VIDEO_PROGRAM" + }, + { + "apgId": "EP002298270318", + "canonicalId": "5d34cb14-422b-27cd-427c-7f46dc610306", + "categories": [ + "TVShow" + ], + "consumables": [ + { + "augmentation": { + "constraints": { + "isPlayable": false, + "isRecordable": false, + "isRestart": true, + "isLookback": false, + "isDAI": false, + "isFastForwardDisabled": true, + "isExtendable": false, + "isCDVRUpsell": false + } + }, + "consumableType": "LINEAR", + "duration": 1800, + "endTime": "2026-04-06T09:00:00Z", + "format": "HD", + "metadataLanguage": "en", + "parentalRating": "TV14", + "programChannelId": "5070bc2e-dd69-4dee-98b4-a4c5e3b1fd7b", + "qualifiers": [ + "CC", + "1080p", + "HDTV" + ], + "resourceId": "09c8ec39-e426-38c4-83f4-0446bc7f116d", + "scheduleId": "09c8ec39-e426-38c4-83f4-0446bc7f116d", + "startTime": "2026-04-06T08:30:00Z" + } + ], + "contentType": "EPISODE", + "description": "Stan's superior skills on \"Guitar Hero\" damage his friendship with Kyle.", + "displayTitle": "South Park", + "episodeNumber": 13, + "episodeTitle": "Guitar Queer-O", + "genres": [ + "Sitcom", + "Animated" + ], + "metadataLanguage": "en", + "originalAirDate": "2007-11-07", + "parentalRating": "TV14", + "releaseYear": 2007, + "seasonId": "69efb6e8-17ee-4a05-a87f-33e5bf671eb7", + "seasonNumber": 11, + "seriesEditId": "bf0ea01c-3e9f-458c-ac80-2ab99798c7ec", + "seriesId": "daa235fb-5ddc-f267-6016-1b84897680ce", + "stbContentId": "1 1 381C3 13E", + "title": "South Park", + "tmsConnectorId": "SH002298270000", + "tmsId": "EP002298270318", + "resourceType": "CONTENT", + "resourceId": "09c8ec39-e426-38c4-83f4-0446bc7f116d", + "editId": "aedaecdc-65ef-4010-a527-39b03bd7ca1c", + "itemType": "VIDEO_PROGRAM" + }, + { + "apgId": "EP002298270319", + "canonicalId": "b6afaaae-d303-8c88-f4e8-a6ad2c02dd36", + "categories": [ + "TVShow" + ], + "consumables": [ + { + "augmentation": { + "constraints": { + "isPlayable": false, + "isRecordable": false, + "isRestart": true, + "isLookback": false, + "isDAI": false, + "isFastForwardDisabled": true, + "isExtendable": false, + "isCDVRUpsell": false + } + }, + "consumableType": "LINEAR", + "duration": 1800, + "endTime": "2026-04-06T09:30:00Z", + "format": "HD", + "metadataLanguage": "en", + "parentalRating": "TV14", + "programChannelId": "5070bc2e-dd69-4dee-98b4-a4c5e3b1fd7b", + "qualifiers": [ + "CC", + "1080p", + "HDTV" + ], + "resourceId": "57d4a1ba-f935-3658-8911-e4200d02cfef", + "scheduleId": "57d4a1ba-f935-3658-8911-e4200d02cfef", + "startTime": "2026-04-06T09:00:00Z" + } + ], + "contentType": "EPISODE", + "description": "A secret list created by the girls in the fourth grade, rates every boy's looks from cutest to ugliest.", + "displayTitle": "South Park", + "episodeNumber": 14, + "episodeTitle": "The List", + "genres": [ + "Sitcom", + "Animated" + ], + "metadataLanguage": "en", + "originalAirDate": "2007-11-14", + "parentalRating": "TV14", + "releaseYear": 2007, + "seasonId": "69efb6e8-17ee-4a05-a87f-33e5bf671eb7", + "seasonNumber": 11, + "seriesEditId": "bf0ea01c-3e9f-458c-ac80-2ab99798c7ec", + "seriesId": "daa235fb-5ddc-f267-6016-1b84897680ce", + "stbContentId": "1 1 381C3 13F", + "title": "South Park", + "tmsConnectorId": "SH002298270000", + "tmsId": "EP002298270319", + "resourceType": "CONTENT", + "resourceId": "57d4a1ba-f935-3658-8911-e4200d02cfef", + "editId": "cbd113ac-91e7-456e-899a-160d9dfd048d", + "itemType": "VIDEO_PROGRAM" + }, + { + "apgId": "EP002298270331", + "canonicalId": "a524e22a-4855-64c4-3b52-f3299810bdf8", + "categories": [ + "TVShow" + ], + "consumables": [ + { + "augmentation": { + "constraints": { + "isPlayable": false, + "isRecordable": false, + "isRestart": true, + "isLookback": false, + "isDAI": false, + "isFastForwardDisabled": true, + "isExtendable": false, + "isCDVRUpsell": false + } + }, + "consumableType": "LINEAR", + "duration": 1800, + "endTime": "2026-04-06T10:00:00Z", + "format": "HD", + "metadataLanguage": "en", + "parentalRating": "TV14", + "programChannelId": "5070bc2e-dd69-4dee-98b4-a4c5e3b1fd7b", + "qualifiers": [ + "CC", + "1080p", + "HDTV" + ], + "resourceId": "5959e97c-0f39-310a-a72a-2b2e18eb3934", + "scheduleId": "5959e97c-0f39-310a-a72a-2b2e18eb3934", + "startTime": "2026-04-06T09:30:00Z" + } + ], + "contentType": "EPISODE", + "description": "Cartman comes face to face with his own mortality when his routine tonsillectomy goes horribly wrong.", + "displayTitle": "South Park", + "episodeNumber": 1, + "episodeTitle": "Tonsil Trouble", + "genres": [ + "Sitcom", + "Animated" + ], + "metadataLanguage": "en", + "originalAirDate": "2008-03-12", + "parentalRating": "TV14", + "releaseYear": 2008, + "seasonId": "83f1699b-6e35-45a7-a50f-c02fd4afabbe", + "seasonNumber": 12, + "seriesEditId": "bf0ea01c-3e9f-458c-ac80-2ab99798c7ec", + "seriesId": "daa235fb-5ddc-f267-6016-1b84897680ce", + "stbContentId": "1 1 381C3 14B", + "title": "South Park", + "tmsConnectorId": "SH002298270000", + "tmsId": "EP002298270331", + "resourceType": "CONTENT", + "resourceId": "5959e97c-0f39-310a-a72a-2b2e18eb3934", + "editId": "c80486a5-1de7-4f49-ac59-3e9ad072a6a4", + "itemType": "VIDEO_PROGRAM" + }, + { + "apgId": "EP010591100066", + "canonicalId": "ba545ed6-ec0b-4b33-405f-eff9eb957a6c", + "categories": [ + "TVShow" + ], + "consumables": [ + { + "augmentation": { + "constraints": { + "isPlayable": false, + "isRecordable": false, + "isRestart": true, + "isLookback": false, + "isDAI": false, + "isFastForwardDisabled": true, + "isExtendable": false, + "isCDVRUpsell": false + } + }, + "consumableType": "LINEAR", + "duration": 1800, + "endTime": "2026-04-06T10:30:00Z", + "format": "HD", + "metadataLanguage": "en", + "parentalRating": "TV14", + "programChannelId": "5070bc2e-dd69-4dee-98b4-a4c5e3b1fd7b", + "qualifiers": [ + "CC", + "1080p", + "HDTV" + ], + "resourceId": "744a6214-6a41-305f-8105-41598ac3098d", + "scheduleId": "744a6214-6a41-305f-8105-41598ac3098d", + "startTime": "2026-04-06T10:00:00Z" + } + ], + "contentType": "EPISODE", + "description": "Cleveland volunteers to take Roberta on a college visit to his alma mater as an excuse to relive his college days; Rallo helps Cleveland Jr. learn to sleep without a stuffed animal.", + "displayTitle": "The Cleveland Show", + "episodeNumber": 18, + "episodeTitle": "B.M.O.C.", + "genres": [ + "Sitcom", + "Animated" + ], + "metadataLanguage": "en", + "originalAirDate": "2012-04-29", + "parentalRating": "TV14", + "releaseYear": 2012, + "seasonId": "6753a5b1-9f29-456a-800f-2ab45bcd3360", + "seasonNumber": 3, + "seriesEditId": "0179dc85-d2a9-4d22-af98-b88db99cb47a", + "seriesId": "1fa48e75-65cb-b625-77d0-fcdd09e245bb", + "stbContentId": "1 1 102926 42", + "title": "The Cleveland Show", + "tmsConnectorId": "SH010591100000", + "tmsId": "EP010591100066", + "resourceType": "CONTENT", + "resourceId": "744a6214-6a41-305f-8105-41598ac3098d", + "editId": "5351fe68-f43a-404c-a87a-7528a0de9ba3", + "itemType": "VIDEO_PROGRAM" + }, + { + "apgId": "EP010591100067", + "canonicalId": "88d1a4fe-5bf0-eea7-cb04-eee2d88f3c17", + "categories": [ + "TVShow" + ], + "consumables": [ + { + "augmentation": { + "constraints": { + "isPlayable": false, + "isRecordable": false, + "isRestart": true, + "isLookback": false, + "isDAI": false, + "isFastForwardDisabled": true, + "isExtendable": false, + "isCDVRUpsell": false + } + }, + "consumableType": "LINEAR", + "duration": 1800, + "endTime": "2026-04-06T11:00:00Z", + "format": "HD", + "metadataLanguage": "en", + "parentalRating": "TV14", + "programChannelId": "5070bc2e-dd69-4dee-98b4-a4c5e3b1fd7b", + "qualifiers": [ + "CC", + "1080p", + "HDTV" + ], + "resourceId": "bf99a4cc-42c4-3656-9a5a-42b9df1bbe4b", + "scheduleId": "bf99a4cc-42c4-3656-9a5a-42b9df1bbe4b", + "startTime": "2026-04-06T10:30:00Z" + } + ], + "contentType": "EPISODE", + "description": "Cleveland Jr. goes on a church trip to impress the girl he likes; Donna's ex-boyfriend returns from Iraq to find her married.", + "displayTitle": "The Cleveland Show", + "episodeNumber": 19, + "episodeTitle": "Jesus Walks", + "genres": [ + "Sitcom", + "Animated" + ], + "metadataLanguage": "en", + "originalAirDate": "2012-04-29", + "parentalRating": "TV14", + "releaseYear": 2012, + "seasonId": "6753a5b1-9f29-456a-800f-2ab45bcd3360", + "seasonNumber": 3, + "seriesEditId": "0179dc85-d2a9-4d22-af98-b88db99cb47a", + "seriesId": "1fa48e75-65cb-b625-77d0-fcdd09e245bb", + "stbContentId": "1 1 102926 43", + "title": "The Cleveland Show", + "tmsConnectorId": "SH010591100000", + "tmsId": "EP010591100067", + "resourceType": "CONTENT", + "resourceId": "bf99a4cc-42c4-3656-9a5a-42b9df1bbe4b", + "editId": "3f1a2f0c-8ebb-45f0-a629-6560125a0706", + "itemType": "VIDEO_PROGRAM" + }, + { + "apgId": "EP010591100068", + "canonicalId": "a9eba177-502d-5cd4-1c3e-4aa4894f4146", + "categories": [ + "TVShow" + ], + "consumables": [ + { + "augmentation": { + "constraints": { + "isPlayable": false, + "isRecordable": false, + "isRestart": true, + "isLookback": false, + "isDAI": false, + "isFastForwardDisabled": true, + "isExtendable": false, + "isCDVRUpsell": false + } + }, + "consumableType": "LINEAR", + "duration": 1800, + "endTime": "2026-04-06T11:30:00Z", + "format": "HD", + "metadataLanguage": "en", + "parentalRating": "TV14", + "programChannelId": "5070bc2e-dd69-4dee-98b4-a4c5e3b1fd7b", + "qualifiers": [ + "CC", + "1080p", + "HDTV" + ], + "resourceId": "af5bf021-39bf-3a42-ab07-048eab522fad", + "scheduleId": "af5bf021-39bf-3a42-ab07-048eab522fad", + "startTime": "2026-04-06T11:00:00Z" + } + ], + "contentType": "EPISODE", + "description": "Cleveland Jr. loses respect for his father when Cleveland falls off the toilet and gets a concussion; Rallo is finally tall enough to ride his favorite roller coaster.", + "displayTitle": "The Cleveland Show", + "episodeNumber": 20, + "episodeTitle": "Flush of Genius", + "genres": [ + "Sitcom", + "Animated" + ], + "metadataLanguage": "en", + "originalAirDate": "2012-05-06", + "parentalRating": "TV14", + "releaseYear": 2012, + "seasonId": "6753a5b1-9f29-456a-800f-2ab45bcd3360", + "seasonNumber": 3, + "seriesEditId": "0179dc85-d2a9-4d22-af98-b88db99cb47a", + "seriesId": "1fa48e75-65cb-b625-77d0-fcdd09e245bb", + "stbContentId": "1 1 102926 44", + "title": "The Cleveland Show", + "tmsConnectorId": "SH010591100000", + "tmsId": "EP010591100068", + "resourceType": "CONTENT", + "resourceId": "af5bf021-39bf-3a42-ab07-048eab522fad", + "editId": "27ab7a56-ae3e-4759-8d0d-00c131be4a59", + "itemType": "VIDEO_PROGRAM" + }, + { + "apgId": "EP010591100069", + "canonicalId": "ce5af602-3fc1-ae87-7b51-e3d12313698e", + "categories": [ + "TVShow" + ], + "consumables": [ + { + "augmentation": { + "constraints": { + "isPlayable": false, + "isRecordable": false, + "isRestart": true, + "isLookback": false, + "isDAI": false, + "isFastForwardDisabled": true, + "isExtendable": false, + "isCDVRUpsell": false + } + }, + "consumableType": "LINEAR", + "duration": 1800, + "endTime": "2026-04-06T12:00:00Z", + "format": "HD", + "metadataLanguage": "en", + "parentalRating": "TV14", + "programChannelId": "5070bc2e-dd69-4dee-98b4-a4c5e3b1fd7b", + "qualifiers": [ + "CC", + "1080p", + "HDTV" + ], + "resourceId": "4e3974cf-abf0-3329-8e28-2427298076be", + "scheduleId": "4e3974cf-abf0-3329-8e28-2427298076be", + "startTime": "2026-04-06T11:30:00Z" + } + ], + "contentType": "EPISODE", + "description": "When an unexpected event leads Donna's estranged mother to find Cleveland, he arranges to reunite the two women.", + "displayTitle": "The Cleveland Show", + "episodeNumber": 21, + "episodeTitle": "Mama Drama", + "genres": [ + "Sitcom", + "Animated" + ], + "metadataLanguage": "en", + "originalAirDate": "2012-05-13", + "parentalRating": "TV14", + "releaseYear": 2012, + "seasonId": "6753a5b1-9f29-456a-800f-2ab45bcd3360", + "seasonNumber": 3, + "seriesEditId": "0179dc85-d2a9-4d22-af98-b88db99cb47a", + "seriesId": "1fa48e75-65cb-b625-77d0-fcdd09e245bb", + "stbContentId": "1 1 102926 45", + "title": "The Cleveland Show", + "tmsConnectorId": "SH010591100000", + "tmsId": "EP010591100069", + "resourceType": "CONTENT", + "resourceId": "4e3974cf-abf0-3329-8e28-2427298076be", + "editId": "1aec0101-9245-4332-9f78-7575403db707", + "itemType": "VIDEO_PROGRAM" + }, + { + "apgId": "EP002298270332", + "canonicalId": "a013b67f-ce33-349e-212f-104560bdcc63", + "categories": [ + "TVShow" + ], + "consumables": [ + { + "augmentation": { + "constraints": { + "isPlayable": false, + "isRecordable": false, + "isRestart": true, + "isLookback": false, + "isDAI": false, + "isFastForwardDisabled": true, + "isExtendable": false, + "isCDVRUpsell": false + } + }, + "consumableType": "LINEAR", + "duration": 1800, + "endTime": "2026-04-06T12:30:00Z", + "format": "HD", + "metadataLanguage": "en", + "parentalRating": "TVMA", + "programChannelId": "5070bc2e-dd69-4dee-98b4-a4c5e3b1fd7b", + "qualifiers": [ + "CC", + "1080p", + "HDTV" + ], + "resourceId": "166eef89-1ba8-3ebd-b17b-eac85dccde02", + "scheduleId": "166eef89-1ba8-3ebd-b17b-eac85dccde02", + "startTime": "2026-04-06T12:00:00Z" + } + ], + "contentType": "EPISODE", + "description": "When the boys help Britney Spears get to the North Pole, they discover the shocking secret behind her popularity.", + "displayTitle": "South Park", + "episodeNumber": 2, + "episodeTitle": "Britney's New Look", + "genres": [ + "Sitcom", + "Animated" + ], + "metadataLanguage": "en", + "originalAirDate": "2008-03-19", + "parentalRating": "TVMA", + "releaseYear": 2008, + "seasonId": "83f1699b-6e35-45a7-a50f-c02fd4afabbe", + "seasonNumber": 12, + "seriesEditId": "bf0ea01c-3e9f-458c-ac80-2ab99798c7ec", + "seriesId": "daa235fb-5ddc-f267-6016-1b84897680ce", + "stbContentId": "1 1 381C3 14C", + "title": "South Park", + "tmsConnectorId": "SH002298270000", + "tmsId": "EP002298270332", + "resourceType": "CONTENT", + "resourceId": "166eef89-1ba8-3ebd-b17b-eac85dccde02", + "editId": "ba4cf7f5-ad02-4c28-8be8-79190f3e6c63", + "itemType": "VIDEO_PROGRAM" + }, + { + "apgId": "EP002298270333", + "canonicalId": "7651a8e6-8d0e-a6d3-4c33-18388bcba670", + "categories": [ + "TVShow" + ], + "consumables": [ + { + "augmentation": { + "constraints": { + "isPlayable": false, + "isRecordable": false, + "isRestart": true, + "isLookback": false, + "isDAI": false, + "isFastForwardDisabled": true, + "isExtendable": false, + "isCDVRUpsell": false + } + }, + "consumableType": "LINEAR", + "duration": 1800, + "endTime": "2026-04-06T13:00:00Z", + "format": "HD", + "metadataLanguage": "en", + "parentalRating": "TVMA", + "programChannelId": "5070bc2e-dd69-4dee-98b4-a4c5e3b1fd7b", + "qualifiers": [ + "CC", + "1080p", + "HDTV" + ], + "resourceId": "5905e2b3-dc74-3300-a930-eb7608a1ffce", + "scheduleId": "5905e2b3-dc74-3300-a930-eb7608a1ffce", + "startTime": "2026-04-06T12:30:00Z" + } + ], + "contentType": "EPISODE", + "description": "In a South Park homage to the 1981 film, Heavy Metal, the boys are trying to get Kenny off the latest drug craze that's captured the junior high and under set.", + "displayTitle": "South Park", + "episodeNumber": 3, + "episodeTitle": "Major Boobage", + "genres": [ + "Sitcom", + "Animated" + ], + "metadataLanguage": "en", + "originalAirDate": "2008-03-26", + "parentalRating": "TVMA", + "releaseYear": 2008, + "seasonId": "83f1699b-6e35-45a7-a50f-c02fd4afabbe", + "seasonNumber": 12, + "seriesEditId": "bf0ea01c-3e9f-458c-ac80-2ab99798c7ec", + "seriesId": "daa235fb-5ddc-f267-6016-1b84897680ce", + "stbContentId": "1 1 381C3 14D", + "title": "South Park", + "tmsConnectorId": "SH002298270000", + "tmsId": "EP002298270333", + "resourceType": "CONTENT", + "resourceId": "5905e2b3-dc74-3300-a930-eb7608a1ffce", + "editId": "be1e9e68-9817-4292-b3aa-daf9b903bc31", + "itemType": "VIDEO_PROGRAM" + }, + { + "apgId": "EP002298270334", + "canonicalId": "c441fbd0-65cd-16ec-128f-e0a6e2eeb7a0", + "categories": [ + "TVShow" + ], + "consumables": [ + { + "augmentation": { + "constraints": { + "isPlayable": false, + "isRecordable": false, + "isRestart": true, + "isLookback": false, + "isDAI": false, + "isFastForwardDisabled": true, + "isExtendable": false, + "isCDVRUpsell": false + } + }, + "consumableType": "LINEAR", + "duration": 2100, + "endTime": "2026-04-06T13:35:00Z", + "format": "HD", + "metadataLanguage": "en", + "parentalRating": "TVMA", + "programChannelId": "5070bc2e-dd69-4dee-98b4-a4c5e3b1fd7b", + "qualifiers": [ + "CC", + "1080p", + "HDTV" + ], + "resourceId": "b3575918-4302-372b-a0c0-0fdd501d5c94", + "scheduleId": "b3575918-4302-372b-a0c0-0fdd501d5c94", + "startTime": "2026-04-06T13:00:00Z" + } + ], + "contentType": "EPISODE", + "description": "The head of the World Canadian Bureau leads the country into a strike and the responsibility of brokering a settlement rests with the boys.", + "displayTitle": "South Park", + "episodeNumber": 4, + "episodeTitle": "Canada on Strike!", + "genres": [ + "Sitcom", + "Animated" + ], + "metadataLanguage": "en", + "originalAirDate": "2008-04-02", + "parentalRating": "TVMA", + "releaseYear": 2008, + "seasonId": "83f1699b-6e35-45a7-a50f-c02fd4afabbe", + "seasonNumber": 12, + "seriesEditId": "bf0ea01c-3e9f-458c-ac80-2ab99798c7ec", + "seriesId": "daa235fb-5ddc-f267-6016-1b84897680ce", + "stbContentId": "1 1 381C3 14E", + "title": "South Park", + "tmsConnectorId": "SH002298270000", + "tmsId": "EP002298270334", + "resourceType": "CONTENT", + "resourceId": "b3575918-4302-372b-a0c0-0fdd501d5c94", + "editId": "bcf57fd5-61e2-40ab-a02b-85ae04bed519", + "itemType": "VIDEO_PROGRAM" + }, + { + "apgId": "EP002298270335", + "canonicalId": "a7d11091-8bb7-9616-194d-3e8db3433975", + "categories": [ + "TVShow" + ], + "consumables": [ + { + "augmentation": { + "constraints": { + "isPlayable": false, + "isRecordable": false, + "isRestart": true, + "isLookback": false, + "isDAI": false, + "isFastForwardDisabled": true, + "isExtendable": false, + "isCDVRUpsell": false + } + }, + "consumableType": "LINEAR", + "duration": 2100, + "endTime": "2026-04-06T14:10:00Z", + "format": "HD", + "metadataLanguage": "en", + "parentalRating": "TV14", + "programChannelId": "5070bc2e-dd69-4dee-98b4-a4c5e3b1fd7b", + "qualifiers": [ + "CC", + "1080p", + "HDTV" + ], + "resourceId": "6c380fcf-8b95-3b4d-84c6-02781822112d", + "scheduleId": "6c380fcf-8b95-3b4d-84c6-02781822112d", + "startTime": "2026-04-06T13:35:00Z" + } + ], + "contentType": "EPISODE", + "description": "While Ms. Garrison is off trying to find a way to become the man he was always intended to be, Cartman is put in charge of the classroom.", + "displayTitle": "South Park", + "episodeNumber": 5, + "episodeTitle": "Eek, a Penis!", + "genres": [ + "Sitcom", + "Animated" + ], + "metadataLanguage": "en", + "originalAirDate": "2008-04-09", + "parentalRating": "TV14", + "releaseYear": 2008, + "seasonId": "83f1699b-6e35-45a7-a50f-c02fd4afabbe", + "seasonNumber": 12, + "seriesEditId": "bf0ea01c-3e9f-458c-ac80-2ab99798c7ec", + "seriesId": "daa235fb-5ddc-f267-6016-1b84897680ce", + "stbContentId": "1 1 381C3 14F", + "title": "South Park", + "tmsConnectorId": "SH002298270000", + "tmsId": "EP002298270335", + "resourceType": "CONTENT", + "resourceId": "6c380fcf-8b95-3b4d-84c6-02781822112d", + "editId": "c1d5977e-dc4c-4039-82dd-740ee1a4e5a8", + "itemType": "VIDEO_PROGRAM" + }, + { + "apgId": "EP002298270336", + "canonicalId": "dba0be33-c499-db0b-fa4f-3cb18c0beb4d", + "categories": [ + "TVShow" + ], + "consumables": [ + { + "augmentation": { + "constraints": { + "isPlayable": false, + "isRecordable": false, + "isRestart": true, + "isLookback": false, + "isDAI": false, + "isFastForwardDisabled": true, + "isExtendable": false, + "isCDVRUpsell": false + } + }, + "consumableType": "LINEAR", + "duration": 2100, + "endTime": "2026-04-06T14:45:00Z", + "format": "HD", + "metadataLanguage": "en", + "parentalRating": "TV14", + "programChannelId": "5070bc2e-dd69-4dee-98b4-a4c5e3b1fd7b", + "qualifiers": [ + "CC", + "1080p", + "HDTV" + ], + "resourceId": "e692efb0-ab25-319b-bcd5-9d15801bc5c8", + "scheduleId": "e692efb0-ab25-319b-bcd5-9d15801bc5c8", + "startTime": "2026-04-06T14:10:00Z" + } + ], + "contentType": "EPISODE", + "description": "Randy packs up his family and heads west when he wakes up to find the Internet is gone.", + "displayTitle": "South Park", + "episodeNumber": 6, + "episodeTitle": "Over Logging", + "genres": [ + "Sitcom", + "Animated" + ], + "metadataLanguage": "en", + "originalAirDate": "2008-04-16", + "parentalRating": "TV14", + "releaseYear": 2008, + "seasonId": "83f1699b-6e35-45a7-a50f-c02fd4afabbe", + "seasonNumber": 12, + "seriesEditId": "bf0ea01c-3e9f-458c-ac80-2ab99798c7ec", + "seriesId": "daa235fb-5ddc-f267-6016-1b84897680ce", + "stbContentId": "1 1 381C3 150", + "title": "South Park", + "tmsConnectorId": "SH002298270000", + "tmsId": "EP002298270336", + "resourceType": "CONTENT", + "resourceId": "e692efb0-ab25-319b-bcd5-9d15801bc5c8", + "editId": "b61eff7d-0f52-4f60-9e5f-6f67c35997f5", + "itemType": "VIDEO_PROGRAM" + }, + { + "apgId": "EP002298270337", + "canonicalId": "f6add436-828e-c88d-c165-48a20f0afc24", + "categories": [ + "TVShow" + ], + "consumables": [ + { + "augmentation": { + "constraints": { + "isPlayable": false, + "isRecordable": false, + "isRestart": true, + "isLookback": false, + "isDAI": false, + "isFastForwardDisabled": true, + "isExtendable": false, + "isCDVRUpsell": false + } + }, + "consumableType": "LINEAR", + "duration": 1800, + "endTime": "2026-04-06T15:15:00Z", + "format": "HD", + "metadataLanguage": "en", + "parentalRating": "TV14", + "programChannelId": "5070bc2e-dd69-4dee-98b4-a4c5e3b1fd7b", + "qualifiers": [ + "CC", + "1080p", + "HDTV" + ], + "resourceId": "bc7e16b7-be94-3e27-a8f2-ec2a7f85b646", + "scheduleId": "bc7e16b7-be94-3e27-a8f2-ec2a7f85b646", + "startTime": "2026-04-06T14:45:00Z" + } + ], + "contentType": "EPISODE", + "description": "While the kids are on a field trip to a living museum, Cartman makes Butters sneak away from the class to go to the amusement center next door.", + "displayTitle": "South Park", + "episodeNumber": 7, + "episodeTitle": "Super Fun Time", + "genres": [ + "Sitcom", + "Animated" + ], + "metadataLanguage": "en", + "originalAirDate": "2008-04-23", + "parentalRating": "TV14", + "releaseYear": 2008, + "seasonId": "83f1699b-6e35-45a7-a50f-c02fd4afabbe", + "seasonNumber": 12, + "seriesEditId": "bf0ea01c-3e9f-458c-ac80-2ab99798c7ec", + "seriesId": "daa235fb-5ddc-f267-6016-1b84897680ce", + "stbContentId": "1 1 381C3 151", + "title": "South Park", + "tmsConnectorId": "SH002298270000", + "tmsId": "EP002298270337", + "resourceType": "CONTENT", + "resourceId": "bc7e16b7-be94-3e27-a8f2-ec2a7f85b646", + "editId": "b08d9ff0-7bfd-40a7-afa8-243f514a3677", + "itemType": "VIDEO_PROGRAM" + }, + { + "apgId": "EP002298270340", + "canonicalId": "ff578271-3944-c625-5d5e-ba1a2de53916", + "categories": [ + "TVShow" + ], + "consumables": [ + { + "augmentation": { + "constraints": { + "isPlayable": false, + "isRecordable": false, + "isRestart": true, + "isLookback": false, + "isDAI": false, + "isFastForwardDisabled": true, + "isExtendable": false, + "isCDVRUpsell": false + } + }, + "consumableType": "LINEAR", + "duration": 2100, + "endTime": "2026-04-06T15:50:00Z", + "format": "HD", + "metadataLanguage": "en", + "parentalRating": "TV14", + "programChannelId": "5070bc2e-dd69-4dee-98b4-a4c5e3b1fd7b", + "qualifiers": [ + "CC", + "1080p", + "HDTV" + ], + "resourceId": "2a96124f-e0ef-3c73-b4aa-1a6f89578bf0", + "scheduleId": "2a96124f-e0ef-3c73-b4aa-1a6f89578bf0", + "startTime": "2026-04-06T15:15:00Z" + } + ], + "contentType": "EPISODE", + "description": "Butters stands with Cartman as he confronts the Chinese after a tragic event.", + "displayTitle": "South Park", + "episodeNumber": 8, + "episodeTitle": "The China Probrem", + "genres": [ + "Sitcom", + "Animated" + ], + "metadataLanguage": "en", + "originalAirDate": "2008-10-08", + "parentalRating": "TV14", + "releaseYear": 2008, + "seasonId": "83f1699b-6e35-45a7-a50f-c02fd4afabbe", + "seasonNumber": 12, + "seriesEditId": "bf0ea01c-3e9f-458c-ac80-2ab99798c7ec", + "seriesId": "daa235fb-5ddc-f267-6016-1b84897680ce", + "stbContentId": "1 1 381C3 154", + "title": "South Park", + "tmsConnectorId": "SH002298270000", + "tmsId": "EP002298270340", + "resourceType": "CONTENT", + "resourceId": "2a96124f-e0ef-3c73-b4aa-1a6f89578bf0", + "editId": "4e419c66-0058-41fc-84fa-fd8b43532f6b", + "itemType": "VIDEO_PROGRAM" + }, + { + "apgId": "EP002298270341", + "canonicalId": "d44ba864-fbfd-deac-b5eb-51604bfde847", + "categories": [ + "TVShow" + ], + "consumables": [ + { + "augmentation": { + "constraints": { + "isPlayable": false, + "isRecordable": false, + "isRestart": true, + "isLookback": false, + "isDAI": false, + "isFastForwardDisabled": true, + "isExtendable": false, + "isCDVRUpsell": false + } + }, + "consumableType": "LINEAR", + "duration": 2100, + "endTime": "2026-04-06T16:25:00Z", + "format": "HD", + "metadataLanguage": "en", + "parentalRating": "TVMA", + "programChannelId": "5070bc2e-dd69-4dee-98b4-a4c5e3b1fd7b", + "qualifiers": [ + "CC", + "1080p", + "HDTV" + ], + "resourceId": "a2658147-adfd-3bcd-820d-36fc4acdc6b9", + "scheduleId": "a2658147-adfd-3bcd-820d-36fc4acdc6b9", + "startTime": "2026-04-06T15:50:00Z" + } + ], + "contentType": "EPISODE", + "description": "Wendy gets in trouble when she threatens to beat up Cartman after school.", + "displayTitle": "South Park", + "episodeNumber": 9, + "episodeTitle": "Breast Cancer Show Ever", + "genres": [ + "Sitcom", + "Animated" + ], + "metadataLanguage": "en", + "originalAirDate": "2008-10-15", + "parentalRating": "TVMA", + "releaseYear": 2008, + "seasonId": "83f1699b-6e35-45a7-a50f-c02fd4afabbe", + "seasonNumber": 12, + "seriesEditId": "bf0ea01c-3e9f-458c-ac80-2ab99798c7ec", + "seriesId": "daa235fb-5ddc-f267-6016-1b84897680ce", + "stbContentId": "1 1 381C3 155", + "title": "South Park", + "tmsConnectorId": "SH002298270000", + "tmsId": "EP002298270341", + "resourceType": "CONTENT", + "resourceId": "a2658147-adfd-3bcd-820d-36fc4acdc6b9", + "editId": "f43a75d4-edcd-4dbf-b121-6e277bedec70", + "itemType": "VIDEO_PROGRAM" + }, + { + "apgId": "EP002298270344", + "canonicalId": "224bc66a-bf44-6776-7d01-dc16bfb73384", + "categories": [ + "TVShow" + ], + "consumables": [ + { + "augmentation": { + "constraints": { + "isPlayable": false, + "isRecordable": false, + "isRestart": true, + "isLookback": false, + "isDAI": false, + "isFastForwardDisabled": true, + "isExtendable": false, + "isCDVRUpsell": false + } + }, + "consumableType": "LINEAR", + "duration": 2100, + "endTime": "2026-04-06T17:00:00Z", + "format": "HD", + "metadataLanguage": "en", + "parentalRating": "TVMA", + "programChannelId": "5070bc2e-dd69-4dee-98b4-a4c5e3b1fd7b", + "qualifiers": [ + "CC", + "1080p", + "HDTV" + ], + "resourceId": "653abb31-2110-352c-a073-8c288a3aeeb2", + "scheduleId": "653abb31-2110-352c-a073-8c288a3aeeb2", + "startTime": "2026-04-06T16:25:00Z" + } + ], + "contentType": "EPISODE", + "description": "While the country celebrates the outcome of the election, the new President-elect arrives at the White House prematurely.", + "displayTitle": "South Park", + "episodeNumber": 12, + "episodeTitle": "About Last Night...", + "genres": [ + "Sitcom", + "Animated" + ], + "metadataLanguage": "en", + "originalAirDate": "2008-11-05", + "parentalRating": "TVMA", + "releaseYear": 2008, + "seasonId": "83f1699b-6e35-45a7-a50f-c02fd4afabbe", + "seasonNumber": 12, + "seriesEditId": "bf0ea01c-3e9f-458c-ac80-2ab99798c7ec", + "seriesId": "daa235fb-5ddc-f267-6016-1b84897680ce", + "stbContentId": "1 1 381C3 158", + "title": "South Park", + "tmsConnectorId": "SH002298270000", + "tmsId": "EP002298270344", + "tvAdvisories": [ "D", "L" ], - "dimension": "2D", - "ltd": "", - "programID": "EP002298270445", - "blackoutCode": "NA", - "airTime": "2023-01-15T06:00:00.000+0000", - "secLiveStreaming": "N", - "prOrd": 0, - "episodeTitle": "Goth Kids 3: Dawn of the Posers", - "authCode": "NA", - "format": "SD", - "seasonNumber": 17, - "listViewPrimaryImageUrl": "/db_photos/showcards/v5/AllPhotosAPGT/184338/p184338_b_v5_aa_l.jpg", - "eventCode": "", - "mainCategory": "TV", - "hd": 0, - "liveStreaming": "N" + "resourceType": "CONTENT", + "resourceId": "653abb31-2110-352c-a073-8c288a3aeeb2", + "editId": "495d289a-f80f-454c-a070-61f7b8589503", + "itemType": "VIDEO_PROGRAM" + }, + { + "apgId": "EP002298270345", + "canonicalId": "9a7dce54-49bc-3bba-9b03-22118dc7f4ce", + "categories": [ + "TVShow" + ], + "consumables": [ + { + "augmentation": { + "constraints": { + "isPlayable": false, + "isRecordable": false, + "isRestart": true, + "isLookback": false, + "isDAI": false, + "isFastForwardDisabled": true, + "isExtendable": false, + "isCDVRUpsell": false + } + }, + "consumableType": "LINEAR", + "duration": 1800, + "endTime": "2026-04-06T17:30:00Z", + "format": "HD", + "metadataLanguage": "en", + "parentalRating": "TV14", + "programChannelId": "5070bc2e-dd69-4dee-98b4-a4c5e3b1fd7b", + "qualifiers": [ + "CC", + "1080p", + "HDTV" + ], + "resourceId": "92ba1a5c-583a-3a10-99f0-01466e5cb7ea", + "scheduleId": "92ba1a5c-583a-3a10-99f0-01466e5cb7ea", + "startTime": "2026-04-06T17:00:00Z" + } + ], + "contentType": "EPISODE", + "description": "The boys must embrace the latest fad to hit South Park Elementary or risk their status as the coolest kids in school.", + "displayTitle": "South Park", + "episodeNumber": 13, + "episodeTitle": "Elementary School Musical", + "genres": [ + "Sitcom", + "Animated" + ], + "metadataLanguage": "en", + "originalAirDate": "2008-11-12", + "parentalRating": "TV14", + "releaseYear": 2008, + "seasonId": "83f1699b-6e35-45a7-a50f-c02fd4afabbe", + "seasonNumber": 12, + "seriesEditId": "bf0ea01c-3e9f-458c-ac80-2ab99798c7ec", + "seriesId": "daa235fb-5ddc-f267-6016-1b84897680ce", + "stbContentId": "1 1 381C3 159", + "title": "South Park", + "tmsConnectorId": "SH002298270000", + "tmsId": "EP002298270345", + "tvAdvisories": [ + "D", + "L" + ], + "resourceType": "CONTENT", + "resourceId": "92ba1a5c-583a-3a10-99f0-01466e5cb7ea", + "editId": "8186158a-894c-45a8-beec-d993780e2da8", + "itemType": "VIDEO_PROGRAM" + }, + { + "apgId": "EP002298270346", + "canonicalId": "6abb8eb7-263a-b734-e7c4-a05adddfc4c5", + "categories": [ + "TVShow" + ], + "consumables": [ + { + "augmentation": { + "constraints": { + "isPlayable": false, + "isRecordable": false, + "isRestart": true, + "isLookback": false, + "isDAI": false, + "isFastForwardDisabled": true, + "isExtendable": false, + "isCDVRUpsell": false + } + }, + "consumableType": "LINEAR", + "duration": 1800, + "endTime": "2026-04-06T18:00:00Z", + "format": "HD", + "metadataLanguage": "en", + "parentalRating": "TV14", + "programChannelId": "5070bc2e-dd69-4dee-98b4-a4c5e3b1fd7b", + "qualifiers": [ + "CC", + "1080p", + "HDTV" + ], + "resourceId": "27b1368e-5de5-36a8-b3e4-7cea765f0b59", + "scheduleId": "27b1368e-5de5-36a8-b3e4-7cea765f0b59", + "startTime": "2026-04-06T17:30:00Z" + } + ], + "contentType": "EPISODE", + "description": "The Goth Kids are angry when the other children can't tell the difference between a goth and a vampire.", + "displayTitle": "South Park", + "episodeNumber": 14, + "episodeTitle": "The Ungroundable", + "genres": [ + "Sitcom", + "Animated" + ], + "metadataLanguage": "en", + "originalAirDate": "2008-11-19", + "parentalRating": "TV14", + "releaseYear": 2008, + "seasonId": "83f1699b-6e35-45a7-a50f-c02fd4afabbe", + "seasonNumber": 12, + "seriesEditId": "bf0ea01c-3e9f-458c-ac80-2ab99798c7ec", + "seriesId": "daa235fb-5ddc-f267-6016-1b84897680ce", + "stbContentId": "1 1 381C3 15A", + "title": "South Park", + "tmsConnectorId": "SH002298270000", + "tmsId": "EP002298270346", + "tvAdvisories": [ + "L", + "D" + ], + "resourceType": "CONTENT", + "resourceId": "27b1368e-5de5-36a8-b3e4-7cea765f0b59", + "editId": "93f318ee-8334-47b7-8a18-247af2a078cd", + "itemType": "VIDEO_PROGRAM" + }, + { + "apgId": "EP000169160178", + "canonicalId": "9086d8fc-1048-eaef-3a64-3a861831c57c", + "categories": [ + "TVShow" + ], + "consumables": [ + { + "augmentation": { + "constraints": { + "isPlayable": false, + "isRecordable": false, + "isRestart": true, + "isLookback": false, + "isDAI": false, + "isFastForwardDisabled": true, + "isExtendable": false, + "isCDVRUpsell": false + } + }, + "consumableType": "LINEAR", + "duration": 1800, + "endTime": "2026-04-06T18:30:00Z", + "format": "HD", + "metadataLanguage": "en", + "parentalRating": "TVPG", + "programChannelId": "5070bc2e-dd69-4dee-98b4-a4c5e3b1fd7b", + "qualifiers": [ + "CC", + "1080p", + "HDTV" + ], + "resourceId": "ecc310aa-471b-3190-943d-1bc6cc6b3772", + "scheduleId": "ecc310aa-471b-3190-943d-1bc6cc6b3772", + "startTime": "2026-04-06T18:00:00Z" + } + ], + "contentType": "EPISODE", + "description": "George's plans for a summer getaway are foiled; Elaine's well-meaning criticism of a co-worker is not well-received.", + "displayTitle": "Seinfeld", + "episodeNumber": 22, + "episodeTitle": "The Summer of George", + "genres": [ + "Sitcom" + ], + "metadataLanguage": "en", + "originalAirDate": "1997-05-15", + "parentalRating": "TVPG", + "releaseYear": 1997, + "seasonId": "5a75c460-5cbb-4ea3-acba-5911532801b3", + "seasonNumber": 8, + "seriesEditId": "42df0f3e-b723-4618-bb7a-170890de7e4f", + "seriesId": "f95949d9-807e-8584-e299-ad8c19f23b6f", + "stbContentId": "1 1 4214 B2", + "title": "Seinfeld", + "tmsConnectorId": "SH000169160000", + "tmsId": "EP000169160178", + "resourceType": "CONTENT", + "resourceId": "ecc310aa-471b-3190-943d-1bc6cc6b3772", + "editId": "0508c9ca-8088-4640-8a02-707bb1710c9e", + "itemType": "VIDEO_PROGRAM" + }, + { + "apgId": "EP000169160180", + "canonicalId": "ca7a2846-ca64-5da9-1d21-a44080f6ff5b", + "categories": [ + "TVShow" + ], + "consumables": [ + { + "augmentation": { + "constraints": { + "isPlayable": false, + "isRecordable": false, + "isRestart": true, + "isLookback": false, + "isDAI": false, + "isFastForwardDisabled": true, + "isExtendable": false, + "isCDVRUpsell": false + } + }, + "consumableType": "LINEAR", + "duration": 1800, + "endTime": "2026-04-06T19:00:00Z", + "format": "HD", + "metadataLanguage": "en", + "parentalRating": "TVPG", + "programChannelId": "5070bc2e-dd69-4dee-98b4-a4c5e3b1fd7b", + "qualifiers": [ + "CC", + "1080p", + "HDTV" + ], + "resourceId": "2571bb90-019f-32bc-b3f0-f3b2f893650f", + "scheduleId": "2571bb90-019f-32bc-b3f0-f3b2f893650f", + "startTime": "2026-04-06T18:30:00Z" + } + ], + "contentType": "EPISODE", + "description": "Competing comic Bania warms to Jerry's crowds; Elaine and David unite for a European trip; Kramer reconsiders butter.", + "displayTitle": "Seinfeld", + "episodeNumber": 1, + "episodeTitle": "The Butter Shave", + "genres": [ + "Sitcom" + ], + "metadataLanguage": "en", + "originalAirDate": "1997-09-25", + "parentalRating": "TVPG", + "releaseYear": 1997, + "seasonId": "6020c194-97b3-4ba3-8636-0b1f7700797d", + "seasonNumber": 9, + "seriesEditId": "42df0f3e-b723-4618-bb7a-170890de7e4f", + "seriesId": "f95949d9-807e-8584-e299-ad8c19f23b6f", + "stbContentId": "1 1 4214 B4", + "title": "Seinfeld", + "tmsConnectorId": "SH000169160000", + "tmsId": "EP000169160180", + "resourceType": "CONTENT", + "resourceId": "2571bb90-019f-32bc-b3f0-f3b2f893650f", + "editId": "f871f0d2-9a80-40e9-ac27-b703b8f7fa34", + "itemType": "VIDEO_PROGRAM" + }, + { + "apgId": "EP000169160181", + "canonicalId": "20c58bda-283a-83a4-d5cd-65b1604da15b", + "categories": [ + "TVShow" + ], + "consumables": [ + { + "augmentation": { + "constraints": { + "isPlayable": false, + "isRecordable": false, + "isRestart": true, + "isLookback": false, + "isDAI": false, + "isFastForwardDisabled": true, + "isExtendable": false, + "isCDVRUpsell": false + } + }, + "consumableType": "LINEAR", + "duration": 1800, + "endTime": "2026-04-06T19:30:00Z", + "format": "HD", + "metadataLanguage": "en", + "parentalRating": "TVPG", + "programChannelId": "5070bc2e-dd69-4dee-98b4-a4c5e3b1fd7b", + "qualifiers": [ + "CC", + "1080p", + "HDTV" + ], + "resourceId": "d4fc0134-a38a-3484-85f1-556057e60bbd", + "scheduleId": "d4fc0134-a38a-3484-85f1-556057e60bbd", + "startTime": "2026-04-06T19:00:00Z" + } + ], + "contentType": "EPISODE", + "description": "Jerry finds part of his new date's anatomy of interest; George's job is threatened; Elaine's relationship sputters.", + "displayTitle": "Seinfeld", + "episodeNumber": 2, + "episodeTitle": "The Voice", + "genres": [ + "Sitcom" + ], + "metadataLanguage": "en", + "originalAirDate": "1997-10-02", + "parentalRating": "TVPG", + "releaseYear": 1997, + "seasonId": "6020c194-97b3-4ba3-8636-0b1f7700797d", + "seasonNumber": 9, + "seriesEditId": "42df0f3e-b723-4618-bb7a-170890de7e4f", + "seriesId": "f95949d9-807e-8584-e299-ad8c19f23b6f", + "stbContentId": "1 1 4214 B5", + "title": "Seinfeld", + "tmsConnectorId": "SH000169160000", + "tmsId": "EP000169160181", + "resourceType": "CONTENT", + "resourceId": "d4fc0134-a38a-3484-85f1-556057e60bbd", + "editId": "7f3a29cc-f08f-484b-8ba0-c57327d933e7", + "itemType": "VIDEO_PROGRAM" + }, + { + "apgId": "EP000169160182", + "canonicalId": "47eb6bce-b7ca-a3a5-d180-df9ec2999572", + "categories": [ + "TVShow" + ], + "consumables": [ + { + "augmentation": { + "constraints": { + "isPlayable": false, + "isRecordable": false, + "isRestart": true, + "isLookback": false, + "isDAI": false, + "isFastForwardDisabled": true, + "isExtendable": false, + "isCDVRUpsell": false + } + }, + "consumableType": "LINEAR", + "duration": 1800, + "endTime": "2026-04-06T20:00:00Z", + "format": "HD", + "metadataLanguage": "en", + "parentalRating": "TVPG", + "programChannelId": "5070bc2e-dd69-4dee-98b4-a4c5e3b1fd7b", + "qualifiers": [ + "CC", + "1080p", + "HDTV" + ], + "resourceId": "65983181-91ba-372d-90d1-bcbb157ac34b", + "scheduleId": "65983181-91ba-372d-90d1-bcbb157ac34b", + "startTime": "2026-04-06T19:30:00Z" + } + ], + "contentType": "EPISODE", + "description": "Jerry tries to reveal more of his feelings on the advice of his new girlfriend (Lori Loughlin). With Jason Alexander.", + "displayTitle": "Seinfeld", + "episodeNumber": 3, + "episodeTitle": "The Serenity Now", + "genres": [ + "Sitcom" + ], + "metadataLanguage": "en", + "originalAirDate": "1997-10-09", + "parentalRating": "TVPG", + "releaseYear": 1997, + "seasonId": "6020c194-97b3-4ba3-8636-0b1f7700797d", + "seasonNumber": 9, + "seriesEditId": "42df0f3e-b723-4618-bb7a-170890de7e4f", + "seriesId": "f95949d9-807e-8584-e299-ad8c19f23b6f", + "stbContentId": "1 1 4214 B6", + "title": "Seinfeld", + "tmsConnectorId": "SH000169160000", + "tmsId": "EP000169160182", + "resourceType": "CONTENT", + "resourceId": "65983181-91ba-372d-90d1-bcbb157ac34b", + "editId": "27e4f5e7-e8dc-494c-98f6-ba1bc83db816", + "itemType": "VIDEO_PROGRAM" + }, + { + "apgId": "EP000169160183", + "canonicalId": "3d76869a-42ef-4d84-59d8-deb1afb4ce69", + "categories": [ + "TVShow" + ], + "consumables": [ + { + "augmentation": { + "constraints": { + "isPlayable": false, + "isRecordable": false, + "isRestart": true, + "isLookback": false, + "isDAI": false, + "isFastForwardDisabled": true, + "isExtendable": false, + "isCDVRUpsell": false + } + }, + "badges": [ + "OnNow" + ], + "consumableType": "LINEAR", + "duration": 1800, + "endTime": "2026-04-06T20:30:00Z", + "format": "HD", + "metadataLanguage": "en", + "parentalRating": "TVPG", + "programChannelId": "5070bc2e-dd69-4dee-98b4-a4c5e3b1fd7b", + "qualifiers": [ + "CC", + "1080p", + "HDTV" + ], + "resourceId": "5a881f69-2e7a-3ff4-9698-23e4f0306af7", + "scheduleId": "5a881f69-2e7a-3ff4-9698-23e4f0306af7", + "startTime": "2026-04-06T20:00:00Z" + } + ], + "contentType": "EPISODE", + "description": "At his parents' insistence, Jerry is coached by personal trainer Izzy Mandelbaum (Lloyd Bridges) to lose weight.", + "displayTitle": "Seinfeld", + "episodeNumber": 4, + "episodeTitle": "The Blood", + "genres": [ + "Sitcom" + ], + "metadataLanguage": "en", + "originalAirDate": "1997-10-16", + "parentalRating": "TVPG", + "releaseYear": 1997, + "seasonId": "6020c194-97b3-4ba3-8636-0b1f7700797d", + "seasonNumber": 9, + "seriesEditId": "42df0f3e-b723-4618-bb7a-170890de7e4f", + "seriesId": "f95949d9-807e-8584-e299-ad8c19f23b6f", + "stbContentId": "1 1 4214 B7", + "title": "Seinfeld", + "tmsConnectorId": "SH000169160000", + "tmsId": "EP000169160183", + "resourceType": "CONTENT", + "resourceId": "5a881f69-2e7a-3ff4-9698-23e4f0306af7", + "editId": "eb701267-4bd4-4794-93ac-94bfc103d237", + "itemType": "VIDEO_PROGRAM" + }, + { + "apgId": "EP000169160184", + "canonicalId": "c97d635a-7370-8b56-7908-f5049a0c5f86", + "categories": [ + "TVShow" + ], + "consumables": [ + { + "augmentation": { + "constraints": { + "isPlayable": false, + "isRecordable": false, + "isRestart": true, + "isLookback": false, + "isDAI": false, + "isFastForwardDisabled": true, + "isExtendable": false, + "isCDVRUpsell": false + } + }, + "badges": [ + "AiringOn" + ], + "consumableType": "LINEAR", + "duration": 1800, + "endTime": "2026-04-06T21:00:00Z", + "format": "HD", + "metadataLanguage": "en", + "parentalRating": "TVPG", + "programChannelId": "5070bc2e-dd69-4dee-98b4-a4c5e3b1fd7b", + "qualifiers": [ + "CC", + "1080p", + "HDTV" + ], + "resourceId": "c38d520b-f414-3d65-aa15-787e7f909565", + "scheduleId": "c38d520b-f414-3d65-aa15-787e7f909565", + "startTime": "2026-04-06T20:30:00Z" + } + ], + "contentType": "EPISODE", + "description": "Jerry, promised a vehicle as payment for a performance, winds up getting a van instead of a car; Elaine meets a new man; Kramer has no need for mail.", + "displayTitle": "Seinfeld", + "episodeNumber": 5, + "episodeTitle": "The Junk Mail", + "genres": [ + "Sitcom" + ], + "metadataLanguage": "en", + "originalAirDate": "1997-10-30", + "parentalRating": "TVPG", + "releaseYear": 1997, + "seasonId": "6020c194-97b3-4ba3-8636-0b1f7700797d", + "seasonNumber": 9, + "seriesEditId": "42df0f3e-b723-4618-bb7a-170890de7e4f", + "seriesId": "f95949d9-807e-8584-e299-ad8c19f23b6f", + "stbContentId": "1 1 4214 B8", + "title": "Seinfeld", + "tmsConnectorId": "SH000169160000", + "tmsId": "EP000169160184", + "resourceType": "CONTENT", + "resourceId": "c38d520b-f414-3d65-aa15-787e7f909565", + "editId": "2cbd7da2-3b27-4c60-a9c3-f5bb331fa55f", + "itemType": "VIDEO_PROGRAM" + }, + { + "apgId": "EP007261330025", + "canonicalId": "64ad4956-d5b9-d833-13bb-1f4d0d0e6f6a", + "categories": [ + "TVShow" + ], + "consumables": [ + { + "augmentation": { + "constraints": { + "isPlayable": false, + "isRecordable": false, + "isRestart": true, + "isLookback": false, + "isDAI": false, + "isFastForwardDisabled": true, + "isExtendable": false, + "isCDVRUpsell": false + } + }, + "badges": [ + "AiringOn" + ], + "consumableType": "LINEAR", + "duration": 1800, + "endTime": "2026-04-06T21:30:00Z", + "format": "HD", + "metadataLanguage": "en", + "parentalRating": "TV14", + "programChannelId": "5070bc2e-dd69-4dee-98b4-a4c5e3b1fd7b", + "qualifiers": [ + "CC", + "1080p", + "HDTV" + ], + "resourceId": "be6f5511-6f50-318e-b1c4-92d2082c3d1b", + "scheduleId": "be6f5511-6f50-318e-b1c4-92d2082c3d1b", + "startTime": "2026-04-06T21:00:00Z" + } + ], + "contentType": "EPISODE", + "description": "Michael takes the Dunder Mifflin employees ice skating to celebrate his birthday; Kevin waits nervously for test results.", + "displayTitle": "The Office", + "episodeNumber": 19, + "episodeTitle": "Michael's Birthday", + "genres": [ + "Sitcom" + ], + "metadataLanguage": "en", + "originalAirDate": "2006-03-30", + "parentalRating": "TV14", + "releaseYear": 2006, + "seasonId": "d2866d40-460c-4a91-9fd7-97e58414692e", + "seasonNumber": 2, + "seriesEditId": "f18e497e-0521-4854-9f7f-f06ea7678696", + "seriesId": "7777272c-b235-c317-c2b5-34eec10be5f9", + "stbContentId": "1 1 B1475 19", + "title": "The Office", + "tmsConnectorId": "SH007261330000", + "tmsId": "EP007261330025", + "tvAdvisories": [ + "D", + "L" + ], + "resourceType": "CONTENT", + "resourceId": "be6f5511-6f50-318e-b1c4-92d2082c3d1b", + "editId": "0601e6c9-2987-44c0-9668-267880d6d2db", + "itemType": "VIDEO_PROGRAM" + }, + { + "apgId": "EP007261330026", + "canonicalId": "b455fe85-60df-c74d-afe4-561680ee4e4b", + "categories": [ + "TVShow" + ], + "consumables": [ + { + "augmentation": { + "constraints": { + "isPlayable": false, + "isRecordable": false, + "isRestart": true, + "isLookback": false, + "isDAI": false, + "isFastForwardDisabled": true, + "isExtendable": false, + "isCDVRUpsell": false + } + }, + "badges": [ + "AiringOn" + ], + "consumableType": "LINEAR", + "duration": 1800, + "endTime": "2026-04-06T22:00:00Z", + "format": "HD", + "metadataLanguage": "en", + "parentalRating": "TV14", + "programChannelId": "5070bc2e-dd69-4dee-98b4-a4c5e3b1fd7b", + "qualifiers": [ + "CC", + "1080p", + "HDTV" + ], + "resourceId": "2858d7cf-1f71-3a81-97d2-d6b58e46655e", + "scheduleId": "2858d7cf-1f71-3a81-97d2-d6b58e46655e", + "startTime": "2026-04-06T21:30:00Z" + } + ], + "contentType": "EPISODE", + "description": "Dwight finds half a joint in the parking lot and launches a full investigation; Michael asks an unusual favor.", + "displayTitle": "The Office", + "episodeNumber": 20, + "episodeTitle": "Drug Testing", + "genres": [ + "Comedy", + "Sitcom" + ], + "metadataLanguage": "en", + "originalAirDate": "2006-04-27", + "parentalRating": "TV14", + "releaseYear": 2006, + "seasonId": "d2866d40-460c-4a91-9fd7-97e58414692e", + "seasonNumber": 2, + "seriesEditId": "f18e497e-0521-4854-9f7f-f06ea7678696", + "seriesId": "7777272c-b235-c317-c2b5-34eec10be5f9", + "stbContentId": "1 1 B1475 1A", + "title": "The Office", + "tmsConnectorId": "SH007261330000", + "tmsId": "EP007261330026", + "tvAdvisories": [ + "D", + "L" + ], + "resourceType": "CONTENT", + "resourceId": "2858d7cf-1f71-3a81-97d2-d6b58e46655e", + "editId": "1edad4e2-7e46-47d9-8d9c-120ea02fce4f", + "itemType": "VIDEO_PROGRAM" + }, + { + "apgId": "EP007261330027", + "canonicalId": "31b61ce4-f7cc-4728-7261-d4ee2ba9a684", + "categories": [ + "TVShow" + ], + "consumables": [ + { + "augmentation": { + "constraints": { + "isPlayable": false, + "isRecordable": false, + "isRestart": true, + "isLookback": false, + "isDAI": false, + "isFastForwardDisabled": true, + "isExtendable": false, + "isCDVRUpsell": false + } + }, + "badges": [ + "AiringOn" + ], + "consumableType": "LINEAR", + "duration": 1800, + "endTime": "2026-04-06T22:30:00Z", + "format": "HD", + "metadataLanguage": "en", + "parentalRating": "TV14", + "programChannelId": "5070bc2e-dd69-4dee-98b4-a4c5e3b1fd7b", + "qualifiers": [ + "CC", + "1080p", + "HDTV" + ], + "resourceId": "5021f00b-f422-3f4e-8b32-e784308aa354", + "scheduleId": "5021f00b-f422-3f4e-8b32-e784308aa354", + "startTime": "2026-04-06T22:00:00Z" + } + ], + "contentType": "EPISODE", + "description": "Chaos ensues when Michael takes responsibility for conflict resolution from the Human Relations department.", + "displayTitle": "The Office", + "episodeNumber": 21, + "episodeTitle": "Conflict Resolution", + "genres": [ + "Comedy", + "Sitcom" + ], + "metadataLanguage": "en", + "originalAirDate": "2006-05-04", + "parentalRating": "TV14", + "releaseYear": 2006, + "seasonId": "d2866d40-460c-4a91-9fd7-97e58414692e", + "seasonNumber": 2, + "seriesEditId": "f18e497e-0521-4854-9f7f-f06ea7678696", + "seriesId": "7777272c-b235-c317-c2b5-34eec10be5f9", + "stbContentId": "1 1 B1475 1B", + "title": "The Office", + "tmsConnectorId": "SH007261330000", + "tmsId": "EP007261330027", + "tvAdvisories": [ + "D", + "L" + ], + "resourceType": "CONTENT", + "resourceId": "5021f00b-f422-3f4e-8b32-e784308aa354", + "editId": "ff96f579-5f52-4f66-8671-4cb370c5c239", + "itemType": "VIDEO_PROGRAM" + }, + { + "apgId": "EP007261330028", + "canonicalId": "19930fc0-2d74-d74b-f100-ece9d354a7c6", + "categories": [ + "TVShow" + ], + "consumables": [ + { + "augmentation": { + "constraints": { + "isPlayable": false, + "isRecordable": false, + "isRestart": true, + "isLookback": false, + "isDAI": false, + "isFastForwardDisabled": true, + "isExtendable": false, + "isCDVRUpsell": false + } + }, + "badges": [ + "AiringOn" + ], + "consumableType": "LINEAR", + "duration": 1800, + "endTime": "2026-04-06T23:00:00Z", + "format": "HD", + "metadataLanguage": "en", + "parentalRating": "TV14", + "programChannelId": "5070bc2e-dd69-4dee-98b4-a4c5e3b1fd7b", + "qualifiers": [ + "CC", + "1080p", + "HDTV" + ], + "resourceId": "d7a1de1a-058b-39b7-8c7c-72ce4c885e6c", + "scheduleId": "d7a1de1a-058b-39b7-8c7c-72ce4c885e6c", + "startTime": "2026-04-06T22:30:00Z" + } + ], + "contentType": "EPISODE", + "description": "Employees take some big gambles when they host a charity casino-night in their warehouse.", + "displayTitle": "The Office", + "episodeNumber": 22, + "episodeTitle": "Casino Night", + "genres": [ + "Comedy", + "Sitcom" + ], + "metadataLanguage": "en", + "originalAirDate": "2006-05-11", + "parentalRating": "TV14", + "releaseYear": 2006, + "seasonId": "d2866d40-460c-4a91-9fd7-97e58414692e", + "seasonNumber": 2, + "seriesEditId": "f18e497e-0521-4854-9f7f-f06ea7678696", + "seriesId": "7777272c-b235-c317-c2b5-34eec10be5f9", + "stbContentId": "1 1 B1475 1C", + "title": "The Office", + "tmsConnectorId": "SH007261330000", + "tmsId": "EP007261330028", + "tvAdvisories": [ + "D", + "L" + ], + "resourceType": "CONTENT", + "resourceId": "d7a1de1a-058b-39b7-8c7c-72ce4c885e6c", + "editId": "575416ca-102c-4580-be04-fc89612eb658", + "itemType": "VIDEO_PROGRAM" + }, + { + "apgId": "EP007261330030", + "canonicalId": "be6fdd4f-3bed-150d-2cf9-4d250840798c", + "categories": [ + "TVShow" + ], + "consumables": [ + { + "augmentation": { + "constraints": { + "isPlayable": false, + "isRecordable": false, + "isRestart": true, + "isLookback": false, + "isDAI": false, + "isFastForwardDisabled": true, + "isExtendable": false, + "isCDVRUpsell": false + } + }, + "badges": [ + "AiringOn" + ], + "consumableType": "LINEAR", + "duration": 2100, + "endTime": "2026-04-06T23:35:00Z", + "format": "HD", + "metadataLanguage": "en", + "parentalRating": "TV14", + "programChannelId": "5070bc2e-dd69-4dee-98b4-a4c5e3b1fd7b", + "qualifiers": [ + "CC", + "1080p", + "HDTV" + ], + "resourceId": "3e5add4b-ce49-3ebd-9198-a2cae149b3d6", + "scheduleId": "3e5add4b-ce49-3ebd-9198-a2cae149b3d6", + "startTime": "2026-04-06T23:00:00Z" + } + ], + "contentType": "EPISODE", + "description": "Michael unintentionally outs a gay employee; the situation with Jim and Pam.", + "displayTitle": "The Office", + "episodeNumber": 1, + "episodeTitle": "Gay Witch Hunt", + "genres": [ + "Comedy", + "Sitcom" + ], + "metadataLanguage": "en", + "originalAirDate": "2006-09-21", + "parentalRating": "TV14", + "releaseYear": 2006, + "seasonId": "f02f89ca-ad62-412e-a454-0529d1c5c4e2", + "seasonNumber": 3, + "seriesEditId": "f18e497e-0521-4854-9f7f-f06ea7678696", + "seriesId": "7777272c-b235-c317-c2b5-34eec10be5f9", + "stbContentId": "1 1 B1475 1E", + "title": "The Office", + "tmsConnectorId": "SH007261330000", + "tmsId": "EP007261330030", + "tvAdvisories": [ + "L", + "S", + "D" + ], + "resourceType": "CONTENT", + "resourceId": "3e5add4b-ce49-3ebd-9198-a2cae149b3d6", + "editId": "b72d0da1-7b19-4c77-8f5d-5ae25b9ac02b", + "itemType": "VIDEO_PROGRAM" + }, + { + "apgId": "EP007261330031", + "canonicalId": "c2d06f78-fef5-314e-9d21-8384332af0e4", + "categories": [ + "TVShow" + ], + "consumables": [ + { + "augmentation": { + "constraints": { + "isPlayable": false, + "isRecordable": false, + "isRestart": true, + "isLookback": false, + "isDAI": false, + "isFastForwardDisabled": true, + "isExtendable": false, + "isCDVRUpsell": false + } + }, + "badges": [ + "AiringOn" + ], + "consumableType": "LINEAR", + "duration": 2100, + "endTime": "2026-04-07T00:10:00Z", + "format": "HD", + "metadataLanguage": "en", + "parentalRating": "TV14", + "programChannelId": "5070bc2e-dd69-4dee-98b4-a4c5e3b1fd7b", + "qualifiers": [ + "CC", + "1080p", + "HDTV" + ], + "resourceId": "00dfec0b-2e5f-3cbb-96a6-820b68b35537", + "scheduleId": "00dfec0b-2e5f-3cbb-96a6-820b68b35537", + "startTime": "2026-04-06T23:35:00Z" + } + ], + "contentType": "EPISODE", + "description": "Michael organizes a party in his hotel room when he, Dwight and Jan attend the Northeastern Mid-Market Office Supply Convention in Philadelphia.", + "displayTitle": "The Office", + "episodeNumber": 2, + "episodeTitle": "The Convention", + "genres": [ + "Comedy", + "Sitcom" + ], + "metadataLanguage": "en", + "originalAirDate": "2006-09-28", + "parentalRating": "TV14", + "releaseYear": 2006, + "seasonId": "f02f89ca-ad62-412e-a454-0529d1c5c4e2", + "seasonNumber": 3, + "seriesEditId": "f18e497e-0521-4854-9f7f-f06ea7678696", + "seriesId": "7777272c-b235-c317-c2b5-34eec10be5f9", + "stbContentId": "1 1 B1475 1F", + "title": "The Office", + "tmsConnectorId": "SH007261330000", + "tmsId": "EP007261330031", + "tvAdvisories": [ + "D", + "L" + ], + "resourceType": "CONTENT", + "resourceId": "00dfec0b-2e5f-3cbb-96a6-820b68b35537", + "editId": "e9a95e8f-8be1-4e09-94db-b05970a25485", + "itemType": "VIDEO_PROGRAM" } - ], - "chKey": "249_1586426400000", - "chName": "Comedy Central", - "chDesc": "Comedy Central - The only 24-hour, all-comedy network. Spotlights Emmy and CableAce Award-winning shows like Dr. Katz: Professional Therapist, plus sitcoms, stand-up, animation, talk shows and movies.", - "liveStreaming": "N", - "digitalAdInsertableLive": false + ] } - ], - "reporting": { - "channelschedules": { - "success": false, - "reportingData": "reporting for app/json/channelschedules/channelschedules not implemented yet" - } - }, - "messagekeys": null, - "contingencies": [] + ] } \ No newline at end of file diff --git a/sites/directv.com/__data__/no-content.json b/sites/directv.com/__data__/no-content.json index 8b246c7c3..8610eeb7d 100644 --- a/sites/directv.com/__data__/no-content.json +++ b/sites/directv.com/__data__/no-content.json @@ -1,27 +1,8 @@ { - "errors": [ + "schedules": [ { - "text": "Service failure: see errors or BulkOperationErrors for details", - "field": "", - "reason": "INTERNAL_SERVER_ERROR" - } - ], - "statusCode": 500, - "apiResponse": { - "messages": "NOTE: see res.contingencies for size-filtered message values" - }, - "reporting": { - "channelschedules": { - "success": false, - "reportingData": "reporting for app/json/channelschedules/channelschedules not implemented yet" - } - }, - "messagekeys": null, - "contingencies": [ - { - "key": "ent_ep_guide_backend_unavailable_error_message", - "value": "Due to technical issues the guide is currently unavailable, please check back to soon.", - "level": "ERROR" + "channelId": "5070bc2e-dd69-4dee-98b4-a4c5e3b1fd7b", + "contents": [] } ] } \ No newline at end of file diff --git a/sites/directv.com/directv.com.channels.xml b/sites/directv.com/directv.com.channels.xml index 9373f8792..35ce2939e 100644 --- a/sites/directv.com/directv.com.channels.xml +++ b/sites/directv.com/directv.com.channels.xml @@ -1,1046 +1,1159 @@ - WINS - Parkersburg, WV WCHS ABC 8 A3 HD - Parkersburg, WV WCHS ABC 8 SD - Parkersburg, WV WTAP NBC 15 A3 HD - Parkersburg, WV WTAPDT2 MNT 17 A3 SD - Parkersburg, WV WOVA FOX 22 A3 HD - Parkersburg, WV WIYE CBS 47 A3 HD - A3 Parkersburg 65 PBS (Virt) - QVC (70) - Home Shopping Network 70-1 - Home Shopping Network 70-1 (HD) - QVC HD (70) - News Mix 71 - Jewelry Television (72) - SHOP HQ (73) - SALE Network. - Shop LC (75) - QVC2 (76) - NEW TV (77) - COOL Network 78 - QVC2 (79) - COZI TV - GRIT - BounceTV - WOW TV 83 - IDEA Channel 84 - RENEW TV (85-1) - Get IT Infomercial 85-3 - Save - HOME TV (85-2) - VALU 86 - DEALS - BEST Channel 88 - VISION TV Channel 89 - FRESH (91) - CRAVE (92) - Celebrity Shopping TV 95 - SEEK 97 HD - Interactive Advertising Channel HD (98) - XTRA (99) - DTV4K - CINE4K 107 - CINE4K PPV - Interactive Advertising Channel HD 111 - Seasonal Sports Offer Channel - DTV Cinema 114 HD - DTV Cinema 115 - DTV Cinema 118 HD - DTV Cinema 119 - DTV Cinema 120 - DTV Cinema 123 HD - DTV Cinema 124 - DTV Cinema 126 HD - DTV Cinema 127 HD - DTV Cinema 128 HD - DTV Cinema 129 HD - DTV Cinema 130 HD - DTV Cinema 155 HD - DTV Cinema 156 HD - DTV Cinema 157 HD - DTV Cinema 158 HD - DTV Cinema 159 - DTV Cinema 160 - DTV Cinema 161 - DTV Cinema 162 - DTV Cinema 163 - DTV Cinema 164 - DTV Cinema 165 - DTV Cinema 166 - DTV Cinema 167 - DTV Cinema 168 - DTV Cinema 169 - DTV Cinema 170 - DTV Cinema 171 - DTV Cinema 172 - DTV Cinema 173 - DTV Cinema 174 - DTV Cinema 175 - DTV Cinema 176 - DTV Cinema 177 - DTV Cinema 181 - Kids Mix Channel - News Mix - CNN - CNN HD - COOL Network 203 - HLN - HLN HD - SPORTS MIX HD (205) - ESPN - ESPN HD - ESPNews - ESPNews HD - ESPNU HD - ESPNU - ESPN2 - ESPN2 HD - NFL Network - NFL Network Alternate - NFL Network Alternate HD - NFL Network HD - MLB Network Alt. 213-1 - MLB Network - MLB Network HD - MLB Network Alt. 213-1 HD - MAVTV HD - NHL Network - NHL Network Alternate - NHL Network Alternate HD - NHL Network HD - NBA TV - NBA TV HD - Tennis Channel - Tennis Channel HD - Golf Channel - Golf Channel HD - FOX Sports 1 - FOX Sports 1 HD - CBS Sports Network - CBS Sports Network HD - Save 222 (Infomercial) - Celebrity Shopping TV - AVC (Infomercial) - HOME TV (225) - Shop LC - MALL (Infomercial) - GEM Shopping Network - HGTV - HGTV HD - Magnolia Network - Magnolia Network HD - Food Network - Food Network HD - Cooking Channel - Cooking Channel HD - Game Show Network - Game Show Network HD - WOW TV 234 - Tastemade - E! - E! HD - Bravo - Bravo HD - ReelzChannel - ReelzChannel HD - SundanceTV - SundanceTV HD - Home Shopping Network - Home Shopping Network HD - Paramount Network - Paramount Network HD - USA Network - USA Network HD - XPLOR - SYFY - SYFYHD - TNT - TNT HD - TNT West HD - truTV - truTV HD - TBS - TBS West HD - TBS HD - FX - FX HD - Comedy Central - Comedy Central West HD - Comedy Central HD - SECRET TV (250) - Oxygen True Crime - Oxygen True Crime HD - Lifetime - Lifetime HD - LMN - LMN HD - AMC - AMC HD - XTRA Network - TCM - TCM HD - FX Movie - FX Movie Channel HD - FXX - FXX HD - WE tv - WE tv HD - Discovery Life - VISION TV Channel 262 - XPLOR (262-1) - Get It Infomercial - BBC America - BBC America HD - A&E - A&E HD - FYI - FYI HD - BEST Channel 268 - History - History HD - IDEA Channel 270 - VICE - VICE HD - Logo - POP - POP HD - Ovation - Ovation HD - QVC - QVC HD - National Geographic - National Geographic HD - Travel Channel - Travel Channel HD - Discovery - Discovery HD - OWN - OWN HD - OWN West - TLC - TLC HD - MotorTrend HD - Animal Planet - Animal Planet HD - Nat Geo WILD - Nat Geo Wild HD - Science - Science HD - Investigation Discovery - Investigation Discovery HD - Destination America - Destination America HD - American Heroes Channel - American Heroes HD - PBS Kids - Disney Junior - Disney Junior HD - Disney Channel (East) - Disney Channel HD - Disney Channel (West) - Disney XD - Disney XD HD - BabyFirst - Discovery Family Channel HD - Discovery Family Channel - Universal Kids - Universal Kids HD - Cartoon Network - Cartoon Network HD - Cartoon Network West - Boomerang - Nickelodeon East - Nickelodeon East HD - Nickelodeon West - Nick Jr. - Nick Jr. HD - Nicktoons - TeenNick - TV Land - TV Land HD - ION Television East HD - NewsNation - NewsNation HD - CRAVE - SALE Network - HSN2 - Freeform - Freeform HD - Hallmark - Hallmark Channel HD - Jewelry Television - VALU - QVC2 - Shop HQ - QVC Channel 317 - QVC HD (317) - QVC3 - NEW TV (319) - Scientology Network - NHK World News - Go4IT - Family Entertainment Television - RENEW TV (324) - SECRET TV - FRESH - Jewish Life TV - Great American Family - Great American Family HD - CMT - CMT HD - TV One HD - BET - BET HD - BET West HD - BET Her - MTV - MTV West HD - MTV HD - MTV2 - MTV2 HD - IFC - IFC HD - VH1 - VH1 HD - MTV Classic - SEEK HD - UPTV - Fuse HD - AXS TV HD - Cleo TV - theGrio - i24 News - Son Life Broadcasting HD - RFD HD TV - BBC World News HD - Free Speech TV - Newsmax TV HD - Newsmax TV - CSPAN - CSPAN 2 - NASA TV - Bloomberg TV - Bloomberg TV HD - Cheddar News - CNBC - CNBC HD - MSNBC - MSNBC HD - CNBC World - CNNi - Fox Business Network - Fox Business Network HD - FOX News Channel - FOX News Channel HD - AccuWeather HD - The Weather Channel - The Weather Channel HD - GEB America - INSP HD - INSP - God TV - VICTORY - World Harvest Television - Hope Channel - Daystar - EWTN - TBN Inspire - Trinity Broadcast Network HD - The WORD Network - BYUtv - LinkTV - Christian Television Net - TCT Network - NRB - Living Faith Network - IMPACT TV - ASPIRE (HD) - Comedy TV HD - Justice Central HD - Revolt HD - FM HD - JBS - PBSNET - WCBS (New York) CBS East - WCBS (New York) CBS HD East - KCBS (Los Angeles) CBS West - KCBS (Los Angeles) CBS HD West - WNBC (New York) NBC East - WNBC (New York) NBC HD East - KNBC (Los Angeles) NBC West - KNBC (Los Angeles) NBC HD West - CW Plus - KTLA CW West - WABC (New York) ABC East - WABC (New York) ABC HD East - KABC (Los Angeles) ABC West - KABC (Los Angeles) ABC HD West - WNYW (New York) FOX East - WNYW (New York) FOX HD East - KTTV (Los Angeles) FOX West - KTTV (Los Angeles) FOX HD West - Aqui - Univision East - Univision East HD - Univision West - Galavision - Galavision HD - megaTV - MegaTV HD - Telemundo East - Telemundo West - UniMas SD West - UniMas West HD - VePlus - Universo - Universo HD - Telefe - Multimedios - Discovery en Espanol - WAPA America - Videorola - Nuestra Tele - Caracol TV - NTN 24 - CNN en Espanol - Atreseries - Cine Estelar - Cinelatino - Cine Nostalgia - BabyTV - Starz Encore en Espanol - Centroamerica TV - TeleCentro - Hola TV - Peru Magico - ZooMoo - Bandamax - Hogar de HGTV - Nat Geo Mundo - Discovery Familia - TV Chile - Ecuavisa Internacional - SUR Peru - Vme - Azteca America - Estrella TV - History en Espanol - Pasiones - Tr3S - Canal 22 Internacional - Once Mexico - Enlace - Sony Cine - Viendo Movies - De Pelicula - De Pelicula Clasico - FOROtv - Univision telenovelas - INFO Temp 7 - ESNE PIO - Ecuador TV - Antena 3 - Atres Cine - TVE - HITN - Cine Mexicano - TUDN HD - TUDN - FOX Deportes - FOX Deportes HD - ESPN Deportes - ESPN Deportes HD - GolTV - TyC Sports - Nuestra Vision - Estrella News - Meganoticias - MLS Direct Kick 475 - MLS Direct Kick 475 HD - MLS Direct Kick 476 - MLS Direct Kick 476 HD - MLS Direct Kick 477 HD - MLS Direct Kick 477 - MLS Direct Kick 478 HD - MLS Direct Kick 478 - MLS Direct Kick 479 - MLS Direct Kick 479 HD - MLS Direct Kick 480 - MLS Direct Kick 480 HD - MLS Direct Kick 481 - MLS Direct Kick 481 HD - MLS Direct Kick 482 - MLS Direct Kick 482 HD - MLS Direct Kick 483 - MLS Direct Kick 483 HD - MLS Direct Kick 484 - MLS Direct Kick 484 HD - MLS Direct Kick 485 - MLS Direct Kick 485 HD - MLS Direct Kick 486 - MLS Direct Kick 486 HD - MLS Direct Kick 487 - MLS Direct Kick 487 HD - MLS Direct Kick 488 - MLS Direct Kick 488 HD - MLS Direct Kick 489 - MLS Direct Kick 489 HD - MLS Direct Kick 490 - MLS Direct Kick 490 HD - DTV Cinema 496 - HBO East - HBO HD East - HBO 2 East - HBO2 HD East - HBO Signature - HBO Signature HD East - HBO West - HBO West HD - HBO 2 West - HBO2 West HD - HBO Comedy HD - HBO Family East - HBO Family East HD - HBO Family West - HBO Zone HD - HBO Latino - HBO Latino HD - Cinemax - Cinemax East HD - Cinemax West - Cinemax West HD - MoreMAX - MoreMAX HD - ActionMax HD - 5StarMAX HD - MovieMAX - ThrillerMAX HD - Cinemax Latino HD - STARZ East - STARZ East HD - STARZ West - STARZ West HD - STARZ Kids & Family HD - STARZ Comedy HD - STARZ Edge - STARZ Edge HD - STARZ in Black - STARZ in Black HD - STARZ Cinema HD - STARZ Encore - STARZ Encore HD - STARZ Encore West - STARZ Encore Classic - STARZ Encore Westerns - STARZ Encore Suspense - STARZ Encore Black - STARZ Encore Action - STARZ Encore Action HD - STARZ Encore Family - Showtime (E) - Showtime HD East - Showtime (W) - Showtime HD West - SHOWTIME 2 - SHOWTIME 2 HD - SHOxBET HD - SHOxBET - Showtime Extreme - Showtime Extreme HD - Showtime Showcase HD - Showtime Next HD - Showtime FamilyZone - The Movie Channel East - The Movie Channel East HD - The Movie Channel West - The Movie Channel Xtra HD - Flix - AMC+ HD - MGM+ HD - MGM+ Hits East - MGM+ Marquee HD - Dog TV - So Yummy - Hallmark Drama HD - Hallmark Movies & Mysteries HD - HDNET MOVIES - Sony Movies - Smithsonian Channel HD - Crime & Investigation HD - MTV Live HD - Shorts TV HD - Commercial Special Events 574 - Playboy TV Monthly Offer - Playboy TV HD - Playboy 2 (577) - Playboy en Espanol 578 - BraZZers TV Monthly Offer - Hustler & Playboy TV Offers - Adult PPV - Ch. 582 - Adult PPV - Ch. 583 - Adult PPV - Ch. 584 - Vivid TV Monthly Offer - Penthouse TV Monthly Offer - Hustler Monthly Offer - Adult All Access Pass Ch. 591 - Adult All Access Pass Ch. 592 - Adult Billboard IPPV Ch 593 - Reality Kings - Penthouse TV - Bang U - BraZZers TV - Vivid TV - Hustler TV - SPORTS MIX HD (600) - FanDuel TV HD - Cowboy Channel - Pursuit Channel - Sportsman Channel - Outdoor Channel HD - Outdoor Channel - Stadium College Sports Atlantic - Stadium College Sports Central - Stadium College Sports Pacific - BTN - BTN HD - SEC Network Alternate - SEC Network Alternate HD - SEC Network HD - SEC Network - ACC Network - ACC Network HD - FOX Sports 2 - FOX Sports 2 HD - FOX Soccer Plus - Next Level Sports HD - NESN - NESN HD - NBC Sports Boston Alternate - NBC Sports Boston Alternate HD - NBC Sports Boston - NBC Sports Boston HD - Yankee Ent. & Sports (YES) - YES (Alternate) - YES HD - YES HD (Alternate) - Madison Square Garden - Madison Square Garden HD - MSG/MSGSN Alternate 635-3 HD - MSG Sportsnet - MSG Alternate 635-1 - MSG/MSGSN Alternate 635-2 - MSG/MSGSN Alternate 635-3 - MSG Sportsnet HD - MSG Alternate HD 635-1 - MSG/MSGSN Alternate 635-2 HD - SportsNet New York - SportsNet New York HD - MASN - MASN HD - NBC Sports Washington - NBC Sports Washington (Alternate) - NBC Sports Washington HD - NBC Sports Washington HD (Alternate) - Bally Sports South Extra 2 - Bally Sports South - Bally Sports South Extra 4 - Bally Sports South Extra 5 - Bally Sports South Extra 2 HD - Bally Sports South HD - Bally Sports South Extra 4 HD - Bally Sports South Extra 5 HD - Bally Sports South Extra 3 - Bally Sports South Extra 3 HD - Bally Sports Southeast Extra 3 - Bally Sports Southeast Extra 3 HD - Bally Sports Southeast Extra 2 - Bally Sports Southeast Extra 2 HD - Bally Sports Southeast - Bally Sports Southeast Extra - Bally Sports Southeast HD - Bally Sports Southeast Extra HD - Bally Sports Sun Extra 2 - Bally Sports Sun Extra 2 HD - Bally Sports Sun - Bally Sports Sun Extra - Bally Sports Sun HD - Bally Sports Sun Extra HD - Bally Sports Florida - Bally Sports Florida Extra - Bally Sports Florida HD - Bally Sports Florida Extra 2 - Bally Sports Florida Extra 2 HD - Bally Sports Florida Extra HD - Bally Sports Florida Extra 3 - Bally Sports Florida Extra 3 HD - AT&T SportsNet Pittsburgh (Alternate) - AT&T SportsNet Pittsburgh HD (Alternate) - AT&T SportsNet Pittsburgh (Alternate 2) - AT&T SportsNet Pittsburgh HD (Alternate 2) - AT&T SportsNet Pittsburgh - AT&T SportsNet Pittsburgh HD - Bally Sports Ohio Extra - Bally Sports Ohio Extra HD - Bally Sports Ohio - Bally Sports Cincinnati Extra - Bally Sports Cincinnati Extra HD - Bally Sports Cincinnati - Bally Sports Great Lakes - Bally Sports Great Lakes HD - Bally Sports Detroit - Bally Sports Detroit Extra - Bally Sports Detroit HD - Bally Sports Detroit Extra HD - Bally Sports Detroit Extra 2 - Bally Sports Detroit Extra 2 HD - Marquee Sports Network - Marquee Sports Network HD - NBC Sports Chicago - NBC Sports Chicago Plus 2 - NBC Sports Chicago Plus 2 HD - NBC Sports Chicago HD - Bally Sports North Extra 2 - Bally Sports North Extra 2 HD - Bally Sports North - Bally Sports North HD - Bally Sports Wisconsin Extra - Bally Sports Wisconsin Extra HD - Bally Sports Wisconsin HD - Bally Sports Midwest Extra - Bally Sports Midwest Extra HD - Bally Sports Midwest Extra 2 - Bally Sports Midwest Extra 2 HD - Bally Sports Midwest Extra 3 - Bally Sports Midwest Extra 3 HD - Bally Sports Midwest - Bally Sports Kansas City - Bally Sports Midwest HD - Bally Sports Kansas City HD - AT&T SportsNet Southwest (Alternate) - AT&T SportsNet Southwest HD (Alternate) - AT&T SportsNet Southwest - AT&T SportsNet Southwest HD - Bally Sports Oklahoma HD - Bally Sports Southwest Extra 4 - Bally Sports Southwest Extra 4 HD - Bally Sports Southwest Extra 5 - Bally Sports Southwest Extra 5 HD - Bally Sports Southwest Extra 2 - Bally Sports Southwest Extra 2 HD - Bally Sports Southwest Extra 3 - Bally Sports Southwest Extra 3 HD - Bally Sports Southwest - Bally Sports Southwest HD - Longhorn Network HD - Altitude Sports - Altitude Sports HD - AT&T SportsNet Rocky Mountain - AT&T SportsNet Rocky Mountain HD - AT&T SportsNet Rocky Mountain West HD - AT&T SportsNet Rocky Mountain West - Bally Sports Arizona Extra - Bally Sports Arizona Extra HD - Bally Sports Arizona - Bally Sports Arizona HD - Bally Sports Arizona Extra 2 - Bally Sports Arizona Extra 2 HD - ROOT Sports Northwest Plus 2 - ROOT SPORTS Northwest - ROOT SPORTS Northwest Plus - ROOT Sports Northwest Plus 2 HD - ROOT SPORTS Northwest HD - ROOT SPORTS Northwest Plus HD - Spectrum SportsNet LA - Spectrum SportsNet LA HD - Spectrum SportsNet HD - Spectrum SportsNet - Spectrum SportsNet (Alternate) - Spectrum SportsNet HD (Alternate) - Bally Sports West - Bally Sports West HD - Bally Sports West Extra - Bally Sports West Extra HD - Bally Sports SoCal Extra - Bally Sports SoCal Extra HD - Bally Sports SoCal - Bally Sports SoCal HD - Bally Sports San Diego Extra - Bally Sports San Diego Extra HD - Bally Sports San Diego Extra 2 - Bally Sports San Diego Extra 2 HD - Bally Sports San Diego HD - Bally Sports San Diego - NBC Sports Bay Area - NBC Sports Bay Area HD - NBC Sports Bay Area Plus (Alternate 2) - NBC Sports Bay Area Plus HD (Alternate 2) - NBC Sports California (Alternate 2) - NBC Sports California - NBC Sports California HD - NBC Sports California HD (Alternate2) - NFL Sunday Ticket Game Mix 1 HD - NFL Sunday Ticket Game Mix 2 HD - NFL Red Zone 703 HD - NFL Fantasy Zone 704 HD - NFL Sunday Ticket 705 - NFL Sunday Ticket 705 HD - NFL Sunday Ticket 706 - NFL Sunday Ticket 706 HD - NFL Sunday Ticket 707 - NFL Sunday Ticket 707 HD - NFL Sunday Ticket 708 - NFL Sunday Ticket 708 HD - NFL Sunday Ticket 709 - NFL Sunday Ticket 709 HD - NFL Sunday Ticket 710 - NFL Sunday Ticket 710 HD - NFL Sunday Ticket 711 - NFL Sunday Ticket 711 HD - NFL Sunday Ticket 712 - NFL Sunday Ticket 712 HD - NFL Sunday Ticket 713 - NFL Sunday Ticket 713 HD - NFL Sunday Ticket 714 - NFL Sunday Ticket 714 HD - NFL Sunday Ticket 715 - NFL Sunday Ticket 715 HD - NFL Sunday Ticket 716 - NFL Sunday Ticket 716 HD - NFL Sunday Ticket 717 - NFL Sunday Ticket 717 HD - NFL Sunday Ticket 718 - NFL Sunday Ticket 718 HD - NBA League Pass 747 - NBA League Pass HD 747 - NBA League Pass 748 - NBA League Pass HD 748 - NBA League Pass 749 - NBA League Pass HD 749 - NBA League Pass 750 - Order 2022-23 NBA LEAGUE PASS NOW! - NBA LP Authorization Slide - NBA League Pass 750 HD - NBA League Pass 765 - NBA League Pass 765 HD - NBA League Pass 766 - NBA League Pass 766 HD - NBA League Pass 767 - NBA League Pass 767 HD - NBA League Pass 768 - NBA League Pass 768 HD - NHL Center Ice 769 - Order 2022-23 NHL CENTER ICE NOW! - You are all set to watch the 2022-23 season of NHL CENTER ICE - NHL Center Ice 769 HD - NHL Center Ice 771 - NHL Center Ice 771 HD - NHL Center Ice 773 - NHL Center Ice 773 HD - NHL Center Ice 774 - NHL Center Ice 774 HD - NHL Center Ice 775 - NHL Center Ice 775 HD - NHL Center Ice 776 - NHL Center Ice 776 HD - NHL Center Ice 777 - NHL Center Ice 777 HD - NHL Center Ice 778 - NHL Center Ice 778 HD - NHL Center Ice 779 - NHL Center Ice 779 HD - NHL Center Ice 780 - NHL Center Ice 780 HD - NHL Center Ice 781 - NHL Center Ice 781 HD - NHL Center Ice 782 - NHL Center Ice 782 HD - NHL Center Ice 783 - NHL Center Ice 783 HD - NHL Center Ice 784 - NHL Center Ice 784 HD - NHL Center Ice 785 - NHL Center Ice 785 HD - NHL Center Ice 786 - NHL Center Ice 786 HD - NHL Center Ice 787 - NHL Center Ice 787 HD - NHL Center Ice 788 - NHL Center Ice 789 - NHL Center Ice 790 - NHL Center Ice 791 - NHL Center Ice 792 - ESPN College Extra 793 HD - NHL Center Ice 793 - ESPN College Extra 794 HD - ESPN College Extra 795 HD - ESPN College Extra 796 HD - ESPN College Extra 797 HD - ESPN College Extra 798 HD - iHeartRADIO - Music Choice TV - Music Choice Big Band - Music Choice Malt Shop Favorites - Music Choice '60s Movement - Music Choice '70s - Music Choice 70's Ultra - Music Choice '80s - Music Choice '80s Ultra - Music Choice '90s - Music Choice Singers & Swing - Music Choice Classic Country - Music Choice Country Classic Ultra - Music Choice Country Hits - Music Choice Americana - Music Choice Honky Tonk - Music Choice Bluegrass - Music Choice Folk - Music Choice Today's Country - Music Choice Today's Country Ultra - Music Choice Sounds of the Seasons - Music Choice Hit List - Music Choice Y2K - Music Choice Max - Music Choice Love Songs - Music Choice Contemporary Instrumentals - Music Choice Pop Hits - Music Choice Movie Scores - Music Choice Broadway - Music Choice Lounge - Music Choice Hip-Hop And R&B - Music Choice Contemporary Christian - Music Choice Gospel - Music Choice Gospel Hallelujah - Music Choice '80s Rock - Music Choice Metal - Music Choice Indie - Music Choice Adult Alternative - Music Choice Classic Rock - Music Choice Classic Rock Ultra - Music Choice Alternative - Music Choice Hard Rock - Music Choice Coffee Shop Cuts - Music Choice Rock Hits - Music Choice Classic Alternative - Music Choice New Wave - Music Choice Pop & Country - Music Choice Rock - Music Choice R&B Classics - Music Choice R&B Soul - Music Choice Funk - Music Choice Classic Dance - Music Choice Rap - Music Choice Mainstream Rap - Music Choice Throwback Jamz - Music Choice Soft Rock - Music Choice Jazz Vocal Hits - Music Choice Smooth Jazz - Music Choice Jazz - Music Choice Easy Listening - Music Choice Blues - Music Choice Jazz Vocal Standards - Music Choice New Age - Music Choice Soundscapes - Music Choice Soundscapes Ultra - Music Choice Classic Christmas - Music Choice Dance/EDM - Music Choice Workout - Music Choice K-Pop - Music Choice Retro Workout - Music Choice Reggae - Music Choice Symphony - Music Choice Classical Masterpieces - Music Choice Light Classical - Music Choice Teen Beats - Music Choice Kids Only! - Music Choice Toddler Tunes - Music Choice Romances - Music Choice Pop Latino - Music Choice Tropicales - Music Choice Musica Urbana - Music Choice Mexicana - Music Choice Brazilian Pop - Music Choice Rock Latino - Music Choice Latin Jazz - Music Choice Party Favorites - Music Choice Taste of Italy - Music Choice Italian Favorites - Music Choice Irish Favorites - Music Choice Nature Sounds - Music Choice Filipino - Music Choice Vietnamese - US Open Mix Channel - US Open Network Simulcast - US Open Court Channel 1 - US Open Court Channel 2 - US Open Court Channel 3 - US Open Court Channel 4 - US Open Court Channel 5 - MediaSet Italia (99R) - Rai Italia - Rai News 24 - Rai World Premium - Radio Rai - SBTN (99R) - VGN TV - Tviet (99R) - Viet Face (99R) - S Channel - Vien Thao (99R) - Vietv (99R) - Film 24H - Honvietv - Little Saigon Radio Channel (99R) - TV Japan - Nippon TV HD - Channel NECO International - NHK World News 2049 - Phoenix TV (2050) - Phoenix Info News (99R) - CCTV4 - CGTN 2053 (99R) - Charming China 2055 - CTI TV (99R) - CBO (99R) - TFC - The Filipino Channel (99R) - GMA Pinoy TV - PBO - Cinema One Global - OPM TV - MOR 101.9 (99R) - DZMM (99R) - Myx - Sari Sari Channel - GMA Life (99R) - ANC (99R) - TV5 (99R) - SBS 2080 (99R) - SBS HD - MBC - KBS America HD - KBS America - YTN - SBS Plus (99R) - KBS Korea - EBS (99R) - MBN (99R) - Tan - CTS - RadioS - Arirang TV - GZTV - 88 TV - Phoenix Hong Kong - 88 Films - I Cable Finance - I Cable News - CTI Zhong Tian - CCTV-4 2113 - Phoenix TV (2115) - Charming China 2116 - CGTN 2119 - TV Globo (99R) - SporTV - RTVI + NBC Sports Boston + SEC Network + NHL Center Ice Mix + Nick Jr. HD + SBS HD + MLB Extra Innings HD 731 + Paramount+ with SHOWTIME EAST HD + Deal Zone + New York, NY WJLP METV 33 A3 HD + LMN + Phoenix Info News (99R) + VGN TV + 20/20 + HBO West + Scripps News + DEALS + MovieSphere + New York, NY WKOB-LD IND 42 A3 SD + SECRET TV (250) + MLB Extra Innings 730 + JBS + USA Network + Crime + Investigation HD + Aqui + FanDuel Sports Network South Extra 2 HD + Dateline 24/7 + STARZ Encore Suspense + Cinemax West HD + CBS Sports Network HD + VICE + Players TV + NBC Sports 1 + Lionsgate Collection + Surf Cinema + The Pet Collective + FanDuel Sports Network North Extra 2 HD + Chicago Sports Network HD + FOX Deportes (103A) + FanDuel Sports Network Midwest Extra + Altitude Sports (Alternate) + truTV HD + Univision telenovelas + MLB Extra Innings HD 741 + Paramount+ with SHOWTIME WEST + NBA League Pass 769 + TCT Network + College Mix 205-1 + NBC Sports California HD + Justice Central HD + Discovery en Espanol + Portlandia + NBC Sports California Plus + Investigation Discovery HD + MLB Extra Innings 729 + NFL RedZone HD + NBA League Pass 756 + LooLoo Kids + ESPN+ 4 + Drool + FanDuel Sports Network South Extra + Tennis Channel 2 + MLB Extra Innings HD 733 + STARZ East + Oxygen True Crime HD + STARZ East HD + Cinemax West + SALE Network + SportsNet Pittsburgh (Alternate 2) + Cold Case Files + Cartoon Network West + ESPN + NHL Center Ice 783 HD + NTN 24 (103A) + MLB Extra Innings HD 736 + Investigation Discovery + FanDuel Sports Network Detroit + ESPN Deportes HD + NBA League Pass 751 HD + Shop LC HD + MSG Sportsnet HD + COOL Network 78 + Chicago Sports Network Plus + POP HD + America's Funniest Home Videos + MLS on Apple TV 10 + The Walking Dead Universe + Space City Home Network Alternate + ESPN+ 1 + The Weather Channel + MLS on Apple TV 13 + MLB Colorado Rockies SD + Interactive Advertising Channel HD (98) + FanDuel Sports Network Southwest Extra 4 HD + Lionsgate Collection (561) + FanDuel Sports Network Cincinnati Extra HD + FM HD + INSP HD + NRB + SEC Network HD + Earth Touch + TNT HD + NBA League Pass 760 + SALE Network. + ESPN+ 6 + MagellanTV Wildest + Lionsgate Collection + FanDuel Sports Network Southeast HD + PokerGo + AT HOME with family handyman + STARZ Encore West + FOX Weather + Bravo + MLB Extra Innings 731 + NHL Center Ice 777 + Tan + Universo (103A) + BET West HD + ACC Network HD + AMC + Comedy Central + NHL Center Ice 781 + Recipe TV + Rai News 24 + BYUtv + NHL Center Ice 778 + Ebony TV + Freeform + Discovery HD + QVC HD (317) + NBA League Pass 759 HD + MLB San Diego Padres HD + MTV2 + Marquee Sports Network HD. + MBN (99R) + CW Plus + FanDuel Sports Network Southeast Extra HD + HBO East + HBO HD East + NBA League Pass 765 + ESPN2 + FanDuel Sports Network Florida Extra 3 + New York, NY WLIW PBS 21 SD + NHL Center Ice 787 HD + Fail Army + NHL Center Ice 779 HD + Discovery Familia (103A) + BEST Channel 268 + MLB San Diego Padres SD + Love After Lockup + Science + NHL Center Ice 774 HD + Curiosity Now + Daystar Espanol + HBO Drama HD + MBC + FanDuel Sports Network Florida Extra HD + FanDuel Sports Network Ohio + NHL Center Ice 773 HD + MLB Extra Innings 723 + NBA TV + NBA League Pass 763 HD + NHL Center Ice 770 HD + FanDuel Sports Network Ohio Extra + NESN+ HD (Alternate) + NBA League Pass 761 + TFC - The Filipino Channel (99R) + New York, NY WNET PBS 13 SD + HBO Hits West + MTV2 HD + Chicago Sports Network + FanDuel Sports Network Detroit HD + Cinemáx HD + Million Dollar Listing Vault + Free Speech TV + Comedy Central West HD + Dog Whisperer + NBA League Pass 752 + FanDuel Sports Network Oklahoma + FanDuel Sports Network Midwest Extra 2 + TCM HD + History & Warfare + MTV HD + CSPAN + Comedy TV HD + FanDuel Sports Network Southwest Extra 2 HD + NBA League Pass 748 HD + I Cable Finance + FanDuel Sports Network Florida Extra 2 HD + FYI HD + Showtime FamilyZone HD + TBS + MEGA TV (103A) + HBO West HD + Waypoint TV + NHL Center Ice 788 HD + MLB Extra Innings 727 + Radio Rai + MSG/MSGSN Alternate 635-3 + STARZ Encore Action + NBA League Pass 753 + SECRET TV + Red Bull TV + FanDuel Sports Network Ohio + MALL + HITN (103A) + STARZ in Black + Animal Planet + Rai Italia + SportsNet Pittsburgh Alternate + NHL Center Ice 782 HD + Crime Scenes + Altitude Sports HD + TyC Sports + NBA League Pass 764 HD + NBC Sports California (Alternate 2) + TC Internacional + Great American Family HD + SYFY + LMN HD + A3 New York 05 WNYW Fox + MLB Extra Innings HD 726 + SportsNet Pittsburgh+ HD (Alternate) + NHL Center Ice 786 HD + NHL Center Ice 770 + NHL Center Ice 791 HD + ESPNews + Cinemax + CNNi + Tastemade Travel + i24 News + Are We There Yet + NHL Center Ice 774 + Pursuit Channel + Viet Face (99R) + MLB Extra Innings 736 + KTTV (Los Angeles) FOX West + Flix + FanDuel Sports Network Kansas City HD + TV One HD + Spectrum SportsNet HD + NFL Network + HLN HD + FanDuel Sports Network Indiana HD + Spectrum SportsNet + FanDuel Sports Network Oklahoma HD + History HD + Estrella News + Food Network + Disney Channel HD + FanDuel Sports Network Detroit Extra HD + New York, NY WRNN IND 62 A3 HD + SHOxBET + Cowboy Channel + Declassified + ACC Digital Network + Today All Day + WNBA on ION 3 + MGM+ + Revolt HD + Movie Favorites by Lifetime + HBO Latino + BTN HD + NBA League Pass HD Mix + Nick Jr. + MLB Extra Innings 737 + Nat Geo WILD + MSG ALT-2 + Phoenix TV (2050) + WNBC (New York) NBC East + HBO Movies HD + ShortsTV HD + New York, NY WPIX CW 11 A3 HD + MLB Extra Innings HD 740 + MLB Extra Innings HD 725 + Bloomberg TV HD + Cooking Channel HD + Vme + A3 New York 07 WABC ABC + Oxygen True Crime Archives + New York, NY WFUT UMas 68 SD + True CRMZ + FanDuel Sports Network Southwest Extra 5 HD + Fox Sports + MLB Extra Innings 741 + INSP + New York, NY WEDW PBS 49 A3 HD + Game Show Network HD + FanDuel Sports Network Southeast Extra + NBA League Pass 769 HD + NBC Sports California + CUT + Logo + NHL Center Ice 793 HD + The Movie Channel Xtra HD + Confess by Nosey + New York, NY WNJN PBS 50 A3 HD + STARZ West + BEST Channel 98-7 + New York, NY WZME IND 43 SD + Nickelodeon East HD + SportsNet Pittsburgh HD + ESPN+ 2 + NBC Sports Boston HD + RTVI + Love Nature + FanDuel Sports Network SoCal + MLB Strike Zone HD + Tribeca Festival+ + News Mix + America's Got Talent + NBA League Pass 746 + MLB Colorado Rockies HD + FanDuel Sports Network Sun Extra HD + Antena 3 + Jamie Oliver + NHL Center Ice 783 + TV Chile (103A) + MLB Extra Innings 735 + SportsGrid + FanDuel TV HD + MLB Extra Innings 724 + TV Globo + News Mix 71 + CGTN 2119 + Discovery Turbo HD + Freeform HD + RFD HD TV + FanDuel Sports Network North + Dance Moms by Lifetime + Sportsman Channel + Alien Nation by DUST + TLC + BBC News + IDEA Channel 270 + MLB Extra Innings 722 + MTV Live HD + CRAVE + Nicktoons + NBA League Pass 766 + AMC+ HD + College Mix 600-1 + STARZ Encore Action HD + Willow 2 + FanDuel Sports Network Southwest Extra HD + YES HD (Alternate) + INWONDER + Save 222 (Infomercial) + FOX Deportes HD + Duck Dynasty + Cinemax Hits HD + Tiny House Nation + PBS Kids + FanDuel Sports Network Indiana + History + MLB Strike Zone + National Geographic + Sari Sari Channel + Jewish Life TV + Altitude Sports + FanDuel Sports Network Midwest HD + FanDuel Sports Network Florida + MLB Extra Innings HD 728 + Joel Osteen + HBO Hits HD East + Yankees Entertainment & Sports Network + CINE4K 107 + FanDuel Sports Network Detroit + The Weather Channel HD + Charming China 2055 + I (Almost) Got Away With It + New York, NY WKOB-LD IND 42 SD + ReelzChannel + NHL Center Ice 780 + A&E HD + Love Kills + I Cable News + Shepherd's Chapel + True Crime Now + Somos Novelas + Nickelodeon West + XTRA (99) + NHL Center Ice 773 + TUDN + NHL Center Ice 771 HD + MLS on Apple TV 03 + NHL Center Ice 778 HD + FanDuel Sports Network Southwest Extra + FanDuel Sports Network Southwest Extra 3 + Cine Mexicano + FanDuel Sports Network Wisconsin + Living Faith Network + NBC Sports 3 + FanDuel Sports Network Southwest HD + NHL Center Ice 771 + Bizarre Foods with Andrew Zimmern + Tr3S (103A) + NHL Center Ice 790 HD + FanDuel Sports Network South Extra 4 + Yu-Gi-Oh! + KBS America HD + MovieSphere Gold + MeatEater + ESPNU HD + NBC Sports California (Alternate) + The First + Telemundo East + MLB Extra Innings HD 724 + ANC (99R) + MS Now + Fox Business Network + NBA League Pass 745 HD + NHL Center Ice 772 HD + Travel Channel HD + BET HD + Willow Sports + Rai World Premium + MTV + Texas Rangers + PBSNET + STARZ Encore + WNBA on ION 1 + Cooking Channel + TUDN HD + Univision East HD + SHOxBET HD + Science HD + CNBC + Fuse HD + NBA League Pass 764 + Little Saigon Radio Channel (99R) + KTLA CW West + STARZ Edge + FanDuel Sports Network Southwest Extra 5 + FOROtv + FanDuel Sports Network Florida + Lifetime + VICTORY + MLS on Apple TV 15 + BET + Nosey + HSN2 + ION Television East HD + NBA League Pass 751 + Galavision + Dove TV + Golf Channel + Court TV + EBS (99R) + USA Network HD + NEW TV (319) + SHOWTIME 2 HD + truTV + HBO Hits East + Sports Illustrated + De Pelicula (103A) + MLB Extra Innings 732 + New York, NY WNET PBS 13 A3 HD + America's Value Channel (98-4) + Hogar de HGTV + Texas Rangers HD + XPLOR + Scientology Network + QVC HD + FanDuel Sports Network South Extra 3 HD + Interactive Advertising Channel HD 111 + Videorola + FanDuel Sports Network SoCal + New York, NY WPXN ION 31 A3 HD + Seasonal Sports Offer Channel + Discovery Family Channel HD + QVC (70) + NHL Center Ice 780 HD + Anger Management + FOX Sports 1 + Showtime Showcase HD + Rig TV + MSG Alternate 635-1 + World Harvest Television + MSG ALT-1 + Space City Home Network + NBA League Pass 766 HD + KNBC (Los Angeles) NBC West + CNN HD + Pop TV + NBA FAST Channel + Car Chase Channel + OWN West + New York, NY WNYE ETV 25 SD + S Channel + SPORTS MIX HD (600) + MLB Extra Innings 742 + Cinemax East HD + So Yummy + MSG/MSGSN Alternate 635-2 HD + How To + Destination America + Big Ten Network Overflow 4 + New York, NY WZME IND 43 A3 HD + Caracol TV + Starz Encore en Espanol (103A) + WNYW (New York) FOX East + GoTraveler + FanDuel Sports Network Midwest + HBO Comedy HD + GMA Life (99R) + MLB Arizona Diamondbacks HD + NBA League Pass 747 HD + NBC Sports Bay Area Plus HD Alternate + NHL Center Ice 779 + TeleCentro + SBS 2080 (99R) + Space City Home Network Alternate + FOX News Channel + Travel Channel + MGM+ MARQUEE + Women's Sports Network + RVTV + VALU (91) + VISION TV Channel 89 + NBA League Pass 755 + MLS on Apple TV 11 + NHL Center Ice 775 HD + ESPN Deportes (103A) + UPTV + Buzzr + FanDuel Sports Network West + QVC2 (79) + Family Entertainment Television + NBA League Pass 762 HD + NBA League Pass 768 + The Masked Singer + FanDuel Sports Network South + Enlace + Magnolia Network + New York, NY WMBC IND 63 A3 HD + SNL Vault + ESPN8: The Ocho + E! + New York, NY WJLP METV 33 SD + E! Keeping Up + ESNE PIO + XTRA Network + Chicago Sports Network Plus 2 HD + WE tv + Animal Planet HD + Monumental Sports Network + NHL Center Ice 787 + NHL Center Ice 786 + MSG Sportsnet + IMPACT TV + HBO Drama + Vien Thao (99R) + Modern Marvels + Sony Movies + Nickelodeon East + NHL Center Ice 775 + Pasiones + FanDuel Sports Network Southwest Extra 3 HD + Chicago Sports Network Plus HD + NBC Sports Bay Area Plus (Alternate 2) + Comedy Central HD + FanDuel Sports Network North Extra HD + Discovery Life + Nuestra Tele + NewsNation HD + NHL Kraken HD + NESN PLUS + Daystar HD + Let's Make a Deal + Heroes & Icons + NBA League Pass 748 + The Price is Right: Drew Carey + Always Funny + Pureflix TV + MLB Extra Innings HD 742 + NHL Network Alternate + Ecuavisa Internacional (103A) + NHL Network + Horror by Alter + MLB Extra Innings HD 727 + Sweet Escapes + ESPN+ 7 + FYI + New York, NY WMBC IND 63 SD + NBA TV HD + NHL Center Ice 788 + NBC News Now + ZooMoo + Ax Men + In Touch + + GolfPass + New York, NY WNJU TMO 47 SD + WNYW (New York) FOX HD East + IDEA Channel + Big Ten Network Overflow 3 + Hola TV + Golf Channel HD + FanDuel Sports Network South Extra 3 + New York, NY WLNY IND 55 A3 HD + Magnolia Network HD + AXS TV HD + Get IT Infomercial (98-5) + God TV + MLB Extra Innings HD 734 + KTTV (Los Angeles) FOX HD West + FOX Soul + New York WNYW 5 Fox + LifeS + STARZ Cinema HD + FanDuel Sports Network Cincinnati Extra + MLB Cleveland Guardians + MASN HD + BounceTV + Bravo HD + Centroamerica TV (103A) + TBS HD + Nat Geo Wild HD + DZMM (99R) + NHL Center Ice 793 + NBA League Pass 754 HD + NBC Sports 2 + Honvietv + ASPIRE (HD) + Spectrum SportsNet LA HD + NHL Center Ice 791 + Discovery Family Channel + MLB Extra Innings 728 + TBS West HD + SBS Plus (99R) + CINE4K PPV + A3 New York 02 WCBS CBS + WINS + Cosmic Frontiers + STARZ Edge HD + MEGA TV HD + Cinema One Global + Discovery + Total Crime + XPLOR (262-1) + NBA League Pass 763 + WNBA on ION 2 + Altitude Sports Alternate + MLB Extra Innings 744 + The Movie Channel East HD + Showtime Next HD + MLB Extra Innings 721 + COOL Network 203 + Destination America HD + Military Heroes + TV5 (99R) + MS Now HD + The Movie Channel West + NBC Sports Bay Area Plus (Alternate) + MLB Extra Innings HD 744 + NHL Center Ice 790 + Atreseries + NHK World News + MLB Extra Innings HD 732 + Paramount Network HD + NBA League Pass 755 HD + SUR Peru (103A) + Mythbusters + NHK World News 2049 + KBS America + FanDuel Sports Network Wisconsin Extra + MLS on Apple TV 14 + NHL Center Ice 777 HD + Film 24H + STARZ Encore Classic + VePlus + NHL Kraken + SportsNet New York + Myx + NHL Center Ice 781 HD + Mysterious Worlds + Tastemade Home + NHL Center Ice 776 HD + OPM TV + MediaSet Italia (99R) + Crime 360 + MLB Extra Innings 733 + Galavision HD + FanDuel Sports Network South Extra 2 + NHL Network HD + MLB Extra Innings HD 722 + KCBS (Los Angeles) CBS West + FanDuel Sports Network South + WIRED2fish TV + Cartoon Network + FanDuel Sports Network Florida Extra + MLS on Apple TV 05 + MLS on Apple TV 02 + Pursuit UP + Go4IT + FanDuel Sports Network North Extra 2 + Disney Junior + MLS on Apple TV 04 + Univision East + MeTV + Cinelatino + FanDuel Sports Network Southwest + NBC Sports California Plus 2 + Ovation HD + Mid Atlantic Sports Network Alt. + MLB Extra Innings HD 738 + FanDuel Sports Network Detroit Extra 2 + MSG ALT-3 + Space City Home Network HD + FanDuel Sports Network SoCal Extra HD + Cheddar News + FanDuel Sports Network SoCal HD + NBA League Pass 753 HD + WNBC (New York) NBC HD East + IFC HD + Christian Television Net + VH1 HD + Jewelry Television (72) + El Rey Rebel + GEB America + RACER Network + FanDuel Sports Network Midwest + VICE HD + Monumental Sports Network HD + CRAVE (92) + NHL Center Ice 772 + OWN + NBC Sports Boston Alternate + STARZ Encore HD + CCTV-4 2113 + FanDuel Sports Network Ohio Extra HD + Arirang TV + Paramount+ with SHOWTIME EAST + History en Espanol + MGM+ HITS + IFC + FanDuel Sports Network South Extra 5 HD + Outdoor Channel + NHL Center Ice 792 HD + Charming China 2116 + NBA League Pass 757 HD + American Heroes Channel + iHeartRADIO + Chicago Sports Network Plus + Yankee Ent. & Sports (YES) + CGTN 2053 (99R) + New York, NY WXTV UNI 41 SD + CNN en Espanol (103A) + NBA Mavs + ReelzChannel HD + Cinemax Hits + BET Her + New York, NY WNYE ETV 25 A3 HD + NHL Center Ice 785 HD + EarthX + MLS on Apple TV 06 + TV Land HD + SundanceTV + WOW TV 98-1 + FanDuel Sports Network South HD + FanDuel Sports Network Southwest Extra 2 + Home Shopping Network HD + Paramount+ with SHOWTIME WEST HD + NBA League Pass 746 HD + NBC Sports Boston Alternate HD + STARZ Kids & Family HD + MLB Extra Innings 740 + FanDuel Sports Network Kansas City + AccuWeather HD + NBA Blazers HD + Beach Day + Vietv (99R) + Showtime Extreme HD + NBA League Pass 761 HD + NESN HD + Sony Cine + CTI TV (99R) + FanDuel Sports Network Florida HD + De Pelicula Clasico (103A) + NBA League Pass 759 + MLB Extra Innings HD 735 + STARZ West HD + New York, NY WRNN IND 62 SD + Spectrum SportsNet Alternate + All Reality WeTV + WCBS (New York) CBS East + Multimedios + Three Stooges + Supermarket Sweep + The MLB Channel + Monumental Sports Network HD (Alternate) + The Movie Channel East + Altitude Sports HD (Alternate) + NHL Network Alternate HD + MLB Extra Innings HD 730 + FanDuel Sports Network Cincinnati + FanDuel Sports Network Sun HD + Canal 22 Internacional + New York, NY WWOR MNT 9 SD + Madison Square Garden HD + ABC Localish + NewsNation + FanDuel Sports Network Cincinnati HD + A3 New York 04 WNBC NBC + PBO + ESPN+ 3 + TCM + FX HD + Hallmark + Get It Infomercial + All Women's Sports + MLB Extra Innings 734 + FanDuel Sports Network Southeast Extra 2 + NBC Sports Bay Area HD + WOW TV 234 + Ovation + TNA + KCBS (Los Angeles) CBS HD West + New York, NY WLNY IND 55 SD + UniMas SD West (103A) + Bandamax (103A) + Ice Road Truckers + NHL Center Ice 785 + GMA Pinoy TV + Disney XD HD + Smithsonian Channel HD + Mid Atlantic Sports Net. HD Alt. + Showtime Extreme + NBC Sports Now + NFL Network HD + VALU + The Price is Right: The Barker Era + QVC2 (76) + SportsNet Pittsburgh + MOR 101.9 (99R) + QVC HD (70) + Univision West (103A) + FanDuel Sports Network Midwest Extra HD + MLB Minnesota Twins HD + NBA League Pass 752 HD + Universo HD + Phoenix TV (2115) + INSP Western Bound + NESN + E! HD + FanDuel Sports Network Southeast + Home Shopping Network + SportsNet New York HD + FanDuel Sports Network Southeast + Food Network HD + NBC Sports California HD (Alternate) + HGTV HD + SEEK + Disney Junior HD + Cartoon Network HD + AMC HD + NHL Center Ice 789 HD + KBS Korea + Telemundo West (103A) + ABC News Live + RadioS + TV Land + CBS Sports Network + NHL Center Ice 789 + HDNET MOVIES + SHOWTIME 2 + NBA League Pass 745 + NBA League Pass 767 + Blossom + New York, NY WNJN PBS 50 SD + NEW TV (77) + FanDuel Sports Network Southwest Extra 4 + MLB Extra Innings 726 + New York, NY WFUT UMas 68 A3 HD + American Heroes HD + Big 12 + Next Level Sports HD + Cine Estelar + MLB Extra Innings HD 721 + Madison Square Garden + TLC HD + beIN SPORTS XTRA + FanDuel Sports Network West HD + Bob Ross Channel + Cinemax Action HD + Danger TV + FOX Sports 2 + MLB Minnesota Twins + HerSphere + NHL Center Ice 784 HD + FanDuel Sports Network Florida Extra 2 + CMT HD + WCBS (New York) CBS HD East + CNBC HD + Cinemax Classics HD + STARZ Comedy HD + MSG/MSGSN Alternate 635-3 HD + SportsNet Pittsburgh (Alternate) + MLB Network HD + Willow HD + EWTN + FanDuel Sports Network South Extra 4 HD + STARZ Encore Westerns + Hallmark Mystery + Big Ten Network Overflow 2 + FanDuel Sports Network Detroit Extra + MLB Extra Innings 738 + CTS + WABC (New York) ABC East + Disney XD + YES Network + theGrio + Comedy Dynamics + FanDuel Sports Network Southeast Extra 3 HD + Real Housewives Vault + FOX Sports 2 HD + COZI TV + MeTV Toons + ESPNews HD + Hope Channel + FanDuel Sports Network West Extra HD + FanDuel Sports Network North + NBA League Pass 758 HD + FanDuel Sports Network Southeast Extra 2 HD + HBO Hits West HD + INFO Temp 7 + MLB Network + Tastemade + NBA League Pass 760 HD + TNT + MLS on Apple TV 12 + MSG/MSGSN Alternate 635-2 + Hallmark Channel HD + Living With Evil + National Geographic HD + CNBC World + NBA Mavs HD + FanDuel Sports Network Florida Extra 3 HD + FanDuel Sports Network Sun Extra 2 HD + VH1 + YTN + DAZN Ringside + FanDuel Sports Network Wisconsin + Hallmark Family + A&E + NHL Center Ice 776 + FanDuel Sports Network Sun Extra 2 + MLB Extra Innings HD 739 + New York, NY WWOR MNT 9 A3 HD + QVC3 + FanDuel Sports Network Midwest Extra 2 HD + MLS on Apple TV 08 + UnXplained Zone + Atres Cine + Stories by AMC + Space City Home Network HD Alternate + Tennis Channel + Monumental Sports Network (Alternate) + The WORD Network + Fuel TV + NBC Sports Bay Area Plus HD (Alternate 2) + Ryz Sports + DraftKings + QVC2 + Lifetime HD + Nippon TV HD + ESPN HD + New York, NY WLIW PBS 21 A3 HD + America's Test Kitchen + Documentary+ + Trinity Broadcast Network HD + Disney Channel (East) + WAPA America (103A) + Spectrum SportsNet HD (Alternate) + Great American Romcoms + DIRECTV 4K Live 2 + Fox Business Network HD + FanDuel Sports Network Southeast + ACC Network + Racing America + New York WNBC 4 NBC + EWTN Espanol + KABC (Los Angeles) ABC West + Stadium Stream + FOX Soccer Plus HD + ESPNU + Tennis Channel HD + WE tv HD + FXX HD + FX + Monumental Sports Network Alternate + The Jim Rome Show + Celebrity Shopping TV + YES HD + NBC Sports Bay Area + Pickleball TV + Start TV + TeenNick + MTV Classic + MLB Extra Innings HD 737 + FanDuel Sports Network Ohio HD + DIRECTV 4K Live + Family Movie Classics + FX Movie Channel HD + Game Show Network + GZTV + MLS on Apple TV 09 + CTI Zhong Tian + HLN + STARZ in Black HD + Speedvision + NBA League Pass 768 HD + Cleo TV + NBC Sports California HD (Alternate2) + Positiv + UniMas West HD + YES (Alternate) + FanDuel Sports Network Sun + FanDuel Sports Network West + FX Movie + BabyFirst + Cine Nostalgia + CMT + Spectrum SportsNet LA + America's Value Channel + BTN + Son Life Broadcasting HD + Newsmax TV HD + MLB Extra Innings HD 723 + Marquee Sports Network + NHL Center Ice 792 + FOX Soccer Plus + SportsNet Pittsburgh HD (Alternate 2) + NBA League Pass 765 HD + New York, NY WXTV UNI 41 A3 HD + CBO (99R) + Bravo Vault + MLB Extra Innings HD 743 + Tribeca Festival+ + 88 Films + BBC America + Billiard TV + NBA Blazers + SPORTS MIX HD (205) + Torque by History + Seasonal Sport Offer Channel + New York WABC 7 ABC + NHL Center Ice 784 + BabyTV + New York, NY WPXN ION 31 SD + ESPN+ 5 + NBA League Pass 762 + FOX News Channel HD + Jewelry Television + GEM Shopping Network + NBA League Pass 767 HD + Disney Channel (West) + Bloomberg TV + MTV West HD + TVE (103A) + New York WCBS 2 CBS + New York, NY WPIX CW 11 SD + New York, NY WNJU TMO 47 A3 HD + GRIT + Fight Network + Gusto TV + FanDuel Sports Network South Extra HD + NBC Sports Bay Area Plus HD (Alternate) + Say Yes To The Dress + SEEK (97) + MLB Extra Innings 725 + WABC (New York) ABC HD East + STARZ Encore Black + MSG Alternate HD 635-1 + Oxygen True Crime + CNN + FXX + Marquee Sports Network. + Acorn TV Mysteries + FanDuel Sports Network North HD + NHL Tampa Bay Lightning + MLB Extra Innings 739 + Boomerang + HBO Latino HD + NESN+ (Alternate) + Nat Geo Mundo + SBTN + PowerNation + CCTV4 + FanDuel Sports Network Wisconsin Extra HD + Yahoo Finance + QVC Channel 317 + FanDuel Sports Network SoCal Extra + MLB Cleveland Guardians HD + QVC + The Design Network + KABC (Los Angeles) ABC HD West + MASN + Yes Network HD + Paramount Network + Estrella TV + Newsmax TV + Shop LC HD 75 + Outdoor Channel HD + FanDuel Sports Network Midwest Extra 3 + NHL Center Ice 782 + FOX Sports 1 HD + Great American Family + Commercial Special Events 574 + FanDuel Sports Network North Extra + Cinema Dinamita + Celebrity Shopping TV 95 + Telefe + BBC America HD + INFAST + Nuestra Vision + VISION TV Channel 262 + SYFYHD + TBN Inspire + Family Feud (Steve Harvey) + Home Shopping Network 70-1 (HD) + FanDuel Sports Network Sun + FanDuel Sports Network Detroit Extra 2 HD + FanDuel Sports Network Sun Extra + STARZ Encore Family + NBA League Pass 747 + KNBC (Los Angeles) NBC HD West + SundanceTV HD + 88 TV + Swerve Combat + HGTV + OWN HD + GREAT + MLS on Apple TV 07 + ESPN2 HD + MLB Extra Innings HD 729 + FanDuel Sports Network West Extra + FanDuel Sports Network Wisconsin HD + MLS on Apple TV 01 + FanDuel Sports Network Southeast Extra 3 + NHL Tampa Bay Lightning SD + NBA League Pass 756 HD + TNT West HD + Ghosts are Real + Tviet (99R) + MLB Extra Innings 743 + 50 Cent Action Channel + Dog TV + Home Shopping Network 70-1 + MASN2 + Willow 2 + Canal Once + CSPAN 2 + FanDuel Sports Network South Extra 5 + Spectrum SportsNet (Alternate) + Save + Meganoticias diff --git a/sites/directv.com/directv.com.config.js b/sites/directv.com/directv.com.config.js index 5d8c924e3..9bfd9ded4 100644 --- a/sites/directv.com/directv.com.config.js +++ b/sites/directv.com/directv.com.config.js @@ -1,41 +1,84 @@ -const cheerio = require('cheerio') const axios = require('axios') const dayjs = require('dayjs') const utc = require('dayjs/plugin/utc') dayjs.extend(utc) +let token = null +async function fetchToken() { + if (token) return token + try { + token = await axios + .post('https://api.cld.dtvce.com/authn-tokengo/v3/v2/tokens?client_id=DTVE_DFW_WEB_Chrome_G', null, { + headers: { + 'User-Agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', + 'cache-control': 'no-cache', + 'origin': 'https://www.directv.com', + 'pragma': 'no-cache', + 'priority': 'u=1, i', + 'referer': 'https://www.directv.com/', + 'sec-ch-ua': '"Chromium";v="146", "Not-A.Brand";v="24", "Brave";v="146"', + 'sec-ch-ua-mobile': '?0', + 'sec-ch-ua-platform': '"Windows"', + 'sec-fetch-dest': 'empty', + 'sec-fetch-mode': 'cors', + 'sec-fetch-site': 'cross-site', + 'sec-gpc': '1' + } + }) + .then(r => r.data) + .then(d => d.access_token) + return token + } catch (error) { + console.error('Error fetching token (potential geo-block or API issue):', error) + return null + } +} + module.exports = { site: 'directv.com', days: 2, request: { - cache: { - ttl: 60 * 60 * 1000 // 1 hour - }, - headers: { - 'Accept-Language': 'en-US,en;q=0.5', - Connection: 'keep-alive' + cache: { + ttl: 60 * 60 * 1000 // 1 hour + }, + async headers() { + await fetchToken() + return { + 'User-Agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36', + Authorization: `Bearer ${token}`, + 'cache-control': 'no-cache', + 'origin': 'https://www.directv.com', + 'pragma': 'no-cache', + 'priority': 'u=1, i', + 'referer': 'https://www.directv.com/', + 'sec-ch-ua': '"Chromium";v="146", "Not-A.Brand";v="24", "Brave";v="146"', + 'sec-ch-ua-mobile': '?0', + 'sec-ch-ua-platform': '"Windows"', + 'sec-fetch-dest': 'empty', + 'sec-fetch-mode': 'cors', + 'sec-fetch-site': 'cross-site', + 'sec-gpc': '1' + } } }, url({ date, channel }) { - const [channelId, childId] = channel.site_id.split('#') - return `https://www.directv.com/json/channelschedule?channels=${channelId}&startTime=${date.format()}&hours=24&chId=${childId}` + return `https://api.cld.dtvce.com/discovery/edge/schedule/v1/service/schedule?startTime=${date.valueOf()}&endTime=${date.add(24, 'hour').valueOf()}&channelIds=${channel.site_id}&include4K=false&is4Kcompatible=false&includeTVOD=true` }, async parser({ content, channel }) { const programs = [] const items = parseItems(content, channel) for (let item of items) { if (item.programID === '-1') continue - const detail = await loadProgramDetail(item.programID) const start = parseStart(item) - const stop = start.add(item.duration, 'm') + const stop = parseStop(item) programs.push({ title: item.title, sub_title: item.episodeTitle, - description: parseDescription(detail), + description: parseDescription(item), rating: parseRating(item), - date: parseYear(detail), - category: item.subcategoryList, + date: parseFullReleaseDate(item) ?? parseYear(item), + category: parseCategory(item), season: item.seasonNumber, episode: item.episodeNumber, image: parseImage(item), @@ -47,72 +90,81 @@ module.exports = { return programs }, async channels() { - const codes = [10001] + // alternate https://www.directv.com/dtvassets/dtv/dev/uf/CHLUP/chnlListingPageData.json + // though i don't think you could fetch the schedule from the API with this let channels = [] - for (let code of codes) { - const html = await axios - .get('https://www.directv.com/guide', { - headers: { - cookie: `dtve-prospect-zip=${code}` - } - }) - .then(r => r.data) - .catch(console.log) - - const $ = cheerio.load(html) - const script = $('#dtvClientData').html() - const [, json] = script.match(/var dtvClientData = (.*);/) || [null, null] - const data = JSON.parse(json) - - data.guideData.channels.forEach(item => { - channels.push({ - lang: 'en', - site_id: item.chNum, - name: item.chName - }) + const html = await axios + .get('https://api.cld.dtvce.com/discovery/metadata/channel/v5/service/allchannels?sort=OrdCh%253DASC', { + headers: { + Authorization: `Bearer ${await fetchToken()}`, + 'Accept-Language': 'en-US,en;q=0.5', + Connection: 'keep-alive' + } }) - } + .then(r => r.data) + .catch(console.log) + + const data = html?.channelInfoList + + if (data && Array.isArray(data)) { + data.forEach(item => { + channels.push({ + lang: 'en', + site_id: item.resourceId, + name: item.channelName, + icon: item.imageList && item.imageList.length > 0 ? item.imageList[0].imageUrl : null + }) + }) + } return channels } } -function parseDescription(detail) { - return detail ? detail.description : null +function parseDescription(item) { + return item ? item.description : null } -function parseYear(detail) { - return detail ? detail.releaseYear : null +function parseCategory(item) { + return item && item.genres ? item.genres : null +} +// DirecTV are the only ones to put the episode/movie's full release date. Kudos to them. +function parseFullReleaseDate(item) { + return item ? item.originalAirDate : null +} +function parseYear(item) { + return item ? item.releaseYear : null } function parseRating(item) { - return item.rating + return item.parentalRating ? { system: 'MPA', - value: item.rating + value: item.parentalRating } : null } function parseImage(item) { - return item.primaryImageUrl ? `https://www.directv.com${item.primaryImageUrl}` : null -} -function loadProgramDetail(programID) { - return axios - .get(`https://www.directv.com/json/program/flip/${programID}`) - .then(r => r.data) - .then(d => d.programDetail) - .catch(console.err) + return item.images?.length > 0 ? item.images[0].defaultImageUrl : null } function parseStart(item) { - return dayjs.utc(item.airTime) + return dayjs.utc(item.consumables?.[0]?.startTime) +} + +function parseStop(item) { + return dayjs.utc(item.consumables?.[0]?.endTime) } function parseItems(content, channel) { - const data = JSON.parse(content) - if (!data) return [] - if (!Array.isArray(data.schedule)) return [] + try { + const data = JSON.parse(content) + if (!data) return [] + if (!Array.isArray(data.schedules)) return [] - const [, childId] = channel.site_id.split('#') - const channelData = data.schedule.find(i => i.chId == childId) - return channelData.schedules && Array.isArray(channelData.schedules) ? channelData.schedules : [] + const channelData = data.schedules.find(i => i.channelId === channel.site_id) + return channelData?.contents && Array.isArray(channelData.contents) ? channelData.contents : [] + } catch (error) { + console.error('Error parsing content:', error) + return [] + } } diff --git a/sites/directv.com/directv.com.test.js b/sites/directv.com/directv.com.test.js index a4abfa0ca..5b9f179a0 100644 --- a/sites/directv.com/directv.com.test.js +++ b/sites/directv.com/directv.com.test.js @@ -10,36 +10,29 @@ dayjs.extend(utc) jest.mock('axios') -const date = dayjs.utc('2023-01-15', 'YYYY-MM-DD').startOf('d') +// Mock token fetching +axios.post.mockImplementation((url) => { + if (url === 'https://api.cld.dtvce.com/authn-tokengo/v3/v2/tokens?client_id=DTVE_DFW_WEB_Chrome_G') { + return Promise.resolve({ data: '/S2dAVfUtUdnt6adfOBn+QrLZ2GymKSfxIGgfI/tRrOCf22bhs7aLmwmeKTUp0br3aHU2M/Rtv5Y43Kl9unTtNau8w48K3dNjVVH2gyrgvGvUxfVa8rXXuv9RBesXSric6ltlS4yDIjRtuOpmiU5Imt8O1zHWjA9K3/8M84oRQywb0HpE4tkTT3RBG5Cmz+wX5If6Hbb3ndFacEhUjpvCI0mAqPlI2r7x7/73quuoByp0+updUmyjWF+5SVkUBx5.ycdisTLMPpwxjYERYDmA7zm7Pq2ukk5KJk8duRW8lMg=' }) + } +}) + +const date = dayjs.utc('2026-06-04', 'YYYY-MM-DD').startOf('d') const channel = { - site_id: '249#249', + site_id: '5070bc2e-dd69-4dee-98b4-a4c5e3b1fd7b', xmltv_id: 'ComedyCentralEast.us' } it('can generate valid url', () => { const result = url({ date, channel }) expect(result).toBe( - 'https://www.directv.com/json/channelschedule?channels=249&startTime=2023-01-15T00:00:00Z&hours=24&chId=249' + `https://api.cld.dtvce.com/discovery/edge/schedule/v1/service/schedule?startTime=${date.valueOf()}&endTime=${date.add(24, 'hour').valueOf()}&channelIds=5070bc2e-dd69-4dee-98b4-a4c5e3b1fd7b&include4K=false&is4Kcompatible=false&includeTVOD=true` ) }) it('can parse response', done => { const content = fs.readFileSync(path.resolve(__dirname, '__data__/content.json')) - axios.get.mockImplementation(url => { - if (url === 'https://www.directv.com/json/program/flip/MV001173520000') { - return Promise.resolve({ - data: JSON.parse(fs.readFileSync(path.resolve(__dirname, '__data__/program1.json'))) - }) - } else if (url === 'https://www.directv.com/json/program/flip/EP002298270445') { - return Promise.resolve({ - data: JSON.parse(fs.readFileSync(path.resolve(__dirname, '__data__/program2.json'))) - }) - } else { - return Promise.resolve({ data: '' }) - } - }) - parser({ content, channel }) .then(result => { result = result.map(p => { @@ -48,38 +41,38 @@ it('can parse response', done => { return p }) - expect(result).toMatchObject([ - { - start: '2023-01-14T23:00:00.000Z', - stop: '2023-01-15T01:00:00.000Z', - title: 'Men in Black II', - description: - 'Kay (Tommy Lee Jones) and Jay (Will Smith) reunite to provide our best line of defense against a seductress who levels the toughest challenge yet to the MIBs mission statement: protecting the earth from the scum of the universe. While investigating a routine crime, Jay uncovers a plot masterminded by Serleena (Boyle), a Kylothian monster who disguises herself as a lingerie model. When Serleena takes the MIB building hostage, there is only one person Jay can turn to -- his former MIB partner.', - date: '2002', - image: 'https://www.directv.com/db_photos/movies/AllPhotosAPGI/29160/29160_aa.jpg', - category: ['Comedy', 'Movies Anywhere', 'Action/Adventure', 'Science Fiction'], + expect(result).toHaveLength(47) + + expect(result[0]).toMatchObject({ + start: '2026-04-06T00:00:00.000Z', + stop: '2026-04-06T00:30:00.000Z', + title: 'Seinfeld', + sub_title: 'The Nap', + description: 'George finds the ideal napping spot at work; Jerry has his kitchen rebuilt; Elaine meets a new beau (Vince Grant).', + date: '1997-04-10', + season: 8, + episode: 18, + category: ['Sitcom'], + rating: { + system: 'MPA', + value: 'TVPG' + } + }) + + expect(result[46]).toMatchObject({ + start: '2026-04-06T23:35:00.000Z', + stop: '2026-04-07T00:10:00.000Z', + title: 'The Office', + sub_title: 'The Convention', + description: 'Michael organizes a party in his hotel room when he, Dwight and Jan attend the Northeastern Mid-Market Office Supply Convention in Philadelphia.', + category: ['Comedy', 'Sitcom'], + season: 3, + episode: 2, rating: { system: 'MPA', value: 'TV14' } - }, - { - start: '2023-01-15T06:00:00.000Z', - stop: '2023-01-15T06:30:00.000Z', - title: 'South Park', - sub_title: 'Goth Kids 3: Dawn of the Posers', - description: 'The goth kids are sent to a camp for troubled children.', - image: - 'https://www.directv.com/db_photos/showcards/v5/AllPhotos/184338/p184338_b_v5_aa.jpg', - category: ['Series', 'Animation', 'Comedy'], - season: 17, - episode: 4, - rating: { - system: 'MPA', - value: 'TVMA' - } - } - ]) + }) done() }) .catch(done) diff --git a/sites/france.tv/__data__/content.json b/sites/france.tv/__data__/content.json new file mode 100644 index 000000000..7b429d862 --- /dev/null +++ b/sites/france.tv/__data__/content.json @@ -0,0 +1,1028 @@ +[ + { + "ariaLabel": "Le 6h info . Émission du jeudi 19 février 2026 . Vidéo . 30 minutes", + "content": { + "description": "Un rendez-vous réveil-matin, avec un point sur l'actualité assorti de différentes rubriques qui permettent d'en explorer certains aspects plus en profondeur.", + "id": 8156589, + "label": null, + "url": "", + "thumbnail": { + "x1": "https://medias.france.tv/S9p5NdAs4OR2UbyC1NIQWsYV-K4/240x0/filters:quality(85):format(webp)/b/f/3/e85c2e8fed4a4955965dfff63c3843fb.jpg", + "x2": "https://medias.france.tv/BtQR9kmC4LN0RPWr9WbXfDlap5o/400x0/filters:quality(85):format(webp)/b/f/3/e85c2e8fed4a4955965dfff63c3843fb.jpg" + }, + "broadcastBeginDate": "06h00", + "captionLeading": "À regarder", + "caption": null, + "category": { + "id": "info", + "label": "Info" + }, + "channel": "francetv", + "csa": "TP", + "cta": "Regarder", + "duration": "30 min", + "icons": [], + "live": false, + "progress": null, + "title": "Émission du jeudi 19 février 2026", + "titleLeading": "Le 6h info", + "type": "video" + }, + "options": { + + }, + "tracking": { + "channel": "france_2", + "channel_type": "premium", + "category": "info", + "sub_category": "jt", + "content_type": "video", + "content_title": "emission_du_jeudi_19_fevrier_2026", + "content_format": "integrale", + "program": "le_6h_info", + "program_id": "2367", + "content_id": 8156589, + "content_sponsored": false, + "content_logged": true, + "content_diffusion_date": "19022026", + "content_status": "replay", + "video_factory_id": "c91a950b-7f1b-42b5-b513-0b470336d1d6" + }, + "variant": "horizontal" + }, + { + "ariaLabel": "Télématin . Émission du jeudi 19 février 2026 . Vidéo . 1 heure 30 minutes", + "content": { + "description": "De l'info et de la bonne humeur, sept jours sur sept : résolument dans l'air du temps, la première matinale de France, forte de sa richesse éditoriale et de sa dynamique d'équipe, aborde de nombreuses thématiques et traite l'actualité avec sérieux et sans dramatisation.", + "id": 8156586, + "label": null, + "url": "", + "thumbnail": { + "x1": "https://medias.france.tv/7_elf6zKoS8sOO941AMMeLWcrME/240x0/filters:quality(85):format(webp)/3/3/c/afbdb3622c034f01bafb6108e0287c33.jpg", + "x2": "https://medias.france.tv/JT03SrO-4rnPiZXPjTPSswlJ4BA/400x0/filters:quality(85):format(webp)/3/3/c/afbdb3622c034f01bafb6108e0287c33.jpg" + }, + "broadcastBeginDate": "06h30", + "captionLeading": "À regarder", + "caption": null, + "category": { + "id": "society", + "label": "Société" + }, + "channel": "francetv", + "csa": "TP", + "cta": "Regarder", + "duration": "1 h 30 min", + "icons": [], + "live": false, + "progress": null, + "title": "Émission du jeudi 19 février 2026", + "titleLeading": "Télématin", + "type": "video" + }, + "options": { + + }, + "tracking": { + "channel": "france_2", + "channel_type": "premium", + "category": "societe|info", + "sub_category": "magazines_d_actualite|decryptage_et_investigation", + "content_type": "video", + "content_title": "emission_du_jeudi_19_fevrier_2026", + "content_format": "integrale", + "program": "telematin", + "program_id": "1283", + "content_id": 8156586, + "content_sponsored": false, + "content_logged": true, + "content_diffusion_date": "19022026", + "content_status": "replay", + "video_factory_id": "3cfb78f4-adf0-4100-90be-b337bf062221" + }, + "variant": "horizontal" + }, + { + "ariaLabel": "Journal 08h00 . Édition du jeudi 19 février 2026 . Vidéo . 30 minutes", + "content": { + "description": "Pour bien démarrer la journée, la rédaction de France 2 propose un point sur l'actualité. Les principales informations nationales et internationales sont passées en revue.", + "id": 8156580, + "label": null, + "url": "", + "thumbnail": { + "x1": "https://medias.france.tv/MlJ0nPDHlk_tINBwGmaxbErv2-s/240x0/filters:quality(85):format(webp)/1/4/9/d0bc530cab624e5d9ba963b37da79941.jpg", + "x2": "https://medias.france.tv/hmo4z4xkDGNX2RDcFgcnSNnRI4E/400x0/filters:quality(85):format(webp)/1/4/9/d0bc530cab624e5d9ba963b37da79941.jpg" + }, + "broadcastBeginDate": "08h00", + "captionLeading": "À regarder", + "caption": null, + "category": { + "id": "info", + "label": "Info" + }, + "channel": "francetv", + "csa": "TP", + "cta": "Regarder", + "duration": "30 min", + "icons": [], + "live": false, + "progress": null, + "title": "Édition du jeudi 19 février 2026", + "titleLeading": "Journal 08h00", + "type": "video" + }, + "options": { + + }, + "tracking": { + "channel": "france_2", + "channel_type": "premium", + "category": "info", + "sub_category": "jt", + "content_type": "video", + "content_title": "edition_du_jeudi_19_fevrier_2026", + "content_format": "integrale", + "program": "journal_08h00", + "program_id": "2375", + "content_id": 8156580, + "content_sponsored": false, + "content_logged": true, + "content_diffusion_date": "19022026", + "content_status": "replay", + "video_factory_id": "bfc04ab3-521b-4810-b6fa-cbc77537e28b" + }, + "variant": "horizontal" + }, + { + "ariaLabel": "Télématin . Émission du jeudi 19 février 2026 . Vidéo . 1 heure 15 minutes", + "content": { + "description": "De l'info et de la bonne humeur, sept jours sur sept : résolument dans l'air du temps, la première matinale de France, forte de sa richesse éditoriale et de sa dynamique d'équipe, aborde de nombreuses thématiques et traite l'actualité avec sérieux et sans dramatisation.", + "id": 8156583, + "label": null, + "url": "", + "thumbnail": { + "x1": "https://medias.france.tv/GUI0YHtwVu1IqS9r_RVelgSzuIw/240x0/filters:quality(85):format(webp)/a/5/7/26046e577f7e4f60abf17a273e18e75a.jpg", + "x2": "https://medias.france.tv/JfV-adXMQ4TQ16RpTlA9J35BcHI/400x0/filters:quality(85):format(webp)/a/5/7/26046e577f7e4f60abf17a273e18e75a.jpg" + }, + "broadcastBeginDate": "08h30", + "captionLeading": "À regarder", + "caption": null, + "category": { + "id": "society", + "label": "Société" + }, + "channel": "francetv", + "csa": "TP", + "cta": "Regarder", + "duration": "1 h 15 min", + "icons": [], + "live": false, + "progress": null, + "title": "Émission du jeudi 19 février 2026", + "titleLeading": "Télématin", + "type": "video" + }, + "options": { + + }, + "tracking": { + "channel": "france_2", + "channel_type": "premium", + "category": "societe|info", + "sub_category": "magazines_d_actualite|decryptage_et_investigation", + "content_type": "video", + "content_title": "emission_du_jeudi_19_fevrier_2026", + "content_format": "integrale", + "program": "telematin", + "program_id": "1283", + "content_id": 8156583, + "content_sponsored": false, + "content_logged": true, + "content_diffusion_date": "19022026", + "content_status": "indisponible", + "video_factory_id": "50eec72e-9920-4850-b70b-7e37ad6e3e1f" + }, + "variant": "horizontal" + }, + { + "ariaLabel": "Jeux Olympiques d'hiver . Ski alpinisme (F et H) / Ski acrobatique (H) . Vidéo . 3 heures 15 minutes", + "content": { + "description": "Le ski-alpinisme fait son entrée aux Jeux olympiques à Cortina. Une première historique pour la discipline. Parmi les prétendants aux médailles en sprint, on retrouve le Belge Maximilien Drion. En combiné nordique, épreuve de saut à ski par équipes programmée à 10h. En ski acrobatique, les qualifications du halfpipe messieurs débutent à 10h30 av...", + "id": 8156574, + "label": null, + "url": "/sport/les-jeux-olympiques-d-hiver/8156574-ski-alpinisme-f-et-h-ski-acrobatique-h.html", + "thumbnail": { + "x1": "https://medias.france.tv/M05d1Kto1XuK7A267TrnR7nUSeg/240x0/filters:quality(85):format(webp)/k/m/x/phpflhxmk.jpg", + "x2": "https://medias.france.tv/y_EMxE-FWAyrMKm888jH-LJTLqo/400x0/filters:quality(85):format(webp)/k/m/x/phpflhxmk.jpg" + }, + "broadcastBeginDate": "09h45", + "captionLeading": "À regarder", + "caption": null, + "category": { + "id": "sport", + "label": "Sport" + }, + "channel": "francetv", + "csa": "TP", + "cta": "Regarder", + "duration": "3 h 15 min", + "icons": [], + "live": false, + "progress": null, + "title": "Ski alpinisme (F et H) / Ski acrobatique (H)", + "titleLeading": "Jeux Olympiques d'hiver", + "type": "video" + }, + "options": { + + }, + "tracking": { + "channel": "france_2", + "channel_type": "premium", + "category": "sport", + "content_type": "video", + "content_title": "ski_alpinisme_f_et_h_ski_acrobatique_h", + "content_format": "integrale", + "highlight": "jeux_olympiques_d_hiver", + "content_id": 8156574, + "content_sponsored": false, + "content_logged": true, + "content_diffusion_date": "19022026", + "content_status": "replay", + "video_factory_id": "6331b70c-f8cd-47fa-974e-28680033db17" + }, + "variant": "horizontal" + }, + { + "ariaLabel": "Journal 13h00 . Édition du jeudi 19 février 2026 . Vidéo . 40 minutes", + "content": { + "description": "Tous les jours, à 13h, la rédaction propose un point sur l'actualité. Les informations nationales et internationales sont passées à la loupe et mises en perspective, illustrées par des reportages sur le terrain.", + "id": 8156577, + "label": null, + "url": "", + "thumbnail": { + "x1": "https://medias.france.tv/vzdnS4Qvj1-DXIFs0Dhfmaxa-gs/240x0/filters:quality(85):format(webp)/1/9/8/369a7d7cdfc94d28becb9becfa454891.jpg", + "x2": "https://medias.france.tv/Ual5fsCcuJJ4n--WWVnrpSNqZMM/400x0/filters:quality(85):format(webp)/1/9/8/369a7d7cdfc94d28becb9becfa454891.jpg" + }, + "broadcastBeginDate": "13h00", + "captionLeading": "À regarder", + "caption": null, + "category": { + "id": "info", + "label": "Info" + }, + "channel": "francetv", + "csa": "TP", + "cta": "Regarder", + "duration": "40 min", + "icons": [], + "live": false, + "progress": null, + "title": "Édition du jeudi 19 février 2026", + "titleLeading": "Journal 13h00", + "type": "video" + }, + "options": { + + }, + "tracking": { + "channel": "france_2", + "channel_type": "premium", + "region": "saint_pierre_et_miquelon", + "category": "info", + "sub_category": "jt", + "content_type": "video", + "content_title": "edition_du_jeudi_19_fevrier_2026", + "content_format": "integrale", + "program": "journal_13h00", + "program_id": "2379", + "content_id": 8156577, + "content_sponsored": false, + "content_logged": true, + "content_diffusion_date": "19022026", + "content_status": "replay", + "video_factory_id": "866477d7-9978-49fc-92db-95c51a84c299" + }, + "variant": "horizontal" + }, + { + "ariaLabel": "Journal Météo Climat . Journal Météo climat . Vidéo . 5 minutes", + "content": { + "description": "Un point quotidien sur l'actualité météo et climatique, avec des reportages et des interviews d'experts.", + "id": 8156568, + "label": null, + "url": "", + "thumbnail": { + "x1": "https://medias.france.tv/GSxVDxWPpAXGdCYqe7rENQlUZLU/240x0/filters:quality(85):format(webp)/3/6/6/54adec73339a408d820cac0508c70663.jpg", + "x2": "https://medias.france.tv/lHI572NFvhaysIytuGQ7CIk5iPE/400x0/filters:quality(85):format(webp)/3/6/6/54adec73339a408d820cac0508c70663.jpg" + }, + "broadcastBeginDate": "13h40", + "captionLeading": "À regarder", + "caption": null, + "category": { + "id": "info", + "label": "Info" + }, + "channel": "francetv", + "csa": "TP", + "cta": "Regarder", + "duration": "5 min", + "icons": [], + "live": false, + "progress": null, + "title": "Journal Météo climat", + "titleLeading": "Journal Météo Climat", + "type": "video" + }, + "options": { + + }, + "tracking": { + "channel": "france_2", + "channel_type": "premium", + "category": "info", + "sub_category": "meteo", + "content_type": "video", + "content_title": "journal_meteo_climat", + "content_format": "integrale", + "program": "journal_meteo_climat", + "program_id": "42535", + "content_id": 8156568, + "content_sponsored": false, + "content_logged": true, + "content_diffusion_date": "19022026", + "content_status": "replay", + "video_factory_id": "d14523e7-f77e-42b9-84dc-49dd67fdd722" + }, + "variant": "horizontal" + }, + { + "ariaLabel": "Consomag . Produit reconditionné : en cas de problème, est-il garanti ? . Vidéo . 15 minutes", + "content": { + "description": "Le magazine de l'Institut national de la consommation donne à chacun des conseils pratiques pour mieux consommer, toutes les thématiques peuvent être abordées autour de nos achats.", + "id": 8156571, + "label": null, + "url": "", + "thumbnail": { + "x1": "https://medias.france.tv/4k1alPn1hkw6THco_lLFzUbyFT8/240x0/filters:quality(85):format(webp)/b/9/e/bd4ea8919ee3496fb021888fe18bfe9b.jpg", + "x2": "https://medias.france.tv/DxwPp0tiKk_PE3gf6QJgSYHQ6uI/400x0/filters:quality(85):format(webp)/b/9/e/bd4ea8919ee3496fb021888fe18bfe9b.jpg" + }, + "broadcastBeginDate": "13h45", + "captionLeading": "À regarder", + "caption": null, + "category": { + "id": "society", + "label": "Société" + }, + "channel": "francetv", + "csa": "TP", + "cta": "Regarder", + "duration": "15 min", + "icons": [], + "live": false, + "progress": null, + "title": "Produit reconditionné : en cas de problème, est-il garanti ?", + "titleLeading": "Consomag", + "type": "video" + }, + "options": { + + }, + "tracking": { + "channel": "france_2", + "channel_type": "premium", + "category": "societe|info", + "sub_category": "magazines_d_actualite|decryptage_et_investigation", + "content_type": "video", + "content_title": "produit_reconditionne_en_cas_de_probleme_est_il_garanti", + "content_format": "integrale", + "program": "consomag", + "program_id": "1615", + "content_id": 8156571, + "content_sponsored": false, + "content_logged": true, + "content_diffusion_date": "19022026", + "content_status": "replay", + "video_factory_id": "39629384-910f-4f8c-9d51-00436d5187cb" + }, + "variant": "horizontal" + }, + { + "ariaLabel": "Jeux Olympiques d'hiver . Ski alpinisme (F et H) / Hockey sur glace (F) . Vidéo . 23 minutes", + "content": { + "description": "Qui seront sacrés premier et première championne olympique de ski-alpinisme, à l'issue des finales de sprint qui débutent à 14h ? En combiné nordique, le titre par équipes messieurs est décerné à l'issue de l'épreuve de ski de fond, sprint 2x7,5 km, qui débute également à 14h. Les Norvégiens sont les tenants du titre, devant l'Allemagne et le Ja...", + "id": 8156565, + "label": null, + "url": "/sport/les-jeux-olympiques-d-hiver/8156565-ski-alpinisme-f-et-h-hockey-sur-glace-f.html", + "thumbnail": { + "x1": "https://medias.france.tv/Ud3CeWLgMHiwNQvtd4NEF_OWZVE/240x0/filters:quality(85):format(webp)/v/v/y/phpqdyyvv.jpg", + "x2": "https://medias.france.tv/qp-j3cKMmq5meo6V94hyOOcAlB4/400x0/filters:quality(85):format(webp)/v/v/y/phpqdyyvv.jpg" + }, + "broadcastBeginDate": "14h00", + "captionLeading": "À regarder", + "caption": null, + "category": { + "id": "sport", + "label": "Sport" + }, + "channel": "francetv", + "csa": "TP", + "cta": "Regarder", + "duration": "23 min", + "icons": [], + "live": false, + "progress": null, + "title": "Ski alpinisme (F et H) / Hockey sur glace (F)", + "titleLeading": "Jeux Olympiques d'hiver", + "type": "video" + }, + "options": { + + }, + "tracking": { + "channel": "france_2", + "channel_type": "premium", + "region": "wallis_et_futuna_|guadeloupe|nouvelle_caledonie|saint_pierre_et_miquelon", + "category": "sport", + "content_type": "video", + "content_title": "ski_alpinisme_f_et_h_hockey_sur_glace_f", + "content_format": "integrale", + "highlight": "jeux_olympiques_d_hiver", + "content_id": 8156565, + "content_sponsored": false, + "content_logged": true, + "content_diffusion_date": "19022026", + "content_status": "replay", + "video_factory_id": "644c18b3-4760-426f-9faa-ecaed8dc22e8" + }, + "variant": "horizontal" + }, + { + "ariaLabel": "Jeux Olympiques d'hiver . Patinage de vitesse (H) / Hockey sur glace (F) . Vidéo . 3 heures 25 minutes", + "content": { + "description": "En patinage de vitesse, l'épreuve du 1500 m messieurs débute à 16h30. L'Américain Jordan Stolz est favori, avec l'Allemand Finn Sonnekalb, le Néerlandais Kjeld Nuis et le Chinois Ning Zhongyan. La finale dames de hockey sur glace se joue à 19h10 à la Milano Santagiulia Ice Hockey Arena. Qui succédera au palmarès aux Canadiennes, victorieuses des...", + "id": 8156562, + "label": null, + "url": "/sport/les-jeux-olympiques-d-hiver/8156562-patinage-de-vitesse-h-hockey-sur-glace-f.html", + "thumbnail": { + "x1": "https://medias.france.tv/ZU0UG9N0Bu-LZvlCdkcR9_S33RU/240x0/filters:quality(85):format(webp)/o/s/1/phpxya1so.jpg", + "x2": "https://medias.france.tv/ULjmo-nhuZa89e0CjOqQtbOHQ3s/400x0/filters:quality(85):format(webp)/o/s/1/phpxya1so.jpg" + }, + "broadcastBeginDate": "16h30", + "captionLeading": "À regarder", + "caption": null, + "category": { + "id": "sport", + "label": "Sport" + }, + "channel": "francetv", + "csa": "TP", + "cta": "Regarder", + "duration": "3 h 25 min", + "icons": [], + "live": false, + "progress": null, + "title": "Patinage de vitesse (H) / Hockey sur glace (F)", + "titleLeading": "Jeux Olympiques d'hiver", + "type": "video" + }, + "options": { + + }, + "tracking": { + "channel": "france_2", + "channel_type": "premium", + "category": "sport", + "content_type": "video", + "content_title": "patinage_de_vitesse_h_hockey_sur_glace_f", + "content_format": "integrale", + "highlight": "jeux_olympiques_d_hiver", + "content_id": 8156562, + "content_sponsored": false, + "content_logged": true, + "content_diffusion_date": "19022026", + "content_status": "replay", + "video_factory_id": "d3cf848f-017c-4c5d-afa1-d1f38f4027b7" + }, + "variant": "horizontal" + }, + { + "ariaLabel": "Journal 20h00 . Édition du jeudi 19 février 2026 . Vidéo . 55 minutes", + "content": { + "description": "Les principales informations nationales et internationales sont passées à la loupe et mises en perspective, illustrées par des reportages sur le terrain.", + "id": 8156559, + "label": null, + "url": "", + "thumbnail": { + "x1": "https://medias.france.tv/BTfZ2idtnBxvhxHkDXSo8_Av_WE/240x0/filters:quality(85):format(webp)/a/8/7/125078f88e4c49c888d8bae6b19f978a.jpg", + "x2": "https://medias.france.tv/8nx8oqOWXShe0_iXZ28D7a9oSrA/400x0/filters:quality(85):format(webp)/a/8/7/125078f88e4c49c888d8bae6b19f978a.jpg" + }, + "broadcastBeginDate": "19h55", + "captionLeading": "À regarder", + "caption": null, + "category": { + "id": "info", + "label": "Info" + }, + "channel": "francetv", + "csa": "TP", + "cta": "Regarder", + "duration": "55 min", + "icons": [], + "live": false, + "progress": null, + "title": "Édition du jeudi 19 février 2026", + "titleLeading": "Journal 20h00", + "type": "video" + }, + "options": { + + }, + "tracking": { + "channel": "france_2", + "channel_type": "premium", + "category": "info", + "sub_category": "jt", + "content_type": "video", + "content_title": "edition_du_jeudi_19_fevrier_2026", + "content_format": "integrale", + "program": "journal_20h00", + "program_id": "2383", + "content_id": 8156559, + "content_sponsored": false, + "content_logged": true, + "content_diffusion_date": "19022026", + "content_status": "replay", + "video_factory_id": "ca0297ec-9059-4d69-8ea4-c8f950624c99" + }, + "variant": "horizontal" + }, + { + "ariaLabel": "Journal Météo Climat . Journal Météo climat . Vidéo . 1 minute", + "content": { + "description": "Un point quotidien sur l'actualité météo et climatique, avec des reportages et des interviews d'experts.", + "id": 8156556, + "label": null, + "url": "", + "thumbnail": { + "x1": "https://medias.france.tv/ZmsDXtZWuKlozYx5MS4QbsHgcAs/240x0/filters:quality(85):format(webp)/e/0/d/0faaeaa70a854e02a6fe1fde2d267d0e.jpg", + "x2": "https://medias.france.tv/CQlKJceC4-y2L-KWmcwJ8eX_T2g/400x0/filters:quality(85):format(webp)/e/0/d/0faaeaa70a854e02a6fe1fde2d267d0e.jpg" + }, + "broadcastBeginDate": "20h50", + "captionLeading": "À regarder", + "caption": null, + "category": { + "id": "info", + "label": "Info" + }, + "channel": "francetv", + "csa": "TP", + "cta": "Regarder", + "duration": "1 min", + "icons": [], + "live": false, + "progress": null, + "title": "Journal Météo climat", + "titleLeading": "Journal Météo Climat", + "type": "video" + }, + "options": { + + }, + "tracking": { + "channel": "france_2", + "channel_type": "premium", + "category": "info", + "sub_category": "meteo", + "content_type": "video", + "content_title": "journal_meteo_climat", + "content_format": "integrale", + "program": "journal_meteo_climat", + "program_id": "42535", + "content_id": 8156556, + "content_sponsored": false, + "content_logged": true, + "content_diffusion_date": "19022026", + "content_status": "replay", + "video_factory_id": "fcf39789-8d42-4710-b8da-0c6f87a873b3" + }, + "variant": "horizontal" + }, + { + "ariaLabel": "Epopées en bleu . Vidéo . 4 minutes", + "content": { + "description": "Gros plan en images sur les principaux événements sportifs du jour.", + "id": 8165610, + "label": null, + "url": "", + "thumbnail": { + "x1": "https://medias.france.tv/HMLOxc6ONp6Ol5iZjoXWtC6qx-g/240x0/filters:quality(85):format(webp)/c/1/8/2303b6f77cc941a49ed8c63e3fc8b81c.jpg", + "x2": "https://medias.france.tv/N3tuxwoofZZMwGYJPgq9nbjaxJ8/400x0/filters:quality(85):format(webp)/c/1/8/2303b6f77cc941a49ed8c63e3fc8b81c.jpg" + }, + "broadcastBeginDate": "20h51", + "captionLeading": "À regarder", + "caption": null, + "category": { + "id": "info", + "label": "Info" + }, + "channel": "francetv", + "csa": "TP", + "cta": "Regarder", + "duration": "4 min", + "icons": [], + "live": false, + "progress": null, + "title": "Epopées en bleu", + "titleLeading": null, + "type": "video" + }, + "options": { + + }, + "tracking": { + "channel": "france_2", + "channel_type": "premium", + "region": "nouvelle_caledonie|mayotte", + "category": "info", + "content_type": "video", + "content_title": "epopees_en_bleu", + "content_format": "integrale", + "program": "image_du_jour_sports", + "program_id": "91005", + "content_id": 8165610, + "content_sponsored": false, + "content_logged": true, + "content_diffusion_date": "19022026", + "content_status": "replay", + "video_factory_id": "b6181e31-30b1-4499-8702-f3d1e0676600" + }, + "variant": "horizontal" + }, + { + "ariaLabel": "Jeux olympiques de Milan-Cortina 2026 . Vidéo . 1 minute", + "content": { + "description": "Gros plan en images sur les principaux événements sportifs du jour.", + "id": 8156550, + "label": null, + "url": "", + "thumbnail": { + "x1": "https://medias.france.tv/MwHIVCE1cXHBTXiWmx0oq2BcA7E/240x0/filters:quality(85):format(webp)/0/2/e/08f11d7d474145fdafa268d852bbde20.jpg", + "x2": "https://medias.france.tv/ylQN0h84Sd_aWuBCdkD1B9eqQAI/400x0/filters:quality(85):format(webp)/0/2/e/08f11d7d474145fdafa268d852bbde20.jpg" + }, + "broadcastBeginDate": "20h55", + "captionLeading": "À regarder", + "caption": null, + "category": { + "id": "info", + "label": "Info" + }, + "channel": "francetv", + "csa": "TP", + "cta": "Regarder", + "duration": "1 min", + "icons": [], + "live": false, + "progress": null, + "title": "Jeux olympiques de Milan-Cortina 2026", + "titleLeading": null, + "type": "video" + }, + "options": { + + }, + "tracking": { + "channel": "france_2", + "channel_type": "premium", + "region": "nouvelle_caledonie|reunion", + "category": "info", + "content_type": "video", + "content_title": "jeux_olympiques_de_milan_cortina_2026", + "content_format": "integrale", + "program": "image_du_jour_sports", + "program_id": "91005", + "content_id": 8156550, + "content_sponsored": false, + "content_logged": true, + "content_diffusion_date": "19022026", + "content_status": "replay", + "video_factory_id": "4e3b3f90-4f82-4e08-82b4-9d5b2c1d39af" + }, + "variant": "horizontal" + }, + { + "ariaLabel": "Basique, l'essentiel de la musique . Yael Naim . Vidéo . 9 minutes", + "content": { + "description": "Une pastille consacrée à l'actualité musicale, qui braque les projecteurs sur un ou une artiste.", + "id": 8156553, + "label": null, + "url": "/france-2/basique-l-essentiel-de-la-musique/8156553-yael-naim.html", + "thumbnail": { + "x1": "https://medias.france.tv/9yTg8BrHoQq0NvbZOeXaCF3fJzM/240x0/filters:quality(85):format(webp)/e/j/w/phpnwywje.png", + "x2": "https://medias.france.tv/7kRvH3_djLDqKEqqaXjMWkYOwnI/400x0/filters:quality(85):format(webp)/e/j/w/phpnwywje.png" + }, + "broadcastBeginDate": "20h56", + "captionLeading": "À regarder", + "caption": null, + "category": { + "id": "artShow", + "label": "Arts & spectacles" + }, + "channel": "francetv", + "csa": "TP", + "cta": "Regarder", + "duration": "9 min", + "icons": [], + "live": false, + "progress": null, + "title": "Yael Naim", + "titleLeading": "Basique, l'essentiel de la musique", + "type": "video" + }, + "options": { + + }, + "tracking": { + "channel": "france_2", + "channel_type": "premium", + "category": "arts_et_spectacles|divertissement", + "sub_category": "emissions_culturelles|emissions_de_divertissement", + "content_type": "video", + "content_title": "yael_naim", + "content_format": "integrale", + "program": "basique_l_essentiel_de_la_musique", + "program_id": "7025", + "content_id": 8156553, + "content_sponsored": false, + "content_logged": true, + "content_diffusion_date": "19022026", + "content_status": "replay", + "video_factory_id": "330681fa-b116-4d09-b61c-856442605f47" + }, + "variant": "horizontal" + }, + { + "ariaLabel": "Mot de passe : le duel . Émission du jeudi 8 janvier 2026 . Vidéo . 8 minutes 5 secondes . Sous-titré", + "content": { + "description": "Mot de passe - Le Duel est un jeu qui consiste à faire deviner des mots à un partenaire de jeu en donnant des mots indices. Il se joue avec deux candidats face à deux célébrités. Du lundi au jeudi, ce sont les Duels et la Finale se joue en fin de semaine, le vendredi, avec le meilleur des 2 candidats et les deux célébrités.", + "id": 8026797, + "label": null, + "url": "/france-2/mot-de-passe-le-duel/8026797-emission-du-jeudi-8-janvier-2026.html", + "thumbnail": { + "x1": "https://medias.france.tv/-1RzWx9FZTBPxqXus62nk8GXdd8/240x0/filters:quality(85):format(webp)/9/7/a/7eacababdb94435b9f29a0049b8ffa79.jpg", + "x2": "https://medias.france.tv/WCHO80CN3Dlt4C05BA8zUDw2VIA/400x0/filters:quality(85):format(webp)/9/7/a/7eacababdb94435b9f29a0049b8ffa79.jpg" + }, + "broadcastBeginDate": "21h05", + "captionLeading": "À regarder", + "caption": null, + "category": { + "id": "entertainment", + "label": "Divertissement" + }, + "channel": "francetv", + "csa": "TP", + "cta": "Regarder", + "duration": "8 min 5 s", + "icons": [ + { + "id": "st" + } + ], + "live": false, + "progress": null, + "title": "Émission du jeudi 8 janvier 2026", + "titleLeading": "Mot de passe : le duel", + "type": "video" + }, + "options": { + + }, + "tracking": { + "channel": "france_2", + "channel_type": "premium", + "category": "divertissement", + "sub_category": "jeux", + "content_type": "video", + "content_title": "emission_du_jeudi_8_janvier_2026", + "content_format": "integrale", + "program": "mot_de_passe_le_duel", + "program_id": "56191", + "content_id": 8026797, + "content_sponsored": false, + "content_logged": true, + "content_diffusion_date": "19022026", + "content_status": "replay", + "video_factory_id": "adf6bf06-506b-410a-8c64-59e926ab984c" + }, + "variant": "horizontal" + }, + { + "ariaLabel": "Jeux Olympiques d'hiver . Patinage artistique (F) / Ski acrobatique (F) . Vidéo . Audio-décrit . 2 heures 33 minutes", + "content": { + "description": "La soirée débute par la fin du programme libre dames de patinage artistique. L'Américaine Alysa Liu, championne du monde 2025, est la grande favorite pour le titre olympique, remporté en 2022, à Pékin, par la Russe Anna Chtcherbakova. Ses principales adversaires seront les Japonaises Kaori Sakamoto et Mone Chiba, l'Estonienne Niina Petrokina et ...", + "id": 8156544, + "label": null, + "url": "/sport/les-jeux-olympiques-d-hiver/8156544-patinage-artistique-f-ski-acrobatique-f.html", + "thumbnail": { + "x1": "https://medias.france.tv/gMhZF8RFU9_ULzI56AAkDEUW7BQ/240x0/filters:quality(85):format(webp)/h/j/1/phpvra1jh.jpg", + "x2": "https://medias.france.tv/h9Dh0iCS-ikeAKmdAwd_nXkaTSA/400x0/filters:quality(85):format(webp)/h/j/1/phpvra1jh.jpg" + }, + "broadcastBeginDate": "21h10", + "captionLeading": "À regarder", + "caption": null, + "category": { + "id": "sport", + "label": "Sport" + }, + "channel": "francetv", + "csa": "TP", + "cta": "Regarder", + "duration": "2 h 33 min", + "icons": [ + { + "id": "ad" + } + ], + "live": false, + "progress": null, + "title": "Patinage artistique (F) / Ski acrobatique (F)", + "titleLeading": "Jeux Olympiques d'hiver", + "type": "video" + }, + "options": { + + }, + "tracking": { + "channel": "france_2", + "channel_type": "premium", + "region": "saint_pierre_et_miquelon", + "category": "sport", + "content_type": "video", + "content_title": "patinage_artistique_f_ski_acrobatique_f", + "content_format": "integrale", + "highlight": "jeux_olympiques_d_hiver", + "content_id": 8156544, + "content_sponsored": false, + "content_logged": true, + "content_diffusion_date": "19022026", + "content_status": "replay", + "video_factory_id": "8fc870a9-a5d6-43ce-b8f7-e7945f5229ff" + }, + "variant": "horizontal" + }, + { + "ariaLabel": "JO Club . Émission du jeudi 19 février 2026 . Vidéo . 1 heure", + "content": { + "description": "Tous les soirs, tout au long de ces Jeux olympiques d'hiver de Milan-Cortina, Laurent Luyat revient, avec les journalistes et consultants de France Télévisions, sur les épreuves de la journée. Il accueille les athlètes et les médaillés du jour. La journée a été marquée par du combiné nordique, avec l'épreuve par équipes messieurs, les demi-final...", + "id": 8156547, + "label": null, + "url": "", + "thumbnail": { + "x1": "https://medias.france.tv/xuxaBPNFyhMiVB5eeYrZV_1nPj4/240x0/filters:quality(85):format(webp)/v/p/h/phpmhbhpv.jpg", + "x2": "https://medias.france.tv/szcQQVOSSqC70fcjHId4PxZ-wxE/400x0/filters:quality(85):format(webp)/v/p/h/phpmhbhpv.jpg" + }, + "broadcastBeginDate": "23h00", + "captionLeading": "À regarder", + "caption": null, + "category": { + "id": "info", + "label": "Info" + }, + "channel": "francetv", + "csa": "TP", + "cta": "Regarder", + "duration": "1 h", + "icons": [], + "live": false, + "progress": null, + "title": "Émission du jeudi 19 février 2026", + "titleLeading": "JO Club", + "type": "video" + }, + "options": { + + }, + "tracking": { + "channel": "france_2", + "channel_type": "premium", + "region": "martinique|guadeloupe|guyane", + "category": "info", + "content_type": "video", + "content_title": "emission_du_jeudi_19_fevrier_2026", + "content_format": "integrale", + "program": "jo_club", + "program_id": "5603", + "content_id": 8156547, + "content_sponsored": false, + "content_logged": true, + "content_diffusion_date": "19022026", + "content_status": "replay", + "video_factory_id": "98238f1c-37a0-497f-9e3a-5f05eb17ce5c" + }, + "variant": "horizontal" + }, + { + "ariaLabel": "Jeux Olympiques d'hiver . Jeux Olympiques d'hiver : Rediffusions . Vidéo . 5 heures 50 minutes", + "content": { + "description": "Les XXVes Jeux olympiques d'hiver 2026 se déroulent en Italie, à Milan et Cortina d'Ampezzo, et célèbrent les sports d'hiver avec 16 disciplines au menu de la compétition.", + "id": 8156541, + "label": null, + "url": "", + "thumbnail": { + "x1": "https://medias.france.tv/PRXSSEG8Mi9gyQp37QHrILo0HNg/240x0/filters:quality(85):format(webp)/c/g/b/phpxnobgc.jpg", + "x2": "https://medias.france.tv/4WT0xrlA1E6GxCFWkAdtAXjsKRs/400x0/filters:quality(85):format(webp)/c/g/b/phpxnobgc.jpg" + }, + "broadcastBeginDate": "00h00", + "captionLeading": "À regarder", + "caption": null, + "category": { + "id": "sport", + "label": "Sport" + }, + "channel": "francetv", + "csa": "TP", + "cta": "Regarder", + "duration": "5 h 50 min", + "icons": [], + "live": false, + "progress": null, + "title": "Jeux Olympiques d'hiver : Rediffusions", + "titleLeading": "Jeux Olympiques d'hiver", + "type": "video" + }, + "options": { + + }, + "tracking": { + "channel": "france_2", + "channel_type": "premium", + "region": "martinique", + "category": "sport", + "content_type": "video", + "content_title": "jeux_olympiques_d_hiver_rediffusions", + "content_format": "integrale", + "highlight": "jeux_olympiques_d_hiver", + "content_id": 8156541, + "content_sponsored": false, + "content_logged": true, + "content_diffusion_date": "20022026", + "content_status": "indisponible", + "video_factory_id": "7435a412-cdf0-4eaa-8168-29f466de95ef" + }, + "variant": "horizontal" + }, + { + "ariaLabel": "Mot de passe : le duel . Émission du jeudi 8 janvier 2026 . Vidéo . 8 minutes 5 secondes . Sous-titré", + "content": { + "description": "Mot de passe - Le Duel est un jeu qui consiste à faire deviner des mots à un partenaire de jeu en donnant des mots indices. Il se joue avec deux candidats face à deux célébrités. Du lundi au jeudi, ce sont les Duels et la Finale se joue en fin de semaine, le vendredi, avec le meilleur des 2 candidats et les deux célébrités.", + "id": 8026797, + "label": null, + "url": "/france-2/mot-de-passe-le-duel/8026797-emission-du-jeudi-8-janvier-2026.html", + "thumbnail": { + "x1": "https://medias.france.tv/-1RzWx9FZTBPxqXus62nk8GXdd8/240x0/filters:quality(85):format(webp)/9/7/a/7eacababdb94435b9f29a0049b8ffa79.jpg", + "x2": "https://medias.france.tv/WCHO80CN3Dlt4C05BA8zUDw2VIA/400x0/filters:quality(85):format(webp)/9/7/a/7eacababdb94435b9f29a0049b8ffa79.jpg" + }, + "broadcastBeginDate": "05h50", + "captionLeading": "À regarder", + "caption": null, + "category": { + "id": "entertainment", + "label": "Divertissement" + }, + "channel": "francetv", + "csa": "TP", + "cta": "Regarder", + "duration": "8 min 5 s", + "icons": [ + { + "id": "st" + } + ], + "live": false, + "progress": null, + "title": "Émission du jeudi 8 janvier 2026", + "titleLeading": "Mot de passe : le duel", + "type": "video" + }, + "options": { + + }, + "tracking": { + "channel": "france_2", + "channel_type": "premium", + "category": "divertissement", + "sub_category": "jeux", + "content_type": "video", + "content_title": "emission_du_jeudi_8_janvier_2026", + "content_format": "integrale", + "program": "mot_de_passe_le_duel", + "program_id": "56191", + "content_id": 8026797, + "content_sponsored": false, + "content_logged": true, + "content_diffusion_date": "20022026", + "content_status": "indisponible", + "video_factory_id": "6993405a-530b-4ea7-bcb6-4c079eaab6bf" + }, + "variant": "horizontal" + } +] \ No newline at end of file diff --git a/sites/france.tv/france.tv.channels.xml b/sites/france.tv/france.tv.channels.xml new file mode 100644 index 000000000..5eb253597 --- /dev/null +++ b/sites/france.tv/france.tv.channels.xml @@ -0,0 +1,19 @@ + + + Arte + France 2 + France 3 + France 4 + France 5 + France 24 + franceinfo: + LCP Public Sénat + Mieux + TV5 Monde + France.tv Sport + France.tv Docs + France.tv Séries + INA + + France.tv + diff --git a/sites/france.tv/france.tv.config.js b/sites/france.tv/france.tv.config.js new file mode 100644 index 000000000..885772634 --- /dev/null +++ b/sites/france.tv/france.tv.config.js @@ -0,0 +1,135 @@ +const dayjs = require('dayjs') +const axios = require('axios') +const utc = require('dayjs/plugin/utc') +const timezone = require('dayjs/plugin/timezone') +const customParseFormat = require('dayjs/plugin/customParseFormat') + +dayjs.extend(utc) +dayjs.extend(timezone) +dayjs.extend(customParseFormat) +dayjs.tz.setDefault('Europe/Paris') + +// Because France is excellent at pointing hours, their programs ALL start at 5/6 am, +// so we need to keep track of the earlier day's program to get the midnight programming. How... odd. +module.exports = { + site: 'france.tv', + days: 2, + url: function ({ channel, date }) { + return `https://www.france.tv/api/epg/videos/?date=${date.format('YYYY-MM-DD')}&channel=${channel.site_id}` + }, + parser: async function ({ channel, content, date }) { + const programs = [] + let items = [] + + const dayBefore = date.subtract(1, 'd').format('YYYY-MM-DD') + const linkDayBefore = `https://www.france.tv/api/epg/videos/?date=${dayBefore}&channel=${channel.site_id}` + + try { + const responseDayBefore = await axios.get(linkDayBefore) + const programmingDayBefore = responseDayBefore.data || [] + + // The broadcast day starts at ~6 AM. Programs with hour < 6 in the day-before API + // are actually early morning programs (00:00-05:59) of our target date. + if (Array.isArray(programmingDayBefore)) { + programmingDayBefore.forEach(item => { + const time = item?.content?.broadcastBeginDate + if (!time) return + const hour = parseInt(time.split('h')[0]) + + if (hour < 6) { + items.push(item) + } + }) + } + } catch { + // Day before data unavailable, continue with current day only + } + + // From the current day's API, only include programs starting from 6h onwards. + // Programs with hour < 6 belong to the next calendar day's schedule. + try { + const currentDayItems = JSON.parse(content) || [] + if (Array.isArray(currentDayItems)) { + currentDayItems.forEach(item => { + const time = item?.content?.broadcastBeginDate + if (!time) return + const hour = parseInt(time.split('h')[0]) + + if (hour >= 6) { + items.push(item) + } + }) + } + } catch { + return programs + } + + items.forEach(item => { + const { start, stop } = parseDuration(date, item) + if (!start.isValid() || !stop.isValid()) return + // Can contain Season and Episode in title, but not always. If title is missing, skip the program + if (!item?.content?.title) return + + let title = item.content.title + let season = null + let episode = null + + const seMatch = title.match(/\s*-?\s*S(\d+)\s+E(\d+)\s*-?\s*/) + if (seMatch) { + season = parseInt(seMatch[1]) + episode = parseInt(seMatch[2]) + title = title.replace(seMatch[0], ' ').replace(/^\s+/, '').replace(/\s+$/, '').trim() + } + + const fullTitle = (item.content.titleLeading ? item.content.titleLeading + (title ? ' - ' : '') : '') + title + + programs.push({ + title: fullTitle, + description: item.content.description, + image: getImageUrl(item), + icon: getImageUrl(item), + start, + stop, + season: season, + episode: episode, + rating: item.content.csa + }) + }) + + return programs + } +} + +function parseDuration(date, item) { + const current_date = date.format('YYYY-MM-DD') + const time = item.content?.broadcastBeginDate + const duration = item.content?.duration // e.g. "11 min 45 s", "1 h 30 min", "30 min" + + if (!time) return { start: dayjs(null), stop: dayjs(null) } + + const timeParts = time.split('h') + + let durationInSeconds = 0 + if (duration) { + const durationParts = duration.split(' ') + for (let i = 0; i < durationParts.length; i++) { + const part = durationParts[i] + if (part === 'h' && i > 0) { + durationInSeconds += parseInt(durationParts[i - 1]) * 3600 + } else if (part === 'min' && i > 0) { + durationInSeconds += parseInt(durationParts[i - 1]) * 60 + } else if (part === 's' && i > 0) { + durationInSeconds += parseInt(durationParts[i - 1]) + } + } + } + + const start = dayjs.utc(`${current_date} ${timeParts[0]}:${timeParts[1]}`, 'YYYY-MM-DD HH:mm') + const stop = start.add(durationInSeconds, 'second') + return { start, stop } +} + +function getImageUrl(item) { + const url = item.content?.thumbnail?.x1 + return url +} diff --git a/sites/france.tv/france.tv.test.js b/sites/france.tv/france.tv.test.js new file mode 100644 index 000000000..b7be8c070 --- /dev/null +++ b/sites/france.tv/france.tv.test.js @@ -0,0 +1,54 @@ +const { parser, url } = require('./france.tv.config.js') +const axios = require('axios') +const fs = require('fs') +const path = require('path') +const dayjs = require('dayjs') +const utc = require('dayjs/plugin/utc') +const customParseFormat = require('dayjs/plugin/customParseFormat') +dayjs.extend(customParseFormat) +dayjs.extend(utc) + +jest.mock('axios') + +const date = dayjs.utc('2026-02-19', 'YYYY-MM-DD').startOf('d') +const channel = { + site_id: 'france-2', + xmltv_id: 'France2.fr@HD' +} + +it('can generate valid url', () => { + expect(url({ channel, date })).toBe('https://www.france.tv/api/epg/videos/?date=2026-02-19&channel=france-2') +}) + +it('can parse response', async () => { + axios.get.mockResolvedValue({ data: [] }) + const content = fs.readFileSync(path.resolve(__dirname, '__data__/content.json')) + const results = (await parser({ content, date, channel })).map(p => { + p.start = p.start.toJSON() + p.stop = p.stop.toJSON() + return p + }) + + expect(results.length).toBe(18) + expect(results[0]).toMatchObject({ + title: 'Le 6h info - Émission du jeudi 19 février 2026', + description: "Un rendez-vous réveil-matin, avec un point sur l'actualité assorti de différentes rubriques qui permettent d'en explorer certains aspects plus en profondeur.", + image: 'https://medias.france.tv/S9p5NdAs4OR2UbyC1NIQWsYV-K4/240x0/filters:quality(85):format(webp)/b/f/3/e85c2e8fed4a4955965dfff63c3843fb.jpg', + start: '2026-02-19T06:00:00.000Z', + stop: '2026-02-19T06:30:00.000Z' + }) + expect(results[17]).toMatchObject({ + title: 'JO Club - Émission du jeudi 19 février 2026', + description: "Tous les soirs, tout au long de ces Jeux olympiques d'hiver de Milan-Cortina, Laurent Luyat revient, avec les journalistes et consultants de France Télévisions, sur les épreuves de la journée. Il accueille les athlètes et les médaillés du jour. La journée a été marquée par du combiné nordique, avec l'épreuve par équipes messieurs, les demi-final...", + image: 'https://medias.france.tv/xuxaBPNFyhMiVB5eeYrZV_1nPj4/240x0/filters:quality(85):format(webp)/v/p/h/phpmhbhpv.jpg', + start: '2026-02-19T23:00:00.000Z', + stop: '2026-02-20T00:00:00.000Z' + }) +}) + +it('can handle empty guide', async () => { + axios.get.mockResolvedValue({ data: [] }) + const results = await parser({ content: [], date, channel }) + + expect(results).toMatchObject([]) +}) diff --git a/sites/france.tv/readme.md b/sites/france.tv/readme.md new file mode 100644 index 000000000..368c7a84e --- /dev/null +++ b/sites/france.tv/readme.md @@ -0,0 +1,21 @@ +# france.tv + +https://www.france.tv/ + +### Download the guide + +```sh +npm run grab --- --site=france.tv +``` + +### Update channel list + +```sh +npm run channels:parse --- --config=./sites/france.tv/france.tv.config.js --output=./sites/france.tv/france.tv.channels.xml +``` + +### Test + +```sh +npm test --- france.tv +``` From c61db1071f99a5f0f8b6ffa5e5041a7bc4888924 Mon Sep 17 00:00:00 2001 From: theofficialomega <30985701+BellezaEmporium@users.noreply.github.com> Date: Sat, 18 Apr 2026 12:43:42 +0200 Subject: [PATCH 29/92] add disclaimer for channels. --- sites/france.tv/france.tv.config.js | 21 ++++++++++++--------- 1 file changed, 12 insertions(+), 9 deletions(-) diff --git a/sites/france.tv/france.tv.config.js b/sites/france.tv/france.tv.config.js index 885772634..e5cd507e9 100644 --- a/sites/france.tv/france.tv.config.js +++ b/sites/france.tv/france.tv.config.js @@ -84,19 +84,22 @@ module.exports = { const fullTitle = (item.content.titleLeading ? item.content.titleLeading + (title ? ' - ' : '') : '') + title programs.push({ - title: fullTitle, - description: item.content.description, - image: getImageUrl(item), - icon: getImageUrl(item), - start, - stop, - season: season, - episode: episode, - rating: item.content.csa + title: fullTitle, + description: item.content.description, + image: getImageUrl(item), + icon: getImageUrl(item), + start, + stop, + season: season, + episode: episode, + rating: item.content.csa }) }) return programs + }, + channels() { + return 'Website provides no proper channel list, channels must be added manually' } } From a0990513dd61ffbda4026f15f7af214a14bd644a Mon Sep 17 00:00:00 2001 From: theofficialomega <30985701+BellezaEmporium@users.noreply.github.com> Date: Sat, 18 Apr 2026 12:51:50 +0200 Subject: [PATCH 30/92] add channels scraping --- sites/france.tv/france.tv.channels.xml | 29 +++++++++++++------------- sites/france.tv/france.tv.config.js | 25 ++++++++++++++++++++-- 2 files changed, 37 insertions(+), 17 deletions(-) diff --git a/sites/france.tv/france.tv.channels.xml b/sites/france.tv/france.tv.channels.xml index 5eb253597..4cf7b227e 100644 --- a/sites/france.tv/france.tv.channels.xml +++ b/sites/france.tv/france.tv.channels.xml @@ -1,19 +1,18 @@ - Arte - France 2 - France 3 - France 4 - France 5 - France 24 - franceinfo: - LCP Public Sénat + Arté + France Télévisions Docs + France 2 + France 3 + France 4 + France 5 + France 24 + Franceinfo + France TV + INA (Institut National de l&#x27;Audiovisuel) + LCP Public Sénat Mieux - TV5 Monde - France.tv Sport - France.tv Docs - France.tv Séries - INA - - France.tv + France Télévisions Séries + France Télévisions Sport + TV5 Monde Plus diff --git a/sites/france.tv/france.tv.config.js b/sites/france.tv/france.tv.config.js index e5cd507e9..84a0ce8b6 100644 --- a/sites/france.tv/france.tv.config.js +++ b/sites/france.tv/france.tv.config.js @@ -98,8 +98,29 @@ module.exports = { return programs }, - channels() { - return 'Website provides no proper channel list, channels must be added manually' + async channels() { + try { + const response = await axios.get('https://www.france.tv/chaines/') + const data = response.data || '' + const channels = [] + + const channelRegex = + /]+aria-controls="[^"]*content-([a-z0-9-]+)"[\s\S]*?([^<]+)<\/title>/gi + + let match + while ((match = channelRegex.exec(data)) !== null) { + channels.push({ + lang: 'fr', + site_id: match[1], + name: match[2].trim() + }) + } + + return [...new Map(channels.map(channel => [channel.site_id, channel])).values()] + } catch (error) { + console.error('Failed to fetch channels list:', error.message) + return [] + } } } From cefd76e87aa8db1edc225fe166f8d6b2e528522d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Isma=C3=ABl=20Moret?= <30985701+BellezaEmporium@users.noreply.github.com> Date: Sat, 18 Apr 2026 10:54:29 +0000 Subject: [PATCH 31/92] CRLF --- sites/france.tv/__data__/content.json | 2054 ++++++++++++------------ sites/france.tv/france.tv.channels.xml | 36 +- sites/france.tv/france.tv.config.js | 318 ++-- sites/france.tv/france.tv.test.js | 108 +- sites/france.tv/readme.md | 42 +- 5 files changed, 1279 insertions(+), 1279 deletions(-) diff --git a/sites/france.tv/__data__/content.json b/sites/france.tv/__data__/content.json index 7b429d862..c6fa90963 100644 --- a/sites/france.tv/__data__/content.json +++ b/sites/france.tv/__data__/content.json @@ -1,1028 +1,1028 @@ -[ - { - "ariaLabel": "Le 6h info . Émission du jeudi 19 février 2026 . Vidéo . 30 minutes", - "content": { - "description": "Un rendez-vous réveil-matin, avec un point sur l'actualité assorti de différentes rubriques qui permettent d'en explorer certains aspects plus en profondeur.", - "id": 8156589, - "label": null, - "url": "", - "thumbnail": { - "x1": "https://medias.france.tv/S9p5NdAs4OR2UbyC1NIQWsYV-K4/240x0/filters:quality(85):format(webp)/b/f/3/e85c2e8fed4a4955965dfff63c3843fb.jpg", - "x2": "https://medias.france.tv/BtQR9kmC4LN0RPWr9WbXfDlap5o/400x0/filters:quality(85):format(webp)/b/f/3/e85c2e8fed4a4955965dfff63c3843fb.jpg" - }, - "broadcastBeginDate": "06h00", - "captionLeading": "À regarder", - "caption": null, - "category": { - "id": "info", - "label": "Info" - }, - "channel": "francetv", - "csa": "TP", - "cta": "Regarder", - "duration": "30 min", - "icons": [], - "live": false, - "progress": null, - "title": "Émission du jeudi 19 février 2026", - "titleLeading": "Le 6h info", - "type": "video" - }, - "options": { - - }, - "tracking": { - "channel": "france_2", - "channel_type": "premium", - "category": "info", - "sub_category": "jt", - "content_type": "video", - "content_title": "emission_du_jeudi_19_fevrier_2026", - "content_format": "integrale", - "program": "le_6h_info", - "program_id": "2367", - "content_id": 8156589, - "content_sponsored": false, - "content_logged": true, - "content_diffusion_date": "19022026", - "content_status": "replay", - "video_factory_id": "c91a950b-7f1b-42b5-b513-0b470336d1d6" - }, - "variant": "horizontal" - }, - { - "ariaLabel": "Télématin . Émission du jeudi 19 février 2026 . Vidéo . 1 heure 30 minutes", - "content": { - "description": "De l'info et de la bonne humeur, sept jours sur sept : résolument dans l'air du temps, la première matinale de France, forte de sa richesse éditoriale et de sa dynamique d'équipe, aborde de nombreuses thématiques et traite l'actualité avec sérieux et sans dramatisation.", - "id": 8156586, - "label": null, - "url": "", - "thumbnail": { - "x1": "https://medias.france.tv/7_elf6zKoS8sOO941AMMeLWcrME/240x0/filters:quality(85):format(webp)/3/3/c/afbdb3622c034f01bafb6108e0287c33.jpg", - "x2": "https://medias.france.tv/JT03SrO-4rnPiZXPjTPSswlJ4BA/400x0/filters:quality(85):format(webp)/3/3/c/afbdb3622c034f01bafb6108e0287c33.jpg" - }, - "broadcastBeginDate": "06h30", - "captionLeading": "À regarder", - "caption": null, - "category": { - "id": "society", - "label": "Société" - }, - "channel": "francetv", - "csa": "TP", - "cta": "Regarder", - "duration": "1 h 30 min", - "icons": [], - "live": false, - "progress": null, - "title": "Émission du jeudi 19 février 2026", - "titleLeading": "Télématin", - "type": "video" - }, - "options": { - - }, - "tracking": { - "channel": "france_2", - "channel_type": "premium", - "category": "societe|info", - "sub_category": "magazines_d_actualite|decryptage_et_investigation", - "content_type": "video", - "content_title": "emission_du_jeudi_19_fevrier_2026", - "content_format": "integrale", - "program": "telematin", - "program_id": "1283", - "content_id": 8156586, - "content_sponsored": false, - "content_logged": true, - "content_diffusion_date": "19022026", - "content_status": "replay", - "video_factory_id": "3cfb78f4-adf0-4100-90be-b337bf062221" - }, - "variant": "horizontal" - }, - { - "ariaLabel": "Journal 08h00 . Édition du jeudi 19 février 2026 . Vidéo . 30 minutes", - "content": { - "description": "Pour bien démarrer la journée, la rédaction de France 2 propose un point sur l'actualité. Les principales informations nationales et internationales sont passées en revue.", - "id": 8156580, - "label": null, - "url": "", - "thumbnail": { - "x1": "https://medias.france.tv/MlJ0nPDHlk_tINBwGmaxbErv2-s/240x0/filters:quality(85):format(webp)/1/4/9/d0bc530cab624e5d9ba963b37da79941.jpg", - "x2": "https://medias.france.tv/hmo4z4xkDGNX2RDcFgcnSNnRI4E/400x0/filters:quality(85):format(webp)/1/4/9/d0bc530cab624e5d9ba963b37da79941.jpg" - }, - "broadcastBeginDate": "08h00", - "captionLeading": "À regarder", - "caption": null, - "category": { - "id": "info", - "label": "Info" - }, - "channel": "francetv", - "csa": "TP", - "cta": "Regarder", - "duration": "30 min", - "icons": [], - "live": false, - "progress": null, - "title": "Édition du jeudi 19 février 2026", - "titleLeading": "Journal 08h00", - "type": "video" - }, - "options": { - - }, - "tracking": { - "channel": "france_2", - "channel_type": "premium", - "category": "info", - "sub_category": "jt", - "content_type": "video", - "content_title": "edition_du_jeudi_19_fevrier_2026", - "content_format": "integrale", - "program": "journal_08h00", - "program_id": "2375", - "content_id": 8156580, - "content_sponsored": false, - "content_logged": true, - "content_diffusion_date": "19022026", - "content_status": "replay", - "video_factory_id": "bfc04ab3-521b-4810-b6fa-cbc77537e28b" - }, - "variant": "horizontal" - }, - { - "ariaLabel": "Télématin . Émission du jeudi 19 février 2026 . Vidéo . 1 heure 15 minutes", - "content": { - "description": "De l'info et de la bonne humeur, sept jours sur sept : résolument dans l'air du temps, la première matinale de France, forte de sa richesse éditoriale et de sa dynamique d'équipe, aborde de nombreuses thématiques et traite l'actualité avec sérieux et sans dramatisation.", - "id": 8156583, - "label": null, - "url": "", - "thumbnail": { - "x1": "https://medias.france.tv/GUI0YHtwVu1IqS9r_RVelgSzuIw/240x0/filters:quality(85):format(webp)/a/5/7/26046e577f7e4f60abf17a273e18e75a.jpg", - "x2": "https://medias.france.tv/JfV-adXMQ4TQ16RpTlA9J35BcHI/400x0/filters:quality(85):format(webp)/a/5/7/26046e577f7e4f60abf17a273e18e75a.jpg" - }, - "broadcastBeginDate": "08h30", - "captionLeading": "À regarder", - "caption": null, - "category": { - "id": "society", - "label": "Société" - }, - "channel": "francetv", - "csa": "TP", - "cta": "Regarder", - "duration": "1 h 15 min", - "icons": [], - "live": false, - "progress": null, - "title": "Émission du jeudi 19 février 2026", - "titleLeading": "Télématin", - "type": "video" - }, - "options": { - - }, - "tracking": { - "channel": "france_2", - "channel_type": "premium", - "category": "societe|info", - "sub_category": "magazines_d_actualite|decryptage_et_investigation", - "content_type": "video", - "content_title": "emission_du_jeudi_19_fevrier_2026", - "content_format": "integrale", - "program": "telematin", - "program_id": "1283", - "content_id": 8156583, - "content_sponsored": false, - "content_logged": true, - "content_diffusion_date": "19022026", - "content_status": "indisponible", - "video_factory_id": "50eec72e-9920-4850-b70b-7e37ad6e3e1f" - }, - "variant": "horizontal" - }, - { - "ariaLabel": "Jeux Olympiques d'hiver . Ski alpinisme (F et H) / Ski acrobatique (H) . Vidéo . 3 heures 15 minutes", - "content": { - "description": "Le ski-alpinisme fait son entrée aux Jeux olympiques à Cortina. Une première historique pour la discipline. Parmi les prétendants aux médailles en sprint, on retrouve le Belge Maximilien Drion. En combiné nordique, épreuve de saut à ski par équipes programmée à 10h. En ski acrobatique, les qualifications du halfpipe messieurs débutent à 10h30 av...", - "id": 8156574, - "label": null, - "url": "/sport/les-jeux-olympiques-d-hiver/8156574-ski-alpinisme-f-et-h-ski-acrobatique-h.html", - "thumbnail": { - "x1": "https://medias.france.tv/M05d1Kto1XuK7A267TrnR7nUSeg/240x0/filters:quality(85):format(webp)/k/m/x/phpflhxmk.jpg", - "x2": "https://medias.france.tv/y_EMxE-FWAyrMKm888jH-LJTLqo/400x0/filters:quality(85):format(webp)/k/m/x/phpflhxmk.jpg" - }, - "broadcastBeginDate": "09h45", - "captionLeading": "À regarder", - "caption": null, - "category": { - "id": "sport", - "label": "Sport" - }, - "channel": "francetv", - "csa": "TP", - "cta": "Regarder", - "duration": "3 h 15 min", - "icons": [], - "live": false, - "progress": null, - "title": "Ski alpinisme (F et H) / Ski acrobatique (H)", - "titleLeading": "Jeux Olympiques d'hiver", - "type": "video" - }, - "options": { - - }, - "tracking": { - "channel": "france_2", - "channel_type": "premium", - "category": "sport", - "content_type": "video", - "content_title": "ski_alpinisme_f_et_h_ski_acrobatique_h", - "content_format": "integrale", - "highlight": "jeux_olympiques_d_hiver", - "content_id": 8156574, - "content_sponsored": false, - "content_logged": true, - "content_diffusion_date": "19022026", - "content_status": "replay", - "video_factory_id": "6331b70c-f8cd-47fa-974e-28680033db17" - }, - "variant": "horizontal" - }, - { - "ariaLabel": "Journal 13h00 . Édition du jeudi 19 février 2026 . Vidéo . 40 minutes", - "content": { - "description": "Tous les jours, à 13h, la rédaction propose un point sur l'actualité. Les informations nationales et internationales sont passées à la loupe et mises en perspective, illustrées par des reportages sur le terrain.", - "id": 8156577, - "label": null, - "url": "", - "thumbnail": { - "x1": "https://medias.france.tv/vzdnS4Qvj1-DXIFs0Dhfmaxa-gs/240x0/filters:quality(85):format(webp)/1/9/8/369a7d7cdfc94d28becb9becfa454891.jpg", - "x2": "https://medias.france.tv/Ual5fsCcuJJ4n--WWVnrpSNqZMM/400x0/filters:quality(85):format(webp)/1/9/8/369a7d7cdfc94d28becb9becfa454891.jpg" - }, - "broadcastBeginDate": "13h00", - "captionLeading": "À regarder", - "caption": null, - "category": { - "id": "info", - "label": "Info" - }, - "channel": "francetv", - "csa": "TP", - "cta": "Regarder", - "duration": "40 min", - "icons": [], - "live": false, - "progress": null, - "title": "Édition du jeudi 19 février 2026", - "titleLeading": "Journal 13h00", - "type": "video" - }, - "options": { - - }, - "tracking": { - "channel": "france_2", - "channel_type": "premium", - "region": "saint_pierre_et_miquelon", - "category": "info", - "sub_category": "jt", - "content_type": "video", - "content_title": "edition_du_jeudi_19_fevrier_2026", - "content_format": "integrale", - "program": "journal_13h00", - "program_id": "2379", - "content_id": 8156577, - "content_sponsored": false, - "content_logged": true, - "content_diffusion_date": "19022026", - "content_status": "replay", - "video_factory_id": "866477d7-9978-49fc-92db-95c51a84c299" - }, - "variant": "horizontal" - }, - { - "ariaLabel": "Journal Météo Climat . Journal Météo climat . Vidéo . 5 minutes", - "content": { - "description": "Un point quotidien sur l'actualité météo et climatique, avec des reportages et des interviews d'experts.", - "id": 8156568, - "label": null, - "url": "", - "thumbnail": { - "x1": "https://medias.france.tv/GSxVDxWPpAXGdCYqe7rENQlUZLU/240x0/filters:quality(85):format(webp)/3/6/6/54adec73339a408d820cac0508c70663.jpg", - "x2": "https://medias.france.tv/lHI572NFvhaysIytuGQ7CIk5iPE/400x0/filters:quality(85):format(webp)/3/6/6/54adec73339a408d820cac0508c70663.jpg" - }, - "broadcastBeginDate": "13h40", - "captionLeading": "À regarder", - "caption": null, - "category": { - "id": "info", - "label": "Info" - }, - "channel": "francetv", - "csa": "TP", - "cta": "Regarder", - "duration": "5 min", - "icons": [], - "live": false, - "progress": null, - "title": "Journal Météo climat", - "titleLeading": "Journal Météo Climat", - "type": "video" - }, - "options": { - - }, - "tracking": { - "channel": "france_2", - "channel_type": "premium", - "category": "info", - "sub_category": "meteo", - "content_type": "video", - "content_title": "journal_meteo_climat", - "content_format": "integrale", - "program": "journal_meteo_climat", - "program_id": "42535", - "content_id": 8156568, - "content_sponsored": false, - "content_logged": true, - "content_diffusion_date": "19022026", - "content_status": "replay", - "video_factory_id": "d14523e7-f77e-42b9-84dc-49dd67fdd722" - }, - "variant": "horizontal" - }, - { - "ariaLabel": "Consomag . Produit reconditionné : en cas de problème, est-il garanti ? . Vidéo . 15 minutes", - "content": { - "description": "Le magazine de l'Institut national de la consommation donne à chacun des conseils pratiques pour mieux consommer, toutes les thématiques peuvent être abordées autour de nos achats.", - "id": 8156571, - "label": null, - "url": "", - "thumbnail": { - "x1": "https://medias.france.tv/4k1alPn1hkw6THco_lLFzUbyFT8/240x0/filters:quality(85):format(webp)/b/9/e/bd4ea8919ee3496fb021888fe18bfe9b.jpg", - "x2": "https://medias.france.tv/DxwPp0tiKk_PE3gf6QJgSYHQ6uI/400x0/filters:quality(85):format(webp)/b/9/e/bd4ea8919ee3496fb021888fe18bfe9b.jpg" - }, - "broadcastBeginDate": "13h45", - "captionLeading": "À regarder", - "caption": null, - "category": { - "id": "society", - "label": "Société" - }, - "channel": "francetv", - "csa": "TP", - "cta": "Regarder", - "duration": "15 min", - "icons": [], - "live": false, - "progress": null, - "title": "Produit reconditionné : en cas de problème, est-il garanti ?", - "titleLeading": "Consomag", - "type": "video" - }, - "options": { - - }, - "tracking": { - "channel": "france_2", - "channel_type": "premium", - "category": "societe|info", - "sub_category": "magazines_d_actualite|decryptage_et_investigation", - "content_type": "video", - "content_title": "produit_reconditionne_en_cas_de_probleme_est_il_garanti", - "content_format": "integrale", - "program": "consomag", - "program_id": "1615", - "content_id": 8156571, - "content_sponsored": false, - "content_logged": true, - "content_diffusion_date": "19022026", - "content_status": "replay", - "video_factory_id": "39629384-910f-4f8c-9d51-00436d5187cb" - }, - "variant": "horizontal" - }, - { - "ariaLabel": "Jeux Olympiques d'hiver . Ski alpinisme (F et H) / Hockey sur glace (F) . Vidéo . 23 minutes", - "content": { - "description": "Qui seront sacrés premier et première championne olympique de ski-alpinisme, à l'issue des finales de sprint qui débutent à 14h ? En combiné nordique, le titre par équipes messieurs est décerné à l'issue de l'épreuve de ski de fond, sprint 2x7,5 km, qui débute également à 14h. Les Norvégiens sont les tenants du titre, devant l'Allemagne et le Ja...", - "id": 8156565, - "label": null, - "url": "/sport/les-jeux-olympiques-d-hiver/8156565-ski-alpinisme-f-et-h-hockey-sur-glace-f.html", - "thumbnail": { - "x1": "https://medias.france.tv/Ud3CeWLgMHiwNQvtd4NEF_OWZVE/240x0/filters:quality(85):format(webp)/v/v/y/phpqdyyvv.jpg", - "x2": "https://medias.france.tv/qp-j3cKMmq5meo6V94hyOOcAlB4/400x0/filters:quality(85):format(webp)/v/v/y/phpqdyyvv.jpg" - }, - "broadcastBeginDate": "14h00", - "captionLeading": "À regarder", - "caption": null, - "category": { - "id": "sport", - "label": "Sport" - }, - "channel": "francetv", - "csa": "TP", - "cta": "Regarder", - "duration": "23 min", - "icons": [], - "live": false, - "progress": null, - "title": "Ski alpinisme (F et H) / Hockey sur glace (F)", - "titleLeading": "Jeux Olympiques d'hiver", - "type": "video" - }, - "options": { - - }, - "tracking": { - "channel": "france_2", - "channel_type": "premium", - "region": "wallis_et_futuna_|guadeloupe|nouvelle_caledonie|saint_pierre_et_miquelon", - "category": "sport", - "content_type": "video", - "content_title": "ski_alpinisme_f_et_h_hockey_sur_glace_f", - "content_format": "integrale", - "highlight": "jeux_olympiques_d_hiver", - "content_id": 8156565, - "content_sponsored": false, - "content_logged": true, - "content_diffusion_date": "19022026", - "content_status": "replay", - "video_factory_id": "644c18b3-4760-426f-9faa-ecaed8dc22e8" - }, - "variant": "horizontal" - }, - { - "ariaLabel": "Jeux Olympiques d'hiver . Patinage de vitesse (H) / Hockey sur glace (F) . Vidéo . 3 heures 25 minutes", - "content": { - "description": "En patinage de vitesse, l'épreuve du 1500 m messieurs débute à 16h30. L'Américain Jordan Stolz est favori, avec l'Allemand Finn Sonnekalb, le Néerlandais Kjeld Nuis et le Chinois Ning Zhongyan. La finale dames de hockey sur glace se joue à 19h10 à la Milano Santagiulia Ice Hockey Arena. Qui succédera au palmarès aux Canadiennes, victorieuses des...", - "id": 8156562, - "label": null, - "url": "/sport/les-jeux-olympiques-d-hiver/8156562-patinage-de-vitesse-h-hockey-sur-glace-f.html", - "thumbnail": { - "x1": "https://medias.france.tv/ZU0UG9N0Bu-LZvlCdkcR9_S33RU/240x0/filters:quality(85):format(webp)/o/s/1/phpxya1so.jpg", - "x2": "https://medias.france.tv/ULjmo-nhuZa89e0CjOqQtbOHQ3s/400x0/filters:quality(85):format(webp)/o/s/1/phpxya1so.jpg" - }, - "broadcastBeginDate": "16h30", - "captionLeading": "À regarder", - "caption": null, - "category": { - "id": "sport", - "label": "Sport" - }, - "channel": "francetv", - "csa": "TP", - "cta": "Regarder", - "duration": "3 h 25 min", - "icons": [], - "live": false, - "progress": null, - "title": "Patinage de vitesse (H) / Hockey sur glace (F)", - "titleLeading": "Jeux Olympiques d'hiver", - "type": "video" - }, - "options": { - - }, - "tracking": { - "channel": "france_2", - "channel_type": "premium", - "category": "sport", - "content_type": "video", - "content_title": "patinage_de_vitesse_h_hockey_sur_glace_f", - "content_format": "integrale", - "highlight": "jeux_olympiques_d_hiver", - "content_id": 8156562, - "content_sponsored": false, - "content_logged": true, - "content_diffusion_date": "19022026", - "content_status": "replay", - "video_factory_id": "d3cf848f-017c-4c5d-afa1-d1f38f4027b7" - }, - "variant": "horizontal" - }, - { - "ariaLabel": "Journal 20h00 . Édition du jeudi 19 février 2026 . Vidéo . 55 minutes", - "content": { - "description": "Les principales informations nationales et internationales sont passées à la loupe et mises en perspective, illustrées par des reportages sur le terrain.", - "id": 8156559, - "label": null, - "url": "", - "thumbnail": { - "x1": "https://medias.france.tv/BTfZ2idtnBxvhxHkDXSo8_Av_WE/240x0/filters:quality(85):format(webp)/a/8/7/125078f88e4c49c888d8bae6b19f978a.jpg", - "x2": "https://medias.france.tv/8nx8oqOWXShe0_iXZ28D7a9oSrA/400x0/filters:quality(85):format(webp)/a/8/7/125078f88e4c49c888d8bae6b19f978a.jpg" - }, - "broadcastBeginDate": "19h55", - "captionLeading": "À regarder", - "caption": null, - "category": { - "id": "info", - "label": "Info" - }, - "channel": "francetv", - "csa": "TP", - "cta": "Regarder", - "duration": "55 min", - "icons": [], - "live": false, - "progress": null, - "title": "Édition du jeudi 19 février 2026", - "titleLeading": "Journal 20h00", - "type": "video" - }, - "options": { - - }, - "tracking": { - "channel": "france_2", - "channel_type": "premium", - "category": "info", - "sub_category": "jt", - "content_type": "video", - "content_title": "edition_du_jeudi_19_fevrier_2026", - "content_format": "integrale", - "program": "journal_20h00", - "program_id": "2383", - "content_id": 8156559, - "content_sponsored": false, - "content_logged": true, - "content_diffusion_date": "19022026", - "content_status": "replay", - "video_factory_id": "ca0297ec-9059-4d69-8ea4-c8f950624c99" - }, - "variant": "horizontal" - }, - { - "ariaLabel": "Journal Météo Climat . Journal Météo climat . Vidéo . 1 minute", - "content": { - "description": "Un point quotidien sur l'actualité météo et climatique, avec des reportages et des interviews d'experts.", - "id": 8156556, - "label": null, - "url": "", - "thumbnail": { - "x1": "https://medias.france.tv/ZmsDXtZWuKlozYx5MS4QbsHgcAs/240x0/filters:quality(85):format(webp)/e/0/d/0faaeaa70a854e02a6fe1fde2d267d0e.jpg", - "x2": "https://medias.france.tv/CQlKJceC4-y2L-KWmcwJ8eX_T2g/400x0/filters:quality(85):format(webp)/e/0/d/0faaeaa70a854e02a6fe1fde2d267d0e.jpg" - }, - "broadcastBeginDate": "20h50", - "captionLeading": "À regarder", - "caption": null, - "category": { - "id": "info", - "label": "Info" - }, - "channel": "francetv", - "csa": "TP", - "cta": "Regarder", - "duration": "1 min", - "icons": [], - "live": false, - "progress": null, - "title": "Journal Météo climat", - "titleLeading": "Journal Météo Climat", - "type": "video" - }, - "options": { - - }, - "tracking": { - "channel": "france_2", - "channel_type": "premium", - "category": "info", - "sub_category": "meteo", - "content_type": "video", - "content_title": "journal_meteo_climat", - "content_format": "integrale", - "program": "journal_meteo_climat", - "program_id": "42535", - "content_id": 8156556, - "content_sponsored": false, - "content_logged": true, - "content_diffusion_date": "19022026", - "content_status": "replay", - "video_factory_id": "fcf39789-8d42-4710-b8da-0c6f87a873b3" - }, - "variant": "horizontal" - }, - { - "ariaLabel": "Epopées en bleu . Vidéo . 4 minutes", - "content": { - "description": "Gros plan en images sur les principaux événements sportifs du jour.", - "id": 8165610, - "label": null, - "url": "", - "thumbnail": { - "x1": "https://medias.france.tv/HMLOxc6ONp6Ol5iZjoXWtC6qx-g/240x0/filters:quality(85):format(webp)/c/1/8/2303b6f77cc941a49ed8c63e3fc8b81c.jpg", - "x2": "https://medias.france.tv/N3tuxwoofZZMwGYJPgq9nbjaxJ8/400x0/filters:quality(85):format(webp)/c/1/8/2303b6f77cc941a49ed8c63e3fc8b81c.jpg" - }, - "broadcastBeginDate": "20h51", - "captionLeading": "À regarder", - "caption": null, - "category": { - "id": "info", - "label": "Info" - }, - "channel": "francetv", - "csa": "TP", - "cta": "Regarder", - "duration": "4 min", - "icons": [], - "live": false, - "progress": null, - "title": "Epopées en bleu", - "titleLeading": null, - "type": "video" - }, - "options": { - - }, - "tracking": { - "channel": "france_2", - "channel_type": "premium", - "region": "nouvelle_caledonie|mayotte", - "category": "info", - "content_type": "video", - "content_title": "epopees_en_bleu", - "content_format": "integrale", - "program": "image_du_jour_sports", - "program_id": "91005", - "content_id": 8165610, - "content_sponsored": false, - "content_logged": true, - "content_diffusion_date": "19022026", - "content_status": "replay", - "video_factory_id": "b6181e31-30b1-4499-8702-f3d1e0676600" - }, - "variant": "horizontal" - }, - { - "ariaLabel": "Jeux olympiques de Milan-Cortina 2026 . Vidéo . 1 minute", - "content": { - "description": "Gros plan en images sur les principaux événements sportifs du jour.", - "id": 8156550, - "label": null, - "url": "", - "thumbnail": { - "x1": "https://medias.france.tv/MwHIVCE1cXHBTXiWmx0oq2BcA7E/240x0/filters:quality(85):format(webp)/0/2/e/08f11d7d474145fdafa268d852bbde20.jpg", - "x2": "https://medias.france.tv/ylQN0h84Sd_aWuBCdkD1B9eqQAI/400x0/filters:quality(85):format(webp)/0/2/e/08f11d7d474145fdafa268d852bbde20.jpg" - }, - "broadcastBeginDate": "20h55", - "captionLeading": "À regarder", - "caption": null, - "category": { - "id": "info", - "label": "Info" - }, - "channel": "francetv", - "csa": "TP", - "cta": "Regarder", - "duration": "1 min", - "icons": [], - "live": false, - "progress": null, - "title": "Jeux olympiques de Milan-Cortina 2026", - "titleLeading": null, - "type": "video" - }, - "options": { - - }, - "tracking": { - "channel": "france_2", - "channel_type": "premium", - "region": "nouvelle_caledonie|reunion", - "category": "info", - "content_type": "video", - "content_title": "jeux_olympiques_de_milan_cortina_2026", - "content_format": "integrale", - "program": "image_du_jour_sports", - "program_id": "91005", - "content_id": 8156550, - "content_sponsored": false, - "content_logged": true, - "content_diffusion_date": "19022026", - "content_status": "replay", - "video_factory_id": "4e3b3f90-4f82-4e08-82b4-9d5b2c1d39af" - }, - "variant": "horizontal" - }, - { - "ariaLabel": "Basique, l'essentiel de la musique . Yael Naim . Vidéo . 9 minutes", - "content": { - "description": "Une pastille consacrée à l'actualité musicale, qui braque les projecteurs sur un ou une artiste.", - "id": 8156553, - "label": null, - "url": "/france-2/basique-l-essentiel-de-la-musique/8156553-yael-naim.html", - "thumbnail": { - "x1": "https://medias.france.tv/9yTg8BrHoQq0NvbZOeXaCF3fJzM/240x0/filters:quality(85):format(webp)/e/j/w/phpnwywje.png", - "x2": "https://medias.france.tv/7kRvH3_djLDqKEqqaXjMWkYOwnI/400x0/filters:quality(85):format(webp)/e/j/w/phpnwywje.png" - }, - "broadcastBeginDate": "20h56", - "captionLeading": "À regarder", - "caption": null, - "category": { - "id": "artShow", - "label": "Arts & spectacles" - }, - "channel": "francetv", - "csa": "TP", - "cta": "Regarder", - "duration": "9 min", - "icons": [], - "live": false, - "progress": null, - "title": "Yael Naim", - "titleLeading": "Basique, l'essentiel de la musique", - "type": "video" - }, - "options": { - - }, - "tracking": { - "channel": "france_2", - "channel_type": "premium", - "category": "arts_et_spectacles|divertissement", - "sub_category": "emissions_culturelles|emissions_de_divertissement", - "content_type": "video", - "content_title": "yael_naim", - "content_format": "integrale", - "program": "basique_l_essentiel_de_la_musique", - "program_id": "7025", - "content_id": 8156553, - "content_sponsored": false, - "content_logged": true, - "content_diffusion_date": "19022026", - "content_status": "replay", - "video_factory_id": "330681fa-b116-4d09-b61c-856442605f47" - }, - "variant": "horizontal" - }, - { - "ariaLabel": "Mot de passe : le duel . Émission du jeudi 8 janvier 2026 . Vidéo . 8 minutes 5 secondes . Sous-titré", - "content": { - "description": "Mot de passe - Le Duel est un jeu qui consiste à faire deviner des mots à un partenaire de jeu en donnant des mots indices. Il se joue avec deux candidats face à deux célébrités. Du lundi au jeudi, ce sont les Duels et la Finale se joue en fin de semaine, le vendredi, avec le meilleur des 2 candidats et les deux célébrités.", - "id": 8026797, - "label": null, - "url": "/france-2/mot-de-passe-le-duel/8026797-emission-du-jeudi-8-janvier-2026.html", - "thumbnail": { - "x1": "https://medias.france.tv/-1RzWx9FZTBPxqXus62nk8GXdd8/240x0/filters:quality(85):format(webp)/9/7/a/7eacababdb94435b9f29a0049b8ffa79.jpg", - "x2": "https://medias.france.tv/WCHO80CN3Dlt4C05BA8zUDw2VIA/400x0/filters:quality(85):format(webp)/9/7/a/7eacababdb94435b9f29a0049b8ffa79.jpg" - }, - "broadcastBeginDate": "21h05", - "captionLeading": "À regarder", - "caption": null, - "category": { - "id": "entertainment", - "label": "Divertissement" - }, - "channel": "francetv", - "csa": "TP", - "cta": "Regarder", - "duration": "8 min 5 s", - "icons": [ - { - "id": "st" - } - ], - "live": false, - "progress": null, - "title": "Émission du jeudi 8 janvier 2026", - "titleLeading": "Mot de passe : le duel", - "type": "video" - }, - "options": { - - }, - "tracking": { - "channel": "france_2", - "channel_type": "premium", - "category": "divertissement", - "sub_category": "jeux", - "content_type": "video", - "content_title": "emission_du_jeudi_8_janvier_2026", - "content_format": "integrale", - "program": "mot_de_passe_le_duel", - "program_id": "56191", - "content_id": 8026797, - "content_sponsored": false, - "content_logged": true, - "content_diffusion_date": "19022026", - "content_status": "replay", - "video_factory_id": "adf6bf06-506b-410a-8c64-59e926ab984c" - }, - "variant": "horizontal" - }, - { - "ariaLabel": "Jeux Olympiques d'hiver . Patinage artistique (F) / Ski acrobatique (F) . Vidéo . Audio-décrit . 2 heures 33 minutes", - "content": { - "description": "La soirée débute par la fin du programme libre dames de patinage artistique. L'Américaine Alysa Liu, championne du monde 2025, est la grande favorite pour le titre olympique, remporté en 2022, à Pékin, par la Russe Anna Chtcherbakova. Ses principales adversaires seront les Japonaises Kaori Sakamoto et Mone Chiba, l'Estonienne Niina Petrokina et ...", - "id": 8156544, - "label": null, - "url": "/sport/les-jeux-olympiques-d-hiver/8156544-patinage-artistique-f-ski-acrobatique-f.html", - "thumbnail": { - "x1": "https://medias.france.tv/gMhZF8RFU9_ULzI56AAkDEUW7BQ/240x0/filters:quality(85):format(webp)/h/j/1/phpvra1jh.jpg", - "x2": "https://medias.france.tv/h9Dh0iCS-ikeAKmdAwd_nXkaTSA/400x0/filters:quality(85):format(webp)/h/j/1/phpvra1jh.jpg" - }, - "broadcastBeginDate": "21h10", - "captionLeading": "À regarder", - "caption": null, - "category": { - "id": "sport", - "label": "Sport" - }, - "channel": "francetv", - "csa": "TP", - "cta": "Regarder", - "duration": "2 h 33 min", - "icons": [ - { - "id": "ad" - } - ], - "live": false, - "progress": null, - "title": "Patinage artistique (F) / Ski acrobatique (F)", - "titleLeading": "Jeux Olympiques d'hiver", - "type": "video" - }, - "options": { - - }, - "tracking": { - "channel": "france_2", - "channel_type": "premium", - "region": "saint_pierre_et_miquelon", - "category": "sport", - "content_type": "video", - "content_title": "patinage_artistique_f_ski_acrobatique_f", - "content_format": "integrale", - "highlight": "jeux_olympiques_d_hiver", - "content_id": 8156544, - "content_sponsored": false, - "content_logged": true, - "content_diffusion_date": "19022026", - "content_status": "replay", - "video_factory_id": "8fc870a9-a5d6-43ce-b8f7-e7945f5229ff" - }, - "variant": "horizontal" - }, - { - "ariaLabel": "JO Club . Émission du jeudi 19 février 2026 . Vidéo . 1 heure", - "content": { - "description": "Tous les soirs, tout au long de ces Jeux olympiques d'hiver de Milan-Cortina, Laurent Luyat revient, avec les journalistes et consultants de France Télévisions, sur les épreuves de la journée. Il accueille les athlètes et les médaillés du jour. La journée a été marquée par du combiné nordique, avec l'épreuve par équipes messieurs, les demi-final...", - "id": 8156547, - "label": null, - "url": "", - "thumbnail": { - "x1": "https://medias.france.tv/xuxaBPNFyhMiVB5eeYrZV_1nPj4/240x0/filters:quality(85):format(webp)/v/p/h/phpmhbhpv.jpg", - "x2": "https://medias.france.tv/szcQQVOSSqC70fcjHId4PxZ-wxE/400x0/filters:quality(85):format(webp)/v/p/h/phpmhbhpv.jpg" - }, - "broadcastBeginDate": "23h00", - "captionLeading": "À regarder", - "caption": null, - "category": { - "id": "info", - "label": "Info" - }, - "channel": "francetv", - "csa": "TP", - "cta": "Regarder", - "duration": "1 h", - "icons": [], - "live": false, - "progress": null, - "title": "Émission du jeudi 19 février 2026", - "titleLeading": "JO Club", - "type": "video" - }, - "options": { - - }, - "tracking": { - "channel": "france_2", - "channel_type": "premium", - "region": "martinique|guadeloupe|guyane", - "category": "info", - "content_type": "video", - "content_title": "emission_du_jeudi_19_fevrier_2026", - "content_format": "integrale", - "program": "jo_club", - "program_id": "5603", - "content_id": 8156547, - "content_sponsored": false, - "content_logged": true, - "content_diffusion_date": "19022026", - "content_status": "replay", - "video_factory_id": "98238f1c-37a0-497f-9e3a-5f05eb17ce5c" - }, - "variant": "horizontal" - }, - { - "ariaLabel": "Jeux Olympiques d'hiver . Jeux Olympiques d'hiver : Rediffusions . Vidéo . 5 heures 50 minutes", - "content": { - "description": "Les XXVes Jeux olympiques d'hiver 2026 se déroulent en Italie, à Milan et Cortina d'Ampezzo, et célèbrent les sports d'hiver avec 16 disciplines au menu de la compétition.", - "id": 8156541, - "label": null, - "url": "", - "thumbnail": { - "x1": "https://medias.france.tv/PRXSSEG8Mi9gyQp37QHrILo0HNg/240x0/filters:quality(85):format(webp)/c/g/b/phpxnobgc.jpg", - "x2": "https://medias.france.tv/4WT0xrlA1E6GxCFWkAdtAXjsKRs/400x0/filters:quality(85):format(webp)/c/g/b/phpxnobgc.jpg" - }, - "broadcastBeginDate": "00h00", - "captionLeading": "À regarder", - "caption": null, - "category": { - "id": "sport", - "label": "Sport" - }, - "channel": "francetv", - "csa": "TP", - "cta": "Regarder", - "duration": "5 h 50 min", - "icons": [], - "live": false, - "progress": null, - "title": "Jeux Olympiques d'hiver : Rediffusions", - "titleLeading": "Jeux Olympiques d'hiver", - "type": "video" - }, - "options": { - - }, - "tracking": { - "channel": "france_2", - "channel_type": "premium", - "region": "martinique", - "category": "sport", - "content_type": "video", - "content_title": "jeux_olympiques_d_hiver_rediffusions", - "content_format": "integrale", - "highlight": "jeux_olympiques_d_hiver", - "content_id": 8156541, - "content_sponsored": false, - "content_logged": true, - "content_diffusion_date": "20022026", - "content_status": "indisponible", - "video_factory_id": "7435a412-cdf0-4eaa-8168-29f466de95ef" - }, - "variant": "horizontal" - }, - { - "ariaLabel": "Mot de passe : le duel . Émission du jeudi 8 janvier 2026 . Vidéo . 8 minutes 5 secondes . Sous-titré", - "content": { - "description": "Mot de passe - Le Duel est un jeu qui consiste à faire deviner des mots à un partenaire de jeu en donnant des mots indices. Il se joue avec deux candidats face à deux célébrités. Du lundi au jeudi, ce sont les Duels et la Finale se joue en fin de semaine, le vendredi, avec le meilleur des 2 candidats et les deux célébrités.", - "id": 8026797, - "label": null, - "url": "/france-2/mot-de-passe-le-duel/8026797-emission-du-jeudi-8-janvier-2026.html", - "thumbnail": { - "x1": "https://medias.france.tv/-1RzWx9FZTBPxqXus62nk8GXdd8/240x0/filters:quality(85):format(webp)/9/7/a/7eacababdb94435b9f29a0049b8ffa79.jpg", - "x2": "https://medias.france.tv/WCHO80CN3Dlt4C05BA8zUDw2VIA/400x0/filters:quality(85):format(webp)/9/7/a/7eacababdb94435b9f29a0049b8ffa79.jpg" - }, - "broadcastBeginDate": "05h50", - "captionLeading": "À regarder", - "caption": null, - "category": { - "id": "entertainment", - "label": "Divertissement" - }, - "channel": "francetv", - "csa": "TP", - "cta": "Regarder", - "duration": "8 min 5 s", - "icons": [ - { - "id": "st" - } - ], - "live": false, - "progress": null, - "title": "Émission du jeudi 8 janvier 2026", - "titleLeading": "Mot de passe : le duel", - "type": "video" - }, - "options": { - - }, - "tracking": { - "channel": "france_2", - "channel_type": "premium", - "category": "divertissement", - "sub_category": "jeux", - "content_type": "video", - "content_title": "emission_du_jeudi_8_janvier_2026", - "content_format": "integrale", - "program": "mot_de_passe_le_duel", - "program_id": "56191", - "content_id": 8026797, - "content_sponsored": false, - "content_logged": true, - "content_diffusion_date": "20022026", - "content_status": "indisponible", - "video_factory_id": "6993405a-530b-4ea7-bcb6-4c079eaab6bf" - }, - "variant": "horizontal" - } +[ + { + "ariaLabel": "Le 6h info . Émission du jeudi 19 février 2026 . Vidéo . 30 minutes", + "content": { + "description": "Un rendez-vous réveil-matin, avec un point sur l'actualité assorti de différentes rubriques qui permettent d'en explorer certains aspects plus en profondeur.", + "id": 8156589, + "label": null, + "url": "", + "thumbnail": { + "x1": "https://medias.france.tv/S9p5NdAs4OR2UbyC1NIQWsYV-K4/240x0/filters:quality(85):format(webp)/b/f/3/e85c2e8fed4a4955965dfff63c3843fb.jpg", + "x2": "https://medias.france.tv/BtQR9kmC4LN0RPWr9WbXfDlap5o/400x0/filters:quality(85):format(webp)/b/f/3/e85c2e8fed4a4955965dfff63c3843fb.jpg" + }, + "broadcastBeginDate": "06h00", + "captionLeading": "À regarder", + "caption": null, + "category": { + "id": "info", + "label": "Info" + }, + "channel": "francetv", + "csa": "TP", + "cta": "Regarder", + "duration": "30 min", + "icons": [], + "live": false, + "progress": null, + "title": "Émission du jeudi 19 février 2026", + "titleLeading": "Le 6h info", + "type": "video" + }, + "options": { + + }, + "tracking": { + "channel": "france_2", + "channel_type": "premium", + "category": "info", + "sub_category": "jt", + "content_type": "video", + "content_title": "emission_du_jeudi_19_fevrier_2026", + "content_format": "integrale", + "program": "le_6h_info", + "program_id": "2367", + "content_id": 8156589, + "content_sponsored": false, + "content_logged": true, + "content_diffusion_date": "19022026", + "content_status": "replay", + "video_factory_id": "c91a950b-7f1b-42b5-b513-0b470336d1d6" + }, + "variant": "horizontal" + }, + { + "ariaLabel": "Télématin . Émission du jeudi 19 février 2026 . Vidéo . 1 heure 30 minutes", + "content": { + "description": "De l'info et de la bonne humeur, sept jours sur sept : résolument dans l'air du temps, la première matinale de France, forte de sa richesse éditoriale et de sa dynamique d'équipe, aborde de nombreuses thématiques et traite l'actualité avec sérieux et sans dramatisation.", + "id": 8156586, + "label": null, + "url": "", + "thumbnail": { + "x1": "https://medias.france.tv/7_elf6zKoS8sOO941AMMeLWcrME/240x0/filters:quality(85):format(webp)/3/3/c/afbdb3622c034f01bafb6108e0287c33.jpg", + "x2": "https://medias.france.tv/JT03SrO-4rnPiZXPjTPSswlJ4BA/400x0/filters:quality(85):format(webp)/3/3/c/afbdb3622c034f01bafb6108e0287c33.jpg" + }, + "broadcastBeginDate": "06h30", + "captionLeading": "À regarder", + "caption": null, + "category": { + "id": "society", + "label": "Société" + }, + "channel": "francetv", + "csa": "TP", + "cta": "Regarder", + "duration": "1 h 30 min", + "icons": [], + "live": false, + "progress": null, + "title": "Émission du jeudi 19 février 2026", + "titleLeading": "Télématin", + "type": "video" + }, + "options": { + + }, + "tracking": { + "channel": "france_2", + "channel_type": "premium", + "category": "societe|info", + "sub_category": "magazines_d_actualite|decryptage_et_investigation", + "content_type": "video", + "content_title": "emission_du_jeudi_19_fevrier_2026", + "content_format": "integrale", + "program": "telematin", + "program_id": "1283", + "content_id": 8156586, + "content_sponsored": false, + "content_logged": true, + "content_diffusion_date": "19022026", + "content_status": "replay", + "video_factory_id": "3cfb78f4-adf0-4100-90be-b337bf062221" + }, + "variant": "horizontal" + }, + { + "ariaLabel": "Journal 08h00 . Édition du jeudi 19 février 2026 . Vidéo . 30 minutes", + "content": { + "description": "Pour bien démarrer la journée, la rédaction de France 2 propose un point sur l'actualité. Les principales informations nationales et internationales sont passées en revue.", + "id": 8156580, + "label": null, + "url": "", + "thumbnail": { + "x1": "https://medias.france.tv/MlJ0nPDHlk_tINBwGmaxbErv2-s/240x0/filters:quality(85):format(webp)/1/4/9/d0bc530cab624e5d9ba963b37da79941.jpg", + "x2": "https://medias.france.tv/hmo4z4xkDGNX2RDcFgcnSNnRI4E/400x0/filters:quality(85):format(webp)/1/4/9/d0bc530cab624e5d9ba963b37da79941.jpg" + }, + "broadcastBeginDate": "08h00", + "captionLeading": "À regarder", + "caption": null, + "category": { + "id": "info", + "label": "Info" + }, + "channel": "francetv", + "csa": "TP", + "cta": "Regarder", + "duration": "30 min", + "icons": [], + "live": false, + "progress": null, + "title": "Édition du jeudi 19 février 2026", + "titleLeading": "Journal 08h00", + "type": "video" + }, + "options": { + + }, + "tracking": { + "channel": "france_2", + "channel_type": "premium", + "category": "info", + "sub_category": "jt", + "content_type": "video", + "content_title": "edition_du_jeudi_19_fevrier_2026", + "content_format": "integrale", + "program": "journal_08h00", + "program_id": "2375", + "content_id": 8156580, + "content_sponsored": false, + "content_logged": true, + "content_diffusion_date": "19022026", + "content_status": "replay", + "video_factory_id": "bfc04ab3-521b-4810-b6fa-cbc77537e28b" + }, + "variant": "horizontal" + }, + { + "ariaLabel": "Télématin . Émission du jeudi 19 février 2026 . Vidéo . 1 heure 15 minutes", + "content": { + "description": "De l'info et de la bonne humeur, sept jours sur sept : résolument dans l'air du temps, la première matinale de France, forte de sa richesse éditoriale et de sa dynamique d'équipe, aborde de nombreuses thématiques et traite l'actualité avec sérieux et sans dramatisation.", + "id": 8156583, + "label": null, + "url": "", + "thumbnail": { + "x1": "https://medias.france.tv/GUI0YHtwVu1IqS9r_RVelgSzuIw/240x0/filters:quality(85):format(webp)/a/5/7/26046e577f7e4f60abf17a273e18e75a.jpg", + "x2": "https://medias.france.tv/JfV-adXMQ4TQ16RpTlA9J35BcHI/400x0/filters:quality(85):format(webp)/a/5/7/26046e577f7e4f60abf17a273e18e75a.jpg" + }, + "broadcastBeginDate": "08h30", + "captionLeading": "À regarder", + "caption": null, + "category": { + "id": "society", + "label": "Société" + }, + "channel": "francetv", + "csa": "TP", + "cta": "Regarder", + "duration": "1 h 15 min", + "icons": [], + "live": false, + "progress": null, + "title": "Émission du jeudi 19 février 2026", + "titleLeading": "Télématin", + "type": "video" + }, + "options": { + + }, + "tracking": { + "channel": "france_2", + "channel_type": "premium", + "category": "societe|info", + "sub_category": "magazines_d_actualite|decryptage_et_investigation", + "content_type": "video", + "content_title": "emission_du_jeudi_19_fevrier_2026", + "content_format": "integrale", + "program": "telematin", + "program_id": "1283", + "content_id": 8156583, + "content_sponsored": false, + "content_logged": true, + "content_diffusion_date": "19022026", + "content_status": "indisponible", + "video_factory_id": "50eec72e-9920-4850-b70b-7e37ad6e3e1f" + }, + "variant": "horizontal" + }, + { + "ariaLabel": "Jeux Olympiques d'hiver . Ski alpinisme (F et H) / Ski acrobatique (H) . Vidéo . 3 heures 15 minutes", + "content": { + "description": "Le ski-alpinisme fait son entrée aux Jeux olympiques à Cortina. Une première historique pour la discipline. Parmi les prétendants aux médailles en sprint, on retrouve le Belge Maximilien Drion. En combiné nordique, épreuve de saut à ski par équipes programmée à 10h. En ski acrobatique, les qualifications du halfpipe messieurs débutent à 10h30 av...", + "id": 8156574, + "label": null, + "url": "/sport/les-jeux-olympiques-d-hiver/8156574-ski-alpinisme-f-et-h-ski-acrobatique-h.html", + "thumbnail": { + "x1": "https://medias.france.tv/M05d1Kto1XuK7A267TrnR7nUSeg/240x0/filters:quality(85):format(webp)/k/m/x/phpflhxmk.jpg", + "x2": "https://medias.france.tv/y_EMxE-FWAyrMKm888jH-LJTLqo/400x0/filters:quality(85):format(webp)/k/m/x/phpflhxmk.jpg" + }, + "broadcastBeginDate": "09h45", + "captionLeading": "À regarder", + "caption": null, + "category": { + "id": "sport", + "label": "Sport" + }, + "channel": "francetv", + "csa": "TP", + "cta": "Regarder", + "duration": "3 h 15 min", + "icons": [], + "live": false, + "progress": null, + "title": "Ski alpinisme (F et H) / Ski acrobatique (H)", + "titleLeading": "Jeux Olympiques d'hiver", + "type": "video" + }, + "options": { + + }, + "tracking": { + "channel": "france_2", + "channel_type": "premium", + "category": "sport", + "content_type": "video", + "content_title": "ski_alpinisme_f_et_h_ski_acrobatique_h", + "content_format": "integrale", + "highlight": "jeux_olympiques_d_hiver", + "content_id": 8156574, + "content_sponsored": false, + "content_logged": true, + "content_diffusion_date": "19022026", + "content_status": "replay", + "video_factory_id": "6331b70c-f8cd-47fa-974e-28680033db17" + }, + "variant": "horizontal" + }, + { + "ariaLabel": "Journal 13h00 . Édition du jeudi 19 février 2026 . Vidéo . 40 minutes", + "content": { + "description": "Tous les jours, à 13h, la rédaction propose un point sur l'actualité. Les informations nationales et internationales sont passées à la loupe et mises en perspective, illustrées par des reportages sur le terrain.", + "id": 8156577, + "label": null, + "url": "", + "thumbnail": { + "x1": "https://medias.france.tv/vzdnS4Qvj1-DXIFs0Dhfmaxa-gs/240x0/filters:quality(85):format(webp)/1/9/8/369a7d7cdfc94d28becb9becfa454891.jpg", + "x2": "https://medias.france.tv/Ual5fsCcuJJ4n--WWVnrpSNqZMM/400x0/filters:quality(85):format(webp)/1/9/8/369a7d7cdfc94d28becb9becfa454891.jpg" + }, + "broadcastBeginDate": "13h00", + "captionLeading": "À regarder", + "caption": null, + "category": { + "id": "info", + "label": "Info" + }, + "channel": "francetv", + "csa": "TP", + "cta": "Regarder", + "duration": "40 min", + "icons": [], + "live": false, + "progress": null, + "title": "Édition du jeudi 19 février 2026", + "titleLeading": "Journal 13h00", + "type": "video" + }, + "options": { + + }, + "tracking": { + "channel": "france_2", + "channel_type": "premium", + "region": "saint_pierre_et_miquelon", + "category": "info", + "sub_category": "jt", + "content_type": "video", + "content_title": "edition_du_jeudi_19_fevrier_2026", + "content_format": "integrale", + "program": "journal_13h00", + "program_id": "2379", + "content_id": 8156577, + "content_sponsored": false, + "content_logged": true, + "content_diffusion_date": "19022026", + "content_status": "replay", + "video_factory_id": "866477d7-9978-49fc-92db-95c51a84c299" + }, + "variant": "horizontal" + }, + { + "ariaLabel": "Journal Météo Climat . Journal Météo climat . Vidéo . 5 minutes", + "content": { + "description": "Un point quotidien sur l'actualité météo et climatique, avec des reportages et des interviews d'experts.", + "id": 8156568, + "label": null, + "url": "", + "thumbnail": { + "x1": "https://medias.france.tv/GSxVDxWPpAXGdCYqe7rENQlUZLU/240x0/filters:quality(85):format(webp)/3/6/6/54adec73339a408d820cac0508c70663.jpg", + "x2": "https://medias.france.tv/lHI572NFvhaysIytuGQ7CIk5iPE/400x0/filters:quality(85):format(webp)/3/6/6/54adec73339a408d820cac0508c70663.jpg" + }, + "broadcastBeginDate": "13h40", + "captionLeading": "À regarder", + "caption": null, + "category": { + "id": "info", + "label": "Info" + }, + "channel": "francetv", + "csa": "TP", + "cta": "Regarder", + "duration": "5 min", + "icons": [], + "live": false, + "progress": null, + "title": "Journal Météo climat", + "titleLeading": "Journal Météo Climat", + "type": "video" + }, + "options": { + + }, + "tracking": { + "channel": "france_2", + "channel_type": "premium", + "category": "info", + "sub_category": "meteo", + "content_type": "video", + "content_title": "journal_meteo_climat", + "content_format": "integrale", + "program": "journal_meteo_climat", + "program_id": "42535", + "content_id": 8156568, + "content_sponsored": false, + "content_logged": true, + "content_diffusion_date": "19022026", + "content_status": "replay", + "video_factory_id": "d14523e7-f77e-42b9-84dc-49dd67fdd722" + }, + "variant": "horizontal" + }, + { + "ariaLabel": "Consomag . Produit reconditionné : en cas de problème, est-il garanti ? . Vidéo . 15 minutes", + "content": { + "description": "Le magazine de l'Institut national de la consommation donne à chacun des conseils pratiques pour mieux consommer, toutes les thématiques peuvent être abordées autour de nos achats.", + "id": 8156571, + "label": null, + "url": "", + "thumbnail": { + "x1": "https://medias.france.tv/4k1alPn1hkw6THco_lLFzUbyFT8/240x0/filters:quality(85):format(webp)/b/9/e/bd4ea8919ee3496fb021888fe18bfe9b.jpg", + "x2": "https://medias.france.tv/DxwPp0tiKk_PE3gf6QJgSYHQ6uI/400x0/filters:quality(85):format(webp)/b/9/e/bd4ea8919ee3496fb021888fe18bfe9b.jpg" + }, + "broadcastBeginDate": "13h45", + "captionLeading": "À regarder", + "caption": null, + "category": { + "id": "society", + "label": "Société" + }, + "channel": "francetv", + "csa": "TP", + "cta": "Regarder", + "duration": "15 min", + "icons": [], + "live": false, + "progress": null, + "title": "Produit reconditionné : en cas de problème, est-il garanti ?", + "titleLeading": "Consomag", + "type": "video" + }, + "options": { + + }, + "tracking": { + "channel": "france_2", + "channel_type": "premium", + "category": "societe|info", + "sub_category": "magazines_d_actualite|decryptage_et_investigation", + "content_type": "video", + "content_title": "produit_reconditionne_en_cas_de_probleme_est_il_garanti", + "content_format": "integrale", + "program": "consomag", + "program_id": "1615", + "content_id": 8156571, + "content_sponsored": false, + "content_logged": true, + "content_diffusion_date": "19022026", + "content_status": "replay", + "video_factory_id": "39629384-910f-4f8c-9d51-00436d5187cb" + }, + "variant": "horizontal" + }, + { + "ariaLabel": "Jeux Olympiques d'hiver . Ski alpinisme (F et H) / Hockey sur glace (F) . Vidéo . 23 minutes", + "content": { + "description": "Qui seront sacrés premier et première championne olympique de ski-alpinisme, à l'issue des finales de sprint qui débutent à 14h ? En combiné nordique, le titre par équipes messieurs est décerné à l'issue de l'épreuve de ski de fond, sprint 2x7,5 km, qui débute également à 14h. Les Norvégiens sont les tenants du titre, devant l'Allemagne et le Ja...", + "id": 8156565, + "label": null, + "url": "/sport/les-jeux-olympiques-d-hiver/8156565-ski-alpinisme-f-et-h-hockey-sur-glace-f.html", + "thumbnail": { + "x1": "https://medias.france.tv/Ud3CeWLgMHiwNQvtd4NEF_OWZVE/240x0/filters:quality(85):format(webp)/v/v/y/phpqdyyvv.jpg", + "x2": "https://medias.france.tv/qp-j3cKMmq5meo6V94hyOOcAlB4/400x0/filters:quality(85):format(webp)/v/v/y/phpqdyyvv.jpg" + }, + "broadcastBeginDate": "14h00", + "captionLeading": "À regarder", + "caption": null, + "category": { + "id": "sport", + "label": "Sport" + }, + "channel": "francetv", + "csa": "TP", + "cta": "Regarder", + "duration": "23 min", + "icons": [], + "live": false, + "progress": null, + "title": "Ski alpinisme (F et H) / Hockey sur glace (F)", + "titleLeading": "Jeux Olympiques d'hiver", + "type": "video" + }, + "options": { + + }, + "tracking": { + "channel": "france_2", + "channel_type": "premium", + "region": "wallis_et_futuna_|guadeloupe|nouvelle_caledonie|saint_pierre_et_miquelon", + "category": "sport", + "content_type": "video", + "content_title": "ski_alpinisme_f_et_h_hockey_sur_glace_f", + "content_format": "integrale", + "highlight": "jeux_olympiques_d_hiver", + "content_id": 8156565, + "content_sponsored": false, + "content_logged": true, + "content_diffusion_date": "19022026", + "content_status": "replay", + "video_factory_id": "644c18b3-4760-426f-9faa-ecaed8dc22e8" + }, + "variant": "horizontal" + }, + { + "ariaLabel": "Jeux Olympiques d'hiver . Patinage de vitesse (H) / Hockey sur glace (F) . Vidéo . 3 heures 25 minutes", + "content": { + "description": "En patinage de vitesse, l'épreuve du 1500 m messieurs débute à 16h30. L'Américain Jordan Stolz est favori, avec l'Allemand Finn Sonnekalb, le Néerlandais Kjeld Nuis et le Chinois Ning Zhongyan. La finale dames de hockey sur glace se joue à 19h10 à la Milano Santagiulia Ice Hockey Arena. Qui succédera au palmarès aux Canadiennes, victorieuses des...", + "id": 8156562, + "label": null, + "url": "/sport/les-jeux-olympiques-d-hiver/8156562-patinage-de-vitesse-h-hockey-sur-glace-f.html", + "thumbnail": { + "x1": "https://medias.france.tv/ZU0UG9N0Bu-LZvlCdkcR9_S33RU/240x0/filters:quality(85):format(webp)/o/s/1/phpxya1so.jpg", + "x2": "https://medias.france.tv/ULjmo-nhuZa89e0CjOqQtbOHQ3s/400x0/filters:quality(85):format(webp)/o/s/1/phpxya1so.jpg" + }, + "broadcastBeginDate": "16h30", + "captionLeading": "À regarder", + "caption": null, + "category": { + "id": "sport", + "label": "Sport" + }, + "channel": "francetv", + "csa": "TP", + "cta": "Regarder", + "duration": "3 h 25 min", + "icons": [], + "live": false, + "progress": null, + "title": "Patinage de vitesse (H) / Hockey sur glace (F)", + "titleLeading": "Jeux Olympiques d'hiver", + "type": "video" + }, + "options": { + + }, + "tracking": { + "channel": "france_2", + "channel_type": "premium", + "category": "sport", + "content_type": "video", + "content_title": "patinage_de_vitesse_h_hockey_sur_glace_f", + "content_format": "integrale", + "highlight": "jeux_olympiques_d_hiver", + "content_id": 8156562, + "content_sponsored": false, + "content_logged": true, + "content_diffusion_date": "19022026", + "content_status": "replay", + "video_factory_id": "d3cf848f-017c-4c5d-afa1-d1f38f4027b7" + }, + "variant": "horizontal" + }, + { + "ariaLabel": "Journal 20h00 . Édition du jeudi 19 février 2026 . Vidéo . 55 minutes", + "content": { + "description": "Les principales informations nationales et internationales sont passées à la loupe et mises en perspective, illustrées par des reportages sur le terrain.", + "id": 8156559, + "label": null, + "url": "", + "thumbnail": { + "x1": "https://medias.france.tv/BTfZ2idtnBxvhxHkDXSo8_Av_WE/240x0/filters:quality(85):format(webp)/a/8/7/125078f88e4c49c888d8bae6b19f978a.jpg", + "x2": "https://medias.france.tv/8nx8oqOWXShe0_iXZ28D7a9oSrA/400x0/filters:quality(85):format(webp)/a/8/7/125078f88e4c49c888d8bae6b19f978a.jpg" + }, + "broadcastBeginDate": "19h55", + "captionLeading": "À regarder", + "caption": null, + "category": { + "id": "info", + "label": "Info" + }, + "channel": "francetv", + "csa": "TP", + "cta": "Regarder", + "duration": "55 min", + "icons": [], + "live": false, + "progress": null, + "title": "Édition du jeudi 19 février 2026", + "titleLeading": "Journal 20h00", + "type": "video" + }, + "options": { + + }, + "tracking": { + "channel": "france_2", + "channel_type": "premium", + "category": "info", + "sub_category": "jt", + "content_type": "video", + "content_title": "edition_du_jeudi_19_fevrier_2026", + "content_format": "integrale", + "program": "journal_20h00", + "program_id": "2383", + "content_id": 8156559, + "content_sponsored": false, + "content_logged": true, + "content_diffusion_date": "19022026", + "content_status": "replay", + "video_factory_id": "ca0297ec-9059-4d69-8ea4-c8f950624c99" + }, + "variant": "horizontal" + }, + { + "ariaLabel": "Journal Météo Climat . Journal Météo climat . Vidéo . 1 minute", + "content": { + "description": "Un point quotidien sur l'actualité météo et climatique, avec des reportages et des interviews d'experts.", + "id": 8156556, + "label": null, + "url": "", + "thumbnail": { + "x1": "https://medias.france.tv/ZmsDXtZWuKlozYx5MS4QbsHgcAs/240x0/filters:quality(85):format(webp)/e/0/d/0faaeaa70a854e02a6fe1fde2d267d0e.jpg", + "x2": "https://medias.france.tv/CQlKJceC4-y2L-KWmcwJ8eX_T2g/400x0/filters:quality(85):format(webp)/e/0/d/0faaeaa70a854e02a6fe1fde2d267d0e.jpg" + }, + "broadcastBeginDate": "20h50", + "captionLeading": "À regarder", + "caption": null, + "category": { + "id": "info", + "label": "Info" + }, + "channel": "francetv", + "csa": "TP", + "cta": "Regarder", + "duration": "1 min", + "icons": [], + "live": false, + "progress": null, + "title": "Journal Météo climat", + "titleLeading": "Journal Météo Climat", + "type": "video" + }, + "options": { + + }, + "tracking": { + "channel": "france_2", + "channel_type": "premium", + "category": "info", + "sub_category": "meteo", + "content_type": "video", + "content_title": "journal_meteo_climat", + "content_format": "integrale", + "program": "journal_meteo_climat", + "program_id": "42535", + "content_id": 8156556, + "content_sponsored": false, + "content_logged": true, + "content_diffusion_date": "19022026", + "content_status": "replay", + "video_factory_id": "fcf39789-8d42-4710-b8da-0c6f87a873b3" + }, + "variant": "horizontal" + }, + { + "ariaLabel": "Epopées en bleu . Vidéo . 4 minutes", + "content": { + "description": "Gros plan en images sur les principaux événements sportifs du jour.", + "id": 8165610, + "label": null, + "url": "", + "thumbnail": { + "x1": "https://medias.france.tv/HMLOxc6ONp6Ol5iZjoXWtC6qx-g/240x0/filters:quality(85):format(webp)/c/1/8/2303b6f77cc941a49ed8c63e3fc8b81c.jpg", + "x2": "https://medias.france.tv/N3tuxwoofZZMwGYJPgq9nbjaxJ8/400x0/filters:quality(85):format(webp)/c/1/8/2303b6f77cc941a49ed8c63e3fc8b81c.jpg" + }, + "broadcastBeginDate": "20h51", + "captionLeading": "À regarder", + "caption": null, + "category": { + "id": "info", + "label": "Info" + }, + "channel": "francetv", + "csa": "TP", + "cta": "Regarder", + "duration": "4 min", + "icons": [], + "live": false, + "progress": null, + "title": "Epopées en bleu", + "titleLeading": null, + "type": "video" + }, + "options": { + + }, + "tracking": { + "channel": "france_2", + "channel_type": "premium", + "region": "nouvelle_caledonie|mayotte", + "category": "info", + "content_type": "video", + "content_title": "epopees_en_bleu", + "content_format": "integrale", + "program": "image_du_jour_sports", + "program_id": "91005", + "content_id": 8165610, + "content_sponsored": false, + "content_logged": true, + "content_diffusion_date": "19022026", + "content_status": "replay", + "video_factory_id": "b6181e31-30b1-4499-8702-f3d1e0676600" + }, + "variant": "horizontal" + }, + { + "ariaLabel": "Jeux olympiques de Milan-Cortina 2026 . Vidéo . 1 minute", + "content": { + "description": "Gros plan en images sur les principaux événements sportifs du jour.", + "id": 8156550, + "label": null, + "url": "", + "thumbnail": { + "x1": "https://medias.france.tv/MwHIVCE1cXHBTXiWmx0oq2BcA7E/240x0/filters:quality(85):format(webp)/0/2/e/08f11d7d474145fdafa268d852bbde20.jpg", + "x2": "https://medias.france.tv/ylQN0h84Sd_aWuBCdkD1B9eqQAI/400x0/filters:quality(85):format(webp)/0/2/e/08f11d7d474145fdafa268d852bbde20.jpg" + }, + "broadcastBeginDate": "20h55", + "captionLeading": "À regarder", + "caption": null, + "category": { + "id": "info", + "label": "Info" + }, + "channel": "francetv", + "csa": "TP", + "cta": "Regarder", + "duration": "1 min", + "icons": [], + "live": false, + "progress": null, + "title": "Jeux olympiques de Milan-Cortina 2026", + "titleLeading": null, + "type": "video" + }, + "options": { + + }, + "tracking": { + "channel": "france_2", + "channel_type": "premium", + "region": "nouvelle_caledonie|reunion", + "category": "info", + "content_type": "video", + "content_title": "jeux_olympiques_de_milan_cortina_2026", + "content_format": "integrale", + "program": "image_du_jour_sports", + "program_id": "91005", + "content_id": 8156550, + "content_sponsored": false, + "content_logged": true, + "content_diffusion_date": "19022026", + "content_status": "replay", + "video_factory_id": "4e3b3f90-4f82-4e08-82b4-9d5b2c1d39af" + }, + "variant": "horizontal" + }, + { + "ariaLabel": "Basique, l'essentiel de la musique . Yael Naim . Vidéo . 9 minutes", + "content": { + "description": "Une pastille consacrée à l'actualité musicale, qui braque les projecteurs sur un ou une artiste.", + "id": 8156553, + "label": null, + "url": "/france-2/basique-l-essentiel-de-la-musique/8156553-yael-naim.html", + "thumbnail": { + "x1": "https://medias.france.tv/9yTg8BrHoQq0NvbZOeXaCF3fJzM/240x0/filters:quality(85):format(webp)/e/j/w/phpnwywje.png", + "x2": "https://medias.france.tv/7kRvH3_djLDqKEqqaXjMWkYOwnI/400x0/filters:quality(85):format(webp)/e/j/w/phpnwywje.png" + }, + "broadcastBeginDate": "20h56", + "captionLeading": "À regarder", + "caption": null, + "category": { + "id": "artShow", + "label": "Arts & spectacles" + }, + "channel": "francetv", + "csa": "TP", + "cta": "Regarder", + "duration": "9 min", + "icons": [], + "live": false, + "progress": null, + "title": "Yael Naim", + "titleLeading": "Basique, l'essentiel de la musique", + "type": "video" + }, + "options": { + + }, + "tracking": { + "channel": "france_2", + "channel_type": "premium", + "category": "arts_et_spectacles|divertissement", + "sub_category": "emissions_culturelles|emissions_de_divertissement", + "content_type": "video", + "content_title": "yael_naim", + "content_format": "integrale", + "program": "basique_l_essentiel_de_la_musique", + "program_id": "7025", + "content_id": 8156553, + "content_sponsored": false, + "content_logged": true, + "content_diffusion_date": "19022026", + "content_status": "replay", + "video_factory_id": "330681fa-b116-4d09-b61c-856442605f47" + }, + "variant": "horizontal" + }, + { + "ariaLabel": "Mot de passe : le duel . Émission du jeudi 8 janvier 2026 . Vidéo . 8 minutes 5 secondes . Sous-titré", + "content": { + "description": "Mot de passe - Le Duel est un jeu qui consiste à faire deviner des mots à un partenaire de jeu en donnant des mots indices. Il se joue avec deux candidats face à deux célébrités. Du lundi au jeudi, ce sont les Duels et la Finale se joue en fin de semaine, le vendredi, avec le meilleur des 2 candidats et les deux célébrités.", + "id": 8026797, + "label": null, + "url": "/france-2/mot-de-passe-le-duel/8026797-emission-du-jeudi-8-janvier-2026.html", + "thumbnail": { + "x1": "https://medias.france.tv/-1RzWx9FZTBPxqXus62nk8GXdd8/240x0/filters:quality(85):format(webp)/9/7/a/7eacababdb94435b9f29a0049b8ffa79.jpg", + "x2": "https://medias.france.tv/WCHO80CN3Dlt4C05BA8zUDw2VIA/400x0/filters:quality(85):format(webp)/9/7/a/7eacababdb94435b9f29a0049b8ffa79.jpg" + }, + "broadcastBeginDate": "21h05", + "captionLeading": "À regarder", + "caption": null, + "category": { + "id": "entertainment", + "label": "Divertissement" + }, + "channel": "francetv", + "csa": "TP", + "cta": "Regarder", + "duration": "8 min 5 s", + "icons": [ + { + "id": "st" + } + ], + "live": false, + "progress": null, + "title": "Émission du jeudi 8 janvier 2026", + "titleLeading": "Mot de passe : le duel", + "type": "video" + }, + "options": { + + }, + "tracking": { + "channel": "france_2", + "channel_type": "premium", + "category": "divertissement", + "sub_category": "jeux", + "content_type": "video", + "content_title": "emission_du_jeudi_8_janvier_2026", + "content_format": "integrale", + "program": "mot_de_passe_le_duel", + "program_id": "56191", + "content_id": 8026797, + "content_sponsored": false, + "content_logged": true, + "content_diffusion_date": "19022026", + "content_status": "replay", + "video_factory_id": "adf6bf06-506b-410a-8c64-59e926ab984c" + }, + "variant": "horizontal" + }, + { + "ariaLabel": "Jeux Olympiques d'hiver . Patinage artistique (F) / Ski acrobatique (F) . Vidéo . Audio-décrit . 2 heures 33 minutes", + "content": { + "description": "La soirée débute par la fin du programme libre dames de patinage artistique. L'Américaine Alysa Liu, championne du monde 2025, est la grande favorite pour le titre olympique, remporté en 2022, à Pékin, par la Russe Anna Chtcherbakova. Ses principales adversaires seront les Japonaises Kaori Sakamoto et Mone Chiba, l'Estonienne Niina Petrokina et ...", + "id": 8156544, + "label": null, + "url": "/sport/les-jeux-olympiques-d-hiver/8156544-patinage-artistique-f-ski-acrobatique-f.html", + "thumbnail": { + "x1": "https://medias.france.tv/gMhZF8RFU9_ULzI56AAkDEUW7BQ/240x0/filters:quality(85):format(webp)/h/j/1/phpvra1jh.jpg", + "x2": "https://medias.france.tv/h9Dh0iCS-ikeAKmdAwd_nXkaTSA/400x0/filters:quality(85):format(webp)/h/j/1/phpvra1jh.jpg" + }, + "broadcastBeginDate": "21h10", + "captionLeading": "À regarder", + "caption": null, + "category": { + "id": "sport", + "label": "Sport" + }, + "channel": "francetv", + "csa": "TP", + "cta": "Regarder", + "duration": "2 h 33 min", + "icons": [ + { + "id": "ad" + } + ], + "live": false, + "progress": null, + "title": "Patinage artistique (F) / Ski acrobatique (F)", + "titleLeading": "Jeux Olympiques d'hiver", + "type": "video" + }, + "options": { + + }, + "tracking": { + "channel": "france_2", + "channel_type": "premium", + "region": "saint_pierre_et_miquelon", + "category": "sport", + "content_type": "video", + "content_title": "patinage_artistique_f_ski_acrobatique_f", + "content_format": "integrale", + "highlight": "jeux_olympiques_d_hiver", + "content_id": 8156544, + "content_sponsored": false, + "content_logged": true, + "content_diffusion_date": "19022026", + "content_status": "replay", + "video_factory_id": "8fc870a9-a5d6-43ce-b8f7-e7945f5229ff" + }, + "variant": "horizontal" + }, + { + "ariaLabel": "JO Club . Émission du jeudi 19 février 2026 . Vidéo . 1 heure", + "content": { + "description": "Tous les soirs, tout au long de ces Jeux olympiques d'hiver de Milan-Cortina, Laurent Luyat revient, avec les journalistes et consultants de France Télévisions, sur les épreuves de la journée. Il accueille les athlètes et les médaillés du jour. La journée a été marquée par du combiné nordique, avec l'épreuve par équipes messieurs, les demi-final...", + "id": 8156547, + "label": null, + "url": "", + "thumbnail": { + "x1": "https://medias.france.tv/xuxaBPNFyhMiVB5eeYrZV_1nPj4/240x0/filters:quality(85):format(webp)/v/p/h/phpmhbhpv.jpg", + "x2": "https://medias.france.tv/szcQQVOSSqC70fcjHId4PxZ-wxE/400x0/filters:quality(85):format(webp)/v/p/h/phpmhbhpv.jpg" + }, + "broadcastBeginDate": "23h00", + "captionLeading": "À regarder", + "caption": null, + "category": { + "id": "info", + "label": "Info" + }, + "channel": "francetv", + "csa": "TP", + "cta": "Regarder", + "duration": "1 h", + "icons": [], + "live": false, + "progress": null, + "title": "Émission du jeudi 19 février 2026", + "titleLeading": "JO Club", + "type": "video" + }, + "options": { + + }, + "tracking": { + "channel": "france_2", + "channel_type": "premium", + "region": "martinique|guadeloupe|guyane", + "category": "info", + "content_type": "video", + "content_title": "emission_du_jeudi_19_fevrier_2026", + "content_format": "integrale", + "program": "jo_club", + "program_id": "5603", + "content_id": 8156547, + "content_sponsored": false, + "content_logged": true, + "content_diffusion_date": "19022026", + "content_status": "replay", + "video_factory_id": "98238f1c-37a0-497f-9e3a-5f05eb17ce5c" + }, + "variant": "horizontal" + }, + { + "ariaLabel": "Jeux Olympiques d'hiver . Jeux Olympiques d'hiver : Rediffusions . Vidéo . 5 heures 50 minutes", + "content": { + "description": "Les XXVes Jeux olympiques d'hiver 2026 se déroulent en Italie, à Milan et Cortina d'Ampezzo, et célèbrent les sports d'hiver avec 16 disciplines au menu de la compétition.", + "id": 8156541, + "label": null, + "url": "", + "thumbnail": { + "x1": "https://medias.france.tv/PRXSSEG8Mi9gyQp37QHrILo0HNg/240x0/filters:quality(85):format(webp)/c/g/b/phpxnobgc.jpg", + "x2": "https://medias.france.tv/4WT0xrlA1E6GxCFWkAdtAXjsKRs/400x0/filters:quality(85):format(webp)/c/g/b/phpxnobgc.jpg" + }, + "broadcastBeginDate": "00h00", + "captionLeading": "À regarder", + "caption": null, + "category": { + "id": "sport", + "label": "Sport" + }, + "channel": "francetv", + "csa": "TP", + "cta": "Regarder", + "duration": "5 h 50 min", + "icons": [], + "live": false, + "progress": null, + "title": "Jeux Olympiques d'hiver : Rediffusions", + "titleLeading": "Jeux Olympiques d'hiver", + "type": "video" + }, + "options": { + + }, + "tracking": { + "channel": "france_2", + "channel_type": "premium", + "region": "martinique", + "category": "sport", + "content_type": "video", + "content_title": "jeux_olympiques_d_hiver_rediffusions", + "content_format": "integrale", + "highlight": "jeux_olympiques_d_hiver", + "content_id": 8156541, + "content_sponsored": false, + "content_logged": true, + "content_diffusion_date": "20022026", + "content_status": "indisponible", + "video_factory_id": "7435a412-cdf0-4eaa-8168-29f466de95ef" + }, + "variant": "horizontal" + }, + { + "ariaLabel": "Mot de passe : le duel . Émission du jeudi 8 janvier 2026 . Vidéo . 8 minutes 5 secondes . Sous-titré", + "content": { + "description": "Mot de passe - Le Duel est un jeu qui consiste à faire deviner des mots à un partenaire de jeu en donnant des mots indices. Il se joue avec deux candidats face à deux célébrités. Du lundi au jeudi, ce sont les Duels et la Finale se joue en fin de semaine, le vendredi, avec le meilleur des 2 candidats et les deux célébrités.", + "id": 8026797, + "label": null, + "url": "/france-2/mot-de-passe-le-duel/8026797-emission-du-jeudi-8-janvier-2026.html", + "thumbnail": { + "x1": "https://medias.france.tv/-1RzWx9FZTBPxqXus62nk8GXdd8/240x0/filters:quality(85):format(webp)/9/7/a/7eacababdb94435b9f29a0049b8ffa79.jpg", + "x2": "https://medias.france.tv/WCHO80CN3Dlt4C05BA8zUDw2VIA/400x0/filters:quality(85):format(webp)/9/7/a/7eacababdb94435b9f29a0049b8ffa79.jpg" + }, + "broadcastBeginDate": "05h50", + "captionLeading": "À regarder", + "caption": null, + "category": { + "id": "entertainment", + "label": "Divertissement" + }, + "channel": "francetv", + "csa": "TP", + "cta": "Regarder", + "duration": "8 min 5 s", + "icons": [ + { + "id": "st" + } + ], + "live": false, + "progress": null, + "title": "Émission du jeudi 8 janvier 2026", + "titleLeading": "Mot de passe : le duel", + "type": "video" + }, + "options": { + + }, + "tracking": { + "channel": "france_2", + "channel_type": "premium", + "category": "divertissement", + "sub_category": "jeux", + "content_type": "video", + "content_title": "emission_du_jeudi_8_janvier_2026", + "content_format": "integrale", + "program": "mot_de_passe_le_duel", + "program_id": "56191", + "content_id": 8026797, + "content_sponsored": false, + "content_logged": true, + "content_diffusion_date": "20022026", + "content_status": "indisponible", + "video_factory_id": "6993405a-530b-4ea7-bcb6-4c079eaab6bf" + }, + "variant": "horizontal" + } ] \ No newline at end of file diff --git a/sites/france.tv/france.tv.channels.xml b/sites/france.tv/france.tv.channels.xml index 4cf7b227e..192b28d62 100644 --- a/sites/france.tv/france.tv.channels.xml +++ b/sites/france.tv/france.tv.channels.xml @@ -1,18 +1,18 @@ -<?xml version="1.0" encoding="UTF-8"?> -<channels> - <channel site="france.tv" site_id="arte" lang="fr" xmltv_id="Arte.de@France">Arté</channel> - <channel site="france.tv" site_id="documentaire" lang="fr" xmltv_id="">France Télévisions Docs</channel> - <channel site="france.tv" site_id="france-2" lang="fr" xmltv_id="France2.fr">France 2</channel> - <channel site="france.tv" site_id="france-3" lang="fr" xmltv_id="France3.fr">France 3</channel> - <channel site="france.tv" site_id="france-4" lang="fr" xmltv_id="France4.fr">France 4</channel> - <channel site="france.tv" site_id="france-5" lang="fr" xmltv_id="France5.fr">France 5</channel> - <channel site="france.tv" site_id="france-24" lang="fr" xmltv_id="France24.fr">France 24</channel> - <channel site="france.tv" site_id="franceinfo" lang="fr" xmltv_id="FranceInfo.fr">Franceinfo</channel> - <channel site="france.tv" site_id="francetv" lang="fr" xmltv_id="">France TV</channel> - <channel site="france.tv" site_id="ina" lang="fr" xmltv_id="">INA (Institut National de l&#x27;Audiovisuel)</channel> - <channel site="france.tv" site_id="lcp-public-senat" lang="fr" xmltv_id="LCPPublicSenat.fr">LCP Public Sénat</channel> - <channel site="france.tv" site_id="mieux" lang="fr" xmltv_id="">Mieux</channel> - <channel site="france.tv" site_id="serie" lang="fr" xmltv_id="">France Télévisions Séries</channel> - <channel site="france.tv" site_id="sport" lang="fr" xmltv_id="">France Télévisions Sport</channel> - <channel site="france.tv" site_id="tv5-monde" lang="fr" xmltv_id="">TV5 Monde Plus</channel> -</channels> +<?xml version="1.0" encoding="UTF-8"?> +<channels> + <channel site="france.tv" site_id="arte" lang="fr" xmltv_id="Arte.de@France">Arté</channel> + <channel site="france.tv" site_id="documentaire" lang="fr" xmltv_id="">France Télévisions Docs</channel> + <channel site="france.tv" site_id="france-2" lang="fr" xmltv_id="France2.fr">France 2</channel> + <channel site="france.tv" site_id="france-3" lang="fr" xmltv_id="France3.fr">France 3</channel> + <channel site="france.tv" site_id="france-4" lang="fr" xmltv_id="France4.fr">France 4</channel> + <channel site="france.tv" site_id="france-5" lang="fr" xmltv_id="France5.fr">France 5</channel> + <channel site="france.tv" site_id="france-24" lang="fr" xmltv_id="France24.fr">France 24</channel> + <channel site="france.tv" site_id="franceinfo" lang="fr" xmltv_id="FranceInfo.fr">Franceinfo</channel> + <channel site="france.tv" site_id="francetv" lang="fr" xmltv_id="">France TV</channel> + <channel site="france.tv" site_id="ina" lang="fr" xmltv_id="">INA (Institut National de l&#x27;Audiovisuel)</channel> + <channel site="france.tv" site_id="lcp-public-senat" lang="fr" xmltv_id="LCPPublicSenat.fr">LCP Public Sénat</channel> + <channel site="france.tv" site_id="mieux" lang="fr" xmltv_id="">Mieux</channel> + <channel site="france.tv" site_id="serie" lang="fr" xmltv_id="">France Télévisions Séries</channel> + <channel site="france.tv" site_id="sport" lang="fr" xmltv_id="">France Télévisions Sport</channel> + <channel site="france.tv" site_id="tv5-monde" lang="fr" xmltv_id="">TV5 Monde Plus</channel> +</channels> diff --git a/sites/france.tv/france.tv.config.js b/sites/france.tv/france.tv.config.js index 84a0ce8b6..b8327a70c 100644 --- a/sites/france.tv/france.tv.config.js +++ b/sites/france.tv/france.tv.config.js @@ -1,159 +1,159 @@ -const dayjs = require('dayjs') -const axios = require('axios') -const utc = require('dayjs/plugin/utc') -const timezone = require('dayjs/plugin/timezone') -const customParseFormat = require('dayjs/plugin/customParseFormat') - -dayjs.extend(utc) -dayjs.extend(timezone) -dayjs.extend(customParseFormat) -dayjs.tz.setDefault('Europe/Paris') - -// Because France is excellent at pointing hours, their programs ALL start at 5/6 am, -// so we need to keep track of the earlier day's program to get the midnight programming. How... odd. -module.exports = { - site: 'france.tv', - days: 2, - url: function ({ channel, date }) { - return `https://www.france.tv/api/epg/videos/?date=${date.format('YYYY-MM-DD')}&channel=${channel.site_id}` - }, - parser: async function ({ channel, content, date }) { - const programs = [] - let items = [] - - const dayBefore = date.subtract(1, 'd').format('YYYY-MM-DD') - const linkDayBefore = `https://www.france.tv/api/epg/videos/?date=${dayBefore}&channel=${channel.site_id}` - - try { - const responseDayBefore = await axios.get(linkDayBefore) - const programmingDayBefore = responseDayBefore.data || [] - - // The broadcast day starts at ~6 AM. Programs with hour < 6 in the day-before API - // are actually early morning programs (00:00-05:59) of our target date. - if (Array.isArray(programmingDayBefore)) { - programmingDayBefore.forEach(item => { - const time = item?.content?.broadcastBeginDate - if (!time) return - const hour = parseInt(time.split('h')[0]) - - if (hour < 6) { - items.push(item) - } - }) - } - } catch { - // Day before data unavailable, continue with current day only - } - - // From the current day's API, only include programs starting from 6h onwards. - // Programs with hour < 6 belong to the next calendar day's schedule. - try { - const currentDayItems = JSON.parse(content) || [] - if (Array.isArray(currentDayItems)) { - currentDayItems.forEach(item => { - const time = item?.content?.broadcastBeginDate - if (!time) return - const hour = parseInt(time.split('h')[0]) - - if (hour >= 6) { - items.push(item) - } - }) - } - } catch { - return programs - } - - items.forEach(item => { - const { start, stop } = parseDuration(date, item) - if (!start.isValid() || !stop.isValid()) return - // Can contain Season and Episode in title, but not always. If title is missing, skip the program - if (!item?.content?.title) return - - let title = item.content.title - let season = null - let episode = null - - const seMatch = title.match(/\s*-?\s*S(\d+)\s+E(\d+)\s*-?\s*/) - if (seMatch) { - season = parseInt(seMatch[1]) - episode = parseInt(seMatch[2]) - title = title.replace(seMatch[0], ' ').replace(/^\s+/, '').replace(/\s+$/, '').trim() - } - - const fullTitle = (item.content.titleLeading ? item.content.titleLeading + (title ? ' - ' : '') : '') + title - - programs.push({ - title: fullTitle, - description: item.content.description, - image: getImageUrl(item), - icon: getImageUrl(item), - start, - stop, - season: season, - episode: episode, - rating: item.content.csa - }) - }) - - return programs - }, - async channels() { - try { - const response = await axios.get('https://www.france.tv/chaines/') - const data = response.data || '' - const channels = [] - - const channelRegex = - /<button[^>]+aria-controls="[^"]*content-([a-z0-9-]+)"[\s\S]*?<title>([^<]+)<\/title>/gi - - let match - while ((match = channelRegex.exec(data)) !== null) { - channels.push({ - lang: 'fr', - site_id: match[1], - name: match[2].trim() - }) - } - - return [...new Map(channels.map(channel => [channel.site_id, channel])).values()] - } catch (error) { - console.error('Failed to fetch channels list:', error.message) - return [] - } - } -} - -function parseDuration(date, item) { - const current_date = date.format('YYYY-MM-DD') - const time = item.content?.broadcastBeginDate - const duration = item.content?.duration // e.g. "11 min 45 s", "1 h 30 min", "30 min" - - if (!time) return { start: dayjs(null), stop: dayjs(null) } - - const timeParts = time.split('h') - - let durationInSeconds = 0 - if (duration) { - const durationParts = duration.split(' ') - for (let i = 0; i < durationParts.length; i++) { - const part = durationParts[i] - if (part === 'h' && i > 0) { - durationInSeconds += parseInt(durationParts[i - 1]) * 3600 - } else if (part === 'min' && i > 0) { - durationInSeconds += parseInt(durationParts[i - 1]) * 60 - } else if (part === 's' && i > 0) { - durationInSeconds += parseInt(durationParts[i - 1]) - } - } - } - - const start = dayjs.utc(`${current_date} ${timeParts[0]}:${timeParts[1]}`, 'YYYY-MM-DD HH:mm') - const stop = start.add(durationInSeconds, 'second') - return { start, stop } -} - -function getImageUrl(item) { - const url = item.content?.thumbnail?.x1 - return url -} +const dayjs = require('dayjs') +const axios = require('axios') +const utc = require('dayjs/plugin/utc') +const timezone = require('dayjs/plugin/timezone') +const customParseFormat = require('dayjs/plugin/customParseFormat') + +dayjs.extend(utc) +dayjs.extend(timezone) +dayjs.extend(customParseFormat) +dayjs.tz.setDefault('Europe/Paris') + +// Because France is excellent at pointing hours, their programs ALL start at 5/6 am, +// so we need to keep track of the earlier day's program to get the midnight programming. How... odd. +module.exports = { + site: 'france.tv', + days: 2, + url: function ({ channel, date }) { + return `https://www.france.tv/api/epg/videos/?date=${date.format('YYYY-MM-DD')}&channel=${channel.site_id}` + }, + parser: async function ({ channel, content, date }) { + const programs = [] + let items = [] + + const dayBefore = date.subtract(1, 'd').format('YYYY-MM-DD') + const linkDayBefore = `https://www.france.tv/api/epg/videos/?date=${dayBefore}&channel=${channel.site_id}` + + try { + const responseDayBefore = await axios.get(linkDayBefore) + const programmingDayBefore = responseDayBefore.data || [] + + // The broadcast day starts at ~6 AM. Programs with hour < 6 in the day-before API + // are actually early morning programs (00:00-05:59) of our target date. + if (Array.isArray(programmingDayBefore)) { + programmingDayBefore.forEach(item => { + const time = item?.content?.broadcastBeginDate + if (!time) return + const hour = parseInt(time.split('h')[0]) + + if (hour < 6) { + items.push(item) + } + }) + } + } catch { + // Day before data unavailable, continue with current day only + } + + // From the current day's API, only include programs starting from 6h onwards. + // Programs with hour < 6 belong to the next calendar day's schedule. + try { + const currentDayItems = JSON.parse(content) || [] + if (Array.isArray(currentDayItems)) { + currentDayItems.forEach(item => { + const time = item?.content?.broadcastBeginDate + if (!time) return + const hour = parseInt(time.split('h')[0]) + + if (hour >= 6) { + items.push(item) + } + }) + } + } catch { + return programs + } + + items.forEach(item => { + const { start, stop } = parseDuration(date, item) + if (!start.isValid() || !stop.isValid()) return + // Can contain Season and Episode in title, but not always. If title is missing, skip the program + if (!item?.content?.title) return + + let title = item.content.title + let season = null + let episode = null + + const seMatch = title.match(/\s*-?\s*S(\d+)\s+E(\d+)\s*-?\s*/) + if (seMatch) { + season = parseInt(seMatch[1]) + episode = parseInt(seMatch[2]) + title = title.replace(seMatch[0], ' ').replace(/^\s+/, '').replace(/\s+$/, '').trim() + } + + const fullTitle = (item.content.titleLeading ? item.content.titleLeading + (title ? ' - ' : '') : '') + title + + programs.push({ + title: fullTitle, + description: item.content.description, + image: getImageUrl(item), + icon: getImageUrl(item), + start, + stop, + season: season, + episode: episode, + rating: item.content.csa + }) + }) + + return programs + }, + async channels() { + try { + const response = await axios.get('https://www.france.tv/chaines/') + const data = response.data || '' + const channels = [] + + const channelRegex = + /<button[^>]+aria-controls="[^"]*content-([a-z0-9-]+)"[\s\S]*?<title>([^<]+)<\/title>/gi + + let match + while ((match = channelRegex.exec(data)) !== null) { + channels.push({ + lang: 'fr', + site_id: match[1], + name: match[2].trim() + }) + } + + return [...new Map(channels.map(channel => [channel.site_id, channel])).values()] + } catch (error) { + console.error('Failed to fetch channels list:', error.message) + return [] + } + } +} + +function parseDuration(date, item) { + const current_date = date.format('YYYY-MM-DD') + const time = item.content?.broadcastBeginDate + const duration = item.content?.duration // e.g. "11 min 45 s", "1 h 30 min", "30 min" + + if (!time) return { start: dayjs(null), stop: dayjs(null) } + + const timeParts = time.split('h') + + let durationInSeconds = 0 + if (duration) { + const durationParts = duration.split(' ') + for (let i = 0; i < durationParts.length; i++) { + const part = durationParts[i] + if (part === 'h' && i > 0) { + durationInSeconds += parseInt(durationParts[i - 1]) * 3600 + } else if (part === 'min' && i > 0) { + durationInSeconds += parseInt(durationParts[i - 1]) * 60 + } else if (part === 's' && i > 0) { + durationInSeconds += parseInt(durationParts[i - 1]) + } + } + } + + const start = dayjs.utc(`${current_date} ${timeParts[0]}:${timeParts[1]}`, 'YYYY-MM-DD HH:mm') + const stop = start.add(durationInSeconds, 'second') + return { start, stop } +} + +function getImageUrl(item) { + const url = item.content?.thumbnail?.x1 + return url +} diff --git a/sites/france.tv/france.tv.test.js b/sites/france.tv/france.tv.test.js index b7be8c070..8edb79469 100644 --- a/sites/france.tv/france.tv.test.js +++ b/sites/france.tv/france.tv.test.js @@ -1,54 +1,54 @@ -const { parser, url } = require('./france.tv.config.js') -const axios = require('axios') -const fs = require('fs') -const path = require('path') -const dayjs = require('dayjs') -const utc = require('dayjs/plugin/utc') -const customParseFormat = require('dayjs/plugin/customParseFormat') -dayjs.extend(customParseFormat) -dayjs.extend(utc) - -jest.mock('axios') - -const date = dayjs.utc('2026-02-19', 'YYYY-MM-DD').startOf('d') -const channel = { - site_id: 'france-2', - xmltv_id: 'France2.fr@HD' -} - -it('can generate valid url', () => { - expect(url({ channel, date })).toBe('https://www.france.tv/api/epg/videos/?date=2026-02-19&channel=france-2') -}) - -it('can parse response', async () => { - axios.get.mockResolvedValue({ data: [] }) - const content = fs.readFileSync(path.resolve(__dirname, '__data__/content.json')) - const results = (await parser({ content, date, channel })).map(p => { - p.start = p.start.toJSON() - p.stop = p.stop.toJSON() - return p - }) - - expect(results.length).toBe(18) - expect(results[0]).toMatchObject({ - title: 'Le 6h info - Émission du jeudi 19 février 2026', - description: "Un rendez-vous réveil-matin, avec un point sur l'actualité assorti de différentes rubriques qui permettent d'en explorer certains aspects plus en profondeur.", - image: 'https://medias.france.tv/S9p5NdAs4OR2UbyC1NIQWsYV-K4/240x0/filters:quality(85):format(webp)/b/f/3/e85c2e8fed4a4955965dfff63c3843fb.jpg', - start: '2026-02-19T06:00:00.000Z', - stop: '2026-02-19T06:30:00.000Z' - }) - expect(results[17]).toMatchObject({ - title: 'JO Club - Émission du jeudi 19 février 2026', - description: "Tous les soirs, tout au long de ces Jeux olympiques d'hiver de Milan-Cortina, Laurent Luyat revient, avec les journalistes et consultants de France Télévisions, sur les épreuves de la journée. Il accueille les athlètes et les médaillés du jour. La journée a été marquée par du combiné nordique, avec l'épreuve par équipes messieurs, les demi-final...", - image: 'https://medias.france.tv/xuxaBPNFyhMiVB5eeYrZV_1nPj4/240x0/filters:quality(85):format(webp)/v/p/h/phpmhbhpv.jpg', - start: '2026-02-19T23:00:00.000Z', - stop: '2026-02-20T00:00:00.000Z' - }) -}) - -it('can handle empty guide', async () => { - axios.get.mockResolvedValue({ data: [] }) - const results = await parser({ content: [], date, channel }) - - expect(results).toMatchObject([]) -}) +const { parser, url } = require('./france.tv.config.js') +const axios = require('axios') +const fs = require('fs') +const path = require('path') +const dayjs = require('dayjs') +const utc = require('dayjs/plugin/utc') +const customParseFormat = require('dayjs/plugin/customParseFormat') +dayjs.extend(customParseFormat) +dayjs.extend(utc) + +jest.mock('axios') + +const date = dayjs.utc('2026-02-19', 'YYYY-MM-DD').startOf('d') +const channel = { + site_id: 'france-2', + xmltv_id: 'France2.fr@HD' +} + +it('can generate valid url', () => { + expect(url({ channel, date })).toBe('https://www.france.tv/api/epg/videos/?date=2026-02-19&channel=france-2') +}) + +it('can parse response', async () => { + axios.get.mockResolvedValue({ data: [] }) + const content = fs.readFileSync(path.resolve(__dirname, '__data__/content.json')) + const results = (await parser({ content, date, channel })).map(p => { + p.start = p.start.toJSON() + p.stop = p.stop.toJSON() + return p + }) + + expect(results.length).toBe(18) + expect(results[0]).toMatchObject({ + title: 'Le 6h info - Émission du jeudi 19 février 2026', + description: "Un rendez-vous réveil-matin, avec un point sur l'actualité assorti de différentes rubriques qui permettent d'en explorer certains aspects plus en profondeur.", + image: 'https://medias.france.tv/S9p5NdAs4OR2UbyC1NIQWsYV-K4/240x0/filters:quality(85):format(webp)/b/f/3/e85c2e8fed4a4955965dfff63c3843fb.jpg', + start: '2026-02-19T06:00:00.000Z', + stop: '2026-02-19T06:30:00.000Z' + }) + expect(results[17]).toMatchObject({ + title: 'JO Club - Émission du jeudi 19 février 2026', + description: "Tous les soirs, tout au long de ces Jeux olympiques d'hiver de Milan-Cortina, Laurent Luyat revient, avec les journalistes et consultants de France Télévisions, sur les épreuves de la journée. Il accueille les athlètes et les médaillés du jour. La journée a été marquée par du combiné nordique, avec l'épreuve par équipes messieurs, les demi-final...", + image: 'https://medias.france.tv/xuxaBPNFyhMiVB5eeYrZV_1nPj4/240x0/filters:quality(85):format(webp)/v/p/h/phpmhbhpv.jpg', + start: '2026-02-19T23:00:00.000Z', + stop: '2026-02-20T00:00:00.000Z' + }) +}) + +it('can handle empty guide', async () => { + axios.get.mockResolvedValue({ data: [] }) + const results = await parser({ content: [], date, channel }) + + expect(results).toMatchObject([]) +}) diff --git a/sites/france.tv/readme.md b/sites/france.tv/readme.md index 368c7a84e..aa1683fc4 100644 --- a/sites/france.tv/readme.md +++ b/sites/france.tv/readme.md @@ -1,21 +1,21 @@ -# france.tv - -https://www.france.tv/ - -### Download the guide - -```sh -npm run grab --- --site=france.tv -``` - -### Update channel list - -```sh -npm run channels:parse --- --config=./sites/france.tv/france.tv.config.js --output=./sites/france.tv/france.tv.channels.xml -``` - -### Test - -```sh -npm test --- france.tv -``` +# france.tv + +https://www.france.tv/ + +### Download the guide + +```sh +npm run grab --- --site=france.tv +``` + +### Update channel list + +```sh +npm run channels:parse --- --config=./sites/france.tv/france.tv.config.js --output=./sites/france.tv/france.tv.channels.xml +``` + +### Test + +```sh +npm test --- france.tv +``` From a807c47a0ab1d224ccbcfa0e18c8643e971ccf11 Mon Sep 17 00:00:00 2001 From: theofficialomega <30985701+BellezaEmporium@users.noreply.github.com> Date: Sat, 18 Apr 2026 14:55:22 +0200 Subject: [PATCH 32/92] eslint move to flatconfig, remove run-script-os since unused --- eslint.config.mjs | 60 +++++++++++++++++------------------------------ package-lock.json | 52 ++++++++++++++++++++++++++-------------- package.json | 4 +--- 3 files changed, 58 insertions(+), 58 deletions(-) diff --git a/eslint.config.mjs b/eslint.config.mjs index 7f8ffde68..ad0db926d 100644 --- a/eslint.config.mjs +++ b/eslint.config.mjs @@ -1,57 +1,41 @@ -import typescriptEslint from '@typescript-eslint/eslint-plugin' -import stylistic from '@stylistic/eslint-plugin' -import globals from 'globals' -import tsParser from '@typescript-eslint/parser' -import path from 'node:path' -import { fileURLToPath } from 'node:url' import js from '@eslint/js' -import { FlatCompat } from '@eslint/eslintrc' - -const __filename = fileURLToPath(import.meta.url) -const __dirname = path.dirname(__filename) -const compat = new FlatCompat({ - baseDirectory: __dirname, - recommendedConfig: js.configs.recommended, - allConfig: js.configs.all -}) +import globals from 'globals' +import tseslint from 'typescript-eslint' +import stylistic from '@stylistic/eslint-plugin' +import prettier from 'eslint-config-prettier' export default [ - ...compat.extends('eslint:recommended', 'plugin:@typescript-eslint/strict', 'plugin:@typescript-eslint/stylistic', 'prettier'), { - plugins: { - '@typescript-eslint': typescriptEslint, - '@stylistic': stylistic - }, + ignores: ['tests/__data__/'] + }, + js.configs.recommended, + ...tseslint.configs.strict, + ...tseslint.configs.stylistic, + prettier, + + { + files: ['**/*.{js,mjs,cjs,ts}'], languageOptions: { + parser: tseslint.parser, + ecmaVersion: 'latest', + sourceType: 'module', globals: { ...globals.node, ...globals.jest - }, - - parser: tsParser, - ecmaVersion: 'latest', - sourceType: 'module' + } + }, + plugins: { + '@typescript-eslint': tseslint.plugin, + '@stylistic': stylistic }, - rules: { '@typescript-eslint/no-require-imports': 'off', '@typescript-eslint/no-var-requires': 'off', 'no-case-declarations': 'off', '@stylistic/linebreak-style': ['error', 'windows'], - - quotes: [ - 'error', - 'single', - { - avoidEscape: true - } - ], - + quotes: ['error', 'single', { avoidEscape: true }], semi: ['error', 'never'] } - }, - { - ignores: ['tests/__data__/'] } ] diff --git a/package-lock.json b/package-lock.json index ad2200d62..b2917bb6e 100644 --- a/package-lock.json +++ b/package-lock.json @@ -34,8 +34,6 @@ "@types/lodash.uniqby": "^4.7.9", "@types/node": "^25.6.0", "@types/pako": "^2.0.4", - "@typescript-eslint/eslint-plugin": "^8.58.2", - "@typescript-eslint/parser": "^8.58.2", "axios": "^1.15.0", "chalk": "^5.6.2", "cheerio": "^1.2.0", @@ -68,7 +66,6 @@ "pako": "^2.1.0", "parse-duration": "^2.1.6", "pm2": "^6.0.14", - "run-script-os": "^1.1.6", "serve": "^14.2.6", "socks-proxy-agent": "^10.0.0", "srcset": "^5.0.3", @@ -77,6 +74,7 @@ "tough-cookie": "^6.0.1", "tsx": "^4.21.0", "typescript": "^6.0.3", + "typescript-eslint": "^8.58.2", "uuid": "^13.0.0" } }, @@ -10638,15 +10636,6 @@ "node": ">=0.12.0" } }, - "node_modules/run-script-os": { - "version": "1.1.6", - "resolved": "https://registry.npmjs.org/run-script-os/-/run-script-os-1.1.6.tgz", - "integrity": "sha512-ql6P2LzhBTTDfzKts+Qo4H94VUKpxKDFz6QxxwaUZN0mwvi7L3lpOI7BqPCq7lgDh3XLl0dpeXwfcVIitlrYrw==", - "bin": { - "run-os": "index.js", - "run-script-os": "index.js" - } - }, "node_modules/run-series": { "version": "1.1.9", "resolved": "https://registry.npmjs.org/run-series/-/run-series-1.1.9.tgz", @@ -11412,6 +11401,29 @@ "node": ">=14.17" } }, + "node_modules/typescript-eslint": { + "version": "8.58.2", + "resolved": "https://registry.npmjs.org/typescript-eslint/-/typescript-eslint-8.58.2.tgz", + "integrity": "sha512-V8iSng9mRbdZjl54VJ9NKr6ZB+dW0J3TzRXRGcSbLIej9jV86ZRtlYeTKDR/QLxXykocJ5icNzbsl2+5TzIvcQ==", + "license": "MIT", + "dependencies": { + "@typescript-eslint/eslint-plugin": "8.58.2", + "@typescript-eslint/parser": "8.58.2", + "@typescript-eslint/typescript-estree": "8.58.2", + "@typescript-eslint/utils": "8.58.2" + }, + "engines": { + "node": "^18.18.0 || ^20.9.0 || >=21.1.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/typescript-eslint" + }, + "peerDependencies": { + "eslint": "^8.57.0 || ^9.0.0 || ^10.0.0", + "typescript": ">=4.8.4 <6.1.0" + } + }, "node_modules/undici": { "version": "7.24.7", "resolved": "https://registry.npmjs.org/undici/-/undici-7.24.7.tgz", @@ -18766,11 +18778,6 @@ "resolved": "https://registry.npmjs.org/run-async/-/run-async-4.0.6.tgz", "integrity": "sha512-IoDlSLTs3Yq593mb3ZoKWKXMNu3UpObxhgA/Xuid5p4bbfi2jdY1Hj0m1K+0/tEuQTxIGMhQDqGjKb7RuxGpAQ==" }, - "run-script-os": { - "version": "1.1.6", - "resolved": "https://registry.npmjs.org/run-script-os/-/run-script-os-1.1.6.tgz", - "integrity": "sha512-ql6P2LzhBTTDfzKts+Qo4H94VUKpxKDFz6QxxwaUZN0mwvi7L3lpOI7BqPCq7lgDh3XLl0dpeXwfcVIitlrYrw==" - }, "run-series": { "version": "1.1.9", "resolved": "https://registry.npmjs.org/run-series/-/run-series-1.1.9.tgz", @@ -19257,6 +19264,17 @@ "resolved": "https://registry.npmjs.org/typescript/-/typescript-6.0.3.tgz", "integrity": "sha512-y2TvuxSZPDyQakkFRPZHKFm+KKVqIisdg9/CZwm9ftvKXLP8NRWj38/ODjNbr43SsoXqNuAisEf1GdCxqWcdBw==" }, + "typescript-eslint": { + "version": "8.58.2", + "resolved": "https://registry.npmjs.org/typescript-eslint/-/typescript-eslint-8.58.2.tgz", + "integrity": "sha512-V8iSng9mRbdZjl54VJ9NKr6ZB+dW0J3TzRXRGcSbLIej9jV86ZRtlYeTKDR/QLxXykocJ5icNzbsl2+5TzIvcQ==", + "requires": { + "@typescript-eslint/eslint-plugin": "8.58.2", + "@typescript-eslint/parser": "8.58.2", + "@typescript-eslint/typescript-estree": "8.58.2", + "@typescript-eslint/utils": "8.58.2" + } + }, "undici": { "version": "7.24.7", "resolved": "https://registry.npmjs.org/undici/-/undici-7.24.7.tgz", diff --git a/package.json b/package.json index ea3e7a07a..d29fce79e 100644 --- a/package.json +++ b/package.json @@ -62,8 +62,6 @@ "@types/lodash.uniqby": "^4.7.9", "@types/node": "^25.6.0", "@types/pako": "^2.0.4", - "@typescript-eslint/eslint-plugin": "^8.58.2", - "@typescript-eslint/parser": "^8.58.2", "axios": "^1.15.0", "chalk": "^5.6.2", "cheerio": "^1.2.0", @@ -96,7 +94,6 @@ "pako": "^2.1.0", "parse-duration": "^2.1.6", "pm2": "^6.0.14", - "run-script-os": "^1.1.6", "serve": "^14.2.6", "socks-proxy-agent": "^10.0.0", "srcset": "^5.0.3", @@ -105,6 +102,7 @@ "tough-cookie": "^6.0.1", "tsx": "^4.21.0", "typescript": "^6.0.3", + "typescript-eslint": "^8.58.2", "uuid": "^13.0.0" } } From 418824b88ffe6b8a97fce22f12e313113d212dc5 Mon Sep 17 00:00:00 2001 From: "iptv-bot[bot]" <84861620+iptv-bot[bot]@users.noreply.github.com> Date: Sat, 18 Apr 2026 13:59:45 +0000 Subject: [PATCH 33/92] [Bot] Update SITES.md Committed by [iptv-bot](https://github.com/apps/iptv-bot) via [update](https://github.com/iptv-org/epg/actions/runs/24606241050) workflow. --- SITES.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/SITES.md b/SITES.md index d4ca1c038..a3e5ba6ed 100644 --- a/SITES.md +++ b/SITES.md @@ -41,7 +41,7 @@ <tr><td><a href="sites/digea.gr">digea.gr</a></td><td align="right">88</td><td align="right">0</td><td align="center">🟢</td><td></td></tr> <tr><td><a href="sites/digiturk.com.tr">digiturk.com.tr</a></td><td align="right">112</td><td align="right">91</td><td align="center">🟢</td><td></td></tr> <tr><td><a href="sites/directv.com">directv.com</a></td><td align="right">1043</td><td align="right">640</td><td align="center">🔴</td><td>https://github.com/iptv-org/epg/issues/3001, https://github.com/iptv-org/epg/issues/2284</td></tr> - <tr><td><a href="sites/directv.com.ar">directv.com.ar</a></td><td align="right">371</td><td align="right">0</td><td align="center">🔴</td><td>https://github.com/iptv-org/epg/issues/2339</td></tr> + <tr><td><a href="sites/directv.com.ar">directv.com.ar</a></td><td align="right">371</td><td align="right">0</td><td align="center">🟢</td><td></td></tr> <tr><td><a href="sites/directv.com.uy">directv.com.uy</a></td><td align="right">374</td><td align="right">59</td><td align="center">🟢</td><td></td></tr> <tr><td><a href="sites/dishtv.in">dishtv.in</a></td><td align="right">603</td><td align="right">548</td><td align="center">🟢</td><td></td></tr> <tr><td><a href="sites/distro.tv">distro.tv</a></td><td align="right">336</td><td align="right">125</td><td align="center">🟢</td><td></td></tr> From a24d7305a282b2c2c9dbc18370687f77c99976c3 Mon Sep 17 00:00:00 2001 From: "iptv-bot[bot]" <84861620+iptv-bot[bot]@users.noreply.github.com> Date: Sat, 18 Apr 2026 13:59:47 +0000 Subject: [PATCH 34/92] [Bot] Update GUIDES.md Committed by [iptv-bot](https://github.com/apps/iptv-bot) via [update](https://github.com/iptv-org/epg/actions/runs/24606241050) workflow. --- GUIDES.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/GUIDES.md b/GUIDES.md index 46c58a37d..bbc18d0fa 100644 --- a/GUIDES.md +++ b/GUIDES.md @@ -5,7 +5,7 @@ <tr><th align="left">Host</th><th align="left">Status</th><th align="left">Channels</th><th align="left">Last Updated</th><th align="left">Links</th></tr> </thead> <tbody> - <tr><td>worker-9dd4.onrender.com</td><td align="center">🟢</td><td align="right">1</td><td align="left">a day ago</td><td><a href="https://worker-9dd4.onrender.com/channels.xml">channels.xml</a><br><a href="https://worker-9dd4.onrender.com/guide.xml">guide.xml</a></td></tr> + <tr><td>worker-9dd4.onrender.com</td><td align="center">🟢</td><td align="right">1</td><td align="left">2 days ago</td><td><a href="https://worker-9dd4.onrender.com/channels.xml">channels.xml</a><br><a href="https://worker-9dd4.onrender.com/guide.xml">guide.xml</a></td></tr> </tbody> </table> From 313adde4a87e69a86333b90152701abe565ac4bd Mon Sep 17 00:00:00 2001 From: freearhey <7253922+freearhey@users.noreply.github.com> Date: Sun, 19 Apr 2026 01:30:13 +0300 Subject: [PATCH 35/92] Update aljazeera.com.test.js --- sites/aljazeera.com/aljazeera.com.test.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/sites/aljazeera.com/aljazeera.com.test.js b/sites/aljazeera.com/aljazeera.com.test.js index 751c1ad7a..6be862aba 100644 --- a/sites/aljazeera.com/aljazeera.com.test.js +++ b/sites/aljazeera.com/aljazeera.com.test.js @@ -8,11 +8,11 @@ dayjs.extend(customParseFormat) dayjs.extend(utc) const date = dayjs.utc('2026-04-22', 'YYYY-MM-DD').startOf('d') -const channel = { site_id: 'aje' } +const channel = { site_id: 'aje#' } it('can generate valid url', () => { expect(url({ channel })).toBe( - 'https://www.aljazeera.com/graphql?wp-site=aje&operationName=ArchipelagoSchedulePageQuery&variables=%7B%22postName%22%3A%22schedule%22%2C%22preview%22%3A%22%22%7D' + 'https://www.aljazeera.com/graphql?wp-site=aje&operationName=ArchipelagoSchedulePageQuery&variables={"postName":"schedule","preview":""}&extensions={}' ) }) From 4a47ade4be1207165115a28ad2a2e362ffa0a7dd Mon Sep 17 00:00:00 2001 From: freearhey <7253922+freearhey@users.noreply.github.com> Date: Sun, 19 Apr 2026 01:30:28 +0300 Subject: [PATCH 36/92] Update aljazeera.com.config.js --- sites/aljazeera.com/aljazeera.com.config.js | 19 +++++++++++++++---- 1 file changed, 15 insertions(+), 4 deletions(-) diff --git a/sites/aljazeera.com/aljazeera.com.config.js b/sites/aljazeera.com/aljazeera.com.config.js index 4c3b79c82..a4efc6a89 100644 --- a/sites/aljazeera.com/aljazeera.com.config.js +++ b/sites/aljazeera.com/aljazeera.com.config.js @@ -9,12 +9,22 @@ module.exports = { site: 'aljazeera.com', days: 2, url({ channel }) { - return `https://www.aljazeera.com/graphql?wp-site=${channel.site_id}&operationName=ArchipelagoSchedulePageQuery&variables=%7B%22postName%22%3A%22schedule%22%2C%22preview%22%3A%22%22%7D` + const [site_id, suffix] = channel.site_id.split('#') + const postName = suffix ? `schedule-${suffix}` : 'schedule' + const variables = JSON.stringify({ + postName, + preview: '' + }) + const extensions = JSON.stringify({}) + + return `https://www.aljazeera.com/graphql?wp-site=${site_id}&operationName=ArchipelagoSchedulePageQuery&variables=${variables}&extensions=${extensions}` }, request: { headers({ channel }) { + const [site_id] = channel.site_id.split('#') + return { - 'wp-site': channel.site_id + 'wp-site': site_id } } }, @@ -36,8 +46,9 @@ module.exports = { }, channels() { return [ - { site_id: 'aje', lang: 'en', xmltv_id: 'AlJazeera.qa@English', name: 'Al Jazeera English' }, - { site_id: 'aja', lang: 'ar', xmltv_id: 'AlJazeera.qa@Arabic', name: 'Al Jazeera Arabic' } + { site_id: 'aje#', lang: 'en', xmltv_id: 'AlJazeera.qa@English', name: 'Al Jazeera English' }, + { site_id: 'aja#', lang: 'ar', xmltv_id: 'AlJazeera.qa@Arabic', name: 'Al Jazeera Arabic' }, + { site_id: 'aja#aj2', lang: 'ar', xmltv_id: 'AlJazeera2.qa@HD', name: 'Al Jazeera 2' } ] } } From 23e5478edf43df8515cc7adb28109f462a70a14b Mon Sep 17 00:00:00 2001 From: freearhey <7253922+freearhey@users.noreply.github.com> Date: Sun, 19 Apr 2026 01:30:37 +0300 Subject: [PATCH 37/92] Update aljazeera.com.channels.xml --- sites/aljazeera.com/aljazeera.com.channels.xml | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/sites/aljazeera.com/aljazeera.com.channels.xml b/sites/aljazeera.com/aljazeera.com.channels.xml index 78d2742ba..2099a2a37 100644 --- a/sites/aljazeera.com/aljazeera.com.channels.xml +++ b/sites/aljazeera.com/aljazeera.com.channels.xml @@ -1,5 +1,6 @@ <?xml version="1.0" encoding="UTF-8"?> <channels> - <channel site="aljazeera.com" site_id="aja" lang="ar" xmltv_id="AlJazeera.qa@Arabic">Al Jazeera Arabic</channel> - <channel site="aljazeera.com" site_id="aje" lang="en" xmltv_id="AlJazeera.qa@English">Al Jazeera English</channel> + <channel site="aljazeera.com" site_id="aja#aj2" lang="ar" xmltv_id="AlJazeera2.qa@HD">Al Jazeera 2</channel> + <channel site="aljazeera.com" site_id="aja#" lang="ar" xmltv_id="AlJazeera.qa@Arabic">Al Jazeera Arabic</channel> + <channel site="aljazeera.com" site_id="aje#" lang="en" xmltv_id="AlJazeera.qa@English">Al Jazeera English</channel> </channels> From a34801419c548eed54e5a5e244a0e88a1be7bb5e Mon Sep 17 00:00:00 2001 From: freearhey <7253922+freearhey@users.noreply.github.com> Date: Sun, 19 Apr 2026 02:00:35 +0300 Subject: [PATCH 38/92] Update sky.com.test.js --- sites/sky.com/sky.com.test.js | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/sites/sky.com/sky.com.test.js b/sites/sky.com/sky.com.test.js index e58a818d8..5c6d6be54 100644 --- a/sites/sky.com/sky.com.test.js +++ b/sites/sky.com/sky.com.test.js @@ -49,6 +49,17 @@ it('can parse response', () => { icon: 'https://images.metadata.sky.com/pd-image/e9521ccc-bdcc-4075-9c2e-bc835247148b/16-9/640', image: 'https://images.metadata.sky.com/pd-image/e9521ccc-bdcc-4075-9c2e-bc835247148b/16-9/640' }) + expect(result[30]).toMatchObject({ + start: '2024-12-14T23:00:00.000Z', + stop: '2024-12-15T01:00:00.000Z', + title: 'American Godfathers: The Five Families', + description: + "Rise of the New Dons: Follow the conflict between the families' old guard and a new generation of younger, American-born mobsters willing to defy their authority. (S1, ep 2)", + season: 1, + episode: 2, + icon: 'https://images.metadata.sky.com/pd-image/4e38c66b-c2ae-3669-a7ff-e7588743e7ac/16-9/640', + image: 'https://images.metadata.sky.com/pd-image/4e38c66b-c2ae-3669-a7ff-e7588743e7ac/16-9/640' + }) }) it('can handle empty guide', () => { From 8d18d39028a28ff8ea16125e61296ceee10bcab4 Mon Sep 17 00:00:00 2001 From: freearhey <7253922+freearhey@users.noreply.github.com> Date: Sun, 19 Apr 2026 02:00:42 +0300 Subject: [PATCH 39/92] Update sky.com.config.js --- sites/sky.com/sky.com.config.js | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/sites/sky.com/sky.com.config.js b/sites/sky.com/sky.com.config.js index eb6a042b6..871fec299 100644 --- a/sites/sky.com/sky.com.config.js +++ b/sites/sky.com/sky.com.config.js @@ -1,5 +1,6 @@ const dayjs = require('dayjs') const utc = require('dayjs/plugin/utc') +const timezone = require('dayjs/plugin/timezone') const doFetch = require('@ntlab/sfetch') const debug = require('debug')('site:sky.com') const sortBy = require('lodash.sortby') @@ -7,6 +8,7 @@ const path = require('path') const fs = require('fs/promises') dayjs.extend(utc) +dayjs.extend(timezone) doFetch.setDebugger(debug) @@ -29,7 +31,7 @@ module.exports = { if (Array.isArray(schedule.events)) { sortBy(schedule.events, p => p.st).forEach(event => { const start = dayjs.utc(event.st * 1000) - if (start.isSame(date, 'd')) { + if (start.isSame(date.tz('Europe/London'), 'd')) { const image = `https://images.metadata.sky.com/pd-image/${event.programmeuuid}/16-9/640` programs.push({ title: event.t, From 7e180ad6094c962a8b477978dba8552297e38557 Mon Sep 17 00:00:00 2001 From: freearhey <7253922+freearhey@users.noreply.github.com> Date: Sun, 19 Apr 2026 02:28:41 +0300 Subject: [PATCH 40/92] Update __data__/ --- sites/movistarplus.es/__data__/content.html | 2486 ------------------ sites/movistarplus.es/__data__/program1.html | 778 ------ sites/movistarplus.es/__data__/program2.html | 809 ------ 3 files changed, 4073 deletions(-) delete mode 100644 sites/movistarplus.es/__data__/content.html delete mode 100644 sites/movistarplus.es/__data__/program1.html delete mode 100644 sites/movistarplus.es/__data__/program2.html diff --git a/sites/movistarplus.es/__data__/content.html b/sites/movistarplus.es/__data__/content.html deleted file mode 100644 index 135a25f8e..000000000 --- a/sites/movistarplus.es/__data__/content.html +++ /dev/null @@ -1,2486 +0,0 @@ -<!DOCTYPE html> -<html lang="es"> - <head> - <meta charset="UTF-8"/> - - <title>Programación TV de La Sexta viernes 30 de mayo | Movistar Plus+ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
-
- -
- - - -
- -
-
- - -
- -
- -
-
-
-
-

Programación - de La Sexta - hoy

- -
-
-
-
-
-
- -
-
-
-
- -
- Tus filtros: - - -
- -
-
-
-
-
- - - - - - -
-
-
-
-
-
-
-
-
-
-
-
-
- Ver día siguiente -
- - -
-
- -
- - -
-
-
- - - - - - - - - - - - - - - - - - diff --git a/sites/movistarplus.es/__data__/program1.html b/sites/movistarplus.es/__data__/program1.html deleted file mode 100644 index 174a44539..000000000 --- a/sites/movistarplus.es/__data__/program1.html +++ /dev/null @@ -1,778 +0,0 @@ - - - - - - Venta Prime (2024) | Movistar Plus+ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
-
- -
- - - -
- -
-
- - -
-
-
-
-
- - Logo Movistar Plus+ - -
-
-
- - - - -
- Venta Prime -
- -
-
-

Venta Prime

-

Ventaprime

-
-
-
-
- -
-
-
- - -
-
-
-
-
-
-
-
- Venta Prime -
-
-
Duración
0:00' -
-
Confiesa que te gusta
- - - - - - -
-
-
-
-

Valoración de usuarios

-
-
- 5 - 4 - 3 - 2 - 1 -
-
- 3 - 180 - votos -
-
- - -
-
-
-
-
-
- -
-
- - - Suscribirme ahora - -
- - - - - - - - - - - - - - - - Incluido en suscripción de 9,99€ -
-
-
- -
-
-
-
-

Sinopsis

-
-
-
-

Espacio de televenta.

-
-

Ver más

-
-
-
-
-

Info

-
-
    -
-

Televenta

(2024)

-
-
-

Calificación

-
- Apto para todos los públicos -
-
-
-
-
-
- -
-
-
- - - - - - - - - - - - - - diff --git a/sites/movistarplus.es/__data__/program2.html b/sites/movistarplus.es/__data__/program2.html deleted file mode 100644 index 2bd0a88e3..000000000 --- a/sites/movistarplus.es/__data__/program2.html +++ /dev/null @@ -1,809 +0,0 @@ - - - - - - Pokerstars casino (2022) | Movistar Plus+ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
-
- -
- - - -
- -
-
- - -
-
-
-
-
- - Logo Movistar Plus+ - -
-
-
- - - - -
- Pokerstars casino -
- -
-
-

Pokerstars casino

-
-
-
-
-
- -
-
-
- - -
-
-
-
-
-
-
-
- Pokerstars casino -
-
-
Duración
0:00' -
-
Confiesa que te gusta
- - - - - - -
-
-
-
-

Valoración de usuarios

-
-
- 5 - 4 - 3 - 2 - 1 -
-
- 3 - 107 - votos -
-
- - -
-
-
-
-
-
- -
-
- - - Suscribirme ahora - -
- - - - - - - - - - - - - - - - Incluido en suscripción de 9,99€ -
-
-
- -
-
-
-
-

Sinopsis

-
-
-
-

El programa trae cada día toda la emoción de su ruleta en vivo, Spin & Win, una versión exclusiva del clásico juego de casino.

-
-

Ver más

-
-
-
-
-

Info

-
-
    -
-

Programa deportes

España (2022)

-
-
-

Calificación

-
- No recomendado para menores de dieciocho años -
-
-
-
-
-
-
-
-
-

Equipo Técnico

-
-
-
-
-
-
- -
-
-
-
-
-

Presentador

-

Paco González

-
-
-
-
- -
-
-
- - - - - - - - - - - - - - From 5a5798ca0fcf49fbc326d8fbe00ce33215ed4c6d Mon Sep 17 00:00:00 2001 From: freearhey <7253922+freearhey@users.noreply.github.com> Date: Sun, 19 Apr 2026 02:28:46 +0300 Subject: [PATCH 41/92] Update movistarplus.es.test.js --- sites/movistarplus.es/movistarplus.es.test.js | 17 +++++++++++------ 1 file changed, 11 insertions(+), 6 deletions(-) diff --git a/sites/movistarplus.es/movistarplus.es.test.js b/sites/movistarplus.es/movistarplus.es.test.js index b6b082ab8..db9bc5eaa 100644 --- a/sites/movistarplus.es/movistarplus.es.test.js +++ b/sites/movistarplus.es/movistarplus.es.test.js @@ -34,14 +34,14 @@ it('can parse response', async () => { data: JSON.parse(fs.readFileSync(path.resolve(__dirname, '__data__/ficha.json'), 'utf8')) }) } else if ( - url === 'https://ottcache.dof6.com/movistarplus/webplayer/contents/63182873/details?mediaType=FOTOV&profile=OTT&mode=VODREJILLA&channels=SEXTA&version=8&tlsStream=true&mdrm=true&catalog=events&showNonRated=true' + url === + 'https://ottcache.dof6.com/movistarplus/webplayer/contents/63182873/details?mediaType=FOTOV&profile=OTT&mode=VODREJILLA&channels=SEXTA&version=8&tlsStream=true&mdrm=true&catalog=events&showNonRated=true' ) { return Promise.resolve({ data: JSON.parse(fs.readFileSync(path.resolve(__dirname, '__data__/ficha2.json'), 'utf8')) }) } }) - let results = await parser({ content, date }) results = results.map(p => { @@ -55,21 +55,26 @@ it('can parse response', async () => { start: '2026-02-08T21:45:00.000Z', stop: '2026-02-09T00:30:00.000Z', title: 'Especial ARV elecciones Aragón', - description: 'Antonio García Ferreras y Ana Pastor analizan y debaten sobre el recuento y los resultados que arrojen las urnas con analistas como Lluís Orriols, Antonio Maestre, Ignacio Escolar, Pilar Velasco, Santiago Martínez Vares y Pablo Montesinos.' + description: + 'Antonio García Ferreras y Ana Pastor analizan y debaten sobre el recuento y los resultados que arrojen las urnas con analistas como Lluís Orriols, Antonio Maestre, Ignacio Escolar, Pilar Velasco, Santiago Martínez Vares y Pablo Montesinos.', + icon: 'https://estatico.emisiondof6.com/recorte/n/dispficha/MSEXTAP4235944', + images: ['https://estatico.emisiondof6.com/recorte/n/vegend/MSEXTAF4235944.jpg'] }) expect(results[19]).toMatchObject({ start: '2026-02-09T20:30:00.000Z', stop: '2026-02-09T22:00:00.000Z', title: 'El intermedio', - description: 'El Gran Wyoming, con la ayuda de sus colaboradores, analiza en clave de humor las noticias más importantes del día. El sello inconfundible del cómico sirve para completar la información desde un punto de vista más distendido e irónico.' + description: + 'El Gran Wyoming, con la ayuda de sus colaboradores, analiza en clave de humor las noticias más importantes del día. El sello inconfundible del cómico sirve para completar la información desde un punto de vista más distendido e irónico.', + icon: 'https://estatico.emisiondof6.com/recorte/n/dispficha/MSEXTAP4236939', + images: ['https://estatico.emisiondof6.com/recorte/n/vegend/MSEXTAF4236939.jpg'] }) }) - it('can handle empty guide', async () => { const results = await parser({ date, - channel, + channel, content: '[]' }) From f403e5c1d1d9c997570e0cc4195463c4388f90e9 Mon Sep 17 00:00:00 2001 From: freearhey <7253922+freearhey@users.noreply.github.com> Date: Sun, 19 Apr 2026 02:28:58 +0300 Subject: [PATCH 42/92] Update movistarplus.es.config.js --- .../movistarplus.es/movistarplus.es.config.js | 89 +++++++++++-------- 1 file changed, 52 insertions(+), 37 deletions(-) diff --git a/sites/movistarplus.es/movistarplus.es.config.js b/sites/movistarplus.es/movistarplus.es.config.js index eac40b510..dd4fa193b 100644 --- a/sites/movistarplus.es/movistarplus.es.config.js +++ b/sites/movistarplus.es/movistarplus.es.config.js @@ -29,20 +29,23 @@ module.exports = { items.forEach(el => { programs.push({ - title: el.title, - description: el.description, - season: el.season, - episode: el.episode, - start: el.start, - stop: el.stop - }) + title: el.title, + description: el.description, + icon: el.icon, + images: el.images, + season: el.season, + episode: el.episode, + start: el.start, + stop: el.stop }) + }) return programs - }, async channels() { const json = await axios - .get('https://ottcache.dof6.com/movistarplus/webplayer/OTT/contents/channels?mdrm=true&tlsstream=true&demarcation=18&version=8') + .get( + 'https://ottcache.dof6.com/movistarplus/webplayer/OTT/contents/channels?mdrm=true&tlsstream=true&demarcation=18&version=8' + ) .then(r => r.data) .catch(console.log) @@ -58,45 +61,57 @@ module.exports = { } } +function parseImages(images) { + return images.filter(image => image.id === 'watch2tgr-end').map(image => image.uri) +} + async function parseItems(content) { try { const data = JSON.parse(content) const programs = Array.isArray(data) ? data : [data] - return await Promise.all(programs.map(async (json) => { - const start = dayjs.utc(Number(json?.FechaHoraInicio)) - const stop = dayjs.utc(Number(json?.FechaHoraFin)) - const ficha = json?.Ficha || null - if (!ficha) { - return { - title: json?.Titulo || '', - description: json?.Resena || '', - start, - stop - } - } else { - try { - const fichaJson = await axios.get(ficha).then(r => r.data) - return { - title: json?.Titulo || fichaJson?.Titulo || '', - description: fichaJson?.Descripcion || json?.Resena || '', - actors: fichaJson?.Actores || [], - directors: fichaJson?.Directores || [], - classification: fichaJson?.Clasificacion || '', - season: fichaJson?.Temporada || null, - episode: fichaJson?.NumeroEpisodio || null, - start, - stop - } - } catch { + return await Promise.all( + programs.map(async json => { + const start = dayjs.utc(Number(json?.FechaHoraInicio)) + const stop = dayjs.utc(Number(json?.FechaHoraFin)) + const ficha = json?.Ficha || null + if (!ficha) { return { title: json?.Titulo || '', description: json?.Resena || '', + icon: json?.Imagen || '', + images: json.Imagenes ? parseImages(json.Imagenes) : [], start, stop } + } else { + try { + const fichaJson = await axios.get(ficha).then(r => r.data) + return { + title: json?.Titulo || fichaJson?.Titulo || '', + description: fichaJson?.Descripcion || json?.Resena || '', + icon: fichaJson?.Imagen || '', + images: fichaJson.Imagenes ? parseImages(fichaJson.Imagenes) : [], + actors: fichaJson?.Actores || [], + directors: fichaJson?.Directores || [], + classification: fichaJson?.Clasificacion || '', + season: fichaJson?.Temporada || null, + episode: fichaJson?.NumeroEpisodio || null, + start, + stop + } + } catch { + return { + title: json?.Titulo || '', + description: json?.Resena || '', + icon: json?.Imagen || '', + images: json.Imagenes ? parseImages(json.Imagenes) : [], + start, + stop + } + } } - } - })) + }) + ) } catch { return [] } From 5afa58296e459b5fc5ca141a6c2b462c39ca368f Mon Sep 17 00:00:00 2001 From: freearhey <7253922+freearhey@users.noreply.github.com> Date: Sun, 19 Apr 2026 04:03:50 +0300 Subject: [PATCH 43/92] Create entry.html --- sites/programtv.onet.pl/__data__/entry.html | 1075 +++++++++++++++++++ 1 file changed, 1075 insertions(+) create mode 100644 sites/programtv.onet.pl/__data__/entry.html diff --git a/sites/programtv.onet.pl/__data__/entry.html b/sites/programtv.onet.pl/__data__/entry.html new file mode 100644 index 000000000..11895baa9 --- /dev/null +++ b/sites/programtv.onet.pl/__data__/entry.html @@ -0,0 +1,1075 @@ + + + + + + + + + + + + + + + + + + + + + Komisarz Rex 11, odc. 9: Dawna sprawa. Il commissario Rex, s11e09 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+ +
+ +
+ +
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+
+
+ + +
+
+ + + + + +
+
+ +
+ + +

+ Komisarz Rex 11, odc. 9 - Dawna sprawa + + + + + +

+ + +
+ +
+ + Komisarz Rex 11 + + + + +
+ +
+ +
    +
  • + Sobota + 18.04.2026 +
  • +
  • + 06:00 + STOPKLATKA +
  • + +
  • + + + STOPKLATKA + + +
  • + +
  • + + serial kryminalny + + + + Włochy 2011, 60 min + + +
  • +
+ + +

Fabri poznaje młodą studentkę prawa z byłej Jugosławii, Ivanę, która tak jak on przyszła na przyjęcie do sąsiadki policjanta. Nazajutrz Ivana pojawia się na komisariacie. Prosi detektywa o ponowne otwarcie sprawy jej zmarłej przed 17 laty matki.

+ + + + + + + + +
    + + +
  • Reżyseria:
  • +
  • + + Marco Serafini + +
  • + + + +
  • Obsada:
  • +
  • + + Kaspar Capparoni, + + Fabio Ferri, + + Pilar Abella + +
  • + + + + + + + + + + + + + + +
+ +
+ + + +
+ +
+ + + +
+ +
+ + + + +
+ Najbliższe emisje: +
    + +
  • Brak powtórek w najbliższym czasie
  • + +
+
+
+ + + +
+ +
+

Co myślisz o tym artykule? Skomentuj!

+
+
+
+ Komentujcie na Facebooku i Twitterze. Wasze zdanie jest dla nas bardzo ważne, dlatego czekamy również na + Wasze listy. Już wiele razy nas zainspirowały. Najciekawsze zamieścimy w serwisie. +
+ Znajdziecie je tutaj. +
+
+
+ Skomentuj artykuł: +
+ + + + + + +
+
+
+ + + +
+ +
+ +
+
+ +
+
+ +
+
+ +
+
+
+ + + +
+
+ +
+
+ +
+ +
+ +
+
+ +
+
+ + + + + +
+ + + +
+ Teraz w TV +

Program TV

+
+ + + + + + + +
+ + + + + + + + + + + + + + +
+ + + + + +
+ + + + + + + + +
+ +
+
    +
  • Onet Program TV Copyright 1996-2026 Ringier Axel Springer Polska sp. z o.o.
  • + +
  • + +
  • + +
  • + do góry +
  • + +
+ + + + + +
+
+
+ Systematyczne pobieranie treści, danych lub informacji z tej strony internetowej (web scraping), + jak również eksploracja tekstu i danych (TDM) (w tym pobieranie i eksploracyjna analiza danych, + indeksowanie stron internetowych, korzystanie z treści lub przeszukiwanie z pobieraniem baz danych), + czy to przez roboty, web crawlers, oprogramowanie, narzędzia lub dowolną manualną lub zautomatyzowaną metodą, + w celu tworzenia lub rozwoju oprogramowania, w tym m.in. szkolenia systemów uczenia maszynowego lub sztucznej inteligencji (AI), + bez uprzedniej, wyraźnej zgody Ringier Axel Springer Polska sp. z o.o. (RASP) jest zabronione. + Wyjątek stanowią sytuacje, w których treści, dane lub informacje są wykorzystywane w celu ułatwienia ich wyszukiwania przez wyszukiwarki internetowe. +
+
+ +
+ + + + + \ No newline at end of file From 6e7942472d76aba0e999a2548d29801bde0d962e Mon Sep 17 00:00:00 2001 From: freearhey <7253922+freearhey@users.noreply.github.com> Date: Sun, 19 Apr 2026 04:03:56 +0300 Subject: [PATCH 44/92] Update programtv.onet.pl.test.js --- .../programtv.onet.pl.test.js | 26 +++++++++++++++---- 1 file changed, 21 insertions(+), 5 deletions(-) diff --git a/sites/programtv.onet.pl/programtv.onet.pl.test.js b/sites/programtv.onet.pl/programtv.onet.pl.test.js index 928f830be..72a2ae4bd 100644 --- a/sites/programtv.onet.pl/programtv.onet.pl.test.js +++ b/sites/programtv.onet.pl/programtv.onet.pl.test.js @@ -1,4 +1,5 @@ const { parser, url } = require('./programtv.onet.pl.config.js') +const axios = require('axios') const fs = require('fs') const path = require('path') const dayjs = require('dayjs') @@ -7,6 +8,20 @@ const customParseFormat = require('dayjs/plugin/customParseFormat') dayjs.extend(customParseFormat) dayjs.extend(utc) +jest.mock('axios') + +axios.get.mockImplementation(url => { + if (url === 'https://programtv.onet.pl/tv/law-and-order-odcinek-15/rlmzu?entry=21970867') { + return Promise.resolve({ + data: fs.readFileSync(path.resolve(__dirname, '__data__/entry.html')) + }) + } else { + return Promise.resolve({ + data: '' + }) + } +}) + const date = dayjs.utc('2021-11-24', 'YYYY-MM-DD').startOf('d') const channel = { site_id: '13th-street-250', @@ -35,9 +50,9 @@ it('can generate valid url for next day', () => { ) }) -it('can parse response', () => { +it('can parse response', async () => { const content = fs.readFileSync(path.resolve(__dirname, '__data__/content.html')) - const result = parser({ content, date }).map(p => { + const result = (await parser({ content, date })).map(p => { p.start = p.start.toJSON() p.stop = p.stop.toJSON() return p @@ -50,7 +65,8 @@ it('can parse response', () => { title: 'Law & Order, odc. 15: Letzte Worte', category: 'Krimiserie', description: - 'Bei einer Reality-TV-Show stirbt einer der Teilnehmer. Zunächst tappen Briscoe (Jerry Orbach) und Green (Jesse L....' + 'Bei einer Reality-TV-Show stirbt einer der Teilnehmer. Zunächst tappen Briscoe (Jerry Orbach) und Green (Jesse L....', + image: 'https://ocdn.eu/ptv-imported-images/akpa4046117.jpg' }, { start: '2021-11-24T22:30:00.000Z', @@ -71,8 +87,8 @@ it('can parse response', () => { ]) }) -it('can handle empty guide', () => { - const result = parser({ +it('can handle empty guide', async () => { + const result = await parser({ date, channel, content: fs.readFileSync(path.resolve(__dirname, '__data__/no_content.html')) From c43145c2329e4efb4ddc5fbc6672589a0f4cdc2a Mon Sep 17 00:00:00 2001 From: freearhey <7253922+freearhey@users.noreply.github.com> Date: Sun, 19 Apr 2026 04:05:45 +0300 Subject: [PATCH 45/92] Update programtv.onet.pl.config.js --- .../programtv.onet.pl.config.js | 38 +++++++++++++++++-- 1 file changed, 34 insertions(+), 4 deletions(-) diff --git a/sites/programtv.onet.pl/programtv.onet.pl.config.js b/sites/programtv.onet.pl/programtv.onet.pl.config.js index c15c99fc2..c6b6da146 100644 --- a/sites/programtv.onet.pl/programtv.onet.pl.config.js +++ b/sites/programtv.onet.pl/programtv.onet.pl.config.js @@ -1,3 +1,4 @@ +const axios = require('axios') const cheerio = require('cheerio') const dayjs = require('dayjs') const utc = require('dayjs/plugin/utc') @@ -15,10 +16,10 @@ module.exports = { return `https://programtv.onet.pl/program-tv/${channel.site_id}?dzien=${day}` }, - parser: function ({ content, date }) { + async parser({ content, date }) { const programs = [] const items = parseItems(content) - items.forEach(item => { + for (const item of items) { const prev = programs[programs.length - 1] const $item = cheerio.load(item) let start = parseStart($item, date) @@ -30,19 +31,27 @@ module.exports = { prev.stop = start } const stop = start.add(1, 'hour') + + const programUrl = parseProgramUrl($item) + const details = await loadProgramDetails(programUrl) + let image + if (details) { + image = details.image + } + programs.push({ title: parseTitle($item), description: parseDescription($item), + image, category: parseCategory($item), start, stop }) - }) + } return programs }, async channels() { - const axios = require('axios') const data = await axios .get('https://programtv.onet.pl/stacje') .then(r => r.data) @@ -67,6 +76,27 @@ module.exports = { } } +async function loadProgramDetails(url) { + const html = await axios + .get(url) + .then(r => r.data) + .catch(console.error) + if (!html) return + + const $ = cheerio.load(html) + + return { + image: $('meta[property="og:image"]').attr('content') + } +} + +function parseProgramUrl($item) { + const href = $item('.titles > a').attr('href') + const url = new URL(href, 'https://programtv.onet.pl') + + return url.href +} + function parseStart($item, date) { const timeString = $item('.hours > .hour').text() const dateString = `${date.format('MM/DD/YYYY')} ${timeString}` From c3b1a4ef31b06f6f9974be1fbc605a2cc3d39b4f Mon Sep 17 00:00:00 2001 From: freearhey <7253922+freearhey@users.noreply.github.com> Date: Sun, 19 Apr 2026 04:33:02 +0300 Subject: [PATCH 46/92] Update content.html --- sites/musor.tv/__data__/content.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sites/musor.tv/__data__/content.html b/sites/musor.tv/__data__/content.html index 2ccd416a8..862d51e59 100644 --- a/sites/musor.tv/__data__/content.html +++ b/sites/musor.tv/__data__/content.html @@ -4291,7 +4291,7 @@ body {
magyar dokumentumfilm,2016
TV műsor 16 év felettieknek!
-
Lévai Balázs több mint egy éven át forgatott a Tankcsapdával.
+
19/3.

2006-ban a Harsányi Levente és Korda György alkotta páros volt az egyik legnépszerűbb zenés tévéműsor házigazdája. A műsorban klasszikus nagy slágerek versenyeznek közkedvelt művészek előadásában a nézők szavazataiért.
From fd12f8095652d3af61dc60c6e285ecbcb8574dfb Mon Sep 17 00:00:00 2001 From: freearhey <7253922+freearhey@users.noreply.github.com> Date: Sun, 19 Apr 2026 04:33:14 +0300 Subject: [PATCH 47/92] Update musor.tv.test.js --- sites/musor.tv/musor.tv.test.js | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/sites/musor.tv/musor.tv.test.js b/sites/musor.tv/musor.tv.test.js index b723fe3f9..696114761 100644 --- a/sites/musor.tv/musor.tv.test.js +++ b/sites/musor.tv/musor.tv.test.js @@ -11,7 +11,7 @@ dayjs.extend(utc) const date = dayjs.utc('2025-10-11', 'YYYY-MM-DD').startOf('d') const channel = { site_id: 'MAGYAR_MOZI_TV', - xmltv_id: 'MagyarMoziTV.hu', + xmltv_id: 'MagyarMoziTV.hu' } it('can generate valid url', () => { @@ -36,14 +36,17 @@ it('can parse response', () => { start: '2025-10-10T23:05:00.000Z', stop: '2025-10-11T00:50:00.000Z', title: 'A 25. év - Három rohadék rockcsempész (Tankcsapda road movie)', - description: 'Lévai Balázs több mint egy éven át forgatott a Tankcsapdával.' + subTitle: '19/3.', + description: + '2006-ban a Harsányi Levente és Korda György alkotta páros volt az egyik legnépszerűbb zenés tévéműsor házigazdája. A műsorban klasszikus nagy slágerek versenyeznek közkedvelt művészek előadásában a nézők szavazataiért.' }) expect(results[1]).toMatchObject({ start: '2025-10-11T00:50:00.000Z', stop: '2025-10-11T01:45:00.000Z', title: 'Megbélyegzetten - 1968', - description: 'Néhány tinédzser diák, egy csalinak szánt újságcikk nyomán levelet írt Ausztriába 1968-ban.' + description: + 'Néhány tinédzser diák, egy csalinak szánt újságcikk nyomán levelet írt Ausztriába 1968-ban.' }) }) From 54f419f22d8bc8ec4aa753d1553eecf8f76c5070 Mon Sep 17 00:00:00 2001 From: freearhey <7253922+freearhey@users.noreply.github.com> Date: Sun, 19 Apr 2026 04:33:27 +0300 Subject: [PATCH 48/92] Update musor.tv.config.js --- sites/musor.tv/musor.tv.config.js | 20 +++++++++++++++++--- 1 file changed, 17 insertions(+), 3 deletions(-) diff --git a/sites/musor.tv/musor.tv.config.js b/sites/musor.tv/musor.tv.config.js index 2be25bf1f..c38d926a0 100644 --- a/sites/musor.tv/musor.tv.config.js +++ b/sites/musor.tv/musor.tv.config.js @@ -31,9 +31,11 @@ module.exports = { let start = parseStart($item) if (prev) prev.stop = start const stop = start.add(30, 'm') + const details = parseDetails($item) programs.push({ title: parseTitle($item), - description: parseDescription($item), + subTitle: details.subTitle, + description: details.description, image: parseImage($item), start, stop @@ -80,8 +82,20 @@ function parseTitle($item) { return $item.find('h3 > a').text().trim() } -function parseDescription($item) { - return $item.find('div.progentrylong').text().trim() +function parseDetails($item) { + const details = $item.find('div.progentrylong').html().split('
').filter(Boolean) + + if (details.length === 1) + return { + description: details[0] + } + + const [subTitle, description] = details + + return { + subTitle, + description + } } function parseStart($item) { From 1c193e7288108dda22223e1d81d4f930530f268a Mon Sep 17 00:00:00 2001 From: freearhey <7253922+freearhey@users.noreply.github.com> Date: Sun, 19 Apr 2026 04:38:38 +0300 Subject: [PATCH 49/92] Update starhubtvplus.com_en.channels.xml --- .../starhubtvplus.com_en.channels.xml | 234 +++++++++--------- 1 file changed, 118 insertions(+), 116 deletions(-) diff --git a/sites/starhubtvplus.com/starhubtvplus.com_en.channels.xml b/sites/starhubtvplus.com/starhubtvplus.com_en.channels.xml index cccb0d1ac..478d9e370 100644 --- a/sites/starhubtvplus.com/starhubtvplus.com_en.channels.xml +++ b/sites/starhubtvplus.com/starhubtvplus.com_en.channels.xml @@ -1,119 +1,121 @@ - Premier Sports - Euronews HD - Sony Entertainment Television - HGTV - TV5MONDE HD - Hub Premier 3 - ABC Australia HD - Hub Sports 2 HD - DW English HD - Nick Jr - HISTORY HD - TVB Jade HD - TVB Xing He - Citra Entertainment - beIN Sports 4 - Asianet - ETTV ASIA HD - CTI TV HD - BBC World News HD - Zee TV - France24 - Hub Premier 7 - Astro Warna HD - Preview Channel - Cartoonito HD - beIN Sports HD - Travelxp HD - Discovery HD - Cbeebies HD - KTV HD - Cartoon Network - Dragon TV - COLORS Tamil HD - Cinema One Global - Astro Sensasi HD - Zee Cinema - FIGHT SPORTS HD - ADITHYA TV - Arirang TV HD - CGTN - Zee Thirai - Hub Premier 1 - Sky News HD - Vannathirai - TestChannel 996 - NHK WORLD - JAPAN HD - The Filipino Channel HD - beIN Sports 5 - Hub Premier 8 - Crime + Investigation HD - Fox News Channel - ONE (Malay) - COLORS - FashionTV HD - Hub Sports 4 HD - ONE HD - Hits HD - BBC Earth HD - Bloomberg Originals - Hub Sports 3 HD - Asianet Movies - SPOTV - NHK World Premium HD - Sun Music - CNN HD - Hub Sports 1 HD - HBO Signature HD - BBC Lifestyle - TVBS Asia - Celestial Movies HD - Animax HD - Hub Premier 5 - HBO Family HD - Hub Premier 4 - Test 998 - TestChannel2 - SPOTV2 - TVBS-NEWS - Hub Sports 7 - tvN HD - TestChannel 993 - Bloomberg Television HD - Nickelodeon Asia HD - TestChannel1 - Hub Sports 6 - KBS World HD - Vijay TV HD - Karisma - Hub VVDrama - HITS MOVIES HD - HBO Hits HD - Kalaignar TV - AXN HD - Hub E City HD - Phoenix InfoNews Channel HD - beIN Sports 2 HD - Sun TV - SEA Today - beIN Sports 3 - Hub E City HD - SONY MAX - Lifetime HD - TestChannel 995 - ANC - Phoenix Chinese Channel HD - CCTV-4 - Hub Sports 5 HD - Hub Premier 6 - CCM - CNBC HD - HBO HD - Zee Tamil - DreamWorks Channel HD - ROCK Entertainment - Hub Premier 2 (HD) - Cinemax HD + SONY MAX + ONE HD + TV5MONDE HD + HBO Signature HD + ADITHYA TV + SPOTV2 + Hub Sports 8 HD + Sun TV + KTV HD + Cinemax HD + Phoenix Chinese Channel HD + NHK World Premium HD + TestChannel 996 + Hub Premier 6 + Arirang TV HD + Vannathirai + Hub Premier 8 + Hub Sports 3 HD + Hub Premier 1 + Zee Cinema HD + Premier Sports + Hub Premier 2 (HD) + beIN SPORTS 2 HD + Kalaignar TV + NHK WORLD - JAPAN HD + Preview Channel + TVB Xing He HD + Crime + Investigation HD + beIN SPORTS 4 HD + beIN SPORTS HD + Sun Music + Hub Premier 3 + TestChannel2 + Nick Jr. HD + Hub Sports 5 HD + ETTV ASIA HD + BBC Lifestyle HD + Cinema One Global + Zee TV HD + KBS World HD + ABC Australia HD + HITS NOW + beIN SPORTS 5 HD + AXN HD + Test 998 + Hub Premier 4 + CNBC HD + Cbeebies HD + beIN SPORTS 3 HD + Hub Ruyi + Hub Sports 2 HD + Asianet + ONE (Malay) + CTI Asia HD + Hub Sports 4 HD + Cartoon Network + Hub VV Drama HD + DreamWorks HD + BBC News HD + Astro Warna HD + Hub E City HD + ANC + Karisma + AFN + Sky News HD + DW English HD + TVB Jade HD + Animax HD + Hub Sports 7 HD + CNN HD + COLORS Tamil HD + France24 + Dragon TV + Lifetime HD + Cricbuzz 2 + FashionTV HD + FIGHT SPORTS HD + The Filipino Channel HD + Hub E City HD + Hub Premier 5 + Asianet Movies + Zee Tamil HD + Hits HD + Hub Sports 1 HD + Celestial Movies HD + CGTN + Cricbuzz + Vijay TV HD + COLORS + Nickelodeon Asia HD + ROCK Entertainment HD + HGTV HD + CCTV-4 + Bloomberg Originals + Hub Sports 6 HD + Hub Premier 7 + CCM + HBO Hits HD + Sony Entertainment Television + Discovery HD + Phoenix InfoNews Channel HD + HBO Family HD + HBO HD + HISTORY HD + TVBS Asia + TestChannel 993 + Channel 251 + SPOTV + Zee Thirai + TVBS-NEWS + Fox News Channel HD + Astro Sensasi HD + Travelxp HD + Citra Entertainment + HITS MOVIES HD + Bloomberg Television HD + Euronews HD + BBC Earth HD From 3caabfba43f6212da3858ec1bb25b8e5f2920be2 Mon Sep 17 00:00:00 2001 From: freearhey <7253922+freearhey@users.noreply.github.com> Date: Sun, 19 Apr 2026 04:38:46 +0300 Subject: [PATCH 50/92] Update starhubtvplus.com_zh.channels.xml --- .../starhubtvplus.com_zh.channels.xml | 234 +++++++++--------- 1 file changed, 118 insertions(+), 116 deletions(-) diff --git a/sites/starhubtvplus.com/starhubtvplus.com_zh.channels.xml b/sites/starhubtvplus.com/starhubtvplus.com_zh.channels.xml index 893f672ee..02665df7a 100644 --- a/sites/starhubtvplus.com/starhubtvplus.com_zh.channels.xml +++ b/sites/starhubtvplus.com/starhubtvplus.com_zh.channels.xml @@ -1,119 +1,121 @@ - Premier Sports - Euronews HD - Sony Entertainment Television - HGTV - TV5MONDE HD - Hub Premier 3 - ABC Australia HD - Hub Sports 2 HD - DW English HD - Nick Jr - HISTORY HD - TVB Jade HD - TVB Xing He - Citra Entertainment - beIN Sports 4 - Asianet - ETTV ASIA HD - CTI TV HD - BBC World News HD - Zee TV - France24 - Hub Premier 7 - Astro Warna HD - Preview Channel - Cartoonito HD - beIN Sports HD - Travelxp HD - Discovery HD - Cbeebies HD - KTV HD - Cartoon Network - Dragon TV - COLORS Tamil HD - Cinema One Global - Astro Sensasi HD - Zee Cinema - FIGHT SPORTS HD - ADITHYA TV - Arirang TV HD - CGTN - Zee Thirai - Hub Premier 1 - Sky News HD - Vannathirai - TestChannel 996 - NHK WORLD - JAPAN HD - The Filipino Channel HD - beIN Sports 5 - Hub Premier 8 - Crime + Investigation HD - Fox News Channel - ONE (Malay) - COLORS - FashionTV HD - Hub Sports 4 HD - ONE HD - Hits HD - BBC Earth HD - Bloomberg Originals - Hub Sports 3 HD - Asianet Movies - SPOTV - NHK World Premium HD - Sun Music - CNN HD - Hub Sports 1 HD - HBO Signature HD - BBC Lifestyle - TVBS Asia - Celestial Movies HD - Animax HD - Hub Premier 5 - HBO Family HD - Hub Premier 4 - Test 998 - TestChannel2 - SPOTV2 - TVBS-NEWS - Hub Sports 7 - tvN HD - TestChannel 993 - Bloomberg Television HD - Nickelodeon Asia HD - TestChannel1 - Hub Sports 6 - KBS World HD - Vijay TV HD - Karisma - Hub VVDrama - HITS MOVIES HD - HBO Hits HD - Kalaignar TV - AXN HD - Hub E City HD - Phoenix InfoNews Channel HD - beIN Sports 2 HD - Sun TV - SEA Today - beIN Sports 3 - Hub E City HD - SONY MAX - Lifetime HD - TestChannel 995 - ANC - Phoenix Chinese Channel HD - CCTV-4 - Hub Sports 5 HD - Hub Premier 6 - CCM - CNBC HD - HBO HD - Zee Tamil - DreamWorks Channel HD - ROCK Entertainment - Hub Premier 2 (HD) - Cinemax HD + SONY MAX + ONE HD + TV5MONDE HD + HBO Signature HD + ADITHYA TV + SPOTV2 + Hub Sports 8 + Sun TV + KTV HD + Cinemax HD + Phoenix Chinese Channel HD + NHK World Premium HD + TestChannel 996 + Hub Premier 6 + Arirang TV + Vannathirai + Hub Premier 8 + Hub Sports 3 HD + Hub Premier 1 + Zee Cinema + Premier Sports + Hub Premier 2 (HD) + beIN Sports 2 HD + Kalaignar TV + NHK WORLD - JAPAN + Preview Channel + TVB Xing He + Crime + Investigation HD + beIN SPORTS MAX 2 HD + beIN Sports HD + Sun Music + Hub Premier 3 + TestChannel2 + Nick Jr + Hub Sports 5 HD + ETTV ASIA HD + BBC Lifestyle + Cinema One Global + Zee TV + KBS World HD + ABC Australia + HITSNOW + beIN SPORTS MAX 3 HD + AXN HD + Test 998 + Hub Premier 4 + CNBC HD + Cbeebies HD + beIN Sports 3 + Hub Ruyi + Hub Sports 2 HD + Asianet + ONE (Malay) + CTI TV HD + Hub Sports 4 HD + Cartoon Network + Hub VVDrama + DreamWorks Channel HD + BBC World News HD + Astro Warna + Hub E City HD + ANC + Karisma + AFN + Sky News HD + DW (Deutsch) + TVB Jade HD + Animax HD + Hub Sports 7 + CNN HD + COLORS Tamil HD + France24 + Dragon TV + Lifetime HD + Cricbuzz 2 + FashionTV HD + FIGHT SPORTS HD + The Filipino Channel + Hub E City HD + Hub Premier 5 + Asianet Movies + Zee Tamil + Hits HD + Hub Sports 1 HD + Celestial Movies HD + CGTN + Cricbuzz + Vijay TV + COLORS + Nickelodeon Asia HD + ROCK Entertainment + HGTV + CCTV-4 + Bloomberg Quicktake + Hub Sports 6 + Hub Premier 7 + CCM + HBO Hits HD + Sony Entertainment Television + Discovery HD + Phoenix InfoNews Channel HD + HBO Family HD + HBO HD + HISTORY HD + TVBS Asia + TestChannel 993.. + Channel 251 + SPOTV + Zee Thirai + TVBS-NEWS + Fox News Channel + Hub Sensasi + Travelxp HD + Citra Entertainment + HITS MOVIES HD + Bloomberg Television HD + Euronews HD + BBC Earth HD From ba064254cd3a66904294c13d0ab8bafa66c9d9a7 Mon Sep 17 00:00:00 2001 From: freearhey <7253922+freearhey@users.noreply.github.com> Date: Sun, 19 Apr 2026 04:55:09 +0300 Subject: [PATCH 51/92] Update tvguide.com.test.js --- sites/tvguide.com/tvguide.com.test.js | 24 +++++++----------------- 1 file changed, 7 insertions(+), 17 deletions(-) diff --git a/sites/tvguide.com/tvguide.com.test.js b/sites/tvguide.com/tvguide.com.test.js index 52aa40b16..6a6f9459b 100644 --- a/sites/tvguide.com/tvguide.com.test.js +++ b/sites/tvguide.com/tvguide.com.test.js @@ -17,29 +17,19 @@ const channel = { } it('can generate valid url', async () => { - axios.get.mockImplementation(url => { - if (url === 'https://www.tvguide.com/listings/') { - return Promise.resolve({ - data: fs.readFileSync(path.join(__dirname, '__data__', 'content.html'), 'utf8') - }) - } - throw new Error(`Unexpected URL: ${url}`) - }) - const result = await url({ date }) expect(result).toBe( - 'https://backend.tvguide.com/tvschedules/tvguide/9100001138/web?start=1753747200&duration=240&apiKey=DI9elXhZ3bU6ujsA2gXEKOANyncXGUGc' + 'https://backend.tvguide.com/tvschedules/tvguide/9100001138/web?start=1753747200&duration=240' ) }) it('can parse response', async () => { - const content = JSON.parse(fs.readFileSync(path.join(__dirname, '__data__', 'content.json'), 'utf-8')) + const content = JSON.parse( + fs.readFileSync(path.join(__dirname, '__data__', 'content.json'), 'utf-8') + ) axios.get.mockImplementation(url => { - if ( - url === - 'https://backend.tvguide.com/tvschedules/tvguide/programdetails/9000058285/web' - ) { + if (url === 'https://backend.tvguide.com/tvschedules/tvguide/programdetails/9000058285/web') { return Promise.resolve({ data: JSON.parse(fs.readFileSync(path.join(__dirname, '__data__', 'program.json'))) }) @@ -61,10 +51,10 @@ it('can parse response', async () => { title: 'Secrets of the Zoo: North Carolina', sub_title: 'Chimp Off the Old Block', description: - 'Chimps living at the North Carolina Zoo, a zoo located in the center of North Carolina that serves as the world\'s largest natural habitat zoo, as well as one of two state-supported zoos, are cared for', + "Chimps living at the North Carolina Zoo, a zoo located in the center of North Carolina that serves as the world's largest natural habitat zoo, as well as one of two state-supported zoos, are cared for", categories: ['Reality'], season: 1, - episode: 1, + episode: 1 }) }) From 8bf07f87c73d3933013f3b8a9c8cde4fce2aae7a Mon Sep 17 00:00:00 2001 From: "iptv-bot[bot]" <84861620+iptv-bot[bot]@users.noreply.github.com> Date: Sun, 19 Apr 2026 02:00:17 +0000 Subject: [PATCH 52/92] [Bot] Update SITES.md Committed by [iptv-bot](https://github.com/apps/iptv-bot) via [update](https://github.com/iptv-org/epg/actions/runs/24618623535) workflow. --- SITES.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/SITES.md b/SITES.md index a3e5ba6ed..eda2b6ed2 100644 --- a/SITES.md +++ b/SITES.md @@ -234,7 +234,7 @@ watch.whaletvplus.com364166🟢 watchyour.tv4024🟢 wavve.com7776🟢 - web.magentatv.de337216🟢https://github.com/iptv-org/epg/issues/2966 + web.magentatv.de337216🟢 webtv.delta.nl247204🟢 webtv.sk1860🟢 winplay.co30🟢 From acf68fcbcd7c98390db574bc51ad7a8f5f8f5ac3 Mon Sep 17 00:00:00 2001 From: "iptv-bot[bot]" <84861620+iptv-bot[bot]@users.noreply.github.com> Date: Sun, 19 Apr 2026 02:00:19 +0000 Subject: [PATCH 53/92] [Bot] Update GUIDES.md Committed by [iptv-bot](https://github.com/apps/iptv-bot) via [update](https://github.com/iptv-org/epg/actions/runs/24618623535) workflow. --- GUIDES.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/GUIDES.md b/GUIDES.md index bbc18d0fa..46c58a37d 100644 --- a/GUIDES.md +++ b/GUIDES.md @@ -5,7 +5,7 @@ HostStatusChannelsLast UpdatedLinks - worker-9dd4.onrender.com🟢12 days agochannels.xml
guide.xml + worker-9dd4.onrender.com🟢1a day agochannels.xml
guide.xml From 8602f8e43035532b6707e38182b012f2208cf4a2 Mon Sep 17 00:00:00 2001 From: freearhey <7253922+freearhey@users.noreply.github.com> Date: Sun, 19 Apr 2026 05:02:14 +0300 Subject: [PATCH 54/92] Update tvguide.com.config.js --- sites/tvguide.com/tvguide.com.config.js | 72 ++++++++----------------- 1 file changed, 23 insertions(+), 49 deletions(-) diff --git a/sites/tvguide.com/tvguide.com.config.js b/sites/tvguide.com/tvguide.com.config.js index 6a92a5145..28fb49eed 100644 --- a/sites/tvguide.com/tvguide.com.config.js +++ b/sites/tvguide.com/tvguide.com.config.js @@ -11,28 +11,11 @@ const providerId = '9100001138' const maxDuration = 240 const segments = 1440 / maxDuration const headers = { - 'referer': 'https://www.tvguide.com/', - 'User-Agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/137.0.0.0 Safari/537.36', + referer: 'https://www.tvguide.com/', + 'User-Agent': + 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/137.0.0.0 Safari/537.36' } -const east_channels = [ - '5StarMax', 'ABC Network Feed', 'ActionMax', 'A&E', 'AMC', 'Animal Planet', 'BBC America', - 'BET', 'BET Her', 'Bravo', 'Cartoon Network', 'CBS National', 'Cinemax', 'CMT', 'Comedy Central', - 'Discovery', 'Disney', 'Disney Junior', 'Disney XD', 'E!', 'Flix', 'Food Network', 'FOX', 'Freeform', - 'Fuse HD', 'FX', 'FXX', 'FYI', 'Game Show Network', 'Hallmark', 'Hallmark Mystery', 'HBO 2', - 'HBO Comedy', 'HBO', 'HBO Family', 'HBO Signature', 'HBO Zone', 'HGTV', 'History', 'IFC', - 'Investigation Discovery', 'ION', 'Lifetime', 'LMN', 'LOGO', 'MAGNOLIA Network', 'MGM+ Hits HD', - 'MoreMax', 'MovieMax', 'MTV2', 'MTV', 'National Geographic', 'National Geographic Wild', 'NBC National', - 'Nickelodeon', 'Nick Jr.', 'Nicktoons', 'OuterMax', 'OWN', 'Oxygen', 'Paramount Network', 'PBS HD', - 'Pop Network', 'SHOWTIME 2', 'Paramount+ with Showtime', 'SHOWTIME EXTREME', 'SHOWTIME FAMILY ZONE', - 'SHOWTIME NEXT', 'SHOWTIME SHOWCASE', 'SHOWTIME WOMEN', 'SHOxBET', 'Smithsonian', 'STARZ Cinema', - 'STARZ Comedy', 'STARZ', 'STARZ Edge', 'STARZ ENCORE Action', 'STARZ ENCORE Black', - 'STARZ ENCORE Classic', 'STARZ ENCORE', 'STARZ ENCORE Family', 'STARZ ENCORE Suspense', - 'STARZ ENCORE Westerns', 'STARZ InBlack', 'STARZ Kids & Family', 'Sundance TV', 'Syfy', 'tbs', - 'Turner Classic Movies', 'TeenNick', 'Telemundo', 'The Movie', 'The Movie Xtra', 'ThrillerMax', 'TLC', - 'TNT', 'Travel', 'truTV', 'TV Land', 'Universal Kids', 'USA', 'VH1', 'WE tv', 'Univision' -] - module.exports = { site: 'tvguide.com', days: 2, @@ -48,21 +31,16 @@ module.exports = { }, async url({ date, segment = 1 }) { const params = [] - if (module.exports.apiKey === undefined) { - module.exports.apiKey = await module.exports.fetchApiKey() - debug('Got api key', module.exports.apiKey) - } if (date) { if (segment > 1) { date = date.add((segment - 1) * maxDuration, 'm') } params.push(`start=${date.unix()}`, `duration=${maxDuration}`) } - params.push(`apiKey=${module.exports.apiKey}`) - return date ? - `https://backend.tvguide.com/tvschedules/tvguide/${providerId}/web?${params.join('&')}` : - `https://backend.tvguide.com/tvschedules/tvguide/serviceprovider/${providerId}/sources/web?${params.join('&')}` + return date + ? `https://backend.tvguide.com/tvschedules/tvguide/${providerId}/web?${params.join('&')}` + : `https://backend.tvguide.com/tvschedules/tvguide/serviceprovider/${providerId}/sources/web?${params.join('&')}` }, async parser({ content, date, channel, fetchSegments = true }) { const programs = [] @@ -75,9 +53,11 @@ module.exports = { data.data.items .filter(i => i.channel.sourceId.toString() === channel.site_id) .forEach(i => { - result.push(...i.programSchedules.map(p => { - return { i: p, url: p.programDetails } - })) + result.push( + ...i.programSchedules.map(p => { + return { i: p, url: p.programDetails } + }) + ) }) } @@ -109,7 +89,7 @@ module.exports = { rating: item.rating ? { system: 'MPA', value: item.rating } : null, categories: Array.isArray(item.genres) ? item.genres.map(g => g.name) : null, start: dayjs.unix(item.startTime || queue.i.startTime), - stop: dayjs.unix(item.endTime || queue.i.endTime), + stop: dayjs.unix(item.endTime || queue.i.endTime) }) } catch (err) { debug(`Failed to fetch program details ${queue.url}: ${err.message}`) @@ -121,32 +101,26 @@ module.exports = { const channels = [] try { const data = await axios - .get(await this.url({}), { headers }) + .get(await this.url({}), { + headers, + proxy: { + protocol: 'http', + host: '127.0.0.1', + port: 1086 + } + }) .then(r => r.data) data.data.items.forEach(item => { - const finalName = item.fullName.replace(/Channel|Schedule/g, '').trim() - const isEast = east_channels.some(name => name.toLowerCase().includes(finalName.toLowerCase())) + const name = item.fullName.replace(/Channel|Schedule/g, '').trim() channels.push({ lang: 'en', site_id: item.sourceId, - xmltv_id: finalName.replaceAll(/[ '&]/g, '') + '.us' + (isEast ? '@East' : ''), - name: finalName + name }) }) } catch (err) { console.error('Failed to fetch channels:', err.message) } return channels - }, - async fetchApiKey() { - try { - const data = await axios - .get('https://www.tvguide.com/listings/') - .then(r => r.data) - return data ? data.match(/apiKey=([a-zA-Z0-9]+)&/)[1] : null - } catch (err) { - console.error('Failed to fetch API key:', err.message) - return null - } } -} \ No newline at end of file +} From 6f5dc6a673f15aba4c2a00a34b82e68dd3947ade Mon Sep 17 00:00:00 2001 From: freearhey <7253922+freearhey@users.noreply.github.com> Date: Sun, 19 Apr 2026 05:04:13 +0300 Subject: [PATCH 55/92] Update tvguide.com.config.js --- sites/tvguide.com/tvguide.com.config.js | 11 +---------- 1 file changed, 1 insertion(+), 10 deletions(-) diff --git a/sites/tvguide.com/tvguide.com.config.js b/sites/tvguide.com/tvguide.com.config.js index 28fb49eed..9f47d0b35 100644 --- a/sites/tvguide.com/tvguide.com.config.js +++ b/sites/tvguide.com/tvguide.com.config.js @@ -100,16 +100,7 @@ module.exports = { async channels() { const channels = [] try { - const data = await axios - .get(await this.url({}), { - headers, - proxy: { - protocol: 'http', - host: '127.0.0.1', - port: 1086 - } - }) - .then(r => r.data) + const data = await axios.get(await this.url({}), { headers }).then(r => r.data) data.data.items.forEach(item => { const name = item.fullName.replace(/Channel|Schedule/g, '').trim() channels.push({ From eaa6cd95bcb5ea1bee81d51e27a789ce94b8925a Mon Sep 17 00:00:00 2001 From: freearhey <7253922+freearhey@users.noreply.github.com> Date: Sun, 19 Apr 2026 06:15:24 +0300 Subject: [PATCH 56/92] Update ziggogo.tv.config.js --- sites/ziggogo.tv/ziggogo.tv.config.js | 112 ++++++++++++-------------- 1 file changed, 51 insertions(+), 61 deletions(-) diff --git a/sites/ziggogo.tv/ziggogo.tv.config.js b/sites/ziggogo.tv/ziggogo.tv.config.js index 480904dcb..046a4829e 100644 --- a/sites/ziggogo.tv/ziggogo.tv.config.js +++ b/sites/ziggogo.tv/ziggogo.tv.config.js @@ -1,14 +1,10 @@ const dayjs = require('dayjs') const utc = require('dayjs/plugin/utc') const doFetch = require('@ntlab/sfetch') -const debug = require('debug')('site:ziggogo.tv') +const uniqBy = require('lodash.uniqby') dayjs.extend(utc) -doFetch.setDebugger(debug) - -const detailedGuide = true - module.exports = { site: 'ziggogo.tv', days: 2, @@ -24,63 +20,57 @@ module.exports = { }, async parser({ content, channel, date }) { const programs = [] - if (content) { - const items = typeof content === 'string' ? JSON.parse(content) : content - if (Array.isArray(items.entries)) { - // fetch other segments - const queues = [ - module.exports.url({ date, segment: 6 }), - module.exports.url({ date, segment: 12 }), - module.exports.url({ date, segment: 18 }) - ] - await doFetch(queues, (url, res) => { - if (Array.isArray(res.entries)) { - items.entries.push(...res.entries) - } - }) - items.entries - .filter(item => item.channelId === channel.site_id) - .forEach(item => { - if (Array.isArray(item.events)) { - if (detailedGuide) { - queues.push( - ...item.events.map( - event => - `https://spark-prod-nl.gnp.cloud.ziggogo.tv/eng/web/linear-service/v2/replayEvent/${event.id}?returnLinearContent=true&forceLinearResponse=true&language=nl` - ) - ) - } else { - item.events.forEach(event => { - programs.push({ - title: event.title, - start: dayjs.utc(event.startTime * 1000), - stop: dayjs.utc(event.endTime * 1000) - }) - }) - } - } - }) - // fetch detailed guide - if (queues.length) { - await doFetch(queues, (url, res) => { - programs.push({ - title: res.title, - subTitle: res.episodeName, - description: res.longDescription ? res.longDescription : res.shortDescription, - category: res.genres, - season: res.seasonNumber, - episode: res.episodeNumber, - country: res.countryOfOrigin, - actor: res.actors, - director: res.directors, - producer: res.producers, - date: res.productionDate, - start: dayjs.utc(res.startTime * 1000), - stop: dayjs.utc(res.endTime * 1000) - }) - }) - } + if (!content) return [] + const parsed = typeof content === 'string' ? JSON.parse(content) : content + if (!Array.isArray(parsed.entries)) return [] + const entries = parsed.entries + + // fetch other segments + let segments = [ + module.exports.url({ date, segment: 6 }), + module.exports.url({ date, segment: 12 }), + module.exports.url({ date, segment: 18 }) + ] + await doFetch(segments, (url, res) => { + if (Array.isArray(res.entries)) { + entries.push(...res.entries) } + }) + + let events = [] + entries + .filter(item => item.channelId === channel.site_id) + .forEach(item => { + if (!Array.isArray(item.events)) return + events.push( + ...item.events.map(event => ({ + startTime: event.startTime, + url: `https://spark-prod-nl.gnp.cloud.ziggogo.tv/eng/web/linear-service/v2/replayEvent/${event.id}?returnLinearContent=true&forceLinearResponse=true&language=nl` + })) + ) + }) + + events = uniqBy(events, 'startTime') + + // fetch detailed guide + if (events.length) { + await doFetch(events, (url, res) => { + programs.push({ + title: res.title, + subTitle: res.episodeName, + description: res.longDescription ? res.longDescription : res.shortDescription, + category: res.genres, + season: res.seasonNumber, + episode: res.episodeNumber, + country: res.countryOfOrigin, + actor: res.actors, + director: res.directors, + producer: res.producers, + date: res.productionDate, + start: dayjs.utc(res.startTime * 1000), + stop: dayjs.utc(res.endTime * 1000) + }) + }) } return programs From 7ed57c8cf6555302d5711ea534f3fd61aed07107 Mon Sep 17 00:00:00 2001 From: freearhey <7253922+freearhey@users.noreply.github.com> Date: Sun, 19 Apr 2026 07:25:12 +0300 Subject: [PATCH 57/92] Delete build.html --- sites/tvplus.com.tr/__data__/build.html | 7 ------- 1 file changed, 7 deletions(-) delete mode 100644 sites/tvplus.com.tr/__data__/build.html diff --git a/sites/tvplus.com.tr/__data__/build.html b/sites/tvplus.com.tr/__data__/build.html deleted file mode 100644 index 4301b2ce4..000000000 --- a/sites/tvplus.com.tr/__data__/build.html +++ /dev/null @@ -1,7 +0,0 @@ - - - - - - \ No newline at end of file From 14e10026420a45419d916118e3a9fc7b6940fc19 Mon Sep 17 00:00:00 2001 From: freearhey <7253922+freearhey@users.noreply.github.com> Date: Sun, 19 Apr 2026 07:25:15 +0300 Subject: [PATCH 58/92] Update content.json --- sites/tvplus.com.tr/__data__/content.json | 15510 +++++++++----------- 1 file changed, 6820 insertions(+), 8690 deletions(-) diff --git a/sites/tvplus.com.tr/__data__/content.json b/sites/tvplus.com.tr/__data__/content.json index 953ac5970..fc678ed91 100644 --- a/sites/tvplus.com.tr/__data__/content.json +++ b/sites/tvplus.com.tr/__data__/content.json @@ -1,8691 +1,6821 @@ -{ - "pageProps": { - "channelName": "Nick JR", - "allPlaybillList": [ - [ - { - "id": "195082880", - "name": "Camgöz (2020)", - "starttime": "2024-12-14 00:10:00 UTC+03:00", - "endtime": "2024-12-14 00:20:00 UTC+03:00", - "genres": "Çocuk", - "advisory": [], - "ratingid": "0", - "picture": "https://gbzeottvsc01.tvplus.com.tr:33207/CPS/images/universal/film/program/202412/20241208/96/2126321533085eb8f42a_0_XL.jpg", - "isnpvr": "1", - "introduce": "Max'in Camgöz adında yarı köpek balığı yarı köpek eşsiz bir evcil havyanı vardır. İlk başlarda Camgöz'ü saklamaya çalışsa da Sisli Pınarlar'da, en iyi arkadaşlar, meraklı komşular ve hatta Max'in ailesi bile yaramaz yeni arkadaşını fark edecektir.", - "programType": "episode", - "channelid": "4353", - "broadcastType": "Banttan", - "seasonInfo": "1. Sezon - 113. Bölüm" - }, - { - "id": "195082886", - "name": "Camgöz (2020)", - "starttime": "2024-12-14 00:20:00 UTC+03:00", - "endtime": "2024-12-14 00:25:00 UTC+03:00", - "genres": "Çocuk", - "advisory": [], - "ratingid": "0", - "picture": "https://gbzeottvsc01.tvplus.com.tr:33207/CPS/images/universal/film/program/202412/20241208/39/2126321533115eb8f42a_0_XL.jpg", - "isnpvr": "1", - "introduce": "Max'in Camgöz adında yarı köpek balığı yarı köpek eşsiz bir evcil havyanı vardır. İlk başlarda Camgöz'ü saklamaya çalışsa da Sisli Pınarlar'da, en iyi arkadaşlar, meraklı komşular ve hatta Max'in ailesi bile yaramaz yeni arkadaşını fark edecektir.", - "programType": "episode", - "channelid": "4353", - "broadcastType": "Banttan", - "seasonInfo": "1. Sezon - 114. Bölüm" - }, - { - "id": "195082892", - "name": "Camgöz (2020)", - "starttime": "2024-12-14 00:25:00 UTC+03:00", - "endtime": "2024-12-14 00:35:00 UTC+03:00", - "genres": "Çocuk", - "advisory": [], - "ratingid": "0", - "picture": "https://gbzeottvsc01.tvplus.com.tr:33207/CPS/images/universal/film/program/202412/20241208/9/2126321533145eb8f42a_0_XL.jpg", - "isnpvr": "1", - "introduce": "Max'in Camgöz adında yarı köpek balığı yarı köpek eşsiz bir evcil havyanı vardır. İlk başlarda Camgöz'ü saklamaya çalışsa da Sisli Pınarlar'da, en iyi arkadaşlar, meraklı komşular ve hatta Max'in ailesi bile yaramaz yeni arkadaşını fark edecektir.", - "programType": "episode", - "channelid": "4353", - "broadcastType": "Banttan", - "seasonInfo": "1. Sezon - 115. Bölüm" - }, - { - "id": "195082898", - "name": "Peppa Pig", - "starttime": "2024-12-14 00:35:00 UTC+03:00", - "endtime": "2024-12-14 00:40:00 UTC+03:00", - "genres": "Çocuk", - "advisory": [], - "ratingid": "0", - "picture": "https://gbzeottvsc01.tvplus.com.tr:33207/CPS/images/universal/film/program/202412/20241208/55/2126321533175eb8f42a_0_XL.jpg", - "isnpvr": "1", - "introduce": "Peppa, annesi, babası ve abisi George'la yaşayan küçük bir domuzdur. Peppa oyun oynamayı, şık giyinmeyi, uzun seyahatleri ve çamurda zıplamayı sever.", - "programType": "episode", - "channelid": "4353", - "broadcastType": "Banttan", - "seasonInfo": "1. Sezon - 120. Bölüm" - }, - { - "id": "195082904", - "name": "Peppa Pig", - "starttime": "2024-12-14 00:40:00 UTC+03:00", - "endtime": "2024-12-14 00:45:00 UTC+03:00", - "genres": "Çocuk", - "advisory": [], - "ratingid": "0", - "picture": "https://gbzeottvsc01.tvplus.com.tr:33207/CPS/images/universal/film/program/202412/20241208/87/2126321533205eb8f42a_0_XL.jpg", - "isnpvr": "1", - "introduce": "Peppa, annesi, babası ve abisi George'la yaşayan küçük bir domuzdur. Peppa oyun oynamayı, şık giyinmeyi, uzun seyahatleri ve çamurda zıplamayı sever.", - "programType": "episode", - "channelid": "4353", - "broadcastType": "Banttan", - "seasonInfo": "1. Sezon - 121. Bölüm" - }, - { - "id": "195082910", - "name": "Peppa Pig", - "starttime": "2024-12-14 00:45:00 UTC+03:00", - "endtime": "2024-12-14 00:50:00 UTC+03:00", - "genres": "Çocuk", - "advisory": [], - "ratingid": "0", - "picture": "https://gbzeottvsc01.tvplus.com.tr:33207/CPS/images/universal/film/program/202412/20241208/94/2126321533235eb8f42a_0_XL.jpg", - "isnpvr": "1", - "introduce": "Peppa, annesi, babası ve abisi George'la yaşayan küçük bir domuzdur. Peppa oyun oynamayı, şık giyinmeyi, uzun seyahatleri ve çamurda zıplamayı sever.", - "programType": "episode", - "channelid": "4353", - "broadcastType": "Banttan", - "seasonInfo": "1. Sezon - 122. Bölüm" - }, - { - "id": "195082916", - "name": "Peppa Pig", - "starttime": "2024-12-14 00:50:00 UTC+03:00", - "endtime": "2024-12-14 00:55:00 UTC+03:00", - "genres": "Çocuk", - "advisory": [], - "ratingid": "0", - "picture": "https://gbzeottvsc01.tvplus.com.tr:33207/CPS/images/universal/film/program/202412/20241208/27/2126321543265eb8f42a_0_XL.jpg", - "isnpvr": "1", - "introduce": "Peppa, annesi, babası ve abisi George'la yaşayan küçük bir domuzdur. Peppa oyun oynamayı, şık giyinmeyi, uzun seyahatleri ve çamurda zıplamayı sever.", - "programType": "episode", - "channelid": "4353", - "broadcastType": "Banttan", - "seasonInfo": "1. Sezon - 123. Bölüm" - }, - { - "id": "195086634", - "name": "Minik Şef", - "starttime": "2024-12-14 00:55:00 UTC+03:00", - "endtime": "2024-12-14 01:15:00 UTC+03:00", - "genres": "Çocuk", - "advisory": [], - "ratingid": "0", - "picture": "https://gbzeottvsc01.tvplus.com.tr:33207/CPS/images/universal/film/program/202412/20241208/94/2126321543295eb8f42a_0_XL.jpg", - "isnpvr": "1", - "introduce": "Minik Şef yağmurlu bir gün Peynirli Makaroni yapar ama akan bir çatı ağaç kütüğü mutfağında kaos yaratır! Minik Şef korsan patates yahnisi pişiriyor ve özel malzemeyi bulmak için bir hazine haritası kullanıyor.", - "programType": "episode", - "channelid": "4353", - "broadcastType": "Banttan", - "seasonInfo": "1. Sezon - 108. Bölüm" - }, - { - "id": "195086640", - "name": "Barbapapa Ailesi", - "starttime": "2024-12-14 01:15:00 UTC+03:00", - "endtime": "2024-12-14 01:40:00 UTC+03:00", - "genres": "Çocuk", - "advisory": [], - "ratingid": "0", - "picture": "https://gbzeottvsc01.tvplus.com.tr:33207/CPS/images/universal/film/program/202412/20241208/92/2126321543325eb8f42a_0_XL.jpg", - "isnpvr": "1", - "introduce": "Barbapapa ailesi bir bisiklet gezintisi sırasında harabe halindeki eski bir ortaçağ kalesini keşfeder. Barbapapa ve Lolita bir balonla seyahat ederken fırtınaya yakalanırlar ve ıssız bir adada mahsur kalırlar.", - "programType": "episode", - "channelid": "4353", - "broadcastType": "Banttan", - "seasonInfo": "2. Sezon - 205. Bölüm" - }, - { - "id": "195086646", - "name": "Barbapapa Ailesi", - "starttime": "2024-12-14 01:40:00 UTC+03:00", - "endtime": "2024-12-14 02:00:00 UTC+03:00", - "genres": "Çocuk", - "advisory": [], - "ratingid": "0", - "picture": "https://gbzeottvsc01.tvplus.com.tr:33207/CPS/images/universal/film/program/202412/20241208/84/2126321543355eb8f42a_0_XL.jpg", - "isnpvr": "1", - "introduce": "En popüler ailenin dünya ekranlarına göz kamaştırıcı dönüşü! BARBAPAPA. Büyük mutlu bir aile! Barbapapalar için rutin diye bir şey yoktur: her gün sürprizlerle dolu neşeli bir maceradır!", - "programType": "episode", - "channelid": "4353", - "broadcastType": "Banttan", - "seasonInfo": "2. Sezon - 206. Bölüm" - }, - { - "id": "195086652", - "name": "Blaze ve Yol Canavarları", - "starttime": "2024-12-14 02:00:00 UTC+03:00", - "endtime": "2024-12-14 02:25:00 UTC+03:00", - "genres": "Çocuk", - "advisory": [], - "ratingid": "0", - "picture": "https://gbzeottvsc01.tvplus.com.tr:33207/CPS/images/universal/film/program/202412/20241208/55/2126321543385eb8f42a_0_XL.jpg", - "isnpvr": "1", - "introduce": "Blaze ve Yol Canavarları, dünyanın en büyük canavar kamyonu Blaze ve en iyi arkadaşı ve sürücüsü AJ adında bir çocuk hakkındaki interaktif bir anaokulu animasyon dizisidir.", - "programType": "episode", - "channelid": "4353", - "broadcastType": "Banttan", - "seasonInfo": "6. Sezon - 614. Bölüm" - }, - { - "id": "195086658", - "name": "Blaze ve Yol Canavarları", - "starttime": "2024-12-14 02:25:00 UTC+03:00", - "endtime": "2024-12-14 02:50:00 UTC+03:00", - "genres": "Çocuk", - "advisory": [], - "ratingid": "0", - "picture": "https://gbzeottvsc01.tvplus.com.tr:33207/CPS/images/universal/film/program/202412/20241208/95/2126321543415eb8f42a_0_XL.jpg", - "isnpvr": "1", - "introduce": "Boingi'ler adlı sevimli yaratıklar Axle Şehrinde kaybolunca onları bir araya getirip eve sağ salim varmalarını sağlamak Blaze ve AJ'ye düşer.", - "programType": "episode", - "channelid": "4353", - "broadcastType": "Banttan", - "seasonInfo": "6. Sezon - 615. Bölüm" - }, - { - "id": "195086664", - "name": "Paw Patrol", - "starttime": "2024-12-14 02:50:00 UTC+03:00", - "endtime": "2024-12-14 03:10:00 UTC+03:00", - "genres": "Çocuk", - "advisory": [], - "ratingid": "0", - "picture": "https://gbzeottvsc01.tvplus.com.tr:33207/CPS/images/universal/film/program/202412/20241208/92/2126321543445eb8f42a_0_XL.jpg", - "isnpvr": "1", - "introduce": "Yarış günü gelir, Köpekçikler en hızlı kim anlamak için şehrin karşı yakasına kadar yarışacak. Bay Porter pasta yarışmasına katılır ve yardıma ihtiyaç duyar. Pastayı yapıp yarışmaya yetiştirmek için çabuk olmaları gerekecek!", - "programType": "episode", - "channelid": "4353", - "broadcastType": "Banttan", - "seasonInfo": "1. Sezon - 125. Bölüm" - }, - { - "id": "195086670", - "name": "Paw Patrol", - "starttime": "2024-12-14 03:10:00 UTC+03:00", - "endtime": "2024-12-14 03:30:00 UTC+03:00", - "genres": "Çocuk", - "advisory": [], - "ratingid": "0", - "picture": "https://gbzeottvsc01.tvplus.com.tr:33207/CPS/images/universal/film/program/202412/20241208/53/2126321553475eb8f42a_0_XL.jpg", - "isnpvr": "1", - "introduce": "Birileri Kaptan Turbot'un teknesinden balık çaşıorıp duruyor, o da Ryder ve paw patrol'dan yardım istiyor. Chase, yeni ajan ekipmanıyla tekneyi inceleyip gğüvertenin altında bir grup penguen olduğunu keşfediyor", - "programType": "episode", - "channelid": "4353", - "broadcastType": "Banttan", - "seasonInfo": "2. Sezon - 201. Bölüm" - }, - { - "id": "195086676", - "name": "Baby Shark's Big Show", - "starttime": "2024-12-14 03:30:00 UTC+03:00", - "endtime": "2024-12-14 03:55:00 UTC+03:00", - "genres": "Çocuk", - "advisory": [], - "ratingid": "0", - "picture": "https://gbzeottvsc01.tvplus.com.tr:33207/CPS/images/universal/film/program/202412/20241208/30/2126321553505eb8f42a_0_XL.jpg", - "isnpvr": "1", - "introduce": "Super Shark ve Kaptan Kelp olarak Baby Shark ve William oyun süresinden tasarruf etmek için yola çıktılar ancak Kaptan Kelp sadece bir yardımcı mı? Baby Shark minicik bir evcil hayvanı sahipleniyor ama büyük bir sorumluluğa hazır mı?", - "programType": "episode", - "channelid": "4353", - "broadcastType": "Banttan", - "seasonInfo": "1. Sezon - 109. Bölüm" - }, - { - "id": "195086682", - "name": "BARBAPAPA Ailesi", - "starttime": "2024-12-14 03:55:00 UTC+03:00", - "endtime": "2024-12-14 04:15:00 UTC+03:00", - "genres": "Çocuk", - "advisory": [], - "ratingid": "0", - "picture": "https://gbzeottvsc01.tvplus.com.tr:33207/CPS/images/universal/film/program/202412/20241208/67/2126321553535eb8f42a_0_XL.jpg", - "isnpvr": "1", - "introduce": "Bay Katı'nın ikizlerinin ziyaretlerine gittiği Barbabebekler bir hazine avı düzenler ve manzaranın tadını çıkarırlar. Barbapapalar bahçede yeni bir maceraya atılır. Ancak doğada yaşamak beklediklerinden daha karmaşık çıkar.", - "programType": "episode", - "channelid": "4353", - "broadcastType": "Banttan", - "seasonInfo": "1. Sezon - 114. Bölüm" - }, - { - "id": "195086688", - "name": "Ayı Paddington'un Maceraları", - "starttime": "2024-12-14 04:15:00 UTC+03:00", - "endtime": "2024-12-14 04:40:00 UTC+03:00", - "genres": "Çocuk", - "advisory": [], - "ratingid": "0", - "picture": "https://gbzeottvsc01.tvplus.com.tr:33207/CPS/images/universal/film/program/202412/20241208/97/2126321553565eb8f42a_0_XL.jpg", - "isnpvr": "1", - "introduce": "Paddington, çalışması için arkadaşa ihtiyaç duyan PaddingTron adında bir robot yapar. Baaz herkesi onunla birlikte Diwali'yi kutlamaya davet eder ve Paddington yardımcısıdır, ama ikisi de havai fişek finalinin tadını çıkarabilecekler mi?", - "programType": "episode", - "channelid": "4353", - "broadcastType": "Banttan", - "seasonInfo": "3. Sezon - 305. Bölüm" - }, - { - "id": "195086694", - "name": "Rubble ve Ekibi", - "starttime": "2024-12-14 04:40:00 UTC+03:00", - "endtime": "2024-12-14 05:00:00 UTC+03:00", - "genres": "Çocuk", - "advisory": [], - "ratingid": "0", - "picture": "https://gbzeottvsc01.tvplus.com.tr:33207/CPS/images/universal/film/program/202412/20241208/66/2126321563595eb8f42a_0_XL.jpg", - "isnpvr": "1", - "introduce": "Rubble ve Ekibi, Café Carl'ın patlamış mısır restoranının inşaatı kontrolden çıkınca temizlik moduna geçer. Sabunlu kaza, İnşaatçı Koyu'nda kaygan bir kargaşaya neden olur. Yavrular Başkan Greatway için zamanında temizleyebilecekler mi?", - "programType": "episode", - "channelid": "4353", - "broadcastType": "Banttan", - "seasonInfo": "1. Sezon - 108. Bölüm" - }, - { - "id": "195086700", - "name": "Kaşif Dora", - "starttime": "2024-12-14 05:00:00 UTC+03:00", - "endtime": "2024-12-14 05:25:00 UTC+03:00", - "genres": "Çocuk", - "advisory": [], - "ratingid": "0", - "picture": "https://gbzeottvsc01.tvplus.com.tr:33207/CPS/images/universal/film/program/202412/20241208/15/2126321563625eb8f42a_0_XL.jpg", - "isnpvr": "1", - "introduce": "Dora'nın yengeç arkadaşları evleniyor ama Swiper yüzüğü çalıyor ve okyanusta kaybediyor. Dora yüzüğü geri almak zorundadır! Dora ve Boots, Bulut Krallığı'na geri dönmek için ihtiyacı olan sihirli flütünü kaybeden Vicuña Vicky ile tanışır.", - "programType": "episode", - "channelid": "4353", - "broadcastType": "Banttan", - "seasonInfo": "2. Sezon - 205. Bölüm" - }, - { - "id": "195086706", - "name": "Blaze ve Yol Canavarları", - "starttime": "2024-12-14 05:25:00 UTC+03:00", - "endtime": "2024-12-14 05:45:00 UTC+03:00", - "genres": "Çocuk", - "advisory": [], - "ratingid": "0", - "picture": "https://gbzeottvsc01.tvplus.com.tr:33207/CPS/images/universal/film/program/202412/20241208/13/2126321563655eb8f42a_0_XL.jpg", - "isnpvr": "1", - "introduce": "Alçak bir suçlu Axle Şehri'ndeki tüm diş fırçalarını çaldığında Blaze'in günü kurtarmak için tek şansı Özel Görev Blaze'i olmaktır!", - "programType": "episode", - "channelid": "4353", - "broadcastType": "Banttan", - "seasonInfo": "6. Sezon - 616. Bölüm" - }, - { - "id": "195086712", - "name": "Minik Şef'in Yemek Programı", - "starttime": "2024-12-14 05:45:00 UTC+03:00", - "endtime": "2024-12-14 06:10:00 UTC+03:00", - "genres": "Çocuk", - "advisory": [], - "ratingid": "0", - "picture": "https://gbzeottvsc01.tvplus.com.tr:33207/CPS/images/universal/film/program/202412/20241208/4/2126321563685eb8f42a_0_XL.jpg", - "isnpvr": "1", - "introduce": "Şef, Atıştırmalık Molası sırasında Stump Band'e en iyi fıstık ezmeli ve jöleli sandviçleri yapar. Bugün Patates Günü, Henry'nin en sevdiği bayram! Şef, Henry'nin patates yemeğini yapar ancak Henry yemeğin adını hatırlamaz!", - "programType": "episode", - "channelid": "4353", - "broadcastType": "Banttan", - "seasonInfo": "2. Sezon - 204. Bölüm" - }, - { - "id": "195086718", - "name": "Baby Shark's Big Show!", - "starttime": "2024-12-14 06:10:00 UTC+03:00", - "endtime": "2024-12-14 06:30:00 UTC+03:00", - "genres": "Çocuk", - "advisory": [], - "ratingid": "0", - "picture": "https://gbzeottvsc01.tvplus.com.tr:33207/CPS/images/universal/film/program/202412/20241208/55/2126321573715eb8f42a_0_XL.jpg", - "isnpvr": "1", - "introduce": "Rayna, William'dan sorumlu davranmasını isteyince William, Billiam adında yetişkin balık olmaya çalışır. Baby, Hank ve Goldie'nin birbirleriyle konuşmadıklarını fark edince onları tekrar bir araya getirmek için ayrıntılı bir plan yapar.", - "programType": "episode", - "channelid": "4353", - "broadcastType": "Banttan", - "seasonInfo": "2. Sezon - 209. Bölüm" - }, - { - "id": "195086724", - "name": "Camgöz (2020)", - "starttime": "2024-12-14 06:30:00 UTC+03:00", - "endtime": "2024-12-14 06:40:00 UTC+03:00", - "genres": "Çocuk", - "advisory": [], - "ratingid": "0", - "picture": "https://gbzeottvsc01.tvplus.com.tr:33207/CPS/images/universal/film/program/202412/20241208/27/2126321573745eb8f42a_0_XL.jpg", - "isnpvr": "1", - "introduce": "Max'in yarı köpekbalığı yarı köpek olan Camgöz adlı sıra dışı bir evcil hayvanı vardır. Max önce Camgöz'ü sır olarak saklamaya çalışsa da Foggy Springs'teki dostları, meraklı komşuları ve ailesi onun yeni, yaramaz dostunu er ya da geç fark edecektir.", - "programType": "episode", - "channelid": "4353", - "broadcastType": "Banttan", - "seasonInfo": "2. Sezon - 218. Bölüm" - }, - { - "id": "195086730", - "name": "Camgöz (2020)", - "starttime": "2024-12-14 06:40:00 UTC+03:00", - "endtime": "2024-12-14 06:45:00 UTC+03:00", - "genres": "Çocuk", - "advisory": [], - "ratingid": "0", - "picture": "https://gbzeottvsc01.tvplus.com.tr:33207/CPS/images/universal/film/program/202412/20241208/31/2126321573775eb8f42a_0_XL.jpg", - "isnpvr": "1", - "introduce": "Max'in yarı köpekbalığı yarı köpek olan Camgöz adlı sıra dışı bir evcil hayvanı vardır. Max önce Camgöz'ü sır olarak saklamaya çalışsa da Foggy Springs'teki dostları, meraklı komşuları ve ailesi onun yeni, yaramaz dostunu er ya da geç fark edecektir.", - "programType": "episode", - "channelid": "4353", - "broadcastType": "Banttan", - "seasonInfo": "2. Sezon - 219. Bölüm" - }, - { - "id": "195086736", - "name": "Camgöz (2020)", - "starttime": "2024-12-14 06:45:00 UTC+03:00", - "endtime": "2024-12-14 06:50:00 UTC+03:00", - "genres": "Çocuk", - "advisory": [], - "ratingid": "0", - "picture": "https://gbzeottvsc01.tvplus.com.tr:33207/CPS/images/universal/film/program/202412/20241208/49/2126321573805eb8f42a_0_XL.jpg", - "isnpvr": "1", - "introduce": "Max'in yarı köpekbalığı yarı köpek olan Camgöz adlı sıra dışı bir evcil hayvanı vardır. Max önce Camgöz'ü sır olarak saklamaya çalışsa da Foggy Springs'teki dostları, meraklı komşuları ve ailesi onun yeni, yaramaz dostunu er ya da geç fark edecektir.", - "programType": "episode", - "channelid": "4353", - "broadcastType": "Banttan", - "seasonInfo": "2. Sezon - 220. Bölüm" - }, - { - "id": "195086742", - "name": "Camgöz (2020)", - "starttime": "2024-12-14 06:50:00 UTC+03:00", - "endtime": "2024-12-14 07:00:00 UTC+03:00", - "genres": "Çocuk", - "advisory": [], - "ratingid": "0", - "picture": "https://gbzeottvsc01.tvplus.com.tr:33207/CPS/images/universal/film/program/202412/20241208/53/2126321583835eb8f42a_0_XL.jpg", - "isnpvr": "1", - "introduce": "Max'in Camgöz adında yarı köpek balığı yarı köpek eşsiz bir evcil havyanı vardır. İlk başlarda Camgöz'ü saklamaya çalışsa da Sisli Pınarlar'da, en iyi arkadaşlar, meraklı komşular ve hatta Max'in ailesi bile yaramaz yeni arkadaşını fark edecektir.", - "programType": "episode", - "channelid": "4353", - "broadcastType": "Banttan", - "seasonInfo": "1. Sezon - 101. Bölüm" - }, - { - "id": "195086748", - "name": "Paw Patrol", - "starttime": "2024-12-14 07:00:00 UTC+03:00", - "endtime": "2024-12-14 07:20:00 UTC+03:00", - "genres": "Çocuk", - "advisory": [], - "ratingid": "0", - "picture": "https://gbzeottvsc01.tvplus.com.tr:33207/CPS/images/universal/film/program/202412/20241208/46/2126321583865eb8f42a_0_XL.jpg", - "isnpvr": "1", - "introduce": "Başkan Humdinger'ın doğum günü partisi, Marshall Kitty'nin bir pinyatanın içinde sıkışıp kalmasıyla ters gider. Başkan Humdinger sisi Macera Koyu'na iterken, bulutlarda kaybolan hayvanları bulmak ve günü kurtarmak Paw Patrol'a düşer.", - "programType": "episode", - "channelid": "4353", - "broadcastType": "Banttan", - "seasonInfo": "10. Sezon - 1012. Bölüm" - }, - { - "id": "195086754", - "name": "Köpecik Pit Ekibi", - "starttime": "2024-12-14 07:20:00 UTC+03:00", - "endtime": "2024-12-14 07:30:00 UTC+03:00", - "genres": "Çocuk", - "advisory": [], - "ratingid": "0", - "picture": "https://gbzeottvsc01.tvplus.com.tr:33207/CPS/images/universal/film/program/202412/20241208/42/2126321583895eb8f42a_0_XL.jpg", - "isnpvr": "1", - "introduce": "PAW Patrol okul öncesi programı ve altı tane köpekçik baş rolü paylaşıyor: Chase, Marshall, Rocky, Zuma, Rubble ve Skye, başlarında da teknoloji meraklısı 10 yaşında bir çocuk olan Ryder var.", - "programType": "episode", - "channelid": "4353", - "broadcastType": "Banttan", - "seasonInfo": "4. Sezon - 412. Bölüm" - }, - { - "id": "195086760", - "name": "Rubble ve Ekibi", - "starttime": "2024-12-14 07:30:00 UTC+03:00", - "endtime": "2024-12-14 07:55:00 UTC+03:00", - "genres": "Çocuk", - "advisory": [], - "ratingid": "0", - "picture": "https://gbzeottvsc01.tvplus.com.tr:33207/CPS/images/universal/film/program/202412/20241208/5/2126322163925eb8f42a_0_XL.jpg", - "isnpvr": "1", - "introduce": "Hız Ustası'nın treni evcil hayvan oyun gününü kontrolden çıkarınca, Rubble ve Ekibi daha büyük, iyi ve güvenli bir tren ile günü kurtarır. Bark Yard denetimi bugün! Ama Motor patlayacak ve Ekibe altın yıldıza mal olacak mı?", - "programType": "episode", - "channelid": "4353", - "broadcastType": "Banttan", - "seasonInfo": "2. Sezon - 201. Bölüm" - }, - { - "id": "195086766", - "name": "Peppa Pig", - "starttime": "2024-12-14 07:55:00 UTC+03:00", - "endtime": "2024-12-14 08:00:00 UTC+03:00", - "genres": "Çocuk", - "advisory": [], - "ratingid": "0", - "picture": "https://gbzeottvsc01.tvplus.com.tr:33207/CPS/images/universal/film/program/202412/20241208/92/2126322163955eb8f42a_0_XL.jpg", - "isnpvr": "1", - "introduce": "Peppa, annesi, babası ve abisi George'la yaşayan küçük bir domuzdur. Peppa oyun oynamayı, şık giyinmeyi, uzun seyahatleri ve çamurda zıplamayı sever.", - "programType": "episode", - "channelid": "4353", - "broadcastType": "Banttan", - "seasonInfo": "1. Sezon - 113. Bölüm" - }, - { - "id": "195086772", - "name": "Peppa Pig", - "starttime": "2024-12-14 08:00:00 UTC+03:00", - "endtime": "2024-12-14 08:05:00 UTC+03:00", - "genres": "Çocuk", - "advisory": [], - "ratingid": "0", - "picture": "https://gbzeottvsc01.tvplus.com.tr:33207/CPS/images/universal/film/program/202412/20241208/69/2126322173985eb8f42a_0_XL.jpg", - "isnpvr": "1", - "introduce": "Peppa, annesi, babası ve abisi George'la yaşayan küçük bir domuzdur. Peppa oyun oynamayı, şık giyinmeyi, uzun seyahatleri ve çamurda zıplamayı sever.", - "programType": "episode", - "channelid": "4353", - "broadcastType": "Banttan", - "seasonInfo": "1. Sezon - 117. Bölüm" - }, - { - "id": "195086778", - "name": "Peppa Pig", - "starttime": "2024-12-14 08:05:00 UTC+03:00", - "endtime": "2024-12-14 08:10:00 UTC+03:00", - "genres": "Çocuk", - "advisory": [], - "ratingid": "0", - "picture": "https://gbzeottvsc01.tvplus.com.tr:33207/CPS/images/universal/film/program/202412/20241208/62/2126322174015eb8f42a_0_XL.jpg", - "isnpvr": "1", - "introduce": "Peppa, annesi, babası ve abisi George'la yaşayan küçük bir domuzdur. Peppa oyun oynamayı, şık giyinmeyi, uzun seyahatleri ve çamurda zıplamayı sever.", - "programType": "episode", - "channelid": "4353", - "broadcastType": "Banttan", - "seasonInfo": "1. Sezon - 118. Bölüm" - }, - { - "id": "195086784", - "name": "Peppa Pig", - "starttime": "2024-12-14 08:10:00 UTC+03:00", - "endtime": "2024-12-14 08:15:00 UTC+03:00", - "genres": "Çocuk", - "advisory": [], - "ratingid": "0", - "picture": "https://gbzeottvsc01.tvplus.com.tr:33207/CPS/images/universal/film/program/202412/20241208/45/2126322184045eb8f42a_0_XL.jpg", - "isnpvr": "1", - "introduce": "Peppa ayakkabılarını kaybeder ama yeni, kırmızı ayakkabılara sahip olur. Ayakkabılar onu o kadar mutlu eder ki ayağından hiç çıkarmak istemez.", - "programType": "episode", - "channelid": "4353", - "broadcastType": "Banttan", - "seasonInfo": "1. Sezon - 119. Bölüm" - }, - { - "id": "195086790", - "name": "Anna ve Dostları", - "starttime": "2024-12-14 08:15:00 UTC+03:00", - "endtime": "2024-12-14 08:20:00 UTC+03:00", - "genres": "Çocuk", - "advisory": [], - "ratingid": "0", - "picture": "https://gbzeottvsc01.tvplus.com.tr:33207/CPS/images/universal/film/program/202412/20241208/8/2126322194075eb8f42a_0_XL.jpg", - "isnpvr": "1", - "introduce": "Bubu, Christopher'a alerjileri anlatır. Anna'nın Froga'nın yanındayken kontrolsüzce hapşırdığını görünce Anna'nın ona alerjisi olduğunu anlar! Bir daha eskisi gibi olup olamayacaklarını merak ediyorlar!", - "programType": "episode", - "channelid": "4353", - "broadcastType": "Banttan", - "seasonInfo": "1. Sezon - 174. Bölüm" - }, - { - "id": "195086796", - "name": "Anna ve Dostları", - "starttime": "2024-12-14 08:20:00 UTC+03:00", - "endtime": "2024-12-14 08:30:00 UTC+03:00", - "genres": "Çocuk", - "advisory": [], - "ratingid": "0", - "picture": "https://gbzeottvsc01.tvplus.com.tr:33207/CPS/images/universal/film/program/202412/20241208/53/2126322194105eb8f42a_0_XL.jpg", - "isnpvr": "1", - "introduce": "Froga bahçesinde inanılmaz derecede büyük bir çilek bulduğunda hemen ona bağımlı hale gelir. Froga bir grup dev çilek daha keşfettiğinde olaylar doruğa ulaşır ve Anna bile kovulur.", - "programType": "episode", - "channelid": "4353", - "broadcastType": "Banttan", - "seasonInfo": "1. Sezon - 175. Bölüm" - }, - { - "id": "195086802", - "name": "Minik Şef", - "starttime": "2024-12-14 08:30:00 UTC+03:00", - "endtime": "2024-12-14 08:50:00 UTC+03:00", - "genres": "Çocuk", - "advisory": [], - "ratingid": "0", - "picture": "https://gbzeottvsc01.tvplus.com.tr:33207/CPS/images/universal/film/program/202412/20241208/53/2126322204135eb8f42a_0_XL.jpg", - "isnpvr": "1", - "introduce": "Minik Şef, mahalleye taşınan bir uğurböceğini karşılamak için kurabiye pişirir. Minik Şef tavada tatlı bezelye yapar ve kendi başına yemek yapmakta zorlandığında arkadaşlarının iyi mutfak yardımcıları olduğunu öğrenir.", - "programType": "episode", - "channelid": "4353", - "broadcastType": "Banttan", - "seasonInfo": "1. Sezon - 105. Bölüm" - }, - { - "id": "195086808", - "name": "Minik Şef'in Yemek Programı", - "starttime": "2024-12-14 08:50:00 UTC+03:00", - "endtime": "2024-12-14 09:00:00 UTC+03:00", - "genres": "Çocuk", - "advisory": [], - "ratingid": "0", - "picture": "https://gbzeottvsc01.tvplus.com.tr:33207/CPS/images/universal/film/program/202412/20241208/45/2126322214165eb8f42a_0_XL.jpg", - "isnpvr": "1", - "introduce": "Dünyanın en küçük şefi tarafından yaratılan, dünyanın en küçük yemek programında, dünyanın en küçük yemekleri.", - "programType": "episode", - "channelid": "4353", - "broadcastType": "Banttan", - "seasonInfo": "2. Sezon - 210. Bölüm" - }, - { - "id": "195086814", - "name": "Blaze ve Yol Canavarları", - "starttime": "2024-12-14 09:00:00 UTC+03:00", - "endtime": "2024-12-14 09:25:00 UTC+03:00", - "genres": "Çocuk", - "advisory": [], - "ratingid": "0", - "picture": "https://gbzeottvsc01.tvplus.com.tr:33207/CPS/images/universal/film/program/202412/20241208/53/2126322214195eb8f42a_0_XL.jpg", - "isnpvr": "1", - "introduce": "Ezici ve Turşu, Blazeve arkadaşlarını yelkenli yarışına davet eder. Ama hile yapmaya çalışan Ezici iki tekneyi de tropik bir adaya çarptırır. Şimdi Blaze ve arkadaşlarının eve dönmek için teknelerin eksik parçalarını bulmaları gerekiyor.", - "programType": "episode", - "channelid": "4353", - "broadcastType": "Banttan", - "seasonInfo": "1. Sezon - 107. Bölüm" - }, - { - "id": "195086820", - "name": "Hamster Diyarı", - "starttime": "2024-12-14 09:25:00 UTC+03:00", - "endtime": "2024-12-14 09:45:00 UTC+03:00", - "genres": "Çocuk", - "advisory": [], - "ratingid": "0", - "picture": "https://gbzeottvsc01.tvplus.com.tr:33207/CPS/images/universal/film/program/202412/20241208/24/2126322214225eb8f42a_0_XL.jpg", - "isnpvr": "1", - "introduce": "Hamsterlar, Num-Nuggtets adasını bulmak için Harry'nin yanardağına girerler ve kendilerini bilim fuarında bulurlar. / Hamsterlar Kral Harry'nin sihirli bir şekilde patatese dönüştüğüne inanırlar ve onu normale döndürmeye yemin ederler.", - "programType": "episode", - "channelid": "4353", - "broadcastType": "Banttan", - "seasonInfo": "1. Sezon - 107. Bölüm" - }, - { - "id": "195086826", - "name": "Paw Patrol", - "starttime": "2024-12-14 09:45:00 UTC+03:00", - "endtime": "2024-12-14 10:10:00 UTC+03:00", - "genres": "Çocuk", - "advisory": [], - "ratingid": "0", - "picture": "https://gbzeottvsc01.tvplus.com.tr:33207/CPS/images/universal/film/program/202412/20241208/30/2126322214255eb8f42a_0_XL.jpg", - "isnpvr": "1", - "introduce": "Kaptan Turbot ve kuzeni Francois, bir çift dağ keçisini gözlemlerken aniden çığ düşer. Çiftçi Al, mısır tarlasında gizemli hasat çemberleri bulur ve neler olduğunu öğrenmek için Paw Patrol'ü arar.", - "programType": "episode", - "channelid": "4353", - "broadcastType": "Banttan", - "seasonInfo": "11. Sezon - 1108. Bölüm" - }, - { - "id": "195086832", - "name": "Paw Patrol", - "starttime": "2024-12-14 10:10:00 UTC+03:00", - "endtime": "2024-12-14 10:30:00 UTC+03:00", - "genres": "Çocuk", - "advisory": [], - "ratingid": "0", - "picture": "https://gbzeottvsc01.tvplus.com.tr:33207/CPS/images/universal/film/program/202412/20241208/76/2126322214285eb8f42a_0_XL.jpg", - "isnpvr": "1", - "introduce": "Belediye Binası'nda verilen Şükran Günü yemeğindeki hindi Humdinger ve yavrularıyla kaçar! Güçlü bir rüzgar Macera Koyu Rüzgar Sörfü Yarışındaki bütün sörfçüleri alır götürür.", - "programType": "episode", - "channelid": "4353", - "broadcastType": "Banttan", - "seasonInfo": "5. Sezon - 522. Bölüm" - }, - { - "id": "195086838", - "name": "Köpecik Pit Ekibi", - "starttime": "2024-12-14 10:30:00 UTC+03:00", - "endtime": "2024-12-14 10:40:00 UTC+03:00", - "genres": "Çocuk", - "advisory": [], - "ratingid": "0", - "picture": "https://gbzeottvsc01.tvplus.com.tr:33207/CPS/images/universal/film/program/202412/20241208/83/2126322214315eb8f42a_0_XL.jpg", - "isnpvr": "1", - "introduce": "Kaptan Turbot, nadir bulunan bir kuşun fotoğrafını çekmeye karar veriyor, Fransız kuzeni yardım etmek istiyor, fakat bir uçurumda mahsur kalıyor!", - "programType": "episode", - "channelid": "4353", - "broadcastType": "Banttan", - "seasonInfo": "1. Sezon - 123. Bölüm" - }, - { - "id": "195086844", - "name": "Rubble ve Ekibi", - "starttime": "2024-12-14 10:40:00 UTC+03:00", - "endtime": "2024-12-14 11:05:00 UTC+03:00", - "genres": "Çocuk", - "advisory": [], - "ratingid": "0", - "picture": "https://gbzeottvsc01.tvplus.com.tr:33207/CPS/images/universal/film/program/202412/20241208/79/2126322214345eb8f42a_0_XL.jpg", - "isnpvr": "1", - "introduce": "Rubble ve Ekibi, Paw Patrol'dan Marshall'ın denetimiyle İnşaatçı Koyu'nun ilk İtfaiye İstasyonunu inşa ediyor! Ancak Speed Meister'ın sabotajı Marshall'ın İtfaiye Aracını tuzağa düşürünce, yavrular söndürmek için birlikte çalışırlar.", - "programType": "episode", - "channelid": "4353", - "broadcastType": "Banttan", - "seasonInfo": "1. Sezon - 111. Bölüm" - }, - { - "id": "195086850", - "name": "Rubble ve Ekibi", - "starttime": "2024-12-14 11:05:00 UTC+03:00", - "endtime": "2024-12-14 11:30:00 UTC+03:00", - "genres": "Çocuk", - "advisory": [], - "ratingid": "0", - "picture": "https://gbzeottvsc01.tvplus.com.tr:33207/CPS/images/universal/film/program/202412/20241208/32/2126322224375eb8f42a_0_XL.jpg", - "isnpvr": "1", - "introduce": "En sevdikleri TV yıldızı Hank Hammer iş yerinde görmeye geldiğinde yavrular çok şaşırıyor. Kaptan Turbot, Başkan Greatway'e sürpriz getiriyor. Ama yoğun sis bastırınca, yavruların hemen deniz feneri inşa etmeleri gerekiyor!", - "programType": "episode", - "channelid": "4353", - "broadcastType": "Banttan", - "seasonInfo": "1. Sezon - 112. Bölüm" - }, - { - "id": "195086856", - "name": "Kaşif Dora", - "starttime": "2024-12-14 11:30:00 UTC+03:00", - "endtime": "2024-12-14 11:50:00 UTC+03:00", - "genres": "Çocuk", - "advisory": [], - "ratingid": "0", - "picture": "https://gbzeottvsc01.tvplus.com.tr:33207/CPS/images/universal/film/program/202412/20241208/98/2126322224405eb8f42a_0_XL.jpg", - "isnpvr": "1", - "introduce": "Boots bir gezinti için çok kısa, büyük olmayı diliyor ve devleşiyor! Dora normal boyuna dönmesine yardım ediyor. Sırt Çantası'nda Dora için özel bir şey var ama Dora açamıyor! Onu tamir edebilmesi için En Yüksek Dağ'daki Abuela'ya giderler.", - "programType": "episode", - "channelid": "4353", - "broadcastType": "Banttan", - "seasonInfo": "2. Sezon - 201. Bölüm" - }, - { - "id": "195086862", - "name": "Baby Shark's Big Show!", - "starttime": "2024-12-14 11:50:00 UTC+03:00", - "endtime": "2024-12-14 12:15:00 UTC+03:00", - "genres": "Çocuk", - "advisory": [], - "ratingid": "0", - "picture": "https://gbzeottvsc01.tvplus.com.tr:33207/CPS/images/universal/film/program/202412/20241208/56/2126322224435eb8f42a_0_XL.jpg", - "isnpvr": "1", - "introduce": "Vola, Goldie, Chucks ve Hank, Baby ve William'ın sır sakladığını öğrenince dışlanmış hissederler. İlk büyük TV röportajlarına hazırlanmak için Fishy Force, tıpkı en sevdikleri çizgi roman kahramanları gibi olmak için antrenman yapar.", - "programType": "episode", - "channelid": "4353", - "broadcastType": "Banttan", - "seasonInfo": "2. Sezon - 221. Bölüm" - }, - { - "id": "195086868", - "name": "Camgöz (2020)", - "starttime": "2024-12-14 12:15:00 UTC+03:00", - "endtime": "2024-12-14 12:20:00 UTC+03:00", - "genres": "Çocuk", - "advisory": [], - "ratingid": "0", - "picture": "https://gbzeottvsc01.tvplus.com.tr:33207/CPS/images/universal/film/program/202412/20241208/99/2126322224465eb8f42a_0_XL.jpg", - "isnpvr": "1", - "introduce": "Max'in Camgöz adında yarı köpek balığı yarı köpek eşsiz bir evcil havyanı vardır. İlk başlarda Camgöz'ü saklamaya çalışsa da Sisli Pınarlar'da, en iyi arkadaşlar, meraklı komşular ve hatta Max'in ailesi bile yaramaz yeni arkadaşını fark edecektir.", - "programType": "episode", - "channelid": "4353", - "broadcastType": "Banttan", - "seasonInfo": "1. Sezon - 113. Bölüm" - }, - { - "id": "195086874", - "name": "Camgöz (2020)", - "starttime": "2024-12-14 12:20:00 UTC+03:00", - "endtime": "2024-12-14 12:25:00 UTC+03:00", - "genres": "Çocuk", - "advisory": [], - "ratingid": "0", - "picture": "https://gbzeottvsc01.tvplus.com.tr:33207/CPS/images/universal/film/program/202412/20241208/83/2126322224495eb8f42a_0_XL.jpg", - "isnpvr": "1", - "introduce": "Max'in Camgöz adında yarı köpek balığı yarı köpek eşsiz bir evcil havyanı vardır. İlk başlarda Camgöz'ü saklamaya çalışsa da Sisli Pınarlar'da, en iyi arkadaşlar, meraklı komşular ve hatta Max'in ailesi bile yaramaz yeni arkadaşını fark edecektir.", - "programType": "episode", - "channelid": "4353", - "broadcastType": "Banttan", - "seasonInfo": "1. Sezon - 114. Bölüm" - }, - { - "id": "195086880", - "name": "Camgöz (2020)", - "starttime": "2024-12-14 12:25:00 UTC+03:00", - "endtime": "2024-12-14 12:35:00 UTC+03:00", - "genres": "Çocuk", - "advisory": [], - "ratingid": "0", - "picture": "https://gbzeottvsc01.tvplus.com.tr:33207/CPS/images/universal/film/program/202412/20241208/0/2126322224525eb8f42a_0_XL.jpg", - "isnpvr": "1", - "introduce": "Max'in Camgöz adında yarı köpek balığı yarı köpek eşsiz bir evcil havyanı vardır. İlk başlarda Camgöz'ü saklamaya çalışsa da Sisli Pınarlar'da, en iyi arkadaşlar, meraklı komşular ve hatta Max'in ailesi bile yaramaz yeni arkadaşını fark edecektir.", - "programType": "episode", - "channelid": "4353", - "broadcastType": "Banttan", - "seasonInfo": "1. Sezon - 115. Bölüm" - }, - { - "id": "195086886", - "name": "Peppa Pig", - "starttime": "2024-12-14 12:35:00 UTC+03:00", - "endtime": "2024-12-14 12:40:00 UTC+03:00", - "genres": "Çocuk", - "advisory": [], - "ratingid": "0", - "picture": "https://gbzeottvsc01.tvplus.com.tr:33207/CPS/images/universal/film/program/202412/20241208/40/2126322224555eb8f42a_0_XL.jpg", - "isnpvr": "1", - "introduce": "Peppa, annesi, babası ve abisi George'la yaşayan küçük bir domuzdur. Peppa oyun oynamayı, şık giyinmeyi, uzun seyahatleri ve çamurda zıplamayı sever.", - "programType": "episode", - "channelid": "4353", - "broadcastType": "Banttan", - "seasonInfo": "1. Sezon - 120. Bölüm" - }, - { - "id": "195086892", - "name": "Peppa Pig", - "starttime": "2024-12-14 12:40:00 UTC+03:00", - "endtime": "2024-12-14 12:45:00 UTC+03:00", - "genres": "Çocuk", - "advisory": [], - "ratingid": "0", - "picture": "https://gbzeottvsc01.tvplus.com.tr:33207/CPS/images/universal/film/program/202412/20241208/90/2126322224585eb8f42a_0_XL.jpg", - "isnpvr": "1", - "introduce": "Peppa, annesi, babası ve abisi George'la yaşayan küçük bir domuzdur. Peppa oyun oynamayı, şık giyinmeyi, uzun seyahatleri ve çamurda zıplamayı sever.", - "programType": "episode", - "channelid": "4353", - "broadcastType": "Banttan", - "seasonInfo": "1. Sezon - 121. Bölüm" - }, - { - "id": "195086898", - "name": "Peppa Pig", - "starttime": "2024-12-14 12:45:00 UTC+03:00", - "endtime": "2024-12-14 12:50:00 UTC+03:00", - "genres": "Çocuk", - "advisory": [], - "ratingid": "0", - "picture": "https://gbzeottvsc01.tvplus.com.tr:33207/CPS/images/universal/film/program/202412/20241208/38/2126322234615eb8f42a_0_XL.jpg", - "isnpvr": "1", - "introduce": "Peppa, annesi, babası ve abisi George'la yaşayan küçük bir domuzdur. Peppa oyun oynamayı, şık giyinmeyi, uzun seyahatleri ve çamurda zıplamayı sever.", - "programType": "episode", - "channelid": "4353", - "broadcastType": "Banttan", - "seasonInfo": "1. Sezon - 122. Bölüm" - }, - { - "id": "195086904", - "name": "Peppa Pig", - "starttime": "2024-12-14 12:50:00 UTC+03:00", - "endtime": "2024-12-14 12:55:00 UTC+03:00", - "genres": "Çocuk", - "advisory": [], - "ratingid": "0", - "picture": "https://gbzeottvsc01.tvplus.com.tr:33207/CPS/images/universal/film/program/202412/20241208/64/2126322234645eb8f42a_0_XL.jpg", - "isnpvr": "1", - "introduce": "Peppa, annesi, babası ve abisi George'la yaşayan küçük bir domuzdur. Peppa oyun oynamayı, şık giyinmeyi, uzun seyahatleri ve çamurda zıplamayı sever.", - "programType": "episode", - "channelid": "4353", - "broadcastType": "Banttan", - "seasonInfo": "1. Sezon - 123. Bölüm" - }, - { - "id": "195086910", - "name": "Minik Şef", - "starttime": "2024-12-14 12:55:00 UTC+03:00", - "endtime": "2024-12-14 13:15:00 UTC+03:00", - "genres": "Çocuk", - "advisory": [], - "ratingid": "0", - "picture": "https://gbzeottvsc01.tvplus.com.tr:33207/CPS/images/universal/film/program/202412/20241208/89/2126322234675eb8f42a_0_XL.jpg", - "isnpvr": "1", - "introduce": "Minik Şef yağmurlu bir gün Peynirli Makaroni yapar ama akan bir çatı ağaç kütüğü mutfağında kaos yaratır! Minik Şef korsan patates yahnisi pişiriyor ve özel malzemeyi bulmak için bir hazine haritası kullanıyor.", - "programType": "episode", - "channelid": "4353", - "broadcastType": "Banttan", - "seasonInfo": "1. Sezon - 108. Bölüm" - }, - { - "id": "195086916", - "name": "Barbapapa Ailesi", - "starttime": "2024-12-14 13:15:00 UTC+03:00", - "endtime": "2024-12-14 13:40:00 UTC+03:00", - "genres": "Çocuk", - "advisory": [], - "ratingid": "0", - "picture": "https://gbzeottvsc01.tvplus.com.tr:33207/CPS/images/universal/film/program/202412/20241208/72/2126322234705eb8f42a_0_XL.jpg", - "isnpvr": "1", - "introduce": "Barbapapa ailesi bir bisiklet gezintisi sırasında harabe halindeki eski bir ortaçağ kalesini keşfeder. Barbapapa ve Lolita bir balonla seyahat ederken fırtınaya yakalanırlar ve ıssız bir adada mahsur kalırlar.", - "programType": "episode", - "channelid": "4353", - "broadcastType": "Banttan", - "seasonInfo": "2. Sezon - 205. Bölüm" - }, - { - "id": "195086922", - "name": "Barbapapa Ailesi", - "starttime": "2024-12-14 13:40:00 UTC+03:00", - "endtime": "2024-12-14 14:00:00 UTC+03:00", - "genres": "Çocuk", - "advisory": [], - "ratingid": "0", - "picture": "https://gbzeottvsc01.tvplus.com.tr:33207/CPS/images/universal/film/program/202412/20241208/8/2126322234735eb8f42a_0_XL.jpg", - "isnpvr": "1", - "introduce": "En popüler ailenin dünya ekranlarına göz kamaştırıcı dönüşü! BARBAPAPA. Büyük mutlu bir aile! Barbapapalar için rutin diye bir şey yoktur: her gün sürprizlerle dolu neşeli bir maceradır!", - "programType": "episode", - "channelid": "4353", - "broadcastType": "Banttan", - "seasonInfo": "2. Sezon - 206. Bölüm" - }, - { - "id": "195086928", - "name": "Blaze ve Yol Canavarları", - "starttime": "2024-12-14 14:00:00 UTC+03:00", - "endtime": "2024-12-14 14:25:00 UTC+03:00", - "genres": "Çocuk", - "advisory": [], - "ratingid": "0", - "picture": "https://gbzeottvsc01.tvplus.com.tr:33207/CPS/images/universal/film/program/202412/20241208/76/2126322234765eb8f42a_0_XL.jpg", - "isnpvr": "1", - "introduce": "Blaze ve Yol Canavarları, dünyanın en büyük canavar kamyonu Blaze ve en iyi arkadaşı ve sürücüsü AJ adında bir çocuk hakkındaki interaktif bir anaokulu animasyon dizisidir.", - "programType": "episode", - "channelid": "4353", - "broadcastType": "Banttan", - "seasonInfo": "6. Sezon - 614. Bölüm" - }, - { - "id": "195086934", - "name": "Blaze ve Yol Canavarları", - "starttime": "2024-12-14 14:25:00 UTC+03:00", - "endtime": "2024-12-14 14:50:00 UTC+03:00", - "genres": "Çocuk", - "advisory": [], - "ratingid": "0", - "picture": "https://gbzeottvsc01.tvplus.com.tr:33207/CPS/images/universal/film/program/202412/20241208/60/2126322234795eb8f42a_0_XL.jpg", - "isnpvr": "1", - "introduce": "Boingi'ler adlı sevimli yaratıklar Axle Şehrinde kaybolunca onları bir araya getirip eve sağ salim varmalarını sağlamak Blaze ve AJ'ye düşer.", - "programType": "episode", - "channelid": "4353", - "broadcastType": "Banttan", - "seasonInfo": "6. Sezon - 615. Bölüm" - }, - { - "id": "195086940", - "name": "Paw Patrol", - "starttime": "2024-12-14 14:50:00 UTC+03:00", - "endtime": "2024-12-14 15:10:00 UTC+03:00", - "genres": "Çocuk", - "advisory": [], - "ratingid": "0", - "picture": "https://gbzeottvsc01.tvplus.com.tr:33207/CPS/images/universal/film/program/202412/20241208/72/2126322244825eb8f42a_0_XL.jpg", - "isnpvr": "1", - "introduce": "Yarış günü gelir, Köpekçikler en hızlı kim anlamak için şehrin karşı yakasına kadar yarışacak. Bay Porter pasta yarışmasına katılır ve yardıma ihtiyaç duyar. Pastayı yapıp yarışmaya yetiştirmek için çabuk olmaları gerekecek!", - "programType": "episode", - "channelid": "4353", - "broadcastType": "Banttan", - "seasonInfo": "1. Sezon - 125. Bölüm" - }, - { - "id": "195086946", - "name": "Paw Patrol", - "starttime": "2024-12-14 15:10:00 UTC+03:00", - "endtime": "2024-12-14 15:35:00 UTC+03:00", - "genres": "Çocuk", - "advisory": [], - "ratingid": "0", - "picture": "https://gbzeottvsc01.tvplus.com.tr:33207/CPS/images/universal/film/program/202412/20241208/78/2126322244855eb8f42a_0_XL.jpg", - "isnpvr": "1", - "introduce": "Birileri Kaptan Turbot'un teknesinden balık çaşıorıp duruyor, o da Ryder ve paw patrol'dan yardım istiyor. Chase, yeni ajan ekipmanıyla tekneyi inceleyip gğüvertenin altında bir grup penguen olduğunu keşfediyor", - "programType": "episode", - "channelid": "4353", - "broadcastType": "Banttan", - "seasonInfo": "2. Sezon - 201. Bölüm" - }, - { - "id": "195086952", - "name": "Baby Shark's Big Show", - "starttime": "2024-12-14 15:35:00 UTC+03:00", - "endtime": "2024-12-14 15:55:00 UTC+03:00", - "genres": "Çocuk", - "advisory": [], - "ratingid": "0", - "picture": "https://gbzeottvsc01.tvplus.com.tr:33207/CPS/images/universal/film/program/202412/20241208/39/2126322244885eb8f42a_0_XL.jpg", - "isnpvr": "1", - "introduce": "Super Shark ve Kaptan Kelp olarak Baby Shark ve William oyun süresinden tasarruf etmek için yola çıktılar ancak Kaptan Kelp sadece bir yardımcı mı? Baby Shark minicik bir evcil hayvanı sahipleniyor ama büyük bir sorumluluğa hazır mı?", - "programType": "episode", - "channelid": "4353", - "broadcastType": "Banttan", - "seasonInfo": "1. Sezon - 109. Bölüm" - }, - { - "id": "195086958", - "name": "BARBAPAPA Ailesi", - "starttime": "2024-12-14 15:55:00 UTC+03:00", - "endtime": "2024-12-14 16:15:00 UTC+03:00", - "genres": "Çocuk", - "advisory": [], - "ratingid": "0", - "picture": "https://gbzeottvsc01.tvplus.com.tr:33207/CPS/images/universal/film/program/202412/20241208/65/2126322244915eb8f42a_0_XL.jpg", - "isnpvr": "1", - "introduce": "Bay Katı'nın ikizlerinin ziyaretlerine gittiği Barbabebekler bir hazine avı düzenler ve manzaranın tadını çıkarırlar. Barbapapalar bahçede yeni bir maceraya atılır. Ancak doğada yaşamak beklediklerinden daha karmaşık çıkar.", - "programType": "episode", - "channelid": "4353", - "broadcastType": "Banttan", - "seasonInfo": "1. Sezon - 114. Bölüm" - }, - { - "id": "195086964", - "name": "Ayı Paddington'un Maceraları", - "starttime": "2024-12-14 16:15:00 UTC+03:00", - "endtime": "2024-12-14 16:40:00 UTC+03:00", - "genres": "Çocuk", - "advisory": [], - "ratingid": "0", - "picture": "https://gbzeottvsc01.tvplus.com.tr:33207/CPS/images/universal/film/program/202412/20241208/91/2126322244945eb8f42a_0_XL.jpg", - "isnpvr": "1", - "introduce": "Paddington, çalışması için arkadaşa ihtiyaç duyan PaddingTron adında bir robot yapar. Baaz herkesi onunla birlikte Diwali'yi kutlamaya davet eder ve Paddington yardımcısıdır, ama ikisi de havai fişek finalinin tadını çıkarabilecekler mi?", - "programType": "episode", - "channelid": "4353", - "broadcastType": "Banttan", - "seasonInfo": "3. Sezon - 305. Bölüm" - }, - { - "id": "195086970", - "name": "Rubble ve Ekibi", - "starttime": "2024-12-14 16:40:00 UTC+03:00", - "endtime": "2024-12-14 17:00:00 UTC+03:00", - "genres": "Çocuk", - "advisory": [], - "ratingid": "0", - "picture": "https://gbzeottvsc01.tvplus.com.tr:33207/CPS/images/universal/film/program/202412/20241208/93/2126322244975eb8f42a_0_XL.jpg", - "isnpvr": "1", - "introduce": "Rubble ve Ekibi, Café Carl'ın patlamış mısır restoranının inşaatı kontrolden çıkınca temizlik moduna geçer. Sabunlu kaza, İnşaatçı Koyu'nda kaygan bir kargaşaya neden olur. Yavrular Başkan Greatway için zamanında temizleyebilecekler mi?", - "programType": "episode", - "channelid": "4353", - "broadcastType": "Banttan", - "seasonInfo": "1. Sezon - 108. Bölüm" - }, - { - "id": "195086976", - "name": "Kaşif Dora", - "starttime": "2024-12-14 17:00:00 UTC+03:00", - "endtime": "2024-12-14 17:25:00 UTC+03:00", - "genres": "Çocuk", - "advisory": [], - "ratingid": "0", - "picture": "https://gbzeottvsc01.tvplus.com.tr:33207/CPS/images/universal/film/program/202412/20241208/13/2126322245005eb8f42a_0_XL.jpg", - "isnpvr": "1", - "introduce": "Dora'nın yengeç arkadaşları evleniyor ama Swiper yüzüğü çalıyor ve okyanusta kaybediyor. Dora yüzüğü geri almak zorundadır! Dora ve Boots, Bulut Krallığı'na geri dönmek için ihtiyacı olan sihirli flütünü kaybeden Vicuña Vicky ile tanışır.", - "programType": "episode", - "channelid": "4353", - "broadcastType": "Banttan", - "seasonInfo": "2. Sezon - 205. Bölüm" - }, - { - "id": "195086982", - "name": "Blaze ve Yol Canavarları", - "starttime": "2024-12-14 17:25:00 UTC+03:00", - "endtime": "2024-12-14 17:45:00 UTC+03:00", - "genres": "Çocuk", - "advisory": [], - "ratingid": "0", - "picture": "https://gbzeottvsc01.tvplus.com.tr:33207/CPS/images/universal/film/program/202412/20241208/84/2126322255035eb8f42a_0_XL.jpg", - "isnpvr": "1", - "introduce": "Alçak bir suçlu Axle Şehri'ndeki tüm diş fırçalarını çaldığında Blaze'in günü kurtarmak için tek şansı Özel Görev Blaze'i olmaktır!", - "programType": "episode", - "channelid": "4353", - "broadcastType": "Banttan", - "seasonInfo": "6. Sezon - 616. Bölüm" - }, - { - "id": "195086988", - "name": "Minik Şef'in Yemek Programı", - "starttime": "2024-12-14 17:45:00 UTC+03:00", - "endtime": "2024-12-14 18:10:00 UTC+03:00", - "genres": "Çocuk", - "advisory": [], - "ratingid": "0", - "picture": "https://gbzeottvsc01.tvplus.com.tr:33207/CPS/images/universal/film/program/202412/20241208/63/2126322255065eb8f42a_0_XL.jpg", - "isnpvr": "1", - "introduce": "Şef, Atıştırmalık Molası sırasında Stump Band'e en iyi fıstık ezmeli ve jöleli sandviçleri yapar. Bugün Patates Günü, Henry'nin en sevdiği bayram! Şef, Henry'nin patates yemeğini yapar ancak Henry yemeğin adını hatırlamaz!", - "programType": "episode", - "channelid": "4353", - "broadcastType": "Banttan", - "seasonInfo": "2. Sezon - 204. Bölüm" - }, - { - "id": "195086994", - "name": "Baby Shark's Big Show!", - "starttime": "2024-12-14 18:10:00 UTC+03:00", - "endtime": "2024-12-14 18:30:00 UTC+03:00", - "genres": "Çocuk", - "advisory": [], - "ratingid": "0", - "picture": "https://gbzeottvsc01.tvplus.com.tr:33207/CPS/images/universal/film/program/202412/20241208/82/2126322255095eb8f42a_0_XL.jpg", - "isnpvr": "1", - "introduce": "Rayna, William'dan sorumlu davranmasını isteyince William, Billiam adında yetişkin balık olmaya çalışır. Baby, Hank ve Goldie'nin birbirleriyle konuşmadıklarını fark edince onları tekrar bir araya getirmek için ayrıntılı bir plan yapar.", - "programType": "episode", - "channelid": "4353", - "broadcastType": "Banttan", - "seasonInfo": "2. Sezon - 209. Bölüm" - }, - { - "id": "195087000", - "name": "Camgöz (2020)", - "starttime": "2024-12-14 18:30:00 UTC+03:00", - "endtime": "2024-12-14 18:40:00 UTC+03:00", - "genres": "Çocuk", - "advisory": [], - "ratingid": "0", - "picture": "https://gbzeottvsc01.tvplus.com.tr:33207/CPS/images/universal/film/program/202412/20241208/51/2126322255125eb8f42a_0_XL.jpg", - "isnpvr": "1", - "introduce": "Max'in yarı köpekbalığı yarı köpek olan Camgöz adlı sıra dışı bir evcil hayvanı vardır. Max önce Camgöz'ü sır olarak saklamaya çalışsa da Foggy Springs'teki dostları, meraklı komşuları ve ailesi onun yeni, yaramaz dostunu er ya da geç fark edecektir.", - "programType": "episode", - "channelid": "4353", - "broadcastType": "Banttan", - "seasonInfo": "2. Sezon - 218. Bölüm" - }, - { - "id": "195087006", - "name": "Camgöz (2020)", - "starttime": "2024-12-14 18:40:00 UTC+03:00", - "endtime": "2024-12-14 18:45:00 UTC+03:00", - "genres": "Çocuk", - "advisory": [], - "ratingid": "0", - "picture": "https://gbzeottvsc01.tvplus.com.tr:33207/CPS/images/universal/film/program/202412/20241208/37/2126322255155eb8f42a_0_XL.jpg", - "isnpvr": "1", - "introduce": "Max'in yarı köpekbalığı yarı köpek olan Camgöz adlı sıra dışı bir evcil hayvanı vardır. Max önce Camgöz'ü sır olarak saklamaya çalışsa da Foggy Springs'teki dostları, meraklı komşuları ve ailesi onun yeni, yaramaz dostunu er ya da geç fark edecektir.", - "programType": "episode", - "channelid": "4353", - "broadcastType": "Banttan", - "seasonInfo": "2. Sezon - 219. Bölüm" - }, - { - "id": "195087012", - "name": "Camgöz (2020)", - "starttime": "2024-12-14 18:45:00 UTC+03:00", - "endtime": "2024-12-14 18:50:00 UTC+03:00", - "genres": "Çocuk", - "advisory": [], - "ratingid": "0", - "picture": "https://gbzeottvsc01.tvplus.com.tr:33207/CPS/images/universal/film/program/202412/20241208/47/2126322255185eb8f42a_0_XL.jpg", - "isnpvr": "1", - "introduce": "Max'in yarı köpekbalığı yarı köpek olan Camgöz adlı sıra dışı bir evcil hayvanı vardır. Max önce Camgöz'ü sır olarak saklamaya çalışsa da Foggy Springs'teki dostları, meraklı komşuları ve ailesi onun yeni, yaramaz dostunu er ya da geç fark edecektir.", - "programType": "episode", - "channelid": "4353", - "broadcastType": "Banttan", - "seasonInfo": "2. Sezon - 220. Bölüm" - }, - { - "id": "195087018", - "name": "Camgöz (2020)", - "starttime": "2024-12-14 18:50:00 UTC+03:00", - "endtime": "2024-12-14 19:00:00 UTC+03:00", - "genres": "Çocuk", - "advisory": [], - "ratingid": "0", - "picture": "https://gbzeottvsc01.tvplus.com.tr:33207/CPS/images/universal/film/program/202412/20241208/42/2126322255215eb8f42a_0_XL.jpg", - "isnpvr": "1", - "introduce": "Max'in Camgöz adında yarı köpek balığı yarı köpek eşsiz bir evcil havyanı vardır. İlk başlarda Camgöz'ü saklamaya çalışsa da Sisli Pınarlar'da, en iyi arkadaşlar, meraklı komşular ve hatta Max'in ailesi bile yaramaz yeni arkadaşını fark edecektir.", - "programType": "episode", - "channelid": "4353", - "broadcastType": "Banttan", - "seasonInfo": "1. Sezon - 101. Bölüm" - }, - { - "id": "195087024", - "name": "Paw Patrol", - "starttime": "2024-12-14 19:00:00 UTC+03:00", - "endtime": "2024-12-14 19:20:00 UTC+03:00", - "genres": "Çocuk", - "advisory": [], - "ratingid": "0", - "picture": "https://gbzeottvsc01.tvplus.com.tr:33207/CPS/images/universal/film/program/202412/20241208/21/2126322265245eb8f42a_0_XL.jpg", - "isnpvr": "1", - "introduce": "Başkan Humdinger'ın doğum günü partisi, Marshall Kitty'nin bir pinyatanın içinde sıkışıp kalmasıyla ters gider. Başkan Humdinger sisi Macera Koyu'na iterken, bulutlarda kaybolan hayvanları bulmak ve günü kurtarmak Paw Patrol'a düşer.", - "programType": "episode", - "channelid": "4353", - "broadcastType": "Banttan", - "seasonInfo": "10. Sezon - 1012. Bölüm" - }, - { - "id": "195087030", - "name": "Köpecik Pit Ekibi", - "starttime": "2024-12-14 19:20:00 UTC+03:00", - "endtime": "2024-12-14 19:30:00 UTC+03:00", - "genres": "Çocuk", - "advisory": [], - "ratingid": "0", - "picture": "https://gbzeottvsc01.tvplus.com.tr:33207/CPS/images/universal/film/program/202412/20241208/15/2126322265275eb8f42a_0_XL.jpg", - "isnpvr": "1", - "introduce": "PAW Patrol okul öncesi programı ve altı tane köpekçik baş rolü paylaşıyor: Chase, Marshall, Rocky, Zuma, Rubble ve Skye, başlarında da teknoloji meraklısı 10 yaşında bir çocuk olan Ryder var.", - "programType": "episode", - "channelid": "4353", - "broadcastType": "Banttan", - "seasonInfo": "4. Sezon - 412. Bölüm" - }, - { - "id": "195087036", - "name": "Rubble ve Ekibi", - "starttime": "2024-12-14 19:30:00 UTC+03:00", - "endtime": "2024-12-14 20:00:00 UTC+03:00", - "genres": "Çocuk", - "advisory": [], - "ratingid": "0", - "picture": "https://gbzeottvsc01.tvplus.com.tr:33207/CPS/images/universal/film/program/202412/20241208/37/2126322265305eb8f42a_0_XL.jpg", - "isnpvr": "1", - "introduce": "Hız Ustası'nın treni evcil hayvan oyun gününü kontrolden çıkarınca, Rubble ve Ekibi daha büyük, iyi ve güvenli bir tren ile günü kurtarır. Bark Yard denetimi bugün! Ama Motor patlayacak ve Ekibe altın yıldıza mal olacak mı?", - "programType": "episode", - "channelid": "4353", - "broadcastType": "Banttan", - "seasonInfo": "2. Sezon - 201. Bölüm" - }, - { - "id": "195087042", - "name": "Kaşif Dora", - "starttime": "2024-12-14 20:00:00 UTC+03:00", - "endtime": "2024-12-14 20:20:00 UTC+03:00", - "genres": "Çocuk", - "advisory": [], - "ratingid": "0", - "picture": "https://gbzeottvsc01.tvplus.com.tr:33207/CPS/images/universal/film/program/202412/20241208/86/2126322265335eb8f42a_0_XL.jpg", - "isnpvr": "1", - "introduce": "Swiper görünmezlik örtüsü çalıyor! Görünmez Arakcı artık her şeyi silip süpürüyor ve onu durdurmak Dora ve Boots'a düşüyor. Dora'nın ailesi Mami'nin doğum günü için bir pinyata yapıyor, ama uçup gidiyor! Onu güvenli bir şekilde geri almak zorunda.", - "programType": "episode", - "channelid": "4353", - "broadcastType": "Banttan", - "seasonInfo": "2. Sezon - 202. Bölüm" - }, - { - "id": "195087048", - "name": "BARBAPAPA Ailesi", - "starttime": "2024-12-14 20:20:00 UTC+03:00", - "endtime": "2024-12-14 20:40:00 UTC+03:00", - "genres": "Çocuk", - "advisory": [], - "ratingid": "0", - "picture": "https://gbzeottvsc01.tvplus.com.tr:33207/CPS/images/universal/film/program/202412/20241208/10/2126322265365eb8f42a_0_XL.jpg", - "isnpvr": "1", - "introduce": "Barbabebekler TV'ye yapıştı. TV'yi çok sevdikleri için ebeveynleri onları kendi şovlarını yapmaya teşvik eder. Barbababa evrim müzesini ziyaret eder. Program: Dünya'nın yaratılışı, Prekambriyen denizaltısı ve... dinozorlar!", - "programType": "episode", - "channelid": "4353", - "broadcastType": "Banttan", - "seasonInfo": "1. Sezon - 123. Bölüm" - }, - { - "id": "195087054", - "name": "Hamster Diyarı", - "starttime": "2024-12-14 20:40:00 UTC+03:00", - "endtime": "2024-12-14 21:00:00 UTC+03:00", - "genres": "Çocuk", - "advisory": [], - "ratingid": "0", - "picture": "https://gbzeottvsc01.tvplus.com.tr:33207/CPS/images/universal/film/program/202412/20241208/51/2126322265395eb8f42a_0_XL.jpg", - "isnpvr": "1", - "introduce": "Hamsterlar, babalarının alçak bir şövalye rolü oynadığını duyar ve onun şeytana dönüştüğüne inanırlar. Mondo, Harry'nin sihir gösterisinde süper kahraman hayatı ile en iyi arkadaşını kurtarmak arasında seçim yapmak zorundadır.", - "programType": "episode", - "channelid": "4353", - "broadcastType": "Banttan", - "seasonInfo": "1. Sezon - 103. Bölüm" - }, - { - "id": "195087060", - "name": "Blaze ve Yol Canavarları", - "starttime": "2024-12-14 21:00:00 UTC+03:00", - "endtime": "2024-12-14 21:25:00 UTC+03:00", - "genres": "Çocuk", - "advisory": [], - "ratingid": "0", - "picture": "https://gbzeottvsc01.tvplus.com.tr:33207/CPS/images/universal/film/program/202412/20241208/48/2126322275425eb8f42a_0_XL.jpg", - "isnpvr": "1", - "introduce": "Bütün kamyonların ikili takımlar halinde yarıştığı Kamyon Takım Mücadelesi günü gelir çatar! Ezici, Turşu yerine yeni bir takım arkadaşı seçince hayal kırıklığına uğrayan Turşu kendini kanıtlamak için Blaze'le takım olur.", - "programType": "episode", - "channelid": "4353", - "broadcastType": "Banttan", - "seasonInfo": "1. Sezon - 108. Bölüm" - }, - { - "id": "195087066", - "name": "Blaze ve Yol Canavarları", - "starttime": "2024-12-14 21:25:00 UTC+03:00", - "endtime": "2024-12-14 21:45:00 UTC+03:00", - "genres": "Çocuk", - "advisory": [], - "ratingid": "0", - "picture": "https://gbzeottvsc01.tvplus.com.tr:33207/CPS/images/universal/film/program/202412/20241208/63/2126322275455eb8f42a_0_XL.jpg", - "isnpvr": "1", - "introduce": "Blaze ve AJ arkadaşları Çizgili'ye birkaç yavru hayvana bakması içiin yardım ederken küçük hayvanlar yanlışlıkla büyük baloncuklar üzerinde uzaklaşır. Küçük dostlarını bulup günü kurtarmak da bu üç bebek bakıcısına kalır!", - "programType": "episode", - "channelid": "4353", - "broadcastType": "Banttan", - "seasonInfo": "5. Sezon - 504. Bölüm" - }, - { - "id": "195087072", - "name": "Paw Patrol", - "starttime": "2024-12-14 21:45:00 UTC+03:00", - "endtime": "2024-12-14 22:10:00 UTC+03:00", - "genres": "Çocuk", - "advisory": [], - "ratingid": "0", - "picture": "https://gbzeottvsc01.tvplus.com.tr:33207/CPS/images/universal/film/program/202412/20241208/72/2126322275485eb8f42a_0_XL.jpg", - "isnpvr": "1", - "introduce": "Alex ve Bay Porter tropik bir adada kamp yaparken çılgın bir kar fırtınasına yakalanırlar. Bay Porter ünlü köpüren turşularından dağıtırken yoldaki tümsekler siparişleri karıştırır ve turşular patlamaya başlar.", - "programType": "episode", - "channelid": "4353", - "broadcastType": "Banttan", - "seasonInfo": "5. Sezon - 523. Bölüm" - }, - { - "id": "195087078", - "name": "Paw Patrol", - "starttime": "2024-12-14 22:10:00 UTC+03:00", - "endtime": "2024-12-14 22:30:00 UTC+03:00", - "genres": "Çocuk", - "advisory": [], - "ratingid": "0", - "picture": "https://gbzeottvsc01.tvplus.com.tr:33207/CPS/images/universal/film/program/202412/20241208/38/2126322285515eb8f42a_0_XL.jpg", - "isnpvr": "1", - "introduce": "Yumi'nin yeni robot mısır toplayıcısı kontrolden çıkınca Ryder ve Paw Patrol onu sakinleştirmeye çalışır. Cesur Danny X Macera Koyu için Kuş X kostümü giyince bir çift kartal onu yavrusu sanıp yanlarında götürür.", - "programType": "episode", - "channelid": "4353", - "broadcastType": "Banttan", - "seasonInfo": "5. Sezon - 524. Bölüm" - }, - { - "id": "195087084", - "name": "Köpecik Pit Ekibi", - "starttime": "2024-12-14 22:30:00 UTC+03:00", - "endtime": "2024-12-14 22:40:00 UTC+03:00", - "genres": "Çocuk", - "advisory": [], - "ratingid": "0", - "picture": "https://gbzeottvsc01.tvplus.com.tr:33207/CPS/images/universal/film/program/202412/20241208/65/2126322285545eb8f42a_0_XL.jpg", - "isnpvr": "1", - "introduce": "Başkan Goodway yanlışlıkla bir balonla yükseldiğinde, Ryder ve Paw Patrol onu kurtarmak ve yarışı kazanmak için bir kurtarma operasyonuna başlıyo.", - "programType": "episode", - "channelid": "4353", - "broadcastType": "Banttan", - "seasonInfo": "1. Sezon - 105. Bölüm" - }, - { - "id": "195087090", - "name": "Rubble ve Ekibi", - "starttime": "2024-12-14 22:40:00 UTC+03:00", - "endtime": "2024-12-14 23:05:00 UTC+03:00", - "genres": "Çocuk", - "advisory": [], - "ratingid": "0", - "picture": "https://gbzeottvsc01.tvplus.com.tr:33207/CPS/images/universal/film/program/202412/20241208/69/2126322285575eb8f42a_0_XL.jpg", - "isnpvr": "1", - "introduce": "Dinozor kemiklerini çıkardıktan sonra, yavrular dinozor müzesi inşa etmeye karar verirler! Posta Taşıyıcısı Omar ayağını kırdığında, kasabaya rampalar inşa ederek dağıtmaya devam edebilmesini sağlamak yavrulara düşer.", - "programType": "episode", - "channelid": "4353", - "broadcastType": "Banttan", - "seasonInfo": "1. Sezon - 113. Bölüm" - }, - { - "id": "195087096", - "name": "Rubble ve Ekibi", - "starttime": "2024-12-14 23:05:00 UTC+03:00", - "endtime": "2024-12-14 23:30:00 UTC+03:00", - "genres": "Çocuk", - "advisory": [], - "ratingid": "0", - "picture": "https://gbzeottvsc01.tvplus.com.tr:33207/CPS/images/universal/film/program/202412/20241208/86/2126322285605eb8f42a_0_XL.jpg", - "isnpvr": "1", - "introduce": "Sıçrama parkı planları sorunlu sularda yüzen yavrular, kasabayı yaz boyunca serinletmek için yaratıcı olmak zorunda. Yavrular Lucas ve Lily için oyun odası inşa etmeye çalışırken, sincap bir ziyaretçi inşaatta sorunlara neden olur.", - "programType": "episode", - "channelid": "4353", - "broadcastType": "Banttan", - "seasonInfo": "1. Sezon - 114. Bölüm" - }, - { - "id": "195087102", - "name": "Kaşif Dora", - "starttime": "2024-12-14 23:30:00 UTC+03:00", - "endtime": "2024-12-14 23:50:00 UTC+03:00", - "genres": "Çocuk", - "advisory": [], - "ratingid": "0", - "picture": "https://gbzeottvsc01.tvplus.com.tr:33207/CPS/images/universal/film/program/202412/20241208/53/2126322285635eb8f42a_0_XL.jpg", - "isnpvr": "1", - "introduce": "Swiper görünmezlik örtüsü çalıyor! Görünmez Arakcı artık her şeyi silip süpürüyor ve onu durdurmak Dora ve Boots'a düşüyor. Dora'nın ailesi Mami'nin doğum günü için bir pinyata yapıyor, ama uçup gidiyor! Onu güvenli bir şekilde geri almak zorunda.", - "programType": "episode", - "channelid": "4353", - "broadcastType": "Banttan", - "seasonInfo": "2. Sezon - 202. Bölüm" - }, - { - "id": "195087108", - "name": "Baby Shark's Big Show!", - "starttime": "2024-12-14 23:50:00 UTC+03:00", - "endtime": "2024-12-15 00:10:00 UTC+03:00", - "genres": "Çocuk", - "advisory": [], - "ratingid": "0", - "picture": "https://gbzeottvsc01.tvplus.com.tr:33207/CPS/images/universal/film/program/202412/20241208/66/2126322285665eb8f42a_0_XL.jpg", - "isnpvr": "1", - "introduce": "Fishy Force, Carnivore Koy'daki tüm ikramları çalan bir kötü adamla mücadele ediyor. Costello işi bırakınca Vigo, balıkları olmadan süper kötü olmaya karar verir.", - "programType": "episode", - "channelid": "4353", - "broadcastType": "Banttan", - "seasonInfo": "2. Sezon - 222. Bölüm" - } - ], - [ - { - "id": "195140786", - "name": "Camgöz (2020)", - "starttime": "2024-12-15 00:10:00 UTC+03:00", - "endtime": "2024-12-15 00:20:00 UTC+03:00", - "genres": "Çocuk", - "advisory": [], - "ratingid": "0", - "picture": "https://gbzeottvsc01.tvplus.com.tr:33207/CPS/images/universal/film/program/202412/20241209/21/2126356250845eb88428_0_XL.jpg", - "isnpvr": "1", - "introduce": "Max'in Camgöz adında yarı köpek balığı yarı köpek eşsiz bir evcil havyanı vardır. İlk başlarda Camgöz'ü saklamaya çalışsa da Sisli Pınarlar'da, en iyi arkadaşlar, meraklı komşular ve hatta Max'in ailesi bile yaramaz yeni arkadaşını fark edecektir.", - "programType": "episode", - "channelid": "4353", - "broadcastType": "Banttan", - "seasonInfo": "1. Sezon - 116. Bölüm" - }, - { - "id": "195140792", - "name": "Camgöz (2020)", - "starttime": "2024-12-15 00:20:00 UTC+03:00", - "endtime": "2024-12-15 00:25:00 UTC+03:00", - "genres": "Çocuk", - "advisory": [], - "ratingid": "0", - "picture": "https://gbzeottvsc01.tvplus.com.tr:33207/CPS/images/universal/film/program/202412/20241209/75/2126356250875eb88428_0_XL.jpg", - "isnpvr": "1", - "introduce": "Max'in Camgöz adında yarı köpek balığı yarı köpek eşsiz bir evcil havyanı vardır. İlk başlarda Camgöz'ü saklamaya çalışsa da Sisli Pınarlar'da, en iyi arkadaşlar, meraklı komşular ve hatta Max'in ailesi bile yaramaz yeni arkadaşını fark edecektir.", - "programType": "episode", - "channelid": "4353", - "broadcastType": "Banttan", - "seasonInfo": "1. Sezon - 117. Bölüm" - }, - { - "id": "195140798", - "name": "Camgöz (2020)", - "starttime": "2024-12-15 00:25:00 UTC+03:00", - "endtime": "2024-12-15 00:35:00 UTC+03:00", - "genres": "Çocuk", - "advisory": [], - "ratingid": "0", - "picture": "https://gbzeottvsc01.tvplus.com.tr:33207/CPS/images/universal/film/program/202412/20241209/65/2126356260905eb88428_0_XL.jpg", - "isnpvr": "1", - "introduce": "Max'in Camgöz adında yarı köpek balığı yarı köpek eşsiz bir evcil havyanı vardır. İlk başlarda Camgöz'ü saklamaya çalışsa da Sisli Pınarlar'da, en iyi arkadaşlar, meraklı komşular ve hatta Max'in ailesi bile yaramaz yeni arkadaşını fark edecektir.", - "programType": "episode", - "channelid": "4353", - "broadcastType": "Banttan", - "seasonInfo": "1. Sezon - 118. Bölüm" - }, - { - "id": "195140804", - "name": "Peppa Pig", - "starttime": "2024-12-15 00:35:00 UTC+03:00", - "endtime": "2024-12-15 00:40:00 UTC+03:00", - "genres": "Çocuk", - "advisory": [], - "ratingid": "0", - "picture": "https://gbzeottvsc01.tvplus.com.tr:33207/CPS/images/universal/film/program/202412/20241209/32/2126356260935eb88428_0_XL.jpg", - "isnpvr": "1", - "introduce": "Peppa, annesi, babası ve abisi George'la yaşayan küçük bir domuzdur. Peppa oyun oynamayı, şık giyinmeyi, uzun seyahatleri ve çamurda zıplamayı sever.", - "programType": "episode", - "channelid": "4353", - "broadcastType": "Banttan", - "seasonInfo": "1. Sezon - 127. Bölüm" - }, - { - "id": "195140810", - "name": "Peppa Pig", - "starttime": "2024-12-15 00:40:00 UTC+03:00", - "endtime": "2024-12-15 00:45:00 UTC+03:00", - "genres": "Çocuk", - "advisory": [], - "ratingid": "0", - "picture": "https://gbzeottvsc01.tvplus.com.tr:33207/CPS/images/universal/film/program/202412/20241209/29/2126356260965eb88428_0_XL.jpg", - "isnpvr": "1", - "introduce": "Peppa, annesi, babası ve abisi George'la yaşayan küçük bir domuzdur. Peppa oyun oynamayı, şık giyinmeyi, uzun seyahatleri ve çamurda zıplamayı sever.", - "programType": "episode", - "channelid": "4353", - "broadcastType": "Banttan", - "seasonInfo": "1. Sezon - 128. Bölüm" - }, - { - "id": "195140816", - "name": "Peppa Pig", - "starttime": "2024-12-15 00:45:00 UTC+03:00", - "endtime": "2024-12-15 00:50:00 UTC+03:00", - "genres": "Çocuk", - "advisory": [], - "ratingid": "0", - "picture": "https://gbzeottvsc01.tvplus.com.tr:33207/CPS/images/universal/film/program/202412/20241209/5/2126356260995eb88428_0_XL.jpg", - "isnpvr": "1", - "introduce": "Peppa, annesi, babası ve abisi George'la yaşayan küçük bir domuzdur. Peppa oyun oynamayı, şık giyinmeyi, uzun seyahatleri ve çamurda zıplamayı sever.", - "programType": "episode", - "channelid": "4353", - "broadcastType": "Banttan", - "seasonInfo": "1. Sezon - 129. Bölüm" - }, - { - "id": "195140822", - "name": "Peppa Pig", - "starttime": "2024-12-15 00:50:00 UTC+03:00", - "endtime": "2024-12-15 00:55:00 UTC+03:00", - "genres": "Çocuk", - "advisory": [], - "ratingid": "0", - "picture": "https://gbzeottvsc01.tvplus.com.tr:33207/CPS/images/universal/film/program/202412/20241209/89/2126356261025eb88428_0_XL.jpg", - "isnpvr": "1", - "introduce": "Anne ve Baba Domuz akşam dışarı çıkınca, Peppa ve George'a Büyükanne ve Büyükbaba Domuz bakar. Peppa ve George'un uykusu gelmeyince Büyükanne ve Büyükbaba Domuz onları yormaya çalışır.", - "programType": "episode", - "channelid": "4353", - "broadcastType": "Banttan", - "seasonInfo": "1. Sezon - 130. Bölüm" - }, - { - "id": "195140828", - "name": "Minik Şef'in Yemek Programı", - "starttime": "2024-12-15 00:55:00 UTC+03:00", - "endtime": "2024-12-15 01:15:00 UTC+03:00", - "genres": "Çocuk", - "advisory": [], - "ratingid": "0", - "picture": "https://gbzeottvsc01.tvplus.com.tr:33207/CPS/images/universal/film/program/202412/20241209/83/2126356261055eb88428_0_XL.jpg", - "isnpvr": "1", - "introduce": "Şef, sürpriz doğum günü kahvaltısı için Olly'nin en sevdiği çörekleri onu uyandırmadan pişirmeye çalışır. Şef ve Olly bir yandan on iki uğur böceği bebeğe bakıcılık yaparken bir yandan da onlara atıştırmalık bir şeyler hazırlamaya çalışırlar.", - "programType": "episode", - "channelid": "4353", - "broadcastType": "Banttan", - "seasonInfo": "2. Sezon - 202. Bölüm" - }, - { - "id": "195140834", - "name": "Barbapapa Ailesi", - "starttime": "2024-12-15 01:15:00 UTC+03:00", - "endtime": "2024-12-15 01:40:00 UTC+03:00", - "genres": "Çocuk", - "advisory": [], - "ratingid": "0", - "picture": "https://gbzeottvsc01.tvplus.com.tr:33207/CPS/images/universal/film/program/202412/20241209/3/2126356271085eb88428_0_XL.jpg", - "isnpvr": "1", - "introduce": "Barbapapa, François'nın ailesinin onun için inşa ettiği eve sığınır. Barbapapa'nın evi, Barbaanne ve Barbabébé'nin hayatına girmesiyle artık çok küçüktür.", - "programType": "episode", - "channelid": "4353", - "broadcastType": "Banttan", - "seasonInfo": "2. Sezon - 207. Bölüm" - }, - { - "id": "195142504", - "name": "Barbapapa Ailesi", - "starttime": "2024-12-15 01:40:00 UTC+03:00", - "endtime": "2024-12-15 02:00:00 UTC+03:00", - "genres": "Çocuk", - "advisory": [], - "ratingid": "0", - "picture": "https://gbzeottvsc01.tvplus.com.tr:33207/CPS/images/universal/film/program/202412/20241209/65/2126356271115eb88428_0_XL.jpg", - "isnpvr": "1", - "introduce": "En popüler ailenin dünya ekranlarına göz kamaştırıcı dönüşü! BARBAPAPA. Büyük mutlu bir aile! Barbapapalar için rutin diye bir şey yoktur: her gün sürprizlerle dolu neşeli bir maceradır!", - "programType": "episode", - "channelid": "4353", - "broadcastType": "Banttan", - "seasonInfo": "2. Sezon - 208. Bölüm" - }, - { - "id": "195142510", - "name": "Blaze ve Yol Canavarları", - "starttime": "2024-12-15 02:00:00 UTC+03:00", - "endtime": "2024-12-15 02:25:00 UTC+03:00", - "genres": "Çocuk", - "advisory": [], - "ratingid": "0", - "picture": "https://gbzeottvsc01.tvplus.com.tr:33207/CPS/images/universal/film/program/202412/20241209/94/2126356271145eb88428_0_XL.jpg", - "isnpvr": "1", - "introduce": "Blaze ve Yol Canavarları, dünyanın en büyük canavar kamyonu Blaze ve en iyi arkadaşı ve sürücüsü AJ adında bir çocuk hakkındaki interaktif bir anaokulu animasyon dizisidir.", - "programType": "episode", - "channelid": "4353", - "broadcastType": "Banttan", - "seasonInfo": "6. Sezon - 617. Bölüm" - }, - { - "id": "195142516", - "name": "Blaze ve Yol Canavarları", - "starttime": "2024-12-15 02:25:00 UTC+03:00", - "endtime": "2024-12-15 02:50:00 UTC+03:00", - "genres": "Çocuk", - "advisory": [], - "ratingid": "0", - "picture": "https://gbzeottvsc01.tvplus.com.tr:33207/CPS/images/universal/film/program/202412/20241209/93/2126356271175eb88428_0_XL.jpg", - "isnpvr": "1", - "introduce": "Blaze ve Yol Canavarları, dünyanın en büyük canavar kamyonu Blaze ve en iyi arkadaşı ve sürücüsü AJ adında bir çocuk hakkındaki interaktif bir anaokulu animasyon dizisidir.", - "programType": "episode", - "channelid": "4353", - "broadcastType": "Banttan", - "seasonInfo": "6. Sezon - 618. Bölüm" - }, - { - "id": "195142522", - "name": "Paw Patrol", - "starttime": "2024-12-15 02:50:00 UTC+03:00", - "endtime": "2024-12-15 03:10:00 UTC+03:00", - "genres": "Çocuk", - "advisory": [], - "ratingid": "0", - "picture": "https://gbzeottvsc01.tvplus.com.tr:33207/CPS/images/universal/film/program/202412/20241209/18/2126356271205eb88428_0_XL.jpg", - "isnpvr": "1", - "introduce": "Dünya dışı bir uay gemisi, çiftçi Yumi'nin topraklarına düşer! Paw Patrol, Zor duırumdaki kalan küçük uzaylıya yardım edip gemisini tamir edip gezegenine dönmesini yardım etmek için kolları sıvar.", - "programType": "episode", - "channelid": "4353", - "broadcastType": "Banttan", - "seasonInfo": "2. Sezon - 202. Bölüm" - }, - { - "id": "195142528", - "name": "Paw Patrol", - "starttime": "2024-12-15 03:10:00 UTC+03:00", - "endtime": "2024-12-15 03:30:00 UTC+03:00", - "genres": "Çocuk", - "advisory": [], - "ratingid": "0", - "picture": "https://gbzeottvsc01.tvplus.com.tr:33207/CPS/images/universal/film/program/202412/20241209/43/2126356271235eb88428_0_XL.jpg", - "isnpvr": "1", - "introduce": "Jake ve Chase mağara keşif geziindeylen, Jake'in bileği düşen kayalara sıkışıp kalıyor! Alex, macera körfezi resmi geçidi gününde, Katie'nin yüzen küvetine fazla balon bağlayınca, küvet uçmaya başlar.", - "programType": "episode", - "channelid": "4353", - "broadcastType": "Banttan", - "seasonInfo": "2. Sezon - 203. Bölüm" - }, - { - "id": "195142534", - "name": "Baby Shark's Big Show", - "starttime": "2024-12-15 03:30:00 UTC+03:00", - "endtime": "2024-12-15 03:55:00 UTC+03:00", - "genres": "Çocuk", - "advisory": [], - "ratingid": "0", - "picture": "https://gbzeottvsc01.tvplus.com.tr:33207/CPS/images/universal/film/program/202412/20241209/95/2126356271265eb88428_0_XL.jpg", - "isnpvr": "1", - "introduce": "Baby Shark'ın popülaritesini kıskanan Shadow, Wreck'i kendi kişisel eğlence parkı olarak yeniden markalaştırıyor. Baby Shark ve arkadaşları şövalyeler ve asiller oynarken Vola bir prensesden daha fazlası olmak ister.", - "programType": "episode", - "channelid": "4353", - "broadcastType": "Banttan", - "seasonInfo": "1. Sezon - 110. Bölüm" - }, - { - "id": "195142540", - "name": "BARBAPAPA Ailesi", - "starttime": "2024-12-15 03:55:00 UTC+03:00", - "endtime": "2024-12-15 04:15:00 UTC+03:00", - "genres": "Çocuk", - "advisory": [], - "ratingid": "0", - "picture": "https://gbzeottvsc01.tvplus.com.tr:33207/CPS/images/universal/film/program/202412/20241209/88/2126356271295eb88428_0_XL.jpg", - "isnpvr": "1", - "introduce": "Kimyasal spreyler kırları pembe yapar! Barbapapalar hasta kuşları korumak için bir büyük kuş evi inşa eder. Aile çöplerle kaplı bir kumsal görür ve sahili temizleyip, çöplerden minyatür golf sahası yapmaya karar verir.", - "programType": "episode", - "channelid": "4353", - "broadcastType": "Banttan", - "seasonInfo": "1. Sezon - 115. Bölüm" - }, - { - "id": "195142546", - "name": "Ayı Paddington'un Maceraları", - "starttime": "2024-12-15 04:15:00 UTC+03:00", - "endtime": "2024-12-15 04:40:00 UTC+03:00", - "genres": "Çocuk", - "advisory": [], - "ratingid": "0", - "picture": "https://gbzeottvsc01.tvplus.com.tr:33207/CPS/images/universal/film/program/202412/20241209/47/2126356281325eb88428_0_XL.jpg", - "isnpvr": "1", - "introduce": "Paddington ilk güneş tutulmasının tadını çıkarmak için zamana karşı yarışıyor. Paddington, Simi için bir mucit ödülünü kabul ediyor ama Simi neden daha sonra kıskançlık ve üzüntü duyuyor?", - "programType": "episode", - "channelid": "4353", - "broadcastType": "Banttan", - "seasonInfo": "3. Sezon - 306. Bölüm" - }, - { - "id": "195142552", - "name": "Rubble ve Ekibi", - "starttime": "2024-12-15 04:40:00 UTC+03:00", - "endtime": "2024-12-15 05:00:00 UTC+03:00", - "genres": "Çocuk", - "advisory": [], - "ratingid": "0", - "picture": "https://gbzeottvsc01.tvplus.com.tr:33207/CPS/images/universal/film/program/202412/20241209/86/2126356281355eb88428_0_XL.jpg", - "isnpvr": "1", - "introduce": "Charger'ın bir sorunu var. Çok fazla enerjisi var! Moloztaş ve Ekibi her zaman bir inşaat çözümü olduğunu biliyor. Moloztaş ve yavruları Mix, Motor, Lucas ve Lily'ye havalı Süper Kıvrak Sincap oyun gününü inşa ediyor!", - "programType": "episode", - "channelid": "4353", - "broadcastType": "Banttan", - "seasonInfo": "2. Sezon - 207. Bölüm" - }, - { - "id": "195142558", - "name": "Kaşif Dora", - "starttime": "2024-12-15 05:00:00 UTC+03:00", - "endtime": "2024-12-15 05:25:00 UTC+03:00", - "genres": "Çocuk", - "advisory": [], - "ratingid": "0", - "picture": "https://gbzeottvsc01.tvplus.com.tr:33207/CPS/images/universal/film/program/202412/20241209/45/2126356281385eb88428_0_XL.jpg", - "isnpvr": "1", - "introduce": "Dora ve Boots, genç yağmur bulutu Claudia'yı kuru bir su kaydırağında yağmur yağdırmaya götürür. Boots, arkadaşlarına yardım ederek sihirli çizgilerini elde ederse Kurbağa Ranita'nın tedavi edebileceği bir Gıdıklama Kuyruğu vakasına yakalanır.", - "programType": "episode", - "channelid": "4353", - "broadcastType": "Banttan", - "seasonInfo": "2. Sezon - 206. Bölüm" - }, - { - "id": "195142564", - "name": "Blaze ve Yol Canavarları", - "starttime": "2024-12-15 05:25:00 UTC+03:00", - "endtime": "2024-12-15 05:45:00 UTC+03:00", - "genres": "Çocuk", - "advisory": [], - "ratingid": "0", - "picture": "https://gbzeottvsc01.tvplus.com.tr:33207/CPS/images/universal/film/program/202412/20241209/86/2126356281415eb88428_0_XL.jpg", - "isnpvr": "1", - "introduce": "Büyük bir kayak kazası Crusher ve Pickle'ın çok uzaklarda mahsur kalmasına neden olduğunda Blaze ve AJ tehlikeli bir kurtarma görevine çıkar.", - "programType": "episode", - "channelid": "4353", - "broadcastType": "Banttan", - "seasonInfo": "6. Sezon - 619. Bölüm" - }, - { - "id": "195142570", - "name": "Minik Şef'in Yemek Programı", - "starttime": "2024-12-15 05:45:00 UTC+03:00", - "endtime": "2024-12-15 06:10:00 UTC+03:00", - "genres": "Çocuk", - "advisory": [], - "ratingid": "0", - "picture": "https://gbzeottvsc01.tvplus.com.tr:33207/CPS/images/universal/film/program/202412/20241209/89/2126356281445eb88428_0_XL.jpg", - "isnpvr": "1", - "introduce": "Morton'un yol atıştırmalığı düşünce Şef ve Olly ona yolculuğu için en iyi atıştırmalığı yapmak üzerine yarışır. İlk aşçılık deneyimi için çok hevesli olan biri, Şef ve Olly'ye nachos yapımında yardım eder.", - "programType": "episode", - "channelid": "4353", - "broadcastType": "Banttan", - "seasonInfo": "2. Sezon - 205. Bölüm" - }, - { - "id": "195142576", - "name": "Baby Shark's Big Show!", - "starttime": "2024-12-15 06:10:00 UTC+03:00", - "endtime": "2024-12-15 06:30:00 UTC+03:00", - "genres": "Çocuk", - "advisory": [], - "ratingid": "0", - "picture": "https://gbzeottvsc01.tvplus.com.tr:33207/CPS/images/universal/film/program/202412/20241209/37/2126356281475eb88428_0_XL.jpg", - "isnpvr": "1", - "introduce": "Bebek Köpekbalığı, aile müzik grubunda çalması için annesinin mükemmel müzik aletini bulmasına yardım ediyor. Baba, Büyükbaba ve Bebek ChewTube'da komik bir videosunu yayınladıktan sonra utanır.", - "programType": "episode", - "channelid": "4353", - "broadcastType": "Banttan", - "seasonInfo": "2. Sezon - 210. Bölüm" - }, - { - "id": "195142582", - "name": "Camgöz (2020)", - "starttime": "2024-12-15 06:30:00 UTC+03:00", - "endtime": "2024-12-15 06:40:00 UTC+03:00", - "genres": "Çocuk", - "advisory": [], - "ratingid": "0", - "picture": "https://gbzeottvsc01.tvplus.com.tr:33207/CPS/images/universal/film/program/202412/20241209/31/2126356281505eb88428_0_XL.jpg", - "isnpvr": "1", - "introduce": "Max'in Camgöz adında yarı köpek balığı yarı köpek eşsiz bir evcil havyanı vardır. İlk başlarda Camgöz'ü saklamaya çalışsa da Sisli Pınarlar'da, en iyi arkadaşlar, meraklı komşular ve hatta Max'in ailesi bile yaramaz yeni arkadaşını fark edecektir.", - "programType": "episode", - "channelid": "4353", - "broadcastType": "Banttan", - "seasonInfo": "1. Sezon - 102. Bölüm" - }, - { - "id": "195142588", - "name": "Camgöz (2020)", - "starttime": "2024-12-15 06:40:00 UTC+03:00", - "endtime": "2024-12-15 06:45:00 UTC+03:00", - "genres": "Çocuk", - "advisory": [], - "ratingid": "0", - "picture": "https://gbzeottvsc01.tvplus.com.tr:33207/CPS/images/universal/film/program/202412/20241209/5/2126356281535eb88428_0_XL.jpg", - "isnpvr": "1", - "introduce": "Max'in Camgöz adında yarı köpek balığı yarı köpek eşsiz bir evcil havyanı vardır. İlk başlarda Camgöz'ü saklamaya çalışsa da Sisli Pınarlar'da, en iyi arkadaşlar, meraklı komşular ve hatta Max'in ailesi bile yaramaz yeni arkadaşını fark edecektir.", - "programType": "episode", - "channelid": "4353", - "broadcastType": "Banttan", - "seasonInfo": "1. Sezon - 103. Bölüm" - }, - { - "id": "195142594", - "name": "Camgöz (2020)", - "starttime": "2024-12-15 06:45:00 UTC+03:00", - "endtime": "2024-12-15 06:50:00 UTC+03:00", - "genres": "Çocuk", - "advisory": [], - "ratingid": "0", - "picture": "https://gbzeottvsc01.tvplus.com.tr:33207/CPS/images/universal/film/program/202412/20241209/36/2126356291565eb88428_0_XL.jpg", - "isnpvr": "1", - "introduce": "Max'in Camgöz adında yarı köpek balığı yarı köpek eşsiz bir evcil havyanı vardır. İlk başlarda Camgöz'ü saklamaya çalışsa da Sisli Pınarlar'da, en iyi arkadaşlar, meraklı komşular ve hatta Max'in ailesi bile yaramaz yeni arkadaşını fark edecektir.", - "programType": "episode", - "channelid": "4353", - "broadcastType": "Banttan", - "seasonInfo": "1. Sezon - 104. Bölüm" - }, - { - "id": "195142600", - "name": "Camgöz (2020)", - "starttime": "2024-12-15 06:50:00 UTC+03:00", - "endtime": "2024-12-15 07:00:00 UTC+03:00", - "genres": "Çocuk", - "advisory": [], - "ratingid": "0", - "picture": "https://gbzeottvsc01.tvplus.com.tr:33207/CPS/images/universal/film/program/202412/20241209/58/2126356291595eb88428_0_XL.jpg", - "isnpvr": "1", - "introduce": "Max'in babası Yılın Bahçesi ödülünü almayı çok ister ama Camgöz değerlendirmeden kısa bir süre önce bahçeyi mahvedince Köpek Balığı Sürüsü devreye girip her şeyi düzeltmesi gerekecektir.", - "programType": "episode", - "channelid": "4353", - "broadcastType": "Banttan", - "seasonInfo": "1. Sezon - 105. Bölüm" - }, - { - "id": "195142606", - "name": "Paw Patrol", - "starttime": "2024-12-15 07:00:00 UTC+03:00", - "endtime": "2024-12-15 07:20:00 UTC+03:00", - "genres": "Çocuk", - "advisory": [], - "ratingid": "0", - "picture": "https://gbzeottvsc01.tvplus.com.tr:33207/CPS/images/universal/film/program/202412/20241209/17/2126356291625eb88428_0_XL.jpg", - "isnpvr": "1", - "introduce": "Yavru bir geyik bir dağın yamacından aşağı hızla yuvarlanır. Yavruyu kurtarmak ve ailesine kavuşturmak Paw Patrol'a düşer. Luke Stars dev bir yuvarlanan otun içinde havaya uçtuğunda, Digi ve Tal kontrolden çıkan bir kopya yaparlar.", - "programType": "episode", - "channelid": "4353", - "broadcastType": "Banttan", - "seasonInfo": "10. Sezon - 1015. Bölüm" - }, - { - "id": "195142612", - "name": "Köpecik Pit Ekibi", - "starttime": "2024-12-15 07:20:00 UTC+03:00", - "endtime": "2024-12-15 07:30:00 UTC+03:00", - "genres": "Çocuk", - "advisory": [], - "ratingid": "0", - "picture": "https://gbzeottvsc01.tvplus.com.tr:33207/CPS/images/universal/film/program/202412/20241209/14/2126356291655eb88428_0_XL.jpg", - "isnpvr": "1", - "introduce": "PAW Patrol okul öncesi programı ve altı tane köpekçik baş rolü paylaşıyor: Chase, Marshall, Rocky, Zuma, Rubble ve Skye, başlarında da teknoloji meraklısı 10 yaşında bir çocuk olan Ryder var.", - "programType": "episode", - "channelid": "4353", - "broadcastType": "Banttan", - "seasonInfo": "4. Sezon - 414. Bölüm" - }, - { - "id": "195142618", - "name": "Rubble ve Ekibi", - "starttime": "2024-12-15 07:30:00 UTC+03:00", - "endtime": "2024-12-15 07:55:00 UTC+03:00", - "genres": "Çocuk", - "advisory": [], - "ratingid": "0", - "picture": "https://gbzeottvsc01.tvplus.com.tr:33207/CPS/images/universal/film/program/202412/20241209/81/2126356291685eb88428_0_XL.jpg", - "isnpvr": "1", - "introduce": "Rubble ve Ekibi, Çiftçi Zoe'nin yeni ineği Mooreen'i karşılamak için İnşaatçı Koyu'ndaki ilk tren istasyonunu inşa ediyor. Popstar Parıltılı Sierra Koy'a taşınıyor! Yavrular sürpriz bir karşılama planlayınca, Hız Ustası kendi planını yapar.", - "programType": "episode", - "channelid": "4353", - "broadcastType": "Banttan", - "seasonInfo": "2. Sezon - 202. Bölüm" - }, - { - "id": "195142624", - "name": "Peppa Pig", - "starttime": "2024-12-15 07:55:00 UTC+03:00", - "endtime": "2024-12-15 08:00:00 UTC+03:00", - "genres": "Çocuk", - "advisory": [], - "ratingid": "0", - "picture": "https://gbzeottvsc01.tvplus.com.tr:33207/CPS/images/universal/film/program/202412/20241209/28/2126356291715eb88428_0_XL.jpg", - "isnpvr": "1", - "introduce": "Peppa, annesi, babası ve abisi George'la yaşayan küçük bir domuzdur. Peppa oyun oynamayı, şık giyinmeyi, uzun seyahatleri ve çamurda zıplamayı sever.", - "programType": "episode", - "channelid": "4353", - "broadcastType": "Banttan", - "seasonInfo": "1. Sezon - 114. Bölüm" - }, - { - "id": "195142630", - "name": "Peppa Pig", - "starttime": "2024-12-15 08:00:00 UTC+03:00", - "endtime": "2024-12-15 08:05:00 UTC+03:00", - "genres": "Çocuk", - "advisory": [], - "ratingid": "0", - "picture": "https://gbzeottvsc01.tvplus.com.tr:33207/CPS/images/universal/film/program/202412/20241209/63/2126356301745eb88428_0_XL.jpg", - "isnpvr": "1", - "introduce": "Peppa, annesi, babası ve abisi George'la yaşayan küçük bir domuzdur. Peppa oyun oynamayı, şık giyinmeyi, uzun seyahatleri ve çamurda zıplamayı sever.", - "programType": "episode", - "channelid": "4353", - "broadcastType": "Banttan", - "seasonInfo": "1. Sezon - 124. Bölüm" - }, - { - "id": "195142636", - "name": "Peppa Pig", - "starttime": "2024-12-15 08:05:00 UTC+03:00", - "endtime": "2024-12-15 08:10:00 UTC+03:00", - "genres": "Çocuk", - "advisory": [], - "ratingid": "0", - "picture": "https://gbzeottvsc01.tvplus.com.tr:33207/CPS/images/universal/film/program/202412/20241209/32/2126356301775eb88428_0_XL.jpg", - "isnpvr": "1", - "introduce": "Peppa, annesi, babası ve abisi George'la yaşayan küçük bir domuzdur. Peppa oyun oynamayı, şık giyinmeyi, uzun seyahatleri ve çamurda zıplamayı sever.", - "programType": "episode", - "channelid": "4353", - "broadcastType": "Banttan", - "seasonInfo": "1. Sezon - 125. Bölüm" - }, - { - "id": "195142642", - "name": "Peppa Pig", - "starttime": "2024-12-15 08:10:00 UTC+03:00", - "endtime": "2024-12-15 08:15:00 UTC+03:00", - "genres": "Çocuk", - "advisory": [], - "ratingid": "0", - "picture": "https://gbzeottvsc01.tvplus.com.tr:33207/CPS/images/universal/film/program/202412/20241209/67/2126356301805eb88428_0_XL.jpg", - "isnpvr": "1", - "introduce": "Peppa, annesi, babası ve abisi George'la yaşayan küçük bir domuzdur. Peppa oyun oynamayı, şık giyinmeyi, uzun seyahatleri ve çamurda zıplamayı sever.", - "programType": "episode", - "channelid": "4353", - "broadcastType": "Banttan", - "seasonInfo": "1. Sezon - 126. Bölüm" - }, - { - "id": "195142648", - "name": "Anna ve Dostları", - "starttime": "2024-12-15 08:15:00 UTC+03:00", - "endtime": "2024-12-15 08:20:00 UTC+03:00", - "genres": "Çocuk", - "advisory": [], - "ratingid": "0", - "picture": "https://gbzeottvsc01.tvplus.com.tr:33207/CPS/images/universal/film/program/202412/20241209/56/2126356301835eb88428_0_XL.jpg", - "isnpvr": "1", - "introduce": "Bitkileriyle çok konuştuktan sonra Froga, SESSİZLİK oynayarak dinlenmeye karar verir. Dostlarının onu konuşturmaya çalışması eğlenceli bir meydan okuma haline gelir.", - "programType": "episode", - "channelid": "4353", - "broadcastType": "Banttan", - "seasonInfo": "1. Sezon - 176. Bölüm" - }, - { - "id": "195142654", - "name": "Anna ve Dostları", - "starttime": "2024-12-15 08:20:00 UTC+03:00", - "endtime": "2024-12-15 08:30:00 UTC+03:00", - "genres": "Çocuk", - "advisory": [], - "ratingid": "0", - "picture": "https://gbzeottvsc01.tvplus.com.tr:33207/CPS/images/universal/film/program/202412/20241209/26/2126356301865eb88428_0_XL.jpg", - "isnpvr": "1", - "introduce": "Froga Eğlenceli Fotoğraflar Albümü'nü karıştırırken Anna'nın eğlenceli bir fotoğrafının olmamasına şaşırır! Durumu düzeltmek için yola çıkan Froga, Anna'nın komik bir fotoğrafını çekmek için yardım alır.", - "programType": "episode", - "channelid": "4353", - "broadcastType": "Banttan", - "seasonInfo": "1. Sezon - 177. Bölüm" - }, - { - "id": "195142660", - "name": "Minik Şef", - "starttime": "2024-12-15 08:30:00 UTC+03:00", - "endtime": "2024-12-15 08:50:00 UTC+03:00", - "genres": "Çocuk", - "advisory": [], - "ratingid": "0", - "picture": "https://gbzeottvsc01.tvplus.com.tr:33207/CPS/images/universal/film/program/202412/20241209/67/2126356301895eb88428_0_XL.jpg", - "isnpvr": "1", - "introduce": "Minik Şef, büyük yarışma için elmalı turta pişiriyor ve bir kazadan sonra giriş bulmak için hızlı düşünmek zorunda. Minik Şef piknik için Guakamole yapar, arkadaşları mutfak aletlerini kullanarak yardım edince paylaşmayı öğrenmeli.", - "programType": "episode", - "channelid": "4353", - "broadcastType": "Banttan", - "seasonInfo": "1. Sezon - 106. Bölüm" - }, - { - "id": "195142666", - "name": "Minik Şef'in Yemek Programı", - "starttime": "2024-12-15 08:50:00 UTC+03:00", - "endtime": "2024-12-15 09:00:00 UTC+03:00", - "genres": "Çocuk", - "advisory": [], - "ratingid": "0", - "picture": "https://gbzeottvsc01.tvplus.com.tr:33207/CPS/images/universal/film/program/202412/20241209/37/2126356301925eb88428_0_XL.jpg", - "isnpvr": "1", - "introduce": "Dünyanın en küçük şefi tarafından yaratılan, dünyanın en küçük yemek programında, dünyanın en küçük yemekleri.", - "programType": "episode", - "channelid": "4353", - "broadcastType": "Banttan", - "seasonInfo": "2. Sezon - 210. Bölüm" - }, - { - "id": "195142672", - "name": "Blaze ve Yol Canavarları", - "starttime": "2024-12-15 09:00:00 UTC+03:00", - "endtime": "2024-12-15 09:25:00 UTC+03:00", - "genres": "Çocuk", - "advisory": [], - "ratingid": "0", - "picture": "https://gbzeottvsc01.tvplus.com.tr:33207/CPS/images/universal/film/program/202412/20241209/56/2126356301955eb88428_0_XL.jpg", - "isnpvr": "1", - "introduce": "Bütün kamyonların ikili takımlar halinde yarıştığı Kamyon Takım Mücadelesi günü gelir çatar! Ezici, Turşu yerine yeni bir takım arkadaşı seçince hayal kırıklığına uğrayan Turşu kendini kanıtlamak için Blaze'le takım olur.", - "programType": "episode", - "channelid": "4353", - "broadcastType": "Banttan", - "seasonInfo": "1. Sezon - 108. Bölüm" - }, - { - "id": "195142678", - "name": "Hamster Diyarı", - "starttime": "2024-12-15 09:25:00 UTC+03:00", - "endtime": "2024-12-15 09:45:00 UTC+03:00", - "genres": "Çocuk", - "advisory": [], - "ratingid": "0", - "picture": "https://gbzeottvsc01.tvplus.com.tr:33207/CPS/images/universal/film/program/202412/20241209/76/2126356311985eb88428_0_XL.jpg", - "isnpvr": "1", - "introduce": "Greg, arkadaşlarına korkutucu bir numara yapmak zorunda kalmamak için yaralı numarası yapar. Bir saklambaç oyunu sırasında Lil Pal o kadar iyi saklanır ki bulunamaz.", - "programType": "episode", - "channelid": "4353", - "broadcastType": "Banttan", - "seasonInfo": "1. Sezon - 108. Bölüm" - }, - { - "id": "195142684", - "name": "Paw Patrol", - "starttime": "2024-12-15 09:45:00 UTC+03:00", - "endtime": "2024-12-15 10:10:00 UTC+03:00", - "genres": "Çocuk", - "advisory": [], - "ratingid": "0", - "picture": "https://gbzeottvsc01.tvplus.com.tr:33207/CPS/images/universal/film/program/202412/20241209/25/2126356312015eb88428_0_XL.jpg", - "isnpvr": "1", - "introduce": "Alex ve Bay Porter tropik bir adada kamp yaparken çılgın bir kar fırtınasına yakalanırlar. Bay Porter ünlü köpüren turşularından dağıtırken yoldaki tümsekler siparişleri karıştırır ve turşular patlamaya başlar.", - "programType": "episode", - "channelid": "4353", - "broadcastType": "Banttan", - "seasonInfo": "5. Sezon - 523. Bölüm" - }, - { - "id": "195142690", - "name": "Paw Patrol", - "starttime": "2024-12-15 10:10:00 UTC+03:00", - "endtime": "2024-12-15 10:30:00 UTC+03:00", - "genres": "Çocuk", - "advisory": [], - "ratingid": "0", - "picture": "https://gbzeottvsc01.tvplus.com.tr:33207/CPS/images/universal/film/program/202412/20241209/4/2126356312045eb88428_0_XL.jpg", - "isnpvr": "1", - "introduce": "Yumi'nin yeni robot mısır toplayıcısı kontrolden çıkınca Ryder ve Paw Patrol onu sakinleştirmeye çalışır. Cesur Danny X Macera Koyu için Kuş X kostümü giyince bir çift kartal onu yavrusu sanıp yanlarında götürür.", - "programType": "episode", - "channelid": "4353", - "broadcastType": "Banttan", - "seasonInfo": "5. Sezon - 524. Bölüm" - }, - { - "id": "195142696", - "name": "Köpecik Pit Ekibi", - "starttime": "2024-12-15 10:30:00 UTC+03:00", - "endtime": "2024-12-15 10:40:00 UTC+03:00", - "genres": "Çocuk", - "advisory": [], - "ratingid": "0", - "picture": "https://gbzeottvsc01.tvplus.com.tr:33207/CPS/images/universal/film/program/202412/20241209/82/2126356312075eb88428_0_XL.jpg", - "isnpvr": "1", - "introduce": "Başkan Goodway yanlışlıkla bir balonla yükseldiğinde, Ryder ve Paw Patrol onu kurtarmak ve yarışı kazanmak için bir kurtarma operasyonuna başlıyo.", - "programType": "episode", - "channelid": "4353", - "broadcastType": "Banttan", - "seasonInfo": "1. Sezon - 105. Bölüm" - }, - { - "id": "195142702", - "name": "Rubble ve Ekibi", - "starttime": "2024-12-15 10:40:00 UTC+03:00", - "endtime": "2024-12-15 11:05:00 UTC+03:00", - "genres": "Çocuk", - "advisory": [], - "ratingid": "0", - "picture": "https://gbzeottvsc01.tvplus.com.tr:33207/CPS/images/universal/film/program/202412/20241209/37/2126356312105eb88428_0_XL.jpg", - "isnpvr": "1", - "introduce": "Dinozor kemiklerini çıkardıktan sonra, yavrular dinozor müzesi inşa etmeye karar verirler! Posta Taşıyıcısı Omar ayağını kırdığında, kasabaya rampalar inşa ederek dağıtmaya devam edebilmesini sağlamak yavrulara düşer.", - "programType": "episode", - "channelid": "4353", - "broadcastType": "Banttan", - "seasonInfo": "1. Sezon - 113. Bölüm" - }, - { - "id": "195142708", - "name": "Rubble ve Ekibi", - "starttime": "2024-12-15 11:05:00 UTC+03:00", - "endtime": "2024-12-15 11:30:00 UTC+03:00", - "genres": "Çocuk", - "advisory": [], - "ratingid": "0", - "picture": "https://gbzeottvsc01.tvplus.com.tr:33207/CPS/images/universal/film/program/202412/20241209/31/2126356312135eb88428_0_XL.jpg", - "isnpvr": "1", - "introduce": "Sıçrama parkı planları sorunlu sularda yüzen yavrular, kasabayı yaz boyunca serinletmek için yaratıcı olmak zorunda. Yavrular Lucas ve Lily için oyun odası inşa etmeye çalışırken, sincap bir ziyaretçi inşaatta sorunlara neden olur.", - "programType": "episode", - "channelid": "4353", - "broadcastType": "Banttan", - "seasonInfo": "1. Sezon - 114. Bölüm" - }, - { - "id": "195142714", - "name": "Kaşif Dora", - "starttime": "2024-12-15 11:30:00 UTC+03:00", - "endtime": "2024-12-15 11:50:00 UTC+03:00", - "genres": "Çocuk", - "advisory": [], - "ratingid": "0", - "picture": "https://gbzeottvsc01.tvplus.com.tr:33207/CPS/images/universal/film/program/202412/20241209/30/2126356312165eb88428_0_XL.jpg", - "isnpvr": "1", - "introduce": "Swiper görünmezlik örtüsü çalıyor! Görünmez Arakcı artık her şeyi silip süpürüyor ve onu durdurmak Dora ve Boots'a düşüyor. Dora'nın ailesi Mami'nin doğum günü için bir pinyata yapıyor, ama uçup gidiyor! Onu güvenli bir şekilde geri almak zorunda.", - "programType": "episode", - "channelid": "4353", - "broadcastType": "Banttan", - "seasonInfo": "2. Sezon - 202. Bölüm" - }, - { - "id": "195142720", - "name": "Baby Shark's Big Show!", - "starttime": "2024-12-15 11:50:00 UTC+03:00", - "endtime": "2024-12-15 12:15:00 UTC+03:00", - "genres": "Çocuk", - "advisory": [], - "ratingid": "0", - "picture": "https://gbzeottvsc01.tvplus.com.tr:33207/CPS/images/universal/film/program/202412/20241209/58/2126356322195eb88428_0_XL.jpg", - "isnpvr": "1", - "introduce": "Fishy Force, Carnivore Koy'daki tüm ikramları çalan bir kötü adamla mücadele ediyor. Costello işi bırakınca Vigo, balıkları olmadan süper kötü olmaya karar verir.", - "programType": "episode", - "channelid": "4353", - "broadcastType": "Banttan", - "seasonInfo": "2. Sezon - 222. Bölüm" - }, - { - "id": "195142726", - "name": "Camgöz (2020)", - "starttime": "2024-12-15 12:15:00 UTC+03:00", - "endtime": "2024-12-15 12:20:00 UTC+03:00", - "genres": "Çocuk", - "advisory": [], - "ratingid": "0", - "picture": "https://gbzeottvsc01.tvplus.com.tr:33207/CPS/images/universal/film/program/202412/20241209/58/2126356322225eb88428_0_XL.jpg", - "isnpvr": "1", - "introduce": "Max'in Camgöz adında yarı köpek balığı yarı köpek eşsiz bir evcil havyanı vardır. İlk başlarda Camgöz'ü saklamaya çalışsa da Sisli Pınarlar'da, en iyi arkadaşlar, meraklı komşular ve hatta Max'in ailesi bile yaramaz yeni arkadaşını fark edecektir.", - "programType": "episode", - "channelid": "4353", - "broadcastType": "Banttan", - "seasonInfo": "1. Sezon - 116. Bölüm" - }, - { - "id": "195142732", - "name": "Camgöz (2020)", - "starttime": "2024-12-15 12:20:00 UTC+03:00", - "endtime": "2024-12-15 12:25:00 UTC+03:00", - "genres": "Çocuk", - "advisory": [], - "ratingid": "0", - "picture": "https://gbzeottvsc01.tvplus.com.tr:33207/CPS/images/universal/film/program/202412/20241209/49/2126356322255eb88428_0_XL.jpg", - "isnpvr": "1", - "introduce": "Max'in Camgöz adında yarı köpek balığı yarı köpek eşsiz bir evcil havyanı vardır. İlk başlarda Camgöz'ü saklamaya çalışsa da Sisli Pınarlar'da, en iyi arkadaşlar, meraklı komşular ve hatta Max'in ailesi bile yaramaz yeni arkadaşını fark edecektir.", - "programType": "episode", - "channelid": "4353", - "broadcastType": "Banttan", - "seasonInfo": "1. Sezon - 117. Bölüm" - }, - { - "id": "195142738", - "name": "Camgöz (2020)", - "starttime": "2024-12-15 12:25:00 UTC+03:00", - "endtime": "2024-12-15 12:35:00 UTC+03:00", - "genres": "Çocuk", - "advisory": [], - "ratingid": "0", - "picture": "https://gbzeottvsc01.tvplus.com.tr:33207/CPS/images/universal/film/program/202412/20241209/50/2126356322285eb88428_0_XL.jpg", - "isnpvr": "1", - "introduce": "Max'in Camgöz adında yarı köpek balığı yarı köpek eşsiz bir evcil havyanı vardır. İlk başlarda Camgöz'ü saklamaya çalışsa da Sisli Pınarlar'da, en iyi arkadaşlar, meraklı komşular ve hatta Max'in ailesi bile yaramaz yeni arkadaşını fark edecektir.", - "programType": "episode", - "channelid": "4353", - "broadcastType": "Banttan", - "seasonInfo": "1. Sezon - 118. Bölüm" - }, - { - "id": "195142744", - "name": "Peppa Pig", - "starttime": "2024-12-15 12:35:00 UTC+03:00", - "endtime": "2024-12-15 12:40:00 UTC+03:00", - "genres": "Çocuk", - "advisory": [], - "ratingid": "0", - "picture": "https://gbzeottvsc01.tvplus.com.tr:33207/CPS/images/universal/film/program/202412/20241209/65/2126356322315eb88428_0_XL.jpg", - "isnpvr": "1", - "introduce": "Peppa, annesi, babası ve abisi George'la yaşayan küçük bir domuzdur. Peppa oyun oynamayı, şık giyinmeyi, uzun seyahatleri ve çamurda zıplamayı sever.", - "programType": "episode", - "channelid": "4353", - "broadcastType": "Banttan", - "seasonInfo": "1. Sezon - 127. Bölüm" - }, - { - "id": "195142750", - "name": "Peppa Pig", - "starttime": "2024-12-15 12:40:00 UTC+03:00", - "endtime": "2024-12-15 12:45:00 UTC+03:00", - "genres": "Çocuk", - "advisory": [], - "ratingid": "0", - "picture": "https://gbzeottvsc01.tvplus.com.tr:33207/CPS/images/universal/film/program/202412/20241209/20/2126356322345eb88428_0_XL.jpg", - "isnpvr": "1", - "introduce": "Peppa, annesi, babası ve abisi George'la yaşayan küçük bir domuzdur. Peppa oyun oynamayı, şık giyinmeyi, uzun seyahatleri ve çamurda zıplamayı sever.", - "programType": "episode", - "channelid": "4353", - "broadcastType": "Banttan", - "seasonInfo": "1. Sezon - 128. Bölüm" - }, - { - "id": "195142756", - "name": "Peppa Pig", - "starttime": "2024-12-15 12:45:00 UTC+03:00", - "endtime": "2024-12-15 12:50:00 UTC+03:00", - "genres": "Çocuk", - "advisory": [], - "ratingid": "0", - "picture": "https://gbzeottvsc01.tvplus.com.tr:33207/CPS/images/universal/film/program/202412/20241209/62/2126356332375eb88428_0_XL.jpg", - "isnpvr": "1", - "introduce": "Peppa, annesi, babası ve abisi George'la yaşayan küçük bir domuzdur. Peppa oyun oynamayı, şık giyinmeyi, uzun seyahatleri ve çamurda zıplamayı sever.", - "programType": "episode", - "channelid": "4353", - "broadcastType": "Banttan", - "seasonInfo": "1. Sezon - 129. Bölüm" - }, - { - "id": "195142762", - "name": "Peppa Pig", - "starttime": "2024-12-15 12:50:00 UTC+03:00", - "endtime": "2024-12-15 12:55:00 UTC+03:00", - "genres": "Çocuk", - "advisory": [], - "ratingid": "0", - "picture": "https://gbzeottvsc01.tvplus.com.tr:33207/CPS/images/universal/film/program/202412/20241209/31/2126356332405eb88428_0_XL.jpg", - "isnpvr": "1", - "introduce": "Anne ve Baba Domuz akşam dışarı çıkınca, Peppa ve George'a Büyükanne ve Büyükbaba Domuz bakar. Peppa ve George'un uykusu gelmeyince Büyükanne ve Büyükbaba Domuz onları yormaya çalışır.", - "programType": "episode", - "channelid": "4353", - "broadcastType": "Banttan", - "seasonInfo": "1. Sezon - 130. Bölüm" - }, - { - "id": "195142768", - "name": "Minik Şef'in Yemek Programı", - "starttime": "2024-12-15 12:55:00 UTC+03:00", - "endtime": "2024-12-15 13:15:00 UTC+03:00", - "genres": "Çocuk", - "advisory": [], - "ratingid": "0", - "picture": "https://gbzeottvsc01.tvplus.com.tr:33207/CPS/images/universal/film/program/202412/20241209/74/2126356332435eb88428_0_XL.jpg", - "isnpvr": "1", - "introduce": "Şef, sürpriz doğum günü kahvaltısı için Olly'nin en sevdiği çörekleri onu uyandırmadan pişirmeye çalışır. Şef ve Olly bir yandan on iki uğur böceği bebeğe bakıcılık yaparken bir yandan da onlara atıştırmalık bir şeyler hazırlamaya çalışırlar.", - "programType": "episode", - "channelid": "4353", - "broadcastType": "Banttan", - "seasonInfo": "2. Sezon - 202. Bölüm" - }, - { - "id": "195142774", - "name": "Barbapapa Ailesi", - "starttime": "2024-12-15 13:15:00 UTC+03:00", - "endtime": "2024-12-15 13:40:00 UTC+03:00", - "genres": "Çocuk", - "advisory": [], - "ratingid": "0", - "picture": "https://gbzeottvsc01.tvplus.com.tr:33207/CPS/images/universal/film/program/202412/20241209/20/2126356332465eb88428_0_XL.jpg", - "isnpvr": "1", - "introduce": "Barbapapa, François'nın ailesinin onun için inşa ettiği eve sığınır. Barbapapa'nın evi, Barbaanne ve Barbabébé'nin hayatına girmesiyle artık çok küçüktür.", - "programType": "episode", - "channelid": "4353", - "broadcastType": "Banttan", - "seasonInfo": "2. Sezon - 207. Bölüm" - }, - { - "id": "195142780", - "name": "Barbapapa Ailesi", - "starttime": "2024-12-15 13:40:00 UTC+03:00", - "endtime": "2024-12-15 14:00:00 UTC+03:00", - "genres": "Çocuk", - "advisory": [], - "ratingid": "0", - "picture": "https://gbzeottvsc01.tvplus.com.tr:33207/CPS/images/universal/film/program/202412/20241209/54/2126356332495eb88428_0_XL.jpg", - "isnpvr": "1", - "introduce": "En popüler ailenin dünya ekranlarına göz kamaştırıcı dönüşü! BARBAPAPA. Büyük mutlu bir aile! Barbapapalar için rutin diye bir şey yoktur: her gün sürprizlerle dolu neşeli bir maceradır!", - "programType": "episode", - "channelid": "4353", - "broadcastType": "Banttan", - "seasonInfo": "2. Sezon - 208. Bölüm" - }, - { - "id": "195142786", - "name": "Blaze ve Yol Canavarları", - "starttime": "2024-12-15 14:00:00 UTC+03:00", - "endtime": "2024-12-15 14:25:00 UTC+03:00", - "genres": "Çocuk", - "advisory": [], - "ratingid": "0", - "picture": "https://gbzeottvsc01.tvplus.com.tr:33207/CPS/images/universal/film/program/202412/20241209/64/2126356332525eb88428_0_XL.jpg", - "isnpvr": "1", - "introduce": "Blaze ve Yol Canavarları, dünyanın en büyük canavar kamyonu Blaze ve en iyi arkadaşı ve sürücüsü AJ adında bir çocuk hakkındaki interaktif bir anaokulu animasyon dizisidir.", - "programType": "episode", - "channelid": "4353", - "broadcastType": "Banttan", - "seasonInfo": "6. Sezon - 617. Bölüm" - }, - { - "id": "195142792", - "name": "Blaze ve Yol Canavarları", - "starttime": "2024-12-15 14:25:00 UTC+03:00", - "endtime": "2024-12-15 14:50:00 UTC+03:00", - "genres": "Çocuk", - "advisory": [], - "ratingid": "0", - "picture": "https://gbzeottvsc01.tvplus.com.tr:33207/CPS/images/universal/film/program/202412/20241209/52/2126356332555eb88428_0_XL.jpg", - "isnpvr": "1", - "introduce": "Blaze ve Yol Canavarları, dünyanın en büyük canavar kamyonu Blaze ve en iyi arkadaşı ve sürücüsü AJ adında bir çocuk hakkındaki interaktif bir anaokulu animasyon dizisidir.", - "programType": "episode", - "channelid": "4353", - "broadcastType": "Banttan", - "seasonInfo": "6. Sezon - 618. Bölüm" - }, - { - "id": "195142798", - "name": "Paw Patrol", - "starttime": "2024-12-15 14:50:00 UTC+03:00", - "endtime": "2024-12-15 15:10:00 UTC+03:00", - "genres": "Çocuk", - "advisory": [], - "ratingid": "0", - "picture": "https://gbzeottvsc01.tvplus.com.tr:33207/CPS/images/universal/film/program/202412/20241209/85/2126356332585eb88428_0_XL.jpg", - "isnpvr": "1", - "introduce": "Dünya dışı bir uay gemisi, çiftçi Yumi'nin topraklarına düşer! Paw Patrol, Zor duırumdaki kalan küçük uzaylıya yardım edip gemisini tamir edip gezegenine dönmesini yardım etmek için kolları sıvar.", - "programType": "episode", - "channelid": "4353", - "broadcastType": "Banttan", - "seasonInfo": "2. Sezon - 202. Bölüm" - }, - { - "id": "195142804", - "name": "Paw Patrol", - "starttime": "2024-12-15 15:10:00 UTC+03:00", - "endtime": "2024-12-15 15:35:00 UTC+03:00", - "genres": "Çocuk", - "advisory": [], - "ratingid": "0", - "picture": "https://gbzeottvsc01.tvplus.com.tr:33207/CPS/images/universal/film/program/202412/20241209/51/2126356342615eb88428_0_XL.jpg", - "isnpvr": "1", - "introduce": "Jake ve Chase mağara keşif geziindeylen, Jake'in bileği düşen kayalara sıkışıp kalıyor! Alex, macera körfezi resmi geçidi gününde, Katie'nin yüzen küvetine fazla balon bağlayınca, küvet uçmaya başlar.", - "programType": "episode", - "channelid": "4353", - "broadcastType": "Banttan", - "seasonInfo": "2. Sezon - 203. Bölüm" - }, - { - "id": "195142810", - "name": "Baby Shark's Big Show", - "starttime": "2024-12-15 15:35:00 UTC+03:00", - "endtime": "2024-12-15 15:55:00 UTC+03:00", - "genres": "Çocuk", - "advisory": [], - "ratingid": "0", - "picture": "https://gbzeottvsc01.tvplus.com.tr:33207/CPS/images/universal/film/program/202412/20241209/18/2126356342645eb88428_0_XL.jpg", - "isnpvr": "1", - "introduce": "Baby Shark'ın popülaritesini kıskanan Shadow, Wreck'i kendi kişisel eğlence parkı olarak yeniden markalaştırıyor. Baby Shark ve arkadaşları şövalyeler ve asiller oynarken Vola bir prensesden daha fazlası olmak ister.", - "programType": "episode", - "channelid": "4353", - "broadcastType": "Banttan", - "seasonInfo": "1. Sezon - 110. Bölüm" - }, - { - "id": "195142816", - "name": "BARBAPAPA Ailesi", - "starttime": "2024-12-15 15:55:00 UTC+03:00", - "endtime": "2024-12-15 16:15:00 UTC+03:00", - "genres": "Çocuk", - "advisory": [], - "ratingid": "0", - "picture": "https://gbzeottvsc01.tvplus.com.tr:33207/CPS/images/universal/film/program/202412/20241209/90/2126356342675eb88428_0_XL.jpg", - "isnpvr": "1", - "introduce": "Kimyasal spreyler kırları pembe yapar! Barbapapalar hasta kuşları korumak için bir büyük kuş evi inşa eder. Aile çöplerle kaplı bir kumsal görür ve sahili temizleyip, çöplerden minyatür golf sahası yapmaya karar verir.", - "programType": "episode", - "channelid": "4353", - "broadcastType": "Banttan", - "seasonInfo": "1. Sezon - 115. Bölüm" - }, - { - "id": "195142822", - "name": "Ayı Paddington'un Maceraları", - "starttime": "2024-12-15 16:15:00 UTC+03:00", - "endtime": "2024-12-15 16:40:00 UTC+03:00", - "genres": "Çocuk", - "advisory": [], - "ratingid": "0", - "picture": "https://gbzeottvsc01.tvplus.com.tr:33207/CPS/images/universal/film/program/202412/20241209/25/2126356342705eb88428_0_XL.jpg", - "isnpvr": "1", - "introduce": "Paddington ilk güneş tutulmasının tadını çıkarmak için zamana karşı yarışıyor. Paddington, Simi için bir mucit ödülünü kabul ediyor ama Simi neden daha sonra kıskançlık ve üzüntü duyuyor?", - "programType": "episode", - "channelid": "4353", - "broadcastType": "Banttan", - "seasonInfo": "3. Sezon - 306. Bölüm" - }, - { - "id": "195142828", - "name": "Rubble ve Ekibi", - "starttime": "2024-12-15 16:40:00 UTC+03:00", - "endtime": "2024-12-15 17:00:00 UTC+03:00", - "genres": "Çocuk", - "advisory": [], - "ratingid": "0", - "picture": "https://gbzeottvsc01.tvplus.com.tr:33207/CPS/images/universal/film/program/202412/20241209/92/2126356342735eb88428_0_XL.jpg", - "isnpvr": "1", - "introduce": "Charger'ın bir sorunu var. Çok fazla enerjisi var! Moloztaş ve Ekibi her zaman bir inşaat çözümü olduğunu biliyor. Moloztaş ve yavruları Mix, Motor, Lucas ve Lily'ye havalı Süper Kıvrak Sincap oyun gününü inşa ediyor!", - "programType": "episode", - "channelid": "4353", - "broadcastType": "Banttan", - "seasonInfo": "2. Sezon - 207. Bölüm" - }, - { - "id": "195142834", - "name": "Kaşif Dora", - "starttime": "2024-12-15 17:00:00 UTC+03:00", - "endtime": "2024-12-15 17:25:00 UTC+03:00", - "genres": "Çocuk", - "advisory": [], - "ratingid": "0", - "picture": "https://gbzeottvsc01.tvplus.com.tr:33207/CPS/images/universal/film/program/202412/20241209/3/2126356342765eb88428_0_XL.jpg", - "isnpvr": "1", - "introduce": "Dora ve Boots, genç yağmur bulutu Claudia'yı kuru bir su kaydırağında yağmur yağdırmaya götürür. Boots, arkadaşlarına yardım ederek sihirli çizgilerini elde ederse Kurbağa Ranita'nın tedavi edebileceği bir Gıdıklama Kuyruğu vakasına yakalanır.", - "programType": "episode", - "channelid": "4353", - "broadcastType": "Banttan", - "seasonInfo": "2. Sezon - 206. Bölüm" - }, - { - "id": "195142840", - "name": "Blaze ve Yol Canavarları", - "starttime": "2024-12-15 17:25:00 UTC+03:00", - "endtime": "2024-12-15 17:45:00 UTC+03:00", - "genres": "Çocuk", - "advisory": [], - "ratingid": "0", - "picture": "https://gbzeottvsc01.tvplus.com.tr:33207/CPS/images/universal/film/program/202412/20241209/75/2126356342795eb88428_0_XL.jpg", - "isnpvr": "1", - "introduce": "Büyük bir kayak kazası Crusher ve Pickle'ın çok uzaklarda mahsur kalmasına neden olduğunda Blaze ve AJ tehlikeli bir kurtarma görevine çıkar.", - "programType": "episode", - "channelid": "4353", - "broadcastType": "Banttan", - "seasonInfo": "6. Sezon - 619. Bölüm" - }, - { - "id": "195142846", - "name": "Minik Şef'in Yemek Programı", - "starttime": "2024-12-15 17:45:00 UTC+03:00", - "endtime": "2024-12-15 18:10:00 UTC+03:00", - "genres": "Çocuk", - "advisory": [], - "ratingid": "0", - "picture": "https://gbzeottvsc01.tvplus.com.tr:33207/CPS/images/universal/film/program/202412/20241209/81/2126356342825eb88428_0_XL.jpg", - "isnpvr": "1", - "introduce": "Morton'un yol atıştırmalığı düşünce Şef ve Olly ona yolculuğu için en iyi atıştırmalığı yapmak üzerine yarışır. İlk aşçılık deneyimi için çok hevesli olan biri, Şef ve Olly'ye nachos yapımında yardım eder.", - "programType": "episode", - "channelid": "4353", - "broadcastType": "Banttan", - "seasonInfo": "2. Sezon - 205. Bölüm" - }, - { - "id": "195142852", - "name": "Baby Shark's Big Show!", - "starttime": "2024-12-15 18:10:00 UTC+03:00", - "endtime": "2024-12-15 18:30:00 UTC+03:00", - "genres": "Çocuk", - "advisory": [], - "ratingid": "0", - "picture": "https://gbzeottvsc01.tvplus.com.tr:33207/CPS/images/universal/film/program/202412/20241209/28/2126356352855eb88428_0_XL.jpg", - "isnpvr": "1", - "introduce": "Bebek Köpekbalığı, aile müzik grubunda çalması için annesinin mükemmel müzik aletini bulmasına yardım ediyor. Baba, Büyükbaba ve Bebek ChewTube'da komik bir videosunu yayınladıktan sonra utanır.", - "programType": "episode", - "channelid": "4353", - "broadcastType": "Banttan", - "seasonInfo": "2. Sezon - 210. Bölüm" - }, - { - "id": "195142858", - "name": "Camgöz (2020)", - "starttime": "2024-12-15 18:30:00 UTC+03:00", - "endtime": "2024-12-15 18:40:00 UTC+03:00", - "genres": "Çocuk", - "advisory": [], - "ratingid": "0", - "picture": "https://gbzeottvsc01.tvplus.com.tr:33207/CPS/images/universal/film/program/202412/20241209/99/2126356352885eb88428_0_XL.jpg", - "isnpvr": "1", - "introduce": "Max'in Camgöz adında yarı köpek balığı yarı köpek eşsiz bir evcil havyanı vardır. İlk başlarda Camgöz'ü saklamaya çalışsa da Sisli Pınarlar'da, en iyi arkadaşlar, meraklı komşular ve hatta Max'in ailesi bile yaramaz yeni arkadaşını fark edecektir.", - "programType": "episode", - "channelid": "4353", - "broadcastType": "Banttan", - "seasonInfo": "1. Sezon - 102. Bölüm" - }, - { - "id": "195142864", - "name": "Camgöz (2020)", - "starttime": "2024-12-15 18:40:00 UTC+03:00", - "endtime": "2024-12-15 18:45:00 UTC+03:00", - "genres": "Çocuk", - "advisory": [], - "ratingid": "0", - "picture": "https://gbzeottvsc01.tvplus.com.tr:33207/CPS/images/universal/film/program/202412/20241209/76/2126356352915eb88428_0_XL.jpg", - "isnpvr": "1", - "introduce": "Max'in Camgöz adında yarı köpek balığı yarı köpek eşsiz bir evcil havyanı vardır. İlk başlarda Camgöz'ü saklamaya çalışsa da Sisli Pınarlar'da, en iyi arkadaşlar, meraklı komşular ve hatta Max'in ailesi bile yaramaz yeni arkadaşını fark edecektir.", - "programType": "episode", - "channelid": "4353", - "broadcastType": "Banttan", - "seasonInfo": "1. Sezon - 103. Bölüm" - }, - { - "id": "195142870", - "name": "Camgöz (2020)", - "starttime": "2024-12-15 18:45:00 UTC+03:00", - "endtime": "2024-12-15 18:50:00 UTC+03:00", - "genres": "Çocuk", - "advisory": [], - "ratingid": "0", - "picture": "https://gbzeottvsc01.tvplus.com.tr:33207/CPS/images/universal/film/program/202412/20241209/59/2126356352945eb88428_0_XL.jpg", - "isnpvr": "1", - "introduce": "Max'in Camgöz adında yarı köpek balığı yarı köpek eşsiz bir evcil havyanı vardır. İlk başlarda Camgöz'ü saklamaya çalışsa da Sisli Pınarlar'da, en iyi arkadaşlar, meraklı komşular ve hatta Max'in ailesi bile yaramaz yeni arkadaşını fark edecektir.", - "programType": "episode", - "channelid": "4353", - "broadcastType": "Banttan", - "seasonInfo": "1. Sezon - 104. Bölüm" - }, - { - "id": "195142876", - "name": "Camgöz (2020)", - "starttime": "2024-12-15 18:50:00 UTC+03:00", - "endtime": "2024-12-15 19:00:00 UTC+03:00", - "genres": "Çocuk", - "advisory": [], - "ratingid": "0", - "picture": "https://gbzeottvsc01.tvplus.com.tr:33207/CPS/images/universal/film/program/202412/20241209/96/2126356352975eb88428_0_XL.jpg", - "isnpvr": "1", - "introduce": "Max'in babası Yılın Bahçesi ödülünü almayı çok ister ama Camgöz değerlendirmeden kısa bir süre önce bahçeyi mahvedince Köpek Balığı Sürüsü devreye girip her şeyi düzeltmesi gerekecektir.", - "programType": "episode", - "channelid": "4353", - "broadcastType": "Banttan", - "seasonInfo": "1. Sezon - 105. Bölüm" - }, - { - "id": "195142882", - "name": "Paw Patrol", - "starttime": "2024-12-15 19:00:00 UTC+03:00", - "endtime": "2024-12-15 19:20:00 UTC+03:00", - "genres": "Çocuk", - "advisory": [], - "ratingid": "0", - "picture": "https://gbzeottvsc01.tvplus.com.tr:33207/CPS/images/universal/film/program/202412/20241209/77/2126356353005eb88428_0_XL.jpg", - "isnpvr": "1", - "introduce": "Yavru bir geyik bir dağın yamacından aşağı hızla yuvarlanır. Yavruyu kurtarmak ve ailesine kavuşturmak Paw Patrol'a düşer. Luke Stars dev bir yuvarlanan otun içinde havaya uçtuğunda, Digi ve Tal kontrolden çıkan bir kopya yaparlar.", - "programType": "episode", - "channelid": "4353", - "broadcastType": "Banttan", - "seasonInfo": "10. Sezon - 1015. Bölüm" - }, - { - "id": "195142888", - "name": "Köpecik Pit Ekibi", - "starttime": "2024-12-15 19:20:00 UTC+03:00", - "endtime": "2024-12-15 19:30:00 UTC+03:00", - "genres": "Çocuk", - "advisory": [], - "ratingid": "0", - "picture": "https://gbzeottvsc01.tvplus.com.tr:33207/CPS/images/universal/film/program/202412/20241209/67/2126356353035eb88428_0_XL.jpg", - "isnpvr": "1", - "introduce": "PAW Patrol okul öncesi programı ve altı tane köpekçik baş rolü paylaşıyor: Chase, Marshall, Rocky, Zuma, Rubble ve Skye, başlarında da teknoloji meraklısı 10 yaşında bir çocuk olan Ryder var.", - "programType": "episode", - "channelid": "4353", - "broadcastType": "Banttan", - "seasonInfo": "4. Sezon - 414. Bölüm" - }, - { - "id": "195142894", - "name": "Rubble ve Ekibi", - "starttime": "2024-12-15 19:30:00 UTC+03:00", - "endtime": "2024-12-15 20:00:00 UTC+03:00", - "genres": "Çocuk", - "advisory": [], - "ratingid": "0", - "picture": "https://gbzeottvsc01.tvplus.com.tr:33207/CPS/images/universal/film/program/202412/20241209/32/2126356353065eb88428_0_XL.jpg", - "isnpvr": "1", - "introduce": "Rubble ve Ekibi, Çiftçi Zoe'nin yeni ineği Mooreen'i karşılamak için İnşaatçı Koyu'ndaki ilk tren istasyonunu inşa ediyor. Popstar Parıltılı Sierra Koy'a taşınıyor! Yavrular sürpriz bir karşılama planlayınca, Hız Ustası kendi planını yapar.", - "programType": "episode", - "channelid": "4353", - "broadcastType": "Banttan", - "seasonInfo": "2. Sezon - 202. Bölüm" - }, - { - "id": "195142900", - "name": "Kaşif Dora", - "starttime": "2024-12-15 20:00:00 UTC+03:00", - "endtime": "2024-12-15 20:20:00 UTC+03:00", - "genres": "Çocuk", - "advisory": [], - "ratingid": "0", - "picture": "https://gbzeottvsc01.tvplus.com.tr:33207/CPS/images/universal/film/program/202412/20241209/72/2126356363095eb88428_0_XL.jpg", - "isnpvr": "1", - "introduce": "Sürüngenler Kraliçesi Isa'yı ziyaret ediyor ama bahçe darmadağın! Dora, ziyaret için her şeyi zamanında hazırlamasına yardım eder. Dora, özel bir sürpriz göstermek için Kampa zamanında gitmesi gereken Sammy ile tanışır.", - "programType": "episode", - "channelid": "4353", - "broadcastType": "Banttan", - "seasonInfo": "2. Sezon - 203. Bölüm" - }, - { - "id": "195142906", - "name": "BARBAPAPA Ailesi", - "starttime": "2024-12-15 20:20:00 UTC+03:00", - "endtime": "2024-12-15 20:40:00 UTC+03:00", - "genres": "Çocuk", - "advisory": [], - "ratingid": "0", - "picture": "https://gbzeottvsc01.tvplus.com.tr:33207/CPS/images/universal/film/program/202412/20241209/88/2126356363125eb88428_0_XL.jpg", - "isnpvr": "1", - "introduce": "Barbasaf yardıma hazır! Ama Barbazeki ve Barbasüslü, bu kibarlığı suistimal edip Barbasaf'ı çıldırtıyorlar! Barbasaf, Barbapapa'yı taklit edebildiğini fark eder. Bu fırsatı değerlendirip kardeşlerine ev işleri yaptırır.", - "programType": "episode", - "channelid": "4353", - "broadcastType": "Banttan", - "seasonInfo": "1. Sezon - 124. Bölüm" - }, - { - "id": "195142912", - "name": "Hamster Diyarı", - "starttime": "2024-12-15 20:40:00 UTC+03:00", - "endtime": "2024-12-15 21:00:00 UTC+03:00", - "genres": "Çocuk", - "advisory": [], - "ratingid": "0", - "picture": "https://gbzeottvsc01.tvplus.com.tr:33207/CPS/images/universal/film/program/202412/20241209/43/2126356363155eb88428_0_XL.jpg", - "isnpvr": "1", - "introduce": "Aile dışarıda kaldığında, Popcorn hamsterları onları kurtarmak için bir göreve götürür. Lil Pal, Flea Beast'in havlamasını taklit edebildiğini keşfeder ama bunun neden olduğu tehlikenin farkında değildir.", - "programType": "episode", - "channelid": "4353", - "broadcastType": "Banttan", - "seasonInfo": "1. Sezon - 104. Bölüm" - }, - { - "id": "195142918", - "name": "Blaze ve Yol Canavarları", - "starttime": "2024-12-15 21:00:00 UTC+03:00", - "endtime": "2024-12-15 21:25:00 UTC+03:00", - "genres": "Çocuk", - "advisory": [], - "ratingid": "0", - "picture": "https://gbzeottvsc01.tvplus.com.tr:33207/CPS/images/universal/film/program/202412/20241209/46/2126356363185eb88428_0_XL.jpg", - "isnpvr": "1", - "introduce": "Çizgili orman kornasına bayılıyor. Bu korna ormandaki bütün hayvanları çağırabilen özel bir korna. Ama bunu kıskanan Ezici kornayı çalınca Blaze ve Çizgili kornayı geri almak için ormanda Ezici'nin peşine düşer.", - "programType": "episode", - "channelid": "4353", - "broadcastType": "Banttan", - "seasonInfo": "1. Sezon - 109. Bölüm" - }, - { - "id": "195142924", - "name": "Blaze ve Yol Canavarları", - "starttime": "2024-12-15 21:25:00 UTC+03:00", - "endtime": "2024-12-15 21:45:00 UTC+03:00", - "genres": "Çocuk", - "advisory": [], - "ratingid": "0", - "picture": "https://gbzeottvsc01.tvplus.com.tr:33207/CPS/images/universal/film/program/202412/20241209/97/2126356363215eb88428_0_XL.jpg", - "isnpvr": "1", - "introduce": "Turşu bütün Aks Şehri için bir sihir gösterisi hazırlıyor! Ama Ezici yanlışlıkla sihirli bir hata yapınca durumu tamir edip arkadaşlarını kurtarmak da Blaze ve Turşu'ya kalıyor! Abra Turşu kadabra!", - "programType": "episode", - "channelid": "4353", - "broadcastType": "Banttan", - "seasonInfo": "5. Sezon - 505. Bölüm" - }, - { - "id": "195142930", - "name": "Paw Patrol", - "starttime": "2024-12-15 21:45:00 UTC+03:00", - "endtime": "2024-12-15 22:10:00 UTC+03:00", - "genres": "Çocuk", - "advisory": [], - "ratingid": "0", - "picture": "https://gbzeottvsc01.tvplus.com.tr:33207/CPS/images/universal/film/program/202412/20241209/68/2126356363245eb88428_0_XL.jpg", - "isnpvr": "1", - "introduce": "Rocky ve Köpekçikler Ace Sorensen'in doğum günü için eski hurda bir arabayı tamir ediyorlar. Macera Koyu dünyanın en yüksek pizza kulesi rekoru için sıkı çalışıyor.", - "programType": "episode", - "channelid": "4353", - "broadcastType": "Banttan", - "seasonInfo": "5. Sezon - 526. Bölüm" - }, - { - "id": "195142936", - "name": "Paw Patrol", - "starttime": "2024-12-15 22:10:00 UTC+03:00", - "endtime": "2024-12-15 22:30:00 UTC+03:00", - "genres": "Çocuk", - "advisory": [], - "ratingid": "0", - "picture": "https://gbzeottvsc01.tvplus.com.tr:33207/CPS/images/universal/film/program/202412/20241209/68/2126356363275eb88428_0_XL.jpg", - "isnpvr": "1", - "introduce": "Üç penguen taşıyan bir buz kütlesi yağmur ormanına gelir. Köpekçiklerin penguenleri soğuk evlerine geri götürmeleri gerekecek// Turbot, deniz fenerini Cesur Danny'ye emanet eder ve Danny kapıda kalır. Hem de Fok Adasına bir yük gemisi yaklaşmaktayken", - "programType": "episode", - "channelid": "4353", - "broadcastType": "Banttan", - "seasonInfo": "6. Sezon - 601. Bölüm" - }, - { - "id": "195142942", - "name": "Köpecik Pit Ekibi", - "starttime": "2024-12-15 22:30:00 UTC+03:00", - "endtime": "2024-12-15 22:40:00 UTC+03:00", - "genres": "Çocuk", - "advisory": [], - "ratingid": "0", - "picture": "https://gbzeottvsc01.tvplus.com.tr:33207/CPS/images/universal/film/program/202412/20241209/1/2126356373305eb88428_0_XL.jpg", - "isnpvr": "1", - "introduce": "PAW Patrol okul öncesi programı ve altı tane köpekçik baş rolü paylaşıyor: Chase, Marshall, Rocky, Zuma, Rubble ve Skye, başlarında da teknoloji meraklısı 10 yaşında bir çocuk olan Ryder var.", - "programType": "episode", - "channelid": "4353", - "broadcastType": "Banttan", - "seasonInfo": "1. Sezon - 105. Bölüm" - }, - { - "id": "195142948", - "name": "Rubble ve Ekibi", - "starttime": "2024-12-15 22:40:00 UTC+03:00", - "endtime": "2024-12-15 23:05:00 UTC+03:00", - "genres": "Çocuk", - "advisory": [], - "ratingid": "0", - "picture": "https://gbzeottvsc01.tvplus.com.tr:33207/CPS/images/universal/film/program/202412/20241209/18/2126356373335eb88428_0_XL.jpg", - "isnpvr": "1", - "introduce": "İnşaatçı Koyu'nda okulun ilk günü... tabii Moloz ve Ekibi inşaatı zamanında bitirebilirse! Çiftçi Zoe'nin mahsullerini kurtarmak ve kunduz Crunchy'nin tüm suyu almasını engellemek için yavruların bir inşaat çözümüne ihtiyacı var!", - "programType": "episode", - "channelid": "4353", - "broadcastType": "Banttan", - "seasonInfo": "1. Sezon - 115. Bölüm" - }, - { - "id": "195142954", - "name": "Rubble ve Ekibi", - "starttime": "2024-12-15 23:05:00 UTC+03:00", - "endtime": "2024-12-15 23:30:00 UTC+03:00", - "genres": "Çocuk", - "advisory": [], - "ratingid": "0", - "picture": "https://gbzeottvsc01.tvplus.com.tr:33207/CPS/images/universal/film/program/202412/20241209/62/2126356373365eb88428_0_XL.jpg", - "isnpvr": "1", - "introduce": "Yavrular, River'ın kayan yıldızın harika bir fotoğrafını çekmesine yardımcı olmak için bir gözlemevi inşa etmeye başlıyor. Park Korucusu Rose ile tanıştıktan sonra yavrular doğa parkurunda mahsur kalır. Ama Rubble ve Ekibi, çözümü bulur.", - "programType": "episode", - "channelid": "4353", - "broadcastType": "Banttan", - "seasonInfo": "1. Sezon - 117. Bölüm" - }, - { - "id": "195142960", - "name": "Kaşif Dora", - "starttime": "2024-12-15 23:30:00 UTC+03:00", - "endtime": "2024-12-15 23:40:00 UTC+03:00", - "genres": "Çocuk", - "advisory": [], - "ratingid": "0", - "picture": "https://gbzeottvsc01.tvplus.com.tr:33207/CPS/images/universal/film/program/202412/20241209/41/2126356373395eb88428_0_XL.jpg", - "isnpvr": "1", - "introduce": "DORA büyülü yağmur ormanlarında daha fazla fantastik macera için geri döndü! Dünyanın en olağanüstü küçük kaşifi ve en iyi arkadaşı Boots'a yeni eğlence ve yeni arkadaşlar keşfederken katılın; sınır gökyüzü! Haydi!", - "programType": "episode", - "channelid": "4353", - "broadcastType": "Banttan", - "seasonInfo": "2. Sezon - 211. Bölüm" - }, - { - "id": "195142966", - "name": "Kaşif Dora", - "starttime": "2024-12-15 23:40:00 UTC+03:00", - "endtime": "2024-12-15 23:50:00 UTC+03:00", - "genres": "Çocuk", - "advisory": [], - "ratingid": "0", - "picture": "https://gbzeottvsc01.tvplus.com.tr:33207/CPS/images/universal/film/program/202412/20241209/54/2126356373425eb88428_0_XL.jpg", - "isnpvr": "1", - "introduce": "DORA büyülü yağmur ormanlarında daha fazla fantastik macera için geri döndü! Dünyanın en olağanüstü küçük kaşifi ve en iyi arkadaşı Boots'a yeni eğlence ve yeni arkadaşlar keşfederken katılın; sınır gökyüzü! Haydi!", - "programType": "episode", - "channelid": "4353", - "broadcastType": "Banttan", - "seasonInfo": "2. Sezon - 211. Bölüm" - }, - { - "id": "195142972", - "name": "Baby Shark's Big Show!", - "starttime": "2024-12-15 23:50:00 UTC+03:00", - "endtime": "2024-12-16 00:10:00 UTC+03:00", - "genres": "Çocuk", - "advisory": [], - "ratingid": "0", - "picture": "https://gbzeottvsc01.tvplus.com.tr:33207/CPS/images/universal/film/program/202412/20241209/67/2126356373455eb88428_0_XL.jpg", - "isnpvr": "1", - "introduce": "Baby Shark, ailesi ve arkadaşlarının tuzlu aptallıklarına dalın.", - "programType": "episode", - "channelid": "4353", - "broadcastType": "Banttan", - "seasonInfo": "2. Sezon - 223. Bölüm" - } - ], - [ - { - "id": "195209831", - "name": "Camgöz (2020)", - "starttime": "2024-12-16 00:10:00 UTC+03:00", - "endtime": "2024-12-16 00:20:00 UTC+03:00", - "genres": "Çocuk", - "advisory": [], - "ratingid": "0", - "picture": "https://gbzeottvsc01.tvplus.com.tr:33207/CPS/images/universal/film/program/202412/20241210/70/2126379608855eb7f426_0_XL.jpg", - "isnpvr": "1", - "introduce": "Max'in Camgöz adında yarı köpek balığı yarı köpek eşsiz bir evcil havyanı vardır. İlk başlarda Camgöz'ü saklamaya çalışsa da Sisli Pınarlar'da, en iyi arkadaşlar, meraklı komşular ve hatta Max'in ailesi bile yaramaz yeni arkadaşını fark edecektir.", - "programType": "episode", - "channelid": "4353", - "broadcastType": "Banttan", - "seasonInfo": "1. Sezon - 119. Bölüm" - }, - { - "id": "195212269", - "name": "Camgöz (2020)", - "starttime": "2024-12-16 00:20:00 UTC+03:00", - "endtime": "2024-12-16 00:25:00 UTC+03:00", - "genres": "Çocuk", - "advisory": [], - "ratingid": "0", - "picture": "https://gbzeottvsc01.tvplus.com.tr:33207/CPS/images/universal/film/program/202412/20241210/14/2126379608885eb7f426_0_XL.jpg", - "isnpvr": "1", - "introduce": "Max'in Camgöz adında yarı köpek balığı yarı köpek eşsiz bir evcil havyanı vardır. İlk başlarda Camgöz'ü saklamaya çalışsa da Sisli Pınarlar'da, en iyi arkadaşlar, meraklı komşular ve hatta Max'in ailesi bile yaramaz yeni arkadaşını fark edecektir.", - "programType": "episode", - "channelid": "4353", - "broadcastType": "Banttan", - "seasonInfo": "1. Sezon - 120. Bölüm" - }, - { - "id": "195212275", - "name": "Camgöz (2020)", - "starttime": "2024-12-16 00:25:00 UTC+03:00", - "endtime": "2024-12-16 00:35:00 UTC+03:00", - "genres": "Çocuk", - "advisory": [], - "ratingid": "0", - "picture": "https://gbzeottvsc01.tvplus.com.tr:33207/CPS/images/universal/film/program/202412/20241210/73/2126379618915eb7f426_0_XL.jpg", - "isnpvr": "1", - "introduce": "Max'in yarı köpekbalığı yarı köpek olan Camgöz adlı sıra dışı bir evcil hayvanı vardır. Max önce Camgöz'ü sır olarak saklamaya çalışsa da Foggy Springs'teki dostları, meraklı komşuları ve ailesi onun yeni, yaramaz dostunu er ya da geç fark edecektir.", - "programType": "episode", - "channelid": "4353", - "broadcastType": "Banttan", - "seasonInfo": "2. Sezon - 201. Bölüm" - }, - { - "id": "195212281", - "name": "Peppa Pig", - "starttime": "2024-12-16 00:35:00 UTC+03:00", - "endtime": "2024-12-16 00:40:00 UTC+03:00", - "genres": "Çocuk", - "advisory": [], - "ratingid": "0", - "picture": "https://gbzeottvsc01.tvplus.com.tr:33207/CPS/images/universal/film/program/202412/20241210/25/2126379618945eb7f426_0_XL.jpg", - "isnpvr": "1", - "introduce": "Peppa ve George Büyükanne ve Büyükbaba Domuz'a öğle yemeğine giderler. Büyükanne Domuz salata yapar ama George yeşillik yemeyi sevmediği için Büyükanne Domuz, salataya dinozor şekli verir.", - "programType": "episode", - "channelid": "4353", - "broadcastType": "Banttan", - "seasonInfo": "1. Sezon - 134. Bölüm" - }, - { - "id": "195212287", - "name": "Peppa Pig", - "starttime": "2024-12-16 00:40:00 UTC+03:00", - "endtime": "2024-12-16 00:45:00 UTC+03:00", - "genres": "Çocuk", - "advisory": [], - "ratingid": "0", - "picture": "https://gbzeottvsc01.tvplus.com.tr:33207/CPS/images/universal/film/program/202412/20241210/83/2126379618975eb7f426_0_XL.jpg", - "isnpvr": "1", - "introduce": "Peppa ve ailesi kampa gider ama Baba Domuz çadıra sığamayacak kadar büyüktür. Baba Domuz açık havada yatmaktan memnundur, ta ki yağmur başlayana dek.", - "programType": "episode", - "channelid": "4353", - "broadcastType": "Banttan", - "seasonInfo": "1. Sezon - 135. Bölüm" - }, - { - "id": "195212293", - "name": "Peppa Pig", - "starttime": "2024-12-16 00:45:00 UTC+03:00", - "endtime": "2024-12-16 00:50:00 UTC+03:00", - "genres": "Çocuk", - "advisory": [], - "ratingid": "0", - "picture": "https://gbzeottvsc01.tvplus.com.tr:33207/CPS/images/universal/film/program/202412/20241210/30/2126379619005eb7f426_0_XL.jpg", - "isnpvr": "1", - "introduce": "Baba Domuz, George'a uyumaya ihtiyacı olan bir prenses masalı anlatır. Masalda Peppa bir prenses, George bir prens, Anne Domuz bir kraliçe, Baba Domuz ise bir kral olmuştur.", - "programType": "episode", - "channelid": "4353", - "broadcastType": "Banttan", - "seasonInfo": "1. Sezon - 136. Bölüm" - }, - { - "id": "195212299", - "name": "Peppa Pig", - "starttime": "2024-12-16 00:50:00 UTC+03:00", - "endtime": "2024-12-16 00:55:00 UTC+03:00", - "genres": "Çocuk", - "advisory": [], - "ratingid": "0", - "picture": "https://gbzeottvsc01.tvplus.com.tr:33207/CPS/images/universal/film/program/202412/20241210/96/2126379619035eb7f426_0_XL.jpg", - "isnpvr": "1", - "introduce": "Peppa, annesi, babası ve abisi George'la yaşayan küçük bir domuzdur. Peppa oyun oynamayı, şık giyinmeyi, uzun seyahatleri ve çamurda zıplamayı sever.", - "programType": "episode", - "channelid": "4353", - "broadcastType": "Banttan", - "seasonInfo": "1. Sezon - 137. Bölüm" - }, - { - "id": "195212305", - "name": "Minik Şef'in Yemek Programı", - "starttime": "2024-12-16 00:55:00 UTC+03:00", - "endtime": "2024-12-16 01:15:00 UTC+03:00", - "genres": "Çocuk", - "advisory": [], - "ratingid": "0", - "picture": "https://gbzeottvsc01.tvplus.com.tr:33207/CPS/images/universal/film/program/202412/20241210/86/2126379619065eb7f426_0_XL.jpg", - "isnpvr": "1", - "introduce": "Stump'a bilinmeyen bir meyve teslim edildiğinde, Dedektif Şef ve Olly pişirmeden önce bunun ne olduğunun gizemini çözmek zorundadır. Çetenin hapşırıkları tuttuğunda, matzo topu çorbasını tam bir tarif olmadan bitirmek Olly'ye kalır.", - "programType": "episode", - "channelid": "4353", - "broadcastType": "Banttan", - "seasonInfo": "2. Sezon - 203. Bölüm" - }, - { - "id": "195212311", - "name": "Barbapapa Ailesi", - "starttime": "2024-12-16 01:15:00 UTC+03:00", - "endtime": "2024-12-16 01:40:00 UTC+03:00", - "genres": "Çocuk", - "advisory": [], - "ratingid": "0", - "picture": "https://gbzeottvsc01.tvplus.com.tr:33207/CPS/images/universal/film/program/202412/20241210/57/2126379619095eb7f426_0_XL.jpg", - "isnpvr": "1", - "introduce": "Barbabebekler uyku zamanı hikayelerine bayılıyor, tabii hep aynı hikayeler olması dışında... Barbasüslü tüm böcekler yüzünden huzursuz bir gece geçirdi!", - "programType": "episode", - "channelid": "4353", - "broadcastType": "Banttan", - "seasonInfo": "2. Sezon - 209. Bölüm" - }, - { - "id": "195212317", - "name": "Barbapapa Ailesi", - "starttime": "2024-12-16 01:40:00 UTC+03:00", - "endtime": "2024-12-16 02:00:00 UTC+03:00", - "genres": "Çocuk", - "advisory": [], - "ratingid": "0", - "picture": "https://gbzeottvsc01.tvplus.com.tr:33207/CPS/images/universal/film/program/202412/20241210/7/2126379619125eb7f426_0_XL.jpg", - "isnpvr": "1", - "introduce": "En popüler ailenin dünya ekranlarına göz kamaştırıcı dönüşü! BARBAPAPA. Büyük mutlu bir aile! Barbapapalar için rutin diye bir şey yoktur: her gün sürprizlerle dolu neşeli bir maceradır!", - "programType": "episode", - "channelid": "4353", - "broadcastType": "Banttan", - "seasonInfo": "2. Sezon - 210. Bölüm" - }, - { - "id": "195212323", - "name": "Blaze ve Yol Canavarları", - "starttime": "2024-12-16 02:00:00 UTC+03:00", - "endtime": "2024-12-16 02:25:00 UTC+03:00", - "genres": "Çocuk", - "advisory": [], - "ratingid": "0", - "picture": "https://gbzeottvsc01.tvplus.com.tr:33207/CPS/images/universal/film/program/202412/20241210/56/2126379619155eb7f426_0_XL.jpg", - "isnpvr": "1", - "introduce": "Blaze ve Yol Canavarları, dünyanın en büyük canavar kamyonu Blaze ve en iyi arkadaşı ve sürücüsü AJ adında bir çocuk hakkındaki interaktif bir anaokulu animasyon dizisidir.", - "programType": "episode", - "channelid": "4353", - "broadcastType": "Banttan", - "seasonInfo": "6. Sezon - 620. Bölüm" - }, - { - "id": "195212329", - "name": "Blaze ve Yol Canavarları", - "starttime": "2024-12-16 02:25:00 UTC+03:00", - "endtime": "2024-12-16 02:50:00 UTC+03:00", - "genres": "Çocuk", - "advisory": [], - "ratingid": "0", - "picture": "https://gbzeottvsc01.tvplus.com.tr:33207/CPS/images/universal/film/program/202412/20241210/43/2126379629185eb7f426_0_XL.jpg", - "isnpvr": "1", - "introduce": "İlk Blaze Müzikali'nde Blaze, AJ, Crusher ve Pickle, Broken Key'in parçalarını bulmak ve gizli bir hazinenin kilidini açmak için cesur bir arayış içindeler.", - "programType": "episode", - "channelid": "4353", - "broadcastType": "Banttan", - "seasonInfo": "6. Sezon - 621. Bölüm" - }, - { - "id": "195212335", - "name": "Paw Patrol", - "starttime": "2024-12-16 02:50:00 UTC+03:00", - "endtime": "2024-12-16 03:10:00 UTC+03:00", - "genres": "Çocuk", - "advisory": [], - "ratingid": "0", - "picture": "https://gbzeottvsc01.tvplus.com.tr:33207/CPS/images/universal/film/program/202412/20241210/72/2126379629215eb7f426_0_XL.jpg", - "isnpvr": "1", - "introduce": "Turbotlar derin dalıştayken dalış çanları bir yere sıkışır kalır! Paw Patrol günü kurtarmaya! Bir fırtına kunduzun barajını yıkınca, kunduz Çiftçi Yumi'nin bütün odunlarını keser! Paw Patrol yetişir ve evini tekrar inşa etmesine yardım eder.", - "programType": "episode", - "channelid": "4353", - "broadcastType": "Banttan", - "seasonInfo": "2. Sezon - 204. Bölüm" - }, - { - "id": "195212341", - "name": "Paw Patrol", - "starttime": "2024-12-16 03:10:00 UTC+03:00", - "endtime": "2024-12-16 03:30:00 UTC+03:00", - "genres": "Çocuk", - "advisory": [], - "ratingid": "0", - "picture": "https://gbzeottvsc01.tvplus.com.tr:33207/CPS/images/universal/film/program/202412/20241210/81/2126379629245eb7f426_0_XL.jpg", - "isnpvr": "1", - "introduce": "Gizemli bir hayalet Lookout'ta ortalığı birbirine katar ama köpekçikler bunun bir hayalet değil uyur gezer Marshall olduğunu fark eder. Büyük gösteriden önce bir sahne parçası yıkılır ve Kaptan Turbot'u mahsur bırakır. Köpekçikler günü kurtarmaya!", - "programType": "episode", - "channelid": "4353", - "broadcastType": "Banttan", - "seasonInfo": "2. Sezon - 205. Bölüm" - }, - { - "id": "195212347", - "name": "Baby Shark's Big Show", - "starttime": "2024-12-16 03:30:00 UTC+03:00", - "endtime": "2024-12-16 03:55:00 UTC+03:00", - "genres": "Çocuk", - "advisory": [], - "ratingid": "0", - "picture": "https://gbzeottvsc01.tvplus.com.tr:33207/CPS/images/universal/film/program/202412/20241210/45/2126379629275eb7f426_0_XL.jpg", - "isnpvr": "1", - "introduce": "Bencil bir balık mini golfü ele geçirince Baby Shark ve William onu yenecek şampiyon bir mini golf oyuncusu bulmalıdır. Hank evcil kayası Rocky'nin yardımı olmadan korkularının üstesinden gelmeye çalışır.", - "programType": "episode", - "channelid": "4353", - "broadcastType": "Banttan", - "seasonInfo": "1. Sezon - 112. Bölüm" - }, - { - "id": "195212353", - "name": "BARBAPAPA Ailesi", - "starttime": "2024-12-16 03:55:00 UTC+03:00", - "endtime": "2024-12-16 04:15:00 UTC+03:00", - "genres": "Çocuk", - "advisory": [], - "ratingid": "0", - "picture": "https://gbzeottvsc01.tvplus.com.tr:33207/CPS/images/universal/film/program/202412/20241210/71/2126379629305eb7f426_0_XL.jpg", - "isnpvr": "1", - "introduce": "Barbataşkın hıçkırığı geçmediği için resim yapamaz. Tam vazgeçmek üzereyken, yanlışlıkla yeni bir sanat hareketi başlatır. Barbalçalışkan bir yazı yarışmasına katılmak ister ama erkek ve kız kardeşleri onun konsantre olmasını engeller.", - "programType": "episode", - "channelid": "4353", - "broadcastType": "Banttan", - "seasonInfo": "1. Sezon - 116. Bölüm" - }, - { - "id": "195212359", - "name": "Ayı Paddington'un Maceraları", - "starttime": "2024-12-16 04:15:00 UTC+03:00", - "endtime": "2024-12-16 04:40:00 UTC+03:00", - "genres": "Çocuk", - "advisory": [], - "ratingid": "0", - "picture": "https://gbzeottvsc01.tvplus.com.tr:33207/CPS/images/universal/film/program/202412/20241210/55/2126379629335eb7f426_0_XL.jpg", - "isnpvr": "1", - "introduce": "Brown'lar tatil için sahile giderler ve vardıklarında deniz feneri bekçisi Shantee ile tanışırlar. Paddington, Jonathan ve Judy stajyer cankurtaran olurlar ve cankurtaran Taylor'ın yardımıyla Bay Brown'ı kurtarırlar.", - "programType": "episode", - "channelid": "4353", - "broadcastType": "Banttan", - "seasonInfo": "3. Sezon - 307. Bölüm" - }, - { - "id": "195212365", - "name": "Rubble ve Ekibi", - "starttime": "2024-12-16 04:40:00 UTC+03:00", - "endtime": "2024-12-16 05:00:00 UTC+03:00", - "genres": "Çocuk", - "advisory": [], - "ratingid": "0", - "picture": "https://gbzeottvsc01.tvplus.com.tr:33207/CPS/images/universal/film/program/202412/20241210/15/2126379639365eb7f426_0_XL.jpg", - "isnpvr": "1", - "introduce": "Kafe Carl bir smoothie dükkânı açıyor! Ancak bardak altlığı hindistan cevizi kaosuna neden olduğunda, Rubble ve Ekibi işlerini bilir. Rubble ve Ekibi, Charger'ın zıplayan doğum günü sürprizinin kaldırılması gerektiğinde çözüm bulmak için çalışır!", - "programType": "episode", - "channelid": "4353", - "broadcastType": "Banttan", - "seasonInfo": "2. Sezon - 208. Bölüm" - }, - { - "id": "195212371", - "name": "Kaşif Dora", - "starttime": "2024-12-16 05:00:00 UTC+03:00", - "endtime": "2024-12-16 05:10:00 UTC+03:00", - "genres": "Çocuk", - "advisory": [], - "ratingid": "0", - "picture": "https://gbzeottvsc01.tvplus.com.tr:33207/CPS/images/universal/film/program/202412/20241210/84/2126379639395eb7f426_0_XL.jpg", - "isnpvr": "1", - "introduce": "DORA büyülü yağmur ormanlarında daha fazla fantastik macera için geri döndü! Dünyanın en olağanüstü küçük kaşifi ve en iyi arkadaşı Boots'a yeni eğlence ve yeni arkadaşlar keşfederken katılın; sınır gökyüzü! Haydi!", - "programType": "episode", - "channelid": "4353", - "broadcastType": "Banttan", - "seasonInfo": "2. Sezon - 211. Bölüm" - }, - { - "id": "195212377", - "name": "Kaşif Dora", - "starttime": "2024-12-16 05:10:00 UTC+03:00", - "endtime": "2024-12-16 05:25:00 UTC+03:00", - "genres": "Çocuk", - "advisory": [], - "ratingid": "0", - "picture": "https://gbzeottvsc01.tvplus.com.tr:33207/CPS/images/universal/film/program/202412/20241210/9/2126379639425eb7f426_0_XL.jpg", - "isnpvr": "1", - "introduce": "DORA büyülü yağmur ormanlarında daha fazla fantastik macera için geri döndü! Dünyanın en olağanüstü küçük kaşifi ve en iyi arkadaşı Boots'a yeni eğlence ve yeni arkadaşlar keşfederken katılın; sınır gökyüzü! Haydi!", - "programType": "episode", - "channelid": "4353", - "broadcastType": "Banttan", - "seasonInfo": "2. Sezon - 211. Bölüm" - }, - { - "id": "195212383", - "name": "Blaze ve Yol Canavarları", - "starttime": "2024-12-16 05:25:00 UTC+03:00", - "endtime": "2024-12-16 05:45:00 UTC+03:00", - "genres": "Çocuk", - "advisory": [], - "ratingid": "0", - "picture": "https://gbzeottvsc01.tvplus.com.tr:33207/CPS/images/universal/film/program/202412/20241210/82/2126379639455eb7f426_0_XL.jpg", - "isnpvr": "1", - "introduce": "Bugün Blaze ve AJ cankurtaran görevindeler. Ancak resmi cankurtaran rozetini elde etmek için dört cesur kurtarma gerekecek ve sadece en cesur canavar kamyonlar bunu başarabilecek.", - "programType": "episode", - "channelid": "4353", - "broadcastType": "Banttan", - "seasonInfo": "6. Sezon - 622. Bölüm" - }, - { - "id": "195212389", - "name": "Minik Şef'in Yemek Programı", - "starttime": "2024-12-16 05:45:00 UTC+03:00", - "endtime": "2024-12-16 06:10:00 UTC+03:00", - "genres": "Çocuk", - "advisory": [], - "ratingid": "0", - "picture": "https://gbzeottvsc01.tvplus.com.tr:33207/CPS/images/universal/film/program/202412/20241210/3/2126379639485eb7f426_0_XL.jpg", - "isnpvr": "1", - "introduce": "Henry salyangoz yarışında! Yarış için hazırladığı meyve lokmalarının sertleşmesi uzun sürüyor! Ruby'nin harika bir opera sanatçısı olduğunu öğrenen Şef, Olly gürültülü bir şekilde konser sahnesi inşa ederken bir opera pastası yapmaya çalışıyor.", - "programType": "episode", - "channelid": "4353", - "broadcastType": "Banttan", - "seasonInfo": "2. Sezon - 206. Bölüm" - }, - { - "id": "195212395", - "name": "Baby Shark's Big Show!", - "starttime": "2024-12-16 06:10:00 UTC+03:00", - "endtime": "2024-12-16 06:30:00 UTC+03:00", - "genres": "Çocuk", - "advisory": [], - "ratingid": "0", - "picture": "https://gbzeottvsc01.tvplus.com.tr:33207/CPS/images/universal/film/program/202412/20241210/19/2126379639515eb7f426_0_XL.jpg", - "isnpvr": "1", - "introduce": "Baby, Vola ve William, Splashketball Finalleri'nde Shadow'un takımıyla karşılaşmak için Hydrospace'e gider. Dedektif Baby Shark ve William Watson, Slobber Slug'ı zor durumdan kurtarmak için Hank ile bir araya gelir.", - "programType": "episode", - "channelid": "4353", - "broadcastType": "Banttan", - "seasonInfo": "2. Sezon - 211. Bölüm" - }, - { - "id": "195212401", - "name": "Camgöz (2020)", - "starttime": "2024-12-16 06:30:00 UTC+03:00", - "endtime": "2024-12-16 06:40:00 UTC+03:00", - "genres": "Çocuk", - "advisory": [], - "ratingid": "0", - "picture": "https://gbzeottvsc01.tvplus.com.tr:33207/CPS/images/universal/film/program/202412/20241210/24/2126379639545eb7f426_0_XL.jpg", - "isnpvr": "1", - "introduce": "Max'in Camgöz'ü doyurmak için çok daha fazla balık kroket bulması gerekiyor ama bu arayışı sırasında şüpheci Kaptan Barb Quigley'yle yolları kesişiyor.", - "programType": "episode", - "channelid": "4353", - "broadcastType": "Banttan", - "seasonInfo": "1. Sezon - 106. Bölüm" - }, - { - "id": "195212407", - "name": "Camgöz (2020)", - "starttime": "2024-12-16 06:40:00 UTC+03:00", - "endtime": "2024-12-16 06:45:00 UTC+03:00", - "genres": "Çocuk", - "advisory": [], - "ratingid": "0", - "picture": "https://gbzeottvsc01.tvplus.com.tr:33207/CPS/images/universal/film/program/202412/20241210/29/2126379639575eb7f426_0_XL.jpg", - "isnpvr": "1", - "introduce": "Max ve babası, birlikte köpek balığı özel bölümü izleme geleneklerini sürdürecekleri için heyecanlıdırlar ama bu yıl Camgöz de onlara katılmak isteyecektir.", - "programType": "episode", - "channelid": "4353", - "broadcastType": "Banttan", - "seasonInfo": "1. Sezon - 107. Bölüm" - }, - { - "id": "195212413", - "name": "Camgöz (2020)", - "starttime": "2024-12-16 06:45:00 UTC+03:00", - "endtime": "2024-12-16 06:50:00 UTC+03:00", - "genres": "Çocuk", - "advisory": [], - "ratingid": "0", - "picture": "https://gbzeottvsc01.tvplus.com.tr:33207/CPS/images/universal/film/program/202412/20241210/93/2126379639605eb7f426_0_XL.jpg", - "isnpvr": "1", - "introduce": "Max'in Camgöz adında yarı köpek balığı yarı köpek eşsiz bir evcil havyanı vardır. İlk başlarda Camgöz'ü saklamaya çalışsa da Sisli Pınarlar'da, en iyi arkadaşlar, meraklı komşular ve hatta Max'in ailesi bile yaramaz yeni arkadaşını fark edecektir.", - "programType": "episode", - "channelid": "4353", - "broadcastType": "Banttan", - "seasonInfo": "1. Sezon - 108. Bölüm" - }, - { - "id": "195212419", - "name": "Camgöz (2020)", - "starttime": "2024-12-16 06:50:00 UTC+03:00", - "endtime": "2024-12-16 07:00:00 UTC+03:00", - "genres": "Çocuk", - "advisory": [], - "ratingid": "0", - "picture": "https://gbzeottvsc01.tvplus.com.tr:33207/CPS/images/universal/film/program/202412/20241210/61/2126379639635eb7f426_0_XL.jpg", - "isnpvr": "1", - "introduce": "Max'in Camgöz adında yarı köpek balığı yarı köpek eşsiz bir evcil havyanı vardır. İlk başlarda Camgöz'ü saklamaya çalışsa da Sisli Pınarlar'da, en iyi arkadaşlar, meraklı komşular ve hatta Max'in ailesi bile yaramaz yeni arkadaşını fark edecektir.", - "programType": "episode", - "channelid": "4353", - "broadcastType": "Banttan", - "seasonInfo": "1. Sezon - 109. Bölüm" - }, - { - "id": "195212425", - "name": "Paw Patrol", - "starttime": "2024-12-16 07:00:00 UTC+03:00", - "endtime": "2024-12-16 07:20:00 UTC+03:00", - "genres": "Çocuk", - "advisory": [], - "ratingid": "0", - "picture": "https://gbzeottvsc01.tvplus.com.tr:33207/CPS/images/universal/film/program/202412/20241210/53/2126379649665eb7f426_0_XL.jpg", - "isnpvr": "1", - "introduce": "Kaptan Turbot'un gemisi kaybolunca, Paw Patrol kayıp gemiyi bulmak için gizemli Macera Körfezi Üçgeni'ne girmek zorunda. Alex ve Bay Porter rolleri değiştirdiğinde, yavrular kaybolunca Mini-Patrol'ün izini sürmeye yardım etmelidir.", - "programType": "episode", - "channelid": "4353", - "broadcastType": "Banttan", - "seasonInfo": "10. Sezon - 1018. Bölüm" - }, - { - "id": "195212431", - "name": "Köpecik Pit Ekibi", - "starttime": "2024-12-16 07:20:00 UTC+03:00", - "endtime": "2024-12-16 07:30:00 UTC+03:00", - "genres": "Çocuk", - "advisory": [], - "ratingid": "0", - "picture": "https://gbzeottvsc01.tvplus.com.tr:33207/CPS/images/universal/film/program/202412/20241210/21/2126379649695eb7f426_0_XL.jpg", - "isnpvr": "1", - "introduce": "PAW Patrol okul öncesi programı ve altı tane köpekçik baş rolü paylaşıyor: Chase, Marshall, Rocky, Zuma, Rubble ve Skye, başlarında da teknoloji meraklısı 10 yaşında bir çocuk olan Ryder var.", - "programType": "episode", - "channelid": "4353", - "broadcastType": "Banttan", - "seasonInfo": "4. Sezon - 414. Bölüm" - }, - { - "id": "195212437", - "name": "Rubble ve Ekibi", - "starttime": "2024-12-16 07:30:00 UTC+03:00", - "endtime": "2024-12-16 07:55:00 UTC+03:00", - "genres": "Çocuk", - "advisory": [], - "ratingid": "0", - "picture": "https://gbzeottvsc01.tvplus.com.tr:33207/CPS/images/universal/film/program/202412/20241210/97/2126379649725eb7f426_0_XL.jpg", - "isnpvr": "1", - "introduce": "Bir tavşan ailesi futbol sahasına atlayınca, Rubble ve Ekibi yeteneklerini kullanarak bir spor dalı inşa eder; Tavşan Topu! Yavrular yeni bir kelebek türü keşfettikten sonra, kelebek uçup gider! Dev bir kelebek bahçesi geri getirebilir mi?", - "programType": "episode", - "channelid": "4353", - "broadcastType": "Banttan", - "seasonInfo": "2. Sezon - 203. Bölüm" - }, - { - "id": "195212443", - "name": "Peppa Pig", - "starttime": "2024-12-16 07:55:00 UTC+03:00", - "endtime": "2024-12-16 08:00:00 UTC+03:00", - "genres": "Çocuk", - "advisory": [], - "ratingid": "0", - "picture": "https://gbzeottvsc01.tvplus.com.tr:33207/CPS/images/universal/film/program/202412/20241210/32/2126379649755eb7f426_0_XL.jpg", - "isnpvr": "1", - "introduce": "Peppa, annesi, babası ve abisi George'la yaşayan küçük bir domuzdur. Peppa oyun oynamayı, şık giyinmeyi, uzun seyahatleri ve çamurda zıplamayı sever.", - "programType": "episode", - "channelid": "4353", - "broadcastType": "Banttan", - "seasonInfo": "1. Sezon - 115. Bölüm" - }, - { - "id": "195212449", - "name": "Peppa Pig", - "starttime": "2024-12-16 08:00:00 UTC+03:00", - "endtime": "2024-12-16 08:05:00 UTC+03:00", - "genres": "Çocuk", - "advisory": [], - "ratingid": "0", - "picture": "https://gbzeottvsc01.tvplus.com.tr:33207/CPS/images/universal/film/program/202412/20241210/36/2126379649785eb7f426_0_XL.jpg", - "isnpvr": "1", - "introduce": "Peppa ilk bale dersine gider ve orada arkadaşlarıyla tanışır. Anne Domuz ve Baba Domuz'a da dans etmeyi öğretmek ister ama onların kendine özgü hareketleri olduğunu fark eder.", - "programType": "episode", - "channelid": "4353", - "broadcastType": "Banttan", - "seasonInfo": "1. Sezon - 131. Bölüm" - }, - { - "id": "195212455", - "name": "Peppa Pig", - "starttime": "2024-12-16 08:05:00 UTC+03:00", - "endtime": "2024-12-16 08:10:00 UTC+03:00", - "genres": "Çocuk", - "advisory": [], - "ratingid": "0", - "picture": "https://gbzeottvsc01.tvplus.com.tr:33207/CPS/images/universal/film/program/202412/20241210/57/2126379649815eb7f426_0_XL.jpg", - "isnpvr": "1", - "introduce": "Fırtına çıktığı esnada Peppa ve George piknik yapıyordur. İçeri girerler ama şimşeklerin gürültüsü yüzünden Peppa ve George hâlâ korkuyordur.", - "programType": "episode", - "channelid": "4353", - "broadcastType": "Banttan", - "seasonInfo": "1. Sezon - 132. Bölüm" - }, - { - "id": "195212461", - "name": "Peppa Pig", - "starttime": "2024-12-16 08:10:00 UTC+03:00", - "endtime": "2024-12-16 08:15:00 UTC+03:00", - "genres": "Çocuk", - "advisory": [], - "ratingid": "0", - "picture": "https://gbzeottvsc01.tvplus.com.tr:33207/CPS/images/universal/film/program/202412/20241210/32/2126379659845eb7f426_0_XL.jpg", - "isnpvr": "1", - "introduce": "Peppa, annesi, babası ve abisi George'la yaşayan küçük bir domuzdur. Peppa oyun oynamayı, şık giyinmeyi, uzun seyahatleri ve çamurda zıplamayı sever.", - "programType": "episode", - "channelid": "4353", - "broadcastType": "Banttan", - "seasonInfo": "1. Sezon - 133. Bölüm" - }, - { - "id": "195212467", - "name": "Anna ve Dostları", - "starttime": "2024-12-16 08:15:00 UTC+03:00", - "endtime": "2024-12-16 08:20:00 UTC+03:00", - "genres": "Çocuk", - "advisory": [], - "ratingid": "0", - "picture": "https://gbzeottvsc01.tvplus.com.tr:33207/CPS/images/universal/film/program/202412/20241210/93/2126379659875eb7f426_0_XL.jpg", - "isnpvr": "1", - "introduce": "Dostlar hediyeleşirler ve Bubu Christopher'dan bir hediye alır. Christopher, Bubu gerçek hediye için kutuyu karıştırdığında hediyesini beğenmediğini anlar.", - "programType": "episode", - "channelid": "4353", - "broadcastType": "Banttan", - "seasonInfo": "1. Sezon - 178. Bölüm" - }, - { - "id": "195212473", - "name": "Anna ve Dostları", - "starttime": "2024-12-16 08:20:00 UTC+03:00", - "endtime": "2024-12-16 08:30:00 UTC+03:00", - "genres": "Çocuk", - "advisory": [], - "ratingid": "0", - "picture": "https://gbzeottvsc01.tvplus.com.tr:33207/CPS/images/universal/film/program/202412/20241210/7/2126379659905eb7f426_0_XL.jpg", - "isnpvr": "1", - "introduce": "Anna ve Froga, sezonun ilk çilekleriyle şimdiye kadarki en iyi çilekli turtayı yapacakları için heyecanlılar. Anna, turtayı yaparlarken Christopher'ın dikkatini dağıtmak için bir plan yapar!", - "programType": "episode", - "channelid": "4353", - "broadcastType": "Banttan", - "seasonInfo": "1. Sezon - 101. Bölüm" - }, - { - "id": "195212479", - "name": "Minik Şef", - "starttime": "2024-12-16 08:30:00 UTC+03:00", - "endtime": "2024-12-16 08:50:00 UTC+03:00", - "genres": "Çocuk", - "advisory": [], - "ratingid": "0", - "picture": "https://gbzeottvsc01.tvplus.com.tr:33207/CPS/images/universal/film/program/202412/20241210/89/2126379659935eb7f426_0_XL.jpg", - "isnpvr": "1", - "introduce": "Minik Şef, piknik için Tomrukta Karıncalar yapar, ancak yiyecekler kaybolmaya başlayınca bir gizemi çözmesi gerekir! Minik Şef, Quesadilla yapar ama en sevdiği salsa kavanozunu o ve arkadaşları ne kadar uğraşırsa uğraşsın açamaz!", - "programType": "episode", - "channelid": "4353", - "broadcastType": "Banttan", - "seasonInfo": "1. Sezon - 107. Bölüm" - }, - { - "id": "195212485", - "name": "Minik Şef'in Yemek Programı", - "starttime": "2024-12-16 08:50:00 UTC+03:00", - "endtime": "2024-12-16 09:00:00 UTC+03:00", - "genres": "Çocuk", - "advisory": [], - "ratingid": "0", - "picture": "https://gbzeottvsc01.tvplus.com.tr:33207/CPS/images/universal/film/program/202412/20241210/77/2126379659965eb7f426_0_XL.jpg", - "isnpvr": "1", - "introduce": "Dünyanın en küçük şefi tarafından yaratılan, dünyanın en küçük yemek programında, dünyanın en küçük yemekleri.", - "programType": "episode", - "channelid": "4353", - "broadcastType": "Banttan", - "seasonInfo": "2. Sezon - 211. Bölüm" - }, - { - "id": "195212491", - "name": "Blaze ve Yol Canavarları", - "starttime": "2024-12-16 09:00:00 UTC+03:00", - "endtime": "2024-12-16 09:25:00 UTC+03:00", - "genres": "Çocuk", - "advisory": [], - "ratingid": "0", - "picture": "https://gbzeottvsc01.tvplus.com.tr:33207/CPS/images/universal/film/program/202412/20241210/20/2126379659995eb7f426_0_XL.jpg", - "isnpvr": "1", - "introduce": "Çizgili orman kornasına bayılıyor. Bu korna ormandaki bütün hayvanları çağırabilen özel bir korna. Ama bunu kıskanan Ezici kornayı çalınca Blaze ve Çizgili kornayı geri almak için ormanda Ezici'nin peşine düşer.", - "programType": "episode", - "channelid": "4353", - "broadcastType": "Banttan", - "seasonInfo": "1. Sezon - 109. Bölüm" - }, - { - "id": "195212497", - "name": "Hamster Diyarı", - "starttime": "2024-12-16 09:25:00 UTC+03:00", - "endtime": "2024-12-16 09:45:00 UTC+03:00", - "genres": "Çocuk", - "advisory": [], - "ratingid": "0", - "picture": "https://gbzeottvsc01.tvplus.com.tr:33207/CPS/images/universal/film/program/202412/20241210/15/2126379650025eb7f426_0_XL.jpg", - "isnpvr": "1", - "introduce": "Hamsterlar, Harry'nin kraliyet temalı doğum günü partisinin Hamsterdale istilası için bir paravan olduğuna ikna olurlar. Lil Pal'in en sevdiği oyuncağı havalandırma deliğine düşünce, Mondo onu almak için bir yolculuğa çıkar.", - "programType": "episode", - "channelid": "4353", - "broadcastType": "Banttan", - "seasonInfo": "1. Sezon - 109. Bölüm" - }, - { - "id": "195212503", - "name": "Paw Patrol", - "starttime": "2024-12-16 09:45:00 UTC+03:00", - "endtime": "2024-12-16 10:10:00 UTC+03:00", - "genres": "Çocuk", - "advisory": [], - "ratingid": "0", - "picture": "https://gbzeottvsc01.tvplus.com.tr:33207/CPS/images/universal/film/program/202412/20241210/89/2126379650055eb7f426_0_XL.jpg", - "isnpvr": "1", - "introduce": "Rocky ve Köpekçikler Ace Sorensen'in doğum günü için eski hurda bir arabayı tamir ediyorlar. Macera Koyu dünyanın en yüksek pizza kulesi rekoru için sıkı çalışıyor.", - "programType": "episode", - "channelid": "4353", - "broadcastType": "Banttan", - "seasonInfo": "5. Sezon - 526. Bölüm" - }, - { - "id": "195212509", - "name": "Paw Patrol", - "starttime": "2024-12-16 10:10:00 UTC+03:00", - "endtime": "2024-12-16 10:30:00 UTC+03:00", - "genres": "Çocuk", - "advisory": [], - "ratingid": "0", - "picture": "https://gbzeottvsc01.tvplus.com.tr:33207/CPS/images/universal/film/program/202412/20241210/96/2126379650085eb7f426_0_XL.jpg", - "isnpvr": "1", - "introduce": "Üç penguen taşıyan bir buz kütlesi yağmur ormanına gelir. Köpekçiklerin penguenleri soğuk evlerine geri götürmeleri gerekecek// Turbot, deniz fenerini Cesur Danny'ye emanet eder ve Danny kapıda kalır. Hem de Fok Adasına bir yük gemisi yaklaşmaktayken", - "programType": "episode", - "channelid": "4353", - "broadcastType": "Banttan", - "seasonInfo": "6. Sezon - 601. Bölüm" - }, - { - "id": "195212515", - "name": "Köpecik Pit Ekibi", - "starttime": "2024-12-16 10:30:00 UTC+03:00", - "endtime": "2024-12-16 10:40:00 UTC+03:00", - "genres": "Çocuk", - "advisory": [], - "ratingid": "0", - "picture": "https://gbzeottvsc01.tvplus.com.tr:33207/CPS/images/universal/film/program/202412/20241210/57/2126379660115eb7f426_0_XL.jpg", - "isnpvr": "1", - "introduce": "PAW Patrol okul öncesi programı ve altı tane köpekçik baş rolü paylaşıyor: Chase, Marshall, Rocky, Zuma, Rubble ve Skye, başlarında da teknoloji meraklısı 10 yaşında bir çocuk olan Ryder var.", - "programType": "episode", - "channelid": "4353", - "broadcastType": "Banttan", - "seasonInfo": "1. Sezon - 105. Bölüm" - }, - { - "id": "195212521", - "name": "Rubble ve Ekibi", - "starttime": "2024-12-16 10:40:00 UTC+03:00", - "endtime": "2024-12-16 11:05:00 UTC+03:00", - "genres": "Çocuk", - "advisory": [], - "ratingid": "0", - "picture": "https://gbzeottvsc01.tvplus.com.tr:33207/CPS/images/universal/film/program/202412/20241210/90/2126379660145eb7f426_0_XL.jpg", - "isnpvr": "1", - "introduce": "İnşaatçı Koyu'nda okulun ilk günü... tabii Moloz ve Ekibi inşaatı zamanında bitirebilirse! Çiftçi Zoe'nin mahsullerini kurtarmak ve kunduz Crunchy'nin tüm suyu almasını engellemek için yavruların bir inşaat çözümüne ihtiyacı var!", - "programType": "episode", - "channelid": "4353", - "broadcastType": "Banttan", - "seasonInfo": "1. Sezon - 115. Bölüm" - }, - { - "id": "195212527", - "name": "Rubble ve Ekibi", - "starttime": "2024-12-16 11:05:00 UTC+03:00", - "endtime": "2024-12-16 11:30:00 UTC+03:00", - "genres": "Çocuk", - "advisory": [], - "ratingid": "0", - "picture": "https://gbzeottvsc01.tvplus.com.tr:33207/CPS/images/universal/film/program/202412/20241210/49/2126379660175eb7f426_0_XL.jpg", - "isnpvr": "1", - "introduce": "Yavrular, River'ın kayan yıldızın harika bir fotoğrafını çekmesine yardımcı olmak için bir gözlemevi inşa etmeye başlıyor. Park Korucusu Rose ile tanıştıktan sonra yavrular doğa parkurunda mahsur kalır. Ama Rubble ve Ekibi, çözümü bulur.", - "programType": "episode", - "channelid": "4353", - "broadcastType": "Banttan", - "seasonInfo": "1. Sezon - 117. Bölüm" - }, - { - "id": "195212533", - "name": "Kaşif Dora", - "starttime": "2024-12-16 11:30:00 UTC+03:00", - "endtime": "2024-12-16 11:40:00 UTC+03:00", - "genres": "Çocuk", - "advisory": [], - "ratingid": "0", - "picture": "https://gbzeottvsc01.tvplus.com.tr:33207/CPS/images/universal/film/program/202412/20241210/83/2126379660205eb7f426_0_XL.jpg", - "isnpvr": "1", - "introduce": "DORA büyülü yağmur ormanlarında daha fazla fantastik macera için geri döndü! Dünyanın en olağanüstü küçük kaşifi ve en iyi arkadaşı Boots'a yeni eğlence ve yeni arkadaşlar keşfederken katılın; sınır gökyüzü! Haydi!", - "programType": "episode", - "channelid": "4353", - "broadcastType": "Banttan", - "seasonInfo": "2. Sezon - 211. Bölüm" - }, - { - "id": "195212539", - "name": "Kaşif Dora", - "starttime": "2024-12-16 11:40:00 UTC+03:00", - "endtime": "2024-12-16 11:50:00 UTC+03:00", - "genres": "Çocuk", - "advisory": [], - "ratingid": "0", - "picture": "https://gbzeottvsc01.tvplus.com.tr:33207/CPS/images/universal/film/program/202412/20241210/15/2126379660235eb7f426_0_XL.jpg", - "isnpvr": "1", - "introduce": "DORA büyülü yağmur ormanlarında daha fazla fantastik macera için geri döndü! Dünyanın en olağanüstü küçük kaşifi ve en iyi arkadaşı Boots'a yeni eğlence ve yeni arkadaşlar keşfederken katılın; sınır gökyüzü! Haydi!", - "programType": "episode", - "channelid": "4353", - "broadcastType": "Banttan", - "seasonInfo": "2. Sezon - 211. Bölüm" - }, - { - "id": "195212545", - "name": "Baby Shark's Big Show!", - "starttime": "2024-12-16 11:50:00 UTC+03:00", - "endtime": "2024-12-16 12:15:00 UTC+03:00", - "genres": "Çocuk", - "advisory": [], - "ratingid": "0", - "picture": "https://gbzeottvsc01.tvplus.com.tr:33207/CPS/images/universal/film/program/202412/20241210/67/2126379660265eb7f426_0_XL.jpg", - "isnpvr": "1", - "introduce": "Baby Shark, ailesi ve arkadaşlarının tuzlu aptallıklarına dalın.", - "programType": "episode", - "channelid": "4353", - "broadcastType": "Banttan", - "seasonInfo": "2. Sezon - 223. Bölüm" - }, - { - "id": "195212551", - "name": "Camgöz (2020)", - "starttime": "2024-12-16 12:15:00 UTC+03:00", - "endtime": "2024-12-16 12:20:00 UTC+03:00", - "genres": "Çocuk", - "advisory": [], - "ratingid": "0", - "picture": "https://gbzeottvsc01.tvplus.com.tr:33207/CPS/images/universal/film/program/202412/20241210/52/2126379670295eb7f426_0_XL.jpg", - "isnpvr": "1", - "introduce": "Max'in Camgöz adında yarı köpek balığı yarı köpek eşsiz bir evcil havyanı vardır. İlk başlarda Camgöz'ü saklamaya çalışsa da Sisli Pınarlar'da, en iyi arkadaşlar, meraklı komşular ve hatta Max'in ailesi bile yaramaz yeni arkadaşını fark edecektir.", - "programType": "episode", - "channelid": "4353", - "broadcastType": "Banttan", - "seasonInfo": "1. Sezon - 119. Bölüm" - }, - { - "id": "195212557", - "name": "Camgöz (2020)", - "starttime": "2024-12-16 12:20:00 UTC+03:00", - "endtime": "2024-12-16 12:25:00 UTC+03:00", - "genres": "Çocuk", - "advisory": [], - "ratingid": "0", - "picture": "https://gbzeottvsc01.tvplus.com.tr:33207/CPS/images/universal/film/program/202412/20241210/25/2126379670325eb7f426_0_XL.jpg", - "isnpvr": "1", - "introduce": "Max'in Camgöz adında yarı köpek balığı yarı köpek eşsiz bir evcil havyanı vardır. İlk başlarda Camgöz'ü saklamaya çalışsa da Sisli Pınarlar'da, en iyi arkadaşlar, meraklı komşular ve hatta Max'in ailesi bile yaramaz yeni arkadaşını fark edecektir.", - "programType": "episode", - "channelid": "4353", - "broadcastType": "Banttan", - "seasonInfo": "1. Sezon - 120. Bölüm" - }, - { - "id": "195212563", - "name": "Camgöz (2020)", - "starttime": "2024-12-16 12:25:00 UTC+03:00", - "endtime": "2024-12-16 12:35:00 UTC+03:00", - "genres": "Çocuk", - "advisory": [], - "ratingid": "0", - "picture": "https://gbzeottvsc01.tvplus.com.tr:33207/CPS/images/universal/film/program/202412/20241210/71/2126379670355eb7f426_0_XL.jpg", - "isnpvr": "1", - "introduce": "Max'in yarı köpekbalığı yarı köpek olan Camgöz adlı sıra dışı bir evcil hayvanı vardır. Max önce Camgöz'ü sır olarak saklamaya çalışsa da Foggy Springs'teki dostları, meraklı komşuları ve ailesi onun yeni, yaramaz dostunu er ya da geç fark edecektir.", - "programType": "episode", - "channelid": "4353", - "broadcastType": "Banttan", - "seasonInfo": "2. Sezon - 201. Bölüm" - }, - { - "id": "195212569", - "name": "Peppa Pig", - "starttime": "2024-12-16 12:35:00 UTC+03:00", - "endtime": "2024-12-16 12:40:00 UTC+03:00", - "genres": "Çocuk", - "advisory": [], - "ratingid": "0", - "picture": "https://gbzeottvsc01.tvplus.com.tr:33207/CPS/images/universal/film/program/202412/20241210/27/2126379670385eb7f426_0_XL.jpg", - "isnpvr": "1", - "introduce": "Peppa ve George Büyükanne ve Büyükbaba Domuz'a öğle yemeğine giderler. Büyükanne Domuz salata yapar ama George yeşillik yemeyi sevmediği için Büyükanne Domuz, salataya dinozor şekli verir.", - "programType": "episode", - "channelid": "4353", - "broadcastType": "Banttan", - "seasonInfo": "1. Sezon - 134. Bölüm" - }, - { - "id": "195212575", - "name": "Peppa Pig", - "starttime": "2024-12-16 12:40:00 UTC+03:00", - "endtime": "2024-12-16 12:45:00 UTC+03:00", - "genres": "Çocuk", - "advisory": [], - "ratingid": "0", - "picture": "https://gbzeottvsc01.tvplus.com.tr:33207/CPS/images/universal/film/program/202412/20241210/30/2126379680415eb7f426_0_XL.jpg", - "isnpvr": "1", - "introduce": "Peppa ve ailesi kampa gider ama Baba Domuz çadıra sığamayacak kadar büyüktür. Baba Domuz açık havada yatmaktan memnundur, ta ki yağmur başlayana dek.", - "programType": "episode", - "channelid": "4353", - "broadcastType": "Banttan", - "seasonInfo": "1. Sezon - 135. Bölüm" - }, - { - "id": "195212581", - "name": "Peppa Pig", - "starttime": "2024-12-16 12:45:00 UTC+03:00", - "endtime": "2024-12-16 12:50:00 UTC+03:00", - "genres": "Çocuk", - "advisory": [], - "ratingid": "0", - "picture": "https://gbzeottvsc01.tvplus.com.tr:33207/CPS/images/universal/film/program/202412/20241210/32/2126379680445eb7f426_0_XL.jpg", - "isnpvr": "1", - "introduce": "Baba Domuz, George'a uyumaya ihtiyacı olan bir prenses masalı anlatır. Masalda Peppa bir prenses, George bir prens, Anne Domuz bir kraliçe, Baba Domuz ise bir kral olmuştur.", - "programType": "episode", - "channelid": "4353", - "broadcastType": "Banttan", - "seasonInfo": "1. Sezon - 136. Bölüm" - }, - { - "id": "195212587", - "name": "Peppa Pig", - "starttime": "2024-12-16 12:50:00 UTC+03:00", - "endtime": "2024-12-16 12:55:00 UTC+03:00", - "genres": "Çocuk", - "advisory": [], - "ratingid": "0", - "picture": "https://gbzeottvsc01.tvplus.com.tr:33207/CPS/images/universal/film/program/202412/20241210/25/2126379680475eb7f426_0_XL.jpg", - "isnpvr": "1", - "introduce": "Peppa, annesi, babası ve abisi George'la yaşayan küçük bir domuzdur. Peppa oyun oynamayı, şık giyinmeyi, uzun seyahatleri ve çamurda zıplamayı sever.", - "programType": "episode", - "channelid": "4353", - "broadcastType": "Banttan", - "seasonInfo": "1. Sezon - 137. Bölüm" - }, - { - "id": "195212593", - "name": "Minik Şef'in Yemek Programı", - "starttime": "2024-12-16 12:55:00 UTC+03:00", - "endtime": "2024-12-16 13:15:00 UTC+03:00", - "genres": "Çocuk", - "advisory": [], - "ratingid": "0", - "picture": "https://gbzeottvsc01.tvplus.com.tr:33207/CPS/images/universal/film/program/202412/20241210/95/2126379680505eb7f426_0_XL.jpg", - "isnpvr": "1", - "introduce": "Stump'a bilinmeyen bir meyve teslim edildiğinde, Dedektif Şef ve Olly pişirmeden önce bunun ne olduğunun gizemini çözmek zorundadır. Çetenin hapşırıkları tuttuğunda, matzo topu çorbasını tam bir tarif olmadan bitirmek Olly'ye kalır.", - "programType": "episode", - "channelid": "4353", - "broadcastType": "Banttan", - "seasonInfo": "2. Sezon - 203. Bölüm" - }, - { - "id": "195212599", - "name": "Barbapapa Ailesi", - "starttime": "2024-12-16 13:15:00 UTC+03:00", - "endtime": "2024-12-16 13:40:00 UTC+03:00", - "genres": "Çocuk", - "advisory": [], - "ratingid": "0", - "picture": "https://gbzeottvsc01.tvplus.com.tr:33207/CPS/images/universal/film/program/202412/20241210/6/2126379680535eb7f426_0_XL.jpg", - "isnpvr": "1", - "introduce": "Barbabebekler uyku zamanı hikayelerine bayılıyor, tabii hep aynı hikayeler olması dışında... Barbasüslü tüm böcekler yüzünden huzursuz bir gece geçirdi!", - "programType": "episode", - "channelid": "4353", - "broadcastType": "Banttan", - "seasonInfo": "2. Sezon - 209. Bölüm" - }, - { - "id": "195212605", - "name": "Barbapapa Ailesi", - "starttime": "2024-12-16 13:40:00 UTC+03:00", - "endtime": "2024-12-16 14:00:00 UTC+03:00", - "genres": "Çocuk", - "advisory": [], - "ratingid": "0", - "picture": "https://gbzeottvsc01.tvplus.com.tr:33207/CPS/images/universal/film/program/202412/20241210/44/2126379680565eb7f426_0_XL.jpg", - "isnpvr": "1", - "introduce": "En popüler ailenin dünya ekranlarına göz kamaştırıcı dönüşü! BARBAPAPA. Büyük mutlu bir aile! Barbapapalar için rutin diye bir şey yoktur: her gün sürprizlerle dolu neşeli bir maceradır!", - "programType": "episode", - "channelid": "4353", - "broadcastType": "Banttan", - "seasonInfo": "2. Sezon - 210. Bölüm" - }, - { - "id": "195212611", - "name": "Blaze ve Yol Canavarları", - "starttime": "2024-12-16 14:00:00 UTC+03:00", - "endtime": "2024-12-16 14:25:00 UTC+03:00", - "genres": "Çocuk", - "advisory": [], - "ratingid": "0", - "picture": "https://gbzeottvsc01.tvplus.com.tr:33207/CPS/images/universal/film/program/202412/20241210/64/2126379680595eb7f426_0_XL.jpg", - "isnpvr": "1", - "introduce": "Blaze ve Yol Canavarları, dünyanın en büyük canavar kamyonu Blaze ve en iyi arkadaşı ve sürücüsü AJ adında bir çocuk hakkındaki interaktif bir anaokulu animasyon dizisidir.", - "programType": "episode", - "channelid": "4353", - "broadcastType": "Banttan", - "seasonInfo": "6. Sezon - 620. Bölüm" - }, - { - "id": "195212617", - "name": "Blaze ve Yol Canavarları", - "starttime": "2024-12-16 14:25:00 UTC+03:00", - "endtime": "2024-12-16 14:50:00 UTC+03:00", - "genres": "Çocuk", - "advisory": [], - "ratingid": "0", - "picture": "https://gbzeottvsc01.tvplus.com.tr:33207/CPS/images/universal/film/program/202412/20241210/33/2126379690625eb7f426_0_XL.jpg", - "isnpvr": "1", - "introduce": "İlk Blaze Müzikali'nde Blaze, AJ, Crusher ve Pickle, Broken Key'in parçalarını bulmak ve gizli bir hazinenin kilidini açmak için cesur bir arayış içindeler.", - "programType": "episode", - "channelid": "4353", - "broadcastType": "Banttan", - "seasonInfo": "6. Sezon - 621. Bölüm" - }, - { - "id": "195212623", - "name": "Paw Patrol", - "starttime": "2024-12-16 14:50:00 UTC+03:00", - "endtime": "2024-12-16 15:10:00 UTC+03:00", - "genres": "Çocuk", - "advisory": [], - "ratingid": "0", - "picture": "https://gbzeottvsc01.tvplus.com.tr:33207/CPS/images/universal/film/program/202412/20241210/69/2126379690655eb7f426_0_XL.jpg", - "isnpvr": "1", - "introduce": "Turbotlar derin dalıştayken dalış çanları bir yere sıkışır kalır! Paw Patrol günü kurtarmaya! Bir fırtına kunduzun barajını yıkınca, kunduz Çiftçi Yumi'nin bütün odunlarını keser! Paw Patrol yetişir ve evini tekrar inşa etmesine yardım eder.", - "programType": "episode", - "channelid": "4353", - "broadcastType": "Banttan", - "seasonInfo": "2. Sezon - 204. Bölüm" - }, - { - "id": "195212629", - "name": "Paw Patrol", - "starttime": "2024-12-16 15:10:00 UTC+03:00", - "endtime": "2024-12-16 15:35:00 UTC+03:00", - "genres": "Çocuk", - "advisory": [], - "ratingid": "0", - "picture": "https://gbzeottvsc01.tvplus.com.tr:33207/CPS/images/universal/film/program/202412/20241210/53/2126379690685eb7f426_0_XL.jpg", - "isnpvr": "1", - "introduce": "Gizemli bir hayalet Lookout'ta ortalığı birbirine katar ama köpekçikler bunun bir hayalet değil uyur gezer Marshall olduğunu fark eder. Büyük gösteriden önce bir sahne parçası yıkılır ve Kaptan Turbot'u mahsur bırakır. Köpekçikler günü kurtarmaya!", - "programType": "episode", - "channelid": "4353", - "broadcastType": "Banttan", - "seasonInfo": "2. Sezon - 205. Bölüm" - }, - { - "id": "195212635", - "name": "Baby Shark's Big Show", - "starttime": "2024-12-16 15:35:00 UTC+03:00", - "endtime": "2024-12-16 15:55:00 UTC+03:00", - "genres": "Çocuk", - "advisory": [], - "ratingid": "0", - "picture": "https://gbzeottvsc01.tvplus.com.tr:33207/CPS/images/universal/film/program/202412/20241210/16/2126379690715eb7f426_0_XL.jpg", - "isnpvr": "1", - "introduce": "Bencil bir balık mini golfü ele geçirince Baby Shark ve William onu yenecek şampiyon bir mini golf oyuncusu bulmalıdır. Hank evcil kayası Rocky'nin yardımı olmadan korkularının üstesinden gelmeye çalışır.", - "programType": "episode", - "channelid": "4353", - "broadcastType": "Banttan", - "seasonInfo": "1. Sezon - 112. Bölüm" - }, - { - "id": "195212641", - "name": "BARBAPAPA Ailesi", - "starttime": "2024-12-16 15:55:00 UTC+03:00", - "endtime": "2024-12-16 16:15:00 UTC+03:00", - "genres": "Çocuk", - "advisory": [], - "ratingid": "0", - "picture": "https://gbzeottvsc01.tvplus.com.tr:33207/CPS/images/universal/film/program/202412/20241210/60/2126379690745eb7f426_0_XL.jpg", - "isnpvr": "1", - "introduce": "Barbataşkın hıçkırığı geçmediği için resim yapamaz. Tam vazgeçmek üzereyken, yanlışlıkla yeni bir sanat hareketi başlatır. Barbalçalışkan bir yazı yarışmasına katılmak ister ama erkek ve kız kardeşleri onun konsantre olmasını engeller.", - "programType": "episode", - "channelid": "4353", - "broadcastType": "Banttan", - "seasonInfo": "1. Sezon - 116. Bölüm" - }, - { - "id": "195212647", - "name": "Ayı Paddington'un Maceraları", - "starttime": "2024-12-16 16:15:00 UTC+03:00", - "endtime": "2024-12-16 16:40:00 UTC+03:00", - "genres": "Çocuk", - "advisory": [], - "ratingid": "0", - "picture": "https://gbzeottvsc01.tvplus.com.tr:33207/CPS/images/universal/film/program/202412/20241210/21/2126379690775eb7f426_0_XL.jpg", - "isnpvr": "1", - "introduce": "Brown'lar tatil için sahile giderler ve vardıklarında deniz feneri bekçisi Shantee ile tanışırlar. Paddington, Jonathan ve Judy stajyer cankurtaran olurlar ve cankurtaran Taylor'ın yardımıyla Bay Brown'ı kurtarırlar.", - "programType": "episode", - "channelid": "4353", - "broadcastType": "Banttan", - "seasonInfo": "3. Sezon - 307. Bölüm" - }, - { - "id": "195212653", - "name": "Rubble ve Ekibi", - "starttime": "2024-12-16 16:40:00 UTC+03:00", - "endtime": "2024-12-16 17:00:00 UTC+03:00", - "genres": "Çocuk", - "advisory": [], - "ratingid": "0", - "picture": "https://gbzeottvsc01.tvplus.com.tr:33207/CPS/images/universal/film/program/202412/20241210/94/2126379690805eb7f426_0_XL.jpg", - "isnpvr": "1", - "introduce": "Kafe Carl bir smoothie dükkânı açıyor! Ancak bardak altlığı hindistan cevizi kaosuna neden olduğunda, Rubble ve Ekibi işlerini bilir. Rubble ve Ekibi, Charger'ın zıplayan doğum günü sürprizinin kaldırılması gerektiğinde çözüm bulmak için çalışır!", - "programType": "episode", - "channelid": "4353", - "broadcastType": "Banttan", - "seasonInfo": "2. Sezon - 208. Bölüm" - }, - { - "id": "195212659", - "name": "Kaşif Dora", - "starttime": "2024-12-16 17:00:00 UTC+03:00", - "endtime": "2024-12-16 17:10:00 UTC+03:00", - "genres": "Çocuk", - "advisory": [], - "ratingid": "0", - "picture": "https://gbzeottvsc01.tvplus.com.tr:33207/CPS/images/universal/film/program/202412/20241210/44/2126379690835eb7f426_0_XL.jpg", - "isnpvr": "1", - "introduce": "DORA büyülü yağmur ormanlarında daha fazla fantastik macera için geri döndü! Dünyanın en olağanüstü küçük kaşifi ve en iyi arkadaşı Boots'a yeni eğlence ve yeni arkadaşlar keşfederken katılın; sınır gökyüzü! Haydi!", - "programType": "episode", - "channelid": "4353", - "broadcastType": "Banttan", - "seasonInfo": "2. Sezon - 211. Bölüm" - }, - { - "id": "195212665", - "name": "Kaşif Dora", - "starttime": "2024-12-16 17:10:00 UTC+03:00", - "endtime": "2024-12-16 17:25:00 UTC+03:00", - "genres": "Çocuk", - "advisory": [], - "ratingid": "0", - "picture": "https://gbzeottvsc01.tvplus.com.tr:33207/CPS/images/universal/film/program/202412/20241210/93/2126379700865eb7f426_0_XL.jpg", - "isnpvr": "1", - "introduce": "DORA büyülü yağmur ormanlarında daha fazla fantastik macera için geri döndü! Dünyanın en olağanüstü küçük kaşifi ve en iyi arkadaşı Boots'a yeni eğlence ve yeni arkadaşlar keşfederken katılın; sınır gökyüzü! Haydi!", - "programType": "episode", - "channelid": "4353", - "broadcastType": "Banttan", - "seasonInfo": "2. Sezon - 211. Bölüm" - }, - { - "id": "195212671", - "name": "Blaze ve Yol Canavarları", - "starttime": "2024-12-16 17:25:00 UTC+03:00", - "endtime": "2024-12-16 17:45:00 UTC+03:00", - "genres": "Çocuk", - "advisory": [], - "ratingid": "0", - "picture": "https://gbzeottvsc01.tvplus.com.tr:33207/CPS/images/universal/film/program/202412/20241210/11/2126379700895eb7f426_0_XL.jpg", - "isnpvr": "1", - "introduce": "Bugün Blaze ve AJ cankurtaran görevindeler. Ancak resmi cankurtaran rozetini elde etmek için dört cesur kurtarma gerekecek ve sadece en cesur canavar kamyonlar bunu başarabilecek.", - "programType": "episode", - "channelid": "4353", - "broadcastType": "Banttan", - "seasonInfo": "6. Sezon - 622. Bölüm" - }, - { - "id": "195212677", - "name": "Minik Şef'in Yemek Programı", - "starttime": "2024-12-16 17:45:00 UTC+03:00", - "endtime": "2024-12-16 18:10:00 UTC+03:00", - "genres": "Çocuk", - "advisory": [], - "ratingid": "0", - "picture": "https://gbzeottvsc01.tvplus.com.tr:33207/CPS/images/universal/film/program/202412/20241210/24/2126379700925eb7f426_0_XL.jpg", - "isnpvr": "1", - "introduce": "Henry salyangoz yarışında! Yarış için hazırladığı meyve lokmalarının sertleşmesi uzun sürüyor! Ruby'nin harika bir opera sanatçısı olduğunu öğrenen Şef, Olly gürültülü bir şekilde konser sahnesi inşa ederken bir opera pastası yapmaya çalışıyor.", - "programType": "episode", - "channelid": "4353", - "broadcastType": "Banttan", - "seasonInfo": "2. Sezon - 206. Bölüm" - }, - { - "id": "195212683", - "name": "Baby Shark's Big Show!", - "starttime": "2024-12-16 18:10:00 UTC+03:00", - "endtime": "2024-12-16 18:30:00 UTC+03:00", - "genres": "Çocuk", - "advisory": [], - "ratingid": "0", - "picture": "https://gbzeottvsc01.tvplus.com.tr:33207/CPS/images/universal/film/program/202412/20241210/25/2126379700955eb7f426_0_XL.jpg", - "isnpvr": "1", - "introduce": "Baby, Vola ve William, Splashketball Finalleri'nde Shadow'un takımıyla karşılaşmak için Hydrospace'e gider. Dedektif Baby Shark ve William Watson, Slobber Slug'ı zor durumdan kurtarmak için Hank ile bir araya gelir.", - "programType": "episode", - "channelid": "4353", - "broadcastType": "Banttan", - "seasonInfo": "2. Sezon - 211. Bölüm" - }, - { - "id": "195212689", - "name": "Camgöz (2020)", - "starttime": "2024-12-16 18:30:00 UTC+03:00", - "endtime": "2024-12-16 18:40:00 UTC+03:00", - "genres": "Çocuk", - "advisory": [], - "ratingid": "0", - "picture": "https://gbzeottvsc01.tvplus.com.tr:33207/CPS/images/universal/film/program/202412/20241210/56/2126379700985eb7f426_0_XL.jpg", - "isnpvr": "1", - "introduce": "Max'in Camgöz'ü doyurmak için çok daha fazla balık kroket bulması gerekiyor ama bu arayışı sırasında şüpheci Kaptan Barb Quigley'yle yolları kesişiyor.", - "programType": "episode", - "channelid": "4353", - "broadcastType": "Banttan", - "seasonInfo": "1. Sezon - 106. Bölüm" - }, - { - "id": "195212695", - "name": "Camgöz (2020)", - "starttime": "2024-12-16 18:40:00 UTC+03:00", - "endtime": "2024-12-16 18:45:00 UTC+03:00", - "genres": "Çocuk", - "advisory": [], - "ratingid": "0", - "picture": "https://gbzeottvsc01.tvplus.com.tr:33207/CPS/images/universal/film/program/202412/20241210/59/2126379701015eb7f426_0_XL.jpg", - "isnpvr": "1", - "introduce": "Max ve babası, birlikte köpek balığı özel bölümü izleme geleneklerini sürdürecekleri için heyecanlıdırlar ama bu yıl Camgöz de onlara katılmak isteyecektir.", - "programType": "episode", - "channelid": "4353", - "broadcastType": "Banttan", - "seasonInfo": "1. Sezon - 107. Bölüm" - }, - { - "id": "195212701", - "name": "Camgöz (2020)", - "starttime": "2024-12-16 18:45:00 UTC+03:00", - "endtime": "2024-12-16 18:50:00 UTC+03:00", - "genres": "Çocuk", - "advisory": [], - "ratingid": "0", - "picture": "https://gbzeottvsc01.tvplus.com.tr:33207/CPS/images/universal/film/program/202412/20241210/60/2126379701045eb7f426_0_XL.jpg", - "isnpvr": "1", - "introduce": "Max'in Camgöz adında yarı köpek balığı yarı köpek eşsiz bir evcil havyanı vardır. İlk başlarda Camgöz'ü saklamaya çalışsa da Sisli Pınarlar'da, en iyi arkadaşlar, meraklı komşular ve hatta Max'in ailesi bile yaramaz yeni arkadaşını fark edecektir.", - "programType": "episode", - "channelid": "4353", - "broadcastType": "Banttan", - "seasonInfo": "1. Sezon - 108. Bölüm" - }, - { - "id": "195212707", - "name": "Camgöz (2020)", - "starttime": "2024-12-16 18:50:00 UTC+03:00", - "endtime": "2024-12-16 19:00:00 UTC+03:00", - "genres": "Çocuk", - "advisory": [], - "ratingid": "0", - "picture": "https://gbzeottvsc01.tvplus.com.tr:33207/CPS/images/universal/film/program/202412/20241210/27/2126379701075eb7f426_0_XL.jpg", - "isnpvr": "1", - "introduce": "Max'in Camgöz adında yarı köpek balığı yarı köpek eşsiz bir evcil havyanı vardır. İlk başlarda Camgöz'ü saklamaya çalışsa da Sisli Pınarlar'da, en iyi arkadaşlar, meraklı komşular ve hatta Max'in ailesi bile yaramaz yeni arkadaşını fark edecektir.", - "programType": "episode", - "channelid": "4353", - "broadcastType": "Banttan", - "seasonInfo": "1. Sezon - 109. Bölüm" - }, - { - "id": "195212713", - "name": "Paw Patrol", - "starttime": "2024-12-16 19:00:00 UTC+03:00", - "endtime": "2024-12-16 19:20:00 UTC+03:00", - "genres": "Çocuk", - "advisory": [], - "ratingid": "0", - "picture": "https://gbzeottvsc01.tvplus.com.tr:33207/CPS/images/universal/film/program/202412/20241210/3/2126379711105eb7f426_0_XL.jpg", - "isnpvr": "1", - "introduce": "Kaptan Turbot'un gemisi kaybolunca, Paw Patrol kayıp gemiyi bulmak için gizemli Macera Körfezi Üçgeni'ne girmek zorunda. Alex ve Bay Porter rolleri değiştirdiğinde, yavrular kaybolunca Mini-Patrol'ün izini sürmeye yardım etmelidir.", - "programType": "episode", - "channelid": "4353", - "broadcastType": "Banttan", - "seasonInfo": "10. Sezon - 1018. Bölüm" - }, - { - "id": "195212719", - "name": "Köpecik Pit Ekibi", - "starttime": "2024-12-16 19:20:00 UTC+03:00", - "endtime": "2024-12-16 19:30:00 UTC+03:00", - "genres": "Çocuk", - "advisory": [], - "ratingid": "0", - "picture": "https://gbzeottvsc01.tvplus.com.tr:33207/CPS/images/universal/film/program/202412/20241210/47/2126379711135eb7f426_0_XL.jpg", - "isnpvr": "1", - "introduce": "PAW Patrol okul öncesi programı ve altı tane köpekçik baş rolü paylaşıyor: Chase, Marshall, Rocky, Zuma, Rubble ve Skye, başlarında da teknoloji meraklısı 10 yaşında bir çocuk olan Ryder var.", - "programType": "episode", - "channelid": "4353", - "broadcastType": "Banttan", - "seasonInfo": "4. Sezon - 414. Bölüm" - }, - { - "id": "195212725", - "name": "Rubble ve Ekibi", - "starttime": "2024-12-16 19:30:00 UTC+03:00", - "endtime": "2024-12-16 20:00:00 UTC+03:00", - "genres": "Çocuk", - "advisory": [], - "ratingid": "0", - "picture": "https://gbzeottvsc01.tvplus.com.tr:33207/CPS/images/universal/film/program/202412/20241210/31/2126379711165eb7f426_0_XL.jpg", - "isnpvr": "1", - "introduce": "Bir tavşan ailesi futbol sahasına atlayınca, Rubble ve Ekibi yeteneklerini kullanarak bir spor dalı inşa eder; Tavşan Topu! Yavrular yeni bir kelebek türü keşfettikten sonra, kelebek uçup gider! Dev bir kelebek bahçesi geri getirebilir mi?", - "programType": "episode", - "channelid": "4353", - "broadcastType": "Banttan", - "seasonInfo": "2. Sezon - 203. Bölüm" - }, - { - "id": "195212731", - "name": "Kaşif Dora", - "starttime": "2024-12-16 20:00:00 UTC+03:00", - "endtime": "2024-12-16 20:10:00 UTC+03:00", - "genres": "Çocuk", - "advisory": [], - "ratingid": "0", - "picture": "https://gbzeottvsc01.tvplus.com.tr:33207/CPS/images/universal/film/program/202412/20241210/62/2126379711195eb7f426_0_XL.jpg", - "isnpvr": "1", - "introduce": "DORA büyülü yağmur ormanlarında daha fazla fantastik macera için geri döndü! Dünyanın en olağanüstü küçük kaşifi ve en iyi arkadaşı Boots'a yeni eğlence ve yeni arkadaşlar keşfederken katılın; sınır gökyüzü! Haydi!", - "programType": "episode", - "channelid": "4353", - "broadcastType": "Banttan", - "seasonInfo": "2. Sezon - 211. Bölüm" - }, - { - "id": "195212737", - "name": "Kaşif Dora", - "starttime": "2024-12-16 20:10:00 UTC+03:00", - "endtime": "2024-12-16 20:20:00 UTC+03:00", - "genres": "Çocuk", - "advisory": [], - "ratingid": "0", - "picture": "https://gbzeottvsc01.tvplus.com.tr:33207/CPS/images/universal/film/program/202412/20241210/73/2126379711225eb7f426_0_XL.jpg", - "isnpvr": "1", - "introduce": "DORA büyülü yağmur ormanlarında daha fazla fantastik macera için geri döndü! Dünyanın en olağanüstü küçük kaşifi ve en iyi arkadaşı Boots'a yeni eğlence ve yeni arkadaşlar keşfederken katılın; sınır gökyüzü! Haydi!", - "programType": "episode", - "channelid": "4353", - "broadcastType": "Banttan", - "seasonInfo": "2. Sezon - 211. Bölüm" - }, - { - "id": "195212743", - "name": "BARBAPAPA Ailesi", - "starttime": "2024-12-16 20:20:00 UTC+03:00", - "endtime": "2024-12-16 20:40:00 UTC+03:00", - "genres": "Çocuk", - "advisory": [], - "ratingid": "0", - "picture": "https://gbzeottvsc01.tvplus.com.tr:33207/CPS/images/universal/film/program/202412/20241210/68/2126379711255eb7f426_0_XL.jpg", - "isnpvr": "1", - "introduce": "Bir talihsizliğin ardından Barbabravo şekil değiştirememeye başlar. Bütün aile ona yardım etmek için birleşir. Barbabravo uzun süre bir aktiviteye odaklanmakta zorlanır. Barbabala ona kendini kontrol etmeyi öğretmeyi teklif eder.", - "programType": "episode", - "channelid": "4353", - "broadcastType": "Banttan", - "seasonInfo": "1. Sezon - 125. Bölüm" - }, - { - "id": "195212749", - "name": "Hamster Diyarı", - "starttime": "2024-12-16 20:40:00 UTC+03:00", - "endtime": "2024-12-16 21:00:00 UTC+03:00", - "genres": "Çocuk", - "advisory": [], - "ratingid": "0", - "picture": "https://gbzeottvsc01.tvplus.com.tr:33207/CPS/images/universal/film/program/202412/20241210/0/2126379711285eb7f426_0_XL.jpg", - "isnpvr": "1", - "introduce": "Popcorn tacını Keesha'nın akvaryumunda kaybeder ve hamsterlar onu geri almak için suya dalar. Hamsterlar yerel bir hamster yarışmasına gittiklerinde, Clover beklenmedik bir şekilde yarışmak zorunda kalır.", - "programType": "episode", - "channelid": "4353", - "broadcastType": "Banttan", - "seasonInfo": "1. Sezon - 105. Bölüm" - }, - { - "id": "195212755", - "name": "Blaze ve Yol Canavarları", - "starttime": "2024-12-16 21:00:00 UTC+03:00", - "endtime": "2024-12-16 21:25:00 UTC+03:00", - "genres": "Çocuk", - "advisory": [], - "ratingid": "0", - "picture": "https://gbzeottvsc01.tvplus.com.tr:33207/CPS/images/universal/film/program/202412/20241210/35/2126379721315eb7f426_0_XL.jpg", - "isnpvr": "1", - "introduce": "Blaze Kamyon Topu diye yeni ve heyecan verici bir spor keşfeder. Ezici ve ahbapları ona maç teklifi edince Blaze'in büyük maçtan önce bir takım kurmak için bütün Aks Şehri'ni alt üst etmesi gerekir.", - "programType": "episode", - "channelid": "4353", - "broadcastType": "Banttan", - "seasonInfo": "1. Sezon - 110. Bölüm" - }, - { - "id": "195212761", - "name": "Blaze ve Yol Canavarları", - "starttime": "2024-12-16 21:25:00 UTC+03:00", - "endtime": "2024-12-16 21:45:00 UTC+03:00", - "genres": "Çocuk", - "advisory": [], - "ratingid": "0", - "picture": "https://gbzeottvsc01.tvplus.com.tr:33207/CPS/images/universal/film/program/202412/20241210/4/2126379721345eb7f426_0_XL.jpg", - "isnpvr": "1", - "introduce": "Aks Şehri oyuncak dükkanında her istenen oyuncağı yapan muhteşem bir makine vardır ama Ezici, makineyle kontrolden çıkan bir sürü oyuncak yapar! Sadece Blaze ve Wattlar bu dev oyuncakların ortalığı birbirine katmadan durdurabilir!", - "programType": "episode", - "channelid": "4353", - "broadcastType": "Banttan", - "seasonInfo": "5. Sezon - 506. Bölüm" - }, - { - "id": "195212767", - "name": "Paw Patrol", - "starttime": "2024-12-16 21:45:00 UTC+03:00", - "endtime": "2024-12-16 22:10:00 UTC+03:00", - "genres": "Çocuk", - "advisory": [], - "ratingid": "0", - "picture": "https://gbzeottvsc01.tvplus.com.tr:33207/CPS/images/universal/film/program/202412/20241210/81/2126379721375eb7f426_0_XL.jpg", - "isnpvr": "1", - "introduce": "Vali Humdinger'ın en büyük kavun yarışmasını kazanma planı kavunu sekerek uzaklaşıp kasabayı birbirine katınca suya düşer! Çiftçi Al'ın kamyoneti yıkık bir köprüde mahsur kalır, onu kurtarmak da Köpekçiklere kalır.", - "programType": "episode", - "channelid": "4353", - "broadcastType": "Banttan", - "seasonInfo": "6. Sezon - 603. Bölüm" - }, - { - "id": "195212773", - "name": "Paw Patrol", - "starttime": "2024-12-16 22:10:00 UTC+03:00", - "endtime": "2024-12-16 22:30:00 UTC+03:00", - "genres": "Çocuk", - "advisory": [], - "ratingid": "0", - "picture": "https://gbzeottvsc01.tvplus.com.tr:33207/CPS/images/universal/film/program/202412/20241210/61/2126379721405eb7f426_0_XL.jpg", - "isnpvr": "1", - "introduce": "Yumi'nin nefis balı ve arı kovanları çiftlikten kaybolunca ortalık karışır! Vali Goodway'in cüzdanı içinde Çikiletta'yla birlikte kaybolur!", - "programType": "episode", - "channelid": "4353", - "broadcastType": "Banttan", - "seasonInfo": "6. Sezon - 604. Bölüm" - }, - { - "id": "195212779", - "name": "Köpecik Pit Ekibi", - "starttime": "2024-12-16 22:30:00 UTC+03:00", - "endtime": "2024-12-16 22:40:00 UTC+03:00", - "genres": "Çocuk", - "advisory": [], - "ratingid": "0", - "picture": "https://gbzeottvsc01.tvplus.com.tr:33207/CPS/images/universal/film/program/202412/20241210/82/2126379721435eb7f426_0_XL.jpg", - "isnpvr": "1", - "introduce": "PAW Patrol okul öncesi programı ve altı tane köpekçik baş rolü paylaşıyor: Chase, Marshall, Rocky, Zuma, Rubble ve Skye, başlarında da teknoloji meraklısı 10 yaşında bir çocuk olan Ryder var.", - "programType": "episode", - "channelid": "4353", - "broadcastType": "Banttan", - "seasonInfo": "1. Sezon - 106. Bölüm" - }, - { - "id": "195212785", - "name": "Rubble ve Ekibi", - "starttime": "2024-12-16 22:40:00 UTC+03:00", - "endtime": "2024-12-16 23:05:00 UTC+03:00", - "genres": "Çocuk", - "advisory": [], - "ratingid": "0", - "picture": "https://gbzeottvsc01.tvplus.com.tr:33207/CPS/images/universal/film/program/202412/20241210/55/2126379721465eb7f426_0_XL.jpg", - "isnpvr": "1", - "introduce": "Kütüphane inşaatı arılarla dolup taşıyor! Bu da ekstra güzel bir inşaat çözümü gerektiriyor. Büyükbaba, Charger'a büyük dans yarışması için en iyi hareketlerini öğretiyor. Ama kaçan bir disko topu onlara birinciliğe mal olacak mı?", - "programType": "episode", - "channelid": "4353", - "broadcastType": "Banttan", - "seasonInfo": "1. Sezon - 118. Bölüm" - }, - { - "id": "195212791", - "name": "Rubble ve Ekibi", - "starttime": "2024-12-16 23:05:00 UTC+03:00", - "endtime": "2024-12-16 23:30:00 UTC+03:00", - "genres": "Çocuk", - "advisory": [], - "ratingid": "0", - "picture": "https://gbzeottvsc01.tvplus.com.tr:33207/CPS/images/universal/film/program/202412/20241210/86/2126379721495eb7f426_0_XL.jpg", - "isnpvr": "1", - "introduce": "Ekip Lucas ve Lily için özel bir limonata standı kurduktan sonra, ekşi bir Hız Ustası onu İnşaatçı Koyu'na yuvarlıyor! Kunduz Crunchy neden yolun karşısına geçiyor? Çünkü Rubble ve Ekibi karşıya geçmesi için bir köprü inşa ediyor!", - "programType": "episode", - "channelid": "4353", - "broadcastType": "Banttan", - "seasonInfo": "1. Sezon - 119. Bölüm" - }, - { - "id": "195212797", - "name": "Kaşif Dora", - "starttime": "2024-12-16 23:30:00 UTC+03:00", - "endtime": "2024-12-16 23:40:00 UTC+03:00", - "genres": "Çocuk", - "advisory": [], - "ratingid": "0", - "picture": "https://gbzeottvsc01.tvplus.com.tr:33207/CPS/images/universal/film/program/202412/20241210/22/2126379721525eb7f426_0_XL.jpg", - "isnpvr": "1", - "introduce": "DORA büyülü yağmur ormanlarında daha fazla fantastik macera için geri döndü! Dünyanın en olağanüstü küçük kaşifi ve en iyi arkadaşı Boots'a yeni eğlence ve yeni arkadaşlar keşfederken katılın; sınır gökyüzü! Haydi!", - "programType": "episode", - "channelid": "4353", - "broadcastType": "Banttan", - "seasonInfo": "2. Sezon - 212. Bölüm" - }, - { - "id": "195212803", - "name": "Kaşif Dora", - "starttime": "2024-12-16 23:40:00 UTC+03:00", - "endtime": "2024-12-16 23:50:00 UTC+03:00", - "genres": "Çocuk", - "advisory": [], - "ratingid": "0", - "picture": "https://gbzeottvsc01.tvplus.com.tr:33207/CPS/images/universal/film/program/202412/20241210/9/2126379721555eb7f426_0_XL.jpg", - "isnpvr": "1", - "introduce": "DORA büyülü yağmur ormanlarında daha fazla fantastik macera için geri döndü! Dünyanın en olağanüstü küçük kaşifi ve en iyi arkadaşı Boots'a yeni eğlence ve yeni arkadaşlar keşfederken katılın; sınır gökyüzü! Haydi!", - "programType": "episode", - "channelid": "4353", - "broadcastType": "Banttan", - "seasonInfo": "2. Sezon - 211. Bölüm" - }, - { - "id": "195212809", - "name": "Baby Shark's Big Show!", - "starttime": "2024-12-16 23:50:00 UTC+03:00", - "endtime": "2024-12-17 00:15:00 UTC+03:00", - "genres": "Çocuk", - "advisory": [], - "ratingid": "0", - "picture": "https://gbzeottvsc01.tvplus.com.tr:33207/CPS/images/universal/film/program/202412/20241210/12/2126379731585eb7f426_0_XL.jpg", - "isnpvr": "1", - "introduce": "Diğer tüm balıklar kış tatilinde şehir dışındayken, Baby ve William kendi yüzgeçli dostluk günlerini yaratırlar. Chucks, Balık İzcileri ile ilk gezisinde kamp yapmaya eşsiz bir yaklaşım getiriyor.", - "programType": "episode", - "channelid": "4353", - "broadcastType": "Banttan", - "seasonInfo": "2. Sezon - 224. Bölüm" - } - ], - [ - { - "id": "195272778", - "name": "Camgöz (2020)", - "starttime": "2024-12-17 00:15:00 UTC+03:00", - "endtime": "2024-12-17 00:20:00 UTC+03:00", - "genres": "Çocuk", - "advisory": [], - "ratingid": "0", - "picture": "https://gbzeottvsc01.tvplus.com.tr:33207/CPS/images/universal/film/program/202412/20241211/79/2126371378045eb9542c_0_XL.jpg", - "isnpvr": "1", - "introduce": "Max'in yarı köpekbalığı yarı köpek olan Camgöz adlı sıra dışı bir evcil hayvanı vardır. Max önce Camgöz'ü sır olarak saklamaya çalışsa da Foggy Springs'teki dostları, meraklı komşuları ve ailesi onun yeni, yaramaz dostunu er ya da geç fark edecektir.", - "programType": "episode", - "channelid": "4353", - "broadcastType": "Banttan", - "seasonInfo": "2. Sezon - 202. Bölüm" - }, - { - "id": "195272784", - "name": "Camgöz (2020)", - "starttime": "2024-12-17 00:20:00 UTC+03:00", - "endtime": "2024-12-17 00:25:00 UTC+03:00", - "genres": "Çocuk", - "advisory": [], - "ratingid": "0", - "picture": "https://gbzeottvsc01.tvplus.com.tr:33207/CPS/images/universal/film/program/202412/20241211/81/2126371378075eb9542c_0_XL.jpg", - "isnpvr": "1", - "introduce": "Camgöz'ün vahşi tarafı köpek parkındaki köpekleri korkutmaya devam etmektedir. Camgöz yeni arkadaşlar edinmek istiyorsa kendi iç sakinliğini bulmak zorunda kalacaktır.", - "programType": "episode", - "channelid": "4353", - "broadcastType": "Banttan", - "seasonInfo": "2. Sezon - 203. Bölüm" - }, - { - "id": "195272790", - "name": "Camgöz (2020)", - "starttime": "2024-12-17 00:25:00 UTC+03:00", - "endtime": "2024-12-17 00:35:00 UTC+03:00", - "genres": "Çocuk", - "advisory": [], - "ratingid": "0", - "picture": "https://gbzeottvsc01.tvplus.com.tr:33207/CPS/images/universal/film/program/202412/20241211/39/2126371378105eb9542c_0_XL.jpg", - "isnpvr": "1", - "introduce": "Camgöz yanlışlıkla akvaryumda sergilenen en yeni parçayı yiyince, Max ve Köpek Balığı Sürüsü akvaryumun sahibi Bay Ceviche farkına varmadan önce bir plan yapmak zorunda kalır.", - "programType": "episode", - "channelid": "4353", - "broadcastType": "Banttan", - "seasonInfo": "2. Sezon - 204. Bölüm" - }, - { - "id": "195272796", - "name": "Peppa Pig", - "starttime": "2024-12-17 00:35:00 UTC+03:00", - "endtime": "2024-12-17 00:40:00 UTC+03:00", - "genres": "Çocuk", - "advisory": [], - "ratingid": "0", - "picture": "https://gbzeottvsc01.tvplus.com.tr:33207/CPS/images/universal/film/program/202412/20241211/39/2126371388135eb9542c_0_XL.jpg", - "isnpvr": "1", - "introduce": "Peppa ve George, kuzenleri Chloé'nin evini ziyaret eder. Chloé onlara çok horlayan bir domuzun olduğu bir kukla gösterisi yapar. Baba Domuz ve Amca Domuz, horlamakla meşgul oldukları için bu gösteriyi kaçırır.", - "programType": "episode", - "channelid": "4353", - "broadcastType": "Banttan", - "seasonInfo": "1. Sezon - 141. Bölüm" - }, - { - "id": "195272802", - "name": "Peppa Pig", - "starttime": "2024-12-17 00:40:00 UTC+03:00", - "endtime": "2024-12-17 00:45:00 UTC+03:00", - "genres": "Çocuk", - "advisory": [], - "ratingid": "0", - "picture": "https://gbzeottvsc01.tvplus.com.tr:33207/CPS/images/universal/film/program/202412/20241211/4/2126371388165eb9542c_0_XL.jpg", - "isnpvr": "1", - "introduce": "Baba Domuz şişman olduğu için, Peppa ona egzersiz yapmasını söyler. Baba Domuz, sağlıklı olmak için her gün egzersiz yapmak gerektiğini öğrenince dehşete düşer.", - "programType": "episode", - "channelid": "4353", - "broadcastType": "Banttan", - "seasonInfo": "1. Sezon - 142. Bölüm" - }, - { - "id": "195273960", - "name": "Peppa Pig", - "starttime": "2024-12-17 00:45:00 UTC+03:00", - "endtime": "2024-12-17 00:50:00 UTC+03:00", - "genres": "Çocuk", - "advisory": [], - "ratingid": "0", - "picture": "https://gbzeottvsc01.tvplus.com.tr:33207/CPS/images/universal/film/program/202412/20241211/4/2126371388195eb9542c_0_XL.jpg", - "isnpvr": "1", - "introduce": "Peppa, annesi, babası ve abisi George'la yaşayan küçük bir domuzdur. Peppa oyun oynamayı, şık giyinmeyi, uzun seyahatleri ve çamurda zıplamayı sever.", - "programType": "episode", - "channelid": "4353", - "broadcastType": "Banttan", - "seasonInfo": "1. Sezon - 143. Bölüm" - }, - { - "id": "195273966", - "name": "Peppa Pig", - "starttime": "2024-12-17 00:50:00 UTC+03:00", - "endtime": "2024-12-17 00:55:00 UTC+03:00", - "genres": "Çocuk", - "advisory": [], - "ratingid": "0", - "picture": "https://gbzeottvsc01.tvplus.com.tr:33207/CPS/images/universal/film/program/202412/20241211/56/2126371388225eb9542c_0_XL.jpg", - "isnpvr": "1", - "introduce": "Peppa ve George parka gider. Peppa'nın arkadaşları da oradadır. Peppa sallanmayı çok seviyordur ama George yüksekten korktuğu için sevmiyordur. Baba Domuz, George'a yüksek kaydıraktan kayması için yardım eder ama George kayarken sıkışır.", - "programType": "episode", - "channelid": "4353", - "broadcastType": "Banttan", - "seasonInfo": "1. Sezon - 144. Bölüm" - }, - { - "id": "195273972", - "name": "Minik Şef'in Yemek Programı", - "starttime": "2024-12-17 00:55:00 UTC+03:00", - "endtime": "2024-12-17 01:15:00 UTC+03:00", - "genres": "Çocuk", - "advisory": [], - "ratingid": "0", - "picture": "https://gbzeottvsc01.tvplus.com.tr:33207/CPS/images/universal/film/program/202412/20241211/84/2126371388255eb9542c_0_XL.jpg", - "isnpvr": "1", - "introduce": "Şef, Atıştırmalık Molası sırasında Stump Band'e en iyi fıstık ezmeli ve jöleli sandviçleri yapar. Bugün Patates Günü, Henry'nin en sevdiği bayram! Şef, Henry'nin patates yemeğini yapar ancak Henry yemeğin adını hatırlamaz!", - "programType": "episode", - "channelid": "4353", - "broadcastType": "Banttan", - "seasonInfo": "2. Sezon - 204. Bölüm" - }, - { - "id": "195273978", - "name": "Barbapapa Ailesi", - "starttime": "2024-12-17 01:15:00 UTC+03:00", - "endtime": "2024-12-17 01:40:00 UTC+03:00", - "genres": "Çocuk", - "advisory": [], - "ratingid": "0", - "picture": "https://gbzeottvsc01.tvplus.com.tr:33207/CPS/images/universal/film/program/202412/20241211/70/2126371388285eb9542c_0_XL.jpg", - "isnpvr": "1", - "introduce": "En popüler ailenin dünya ekranlarına göz kamaştırıcı dönüşü! BARBAPAPA. Büyük mutlu bir aile! Barbapapalar için rutin diye bir şey yoktur: her gün sürprizlerle dolu neşeli bir maceradır!", - "programType": "episode", - "channelid": "4353", - "broadcastType": "Banttan", - "seasonInfo": "2. Sezon - 211. Bölüm" - }, - { - "id": "195273984", - "name": "Barbapapa Ailesi", - "starttime": "2024-12-17 01:40:00 UTC+03:00", - "endtime": "2024-12-17 02:00:00 UTC+03:00", - "genres": "Çocuk", - "advisory": [], - "ratingid": "0", - "picture": "https://gbzeottvsc01.tvplus.com.tr:33207/CPS/images/universal/film/program/202412/20241211/34/2126371388315eb9542c_0_XL.jpg", - "isnpvr": "1", - "introduce": "Barbalala bir paket alır ve içinde SQUEAKIES adını verdiği küçük pembe hayvanlar keşfeder. Barbabravo, Barbalala ve Barbasüslü kardeşlerinin kendileriyle dalga geçmesinden bıkmışlardır.", - "programType": "episode", - "channelid": "4353", - "broadcastType": "Banttan", - "seasonInfo": "2. Sezon - 212. Bölüm" - }, - { - "id": "195273990", - "name": "Blaze ve Yol Canavarları", - "starttime": "2024-12-17 02:00:00 UTC+03:00", - "endtime": "2024-12-17 02:25:00 UTC+03:00", - "genres": "Çocuk", - "advisory": [], - "ratingid": "0", - "picture": "https://gbzeottvsc01.tvplus.com.tr:33207/CPS/images/universal/film/program/202412/20241211/36/2126371388345eb9542c_0_XL.jpg", - "isnpvr": "1", - "introduce": "Yıldızların altında bir kamp! Blaze, AJ, Starla, Crusher ve Pickle, en şaşırtıcı hikayeleri anlatmak için kamp ateşinin etrafında toplandı! Peki ya en iyi kısmı ne? En iyi hikayeyi kim anlatırsa son lokumu kazanacak!", - "programType": "episode", - "channelid": "4353", - "broadcastType": "Banttan", - "seasonInfo": "6. Sezon - 623. Bölüm" - }, - { - "id": "195273996", - "name": "Blaze ve Yol Canavarları", - "starttime": "2024-12-17 02:25:00 UTC+03:00", - "endtime": "2024-12-17 02:50:00 UTC+03:00", - "genres": "Çocuk", - "advisory": [], - "ratingid": "0", - "picture": "https://gbzeottvsc01.tvplus.com.tr:33207/CPS/images/universal/film/program/202412/20241211/84/2126371398375eb9542c_0_XL.jpg", - "isnpvr": "1", - "introduce": "Blaze'in süper güçleri onu SÜPER BLAZE'e dönüştürür! Hem de tam zamanında. Axle Şehri'ne uzaydan botlar iner ve ortalığı karıştırırlar!", - "programType": "episode", - "channelid": "4353", - "broadcastType": "Banttan", - "seasonInfo": "6. Sezon - 624. Bölüm" - }, - { - "id": "195274002", - "name": "Paw Patrol", - "starttime": "2024-12-17 02:50:00 UTC+03:00", - "endtime": "2024-12-17 03:10:00 UTC+03:00", - "genres": "Çocuk", - "advisory": [], - "ratingid": "0", - "picture": "https://gbzeottvsc01.tvplus.com.tr:33207/CPS/images/universal/film/program/202412/20241211/31/2126371398405eb9542c_0_XL.jpg", - "isnpvr": "1", - "introduce": "Kışın, bir buz fırtınası macera körfezi'ni birbirine katıyor Başkan Goodway, başkan Humdinger'in basketbol takımına meydan okuyor. Ama başkan'ın unuttuğu bir şey var--bir basketbol takımı!", - "programType": "episode", - "channelid": "4353", - "broadcastType": "Banttan", - "seasonInfo": "2. Sezon - 208. Bölüm" - }, - { - "id": "195274008", - "name": "Paw Patrol", - "starttime": "2024-12-17 03:10:00 UTC+03:00", - "endtime": "2024-12-17 03:30:00 UTC+03:00", - "genres": "Çocuk", - "advisory": [], - "ratingid": "0", - "picture": "https://gbzeottvsc01.tvplus.com.tr:33207/CPS/images/universal/film/program/202412/20241211/24/2126371398435eb9542c_0_XL.jpg", - "isnpvr": "1", - "introduce": "Çiftçi Al ve çiftçi Yumi evleniyor! Skye'ın en sevdiği gösteri pilotu Ace Soarenson, muhteşem bir hava şovu içinmacera körfezi'ne gelir.Ama tam varacağı sıtrada motoru arıza yapar!", - "programType": "episode", - "channelid": "4353", - "broadcastType": "Banttan", - "seasonInfo": "2. Sezon - 209. Bölüm" - }, - { - "id": "195274014", - "name": "Baby Shark's Big Show", - "starttime": "2024-12-17 03:30:00 UTC+03:00", - "endtime": "2024-12-17 03:55:00 UTC+03:00", - "genres": "Çocuk", - "advisory": [], - "ratingid": "0", - "picture": "https://gbzeottvsc01.tvplus.com.tr:33207/CPS/images/universal/film/program/202412/20241211/52/2126371398465eb9542c_0_XL.jpg", - "isnpvr": "1", - "introduce": "Baby Shark ve William eğlenirken bir su altı fırtınası başlayınca içeride macera yaşayıp yaşayamayacaklarından şüphe duyarlar. William ve Vola Genç Bilim İnsanı Yarışması'na katılırlar ve rekabetçi ruhları onları zorlu bir duruma sokar.", - "programType": "episode", - "channelid": "4353", - "broadcastType": "Banttan", - "seasonInfo": "1. Sezon - 113. Bölüm" - }, - { - "id": "195274020", - "name": "BARBAPAPA Ailesi", - "starttime": "2024-12-17 03:55:00 UTC+03:00", - "endtime": "2024-12-17 04:15:00 UTC+03:00", - "genres": "Çocuk", - "advisory": [], - "ratingid": "0", - "picture": "https://gbzeottvsc01.tvplus.com.tr:33207/CPS/images/universal/film/program/202412/20241211/94/2126371398495eb9542c_0_XL.jpg", - "isnpvr": "1", - "introduce": "Barbataşkın, gizli ajan gibi, Barbapapa'nın pastasını kimin çaldığını bulmak için aletleriyle bir soruşturmaya başlar. Barbalala, evin etrafında dev bir tavuk duyduğuna emindir. Barbabebekler, nöbet tutmak için organize olurlar.", - "programType": "episode", - "channelid": "4353", - "broadcastType": "Banttan", - "seasonInfo": "1. Sezon - 117. Bölüm" - }, - { - "id": "195274026", - "name": "Ayı Paddington'un Maceraları", - "starttime": "2024-12-17 04:15:00 UTC+03:00", - "endtime": "2024-12-17 04:40:00 UTC+03:00", - "genres": "Çocuk", - "advisory": [], - "ratingid": "0", - "picture": "https://gbzeottvsc01.tvplus.com.tr:33207/CPS/images/universal/film/program/202412/20241211/33/2126371398525eb9542c_0_XL.jpg", - "isnpvr": "1", - "introduce": "Mağaradaki garip sesleri ne çıkarıyor? Jonathan denizkızı olduğunu düşünüyor, ama Paddington emin değil. Judy sahilde bir fosil bulmak istiyor, onun dışında herkesin şansı yaver gidiyor, Paddington yardım edebilir mi?", - "programType": "episode", - "channelid": "4353", - "broadcastType": "Banttan", - "seasonInfo": "3. Sezon - 308. Bölüm" - }, - { - "id": "195274032", - "name": "Rubble ve Ekibi", - "starttime": "2024-12-17 04:40:00 UTC+03:00", - "endtime": "2024-12-17 05:00:00 UTC+03:00", - "genres": "Çocuk", - "advisory": [], - "ratingid": "0", - "picture": "https://gbzeottvsc01.tvplus.com.tr:33207/CPS/images/universal/film/program/202412/20241211/67/2126371398555eb9542c_0_XL.jpg", - "isnpvr": "1", - "introduce": "Rubble ve Ekibi, Bakkal Gabriel'e güzel bir sahil günü yaşatmak istiyor... buna yepyeni dönme dolaba binmek de dahil! Çiftçi Zoe'nin hayvanları rahatlamaya ihtiyaç duyduğunda, köpüşler Koç Karima ile yoga yapacakları mükemmel bir yer inşa ediyor.", - "programType": "episode", - "channelid": "4353", - "broadcastType": "Banttan", - "seasonInfo": "2. Sezon - 209. Bölüm" - }, - { - "id": "195274038", - "name": "Kaşif Dora", - "starttime": "2024-12-17 05:00:00 UTC+03:00", - "endtime": "2024-12-17 05:10:00 UTC+03:00", - "genres": "Çocuk", - "advisory": [], - "ratingid": "0", - "picture": "https://gbzeottvsc01.tvplus.com.tr:33207/CPS/images/universal/film/program/202412/20241211/31/2126371408585eb9542c_0_XL.jpg", - "isnpvr": "1", - "introduce": "DORA büyülü yağmur ormanlarında daha fazla fantastik macera için geri döndü! Dünyanın en olağanüstü küçük kaşifi ve en iyi arkadaşı Boots'a yeni eğlence ve yeni arkadaşlar keşfederken katılın; sınır gökyüzü! Haydi!", - "programType": "episode", - "channelid": "4353", - "broadcastType": "Banttan", - "seasonInfo": "2. Sezon - 212. Bölüm" - }, - { - "id": "195274044", - "name": "Kaşif Dora", - "starttime": "2024-12-17 05:10:00 UTC+03:00", - "endtime": "2024-12-17 05:25:00 UTC+03:00", - "genres": "Çocuk", - "advisory": [], - "ratingid": "0", - "picture": "https://gbzeottvsc01.tvplus.com.tr:33207/CPS/images/universal/film/program/202412/20241211/48/2126371408615eb9542c_0_XL.jpg", - "isnpvr": "1", - "introduce": "DORA büyülü yağmur ormanlarında daha fazla fantastik macera için geri döndü! Dünyanın en olağanüstü küçük kaşifi ve en iyi arkadaşı Boots'a yeni eğlence ve yeni arkadaşlar keşfederken katılın; sınır gökyüzü! Haydi!", - "programType": "episode", - "channelid": "4353", - "broadcastType": "Banttan", - "seasonInfo": "2. Sezon - 211. Bölüm" - }, - { - "id": "195274050", - "name": "Blaze ve Yol Canavarları", - "starttime": "2024-12-17 05:25:00 UTC+03:00", - "endtime": "2024-12-17 05:45:00 UTC+03:00", - "genres": "Çocuk", - "advisory": [], - "ratingid": "0", - "picture": "https://gbzeottvsc01.tvplus.com.tr:33207/CPS/images/universal/film/program/202412/20241211/97/2126371408645eb9542c_0_XL.jpg", - "isnpvr": "1", - "introduce": "Crusher son hilelerinden biriyle Blaze'i uzağa gönderdiğinde, Blaze'in küçük kız kardeşi Sparkle günü kurtarmaya ve kardeşini zamanında geri getirmeye gelir, böylece Takım Çalışması Kupasını kazanmak için birlikte yarışabilirler!", - "programType": "episode", - "channelid": "4353", - "broadcastType": "Banttan", - "seasonInfo": "7. Sezon - 701. Bölüm" - }, - { - "id": "195274056", - "name": "Minik Şef'in Yemek Programı", - "starttime": "2024-12-17 05:45:00 UTC+03:00", - "endtime": "2024-12-17 06:10:00 UTC+03:00", - "genres": "Çocuk", - "advisory": [], - "ratingid": "0", - "picture": "https://gbzeottvsc01.tvplus.com.tr:33207/CPS/images/universal/film/program/202412/20241211/17/2126371408675eb9542c_0_XL.jpg", - "isnpvr": "1", - "introduce": "Bonzo, Şef'in ev yapımı dondurmasından hiç alamayınca, Şef dondurma makinesiyle daha fazlasını yapmaya çalışıyor. Şef ve Olly taze makarna yaptı, bu yüzden Brody Bambino'nun yavaş pişirilen sosunu yapıyorlar - yavaş olması önemli!", - "programType": "episode", - "channelid": "4353", - "broadcastType": "Banttan", - "seasonInfo": "2. Sezon - 207. Bölüm" - }, - { - "id": "195274062", - "name": "Baby Shark's Big Show!", - "starttime": "2024-12-17 06:10:00 UTC+03:00", - "endtime": "2024-12-17 06:30:00 UTC+03:00", - "genres": "Çocuk", - "advisory": [], - "ratingid": "0", - "picture": "https://gbzeottvsc01.tvplus.com.tr:33207/CPS/images/universal/film/program/202412/20241211/39/2126371408705eb9542c_0_XL.jpg", - "isnpvr": "1", - "introduce": "Baby, aile fotoğrafı gününde yanlışlıkla ortalığı kirletir ve ailesi öğrenmeden önce temizlenmek için olağanüstü çaba sarf eder. Penny ve Wallace iki balıklı bir yetenek gösterisinde sahne almak için bir araya gelir.", - "programType": "episode", - "channelid": "4353", - "broadcastType": "Banttan", - "seasonInfo": "2. Sezon - 212. Bölüm" - }, - { - "id": "195274068", - "name": "Camgöz (2020)", - "starttime": "2024-12-17 06:30:00 UTC+03:00", - "endtime": "2024-12-17 06:40:00 UTC+03:00", - "genres": "Çocuk", - "advisory": [], - "ratingid": "0", - "picture": "https://gbzeottvsc01.tvplus.com.tr:33207/CPS/images/universal/film/program/202412/20241211/43/2126371408735eb9542c_0_XL.jpg", - "isnpvr": "1", - "introduce": "Max'in Camgöz adında yarı köpek balığı yarı köpek eşsiz bir evcil havyanı vardır. İlk başlarda Camgöz'ü saklamaya çalışsa da Sisli Pınarlar'da, en iyi arkadaşlar, meraklı komşular ve hatta Max'in ailesi bile yaramaz yeni arkadaşını fark edecektir.", - "programType": "episode", - "channelid": "4353", - "broadcastType": "Banttan", - "seasonInfo": "1. Sezon - 110. Bölüm" - }, - { - "id": "195274074", - "name": "Camgöz (2020)", - "starttime": "2024-12-17 06:40:00 UTC+03:00", - "endtime": "2024-12-17 06:45:00 UTC+03:00", - "genres": "Çocuk", - "advisory": [], - "ratingid": "0", - "picture": "https://gbzeottvsc01.tvplus.com.tr:33207/CPS/images/universal/film/program/202412/20241211/80/2126371418765eb9542c_0_XL.jpg", - "isnpvr": "1", - "introduce": "Camgöz balık tutma gezisinde bir Büyük Beyaz Köpek Balığı'yla tanışınca Max, en iyi arkadaşının vahşi içgüdülerine yenileceğinden korkar.", - "programType": "episode", - "channelid": "4353", - "broadcastType": "Banttan", - "seasonInfo": "1. Sezon - 111. Bölüm" - }, - { - "id": "195274080", - "name": "Camgöz (2020)", - "starttime": "2024-12-17 06:45:00 UTC+03:00", - "endtime": "2024-12-17 06:50:00 UTC+03:00", - "genres": "Çocuk", - "advisory": [], - "ratingid": "0", - "picture": "https://gbzeottvsc01.tvplus.com.tr:33207/CPS/images/universal/film/program/202412/20241211/65/2126371418795eb9542c_0_XL.jpg", - "isnpvr": "1", - "introduce": "Max'in Camgöz adında yarı köpek balığı yarı köpek eşsiz bir evcil havyanı vardır. İlk başlarda Camgöz'ü saklamaya çalışsa da Sisli Pınarlar'da, en iyi arkadaşlar, meraklı komşular ve hatta Max'in ailesi bile yaramaz yeni arkadaşını fark edecektir.", - "programType": "episode", - "channelid": "4353", - "broadcastType": "Banttan", - "seasonInfo": "1. Sezon - 112. Bölüm" - }, - { - "id": "195274086", - "name": "Camgöz (2020)", - "starttime": "2024-12-17 06:50:00 UTC+03:00", - "endtime": "2024-12-17 07:00:00 UTC+03:00", - "genres": "Çocuk", - "advisory": [], - "ratingid": "0", - "picture": "https://gbzeottvsc01.tvplus.com.tr:33207/CPS/images/universal/film/program/202412/20241211/75/2126371418825eb9542c_0_XL.jpg", - "isnpvr": "1", - "introduce": "Max'in Camgöz adında yarı köpek balığı yarı köpek eşsiz bir evcil havyanı vardır. İlk başlarda Camgöz'ü saklamaya çalışsa da Sisli Pınarlar'da, en iyi arkadaşlar, meraklı komşular ve hatta Max'in ailesi bile yaramaz yeni arkadaşını fark edecektir.", - "programType": "episode", - "channelid": "4353", - "broadcastType": "Banttan", - "seasonInfo": "1. Sezon - 113. Bölüm" - }, - { - "id": "195274092", - "name": "Paw Patrol", - "starttime": "2024-12-17 07:00:00 UTC+03:00", - "endtime": "2024-12-17 07:20:00 UTC+03:00", - "genres": "Çocuk", - "advisory": [], - "ratingid": "0", - "picture": "https://gbzeottvsc01.tvplus.com.tr:33207/CPS/images/universal/film/program/202412/20241211/3/2126371418855eb9542c_0_XL.jpg", - "isnpvr": "1", - "introduce": "Gezgin Travis'i kurtarmaya çalışırken Ryder ve yavruları efsanevi Filler Kaplıcası'na rastlar. Otis Amca altın bulduğuna inanır ama Korsan Sid, Otis'in iddiasının üzerine atlamaya çalışınca Otis batık bir nakliye konteynerinde mahsur kalır.", - "programType": "episode", - "channelid": "4353", - "broadcastType": "Banttan", - "seasonInfo": "10. Sezon - 1019. Bölüm" - }, - { - "id": "195274098", - "name": "Köpecik Pit Ekibi", - "starttime": "2024-12-17 07:20:00 UTC+03:00", - "endtime": "2024-12-17 07:30:00 UTC+03:00", - "genres": "Çocuk", - "advisory": [], - "ratingid": "0", - "picture": "https://gbzeottvsc01.tvplus.com.tr:33207/CPS/images/universal/film/program/202412/20241211/21/2126371418885eb9542c_0_XL.jpg", - "isnpvr": "1", - "introduce": "PAW Patrol okul öncesi programı ve altı tane köpekçik baş rolü paylaşıyor: Chase, Marshall, Rocky, Zuma, Rubble ve Skye, başlarında da teknoloji meraklısı 10 yaşında bir çocuk olan Ryder var.", - "programType": "episode", - "channelid": "4353", - "broadcastType": "Banttan", - "seasonInfo": "4. Sezon - 415. Bölüm" - }, - { - "id": "195274104", - "name": "Rubble ve Ekibi", - "starttime": "2024-12-17 07:30:00 UTC+03:00", - "endtime": "2024-12-17 07:55:00 UTC+03:00", - "genres": "Çocuk", - "advisory": [], - "ratingid": "0", - "picture": "https://gbzeottvsc01.tvplus.com.tr:33207/CPS/images/universal/film/program/202412/20241211/96/2126371418915eb9542c_0_XL.jpg", - "isnpvr": "1", - "introduce": "Rubble ve Ekibinin en sevdiği kitap serisine yeni eklemeler var! Kütüphanede onlara yer kalmayınca, yavruların yaratıcı olması gerek. Yavruların Moloztaş için bir sürprizi var; atıştırmalık dağıtıcısı! Rubble öğrenmeden önce bitirebilecekler mi?", - "programType": "episode", - "channelid": "4353", - "broadcastType": "Banttan", - "seasonInfo": "2. Sezon - 204. Bölüm" - }, - { - "id": "195274110", - "name": "Peppa Pig", - "starttime": "2024-12-17 07:55:00 UTC+03:00", - "endtime": "2024-12-17 08:00:00 UTC+03:00", - "genres": "Çocuk", - "advisory": [], - "ratingid": "0", - "picture": "https://gbzeottvsc01.tvplus.com.tr:33207/CPS/images/universal/film/program/202412/20241211/79/2126371418945eb9542c_0_XL.jpg", - "isnpvr": "1", - "introduce": "Peppa, annesi, babası ve abisi George'la yaşayan küçük bir domuzdur. Peppa oyun oynamayı, şık giyinmeyi, uzun seyahatleri ve çamurda zıplamayı sever.", - "programType": "episode", - "channelid": "4353", - "broadcastType": "Banttan", - "seasonInfo": "1. Sezon - 116. Bölüm" - }, - { - "id": "195274116", - "name": "Peppa Pig", - "starttime": "2024-12-17 08:00:00 UTC+03:00", - "endtime": "2024-12-17 08:05:00 UTC+03:00", - "genres": "Çocuk", - "advisory": [], - "ratingid": "0", - "picture": "https://gbzeottvsc01.tvplus.com.tr:33207/CPS/images/universal/film/program/202412/20241211/98/2126371418975eb9542c_0_XL.jpg", - "isnpvr": "1", - "introduce": "Peppa ve George bir kostüm partisi düzenler. Peppa bir masal prensesi, George da bir dinozor olur. Peppa, en iyi kostümü giyen arkadaşını seçmelidir.", - "programType": "episode", - "channelid": "4353", - "broadcastType": "Banttan", - "seasonInfo": "1. Sezon - 138. Bölüm" - }, - { - "id": "195274122", - "name": "Peppa Pig", - "starttime": "2024-12-17 08:05:00 UTC+03:00", - "endtime": "2024-12-17 08:10:00 UTC+03:00", - "genres": "Çocuk", - "advisory": [], - "ratingid": "0", - "picture": "https://gbzeottvsc01.tvplus.com.tr:33207/CPS/images/universal/film/program/202412/20241211/58/2126371429005eb9542c_0_XL.jpg", - "isnpvr": "1", - "introduce": "Peppa ve ailesi müzeye giderler. Peppa kendini Kral ve Kraliçe odasındaki bir Kraliçe gibi hayal eder. George ise kendisinin Dinozor Odası'ndaki bir dinozor olduğunu düşünür.", - "programType": "episode", - "channelid": "4353", - "broadcastType": "Banttan", - "seasonInfo": "1. Sezon - 139. Bölüm" - }, - { - "id": "195274128", - "name": "Peppa Pig", - "starttime": "2024-12-17 08:10:00 UTC+03:00", - "endtime": "2024-12-17 08:15:00 UTC+03:00", - "genres": "Çocuk", - "advisory": [], - "ratingid": "0", - "picture": "https://gbzeottvsc01.tvplus.com.tr:33207/CPS/images/universal/film/program/202412/20241211/5/2126371429035eb9542c_0_XL.jpg", - "isnpvr": "1", - "introduce": "Peppa, annesi, babası ve abisi George'la yaşayan küçük bir domuzdur. Peppa oyun oynamayı, şık giyinmeyi, uzun seyahatleri ve çamurda zıplamayı sever.", - "programType": "episode", - "channelid": "4353", - "broadcastType": "Banttan", - "seasonInfo": "1. Sezon - 140. Bölüm" - }, - { - "id": "195274134", - "name": "Anna ve Dostları", - "starttime": "2024-12-17 08:15:00 UTC+03:00", - "endtime": "2024-12-17 08:20:00 UTC+03:00", - "genres": "Çocuk", - "advisory": [], - "ratingid": "0", - "picture": "https://gbzeottvsc01.tvplus.com.tr:33207/CPS/images/universal/film/program/202412/20241211/68/2126371429065eb9542c_0_XL.jpg", - "isnpvr": "1", - "introduce": "Anna ve Froga eski salıncağı bulduklarında onu elma ağacına asmak için heyecanlanırlar. Ancak bağlayacakları ipler kaybolmuştur! İki arkadaşın kayıp ipleri araması düşündüklerinden daha zor bir hal alır!", - "programType": "episode", - "channelid": "4353", - "broadcastType": "Banttan", - "seasonInfo": "1. Sezon - 102. Bölüm" - }, - { - "id": "195274140", - "name": "Anna ve Dostları", - "starttime": "2024-12-17 08:20:00 UTC+03:00", - "endtime": "2024-12-17 08:30:00 UTC+03:00", - "genres": "Çocuk", - "advisory": [], - "ratingid": "0", - "picture": "https://gbzeottvsc01.tvplus.com.tr:33207/CPS/images/universal/film/program/202412/20241211/25/2126371429095eb9542c_0_XL.jpg", - "isnpvr": "1", - "introduce": "Froga çaresizdir. En sevdiği oyuncağı Süper Çakıl kayboldu! Şimdi Anna ve Ron, dedektifler olarak Froga için çalışıyor. Düşünceli Christopher'ın hediyesi sayesinde Froga kayıp Süper taşını bulur!", - "programType": "episode", - "channelid": "4353", - "broadcastType": "Banttan", - "seasonInfo": "1. Sezon - 103. Bölüm" - }, - { - "id": "195274146", - "name": "Minik Şef", - "starttime": "2024-12-17 08:30:00 UTC+03:00", - "endtime": "2024-12-17 08:50:00 UTC+03:00", - "genres": "Çocuk", - "advisory": [], - "ratingid": "0", - "picture": "https://gbzeottvsc01.tvplus.com.tr:33207/CPS/images/universal/film/program/202412/20241211/69/2126371429125eb9542c_0_XL.jpg", - "isnpvr": "1", - "introduce": "Minik Şef yağmurlu bir gün Peynirli Makaroni yapar ama akan bir çatı ağaç kütüğü mutfağında kaos yaratır! Minik Şef korsan patates yahnisi pişiriyor ve özel malzemeyi bulmak için bir hazine haritası kullanıyor.", - "programType": "episode", - "channelid": "4353", - "broadcastType": "Banttan", - "seasonInfo": "1. Sezon - 108. Bölüm" - }, - { - "id": "195274152", - "name": "Minik Şef'in Yemek Programı", - "starttime": "2024-12-17 08:50:00 UTC+03:00", - "endtime": "2024-12-17 09:00:00 UTC+03:00", - "genres": "Çocuk", - "advisory": [], - "ratingid": "0", - "picture": "https://gbzeottvsc01.tvplus.com.tr:33207/CPS/images/universal/film/program/202412/20241211/89/2126371429155eb9542c_0_XL.jpg", - "isnpvr": "1", - "introduce": "Dünyanın en küçük şefi tarafından yaratılan, dünyanın en küçük yemek programında, dünyanın en küçük yemekleri.", - "programType": "episode", - "channelid": "4353", - "broadcastType": "Banttan", - "seasonInfo": "2. Sezon - 211. Bölüm" - }, - { - "id": "195274158", - "name": "Blaze ve Yol Canavarları", - "starttime": "2024-12-17 09:00:00 UTC+03:00", - "endtime": "2024-12-17 09:25:00 UTC+03:00", - "genres": "Çocuk", - "advisory": [], - "ratingid": "0", - "picture": "https://gbzeottvsc01.tvplus.com.tr:33207/CPS/images/universal/film/program/202412/20241211/65/2126371429185eb9542c_0_XL.jpg", - "isnpvr": "1", - "introduce": "Blaze Kamyon Topu diye yeni ve heyecan verici bir spor keşfeder. Ezici ve ahbapları ona maç teklifi edince Blaze'in büyük maçtan önce bir takım kurmak için bütün Aks Şehri'ni alt üst etmesi gerekir.", - "programType": "episode", - "channelid": "4353", - "broadcastType": "Banttan", - "seasonInfo": "1. Sezon - 110. Bölüm" - }, - { - "id": "195274164", - "name": "Hamster Diyarı", - "starttime": "2024-12-17 09:25:00 UTC+03:00", - "endtime": "2024-12-17 09:45:00 UTC+03:00", - "genres": "Çocuk", - "advisory": [], - "ratingid": "0", - "picture": "https://gbzeottvsc01.tvplus.com.tr:33207/CPS/images/universal/film/program/202412/20241211/4/2126371429215eb9542c_0_XL.jpg", - "isnpvr": "1", - "introduce": "Hamsterlar internetteki popüler hayvan videolarıyla yarışmaya çalışır ve sonunda viral olurlar. Mondo yeni süper gücü (fırtınalara neden olmak) ve arkadaşı arasında seçim yapmak zorundadır.", - "programType": "episode", - "channelid": "4353", - "broadcastType": "Banttan", - "seasonInfo": "1. Sezon - 110. Bölüm" - }, - { - "id": "195274170", - "name": "Paw Patrol", - "starttime": "2024-12-17 09:45:00 UTC+03:00", - "endtime": "2024-12-17 10:10:00 UTC+03:00", - "genres": "Çocuk", - "advisory": [], - "ratingid": "0", - "picture": "https://gbzeottvsc01.tvplus.com.tr:33207/CPS/images/universal/film/program/202412/20241211/46/2126371439245eb9542c_0_XL.jpg", - "isnpvr": "1", - "introduce": "Vali Humdinger'ın en büyük kavun yarışmasını kazanma planı kavunu sekerek uzaklaşıp kasabayı birbirine katınca suya düşer! Çiftçi Al'ın kamyoneti yıkık bir köprüde mahsur kalır, onu kurtarmak da Köpekçiklere kalır.", - "programType": "episode", - "channelid": "4353", - "broadcastType": "Banttan", - "seasonInfo": "6. Sezon - 603. Bölüm" - }, - { - "id": "195274176", - "name": "Paw Patrol", - "starttime": "2024-12-17 10:10:00 UTC+03:00", - "endtime": "2024-12-17 10:30:00 UTC+03:00", - "genres": "Çocuk", - "advisory": [], - "ratingid": "0", - "picture": "https://gbzeottvsc01.tvplus.com.tr:33207/CPS/images/universal/film/program/202412/20241211/77/2126371439275eb9542c_0_XL.jpg", - "isnpvr": "1", - "introduce": "Yumi'nin nefis balı ve arı kovanları çiftlikten kaybolunca ortalık karışır! Vali Goodway'in cüzdanı içinde Çikiletta'yla birlikte kaybolur!", - "programType": "episode", - "channelid": "4353", - "broadcastType": "Banttan", - "seasonInfo": "6. Sezon - 604. Bölüm" - }, - { - "id": "195274182", - "name": "Köpecik Pit Ekibi", - "starttime": "2024-12-17 10:30:00 UTC+03:00", - "endtime": "2024-12-17 10:40:00 UTC+03:00", - "genres": "Çocuk", - "advisory": [], - "ratingid": "0", - "picture": "https://gbzeottvsc01.tvplus.com.tr:33207/CPS/images/universal/film/program/202412/20241211/19/2126371439305eb9542c_0_XL.jpg", - "isnpvr": "1", - "introduce": "PAW Patrol okul öncesi programı ve altı tane köpekçik baş rolü paylaşıyor: Chase, Marshall, Rocky, Zuma, Rubble ve Skye, başlarında da teknoloji meraklısı 10 yaşında bir çocuk olan Ryder var.", - "programType": "episode", - "channelid": "4353", - "broadcastType": "Banttan", - "seasonInfo": "1. Sezon - 106. Bölüm" - }, - { - "id": "195274188", - "name": "Rubble ve Ekibi", - "starttime": "2024-12-17 10:40:00 UTC+03:00", - "endtime": "2024-12-17 11:05:00 UTC+03:00", - "genres": "Çocuk", - "advisory": [], - "ratingid": "0", - "picture": "https://gbzeottvsc01.tvplus.com.tr:33207/CPS/images/universal/film/program/202412/20241211/95/2126371439335eb9542c_0_XL.jpg", - "isnpvr": "1", - "introduce": "Kütüphane inşaatı arılarla dolup taşıyor! Bu da ekstra güzel bir inşaat çözümü gerektiriyor. Büyükbaba, Charger'a büyük dans yarışması için en iyi hareketlerini öğretiyor. Ama kaçan bir disko topu onlara birinciliğe mal olacak mı?", - "programType": "episode", - "channelid": "4353", - "broadcastType": "Banttan", - "seasonInfo": "1. Sezon - 118. Bölüm" - }, - { - "id": "195274194", - "name": "Rubble ve Ekibi", - "starttime": "2024-12-17 11:05:00 UTC+03:00", - "endtime": "2024-12-17 11:30:00 UTC+03:00", - "genres": "Çocuk", - "advisory": [], - "ratingid": "0", - "picture": "https://gbzeottvsc01.tvplus.com.tr:33207/CPS/images/universal/film/program/202412/20241211/30/2126371439365eb9542c_0_XL.jpg", - "isnpvr": "1", - "introduce": "Ekip Lucas ve Lily için özel bir limonata standı kurduktan sonra, ekşi bir Hız Ustası onu İnşaatçı Koyu'na yuvarlıyor! Kunduz Crunchy neden yolun karşısına geçiyor? Çünkü Rubble ve Ekibi karşıya geçmesi için bir köprü inşa ediyor!", - "programType": "episode", - "channelid": "4353", - "broadcastType": "Banttan", - "seasonInfo": "1. Sezon - 119. Bölüm" - }, - { - "id": "195274200", - "name": "Kaşif Dora", - "starttime": "2024-12-17 11:30:00 UTC+03:00", - "endtime": "2024-12-17 11:40:00 UTC+03:00", - "genres": "Çocuk", - "advisory": [], - "ratingid": "0", - "picture": "https://gbzeottvsc01.tvplus.com.tr:33207/CPS/images/universal/film/program/202412/20241211/90/2126371439395eb9542c_0_XL.jpg", - "isnpvr": "1", - "introduce": "DORA büyülü yağmur ormanlarında daha fazla fantastik macera için geri döndü! Dünyanın en olağanüstü küçük kaşifi ve en iyi arkadaşı Boots'a yeni eğlence ve yeni arkadaşlar keşfederken katılın; sınır gökyüzü! Haydi!", - "programType": "episode", - "channelid": "4353", - "broadcastType": "Banttan", - "seasonInfo": "2. Sezon - 212. Bölüm" - }, - { - "id": "195274206", - "name": "Kaşif Dora", - "starttime": "2024-12-17 11:40:00 UTC+03:00", - "endtime": "2024-12-17 11:50:00 UTC+03:00", - "genres": "Çocuk", - "advisory": [], - "ratingid": "0", - "picture": "https://gbzeottvsc01.tvplus.com.tr:33207/CPS/images/universal/film/program/202412/20241211/77/2126371439425eb9542c_0_XL.jpg", - "isnpvr": "1", - "introduce": "DORA büyülü yağmur ormanlarında daha fazla fantastik macera için geri döndü! Dünyanın en olağanüstü küçük kaşifi ve en iyi arkadaşı Boots'a yeni eğlence ve yeni arkadaşlar keşfederken katılın; sınır gökyüzü! Haydi!", - "programType": "episode", - "channelid": "4353", - "broadcastType": "Banttan", - "seasonInfo": "2. Sezon - 211. Bölüm" - }, - { - "id": "195274212", - "name": "Baby Shark's Big Show!", - "starttime": "2024-12-17 11:50:00 UTC+03:00", - "endtime": "2024-12-17 12:15:00 UTC+03:00", - "genres": "Çocuk", - "advisory": [], - "ratingid": "0", - "picture": "https://gbzeottvsc01.tvplus.com.tr:33207/CPS/images/universal/film/program/202412/20241211/57/2126371449455eb9542c_0_XL.jpg", - "isnpvr": "1", - "introduce": "Diğer tüm balıklar kış tatilinde şehir dışındayken, Baby ve William kendi yüzgeçli dostluk günlerini yaratırlar. Chucks, Balık İzcileri ile ilk gezisinde kamp yapmaya eşsiz bir yaklaşım getiriyor.", - "programType": "episode", - "channelid": "4353", - "broadcastType": "Banttan", - "seasonInfo": "2. Sezon - 224. Bölüm" - }, - { - "id": "195274218", - "name": "Camgöz (2020)", - "starttime": "2024-12-17 12:15:00 UTC+03:00", - "endtime": "2024-12-17 12:20:00 UTC+03:00", - "genres": "Çocuk", - "advisory": [], - "ratingid": "0", - "picture": "https://gbzeottvsc01.tvplus.com.tr:33207/CPS/images/universal/film/program/202412/20241211/54/2126371449485eb9542c_0_XL.jpg", - "isnpvr": "1", - "introduce": "Max'in yarı köpekbalığı yarı köpek olan Camgöz adlı sıra dışı bir evcil hayvanı vardır. Max önce Camgöz'ü sır olarak saklamaya çalışsa da Foggy Springs'teki dostları, meraklı komşuları ve ailesi onun yeni, yaramaz dostunu er ya da geç fark edecektir.", - "programType": "episode", - "channelid": "4353", - "broadcastType": "Banttan", - "seasonInfo": "2. Sezon - 202. Bölüm" - }, - { - "id": "195274224", - "name": "Camgöz (2020)", - "starttime": "2024-12-17 12:20:00 UTC+03:00", - "endtime": "2024-12-17 12:25:00 UTC+03:00", - "genres": "Çocuk", - "advisory": [], - "ratingid": "0", - "picture": "https://gbzeottvsc01.tvplus.com.tr:33207/CPS/images/universal/film/program/202412/20241211/89/2126371449515eb9542c_0_XL.jpg", - "isnpvr": "1", - "introduce": "Camgöz'ün vahşi tarafı köpek parkındaki köpekleri korkutmaya devam etmektedir. Camgöz yeni arkadaşlar edinmek istiyorsa kendi iç sakinliğini bulmak zorunda kalacaktır.", - "programType": "episode", - "channelid": "4353", - "broadcastType": "Banttan", - "seasonInfo": "2. Sezon - 203. Bölüm" - }, - { - "id": "195274230", - "name": "Camgöz (2020)", - "starttime": "2024-12-17 12:25:00 UTC+03:00", - "endtime": "2024-12-17 12:35:00 UTC+03:00", - "genres": "Çocuk", - "advisory": [], - "ratingid": "0", - "picture": "https://gbzeottvsc01.tvplus.com.tr:33207/CPS/images/universal/film/program/202412/20241211/34/2126371449545eb9542c_0_XL.jpg", - "isnpvr": "1", - "introduce": "Camgöz yanlışlıkla akvaryumda sergilenen en yeni parçayı yiyince, Max ve Köpek Balığı Sürüsü akvaryumun sahibi Bay Ceviche farkına varmadan önce bir plan yapmak zorunda kalır.", - "programType": "episode", - "channelid": "4353", - "broadcastType": "Banttan", - "seasonInfo": "2. Sezon - 204. Bölüm" - }, - { - "id": "195274236", - "name": "Peppa Pig", - "starttime": "2024-12-17 12:35:00 UTC+03:00", - "endtime": "2024-12-17 12:40:00 UTC+03:00", - "genres": "Çocuk", - "advisory": [], - "ratingid": "0", - "picture": "https://gbzeottvsc01.tvplus.com.tr:33207/CPS/images/universal/film/program/202412/20241211/38/2126371449575eb9542c_0_XL.jpg", - "isnpvr": "1", - "introduce": "Peppa ve George, kuzenleri Chloé'nin evini ziyaret eder. Chloé onlara çok horlayan bir domuzun olduğu bir kukla gösterisi yapar. Baba Domuz ve Amca Domuz, horlamakla meşgul oldukları için bu gösteriyi kaçırır.", - "programType": "episode", - "channelid": "4353", - "broadcastType": "Banttan", - "seasonInfo": "1. Sezon - 141. Bölüm" - }, - { - "id": "195274242", - "name": "Peppa Pig", - "starttime": "2024-12-17 12:40:00 UTC+03:00", - "endtime": "2024-12-17 12:45:00 UTC+03:00", - "genres": "Çocuk", - "advisory": [], - "ratingid": "0", - "picture": "https://gbzeottvsc01.tvplus.com.tr:33207/CPS/images/universal/film/program/202412/20241211/29/2126371449605eb9542c_0_XL.jpg", - "isnpvr": "1", - "introduce": "Baba Domuz şişman olduğu için, Peppa ona egzersiz yapmasını söyler. Baba Domuz, sağlıklı olmak için her gün egzersiz yapmak gerektiğini öğrenince dehşete düşer.", - "programType": "episode", - "channelid": "4353", - "broadcastType": "Banttan", - "seasonInfo": "1. Sezon - 142. Bölüm" - }, - { - "id": "195274248", - "name": "Peppa Pig", - "starttime": "2024-12-17 12:45:00 UTC+03:00", - "endtime": "2024-12-17 12:50:00 UTC+03:00", - "genres": "Çocuk", - "advisory": [], - "ratingid": "0", - "picture": "https://gbzeottvsc01.tvplus.com.tr:33207/CPS/images/universal/film/program/202412/20241211/7/2126371449635eb9542c_0_XL.jpg", - "isnpvr": "1", - "introduce": "Peppa, annesi, babası ve abisi George'la yaşayan küçük bir domuzdur. Peppa oyun oynamayı, şık giyinmeyi, uzun seyahatleri ve çamurda zıplamayı sever.", - "programType": "episode", - "channelid": "4353", - "broadcastType": "Banttan", - "seasonInfo": "1. Sezon - 143. Bölüm" - }, - { - "id": "195274254", - "name": "Peppa Pig", - "starttime": "2024-12-17 12:50:00 UTC+03:00", - "endtime": "2024-12-17 12:55:00 UTC+03:00", - "genres": "Çocuk", - "advisory": [], - "ratingid": "0", - "picture": "https://gbzeottvsc01.tvplus.com.tr:33207/CPS/images/universal/film/program/202412/20241211/58/2126371459665eb9542c_0_XL.jpg", - "isnpvr": "1", - "introduce": "Peppa ve George parka gider. Peppa'nın arkadaşları da oradadır. Peppa sallanmayı çok seviyordur ama George yüksekten korktuğu için sevmiyordur. Baba Domuz, George'a yüksek kaydıraktan kayması için yardım eder ama George kayarken sıkışır.", - "programType": "episode", - "channelid": "4353", - "broadcastType": "Banttan", - "seasonInfo": "1. Sezon - 144. Bölüm" - }, - { - "id": "195274260", - "name": "Minik Şef'in Yemek Programı", - "starttime": "2024-12-17 12:55:00 UTC+03:00", - "endtime": "2024-12-17 13:15:00 UTC+03:00", - "genres": "Çocuk", - "advisory": [], - "ratingid": "0", - "picture": "https://gbzeottvsc01.tvplus.com.tr:33207/CPS/images/universal/film/program/202412/20241211/86/2126371459695eb9542c_0_XL.jpg", - "isnpvr": "1", - "introduce": "Şef, Atıştırmalık Molası sırasında Stump Band'e en iyi fıstık ezmeli ve jöleli sandviçleri yapar. Bugün Patates Günü, Henry'nin en sevdiği bayram! Şef, Henry'nin patates yemeğini yapar ancak Henry yemeğin adını hatırlamaz!", - "programType": "episode", - "channelid": "4353", - "broadcastType": "Banttan", - "seasonInfo": "2. Sezon - 204. Bölüm" - }, - { - "id": "195274266", - "name": "Barbapapa Ailesi", - "starttime": "2024-12-17 13:15:00 UTC+03:00", - "endtime": "2024-12-17 13:40:00 UTC+03:00", - "genres": "Çocuk", - "advisory": [], - "ratingid": "0", - "picture": "https://gbzeottvsc01.tvplus.com.tr:33207/CPS/images/universal/film/program/202412/20241211/55/2126371459725eb9542c_0_XL.jpg", - "isnpvr": "1", - "introduce": "En popüler ailenin dünya ekranlarına göz kamaştırıcı dönüşü! BARBAPAPA. Büyük mutlu bir aile! Barbapapalar için rutin diye bir şey yoktur: her gün sürprizlerle dolu neşeli bir maceradır!", - "programType": "episode", - "channelid": "4353", - "broadcastType": "Banttan", - "seasonInfo": "2. Sezon - 211. Bölüm" - }, - { - "id": "195274272", - "name": "Barbapapa Ailesi", - "starttime": "2024-12-17 13:40:00 UTC+03:00", - "endtime": "2024-12-17 14:00:00 UTC+03:00", - "genres": "Çocuk", - "advisory": [], - "ratingid": "0", - "picture": "https://gbzeottvsc01.tvplus.com.tr:33207/CPS/images/universal/film/program/202412/20241211/11/2126371459755eb9542c_0_XL.jpg", - "isnpvr": "1", - "introduce": "Barbalala bir paket alır ve içinde SQUEAKIES adını verdiği küçük pembe hayvanlar keşfeder. Barbabravo, Barbalala ve Barbasüslü kardeşlerinin kendileriyle dalga geçmesinden bıkmışlardır.", - "programType": "episode", - "channelid": "4353", - "broadcastType": "Banttan", - "seasonInfo": "2. Sezon - 212. Bölüm" - }, - { - "id": "195274278", - "name": "Blaze ve Yol Canavarları", - "starttime": "2024-12-17 14:00:00 UTC+03:00", - "endtime": "2024-12-17 14:25:00 UTC+03:00", - "genres": "Çocuk", - "advisory": [], - "ratingid": "0", - "picture": "https://gbzeottvsc01.tvplus.com.tr:33207/CPS/images/universal/film/program/202412/20241211/88/2126371459785eb9542c_0_XL.jpg", - "isnpvr": "1", - "introduce": "Yıldızların altında bir kamp! Blaze, AJ, Starla, Crusher ve Pickle, en şaşırtıcı hikayeleri anlatmak için kamp ateşinin etrafında toplandı! Peki ya en iyi kısmı ne? En iyi hikayeyi kim anlatırsa son lokumu kazanacak!", - "programType": "episode", - "channelid": "4353", - "broadcastType": "Banttan", - "seasonInfo": "6. Sezon - 623. Bölüm" - }, - { - "id": "195274284", - "name": "Blaze ve Yol Canavarları", - "starttime": "2024-12-17 14:25:00 UTC+03:00", - "endtime": "2024-12-17 14:50:00 UTC+03:00", - "genres": "Çocuk", - "advisory": [], - "ratingid": "0", - "picture": "https://gbzeottvsc01.tvplus.com.tr:33207/CPS/images/universal/film/program/202412/20241211/38/2126371459815eb9542c_0_XL.jpg", - "isnpvr": "1", - "introduce": "Blaze'in süper güçleri onu SÜPER BLAZE'e dönüştürür! Hem de tam zamanında. Axle Şehri'ne uzaydan botlar iner ve ortalığı karıştırırlar!", - "programType": "episode", - "channelid": "4353", - "broadcastType": "Banttan", - "seasonInfo": "6. Sezon - 624. Bölüm" - }, - { - "id": "195274290", - "name": "Paw Patrol", - "starttime": "2024-12-17 14:50:00 UTC+03:00", - "endtime": "2024-12-17 15:10:00 UTC+03:00", - "genres": "Çocuk", - "advisory": [], - "ratingid": "0", - "picture": "https://gbzeottvsc01.tvplus.com.tr:33207/CPS/images/universal/film/program/202412/20241211/4/2126371459845eb9542c_0_XL.jpg", - "isnpvr": "1", - "introduce": "Kışın, bir buz fırtınası macera körfezi'ni birbirine katıyor Başkan Goodway, başkan Humdinger'in basketbol takımına meydan okuyor. Ama başkan'ın unuttuğu bir şey var--bir basketbol takımı!", - "programType": "episode", - "channelid": "4353", - "broadcastType": "Banttan", - "seasonInfo": "2. Sezon - 208. Bölüm" - }, - { - "id": "195274296", - "name": "Paw Patrol", - "starttime": "2024-12-17 15:10:00 UTC+03:00", - "endtime": "2024-12-17 15:35:00 UTC+03:00", - "genres": "Çocuk", - "advisory": [], - "ratingid": "0", - "picture": "https://gbzeottvsc01.tvplus.com.tr:33207/CPS/images/universal/film/program/202412/20241211/61/2126371469875eb9542c_0_XL.jpg", - "isnpvr": "1", - "introduce": "Çiftçi Al ve çiftçi Yumi evleniyor! Skye'ın en sevdiği gösteri pilotu Ace Soarenson, muhteşem bir hava şovu içinmacera körfezi'ne gelir.Ama tam varacağı sıtrada motoru arıza yapar!", - "programType": "episode", - "channelid": "4353", - "broadcastType": "Banttan", - "seasonInfo": "2. Sezon - 209. Bölüm" - }, - { - "id": "195274302", - "name": "Baby Shark's Big Show", - "starttime": "2024-12-17 15:35:00 UTC+03:00", - "endtime": "2024-12-17 15:55:00 UTC+03:00", - "genres": "Çocuk", - "advisory": [], - "ratingid": "0", - "picture": "https://gbzeottvsc01.tvplus.com.tr:33207/CPS/images/universal/film/program/202412/20241211/61/2126371469905eb9542c_0_XL.jpg", - "isnpvr": "1", - "introduce": "Baby Shark ve William eğlenirken bir su altı fırtınası başlayınca içeride macera yaşayıp yaşayamayacaklarından şüphe duyarlar. William ve Vola Genç Bilim İnsanı Yarışması'na katılırlar ve rekabetçi ruhları onları zorlu bir duruma sokar.", - "programType": "episode", - "channelid": "4353", - "broadcastType": "Banttan", - "seasonInfo": "1. Sezon - 113. Bölüm" - }, - { - "id": "195274308", - "name": "BARBAPAPA Ailesi", - "starttime": "2024-12-17 15:55:00 UTC+03:00", - "endtime": "2024-12-17 16:15:00 UTC+03:00", - "genres": "Çocuk", - "advisory": [], - "ratingid": "0", - "picture": "https://gbzeottvsc01.tvplus.com.tr:33207/CPS/images/universal/film/program/202412/20241211/41/2126371469935eb9542c_0_XL.jpg", - "isnpvr": "1", - "introduce": "Barbataşkın, gizli ajan gibi, Barbapapa'nın pastasını kimin çaldığını bulmak için aletleriyle bir soruşturmaya başlar. Barbalala, evin etrafında dev bir tavuk duyduğuna emindir. Barbabebekler, nöbet tutmak için organize olurlar.", - "programType": "episode", - "channelid": "4353", - "broadcastType": "Banttan", - "seasonInfo": "1. Sezon - 117. Bölüm" - }, - { - "id": "195274314", - "name": "Ayı Paddington'un Maceraları", - "starttime": "2024-12-17 16:15:00 UTC+03:00", - "endtime": "2024-12-17 16:40:00 UTC+03:00", - "genres": "Çocuk", - "advisory": [], - "ratingid": "0", - "picture": "https://gbzeottvsc01.tvplus.com.tr:33207/CPS/images/universal/film/program/202412/20241211/49/2126371469965eb9542c_0_XL.jpg", - "isnpvr": "1", - "introduce": "Mağaradaki garip sesleri ne çıkarıyor? Jonathan denizkızı olduğunu düşünüyor, ama Paddington emin değil. Judy sahilde bir fosil bulmak istiyor, onun dışında herkesin şansı yaver gidiyor, Paddington yardım edebilir mi?", - "programType": "episode", - "channelid": "4353", - "broadcastType": "Banttan", - "seasonInfo": "3. Sezon - 308. Bölüm" - }, - { - "id": "195274320", - "name": "Rubble ve Ekibi", - "starttime": "2024-12-17 16:40:00 UTC+03:00", - "endtime": "2024-12-17 17:00:00 UTC+03:00", - "genres": "Çocuk", - "advisory": [], - "ratingid": "0", - "picture": "https://gbzeottvsc01.tvplus.com.tr:33207/CPS/images/universal/film/program/202412/20241211/75/2126371469995eb9542c_0_XL.jpg", - "isnpvr": "1", - "introduce": "Rubble ve Ekibi, Bakkal Gabriel'e güzel bir sahil günü yaşatmak istiyor... buna yepyeni dönme dolaba binmek de dahil! Çiftçi Zoe'nin hayvanları rahatlamaya ihtiyaç duyduğunda, köpüşler Koç Karima ile yoga yapacakları mükemmel bir yer inşa ediyor.", - "programType": "episode", - "channelid": "4353", - "broadcastType": "Banttan", - "seasonInfo": "2. Sezon - 209. Bölüm" - }, - { - "id": "195274326", - "name": "Kaşif Dora", - "starttime": "2024-12-17 17:00:00 UTC+03:00", - "endtime": "2024-12-17 17:10:00 UTC+03:00", - "genres": "Çocuk", - "advisory": [], - "ratingid": "0", - "picture": "https://gbzeottvsc01.tvplus.com.tr:33207/CPS/images/universal/film/program/202412/20241211/55/2126371460025eb9542c_0_XL.jpg", - "isnpvr": "1", - "introduce": "DORA büyülü yağmur ormanlarında daha fazla fantastik macera için geri döndü! Dünyanın en olağanüstü küçük kaşifi ve en iyi arkadaşı Boots'a yeni eğlence ve yeni arkadaşlar keşfederken katılın; sınır gökyüzü! Haydi!", - "programType": "episode", - "channelid": "4353", - "broadcastType": "Banttan", - "seasonInfo": "2. Sezon - 212. Bölüm" - }, - { - "id": "195274332", - "name": "Kaşif Dora", - "starttime": "2024-12-17 17:10:00 UTC+03:00", - "endtime": "2024-12-17 17:25:00 UTC+03:00", - "genres": "Çocuk", - "advisory": [], - "ratingid": "0", - "picture": "https://gbzeottvsc01.tvplus.com.tr:33207/CPS/images/universal/film/program/202412/20241211/13/2126371460055eb9542c_0_XL.jpg", - "isnpvr": "1", - "introduce": "DORA büyülü yağmur ormanlarında daha fazla fantastik macera için geri döndü! Dünyanın en olağanüstü küçük kaşifi ve en iyi arkadaşı Boots'a yeni eğlence ve yeni arkadaşlar keşfederken katılın; sınır gökyüzü! Haydi!", - "programType": "episode", - "channelid": "4353", - "broadcastType": "Banttan", - "seasonInfo": "2. Sezon - 211. Bölüm" - }, - { - "id": "195274338", - "name": "Blaze ve Yol Canavarları", - "starttime": "2024-12-17 17:25:00 UTC+03:00", - "endtime": "2024-12-17 17:45:00 UTC+03:00", - "genres": "Çocuk", - "advisory": [], - "ratingid": "0", - "picture": "https://gbzeottvsc01.tvplus.com.tr:33207/CPS/images/universal/film/program/202412/20241211/84/2126371470085eb9542c_0_XL.jpg", - "isnpvr": "1", - "introduce": "Crusher son hilelerinden biriyle Blaze'i uzağa gönderdiğinde, Blaze'in küçük kız kardeşi Sparkle günü kurtarmaya ve kardeşini zamanında geri getirmeye gelir, böylece Takım Çalışması Kupasını kazanmak için birlikte yarışabilirler!", - "programType": "episode", - "channelid": "4353", - "broadcastType": "Banttan", - "seasonInfo": "7. Sezon - 701. Bölüm" - }, - { - "id": "195274344", - "name": "Minik Şef'in Yemek Programı", - "starttime": "2024-12-17 17:45:00 UTC+03:00", - "endtime": "2024-12-17 18:10:00 UTC+03:00", - "genres": "Çocuk", - "advisory": [], - "ratingid": "0", - "picture": "https://gbzeottvsc01.tvplus.com.tr:33207/CPS/images/universal/film/program/202412/20241211/96/2126371470115eb9542c_0_XL.jpg", - "isnpvr": "1", - "introduce": "Bonzo, Şef'in ev yapımı dondurmasından hiç alamayınca, Şef dondurma makinesiyle daha fazlasını yapmaya çalışıyor. Şef ve Olly taze makarna yaptı, bu yüzden Brody Bambino'nun yavaş pişirilen sosunu yapıyorlar - yavaş olması önemli!", - "programType": "episode", - "channelid": "4353", - "broadcastType": "Banttan", - "seasonInfo": "2. Sezon - 207. Bölüm" - }, - { - "id": "195274350", - "name": "Baby Shark's Big Show!", - "starttime": "2024-12-17 18:10:00 UTC+03:00", - "endtime": "2024-12-17 18:30:00 UTC+03:00", - "genres": "Çocuk", - "advisory": [], - "ratingid": "0", - "picture": "https://gbzeottvsc01.tvplus.com.tr:33207/CPS/images/universal/film/program/202412/20241211/59/2126371470145eb9542c_0_XL.jpg", - "isnpvr": "1", - "introduce": "Baby, aile fotoğrafı gününde yanlışlıkla ortalığı kirletir ve ailesi öğrenmeden önce temizlenmek için olağanüstü çaba sarf eder. Penny ve Wallace iki balıklı bir yetenek gösterisinde sahne almak için bir araya gelir.", - "programType": "episode", - "channelid": "4353", - "broadcastType": "Banttan", - "seasonInfo": "2. Sezon - 212. Bölüm" - }, - { - "id": "195274356", - "name": "Camgöz (2020)", - "starttime": "2024-12-17 18:30:00 UTC+03:00", - "endtime": "2024-12-17 18:40:00 UTC+03:00", - "genres": "Çocuk", - "advisory": [], - "ratingid": "0", - "picture": "https://gbzeottvsc01.tvplus.com.tr:33207/CPS/images/universal/film/program/202412/20241211/11/2126371470175eb9542c_0_XL.jpg", - "isnpvr": "1", - "introduce": "Max'in Camgöz adında yarı köpek balığı yarı köpek eşsiz bir evcil havyanı vardır. İlk başlarda Camgöz'ü saklamaya çalışsa da Sisli Pınarlar'da, en iyi arkadaşlar, meraklı komşular ve hatta Max'in ailesi bile yaramaz yeni arkadaşını fark edecektir.", - "programType": "episode", - "channelid": "4353", - "broadcastType": "Banttan", - "seasonInfo": "1. Sezon - 110. Bölüm" - }, - { - "id": "195274362", - "name": "Camgöz (2020)", - "starttime": "2024-12-17 18:40:00 UTC+03:00", - "endtime": "2024-12-17 18:45:00 UTC+03:00", - "genres": "Çocuk", - "advisory": [], - "ratingid": "0", - "picture": "https://gbzeottvsc01.tvplus.com.tr:33207/CPS/images/universal/film/program/202412/20241211/75/2126371470205eb9542c_0_XL.jpg", - "isnpvr": "1", - "introduce": "Camgöz balık tutma gezisinde bir Büyük Beyaz Köpek Balığı'yla tanışınca Max, en iyi arkadaşının vahşi içgüdülerine yenileceğinden korkar.", - "programType": "episode", - "channelid": "4353", - "broadcastType": "Banttan", - "seasonInfo": "1. Sezon - 111. Bölüm" - }, - { - "id": "195274368", - "name": "Camgöz (2020)", - "starttime": "2024-12-17 18:45:00 UTC+03:00", - "endtime": "2024-12-17 18:50:00 UTC+03:00", - "genres": "Çocuk", - "advisory": [], - "ratingid": "0", - "picture": "https://gbzeottvsc01.tvplus.com.tr:33207/CPS/images/universal/film/program/202412/20241211/42/2126371470235eb9542c_0_XL.jpg", - "isnpvr": "1", - "introduce": "Max'in Camgöz adında yarı köpek balığı yarı köpek eşsiz bir evcil havyanı vardır. İlk başlarda Camgöz'ü saklamaya çalışsa da Sisli Pınarlar'da, en iyi arkadaşlar, meraklı komşular ve hatta Max'in ailesi bile yaramaz yeni arkadaşını fark edecektir.", - "programType": "episode", - "channelid": "4353", - "broadcastType": "Banttan", - "seasonInfo": "1. Sezon - 112. Bölüm" - }, - { - "id": "195274374", - "name": "Camgöz (2020)", - "starttime": "2024-12-17 18:50:00 UTC+03:00", - "endtime": "2024-12-17 19:00:00 UTC+03:00", - "genres": "Çocuk", - "advisory": [], - "ratingid": "0", - "picture": "https://gbzeottvsc01.tvplus.com.tr:33207/CPS/images/universal/film/program/202412/20241211/21/2126371470265eb9542c_0_XL.jpg", - "isnpvr": "1", - "introduce": "Max'in Camgöz adında yarı köpek balığı yarı köpek eşsiz bir evcil havyanı vardır. İlk başlarda Camgöz'ü saklamaya çalışsa da Sisli Pınarlar'da, en iyi arkadaşlar, meraklı komşular ve hatta Max'in ailesi bile yaramaz yeni arkadaşını fark edecektir.", - "programType": "episode", - "channelid": "4353", - "broadcastType": "Banttan", - "seasonInfo": "1. Sezon - 113. Bölüm" - }, - { - "id": "195274380", - "name": "Paw Patrol", - "starttime": "2024-12-17 19:00:00 UTC+03:00", - "endtime": "2024-12-17 19:20:00 UTC+03:00", - "genres": "Çocuk", - "advisory": [], - "ratingid": "0", - "picture": "https://gbzeottvsc01.tvplus.com.tr:33207/CPS/images/universal/film/program/202412/20241211/65/2126371480295eb9542c_0_XL.jpg", - "isnpvr": "1", - "introduce": "Gezgin Travis'i kurtarmaya çalışırken Ryder ve yavruları efsanevi Filler Kaplıcası'na rastlar. Otis Amca altın bulduğuna inanır ama Korsan Sid, Otis'in iddiasının üzerine atlamaya çalışınca Otis batık bir nakliye konteynerinde mahsur kalır.", - "programType": "episode", - "channelid": "4353", - "broadcastType": "Banttan", - "seasonInfo": "10. Sezon - 1019. Bölüm" - }, - { - "id": "195274386", - "name": "Köpecik Pit Ekibi", - "starttime": "2024-12-17 19:20:00 UTC+03:00", - "endtime": "2024-12-17 19:30:00 UTC+03:00", - "genres": "Çocuk", - "advisory": [], - "ratingid": "0", - "picture": "https://gbzeottvsc01.tvplus.com.tr:33207/CPS/images/universal/film/program/202412/20241211/75/2126371480325eb9542c_0_XL.jpg", - "isnpvr": "1", - "introduce": "PAW Patrol okul öncesi programı ve altı tane köpekçik baş rolü paylaşıyor: Chase, Marshall, Rocky, Zuma, Rubble ve Skye, başlarında da teknoloji meraklısı 10 yaşında bir çocuk olan Ryder var.", - "programType": "episode", - "channelid": "4353", - "broadcastType": "Banttan", - "seasonInfo": "4. Sezon - 415. Bölüm" - }, - { - "id": "195274392", - "name": "Rubble ve Ekibi", - "starttime": "2024-12-17 19:30:00 UTC+03:00", - "endtime": "2024-12-17 20:00:00 UTC+03:00", - "genres": "Çocuk", - "advisory": [], - "ratingid": "0", - "picture": "https://gbzeottvsc01.tvplus.com.tr:33207/CPS/images/universal/film/program/202412/20241211/84/2126371480355eb9542c_0_XL.jpg", - "isnpvr": "1", - "introduce": "Rubble ve Ekibinin en sevdiği kitap serisine yeni eklemeler var! Kütüphanede onlara yer kalmayınca, yavruların yaratıcı olması gerek. Yavruların Moloztaş için bir sürprizi var; atıştırmalık dağıtıcısı! Rubble öğrenmeden önce bitirebilecekler mi?", - "programType": "episode", - "channelid": "4353", - "broadcastType": "Banttan", - "seasonInfo": "2. Sezon - 204. Bölüm" - }, - { - "id": "195274398", - "name": "Kaşif Dora", - "starttime": "2024-12-17 20:00:00 UTC+03:00", - "endtime": "2024-12-17 20:10:00 UTC+03:00", - "genres": "Çocuk", - "advisory": [], - "ratingid": "0", - "picture": "https://gbzeottvsc01.tvplus.com.tr:33207/CPS/images/universal/film/program/202412/20241211/38/2126371480385eb9542c_0_XL.jpg", - "isnpvr": "1", - "introduce": "DORA büyülü yağmur ormanlarında daha fazla fantastik macera için geri döndü! Dünyanın en olağanüstü küçük kaşifi ve en iyi arkadaşı Boots'a yeni eğlence ve yeni arkadaşlar keşfederken katılın; sınır gökyüzü! Haydi!", - "programType": "episode", - "channelid": "4353", - "broadcastType": "Banttan", - "seasonInfo": "2. Sezon - 212. Bölüm" - }, - { - "id": "195274404", - "name": "Kaşif Dora", - "starttime": "2024-12-17 20:10:00 UTC+03:00", - "endtime": "2024-12-17 20:20:00 UTC+03:00", - "genres": "Çocuk", - "advisory": [], - "ratingid": "0", - "picture": "https://gbzeottvsc01.tvplus.com.tr:33207/CPS/images/universal/film/program/202412/20241211/38/2126371480415eb9542c_0_XL.jpg", - "isnpvr": "1", - "introduce": "DORA büyülü yağmur ormanlarında daha fazla fantastik macera için geri döndü! Dünyanın en olağanüstü küçük kaşifi ve en iyi arkadaşı Boots'a yeni eğlence ve yeni arkadaşlar keşfederken katılın; sınır gökyüzü! Haydi!", - "programType": "episode", - "channelid": "4353", - "broadcastType": "Banttan", - "seasonInfo": "2. Sezon - 211. Bölüm" - }, - { - "id": "195274410", - "name": "BARBAPAPA Ailesi", - "starttime": "2024-12-17 20:20:00 UTC+03:00", - "endtime": "2024-12-17 20:40:00 UTC+03:00", - "genres": "Çocuk", - "advisory": [], - "ratingid": "0", - "picture": "https://gbzeottvsc01.tvplus.com.tr:33207/CPS/images/universal/film/program/202412/20241211/0/2126371480445eb9542c_0_XL.jpg", - "isnpvr": "1", - "introduce": "Barbabebekler, yediklerinin renk ve şekillerini değiştirdiğini düşünüyor. Bunun için doğru yiyeceği bulmaya çalışacaklar. Barbartist ilham bulamadığından sanat yapamaz. Bütün aile boyayacak yeni konular önererek ona yardımcı olur.", - "programType": "episode", - "channelid": "4353", - "broadcastType": "Banttan", - "seasonInfo": "1. Sezon - 126. Bölüm" - }, - { - "id": "195274416", - "name": "Hamster Diyarı", - "starttime": "2024-12-17 20:40:00 UTC+03:00", - "endtime": "2024-12-17 21:00:00 UTC+03:00", - "genres": "Çocuk", - "advisory": [], - "ratingid": "0", - "picture": "https://gbzeottvsc01.tvplus.com.tr:33207/CPS/images/universal/film/program/202412/20241211/29/2126371480475eb9542c_0_XL.jpg", - "isnpvr": "1", - "introduce": "Hamsterlar Kendrick'in eski yatar koltuğunun dışarı atılmasını engellemelidir. Bir anne kuş Lil Pal'ı kayıp yavrusu sandığında, hamsterlar arkadaşlarını kurtarır.", - "programType": "episode", - "channelid": "4353", - "broadcastType": "Banttan", - "seasonInfo": "1. Sezon - 106. Bölüm" - }, - { - "id": "195274422", - "name": "Blaze ve Yol Canavarları", - "starttime": "2024-12-17 21:00:00 UTC+03:00", - "endtime": "2024-12-17 21:25:00 UTC+03:00", - "genres": "Çocuk", - "advisory": [], - "ratingid": "0", - "picture": "https://gbzeottvsc01.tvplus.com.tr:33207/CPS/images/universal/film/program/202412/20241211/2/2126371490505eb9542c_0_XL.jpg", - "isnpvr": "1", - "introduce": "Acıkan Ezici yanlışlıkla fırın kamyonunun robotlarının dağınık modunu açar ve robotlar tekerlek çıkarıp gider! Aks Şehri unlu mamullerle kaplanmadan bütün başı boş robotları bulmak AJ ve Blaze'e kalır.", - "programType": "episode", - "channelid": "4353", - "broadcastType": "Banttan", - "seasonInfo": "1. Sezon - 111. Bölüm" - }, - { - "id": "195274428", - "name": "Blaze ve Yol Canavarları", - "starttime": "2024-12-17 21:25:00 UTC+03:00", - "endtime": "2024-12-17 21:45:00 UTC+03:00", - "genres": "Çocuk", - "advisory": [], - "ratingid": "0", - "picture": "https://gbzeottvsc01.tvplus.com.tr:33207/CPS/images/universal/film/program/202412/20241211/28/2126371490535eb9542c_0_XL.jpg", - "isnpvr": "1", - "introduce": "Gazkuaç, Blaze ve AJ'yi dondurma partisine çağırır! Ama çok önemli bir şey unutur - dondurmayı! Blaze dondurma aracına dönüşür ve Gazkuaç'ın evine vaktinde yetişir!", - "programType": "episode", - "channelid": "4353", - "broadcastType": "Banttan", - "seasonInfo": "5. Sezon - 507. Bölüm" - }, - { - "id": "195274434", - "name": "Paw Patrol", - "starttime": "2024-12-17 21:45:00 UTC+03:00", - "endtime": "2024-12-17 22:10:00 UTC+03:00", - "genres": "Çocuk", - "advisory": [], - "ratingid": "0", - "picture": "https://gbzeottvsc01.tvplus.com.tr:33207/CPS/images/universal/film/program/202412/20241211/10/2126371490565eb9542c_0_XL.jpg", - "isnpvr": "1", - "introduce": "Bu koku da ne? Tuhaf bir koku ormandaki hayvanları evinden kaçırıyor. Devekuşu Olivia kanyona düştü! Köpekçiklerin yakında çatlayacak yumurtalarını sıcak tutarak Olivia'yı güvenli bir yere çıkarması gerek.", - "programType": "episode", - "channelid": "4353", - "broadcastType": "Banttan", - "seasonInfo": "6. Sezon - 606. Bölüm" - }, - { - "id": "195274440", - "name": "Paw Patrol", - "starttime": "2024-12-17 22:10:00 UTC+03:00", - "endtime": "2024-12-17 22:30:00 UTC+03:00", - "genres": "Çocuk", - "advisory": [], - "ratingid": "0", - "picture": "https://gbzeottvsc01.tvplus.com.tr:33207/CPS/images/universal/film/program/202412/20241211/87/2126371490595eb9542c_0_XL.jpg", - "isnpvr": "1", - "introduce": "Gustavo Goodway'in gitarı kayboldu. Köpekçiklerin kamp konserinden önce gitarı bulması gerekiyor. Çiftçi Yumi'nin Keçi Yogası sınıfı çok tutulur, ta ki keçileri kaybolana kadar. Keçileri bulup Yumi'nin çiftliğine getirmek de Paw Patrol'e kalır.", - "programType": "episode", - "channelid": "4353", - "broadcastType": "Banttan", - "seasonInfo": "6. Sezon - 607. Bölüm" - }, - { - "id": "195274446", - "name": "Köpecik Pit Ekibi", - "starttime": "2024-12-17 22:30:00 UTC+03:00", - "endtime": "2024-12-17 22:40:00 UTC+03:00", - "genres": "Çocuk", - "advisory": [], - "ratingid": "0", - "picture": "https://gbzeottvsc01.tvplus.com.tr:33207/CPS/images/universal/film/program/202412/20241211/27/2126371490625eb9542c_0_XL.jpg", - "isnpvr": "1", - "introduce": "PAW Patrol okul öncesi programı ve altı tane köpekçik baş rolü paylaşıyor: Chase, Marshall, Rocky, Zuma, Rubble ve Skye, başlarında da teknoloji meraklısı 10 yaşında bir çocuk olan Ryder var.", - "programType": "episode", - "channelid": "4353", - "broadcastType": "Banttan", - "seasonInfo": "1. Sezon - 106. Bölüm" - }, - { - "id": "195274452", - "name": "Rubble ve Ekibi", - "starttime": "2024-12-17 22:40:00 UTC+03:00", - "endtime": "2024-12-17 23:05:00 UTC+03:00", - "genres": "Çocuk", - "advisory": [], - "ratingid": "0", - "picture": "https://gbzeottvsc01.tvplus.com.tr:33207/CPS/images/universal/film/program/202412/20241211/89/2126371490655eb9542c_0_XL.jpg", - "isnpvr": "1", - "introduce": "İnşaatçı Koyu'nda bir gizem var! Tüm kasaba halkının heykelleri aniden ortadan kaybolunca Chase, kayıp heykel vakasını çözmek için Rubble ve Ekibi'ne katılır ve araştırmaya yardımcı olmak için yepyeni bir Bilim Merkezi inşa eder.", - "programType": "episode", - "channelid": "4353", - "broadcastType": "Banttan", - "seasonInfo": "1. Sezon - 120. Bölüm" - }, - { - "id": "195274458", - "name": "Rubble ve Ekibi", - "starttime": "2024-12-17 23:05:00 UTC+03:00", - "endtime": "2024-12-17 23:30:00 UTC+03:00", - "genres": "Çocuk", - "advisory": [], - "ratingid": "0", - "picture": "https://gbzeottvsc01.tvplus.com.tr:33207/CPS/images/universal/film/program/202412/20241211/32/2126371490685eb9542c_0_XL.jpg", - "isnpvr": "1", - "introduce": "Hız Ustası Yetenek Gösterisi sahnesini sabote edince, yavrular günü kurtarmak için Motor'un yeteneğini kullanıyor. Parıltı Sierra İnşaçı Koyu Günü için şarkı söyleyecek! Grubun enstrümanları bozulunca, Rubble ve Ekibi'nin bir çözümü var.", - "programType": "episode", - "channelid": "4353", - "broadcastType": "Banttan", - "seasonInfo": "1. Sezon - 121. Bölüm" - }, - { - "id": "195274464", - "name": "Kaşif Dora", - "starttime": "2024-12-17 23:30:00 UTC+03:00", - "endtime": "2024-12-17 23:40:00 UTC+03:00", - "genres": "Çocuk", - "advisory": [], - "ratingid": "0", - "picture": "https://gbzeottvsc01.tvplus.com.tr:33207/CPS/images/universal/film/program/202412/20241211/48/2126371490715eb9542c_0_XL.jpg", - "isnpvr": "1", - "introduce": "DORA büyülü yağmur ormanlarında daha fazla fantastik macera için geri döndü! Dünyanın en olağanüstü küçük kaşifi ve en iyi arkadaşı Boots'a yeni eğlence ve yeni arkadaşlar keşfederken katılın; sınır gökyüzü! Haydi!", - "programType": "episode", - "channelid": "4353", - "broadcastType": "Banttan", - "seasonInfo": "2. Sezon - 212. Bölüm" - }, - { - "id": "195274470", - "name": "Kaşif Dora", - "starttime": "2024-12-17 23:40:00 UTC+03:00", - "endtime": "2024-12-17 23:50:00 UTC+03:00", - "genres": "Çocuk", - "advisory": [], - "ratingid": "0", - "picture": "https://gbzeottvsc01.tvplus.com.tr:33207/CPS/images/universal/film/program/202412/20241211/72/2126371500745eb9542c_0_XL.jpg", - "isnpvr": "1", - "introduce": "DORA büyülü yağmur ormanlarında daha fazla fantastik macera için geri döndü! Dünyanın en olağanüstü küçük kaşifi ve en iyi arkadaşı Boots'a yeni eğlence ve yeni arkadaşlar keşfederken katılın; sınır gökyüzü! Haydi!", - "programType": "episode", - "channelid": "4353", - "broadcastType": "Banttan", - "seasonInfo": "2. Sezon - 212. Bölüm" - }, - { - "id": "195274476", - "name": "Baby Shark's Big Show!", - "starttime": "2024-12-17 23:50:00 UTC+03:00", - "endtime": "2024-12-18 00:15:00 UTC+03:00", - "genres": "Çocuk", - "advisory": [], - "ratingid": "0", - "picture": "https://gbzeottvsc01.tvplus.com.tr:33207/CPS/images/universal/film/program/202412/20241211/87/2126371500775eb9542c_0_XL.jpg", - "isnpvr": "1", - "introduce": "Carnivore Koy'da dans etmek yasaklandığında, Baby Shark kasabanın tekrar dans etmesi için ne gerekiyorsa yapacaktır! Baby ve William, Ernie'nin en iyi arkadaşını edinmesine yardım etmeye çalışır.", - "programType": "episode", - "channelid": "4353", - "broadcastType": "Banttan", - "seasonInfo": "2. Sezon - 225. Bölüm" - } - ], - [ - { - "id": "195333870", - "name": "Camgöz (2020)", - "starttime": "2024-12-18 00:15:00 UTC+03:00", - "endtime": "2024-12-18 00:20:00 UTC+03:00", - "genres": "Çocuk", - "advisory": [], - "ratingid": "0", - "picture": "https://gbzeottvsc01.tvplus.com.tr:33207/CPS/images/universal/film/program/202412/20241212/78/2126427686425eb8f42a_0_XL.jpg", - "isnpvr": "1", - "introduce": "Max'in yarı köpekbalığı yarı köpek olan Camgöz adlı sıra dışı bir evcil hayvanı vardır. Max önce Camgöz'ü sır olarak saklamaya çalışsa da Foggy Springs'teki dostları, meraklı komşuları ve ailesi onun yeni, yaramaz dostunu er ya da geç fark edecektir.", - "programType": "episode", - "channelid": "4353", - "broadcastType": "Banttan", - "seasonInfo": "2. Sezon - 205. Bölüm" - }, - { - "id": "195333876", - "name": "Camgöz (2020)", - "starttime": "2024-12-18 00:20:00 UTC+03:00", - "endtime": "2024-12-18 00:25:00 UTC+03:00", - "genres": "Çocuk", - "advisory": [], - "ratingid": "0", - "picture": "https://gbzeottvsc01.tvplus.com.tr:33207/CPS/images/universal/film/program/202412/20241212/71/2126427686455eb8f42a_0_XL.jpg", - "isnpvr": "1", - "introduce": "Camgöz yıllık Fisher aile fotoğrafında yer alacağı için çok heyecanlıdır, ancak peş peşe gelen talihsizlikler onun mükemmel fotoğrafı için bir tehdit oluşturur.", - "programType": "episode", - "channelid": "4353", - "broadcastType": "Banttan", - "seasonInfo": "2. Sezon - 206. Bölüm" - }, - { - "id": "195333882", - "name": "Camgöz (2020)", - "starttime": "2024-12-18 00:25:00 UTC+03:00", - "endtime": "2024-12-18 00:35:00 UTC+03:00", - "genres": "Çocuk", - "advisory": [], - "ratingid": "0", - "picture": "https://gbzeottvsc01.tvplus.com.tr:33207/CPS/images/universal/film/program/202412/20241212/74/2126427686485eb8f42a_0_XL.jpg", - "isnpvr": "1", - "introduce": "Dennis, Köpek Balığı Sürüsü'nü 3'e 3 basketbol oyununa davet ettiğinde, Camgöz harika bir oyuncu olduğunu gösterir. O kadar harikadır ki, sonunda Max'in yerini bile alabilir!", - "programType": "episode", - "channelid": "4353", - "broadcastType": "Banttan", - "seasonInfo": "2. Sezon - 207. Bölüm" - }, - { - "id": "195333888", - "name": "Peppa Pig", - "starttime": "2024-12-18 00:35:00 UTC+03:00", - "endtime": "2024-12-18 00:40:00 UTC+03:00", - "genres": "Çocuk", - "advisory": [], - "ratingid": "0", - "picture": "https://gbzeottvsc01.tvplus.com.tr:33207/CPS/images/universal/film/program/202412/20241212/0/2126427686515eb8f42a_0_XL.jpg", - "isnpvr": "1", - "introduce": "Peppa, annesi, babası ve abisi George'la yaşayan küçük bir domuzdur. Peppa oyun oynamayı, şık giyinmeyi, uzun seyahatleri ve çamurda zıplamayı sever.", - "programType": "episode", - "channelid": "4353", - "broadcastType": "Banttan", - "seasonInfo": "1. Sezon - 149. Bölüm" - }, - { - "id": "195333894", - "name": "Peppa Pig", - "starttime": "2024-12-18 00:40:00 UTC+03:00", - "endtime": "2024-12-18 00:45:00 UTC+03:00", - "genres": "Çocuk", - "advisory": [], - "ratingid": "0", - "picture": "https://gbzeottvsc01.tvplus.com.tr:33207/CPS/images/universal/film/program/202412/20241212/19/2126427686545eb8f42a_0_XL.jpg", - "isnpvr": "1", - "introduce": "Peppa, annesi, babası ve abisi George'la yaşayan küçük bir domuzdur. Peppa oyun oynamayı, şık giyinmeyi, uzun seyahatleri ve çamurda zıplamayı sever.", - "programType": "episode", - "channelid": "4353", - "broadcastType": "Banttan", - "seasonInfo": "1. Sezon - 150. Bölüm" - }, - { - "id": "195333900", - "name": "Peppa Pig", - "starttime": "2024-12-18 00:45:00 UTC+03:00", - "endtime": "2024-12-18 00:50:00 UTC+03:00", - "genres": "Çocuk", - "advisory": [], - "ratingid": "0", - "picture": "https://gbzeottvsc01.tvplus.com.tr:33207/CPS/images/universal/film/program/202412/20241212/8/2126427686575eb8f42a_0_XL.jpg", - "isnpvr": "1", - "introduce": "Baba Domuz yeni bir video kamera alır. Önce Peppa, ona nasıl çalıştığını gösterir, sonra Baba Domuz, Peppa'nın şapşal görüntülerini kaydeder.", - "programType": "episode", - "channelid": "4353", - "broadcastType": "Banttan", - "seasonInfo": "1. Sezon - 151. Bölüm" - }, - { - "id": "195333906", - "name": "Peppa Pig", - "starttime": "2024-12-18 00:50:00 UTC+03:00", - "endtime": "2024-12-18 00:55:00 UTC+03:00", - "genres": "Çocuk", - "advisory": [], - "ratingid": "0", - "picture": "https://gbzeottvsc01.tvplus.com.tr:33207/CPS/images/universal/film/program/202412/20241212/2/2126427686605eb8f42a_0_XL.jpg", - "isnpvr": "1", - "introduce": "Peppa ve arkadaşları, Kırmızı Başlıklı Kız ile ilgili bir okul temsilinde rol alır. Ama Midilli Pedro, sahneye çıkacağı için çok gergindir.", - "programType": "episode", - "channelid": "4353", - "broadcastType": "Banttan", - "seasonInfo": "1. Sezon - 152. Bölüm" - }, - { - "id": "195333912", - "name": "Minik Şef'in Yemek Programı", - "starttime": "2024-12-18 00:55:00 UTC+03:00", - "endtime": "2024-12-18 01:15:00 UTC+03:00", - "genres": "Çocuk", - "advisory": [], - "ratingid": "0", - "picture": "https://gbzeottvsc01.tvplus.com.tr:33207/CPS/images/universal/film/program/202412/20241212/38/2126427686635eb8f42a_0_XL.jpg", - "isnpvr": "1", - "introduce": "Morton'un yol atıştırmalığı düşünce Şef ve Olly ona yolculuğu için en iyi atıştırmalığı yapmak üzerine yarışır. İlk aşçılık deneyimi için çok hevesli olan biri, Şef ve Olly'ye nachos yapımında yardım eder.", - "programType": "episode", - "channelid": "4353", - "broadcastType": "Banttan", - "seasonInfo": "2. Sezon - 205. Bölüm" - }, - { - "id": "195333918", - "name": "Barbapapa Ailesi", - "starttime": "2024-12-18 01:15:00 UTC+03:00", - "endtime": "2024-12-18 01:40:00 UTC+03:00", - "genres": "Çocuk", - "advisory": [], - "ratingid": "0", - "picture": "https://gbzeottvsc01.tvplus.com.tr:33207/CPS/images/universal/film/program/202412/20241212/85/2126427686665eb8f42a_0_XL.jpg", - "isnpvr": "1", - "introduce": "En popüler ailenin dünya ekranlarına göz kamaştırıcı dönüşü! BARBAPAPA. Büyük mutlu bir aile! Barbapapalar için rutin diye bir şey yoktur: her gün sürprizlerle dolu neşeli bir maceradır!", - "programType": "episode", - "channelid": "4353", - "broadcastType": "Banttan", - "seasonInfo": "2. Sezon - 213. Bölüm" - }, - { - "id": "195333924", - "name": "BARBAPAPA Ailesi", - "starttime": "2024-12-18 01:40:00 UTC+03:00", - "endtime": "2024-12-18 02:00:00 UTC+03:00", - "genres": "Çocuk", - "advisory": [], - "ratingid": "0", - "picture": "https://gbzeottvsc01.tvplus.com.tr:33207/CPS/images/universal/film/program/202412/20241212/85/2126427696695eb8f42a_0_XL.jpg", - "isnpvr": "1", - "introduce": "Barbapapalar, altında doğdukları ağaca geri döner. Ağaç kötü durumda. Yakındaki hayvanları rahatsız etmeden onu kurtarmalı. Bugün Barbabebeklerin doğum günü. Hepsi Barbapapa'yla farklı bir şeyler yapmak istiyor!", - "programType": "episode", - "channelid": "4353", - "broadcastType": "Banttan", - "seasonInfo": "1. Sezon - 101. Bölüm" - }, - { - "id": "195334442", - "name": "Blaze ve Yol Canavarları", - "starttime": "2024-12-18 02:00:00 UTC+03:00", - "endtime": "2024-12-18 02:25:00 UTC+03:00", - "genres": "Çocuk", - "advisory": [], - "ratingid": "0", - "picture": "https://gbzeottvsc01.tvplus.com.tr:33207/CPS/images/universal/film/program/202412/20241212/86/2126427696725eb8f42a_0_XL.jpg", - "isnpvr": "1", - "introduce": "Üç devasa posta teslimatı olunca, hepsini teslim edebilecek tek bir canavar makine var: Posta Kamyonu Blaze! Denizleri yüzerek aşacak, dağlara tırmanacak ve Monster Dome'a girecek çünkü posta kamyonları her zaman teslimat yapar!", - "programType": "episode", - "channelid": "4353", - "broadcastType": "Banttan", - "seasonInfo": "7. Sezon - 702. Bölüm" - }, - { - "id": "195334448", - "name": "Blaze ve Yol Canavarları", - "starttime": "2024-12-18 02:25:00 UTC+03:00", - "endtime": "2024-12-18 02:50:00 UTC+03:00", - "genres": "Çocuk", - "advisory": [], - "ratingid": "0", - "picture": "https://gbzeottvsc01.tvplus.com.tr:33207/CPS/images/universal/film/program/202412/20241212/91/2126427696755eb8f42a_0_XL.jpg", - "isnpvr": "1", - "introduce": "Büyükannenin doğum günü ama Crusher'ın hediye parası yok! Blaze ve AJ ona farklı işler yapmasında ve para kazanmasında yardım ediyor. Ancak, doğum günü partisine zamanında yetişebilmek için acele etmeleri gerek!", - "programType": "episode", - "channelid": "4353", - "broadcastType": "Banttan", - "seasonInfo": "7. Sezon - 703. Bölüm" - }, - { - "id": "195334454", - "name": "Paw Patrol", - "starttime": "2024-12-18 02:50:00 UTC+03:00", - "endtime": "2024-12-18 03:10:00 UTC+03:00", - "genres": "Çocuk", - "advisory": [], - "ratingid": "0", - "picture": "https://gbzeottvsc01.tvplus.com.tr:33207/CPS/images/universal/film/program/202412/20241212/50/2126427696785eb8f42a_0_XL.jpg", - "isnpvr": "1", - "introduce": "Bugün macera körfezi'nde yetenek şovu günü! Başkan Goodway heyecanlı ama yeterince gösteri olmayacağından endişeli! Ryder ve köpekçikler, Çiftçi Al'a mısırlı rostosunu ve mısır tarlası labirentini hazırlamasında yardım ediyor!", - "programType": "episode", - "channelid": "4353", - "broadcastType": "Banttan", - "seasonInfo": "2. Sezon - 210. Bölüm" - }, - { - "id": "195334460", - "name": "Paw Patrol", - "starttime": "2024-12-18 03:10:00 UTC+03:00", - "endtime": "2024-12-18 03:30:00 UTC+03:00", - "genres": "Çocuk", - "advisory": [], - "ratingid": "0", - "picture": "https://gbzeottvsc01.tvplus.com.tr:33207/CPS/images/universal/film/program/202412/20241212/8/2126427696815eb8f42a_0_XL.jpg", - "isnpvr": "1", - "introduce": "Diğer köpekçikler paraşüt eğitimindeyken, Marshall bir grup kedi yavrusunu tek başına toplamak zorunda. Ama diğer köpek sürüleriniden de destek görüyor! Ryder ve paw patrol, bir geyik ailesini kaygan buzların üstündem kurtarıyor!", - "programType": "episode", - "channelid": "4353", - "broadcastType": "Banttan", - "seasonInfo": "2. Sezon - 211. Bölüm" - }, - { - "id": "195334466", - "name": "Baby Shark's Big Show", - "starttime": "2024-12-18 03:30:00 UTC+03:00", - "endtime": "2024-12-18 03:55:00 UTC+03:00", - "genres": "Çocuk", - "advisory": [], - "ratingid": "0", - "picture": "https://gbzeottvsc01.tvplus.com.tr:33207/CPS/images/universal/film/program/202412/20241212/94/2126427696845eb8f42a_0_XL.jpg", - "isnpvr": "1", - "introduce": "Baby Shark'ın Midye Topu ekibi alışılmadık yöntemleri olan bir koç tutar. Baby Shark, Büyükanne Köpekbalığı ile yapacağı büyük dans partisinden önce büyük lokma yutar.", - "programType": "episode", - "channelid": "4353", - "broadcastType": "Banttan", - "seasonInfo": "1. Sezon - 114. Bölüm" - }, - { - "id": "195334472", - "name": "BARBAPAPA Ailesi", - "starttime": "2024-12-18 03:55:00 UTC+03:00", - "endtime": "2024-12-18 04:15:00 UTC+03:00", - "genres": "Çocuk", - "advisory": [], - "ratingid": "0", - "picture": "https://gbzeottvsc01.tvplus.com.tr:33207/CPS/images/universal/film/program/202412/20241212/24/2126427696875eb8f42a_0_XL.jpg", - "isnpvr": "1", - "introduce": "Barbabebekler, anneye doğum günü için gösteri hazırlar. Sonra karnavala giderler ve Barbaartist bir alette mahsur kalır. Üç ayrı hikaye avlunun ortasında büyük bir hikayeye dönüşür.", - "programType": "episode", - "channelid": "4353", - "broadcastType": "Banttan", - "seasonInfo": "1. Sezon - 118. Bölüm" - }, - { - "id": "195334478", - "name": "Ayı Paddington'un Maceraları", - "starttime": "2024-12-18 04:15:00 UTC+03:00", - "endtime": "2024-12-18 04:40:00 UTC+03:00", - "genres": "Çocuk", - "advisory": [], - "ratingid": "0", - "picture": "https://gbzeottvsc01.tvplus.com.tr:33207/CPS/images/universal/film/program/202412/20241212/93/2126427706905eb8f42a_0_XL.jpg", - "isnpvr": "1", - "introduce": "Paddington martıların cipslere bayıldığını ve almak için her şeyi yapacaklarını anlar, ama öğle yemeğini sıcak teslim edebilir mi? Deniz feneri bozulur ve sisli gecede Paddington denizdeki tekneyi kurtarmaya yardım edebilir mi?", - "programType": "episode", - "channelid": "4353", - "broadcastType": "Banttan", - "seasonInfo": "3. Sezon - 309. Bölüm" - }, - { - "id": "195334484", - "name": "Rubble ve Ekibi", - "starttime": "2024-12-18 04:40:00 UTC+03:00", - "endtime": "2024-12-18 05:00:00 UTC+03:00", - "genres": "Çocuk", - "advisory": [], - "ratingid": "0", - "picture": "https://gbzeottvsc01.tvplus.com.tr:33207/CPS/images/universal/film/program/202412/20241212/70/2126427706935eb8f42a_0_XL.jpg", - "isnpvr": "1", - "introduce": "Skye, Rubble ve Ekibi'nin inşaat projelerinin hava desteğine ihtiyacı olduğunda Macera Koyu'ndan gelir. Ancak Hız Ustası işi bitirmek için köpüşleri geçmeye çalıştığında, Skye, Rubble ve ekibin geri kalanı günü kurtarmak için kurtarma moduna geçer!", - "programType": "episode", - "channelid": "4353", - "broadcastType": "Banttan", - "seasonInfo": "2. Sezon - 210. Bölüm" - }, - { - "id": "195334490", - "name": "Kaşif Dora", - "starttime": "2024-12-18 05:00:00 UTC+03:00", - "endtime": "2024-12-18 05:10:00 UTC+03:00", - "genres": "Çocuk", - "advisory": [], - "ratingid": "0", - "picture": "https://gbzeottvsc01.tvplus.com.tr:33207/CPS/images/universal/film/program/202412/20241212/5/2126427706965eb8f42a_0_XL.jpg", - "isnpvr": "1", - "introduce": "DORA büyülü yağmur ormanlarında daha fazla fantastik macera için geri döndü! Dünyanın en olağanüstü küçük kaşifi ve en iyi arkadaşı Boots'a yeni eğlence ve yeni arkadaşlar keşfederken katılın; sınır gökyüzü! Haydi!", - "programType": "episode", - "channelid": "4353", - "broadcastType": "Banttan", - "seasonInfo": "2. Sezon - 212. Bölüm" - }, - { - "id": "195334496", - "name": "Kaşif Dora", - "starttime": "2024-12-18 05:10:00 UTC+03:00", - "endtime": "2024-12-18 05:25:00 UTC+03:00", - "genres": "Çocuk", - "advisory": [], - "ratingid": "0", - "picture": "https://gbzeottvsc01.tvplus.com.tr:33207/CPS/images/universal/film/program/202412/20241212/29/2126427706995eb8f42a_0_XL.jpg", - "isnpvr": "1", - "introduce": "DORA büyülü yağmur ormanlarında daha fazla fantastik macera için geri döndü! Dünyanın en olağanüstü küçük kaşifi ve en iyi arkadaşı Boots'a yeni eğlence ve yeni arkadaşlar keşfederken katılın; sınır gökyüzü! Haydi!", - "programType": "episode", - "channelid": "4353", - "broadcastType": "Banttan", - "seasonInfo": "2. Sezon - 212. Bölüm" - }, - { - "id": "195334502", - "name": "Blaze ve Yol Canavarları", - "starttime": "2024-12-18 05:25:00 UTC+03:00", - "endtime": "2024-12-18 05:45:00 UTC+03:00", - "genres": "Çocuk", - "advisory": [], - "ratingid": "0", - "picture": "https://gbzeottvsc01.tvplus.com.tr:33207/CPS/images/universal/film/program/202412/20241212/6/2126427707025eb8f42a_0_XL.jpg", - "isnpvr": "1", - "introduce": "Crusher ve Pickle, fokurdayan bir balçık takasının üzerindeki bir kafesin içinde mahsur kaldığında, şövalye olmak Blaze, AJ ve Sparkle'a kalır. Çok geç olmadan Crusher ve Pickle'ı bataklıktan kurtarabilecekler mi?", - "programType": "episode", - "channelid": "4353", - "broadcastType": "Banttan", - "seasonInfo": "7. Sezon - 704. Bölüm" - }, - { - "id": "195334508", - "name": "Minik Şef'in Yemek Programı", - "starttime": "2024-12-18 05:45:00 UTC+03:00", - "endtime": "2024-12-18 06:10:00 UTC+03:00", - "genres": "Çocuk", - "advisory": [], - "ratingid": "0", - "picture": "https://gbzeottvsc01.tvplus.com.tr:33207/CPS/images/universal/film/program/202412/20241212/46/2126427707055eb8f42a_0_XL.jpg", - "isnpvr": "1", - "introduce": "Şef ve Olly soğan sosu yapıyor ama Şef soğan yüzünden ağlamadan duramıyor! Kraliçe Arı Kütük'ün çay partisine gelir, Şef kraliçelere layık bir parti düzenlemeye kararlıdır.", - "programType": "episode", - "channelid": "4353", - "broadcastType": "Banttan", - "seasonInfo": "2. Sezon - 208. Bölüm" - }, - { - "id": "195334514", - "name": "Baby Shark's Big Show!", - "starttime": "2024-12-18 06:10:00 UTC+03:00", - "endtime": "2024-12-18 06:30:00 UTC+03:00", - "genres": "Çocuk", - "advisory": [], - "ratingid": "0", - "picture": "https://gbzeottvsc01.tvplus.com.tr:33207/CPS/images/universal/film/program/202412/20241212/74/2126427717085eb8f42a_0_XL.jpg", - "isnpvr": "1", - "introduce": "Bir grup tavşan sümüklüböceği başıboş dolaşmaya başlayınca Vola onları tek başına toplamaya koyulur. William, Chumby adında bir deniz domuzunu evlat edindiğinde, küçük bücür William'ın beklediğinden daha fazla sorun çıkarır.", - "programType": "episode", - "channelid": "4353", - "broadcastType": "Banttan", - "seasonInfo": "2. Sezon - 213. Bölüm" - }, - { - "id": "195334520", - "name": "Camgöz (2020)", - "starttime": "2024-12-18 06:30:00 UTC+03:00", - "endtime": "2024-12-18 06:40:00 UTC+03:00", - "genres": "Çocuk", - "advisory": [], - "ratingid": "0", - "picture": "https://gbzeottvsc01.tvplus.com.tr:33207/CPS/images/universal/film/program/202412/20241212/85/2126427717115eb8f42a_0_XL.jpg", - "isnpvr": "1", - "introduce": "Max'in Camgöz adında yarı köpek balığı yarı köpek eşsiz bir evcil havyanı vardır. İlk başlarda Camgöz'ü saklamaya çalışsa da Sisli Pınarlar'da, en iyi arkadaşlar, meraklı komşular ve hatta Max'in ailesi bile yaramaz yeni arkadaşını fark edecektir.", - "programType": "episode", - "channelid": "4353", - "broadcastType": "Banttan", - "seasonInfo": "1. Sezon - 114. Bölüm" - }, - { - "id": "195334526", - "name": "Camgöz (2020)", - "starttime": "2024-12-18 06:40:00 UTC+03:00", - "endtime": "2024-12-18 06:45:00 UTC+03:00", - "genres": "Çocuk", - "advisory": [], - "ratingid": "0", - "picture": "https://gbzeottvsc01.tvplus.com.tr:33207/CPS/images/universal/film/program/202412/20241212/97/2126427717145eb8f42a_0_XL.jpg", - "isnpvr": "1", - "introduce": "Max'in Camgöz adında yarı köpek balığı yarı köpek eşsiz bir evcil havyanı vardır. İlk başlarda Camgöz'ü saklamaya çalışsa da Sisli Pınarlar'da, en iyi arkadaşlar, meraklı komşular ve hatta Max'in ailesi bile yaramaz yeni arkadaşını fark edecektir.", - "programType": "episode", - "channelid": "4353", - "broadcastType": "Banttan", - "seasonInfo": "1. Sezon - 115. Bölüm" - }, - { - "id": "195334532", - "name": "Camgöz (2020)", - "starttime": "2024-12-18 06:45:00 UTC+03:00", - "endtime": "2024-12-18 06:50:00 UTC+03:00", - "genres": "Çocuk", - "advisory": [], - "ratingid": "0", - "picture": "https://gbzeottvsc01.tvplus.com.tr:33207/CPS/images/universal/film/program/202412/20241212/48/2126427717175eb8f42a_0_XL.jpg", - "isnpvr": "1", - "introduce": "Max'in Camgöz adında yarı köpek balığı yarı köpek eşsiz bir evcil havyanı vardır. İlk başlarda Camgöz'ü saklamaya çalışsa da Sisli Pınarlar'da, en iyi arkadaşlar, meraklı komşular ve hatta Max'in ailesi bile yaramaz yeni arkadaşını fark edecektir.", - "programType": "episode", - "channelid": "4353", - "broadcastType": "Banttan", - "seasonInfo": "1. Sezon - 116. Bölüm" - }, - { - "id": "195334538", - "name": "Camgöz (2020)", - "starttime": "2024-12-18 06:50:00 UTC+03:00", - "endtime": "2024-12-18 07:00:00 UTC+03:00", - "genres": "Çocuk", - "advisory": [], - "ratingid": "0", - "picture": "https://gbzeottvsc01.tvplus.com.tr:33207/CPS/images/universal/film/program/202412/20241212/29/2126427717205eb8f42a_0_XL.jpg", - "isnpvr": "1", - "introduce": "Max'in Camgöz adında yarı köpek balığı yarı köpek eşsiz bir evcil havyanı vardır. İlk başlarda Camgöz'ü saklamaya çalışsa da Sisli Pınarlar'da, en iyi arkadaşlar, meraklı komşular ve hatta Max'in ailesi bile yaramaz yeni arkadaşını fark edecektir.", - "programType": "episode", - "channelid": "4353", - "broadcastType": "Banttan", - "seasonInfo": "1. Sezon - 117. Bölüm" - }, - { - "id": "195334544", - "name": "Paw Patrol", - "starttime": "2024-12-18 07:00:00 UTC+03:00", - "endtime": "2024-12-18 07:20:00 UTC+03:00", - "genres": "Çocuk", - "advisory": [], - "ratingid": "0", - "picture": "https://gbzeottvsc01.tvplus.com.tr:33207/CPS/images/universal/film/program/202412/20241212/52/2126427717235eb8f42a_0_XL.jpg", - "isnpvr": "1", - "introduce": "Humdinger'ın yansıtıcı panelini taşıyan drone bir ağaca çarpar, yansıtıcı bir ışık demetini ahşap bir köprü üzerinde yoğunlaştırarak yanmasına neden olur. Paw Patrol, dev bir egzersiz topunun içinde yuvarlanan Winnie ve bir kapibara'yı kurtarır.", - "programType": "episode", - "channelid": "4353", - "broadcastType": "Banttan", - "seasonInfo": "10. Sezon - 1020. Bölüm" - }, - { - "id": "195334550", - "name": "Köpecik Pit Ekibi", - "starttime": "2024-12-18 07:20:00 UTC+03:00", - "endtime": "2024-12-18 07:30:00 UTC+03:00", - "genres": "Çocuk", - "advisory": [], - "ratingid": "0", - "picture": "https://gbzeottvsc01.tvplus.com.tr:33207/CPS/images/universal/film/program/202412/20241212/9/2126427727265eb8f42a_0_XL.jpg", - "isnpvr": "1", - "introduce": "PAW Patrol okul öncesi programı ve altı tane köpekçik baş rolü paylaşıyor: Chase, Marshall, Rocky, Zuma, Rubble ve Skye, başlarında da teknoloji meraklısı 10 yaşında bir çocuk olan Ryder var.", - "programType": "episode", - "channelid": "4353", - "broadcastType": "Banttan", - "seasonInfo": "4. Sezon - 415. Bölüm" - }, - { - "id": "195334556", - "name": "Rubble ve Ekibi", - "starttime": "2024-12-18 07:30:00 UTC+03:00", - "endtime": "2024-12-18 07:55:00 UTC+03:00", - "genres": "Çocuk", - "advisory": [], - "ratingid": "0", - "picture": "https://gbzeottvsc01.tvplus.com.tr:33207/CPS/images/universal/film/program/202412/20241212/53/2126427727295eb8f42a_0_XL.jpg", - "isnpvr": "1", - "introduce": "Rubble ve Ekibi, Gravel Dede'nin özel fotoğrafı için bir kuaför salonu inşa ediyor, ta ki şampuanla ilgili bir aksilikle karşılaşana dek! Motor ve Lily yavruların şimdiye kadar gördükleri en havalı ışık gösterisiyle parlak bir keşif yaparlar!", - "programType": "episode", - "channelid": "4353", - "broadcastType": "Banttan", - "seasonInfo": "2. Sezon - 205. Bölüm" - }, - { - "id": "195334562", - "name": "Peppa Pig", - "starttime": "2024-12-18 07:55:00 UTC+03:00", - "endtime": "2024-12-18 08:00:00 UTC+03:00", - "genres": "Çocuk", - "advisory": [], - "ratingid": "0", - "picture": "https://gbzeottvsc01.tvplus.com.tr:33207/CPS/images/universal/film/program/202412/20241212/60/2126427727325eb8f42a_0_XL.jpg", - "isnpvr": "1", - "introduce": "Peppa, annesi, babası ve abisi George'la yaşayan küçük bir domuzdur. Peppa oyun oynamayı, şık giyinmeyi, uzun seyahatleri ve çamurda zıplamayı sever.", - "programType": "episode", - "channelid": "4353", - "broadcastType": "Banttan", - "seasonInfo": "1. Sezon - 117. Bölüm" - }, - { - "id": "195334568", - "name": "Peppa Pig", - "starttime": "2024-12-18 08:00:00 UTC+03:00", - "endtime": "2024-12-18 08:05:00 UTC+03:00", - "genres": "Çocuk", - "advisory": [], - "ratingid": "0", - "picture": "https://gbzeottvsc01.tvplus.com.tr:33207/CPS/images/universal/film/program/202412/20241212/85/2126427727355eb8f42a_0_XL.jpg", - "isnpvr": "1", - "introduce": "Anne Domuz evde yokken, Baba Domuz duvara Peppa ve George'un resmini asmak ister. Yanlışlıkla duvarı çatlatır ve Peppa ve George, Anne Domuz eve gelmeden Baba Domuz'a tamirat için yardım ederler.", - "programType": "episode", - "channelid": "4353", - "broadcastType": "Banttan", - "seasonInfo": "1. Sezon - 145. Bölüm" - }, - { - "id": "195334574", - "name": "Peppa Pig", - "starttime": "2024-12-18 08:05:00 UTC+03:00", - "endtime": "2024-12-18 08:10:00 UTC+03:00", - "genres": "Çocuk", - "advisory": [], - "ratingid": "0", - "picture": "https://gbzeottvsc01.tvplus.com.tr:33207/CPS/images/universal/film/program/202412/20241212/60/2126427727385eb8f42a_0_XL.jpg", - "isnpvr": "1", - "introduce": "Peppa ve ailesi plaja gider ve Baba Domuz'u kumlara gömmek de dâhil, birçok şey yaparlar. Dönüş vakti geldiğinde Baba Domuz uyuyakaldığı için neredeyse onu unutacaklardır.", - "programType": "episode", - "channelid": "4353", - "broadcastType": "Banttan", - "seasonInfo": "1. Sezon - 146. Bölüm" - }, - { - "id": "195334580", - "name": "Peppa Pig", - "starttime": "2024-12-18 08:10:00 UTC+03:00", - "endtime": "2024-12-18 08:15:00 UTC+03:00", - "genres": "Çocuk", - "advisory": [], - "ratingid": "0", - "picture": "https://gbzeottvsc01.tvplus.com.tr:33207/CPS/images/universal/film/program/202412/20241212/80/2126427727415eb8f42a_0_XL.jpg", - "isnpvr": "1", - "introduce": "Peppa ve George, Büyükbaba Domuz'un teknesiyle gezintiye gider. Köpek Danny ve Büyükbaba Köpek de tekneyle açılmıştır. Büyükbaba Domuz ve Büyükbaba Köpek, kimin daha hızlı olduğunu anlamak için yarışırlar.", - "programType": "episode", - "channelid": "4353", - "broadcastType": "Banttan", - "seasonInfo": "1. Sezon - 148. Bölüm" - }, - { - "id": "195334586", - "name": "Anna ve Dostları", - "starttime": "2024-12-18 08:15:00 UTC+03:00", - "endtime": "2024-12-18 08:20:00 UTC+03:00", - "genres": "Çocuk", - "advisory": [], - "ratingid": "0", - "picture": "https://gbzeottvsc01.tvplus.com.tr:33207/CPS/images/universal/film/program/202412/20241212/91/2126427727445eb8f42a_0_XL.jpg", - "isnpvr": "1", - "introduce": "Christopher, Süper Christopher kostümüyle maceraya hazır şekilde Anna'yı ziyaret eder! Ancak bir süper kahraman olmak zorlukları da beraberinde getirir. Christopher sadece bir süper kahraman değil, aynı zamanda süper bir arkadaş.", - "programType": "episode", - "channelid": "4353", - "broadcastType": "Banttan", - "seasonInfo": "1. Sezon - 104. Bölüm" - }, - { - "id": "195334592", - "name": "Anna ve Dostları", - "starttime": "2024-12-18 08:20:00 UTC+03:00", - "endtime": "2024-12-18 08:30:00 UTC+03:00", - "genres": "Çocuk", - "advisory": [], - "ratingid": "0", - "picture": "https://gbzeottvsc01.tvplus.com.tr:33207/CPS/images/universal/film/program/202412/20241212/77/2126427737475eb8f42a_0_XL.jpg", - "isnpvr": "1", - "introduce": "Polaroid kamera tüm dostlarının fotoğraflarını çekmeye karar verir. Herkes bunun harika bir fikir olduğunu düşünür ve Anna harika portreler çeker. Bir grup fotoğrafı çekmeye çalıştığında işler karmaşıklaşır!", - "programType": "episode", - "channelid": "4353", - "broadcastType": "Banttan", - "seasonInfo": "1. Sezon - 105. Bölüm" - }, - { - "id": "195334598", - "name": "Minik Şef'in Yemek Programı", - "starttime": "2024-12-18 08:30:00 UTC+03:00", - "endtime": "2024-12-18 08:50:00 UTC+03:00", - "genres": "Çocuk", - "advisory": [], - "ratingid": "0", - "picture": "https://gbzeottvsc01.tvplus.com.tr:33207/CPS/images/universal/film/program/202412/20241212/33/2126427737505eb8f42a_0_XL.jpg", - "isnpvr": "1", - "introduce": "Şef, sürpriz doğum günü kahvaltısı için Olly'nin en sevdiği çörekleri onu uyandırmadan pişirmeye çalışır. Şef ve Olly bir yandan on iki uğur böceği bebeğe bakıcılık yaparken bir yandan da onlara atıştırmalık bir şeyler hazırlamaya çalışırlar.", - "programType": "episode", - "channelid": "4353", - "broadcastType": "Banttan", - "seasonInfo": "2. Sezon - 202. Bölüm" - }, - { - "id": "195334604", - "name": "Minik Şef", - "starttime": "2024-12-18 08:50:00 UTC+03:00", - "endtime": "2024-12-18 09:00:00 UTC+03:00", - "genres": "Çocuk", - "advisory": [], - "ratingid": "0", - "picture": "https://gbzeottvsc01.tvplus.com.tr:33207/CPS/images/universal/film/program/202412/20241212/6/2126427737535eb8f42a_0_XL.jpg", - "isnpvr": "1", - "introduce": "Minik Şef evinde küçük yemek şovu verir ve en iyi arkadaşları Olly, Ruby ve Henry ile lezzetli yemekler ve harika maceralar hazırlar. Minik Şef, buluşlarını arkadaşlarıyla paylaşmaktan keyif alır ve yaptığı her yemeğe sevgisini katar.", - "programType": "episode", - "channelid": "4353", - "broadcastType": "Banttan", - "seasonInfo": "1. Sezon - 101. Bölüm" - }, - { - "id": "195334610", - "name": "Blaze ve Yol Canavarları", - "starttime": "2024-12-18 09:00:00 UTC+03:00", - "endtime": "2024-12-18 09:25:00 UTC+03:00", - "genres": "Çocuk", - "advisory": [], - "ratingid": "0", - "picture": "https://gbzeottvsc01.tvplus.com.tr:33207/CPS/images/universal/film/program/202412/20241212/13/2126427737565eb8f42a_0_XL.jpg", - "isnpvr": "1", - "introduce": "Acıkan Ezici yanlışlıkla fırın kamyonunun robotlarının dağınık modunu açar ve robotlar tekerlek çıkarıp gider! Aks Şehri unlu mamullerle kaplanmadan bütün başı boş robotları bulmak AJ ve Blaze'e kalır.", - "programType": "episode", - "channelid": "4353", - "broadcastType": "Banttan", - "seasonInfo": "1. Sezon - 111. Bölüm" - }, - { - "id": "195334616", - "name": "Hamster Diyarı", - "starttime": "2024-12-18 09:25:00 UTC+03:00", - "endtime": "2024-12-18 09:45:00 UTC+03:00", - "genres": "Çocuk", - "advisory": [], - "ratingid": "0", - "picture": "https://gbzeottvsc01.tvplus.com.tr:33207/CPS/images/universal/film/program/202412/20241212/75/2126427737595eb8f42a_0_XL.jpg", - "isnpvr": "1", - "introduce": "Greg çiğneme alışkanlığını bıraktığında dişleri kontrolden çıkar. Clover, Harry ona dört yapraklı bir yonca hediye ettiğinde kendisine iyi şans tılsımı verildiğini düşünür.", - "programType": "episode", - "channelid": "4353", - "broadcastType": "Banttan", - "seasonInfo": "1. Sezon - 111. Bölüm" - }, - { - "id": "195334622", - "name": "Paw Patrol", - "starttime": "2024-12-18 09:45:00 UTC+03:00", - "endtime": "2024-12-18 10:10:00 UTC+03:00", - "genres": "Çocuk", - "advisory": [], - "ratingid": "0", - "picture": "https://gbzeottvsc01.tvplus.com.tr:33207/CPS/images/universal/film/program/202412/20241212/30/2126427737625eb8f42a_0_XL.jpg", - "isnpvr": "1", - "introduce": "Bu koku da ne? Tuhaf bir koku ormandaki hayvanları evinden kaçırıyor. Devekuşu Olivia kanyona düştü! Köpekçiklerin yakında çatlayacak yumurtalarını sıcak tutarak Olivia'yı güvenli bir yere çıkarması gerek.", - "programType": "episode", - "channelid": "4353", - "broadcastType": "Banttan", - "seasonInfo": "6. Sezon - 606. Bölüm" - }, - { - "id": "195334628", - "name": "Paw Patrol", - "starttime": "2024-12-18 10:10:00 UTC+03:00", - "endtime": "2024-12-18 10:30:00 UTC+03:00", - "genres": "Çocuk", - "advisory": [], - "ratingid": "0", - "picture": "https://gbzeottvsc01.tvplus.com.tr:33207/CPS/images/universal/film/program/202412/20241212/27/2126427737655eb8f42a_0_XL.jpg", - "isnpvr": "1", - "introduce": "Gustavo Goodway'in gitarı kayboldu. Köpekçiklerin kamp konserinden önce gitarı bulması gerekiyor. Çiftçi Yumi'nin Keçi Yogası sınıfı çok tutulur, ta ki keçileri kaybolana kadar. Keçileri bulup Yumi'nin çiftliğine getirmek de Paw Patrol'e kalır.", - "programType": "episode", - "channelid": "4353", - "broadcastType": "Banttan", - "seasonInfo": "6. Sezon - 607. Bölüm" - }, - { - "id": "195334634", - "name": "Köpecik Pit Ekibi", - "starttime": "2024-12-18 10:30:00 UTC+03:00", - "endtime": "2024-12-18 10:40:00 UTC+03:00", - "genres": "Çocuk", - "advisory": [], - "ratingid": "0", - "picture": "https://gbzeottvsc01.tvplus.com.tr:33207/CPS/images/universal/film/program/202412/20241212/79/2126427737685eb8f42a_0_XL.jpg", - "isnpvr": "1", - "introduce": "PAW Patrol okul öncesi programı ve altı tane köpekçik baş rolü paylaşıyor: Chase, Marshall, Rocky, Zuma, Rubble ve Skye, başlarında da teknoloji meraklısı 10 yaşında bir çocuk olan Ryder var.", - "programType": "episode", - "channelid": "4353", - "broadcastType": "Banttan", - "seasonInfo": "1. Sezon - 106. Bölüm" - }, - { - "id": "195334640", - "name": "Rubble ve Ekibi", - "starttime": "2024-12-18 10:40:00 UTC+03:00", - "endtime": "2024-12-18 11:05:00 UTC+03:00", - "genres": "Çocuk", - "advisory": [], - "ratingid": "0", - "picture": "https://gbzeottvsc01.tvplus.com.tr:33207/CPS/images/universal/film/program/202412/20241212/38/2126427747715eb8f42a_0_XL.jpg", - "isnpvr": "1", - "introduce": "İnşaatçı Koyu'nda bir gizem var! Tüm kasaba halkının heykelleri aniden ortadan kaybolunca Chase, kayıp heykel vakasını çözmek için Rubble ve Ekibi'ne katılır ve araştırmaya yardımcı olmak için yepyeni bir Bilim Merkezi inşa eder.", - "programType": "episode", - "channelid": "4353", - "broadcastType": "Banttan", - "seasonInfo": "1. Sezon - 120. Bölüm" - }, - { - "id": "195334646", - "name": "Rubble ve Ekibi", - "starttime": "2024-12-18 11:05:00 UTC+03:00", - "endtime": "2024-12-18 11:30:00 UTC+03:00", - "genres": "Çocuk", - "advisory": [], - "ratingid": "0", - "picture": "https://gbzeottvsc01.tvplus.com.tr:33207/CPS/images/universal/film/program/202412/20241212/76/2126427747745eb8f42a_0_XL.jpg", - "isnpvr": "1", - "introduce": "Hız Ustası Yetenek Gösterisi sahnesini sabote edince, yavrular günü kurtarmak için Motor'un yeteneğini kullanıyor. Parıltı Sierra İnşaçı Koyu Günü için şarkı söyleyecek! Grubun enstrümanları bozulunca, Rubble ve Ekibi'nin bir çözümü var.", - "programType": "episode", - "channelid": "4353", - "broadcastType": "Banttan", - "seasonInfo": "1. Sezon - 121. Bölüm" - }, - { - "id": "195334652", - "name": "Kaşif Dora", - "starttime": "2024-12-18 11:30:00 UTC+03:00", - "endtime": "2024-12-18 11:40:00 UTC+03:00", - "genres": "Çocuk", - "advisory": [], - "ratingid": "0", - "picture": "https://gbzeottvsc01.tvplus.com.tr:33207/CPS/images/universal/film/program/202412/20241212/43/2126427747775eb8f42a_0_XL.jpg", - "isnpvr": "1", - "introduce": "DORA büyülü yağmur ormanlarında daha fazla fantastik macera için geri döndü! Dünyanın en olağanüstü küçük kaşifi ve en iyi arkadaşı Boots'a yeni eğlence ve yeni arkadaşlar keşfederken katılın; sınır gökyüzü! Haydi!", - "programType": "episode", - "channelid": "4353", - "broadcastType": "Banttan", - "seasonInfo": "2. Sezon - 212. Bölüm" - }, - { - "id": "195334658", - "name": "Kaşif Dora", - "starttime": "2024-12-18 11:40:00 UTC+03:00", - "endtime": "2024-12-18 11:50:00 UTC+03:00", - "genres": "Çocuk", - "advisory": [], - "ratingid": "0", - "picture": "https://gbzeottvsc01.tvplus.com.tr:33207/CPS/images/universal/film/program/202412/20241212/50/2126427747805eb8f42a_0_XL.jpg", - "isnpvr": "1", - "introduce": "DORA büyülü yağmur ormanlarında daha fazla fantastik macera için geri döndü! Dünyanın en olağanüstü küçük kaşifi ve en iyi arkadaşı Boots'a yeni eğlence ve yeni arkadaşlar keşfederken katılın; sınır gökyüzü! Haydi!", - "programType": "episode", - "channelid": "4353", - "broadcastType": "Banttan", - "seasonInfo": "2. Sezon - 212. Bölüm" - }, - { - "id": "195334664", - "name": "Baby Shark's Big Show!", - "starttime": "2024-12-18 11:50:00 UTC+03:00", - "endtime": "2024-12-18 12:15:00 UTC+03:00", - "genres": "Çocuk", - "advisory": [], - "ratingid": "0", - "picture": "https://gbzeottvsc01.tvplus.com.tr:33207/CPS/images/universal/film/program/202412/20241212/35/2126427747835eb8f42a_0_XL.jpg", - "isnpvr": "1", - "introduce": "Carnivore Koy'da dans etmek yasaklandığında, Baby Shark kasabanın tekrar dans etmesi için ne gerekiyorsa yapacaktır! Baby ve William, Ernie'nin en iyi arkadaşını edinmesine yardım etmeye çalışır.", - "programType": "episode", - "channelid": "4353", - "broadcastType": "Banttan", - "seasonInfo": "2. Sezon - 225. Bölüm" - }, - { - "id": "195334670", - "name": "Camgöz (2020)", - "starttime": "2024-12-18 12:15:00 UTC+03:00", - "endtime": "2024-12-18 12:20:00 UTC+03:00", - "genres": "Çocuk", - "advisory": [], - "ratingid": "0", - "picture": "https://gbzeottvsc01.tvplus.com.tr:33207/CPS/images/universal/film/program/202412/20241212/47/2126427757865eb8f42a_0_XL.jpg", - "isnpvr": "1", - "introduce": "Max'in yarı köpekbalığı yarı köpek olan Camgöz adlı sıra dışı bir evcil hayvanı vardır. Max önce Camgöz'ü sır olarak saklamaya çalışsa da Foggy Springs'teki dostları, meraklı komşuları ve ailesi onun yeni, yaramaz dostunu er ya da geç fark edecektir.", - "programType": "episode", - "channelid": "4353", - "broadcastType": "Banttan", - "seasonInfo": "2. Sezon - 205. Bölüm" - }, - { - "id": "195334676", - "name": "Camgöz (2020)", - "starttime": "2024-12-18 12:20:00 UTC+03:00", - "endtime": "2024-12-18 12:25:00 UTC+03:00", - "genres": "Çocuk", - "advisory": [], - "ratingid": "0", - "picture": "https://gbzeottvsc01.tvplus.com.tr:33207/CPS/images/universal/film/program/202412/20241212/46/2126427757895eb8f42a_0_XL.jpg", - "isnpvr": "1", - "introduce": "Camgöz yıllık Fisher aile fotoğrafında yer alacağı için çok heyecanlıdır, ancak peş peşe gelen talihsizlikler onun mükemmel fotoğrafı için bir tehdit oluşturur.", - "programType": "episode", - "channelid": "4353", - "broadcastType": "Banttan", - "seasonInfo": "2. Sezon - 206. Bölüm" - }, - { - "id": "195334682", - "name": "Camgöz (2020)", - "starttime": "2024-12-18 12:25:00 UTC+03:00", - "endtime": "2024-12-18 12:35:00 UTC+03:00", - "genres": "Çocuk", - "advisory": [], - "ratingid": "0", - "picture": "https://gbzeottvsc01.tvplus.com.tr:33207/CPS/images/universal/film/program/202412/20241212/39/2126427757925eb8f42a_0_XL.jpg", - "isnpvr": "1", - "introduce": "Dennis, Köpek Balığı Sürüsü'nü 3'e 3 basketbol oyununa davet ettiğinde, Camgöz harika bir oyuncu olduğunu gösterir. O kadar harikadır ki, sonunda Max'in yerini bile alabilir!", - "programType": "episode", - "channelid": "4353", - "broadcastType": "Banttan", - "seasonInfo": "2. Sezon - 207. Bölüm" - }, - { - "id": "195334688", - "name": "Peppa Pig", - "starttime": "2024-12-18 12:35:00 UTC+03:00", - "endtime": "2024-12-18 12:40:00 UTC+03:00", - "genres": "Çocuk", - "advisory": [], - "ratingid": "0", - "picture": "https://gbzeottvsc01.tvplus.com.tr:33207/CPS/images/universal/film/program/202412/20241212/82/2126427757955eb8f42a_0_XL.jpg", - "isnpvr": "1", - "introduce": "Peppa, annesi, babası ve abisi George'la yaşayan küçük bir domuzdur. Peppa oyun oynamayı, şık giyinmeyi, uzun seyahatleri ve çamurda zıplamayı sever.", - "programType": "episode", - "channelid": "4353", - "broadcastType": "Banttan", - "seasonInfo": "1. Sezon - 149. Bölüm" - }, - { - "id": "195334694", - "name": "Peppa Pig", - "starttime": "2024-12-18 12:40:00 UTC+03:00", - "endtime": "2024-12-18 12:45:00 UTC+03:00", - "genres": "Çocuk", - "advisory": [], - "ratingid": "0", - "picture": "https://gbzeottvsc01.tvplus.com.tr:33207/CPS/images/universal/film/program/202412/20241212/73/2126427757985eb8f42a_0_XL.jpg", - "isnpvr": "1", - "introduce": "Peppa, annesi, babası ve abisi George'la yaşayan küçük bir domuzdur. Peppa oyun oynamayı, şık giyinmeyi, uzun seyahatleri ve çamurda zıplamayı sever.", - "programType": "episode", - "channelid": "4353", - "broadcastType": "Banttan", - "seasonInfo": "1. Sezon - 150. Bölüm" - }, - { - "id": "195334700", - "name": "Peppa Pig", - "starttime": "2024-12-18 12:45:00 UTC+03:00", - "endtime": "2024-12-18 12:50:00 UTC+03:00", - "genres": "Çocuk", - "advisory": [], - "ratingid": "0", - "picture": "https://gbzeottvsc01.tvplus.com.tr:33207/CPS/images/universal/film/program/202412/20241212/4/2126427758015eb8f42a_0_XL.jpg", - "isnpvr": "1", - "introduce": "Baba Domuz yeni bir video kamera alır. Önce Peppa, ona nasıl çalıştığını gösterir, sonra Baba Domuz, Peppa'nın şapşal görüntülerini kaydeder.", - "programType": "episode", - "channelid": "4353", - "broadcastType": "Banttan", - "seasonInfo": "1. Sezon - 151. Bölüm" - }, - { - "id": "195334706", - "name": "Peppa Pig", - "starttime": "2024-12-18 12:50:00 UTC+03:00", - "endtime": "2024-12-18 12:55:00 UTC+03:00", - "genres": "Çocuk", - "advisory": [], - "ratingid": "0", - "picture": "https://gbzeottvsc01.tvplus.com.tr:33207/CPS/images/universal/film/program/202412/20241212/84/2126427758045eb8f42a_0_XL.jpg", - "isnpvr": "1", - "introduce": "Peppa ve arkadaşları, Kırmızı Başlıklı Kız ile ilgili bir okul temsilinde rol alır. Ama Midilli Pedro, sahneye çıkacağı için çok gergindir.", - "programType": "episode", - "channelid": "4353", - "broadcastType": "Banttan", - "seasonInfo": "1. Sezon - 152. Bölüm" - }, - { - "id": "195334712", - "name": "Minik Şef'in Yemek Programı", - "starttime": "2024-12-18 12:55:00 UTC+03:00", - "endtime": "2024-12-18 13:15:00 UTC+03:00", - "genres": "Çocuk", - "advisory": [], - "ratingid": "0", - "picture": "https://gbzeottvsc01.tvplus.com.tr:33207/CPS/images/universal/film/program/202412/20241212/38/2126427768075eb8f42a_0_XL.jpg", - "isnpvr": "1", - "introduce": "Morton'un yol atıştırmalığı düşünce Şef ve Olly ona yolculuğu için en iyi atıştırmalığı yapmak üzerine yarışır. İlk aşçılık deneyimi için çok hevesli olan biri, Şef ve Olly'ye nachos yapımında yardım eder.", - "programType": "episode", - "channelid": "4353", - "broadcastType": "Banttan", - "seasonInfo": "2. Sezon - 205. Bölüm" - }, - { - "id": "195334718", - "name": "Barbapapa Ailesi", - "starttime": "2024-12-18 13:15:00 UTC+03:00", - "endtime": "2024-12-18 13:40:00 UTC+03:00", - "genres": "Çocuk", - "advisory": [], - "ratingid": "0", - "picture": "https://gbzeottvsc01.tvplus.com.tr:33207/CPS/images/universal/film/program/202412/20241212/84/2126427768105eb8f42a_0_XL.jpg", - "isnpvr": "1", - "introduce": "En popüler ailenin dünya ekranlarına göz kamaştırıcı dönüşü! BARBAPAPA. Büyük mutlu bir aile! Barbapapalar için rutin diye bir şey yoktur: her gün sürprizlerle dolu neşeli bir maceradır!", - "programType": "episode", - "channelid": "4353", - "broadcastType": "Banttan", - "seasonInfo": "2. Sezon - 213. Bölüm" - }, - { - "id": "195334724", - "name": "BARBAPAPA Ailesi", - "starttime": "2024-12-18 13:40:00 UTC+03:00", - "endtime": "2024-12-18 14:00:00 UTC+03:00", - "genres": "Çocuk", - "advisory": [], - "ratingid": "0", - "picture": "https://gbzeottvsc01.tvplus.com.tr:33207/CPS/images/universal/film/program/202412/20241212/43/2126427768135eb8f42a_0_XL.jpg", - "isnpvr": "1", - "introduce": "Barbapapalar, altında doğdukları ağaca geri döner. Ağaç kötü durumda. Yakındaki hayvanları rahatsız etmeden onu kurtarmalı. Bugün Barbabebeklerin doğum günü. Hepsi Barbapapa'yla farklı bir şeyler yapmak istiyor!", - "programType": "episode", - "channelid": "4353", - "broadcastType": "Banttan", - "seasonInfo": "1. Sezon - 101. Bölüm" - }, - { - "id": "195334730", - "name": "Blaze ve Yol Canavarları", - "starttime": "2024-12-18 14:00:00 UTC+03:00", - "endtime": "2024-12-18 14:25:00 UTC+03:00", - "genres": "Çocuk", - "advisory": [], - "ratingid": "0", - "picture": "https://gbzeottvsc01.tvplus.com.tr:33207/CPS/images/universal/film/program/202412/20241212/10/2126427768165eb8f42a_0_XL.jpg", - "isnpvr": "1", - "introduce": "Üç devasa posta teslimatı olunca, hepsini teslim edebilecek tek bir canavar makine var: Posta Kamyonu Blaze! Denizleri yüzerek aşacak, dağlara tırmanacak ve Monster Dome'a girecek çünkü posta kamyonları her zaman teslimat yapar!", - "programType": "episode", - "channelid": "4353", - "broadcastType": "Banttan", - "seasonInfo": "7. Sezon - 702. Bölüm" - }, - { - "id": "195334736", - "name": "Blaze ve Yol Canavarları", - "starttime": "2024-12-18 14:25:00 UTC+03:00", - "endtime": "2024-12-18 14:50:00 UTC+03:00", - "genres": "Çocuk", - "advisory": [], - "ratingid": "0", - "picture": "https://gbzeottvsc01.tvplus.com.tr:33207/CPS/images/universal/film/program/202412/20241212/93/2126427768195eb8f42a_0_XL.jpg", - "isnpvr": "1", - "introduce": "Büyükannenin doğum günü ama Crusher'ın hediye parası yok! Blaze ve AJ ona farklı işler yapmasında ve para kazanmasında yardım ediyor. Ancak, doğum günü partisine zamanında yetişebilmek için acele etmeleri gerek!", - "programType": "episode", - "channelid": "4353", - "broadcastType": "Banttan", - "seasonInfo": "7. Sezon - 703. Bölüm" - }, - { - "id": "195334742", - "name": "Paw Patrol", - "starttime": "2024-12-18 14:50:00 UTC+03:00", - "endtime": "2024-12-18 15:10:00 UTC+03:00", - "genres": "Çocuk", - "advisory": [], - "ratingid": "0", - "picture": "https://gbzeottvsc01.tvplus.com.tr:33207/CPS/images/universal/film/program/202412/20241212/20/2126427768225eb8f42a_0_XL.jpg", - "isnpvr": "1", - "introduce": "Bugün macera körfezi'nde yetenek şovu günü! Başkan Goodway heyecanlı ama yeterince gösteri olmayacağından endişeli! Ryder ve köpekçikler, Çiftçi Al'a mısırlı rostosunu ve mısır tarlası labirentini hazırlamasında yardım ediyor!", - "programType": "episode", - "channelid": "4353", - "broadcastType": "Banttan", - "seasonInfo": "2. Sezon - 210. Bölüm" - }, - { - "id": "195334748", - "name": "Paw Patrol", - "starttime": "2024-12-18 15:10:00 UTC+03:00", - "endtime": "2024-12-18 15:35:00 UTC+03:00", - "genres": "Çocuk", - "advisory": [], - "ratingid": "0", - "picture": "https://gbzeottvsc01.tvplus.com.tr:33207/CPS/images/universal/film/program/202412/20241212/63/2126427768255eb8f42a_0_XL.jpg", - "isnpvr": "1", - "introduce": "Diğer köpekçikler paraşüt eğitimindeyken, Marshall bir grup kedi yavrusunu tek başına toplamak zorunda. Ama diğer köpek sürüleriniden de destek görüyor! Ryder ve paw patrol, bir geyik ailesini kaygan buzların üstündem kurtarıyor!", - "programType": "episode", - "channelid": "4353", - "broadcastType": "Banttan", - "seasonInfo": "2. Sezon - 211. Bölüm" - }, - { - "id": "195334754", - "name": "Baby Shark's Big Show", - "starttime": "2024-12-18 15:35:00 UTC+03:00", - "endtime": "2024-12-18 15:55:00 UTC+03:00", - "genres": "Çocuk", - "advisory": [], - "ratingid": "0", - "picture": "https://gbzeottvsc01.tvplus.com.tr:33207/CPS/images/universal/film/program/202412/20241212/52/2126427768285eb8f42a_0_XL.jpg", - "isnpvr": "1", - "introduce": "Baby Shark'ın Midye Topu ekibi alışılmadık yöntemleri olan bir koç tutar. Baby Shark, Büyükanne Köpekbalığı ile yapacağı büyük dans partisinden önce büyük lokma yutar.", - "programType": "episode", - "channelid": "4353", - "broadcastType": "Banttan", - "seasonInfo": "1. Sezon - 114. Bölüm" - }, - { - "id": "195334760", - "name": "BARBAPAPA Ailesi", - "starttime": "2024-12-18 15:55:00 UTC+03:00", - "endtime": "2024-12-18 16:15:00 UTC+03:00", - "genres": "Çocuk", - "advisory": [], - "ratingid": "0", - "picture": "https://gbzeottvsc01.tvplus.com.tr:33207/CPS/images/universal/film/program/202412/20241212/4/2126427768315eb8f42a_0_XL.jpg", - "isnpvr": "1", - "introduce": "Barbabebekler, anneye doğum günü için gösteri hazırlar. Sonra karnavala giderler ve Barbaartist bir alette mahsur kalır. Üç ayrı hikaye avlunun ortasında büyük bir hikayeye dönüşür.", - "programType": "episode", - "channelid": "4353", - "broadcastType": "Banttan", - "seasonInfo": "1. Sezon - 118. Bölüm" - }, - { - "id": "195334766", - "name": "Ayı Paddington'un Maceraları", - "starttime": "2024-12-18 16:15:00 UTC+03:00", - "endtime": "2024-12-18 16:40:00 UTC+03:00", - "genres": "Çocuk", - "advisory": [], - "ratingid": "0", - "picture": "https://gbzeottvsc01.tvplus.com.tr:33207/CPS/images/universal/film/program/202412/20241212/66/2126427778345eb8f42a_0_XL.jpg", - "isnpvr": "1", - "introduce": "Paddington martıların cipslere bayıldığını ve almak için her şeyi yapacaklarını anlar, ama öğle yemeğini sıcak teslim edebilir mi? Deniz feneri bozulur ve sisli gecede Paddington denizdeki tekneyi kurtarmaya yardım edebilir mi?", - "programType": "episode", - "channelid": "4353", - "broadcastType": "Banttan", - "seasonInfo": "3. Sezon - 309. Bölüm" - }, - { - "id": "195334772", - "name": "Rubble ve Ekibi", - "starttime": "2024-12-18 16:40:00 UTC+03:00", - "endtime": "2024-12-18 17:00:00 UTC+03:00", - "genres": "Çocuk", - "advisory": [], - "ratingid": "0", - "picture": "https://gbzeottvsc01.tvplus.com.tr:33207/CPS/images/universal/film/program/202412/20241212/11/2126427778375eb8f42a_0_XL.jpg", - "isnpvr": "1", - "introduce": "Skye, Rubble ve Ekibi'nin inşaat projelerinin hava desteğine ihtiyacı olduğunda Macera Koyu'ndan gelir. Ancak Hız Ustası işi bitirmek için köpüşleri geçmeye çalıştığında, Skye, Rubble ve ekibin geri kalanı günü kurtarmak için kurtarma moduna geçer!", - "programType": "episode", - "channelid": "4353", - "broadcastType": "Banttan", - "seasonInfo": "2. Sezon - 210. Bölüm" - }, - { - "id": "195334778", - "name": "Kaşif Dora", - "starttime": "2024-12-18 17:00:00 UTC+03:00", - "endtime": "2024-12-18 17:10:00 UTC+03:00", - "genres": "Çocuk", - "advisory": [], - "ratingid": "0", - "picture": "https://gbzeottvsc01.tvplus.com.tr:33207/CPS/images/universal/film/program/202412/20241212/64/2126427778405eb8f42a_0_XL.jpg", - "isnpvr": "1", - "introduce": "DORA büyülü yağmur ormanlarında daha fazla fantastik macera için geri döndü! Dünyanın en olağanüstü küçük kaşifi ve en iyi arkadaşı Boots'a yeni eğlence ve yeni arkadaşlar keşfederken katılın; sınır gökyüzü! Haydi!", - "programType": "episode", - "channelid": "4353", - "broadcastType": "Banttan", - "seasonInfo": "2. Sezon - 212. Bölüm" - }, - { - "id": "195334784", - "name": "Kaşif Dora", - "starttime": "2024-12-18 17:10:00 UTC+03:00", - "endtime": "2024-12-18 17:25:00 UTC+03:00", - "genres": "Çocuk", - "advisory": [], - "ratingid": "0", - "picture": "https://gbzeottvsc01.tvplus.com.tr:33207/CPS/images/universal/film/program/202412/20241212/35/2126427778435eb8f42a_0_XL.jpg", - "isnpvr": "1", - "introduce": "DORA büyülü yağmur ormanlarında daha fazla fantastik macera için geri döndü! Dünyanın en olağanüstü küçük kaşifi ve en iyi arkadaşı Boots'a yeni eğlence ve yeni arkadaşlar keşfederken katılın; sınır gökyüzü! Haydi!", - "programType": "episode", - "channelid": "4353", - "broadcastType": "Banttan", - "seasonInfo": "2. Sezon - 212. Bölüm" - }, - { - "id": "195334790", - "name": "Blaze ve Yol Canavarları", - "starttime": "2024-12-18 17:25:00 UTC+03:00", - "endtime": "2024-12-18 17:45:00 UTC+03:00", - "genres": "Çocuk", - "advisory": [], - "ratingid": "0", - "picture": "https://gbzeottvsc01.tvplus.com.tr:33207/CPS/images/universal/film/program/202412/20241212/74/2126427778465eb8f42a_0_XL.jpg", - "isnpvr": "1", - "introduce": "Crusher ve Pickle, fokurdayan bir balçık takasının üzerindeki bir kafesin içinde mahsur kaldığında, şövalye olmak Blaze, AJ ve Sparkle'a kalır. Çok geç olmadan Crusher ve Pickle'ı bataklıktan kurtarabilecekler mi?", - "programType": "episode", - "channelid": "4353", - "broadcastType": "Banttan", - "seasonInfo": "7. Sezon - 704. Bölüm" - }, - { - "id": "195334796", - "name": "Minik Şef'in Yemek Programı", - "starttime": "2024-12-18 17:45:00 UTC+03:00", - "endtime": "2024-12-18 18:10:00 UTC+03:00", - "genres": "Çocuk", - "advisory": [], - "ratingid": "0", - "picture": "https://gbzeottvsc01.tvplus.com.tr:33207/CPS/images/universal/film/program/202412/20241212/67/2126427778495eb8f42a_0_XL.jpg", - "isnpvr": "1", - "introduce": "Şef ve Olly soğan sosu yapıyor ama Şef soğan yüzünden ağlamadan duramıyor! Kraliçe Arı Kütük'ün çay partisine gelir, Şef kraliçelere layık bir parti düzenlemeye kararlıdır.", - "programType": "episode", - "channelid": "4353", - "broadcastType": "Banttan", - "seasonInfo": "2. Sezon - 208. Bölüm" - }, - { - "id": "195334802", - "name": "Baby Shark's Big Show!", - "starttime": "2024-12-18 18:10:00 UTC+03:00", - "endtime": "2024-12-18 18:30:00 UTC+03:00", - "genres": "Çocuk", - "advisory": [], - "ratingid": "0", - "picture": "https://gbzeottvsc01.tvplus.com.tr:33207/CPS/images/universal/film/program/202412/20241212/96/2126427788525eb8f42a_0_XL.jpg", - "isnpvr": "1", - "introduce": "Bir grup tavşan sümüklüböceği başıboş dolaşmaya başlayınca Vola onları tek başına toplamaya koyulur. William, Chumby adında bir deniz domuzunu evlat edindiğinde, küçük bücür William'ın beklediğinden daha fazla sorun çıkarır.", - "programType": "episode", - "channelid": "4353", - "broadcastType": "Banttan", - "seasonInfo": "2. Sezon - 213. Bölüm" - }, - { - "id": "195334808", - "name": "Camgöz (2020)", - "starttime": "2024-12-18 18:30:00 UTC+03:00", - "endtime": "2024-12-18 18:40:00 UTC+03:00", - "genres": "Çocuk", - "advisory": [], - "ratingid": "0", - "picture": "https://gbzeottvsc01.tvplus.com.tr:33207/CPS/images/universal/film/program/202412/20241212/97/2126427788555eb8f42a_0_XL.jpg", - "isnpvr": "1", - "introduce": "Max'in Camgöz adında yarı köpek balığı yarı köpek eşsiz bir evcil havyanı vardır. İlk başlarda Camgöz'ü saklamaya çalışsa da Sisli Pınarlar'da, en iyi arkadaşlar, meraklı komşular ve hatta Max'in ailesi bile yaramaz yeni arkadaşını fark edecektir.", - "programType": "episode", - "channelid": "4353", - "broadcastType": "Banttan", - "seasonInfo": "1. Sezon - 114. Bölüm" - }, - { - "id": "195334814", - "name": "Camgöz (2020)", - "starttime": "2024-12-18 18:40:00 UTC+03:00", - "endtime": "2024-12-18 18:45:00 UTC+03:00", - "genres": "Çocuk", - "advisory": [], - "ratingid": "0", - "picture": "https://gbzeottvsc01.tvplus.com.tr:33207/CPS/images/universal/film/program/202412/20241212/99/2126427788585eb8f42a_0_XL.jpg", - "isnpvr": "1", - "introduce": "Max'in Camgöz adında yarı köpek balığı yarı köpek eşsiz bir evcil havyanı vardır. İlk başlarda Camgöz'ü saklamaya çalışsa da Sisli Pınarlar'da, en iyi arkadaşlar, meraklı komşular ve hatta Max'in ailesi bile yaramaz yeni arkadaşını fark edecektir.", - "programType": "episode", - "channelid": "4353", - "broadcastType": "Banttan", - "seasonInfo": "1. Sezon - 115. Bölüm" - }, - { - "id": "195334820", - "name": "Camgöz (2020)", - "starttime": "2024-12-18 18:45:00 UTC+03:00", - "endtime": "2024-12-18 18:50:00 UTC+03:00", - "genres": "Çocuk", - "advisory": [], - "ratingid": "0", - "picture": "https://gbzeottvsc01.tvplus.com.tr:33207/CPS/images/universal/film/program/202412/20241212/22/2126427788615eb8f42a_0_XL.jpg", - "isnpvr": "1", - "introduce": "Max'in Camgöz adında yarı köpek balığı yarı köpek eşsiz bir evcil havyanı vardır. İlk başlarda Camgöz'ü saklamaya çalışsa da Sisli Pınarlar'da, en iyi arkadaşlar, meraklı komşular ve hatta Max'in ailesi bile yaramaz yeni arkadaşını fark edecektir.", - "programType": "episode", - "channelid": "4353", - "broadcastType": "Banttan", - "seasonInfo": "1. Sezon - 116. Bölüm" - }, - { - "id": "195334826", - "name": "Camgöz (2020)", - "starttime": "2024-12-18 18:50:00 UTC+03:00", - "endtime": "2024-12-18 19:00:00 UTC+03:00", - "genres": "Çocuk", - "advisory": [], - "ratingid": "0", - "picture": "https://gbzeottvsc01.tvplus.com.tr:33207/CPS/images/universal/film/program/202412/20241212/15/2126427788645eb8f42a_0_XL.jpg", - "isnpvr": "1", - "introduce": "Max'in Camgöz adında yarı köpek balığı yarı köpek eşsiz bir evcil havyanı vardır. İlk başlarda Camgöz'ü saklamaya çalışsa da Sisli Pınarlar'da, en iyi arkadaşlar, meraklı komşular ve hatta Max'in ailesi bile yaramaz yeni arkadaşını fark edecektir.", - "programType": "episode", - "channelid": "4353", - "broadcastType": "Banttan", - "seasonInfo": "1. Sezon - 117. Bölüm" - }, - { - "id": "195334832", - "name": "Paw Patrol", - "starttime": "2024-12-18 19:00:00 UTC+03:00", - "endtime": "2024-12-18 19:20:00 UTC+03:00", - "genres": "Çocuk", - "advisory": [], - "ratingid": "0", - "picture": "https://gbzeottvsc01.tvplus.com.tr:33207/CPS/images/universal/film/program/202412/20241212/33/2126427788675eb8f42a_0_XL.jpg", - "isnpvr": "1", - "introduce": "Humdinger'ın yansıtıcı panelini taşıyan drone bir ağaca çarpar, yansıtıcı bir ışık demetini ahşap bir köprü üzerinde yoğunlaştırarak yanmasına neden olur. Paw Patrol, dev bir egzersiz topunun içinde yuvarlanan Winnie ve bir kapibara'yı kurtarır.", - "programType": "episode", - "channelid": "4353", - "broadcastType": "Banttan", - "seasonInfo": "10. Sezon - 1020. Bölüm" - }, - { - "id": "195334838", - "name": "Köpecik Pit Ekibi", - "starttime": "2024-12-18 19:20:00 UTC+03:00", - "endtime": "2024-12-18 19:30:00 UTC+03:00", - "genres": "Çocuk", - "advisory": [], - "ratingid": "0", - "picture": "https://gbzeottvsc01.tvplus.com.tr:33207/CPS/images/universal/film/program/202412/20241212/98/2126427788705eb8f42a_0_XL.jpg", - "isnpvr": "1", - "introduce": "PAW Patrol okul öncesi programı ve altı tane köpekçik baş rolü paylaşıyor: Chase, Marshall, Rocky, Zuma, Rubble ve Skye, başlarında da teknoloji meraklısı 10 yaşında bir çocuk olan Ryder var.", - "programType": "episode", - "channelid": "4353", - "broadcastType": "Banttan", - "seasonInfo": "4. Sezon - 415. Bölüm" - }, - { - "id": "195334844", - "name": "Rubble ve Ekibi", - "starttime": "2024-12-18 19:30:00 UTC+03:00", - "endtime": "2024-12-18 20:00:00 UTC+03:00", - "genres": "Çocuk", - "advisory": [], - "ratingid": "0", - "picture": "https://gbzeottvsc01.tvplus.com.tr:33207/CPS/images/universal/film/program/202412/20241212/40/2126427788735eb8f42a_0_XL.jpg", - "isnpvr": "1", - "introduce": "Rubble ve Ekibi, Gravel Dede'nin özel fotoğrafı için bir kuaför salonu inşa ediyor, ta ki şampuanla ilgili bir aksilikle karşılaşana dek! Motor ve Lily yavruların şimdiye kadar gördükleri en havalı ışık gösterisiyle parlak bir keşif yaparlar!", - "programType": "episode", - "channelid": "4353", - "broadcastType": "Banttan", - "seasonInfo": "2. Sezon - 205. Bölüm" - }, - { - "id": "195334850", - "name": "Kaşif Dora", - "starttime": "2024-12-18 20:00:00 UTC+03:00", - "endtime": "2024-12-18 20:10:00 UTC+03:00", - "genres": "Çocuk", - "advisory": [], - "ratingid": "0", - "picture": "https://gbzeottvsc01.tvplus.com.tr:33207/CPS/images/universal/film/program/202412/20241212/91/2126427788765eb8f42a_0_XL.jpg", - "isnpvr": "1", - "introduce": "DORA büyülü yağmur ormanlarında daha fazla fantastik macera için geri döndü! Dünyanın en olağanüstü küçük kaşifi ve en iyi arkadaşı Boots'a yeni eğlence ve yeni arkadaşlar keşfederken katılın; sınır gökyüzü! Haydi!", - "programType": "episode", - "channelid": "4353", - "broadcastType": "Banttan", - "seasonInfo": "2. Sezon - 212. Bölüm" - }, - { - "id": "195334856", - "name": "Kaşif Dora", - "starttime": "2024-12-18 20:10:00 UTC+03:00", - "endtime": "2024-12-18 20:20:00 UTC+03:00", - "genres": "Çocuk", - "advisory": [], - "ratingid": "0", - "picture": "https://gbzeottvsc01.tvplus.com.tr:33207/CPS/images/universal/film/program/202412/20241212/44/2126427798795eb8f42a_0_XL.jpg", - "isnpvr": "1", - "introduce": "DORA büyülü yağmur ormanlarında daha fazla fantastik macera için geri döndü! Dünyanın en olağanüstü küçük kaşifi ve en iyi arkadaşı Boots'a yeni eğlence ve yeni arkadaşlar keşfederken katılın; sınır gökyüzü! Haydi!", - "programType": "episode", - "channelid": "4353", - "broadcastType": "Banttan", - "seasonInfo": "2. Sezon - 212. Bölüm" - }, - { - "id": "195334862", - "name": "Barbapapa Ailesi", - "starttime": "2024-12-18 20:20:00 UTC+03:00", - "endtime": "2024-12-18 20:40:00 UTC+03:00", - "genres": "Çocuk", - "advisory": [], - "ratingid": "0", - "picture": "https://gbzeottvsc01.tvplus.com.tr:33207/CPS/images/universal/film/program/202412/20241212/41/2126427798825eb8f42a_0_XL.jpg", - "isnpvr": "1", - "introduce": "En popüler ailenin dünya ekranlarına göz kamaştırıcı dönüşü! BARBAPAPA. Büyük mutlu bir aile! Barbapapalar için rutin diye bir şey yoktur: her gün sürprizlerle dolu neşeli bir maceradır!", - "programType": "episode", - "channelid": "4353", - "broadcastType": "Banttan", - "seasonInfo": "2. Sezon - 201. Bölüm" - }, - { - "id": "195334868", - "name": "Hamster Diyarı", - "starttime": "2024-12-18 20:40:00 UTC+03:00", - "endtime": "2024-12-18 21:00:00 UTC+03:00", - "genres": "Çocuk", - "advisory": [], - "ratingid": "0", - "picture": "https://gbzeottvsc01.tvplus.com.tr:33207/CPS/images/universal/film/program/202412/20241212/34/2126427798855eb8f42a_0_XL.jpg", - "isnpvr": "1", - "introduce": "Hamsterlar, Num-Nuggtets adasını bulmak için Harry'nin yanardağına girerler ve kendilerini bilim fuarında bulurlar. / Hamsterlar Kral Harry'nin sihirli bir şekilde patatese dönüştüğüne inanırlar ve onu normale döndürmeye yemin ederler.", - "programType": "episode", - "channelid": "4353", - "broadcastType": "Banttan", - "seasonInfo": "1. Sezon - 107. Bölüm" - }, - { - "id": "195334874", - "name": "Blaze ve Yol Canavarları", - "starttime": "2024-12-18 21:00:00 UTC+03:00", - "endtime": "2024-12-18 21:25:00 UTC+03:00", - "genres": "Çocuk", - "advisory": [], - "ratingid": "0", - "picture": "https://gbzeottvsc01.tvplus.com.tr:33207/CPS/images/universal/film/program/202412/20241212/42/2126427798885eb8f42a_0_XL.jpg", - "isnpvr": "1", - "introduce": "Blaze ve Yol Canavarları dünyanın en muhteşem canavar kamyonu Blaze ve onun en iyi dostu ve şoförü AJ adlı bir çocukla ilgili okul öncesi interaktif animasyon dizisidir.", - "programType": "episode", - "channelid": "4353", - "broadcastType": "Banttan", - "seasonInfo": "1. Sezon - 112. Bölüm" - }, - { - "id": "195334880", - "name": "Blaze ve Yol Canavarları", - "starttime": "2024-12-18 21:25:00 UTC+03:00", - "endtime": "2024-12-18 21:45:00 UTC+03:00", - "genres": "Çocuk", - "advisory": [], - "ratingid": "0", - "picture": "https://gbzeottvsc01.tvplus.com.tr:33207/CPS/images/universal/film/program/202412/20241212/83/2126427798915eb8f42a_0_XL.jpg", - "isnpvr": "1", - "introduce": "Altın Madalya Oyunları başlıyor, Blaze de yarışmalara hazır! Ama Ezici hile yapıp rakibini uzaklara fırlatınca Blaze'in Aks şehrine dönüp madalyayı almak için acele etmesi gerekir!", - "programType": "episode", - "channelid": "4353", - "broadcastType": "Banttan", - "seasonInfo": "5. Sezon - 508. Bölüm" - }, - { - "id": "195334886", - "name": "Paw Patrol", - "starttime": "2024-12-18 21:45:00 UTC+03:00", - "endtime": "2024-12-18 22:10:00 UTC+03:00", - "genres": "Çocuk", - "advisory": [], - "ratingid": "0", - "picture": "https://gbzeottvsc01.tvplus.com.tr:33207/CPS/images/universal/film/program/202412/20241212/98/2126427798945eb8f42a_0_XL.jpg", - "isnpvr": "1", - "introduce": "Turbotlar ormanda bir yerde mahsur kalır. Paw Patrol'ü aramaya çalışırlar ama telefonları çekmez. Chickaletta yumurtlar ama yumurta yuvarlanıp şehirde uzaklaşır. Paw Patrol'ün çatlamadan yumurtayı bulması gerek.", - "programType": "episode", - "channelid": "4353", - "broadcastType": "Banttan", - "seasonInfo": "6. Sezon - 608. Bölüm" - }, - { - "id": "195334892", - "name": "Paw Patrol", - "starttime": "2024-12-18 22:10:00 UTC+03:00", - "endtime": "2024-12-18 22:30:00 UTC+03:00", - "genres": "Çocuk", - "advisory": [], - "ratingid": "0", - "picture": "https://gbzeottvsc01.tvplus.com.tr:33207/CPS/images/universal/film/program/202412/20241212/71/2126427798975eb8f42a_0_XL.jpg", - "isnpvr": "1", - "introduce": "Çiftçi Al ve Çiftçi Yumi bir deniz ineğini bataklığa götürmek için PAW Patrol'dan yardım ister. Bay Porter ve Alex dara düşer. Boğazlarına kadar akçaağaç şurubuna batmışlar! Bay Porter'ı ve kahvaltıyı kurtarmak PAW Patrol'e düştü!", - "programType": "episode", - "channelid": "4353", - "broadcastType": "Banttan", - "seasonInfo": "6. Sezon - 610. Bölüm" - }, - { - "id": "195334898", - "name": "Köpecik Pit Ekibi", - "starttime": "2024-12-18 22:30:00 UTC+03:00", - "endtime": "2024-12-18 22:40:00 UTC+03:00", - "genres": "Çocuk", - "advisory": [], - "ratingid": "0", - "picture": "https://gbzeottvsc01.tvplus.com.tr:33207/CPS/images/universal/film/program/202412/20241212/69/2126427809005eb8f42a_0_XL.jpg", - "isnpvr": "1", - "introduce": "PAW Patrol okul öncesi programı ve altı tane köpekçik baş rolü paylaşıyor: Chase, Marshall, Rocky, Zuma, Rubble ve Skye, başlarında da teknoloji meraklısı 10 yaşında bir çocuk olan Ryder var.", - "programType": "episode", - "channelid": "4353", - "broadcastType": "Banttan", - "seasonInfo": "1. Sezon - 107. Bölüm" - }, - { - "id": "195334904", - "name": "Rubble ve Ekibi", - "starttime": "2024-12-18 22:40:00 UTC+03:00", - "endtime": "2024-12-18 23:05:00 UTC+03:00", - "genres": "Çocuk", - "advisory": [], - "ratingid": "0", - "picture": "https://gbzeottvsc01.tvplus.com.tr:33207/CPS/images/universal/film/program/202412/20241212/97/2126427809035eb8f42a_0_XL.jpg", - "isnpvr": "1", - "introduce": "Rubble ve Ekibi, yağmurun kasabayı sular altında bırakma tehdidi sonrası İnşaatçı Koyu'nu kurtarmak için iş başında. Rubble ve Motor, Çiftlik Fuarı'ndan önce Çiftçi Zoe'nin sincap sorunu için kurnaz inşaat çözümleri buluyor.", - "programType": "episode", - "channelid": "4353", - "broadcastType": "Banttan", - "seasonInfo": "1. Sezon - 122. Bölüm" - }, - { - "id": "195334910", - "name": "Rubble ve Ekibi", - "starttime": "2024-12-18 23:05:00 UTC+03:00", - "endtime": "2024-12-18 23:30:00 UTC+03:00", - "genres": "Çocuk", - "advisory": [], - "ratingid": "0", - "picture": "https://gbzeottvsc01.tvplus.com.tr:33207/CPS/images/universal/film/program/202412/20241212/39/2126427809065eb8f42a_0_XL.jpg", - "isnpvr": "1", - "introduce": "Parıltılı Sierra'nın konser sahnesinin biraz daha ışıltıya ihtiyacı olduğunda, Rubble ve Ekibi bir inşaata başlar. Bakkal Gabriel bakkal dükkânının dışına özel bir şey inşa edilmesini isteyince Rubble ve Ekibi büyük oynamaya karar verir.", - "programType": "episode", - "channelid": "4353", - "broadcastType": "Banttan", - "seasonInfo": "1. Sezon - 123. Bölüm" - }, - { - "id": "195334916", - "name": "Kaşif Dora", - "starttime": "2024-12-18 23:30:00 UTC+03:00", - "endtime": "2024-12-18 23:40:00 UTC+03:00", - "genres": "Çocuk", - "advisory": [], - "ratingid": "0", - "picture": "https://gbzeottvsc01.tvplus.com.tr:33207/CPS/images/universal/film/program/202412/20241212/5/2126427809095eb8f42a_0_XL.jpg", - "isnpvr": "1", - "introduce": "DORA büyülü yağmur ormanlarında daha fazla fantastik macera için geri döndü! Dünyanın en olağanüstü küçük kaşifi ve en iyi arkadaşı Boots'a yeni eğlence ve yeni arkadaşlar keşfederken katılın; sınır gökyüzü! Haydi!", - "programType": "episode", - "channelid": "4353", - "broadcastType": "Banttan", - "seasonInfo": "2. Sezon - 213. Bölüm" - }, - { - "id": "195334922", - "name": "Kaşif Dora", - "starttime": "2024-12-18 23:40:00 UTC+03:00", - "endtime": "2024-12-18 23:50:00 UTC+03:00", - "genres": "Çocuk", - "advisory": [], - "ratingid": "0", - "picture": "https://gbzeottvsc01.tvplus.com.tr:33207/CPS/images/universal/film/program/202412/20241212/11/2126427809125eb8f42a_0_XL.jpg", - "isnpvr": "1", - "introduce": "DORA büyülü yağmur ormanlarında daha fazla fantastik macera için geri döndü! Dünyanın en olağanüstü küçük kaşifi ve en iyi arkadaşı Boots'a yeni eğlence ve yeni arkadaşlar keşfederken katılın; sınır gökyüzü! Haydi!", - "programType": "episode", - "channelid": "4353", - "broadcastType": "Banttan", - "seasonInfo": "2. Sezon - 212. Bölüm" - }, - { - "id": "195334928", - "name": "Baby Shark's Big Show!", - "starttime": "2024-12-18 23:50:00 UTC+03:00", - "endtime": "2024-12-19 00:10:00 UTC+03:00", - "genres": "Çocuk", - "advisory": [], - "ratingid": "0", - "picture": "https://gbzeottvsc01.tvplus.com.tr:33207/CPS/images/universal/film/program/202412/20241212/52/2126427819155eb8f42a_0_XL.jpg", - "isnpvr": "1", - "introduce": "Baby ve arkadaşlarından bir müzik festivalinde sahne almaları istendiğinde, hangi tür şarkıyı çalacaklarına karar veremezler. Dedektif Baby Shark ve William Watson huysuz bir gizemi çözüyor.", - "programType": "episode", - "channelid": "4353", - "broadcastType": "Banttan", - "seasonInfo": "2. Sezon - 226. Bölüm" - } - ], - [ - { - "id": "195412868", - "name": "Camgöz (2020)", - "starttime": "2024-12-19 00:10:00 UTC+03:00", - "endtime": "2024-12-19 00:20:00 UTC+03:00", - "genres": "Çocuk", - "advisory": [], - "ratingid": "0", - "picture": "https://gbzeottvsc01.tvplus.com.tr:33207/CPS/images/universal/film/program/202412/20241213/47/2126361746755eb9542c_0_XL.jpg", - "isnpvr": "1", - "introduce": "Camgöz gizemli bir soğuk algınlığına yakalandığında, Max onu babasının iyileştireceğini bilmektedir. Ancak muayeneyi akvaryumun robot doktoru üstlenince işler sarpa sarar!", - "programType": "episode", - "channelid": "4353", - "broadcastType": "Banttan", - "seasonInfo": "2. Sezon - 208. Bölüm" - }, - { - "id": "195412874", - "name": "Camgöz (2020)", - "starttime": "2024-12-19 00:20:00 UTC+03:00", - "endtime": "2024-12-19 00:25:00 UTC+03:00", - "genres": "Çocuk", - "advisory": [], - "ratingid": "0", - "picture": "https://gbzeottvsc01.tvplus.com.tr:33207/CPS/images/universal/film/program/202412/20241213/93/2126361746785eb9542c_0_XL.jpg", - "isnpvr": "1", - "introduce": "Annesi haberler için Camgöz'ün vahşi tarafını araştırmakla görevlendirildiğinde, Max'in en iyi arkadaşında korkulacak bir şey olmadığını anlayacaktır.", - "programType": "episode", - "channelid": "4353", - "broadcastType": "Banttan", - "seasonInfo": "2. Sezon - 209. Bölüm" - }, - { - "id": "195412880", - "name": "Camgöz (2020)", - "starttime": "2024-12-19 00:25:00 UTC+03:00", - "endtime": "2024-12-19 00:35:00 UTC+03:00", - "genres": "Çocuk", - "advisory": [], - "ratingid": "0", - "picture": "https://gbzeottvsc01.tvplus.com.tr:33207/CPS/images/universal/film/program/202412/20241213/35/2126361746815eb9542c_0_XL.jpg", - "isnpvr": "1", - "introduce": "Camgöz yanlışlıkla tahta gezinti yolunu tahrip edince, Max ve Köpek Balığı Sürüsü Camgöz'ün gerçekten harika bir evcil hayvan olduğunu herkese kanıtlamak zorunda kalırlar.", - "programType": "episode", - "channelid": "4353", - "broadcastType": "Banttan", - "seasonInfo": "2. Sezon - 210. Bölüm" - }, - { - "id": "195412886", - "name": "Peppa Pig", - "starttime": "2024-12-19 00:35:00 UTC+03:00", - "endtime": "2024-12-19 00:40:00 UTC+03:00", - "genres": "Çocuk", - "advisory": [], - "ratingid": "0", - "picture": "https://gbzeottvsc01.tvplus.com.tr:33207/CPS/images/universal/film/program/202412/20241213/92/2126361746845eb9542c_0_XL.jpg", - "isnpvr": "1", - "introduce": "Peppa ve George, baloncuklarla oynuyordur. Baloncuk karışımı bitince, Baba Domuz onlara eski bir tenis raketi ve sabunlu suyla nasıl büyük baloncuklar yapacaklarını gösterir. Sonra herkesin içine atlaması için dev gibi bir çamur baloncuğu yapar.", - "programType": "episode", - "channelid": "4353", - "broadcastType": "Banttan", - "seasonInfo": "2. Sezon - 204. Bölüm" - }, - { - "id": "195412892", - "name": "Peppa Pig", - "starttime": "2024-12-19 00:40:00 UTC+03:00", - "endtime": "2024-12-19 00:45:00 UTC+03:00", - "genres": "Çocuk", - "advisory": [], - "ratingid": "0", - "picture": "https://gbzeottvsc01.tvplus.com.tr:33207/CPS/images/universal/film/program/202412/20241213/7/2126361756875eb9542c_0_XL.jpg", - "isnpvr": "1", - "introduce": "Neredeyse yatma zamanı gelmiştir ve Peppa ve George'un banyo yapması gerekiyordur. Sonrasında dişlerini fırçalayıp yatağa giderler. Hızlıca uyurlar. Baba ve Anne Domuz, nihayet otururlar, uzun bir gün olmuştur ve onlar da yorulmuştur.", - "programType": "episode", - "channelid": "4353", - "broadcastType": "Banttan", - "seasonInfo": "2. Sezon - 205. Bölüm" - }, - { - "id": "195412898", - "name": "Peppa Pig", - "starttime": "2024-12-19 00:45:00 UTC+03:00", - "endtime": "2024-12-19 00:50:00 UTC+03:00", - "genres": "Çocuk", - "advisory": [], - "ratingid": "0", - "picture": "https://gbzeottvsc01.tvplus.com.tr:33207/CPS/images/universal/film/program/202412/20241213/83/2126361756905eb9542c_0_XL.jpg", - "isnpvr": "1", - "introduce": "Büyükanne ve Büyükbaba Domuz, Peppa ve ailesini öğle yemeğine davet ederler. Yolda Peppa, George, Anne Domuz ve Baba Domuz, trafiğe sıkışırlar. Bu yüzden Büyükbaba Domuz, onlara yemek getirir.", - "programType": "episode", - "channelid": "4353", - "broadcastType": "Banttan", - "seasonInfo": "2. Sezon - 206. Bölüm" - }, - { - "id": "195414824", - "name": "Peppa Pig", - "starttime": "2024-12-19 00:50:00 UTC+03:00", - "endtime": "2024-12-19 00:55:00 UTC+03:00", - "genres": "Çocuk", - "advisory": [], - "ratingid": "0", - "picture": "https://gbzeottvsc01.tvplus.com.tr:33207/CPS/images/universal/film/program/202412/20241213/6/2126361756935eb9542c_0_XL.jpg", - "isnpvr": "1", - "introduce": "Büyükanne ve Büyükbaba Domuz, Peppa ve George'u bol bol kaya olan bir plaja getirir. Küçük bir yengeç, bir deniz kabuğu ve bir fosil onları çok eğlendirir. Peppa kovasıyla küçük bir balığı kurtarır ve sonra onu denize geri gönderir.", - "programType": "episode", - "channelid": "4353", - "broadcastType": "Banttan", - "seasonInfo": "2. Sezon - 207. Bölüm" - }, - { - "id": "195414830", - "name": "Minik Şef'in Yemek Programı", - "starttime": "2024-12-19 00:55:00 UTC+03:00", - "endtime": "2024-12-19 01:15:00 UTC+03:00", - "genres": "Çocuk", - "advisory": [], - "ratingid": "0", - "picture": "https://gbzeottvsc01.tvplus.com.tr:33207/CPS/images/universal/film/program/202412/20241213/55/2126361756965eb9542c_0_XL.jpg", - "isnpvr": "1", - "introduce": "Henry salyangoz yarışında! Yarış için hazırladığı meyve lokmalarının sertleşmesi uzun sürüyor! Ruby'nin harika bir opera sanatçısı olduğunu öğrenen Şef, Olly gürültülü bir şekilde konser sahnesi inşa ederken bir opera pastası yapmaya çalışıyor.", - "programType": "episode", - "channelid": "4353", - "broadcastType": "Banttan", - "seasonInfo": "2. Sezon - 206. Bölüm" - }, - { - "id": "195414836", - "name": "BARBAPAPA Ailesi", - "starttime": "2024-12-19 01:15:00 UTC+03:00", - "endtime": "2024-12-19 01:40:00 UTC+03:00", - "genres": "Çocuk", - "advisory": [], - "ratingid": "0", - "picture": "https://gbzeottvsc01.tvplus.com.tr:33207/CPS/images/universal/film/program/202412/20241213/59/2126361766995eb9542c_0_XL.jpg", - "isnpvr": "1", - "introduce": "Barbazeki, Mars'tan bir melodi yakalar. Barbapapalar kızıl gezegene gitmek için bir roket yapar. Barbapapalar, Mars'a giderken bir Barbamarslı ailesiyle tanışır. Köye bitki saldırınca tanışacak zamanları kalmaz.", - "programType": "episode", - "channelid": "4353", - "broadcastType": "Banttan", - "seasonInfo": "1. Sezon - 102. Bölüm" - }, - { - "id": "195414842", - "name": "BARBAPAPA Ailesi", - "starttime": "2024-12-19 01:40:00 UTC+03:00", - "endtime": "2024-12-19 02:00:00 UTC+03:00", - "genres": "Çocuk", - "advisory": [], - "ratingid": "0", - "picture": "https://gbzeottvsc01.tvplus.com.tr:33207/CPS/images/universal/film/program/202412/20241213/29/2126361767025eb9542c_0_XL.jpg", - "isnpvr": "1", - "introduce": "Barbabekler kayıp bir bebek fil bulup ve ona gizlice bakar. Barbapapa ve Barbaanne, Boris'e nasıl tepki verecek acaba? Fil Boris evini özler. Barbapapa onu Afrika'ya geri getirmeye karar verir. Ve Boris'in iklime alışmasına yardım eder.", - "programType": "episode", - "channelid": "4353", - "broadcastType": "Banttan", - "seasonInfo": "1. Sezon - 103. Bölüm" - }, - { - "id": "195414848", - "name": "Blaze ve Yol Canavarları", - "starttime": "2024-12-19 02:00:00 UTC+03:00", - "endtime": "2024-12-19 02:25:00 UTC+03:00", - "genres": "Çocuk", - "advisory": [], - "ratingid": "0", - "picture": "https://gbzeottvsc01.tvplus.com.tr:33207/CPS/images/universal/film/program/202412/20241213/47/2126361767055eb9542c_0_XL.jpg", - "isnpvr": "1", - "introduce": "Blaze'in arkadaşlarının yardıma ihtiyacı olduğunda, Ambulans Blaze, Paramedik AJ ve Paramedik Gabby günü kurtarmak için ihtiyaç duydukları tüm araçlara sahip!", - "programType": "episode", - "channelid": "4353", - "broadcastType": "Banttan", - "seasonInfo": "7. Sezon - 705. Bölüm" - }, - { - "id": "195414854", - "name": "Blaze ve Yol Canavarları", - "starttime": "2024-12-19 02:25:00 UTC+03:00", - "endtime": "2024-12-19 02:50:00 UTC+03:00", - "genres": "Çocuk", - "advisory": [], - "ratingid": "0", - "picture": "https://gbzeottvsc01.tvplus.com.tr:33207/CPS/images/universal/film/program/202412/20241213/15/2126361777085eb9542c_0_XL.jpg", - "isnpvr": "1", - "introduce": "Blaze ve Crusher'ın bir araya gelmesiyle kafa kafaya bir kapışma... Kar Tanesi Oyunları! En çok kış sporunu kim kazanacak ve ödüllü Kar Tanesi Madalyasını kim alacak?", - "programType": "episode", - "channelid": "4353", - "broadcastType": "Banttan", - "seasonInfo": "7. Sezon - 706. Bölüm" - }, - { - "id": "195414860", - "name": "Paw Patrol", - "starttime": "2024-12-19 02:50:00 UTC+03:00", - "endtime": "2024-12-19 03:10:00 UTC+03:00", - "genres": "Çocuk", - "advisory": [], - "ratingid": "0", - "picture": "https://gbzeottvsc01.tvplus.com.tr:33207/CPS/images/universal/film/program/202412/20241213/19/2126361777115eb9542c_0_XL.jpg", - "isnpvr": "1", - "introduce": "Paw patrol, dostları Carlos'un kayıp papağanı Mateo'yu bulmasına yardım için ormana gider! Ryder ve paw patrol, bir arı kovanını, daha güvenli bir eve kavuşmaları için çiftçi Al'ın çiftliğine taşımasına yaredım eder.", - "programType": "episode", - "channelid": "4353", - "broadcastType": "Banttan", - "seasonInfo": "2. Sezon - 212. Bölüm" - }, - { - "id": "195414866", - "name": "Paw Patrol", - "starttime": "2024-12-19 03:10:00 UTC+03:00", - "endtime": "2024-12-19 03:30:00 UTC+03:00", - "genres": "Çocuk", - "advisory": [], - "ratingid": "0", - "picture": "https://gbzeottvsc01.tvplus.com.tr:33207/CPS/images/universal/film/program/202412/20241213/66/2126361777145eb9542c_0_XL.jpg", - "isnpvr": "1", - "introduce": "Köpekçöilerin savana seyahati, bir fila ilesini kurtarma görevine dönüşüyor! Kusursuz kasaba ödülünü kazanmak için, paw patrol'un köpekçikleri macera körfezi'ni başkan Hamdinger'in kedicikler afet ekibi'nin elinden kurtarması şart!", - "programType": "episode", - "channelid": "4353", - "broadcastType": "Banttan", - "seasonInfo": "2. Sezon - 214. Bölüm" - }, - { - "id": "195414872", - "name": "Baby Shark's Big Show", - "starttime": "2024-12-19 03:30:00 UTC+03:00", - "endtime": "2024-12-19 03:55:00 UTC+03:00", - "genres": "Çocuk", - "advisory": [], - "ratingid": "0", - "picture": "https://gbzeottvsc01.tvplus.com.tr:33207/CPS/images/universal/film/program/202412/20241213/29/2126361777175eb9542c_0_XL.jpg", - "isnpvr": "1", - "introduce": "Chucks Baby Shark ve arkadaşlarının Carnivore Koy'unun komşu kasabasına karşı yıllık Kartopu Yarışı'nı kazanmasına yardım etmeye çalışır. Baby Shark Anne Köpekbalığı için mükemmel hediyeyi bulma görevine gider.", - "programType": "episode", - "channelid": "4353", - "broadcastType": "Banttan", - "seasonInfo": "1. Sezon - 115. Bölüm" - }, - { - "id": "195414878", - "name": "BARBAPAPA Ailesi", - "starttime": "2024-12-19 03:55:00 UTC+03:00", - "endtime": "2024-12-19 04:15:00 UTC+03:00", - "genres": "Çocuk", - "advisory": [], - "ratingid": "0", - "picture": "https://gbzeottvsc01.tvplus.com.tr:33207/CPS/images/universal/film/program/202412/20241213/11/2126361777205eb9542c_0_XL.jpg", - "isnpvr": "1", - "introduce": "Barbaçalışkan, Barbalala ve Barbasüslü, sırayla kendi dokunuşlarını katarak aynı hikayeyi anlatır. Barbapapa ailesi sahilde bir gün geçiriyor. İki takıma bölünen Barbabebekler kumlu bir yarımada için savaşır.", - "programType": "episode", - "channelid": "4353", - "broadcastType": "Banttan", - "seasonInfo": "1. Sezon - 120. Bölüm" - }, - { - "id": "195414884", - "name": "Ayı Paddington'un Maceraları", - "starttime": "2024-12-19 04:15:00 UTC+03:00", - "endtime": "2024-12-19 04:40:00 UTC+03:00", - "genres": "Çocuk", - "advisory": [], - "ratingid": "0", - "picture": "https://gbzeottvsc01.tvplus.com.tr:33207/CPS/images/universal/film/program/202412/20241213/25/2126361787235eb9542c_0_XL.jpg", - "isnpvr": "1", - "introduce": "Paddington, Kaptan Yeşil Sakal'ın ganimeti için hazine avına çıkar, ama arkadaş kalıp paylaşabilecekler mi? Herkes kumdan kale yarışmasını kazanmak ve özel bir dondurma ödülünün tadını çıkarmak istiyor, ancak takım çalışması çok önemli!", - "programType": "episode", - "channelid": "4353", - "broadcastType": "Banttan", - "seasonInfo": "3. Sezon - 310. Bölüm" - }, - { - "id": "195414890", - "name": "Rubble ve Ekibi", - "starttime": "2024-12-19 04:40:00 UTC+03:00", - "endtime": "2024-12-19 05:00:00 UTC+03:00", - "genres": "Çocuk", - "advisory": [], - "ratingid": "0", - "picture": "https://gbzeottvsc01.tvplus.com.tr:33207/CPS/images/universal/film/program/202412/20241213/5/2126361787265eb9542c_0_XL.jpg", - "isnpvr": "1", - "introduce": "Vali Greatway, Rubble ve Ekibi'nden Bay Ducky-Doo için özel bir şey ister. Ancak kısa süre sonra bir gizem ortaya çıkar... Rubble ve Ekibi, fırtınadan önce Çiftçi Zoe için bir yağmur tankı yapmaya çalışır, ta ki bir tavuk sorunu çıkana kadar.", - "programType": "episode", - "channelid": "4353", - "broadcastType": "Banttan", - "seasonInfo": "2. Sezon - 211. Bölüm" - }, - { - "id": "195414896", - "name": "Kaşif Dora", - "starttime": "2024-12-19 05:00:00 UTC+03:00", - "endtime": "2024-12-19 05:10:00 UTC+03:00", - "genres": "Çocuk", - "advisory": [], - "ratingid": "0", - "picture": "https://gbzeottvsc01.tvplus.com.tr:33207/CPS/images/universal/film/program/202412/20241213/7/2126361787295eb9542c_0_XL.jpg", - "isnpvr": "1", - "introduce": "DORA büyülü yağmur ormanlarında daha fazla fantastik macera için geri döndü! Dünyanın en olağanüstü küçük kaşifi ve en iyi arkadaşı Boots'a yeni eğlence ve yeni arkadaşlar keşfederken katılın; sınır gökyüzü! Haydi!", - "programType": "episode", - "channelid": "4353", - "broadcastType": "Banttan", - "seasonInfo": "2. Sezon - 213. Bölüm" - }, - { - "id": "195414902", - "name": "Kaşif Dora", - "starttime": "2024-12-19 05:10:00 UTC+03:00", - "endtime": "2024-12-19 05:25:00 UTC+03:00", - "genres": "Çocuk", - "advisory": [], - "ratingid": "0", - "picture": "https://gbzeottvsc01.tvplus.com.tr:33207/CPS/images/universal/film/program/202412/20241213/56/2126361797325eb9542c_0_XL.jpg", - "isnpvr": "1", - "introduce": "DORA büyülü yağmur ormanlarında daha fazla fantastik macera için geri döndü! Dünyanın en olağanüstü küçük kaşifi ve en iyi arkadaşı Boots'a yeni eğlence ve yeni arkadaşlar keşfederken katılın; sınır gökyüzü! Haydi!", - "programType": "episode", - "channelid": "4353", - "broadcastType": "Banttan", - "seasonInfo": "2. Sezon - 212. Bölüm" - }, - { - "id": "195414908", - "name": "Blaze ve Yol Canavarları", - "starttime": "2024-12-19 05:25:00 UTC+03:00", - "endtime": "2024-12-19 05:45:00 UTC+03:00", - "genres": "Çocuk", - "advisory": [], - "ratingid": "0", - "picture": "https://gbzeottvsc01.tvplus.com.tr:33207/CPS/images/universal/film/program/202412/20241213/62/2126361797355eb9542c_0_XL.jpg", - "isnpvr": "1", - "introduce": "AJ, Axle City Uçuş Yarışması'na katılıyor. Ancak Crusher onu ve Blaze'i uzağa gönderdiğinde, AJ'in süper havalı uçan icadını inşa etmesi için zamanında geri dönmeleri gerekiyor!", - "programType": "episode", - "channelid": "4353", - "broadcastType": "Banttan", - "seasonInfo": "7. Sezon - 707. Bölüm" - }, - { - "id": "195414914", - "name": "Minik Şef'in Yemek Programı", - "starttime": "2024-12-19 05:45:00 UTC+03:00", - "endtime": "2024-12-19 06:10:00 UTC+03:00", - "genres": "Çocuk", - "advisory": [], - "ratingid": "0", - "picture": "https://gbzeottvsc01.tvplus.com.tr:33207/CPS/images/universal/film/program/202412/20241213/69/2126361797385eb9542c_0_XL.jpg", - "isnpvr": "1", - "introduce": "Olly, Dinozor Kulübü için basit bir pasta yapmak ister ama Şef tarifi karmaşıklaştırıyor. Şef ve Olly mantı yapıyor, ancak ilk kez mantı yapan Olly daha iyi yapınca, Şef kendi becerilerine olan güvenini kaybeder gibi oluyor.", - "programType": "episode", - "channelid": "4353", - "broadcastType": "Banttan", - "seasonInfo": "2. Sezon - 209. Bölüm" - }, - { - "id": "195414920", - "name": "Baby Shark's Big Show!", - "starttime": "2024-12-19 06:10:00 UTC+03:00", - "endtime": "2024-12-19 06:30:00 UTC+03:00", - "genres": "Çocuk", - "advisory": [], - "ratingid": "0", - "picture": "https://gbzeottvsc01.tvplus.com.tr:33207/CPS/images/universal/film/program/202412/20241213/58/2126361797415eb9542c_0_XL.jpg", - "isnpvr": "1", - "introduce": "Baby Shark, ailesi ve arkadaşlarının tuzlu aptallıklarına dalın.", - "programType": "episode", - "channelid": "4353", - "broadcastType": "Banttan", - "seasonInfo": "2. Sezon - 215. Bölüm" - }, - { - "id": "195414926", - "name": "Camgöz (2020)", - "starttime": "2024-12-19 06:30:00 UTC+03:00", - "endtime": "2024-12-19 06:40:00 UTC+03:00", - "genres": "Çocuk", - "advisory": [], - "ratingid": "0", - "picture": "https://gbzeottvsc01.tvplus.com.tr:33207/CPS/images/universal/film/program/202412/20241213/84/2126361797445eb9542c_0_XL.jpg", - "isnpvr": "1", - "introduce": "Max'in Camgöz adında yarı köpek balığı yarı köpek eşsiz bir evcil havyanı vardır. İlk başlarda Camgöz'ü saklamaya çalışsa da Sisli Pınarlar'da, en iyi arkadaşlar, meraklı komşular ve hatta Max'in ailesi bile yaramaz yeni arkadaşını fark edecektir.", - "programType": "episode", - "channelid": "4353", - "broadcastType": "Banttan", - "seasonInfo": "1. Sezon - 118. Bölüm" - }, - { - "id": "195414932", - "name": "Camgöz (2020)", - "starttime": "2024-12-19 06:40:00 UTC+03:00", - "endtime": "2024-12-19 06:45:00 UTC+03:00", - "genres": "Çocuk", - "advisory": [], - "ratingid": "0", - "picture": "https://gbzeottvsc01.tvplus.com.tr:33207/CPS/images/universal/film/program/202412/20241213/14/2126361807475eb9542c_0_XL.jpg", - "isnpvr": "1", - "introduce": "Max'in Camgöz adında yarı köpek balığı yarı köpek eşsiz bir evcil havyanı vardır. İlk başlarda Camgöz'ü saklamaya çalışsa da Sisli Pınarlar'da, en iyi arkadaşlar, meraklı komşular ve hatta Max'in ailesi bile yaramaz yeni arkadaşını fark edecektir.", - "programType": "episode", - "channelid": "4353", - "broadcastType": "Banttan", - "seasonInfo": "1. Sezon - 119. Bölüm" - }, - { - "id": "195414938", - "name": "Camgöz (2020)", - "starttime": "2024-12-19 06:45:00 UTC+03:00", - "endtime": "2024-12-19 06:50:00 UTC+03:00", - "genres": "Çocuk", - "advisory": [], - "ratingid": "0", - "picture": "https://gbzeottvsc01.tvplus.com.tr:33207/CPS/images/universal/film/program/202412/20241213/89/2126361807505eb9542c_0_XL.jpg", - "isnpvr": "1", - "introduce": "Max'in Camgöz adında yarı köpek balığı yarı köpek eşsiz bir evcil havyanı vardır. İlk başlarda Camgöz'ü saklamaya çalışsa da Sisli Pınarlar'da, en iyi arkadaşlar, meraklı komşular ve hatta Max'in ailesi bile yaramaz yeni arkadaşını fark edecektir.", - "programType": "episode", - "channelid": "4353", - "broadcastType": "Banttan", - "seasonInfo": "1. Sezon - 120. Bölüm" - }, - { - "id": "195414944", - "name": "Camgöz (2020)", - "starttime": "2024-12-19 06:50:00 UTC+03:00", - "endtime": "2024-12-19 07:00:00 UTC+03:00", - "genres": "Çocuk", - "advisory": [], - "ratingid": "0", - "picture": "https://gbzeottvsc01.tvplus.com.tr:33207/CPS/images/universal/film/program/202412/20241213/47/2126361807535eb9542c_0_XL.jpg", - "isnpvr": "1", - "introduce": "Max'in yarı köpekbalığı yarı köpek olan Camgöz adlı sıra dışı bir evcil hayvanı vardır. Max önce Camgöz'ü sır olarak saklamaya çalışsa da Foggy Springs'teki dostları, meraklı komşuları ve ailesi onun yeni, yaramaz dostunu er ya da geç fark edecektir.", - "programType": "episode", - "channelid": "4353", - "broadcastType": "Banttan", - "seasonInfo": "2. Sezon - 201. Bölüm" - }, - { - "id": "195414950", - "name": "Paw Patrol", - "starttime": "2024-12-19 07:00:00 UTC+03:00", - "endtime": "2024-12-19 07:20:00 UTC+03:00", - "genres": "Çocuk", - "advisory": [], - "ratingid": "0", - "picture": "https://gbzeottvsc01.tvplus.com.tr:33207/CPS/images/universal/film/program/202412/20241213/99/2126361807565eb9542c_0_XL.jpg", - "isnpvr": "1", - "introduce": "Belediye Başkanı Humdinger, Kedi Sürüsü'nden spot ışıklarını çalmak için HumKediDingerMan olur. Doğaçlama bir Kalkan Balığı Turnuvası aşırı rekabete dönüştüğünde yavruların Büyükanne Tilly'yi kurtarması gerekir.", - "programType": "episode", - "channelid": "4353", - "broadcastType": "Banttan", - "seasonInfo": "10. Sezon - 1021. Bölüm" - }, - { - "id": "195414956", - "name": "Köpecik Pit Ekibi", - "starttime": "2024-12-19 07:20:00 UTC+03:00", - "endtime": "2024-12-19 07:30:00 UTC+03:00", - "genres": "Çocuk", - "advisory": [], - "ratingid": "0", - "picture": "https://gbzeottvsc01.tvplus.com.tr:33207/CPS/images/universal/film/program/202412/20241213/98/2126361817595eb9542c_0_XL.jpg", - "isnpvr": "1", - "introduce": "PAW Patrol okul öncesi programı ve altı tane köpekçik baş rolü paylaşıyor: Chase, Marshall, Rocky, Zuma, Rubble ve Skye, başlarında da teknoloji meraklısı 10 yaşında bir çocuk olan Ryder var.", - "programType": "episode", - "channelid": "4353", - "broadcastType": "Banttan", - "seasonInfo": "4. Sezon - 417. Bölüm" - }, - { - "id": "195414962", - "name": "Rubble ve Ekibi", - "starttime": "2024-12-19 07:30:00 UTC+03:00", - "endtime": "2024-12-19 07:55:00 UTC+03:00", - "genres": "Çocuk", - "advisory": [], - "ratingid": "0", - "picture": "https://gbzeottvsc01.tvplus.com.tr:33207/CPS/images/universal/film/program/202412/20241213/74/2126361817625eb9542c_0_XL.jpg", - "isnpvr": "1", - "introduce": "Koç Karima, Moloztaş ve Tayfa'dan bir spor salonu inşa etmelerini ister. Ancak kiriş Lily için çok yüksek olunca, günü kurtarmak yavrulara düşer. Gezici bir gösteri İnşaatçı Koyu'na ulaşamayınca, Rubble ve Ekibi kendilerininkini inşa eder!", - "programType": "episode", - "channelid": "4353", - "broadcastType": "Banttan", - "seasonInfo": "2. Sezon - 206. Bölüm" - }, - { - "id": "195414968", - "name": "Peppa Pig", - "starttime": "2024-12-19 07:55:00 UTC+03:00", - "endtime": "2024-12-19 08:00:00 UTC+03:00", - "genres": "Çocuk", - "advisory": [], - "ratingid": "0", - "picture": "https://gbzeottvsc01.tvplus.com.tr:33207/CPS/images/universal/film/program/202412/20241213/23/2126361817655eb9542c_0_XL.jpg", - "isnpvr": "1", - "introduce": "Peppa, annesi, babası ve abisi George'la yaşayan küçük bir domuzdur. Peppa oyun oynamayı, şık giyinmeyi, uzun seyahatleri ve çamurda zıplamayı sever.", - "programType": "episode", - "channelid": "4353", - "broadcastType": "Banttan", - "seasonInfo": "1. Sezon - 118. Bölüm" - }, - { - "id": "195414974", - "name": "Peppa Pig", - "starttime": "2024-12-19 08:00:00 UTC+03:00", - "endtime": "2024-12-19 08:05:00 UTC+03:00", - "genres": "Çocuk", - "advisory": [], - "ratingid": "0", - "picture": "https://gbzeottvsc01.tvplus.com.tr:33207/CPS/images/universal/film/program/202412/20241213/64/2126361817685eb9542c_0_XL.jpg", - "isnpvr": "1", - "introduce": "Büyükanne ve Büyükbaba'nın hayvanı Papağan Polly, Peppa'nın evine kalmaya gelir. Peppa ve George, Polly'yi çok sever. Çok tatlıdır ve söylenenleri taklit eder. Polly uçup gidince, geri gelip gelmeyeceğini bilemezler. Ta ki George'un zeki planına dek.", - "programType": "episode", - "channelid": "4353", - "broadcastType": "Banttan", - "seasonInfo": "2. Sezon - 201. Bölüm" - }, - { - "id": "195414980", - "name": "Peppa Pig", - "starttime": "2024-12-19 08:05:00 UTC+03:00", - "endtime": "2024-12-19 08:10:00 UTC+03:00", - "genres": "Çocuk", - "advisory": [], - "ratingid": "0", - "picture": "https://gbzeottvsc01.tvplus.com.tr:33207/CPS/images/universal/film/program/202412/20241213/0/2126361827715eb9542c_0_XL.jpg", - "isnpvr": "1", - "introduce": "Soğuk ve rüzgârlı bir kış günüdür. Parktaki tüm yapraklar sarıya ve kırmızıya dönüşmüştür. O kadar rüzgârlıdır ki Peppa'nın topu gölete düşer, George'un şapkası da uçup ağaca takılır.", - "programType": "episode", - "channelid": "4353", - "broadcastType": "Banttan", - "seasonInfo": "2. Sezon - 202. Bölüm" - }, - { - "id": "195414986", - "name": "Peppa Pig", - "starttime": "2024-12-19 08:10:00 UTC+03:00", - "endtime": "2024-12-19 08:15:00 UTC+03:00", - "genres": "Çocuk", - "advisory": [], - "ratingid": "0", - "picture": "https://gbzeottvsc01.tvplus.com.tr:33207/CPS/images/universal/film/program/202412/20241213/17/2126361827745eb9542c_0_XL.jpg", - "isnpvr": "1", - "introduce": "Aile, TV'de Dedektif Patates'i izliyordur. Peppa ve George da dedektif olmak isterler. Baba Domuz onlara çözmeleri için bir gizem verir. Teddy saklanmıştır ve Pepa ve George, onu bulmak için büyüteçle kek kırıntılarını takip ederler.", - "programType": "episode", - "channelid": "4353", - "broadcastType": "Banttan", - "seasonInfo": "2. Sezon - 203. Bölüm" - }, - { - "id": "195414992", - "name": "Anna ve Dostları", - "starttime": "2024-12-19 08:15:00 UTC+03:00", - "endtime": "2024-12-19 08:20:00 UTC+03:00", - "genres": "Çocuk", - "advisory": [], - "ratingid": "0", - "picture": "https://gbzeottvsc01.tvplus.com.tr:33207/CPS/images/universal/film/program/202412/20241213/1/2126361827775eb9542c_0_XL.jpg", - "isnpvr": "1", - "introduce": "Anna ve dostları doğada harika bir piknik planlar ama Bubu'nun çantası çok ağırdır, Christopher çilekleri yemeden duramaz! Bir gök gürültüsü işleri daha da kötüleştirir. Neyse ki Anna'nın salonu harika bir kamp alanıdır!", - "programType": "episode", - "channelid": "4353", - "broadcastType": "Banttan", - "seasonInfo": "1. Sezon - 106. Bölüm" - }, - { - "id": "195414998", - "name": "Anna ve Dostları", - "starttime": "2024-12-19 08:20:00 UTC+03:00", - "endtime": "2024-12-19 08:30:00 UTC+03:00", - "genres": "Çocuk", - "advisory": [], - "ratingid": "0", - "picture": "https://gbzeottvsc01.tvplus.com.tr:33207/CPS/images/universal/film/program/202412/20241213/7/2126361827805eb9542c_0_XL.jpg", - "isnpvr": "1", - "introduce": "Anna ve Froga uçurtmayla oynarken uçurtma ağaca takılır. Anna ve Froga yardım için Ron'a koşar, ancak üç arkadaş elma ağacına vardıklarında uçurtma ve elmalar kaybolmuştur!", - "programType": "episode", - "channelid": "4353", - "broadcastType": "Banttan", - "seasonInfo": "1. Sezon - 107. Bölüm" - }, - { - "id": "195415004", - "name": "Minik Şef'in Yemek Programı", - "starttime": "2024-12-19 08:30:00 UTC+03:00", - "endtime": "2024-12-19 08:50:00 UTC+03:00", - "genres": "Çocuk", - "advisory": [], - "ratingid": "0", - "picture": "https://gbzeottvsc01.tvplus.com.tr:33207/CPS/images/universal/film/program/202412/20241213/54/2126361837835eb9542c_0_XL.jpg", - "isnpvr": "1", - "introduce": "Stump'a bilinmeyen bir meyve teslim edildiğinde, Dedektif Şef ve Olly pişirmeden önce bunun ne olduğunun gizemini çözmek zorundadır. Çetenin hapşırıkları tuttuğunda, matzo topu çorbasını tam bir tarif olmadan bitirmek Olly'ye kalır.", - "programType": "episode", - "channelid": "4353", - "broadcastType": "Banttan", - "seasonInfo": "2. Sezon - 203. Bölüm" - }, - { - "id": "195415010", - "name": "Minik Şef", - "starttime": "2024-12-19 08:50:00 UTC+03:00", - "endtime": "2024-12-19 09:00:00 UTC+03:00", - "genres": "Çocuk", - "advisory": [], - "ratingid": "0", - "picture": "https://gbzeottvsc01.tvplus.com.tr:33207/CPS/images/universal/film/program/202412/20241213/29/2126361837865eb9542c_0_XL.jpg", - "isnpvr": "1", - "introduce": "Minik Şef evinde küçük yemek şovu verir ve en iyi arkadaşları Olly, Ruby ve Henry ile lezzetli yemekler ve harika maceralar hazırlar. Minik Şef, buluşlarını arkadaşlarıyla paylaşmaktan keyif alır ve yaptığı her yemeğe sevgisini katar.", - "programType": "episode", - "channelid": "4353", - "broadcastType": "Banttan", - "seasonInfo": "1. Sezon - 101. Bölüm" - }, - { - "id": "195415016", - "name": "Blaze ve Yol Canavarları", - "starttime": "2024-12-19 09:00:00 UTC+03:00", - "endtime": "2024-12-19 09:25:00 UTC+03:00", - "genres": "Çocuk", - "advisory": [], - "ratingid": "0", - "picture": "https://gbzeottvsc01.tvplus.com.tr:33207/CPS/images/universal/film/program/202412/20241213/85/2126361837895eb9542c_0_XL.jpg", - "isnpvr": "1", - "introduce": "Blaze ve Yol Canavarları dünyanın en muhteşem canavar kamyonu Blaze ve onun en iyi dostu ve şoförü AJ adlı bir çocukla ilgili okul öncesi interaktif animasyon dizisidir.", - "programType": "episode", - "channelid": "4353", - "broadcastType": "Banttan", - "seasonInfo": "1. Sezon - 112. Bölüm" - }, - { - "id": "195415022", - "name": "Hamster Diyarı", - "starttime": "2024-12-19 09:25:00 UTC+03:00", - "endtime": "2024-12-19 09:45:00 UTC+03:00", - "genres": "Çocuk", - "advisory": [], - "ratingid": "0", - "picture": "https://gbzeottvsc01.tvplus.com.tr:33207/CPS/images/universal/film/program/202412/20241213/0/2126361837925eb9542c_0_XL.jpg", - "isnpvr": "1", - "introduce": "Mondo ve Lil Pal ıssız bir adada mahsur kalır ve diğer hamsterlar onları kurtarır. Popcorn'un patlamış mısıra olan kontrol edilemez sevgisi tüm hamsterları tehlikeye atmakla tehdit eder.", - "programType": "episode", - "channelid": "4353", - "broadcastType": "Banttan", - "seasonInfo": "1. Sezon - 112. Bölüm" - }, - { - "id": "195415028", - "name": "Paw Patrol", - "starttime": "2024-12-19 09:45:00 UTC+03:00", - "endtime": "2024-12-19 10:10:00 UTC+03:00", - "genres": "Çocuk", - "advisory": [], - "ratingid": "0", - "picture": "https://gbzeottvsc01.tvplus.com.tr:33207/CPS/images/universal/film/program/202412/20241213/44/2126361847955eb9542c_0_XL.jpg", - "isnpvr": "1", - "introduce": "Turbotlar ormanda bir yerde mahsur kalır. Paw Patrol'ü aramaya çalışırlar ama telefonları çekmez. Chickaletta yumurtlar ama yumurta yuvarlanıp şehirde uzaklaşır. Paw Patrol'ün çatlamadan yumurtayı bulması gerek.", - "programType": "episode", - "channelid": "4353", - "broadcastType": "Banttan", - "seasonInfo": "6. Sezon - 608. Bölüm" - }, - { - "id": "195415034", - "name": "Paw Patrol", - "starttime": "2024-12-19 10:10:00 UTC+03:00", - "endtime": "2024-12-19 10:30:00 UTC+03:00", - "genres": "Çocuk", - "advisory": [], - "ratingid": "0", - "picture": "https://gbzeottvsc01.tvplus.com.tr:33207/CPS/images/universal/film/program/202412/20241213/5/2126361847985eb9542c_0_XL.jpg", - "isnpvr": "1", - "introduce": "Çiftçi Al ve Çiftçi Yumi bir deniz ineğini bataklığa götürmek için PAW Patrol'dan yardım ister. Bay Porter ve Alex dara düşer. Boğazlarına kadar akçaağaç şurubuna batmışlar! Bay Porter'ı ve kahvaltıyı kurtarmak PAW Patrol'e düştü!", - "programType": "episode", - "channelid": "4353", - "broadcastType": "Banttan", - "seasonInfo": "6. Sezon - 610. Bölüm" - }, - { - "id": "195415040", - "name": "Köpecik Pit Ekibi", - "starttime": "2024-12-19 10:30:00 UTC+03:00", - "endtime": "2024-12-19 10:40:00 UTC+03:00", - "genres": "Çocuk", - "advisory": [], - "ratingid": "0", - "picture": "https://gbzeottvsc01.tvplus.com.tr:33207/CPS/images/universal/film/program/202412/20241213/14/2126361848015eb9542c_0_XL.jpg", - "isnpvr": "1", - "introduce": "PAW Patrol okul öncesi programı ve altı tane köpekçik baş rolü paylaşıyor: Chase, Marshall, Rocky, Zuma, Rubble ve Skye, başlarında da teknoloji meraklısı 10 yaşında bir çocuk olan Ryder var.", - "programType": "episode", - "channelid": "4353", - "broadcastType": "Banttan", - "seasonInfo": "1. Sezon - 107. Bölüm" - }, - { - "id": "195415046", - "name": "Rubble ve Ekibi", - "starttime": "2024-12-19 10:40:00 UTC+03:00", - "endtime": "2024-12-19 11:05:00 UTC+03:00", - "genres": "Çocuk", - "advisory": [], - "ratingid": "0", - "picture": "https://gbzeottvsc01.tvplus.com.tr:33207/CPS/images/universal/film/program/202412/20241213/99/2126361848045eb9542c_0_XL.jpg", - "isnpvr": "1", - "introduce": "Rubble ve Ekibi, yağmurun kasabayı sular altında bırakma tehdidi sonrası İnşaatçı Koyu'nu kurtarmak için iş başında. Rubble ve Motor, Çiftlik Fuarı'ndan önce Çiftçi Zoe'nin sincap sorunu için kurnaz inşaat çözümleri buluyor.", - "programType": "episode", - "channelid": "4353", - "broadcastType": "Banttan", - "seasonInfo": "1. Sezon - 122. Bölüm" - }, - { - "id": "195415052", - "name": "Rubble ve Ekibi", - "starttime": "2024-12-19 11:05:00 UTC+03:00", - "endtime": "2024-12-19 11:30:00 UTC+03:00", - "genres": "Çocuk", - "advisory": [], - "ratingid": "0", - "picture": "https://gbzeottvsc01.tvplus.com.tr:33207/CPS/images/universal/film/program/202412/20241213/65/2126361848075eb9542c_0_XL.jpg", - "isnpvr": "1", - "introduce": "Parıltılı Sierra'nın konser sahnesinin biraz daha ışıltıya ihtiyacı olduğunda, Rubble ve Ekibi bir inşaata başlar. Bakkal Gabriel bakkal dükkânının dışına özel bir şey inşa edilmesini isteyince Rubble ve Ekibi büyük oynamaya karar verir.", - "programType": "episode", - "channelid": "4353", - "broadcastType": "Banttan", - "seasonInfo": "1. Sezon - 123. Bölüm" - }, - { - "id": "195415058", - "name": "Kaşif Dora", - "starttime": "2024-12-19 11:30:00 UTC+03:00", - "endtime": "2024-12-19 11:40:00 UTC+03:00", - "genres": "Çocuk", - "advisory": [], - "ratingid": "0", - "picture": "https://gbzeottvsc01.tvplus.com.tr:33207/CPS/images/universal/film/program/202412/20241213/73/2126361858105eb9542c_0_XL.jpg", - "isnpvr": "1", - "introduce": "DORA büyülü yağmur ormanlarında daha fazla fantastik macera için geri döndü! Dünyanın en olağanüstü küçük kaşifi ve en iyi arkadaşı Boots'a yeni eğlence ve yeni arkadaşlar keşfederken katılın; sınır gökyüzü! Haydi!", - "programType": "episode", - "channelid": "4353", - "broadcastType": "Banttan", - "seasonInfo": "2. Sezon - 213. Bölüm" - }, - { - "id": "195415064", - "name": "Kaşif Dora", - "starttime": "2024-12-19 11:40:00 UTC+03:00", - "endtime": "2024-12-19 11:50:00 UTC+03:00", - "genres": "Çocuk", - "advisory": [], - "ratingid": "0", - "picture": "https://gbzeottvsc01.tvplus.com.tr:33207/CPS/images/universal/film/program/202412/20241213/84/2126361858135eb9542c_0_XL.jpg", - "isnpvr": "1", - "introduce": "DORA büyülü yağmur ormanlarında daha fazla fantastik macera için geri döndü! Dünyanın en olağanüstü küçük kaşifi ve en iyi arkadaşı Boots'a yeni eğlence ve yeni arkadaşlar keşfederken katılın; sınır gökyüzü! Haydi!", - "programType": "episode", - "channelid": "4353", - "broadcastType": "Banttan", - "seasonInfo": "2. Sezon - 212. Bölüm" - }, - { - "id": "195415070", - "name": "Baby Shark's Big Show!", - "starttime": "2024-12-19 11:50:00 UTC+03:00", - "endtime": "2024-12-19 12:15:00 UTC+03:00", - "genres": "Çocuk", - "advisory": [], - "ratingid": "0", - "picture": "https://gbzeottvsc01.tvplus.com.tr:33207/CPS/images/universal/film/program/202412/20241213/10/2126361858165eb9542c_0_XL.jpg", - "isnpvr": "1", - "introduce": "Baby ve arkadaşlarından bir müzik festivalinde sahne almaları istendiğinde, hangi tür şarkıyı çalacaklarına karar veremezler. Dedektif Baby Shark ve William Watson huysuz bir gizemi çözüyor.", - "programType": "episode", - "channelid": "4353", - "broadcastType": "Banttan", - "seasonInfo": "2. Sezon - 226. Bölüm" - }, - { - "id": "195415076", - "name": "Camgöz (2020)", - "starttime": "2024-12-19 12:15:00 UTC+03:00", - "endtime": "2024-12-19 12:20:00 UTC+03:00", - "genres": "Çocuk", - "advisory": [], - "ratingid": "0", - "picture": "https://gbzeottvsc01.tvplus.com.tr:33207/CPS/images/universal/film/program/202412/20241213/31/2126361858195eb9542c_0_XL.jpg", - "isnpvr": "1", - "introduce": "Camgöz gizemli bir soğuk algınlığına yakalandığında, Max onu babasının iyileştireceğini bilmektedir. Ancak muayeneyi akvaryumun robot doktoru üstlenince işler sarpa sarar!", - "programType": "episode", - "channelid": "4353", - "broadcastType": "Banttan", - "seasonInfo": "2. Sezon - 208. Bölüm" - }, - { - "id": "195415082", - "name": "Camgöz (2020)", - "starttime": "2024-12-19 12:20:00 UTC+03:00", - "endtime": "2024-12-19 12:25:00 UTC+03:00", - "genres": "Çocuk", - "advisory": [], - "ratingid": "0", - "picture": "https://gbzeottvsc01.tvplus.com.tr:33207/CPS/images/universal/film/program/202412/20241213/40/2126361858225eb9542c_0_XL.jpg", - "isnpvr": "1", - "introduce": "Annesi haberler için Camgöz'ün vahşi tarafını araştırmakla görevlendirildiğinde, Max'in en iyi arkadaşında korkulacak bir şey olmadığını anlayacaktır.", - "programType": "episode", - "channelid": "4353", - "broadcastType": "Banttan", - "seasonInfo": "2. Sezon - 209. Bölüm" - }, - { - "id": "195415088", - "name": "Camgöz (2020)", - "starttime": "2024-12-19 12:25:00 UTC+03:00", - "endtime": "2024-12-19 12:35:00 UTC+03:00", - "genres": "Çocuk", - "advisory": [], - "ratingid": "0", - "picture": "https://gbzeottvsc01.tvplus.com.tr:33207/CPS/images/universal/film/program/202412/20241213/32/2126361868255eb9542c_0_XL.jpg", - "isnpvr": "1", - "introduce": "Camgöz yanlışlıkla tahta gezinti yolunu tahrip edince, Max ve Köpek Balığı Sürüsü Camgöz'ün gerçekten harika bir evcil hayvan olduğunu herkese kanıtlamak zorunda kalırlar.", - "programType": "episode", - "channelid": "4353", - "broadcastType": "Banttan", - "seasonInfo": "2. Sezon - 210. Bölüm" - }, - { - "id": "195415094", - "name": "Peppa Pig", - "starttime": "2024-12-19 12:35:00 UTC+03:00", - "endtime": "2024-12-19 12:40:00 UTC+03:00", - "genres": "Çocuk", - "advisory": [], - "ratingid": "0", - "picture": "https://gbzeottvsc01.tvplus.com.tr:33207/CPS/images/universal/film/program/202412/20241213/38/2126361868285eb9542c_0_XL.jpg", - "isnpvr": "1", - "introduce": "Peppa ve George, baloncuklarla oynuyordur. Baloncuk karışımı bitince, Baba Domuz onlara eski bir tenis raketi ve sabunlu suyla nasıl büyük baloncuklar yapacaklarını gösterir. Sonra herkesin içine atlaması için dev gibi bir çamur baloncuğu yapar.", - "programType": "episode", - "channelid": "4353", - "broadcastType": "Banttan", - "seasonInfo": "2. Sezon - 204. Bölüm" - }, - { - "id": "195415100", - "name": "Peppa Pig", - "starttime": "2024-12-19 12:40:00 UTC+03:00", - "endtime": "2024-12-19 12:45:00 UTC+03:00", - "genres": "Çocuk", - "advisory": [], - "ratingid": "0", - "picture": "https://gbzeottvsc01.tvplus.com.tr:33207/CPS/images/universal/film/program/202412/20241213/73/2126361868315eb9542c_0_XL.jpg", - "isnpvr": "1", - "introduce": "Neredeyse yatma zamanı gelmiştir ve Peppa ve George'un banyo yapması gerekiyordur. Sonrasında dişlerini fırçalayıp yatağa giderler. Hızlıca uyurlar. Baba ve Anne Domuz, nihayet otururlar, uzun bir gün olmuştur ve onlar da yorulmuştur.", - "programType": "episode", - "channelid": "4353", - "broadcastType": "Banttan", - "seasonInfo": "2. Sezon - 205. Bölüm" - }, - { - "id": "195415106", - "name": "Peppa Pig", - "starttime": "2024-12-19 12:45:00 UTC+03:00", - "endtime": "2024-12-19 12:50:00 UTC+03:00", - "genres": "Çocuk", - "advisory": [], - "ratingid": "0", - "picture": "https://gbzeottvsc01.tvplus.com.tr:33207/CPS/images/universal/film/program/202412/20241213/10/2126361868345eb9542c_0_XL.jpg", - "isnpvr": "1", - "introduce": "Büyükanne ve Büyükbaba Domuz, Peppa ve ailesini öğle yemeğine davet ederler. Yolda Peppa, George, Anne Domuz ve Baba Domuz, trafiğe sıkışırlar. Bu yüzden Büyükbaba Domuz, onlara yemek getirir.", - "programType": "episode", - "channelid": "4353", - "broadcastType": "Banttan", - "seasonInfo": "2. Sezon - 206. Bölüm" - }, - { - "id": "195415112", - "name": "Peppa Pig", - "starttime": "2024-12-19 12:50:00 UTC+03:00", - "endtime": "2024-12-19 12:55:00 UTC+03:00", - "genres": "Çocuk", - "advisory": [], - "ratingid": "0", - "picture": "https://gbzeottvsc01.tvplus.com.tr:33207/CPS/images/universal/film/program/202412/20241213/61/2126361878375eb9542c_0_XL.jpg", - "isnpvr": "1", - "introduce": "Büyükanne ve Büyükbaba Domuz, Peppa ve George'u bol bol kaya olan bir plaja getirir. Küçük bir yengeç, bir deniz kabuğu ve bir fosil onları çok eğlendirir. Peppa kovasıyla küçük bir balığı kurtarır ve sonra onu denize geri gönderir.", - "programType": "episode", - "channelid": "4353", - "broadcastType": "Banttan", - "seasonInfo": "2. Sezon - 207. Bölüm" - }, - { - "id": "195415118", - "name": "Minik Şef'in Yemek Programı", - "starttime": "2024-12-19 12:55:00 UTC+03:00", - "endtime": "2024-12-19 13:15:00 UTC+03:00", - "genres": "Çocuk", - "advisory": [], - "ratingid": "0", - "picture": "https://gbzeottvsc01.tvplus.com.tr:33207/CPS/images/universal/film/program/202412/20241213/78/2126361878405eb9542c_0_XL.jpg", - "isnpvr": "1", - "introduce": "Henry salyangoz yarışında! Yarış için hazırladığı meyve lokmalarının sertleşmesi uzun sürüyor! Ruby'nin harika bir opera sanatçısı olduğunu öğrenen Şef, Olly gürültülü bir şekilde konser sahnesi inşa ederken bir opera pastası yapmaya çalışıyor.", - "programType": "episode", - "channelid": "4353", - "broadcastType": "Banttan", - "seasonInfo": "2. Sezon - 206. Bölüm" - }, - { - "id": "195415124", - "name": "BARBAPAPA Ailesi", - "starttime": "2024-12-19 13:15:00 UTC+03:00", - "endtime": "2024-12-19 13:40:00 UTC+03:00", - "genres": "Çocuk", - "advisory": [], - "ratingid": "0", - "picture": "https://gbzeottvsc01.tvplus.com.tr:33207/CPS/images/universal/film/program/202412/20241213/89/2126361878435eb9542c_0_XL.jpg", - "isnpvr": "1", - "introduce": "Barbazeki, Mars'tan bir melodi yakalar. Barbapapalar kızıl gezegene gitmek için bir roket yapar. Barbapapalar, Mars'a giderken bir Barbamarslı ailesiyle tanışır. Köye bitki saldırınca tanışacak zamanları kalmaz.", - "programType": "episode", - "channelid": "4353", - "broadcastType": "Banttan", - "seasonInfo": "1. Sezon - 102. Bölüm" - }, - { - "id": "195415130", - "name": "BARBAPAPA Ailesi", - "starttime": "2024-12-19 13:40:00 UTC+03:00", - "endtime": "2024-12-19 14:00:00 UTC+03:00", - "genres": "Çocuk", - "advisory": [], - "ratingid": "0", - "picture": "https://gbzeottvsc01.tvplus.com.tr:33207/CPS/images/universal/film/program/202412/20241213/47/2126361878465eb9542c_0_XL.jpg", - "isnpvr": "1", - "introduce": "Barbabekler kayıp bir bebek fil bulup ve ona gizlice bakar. Barbapapa ve Barbaanne, Boris'e nasıl tepki verecek acaba? Fil Boris evini özler. Barbapapa onu Afrika'ya geri getirmeye karar verir. Ve Boris'in iklime alışmasına yardım eder.", - "programType": "episode", - "channelid": "4353", - "broadcastType": "Banttan", - "seasonInfo": "1. Sezon - 103. Bölüm" - }, - { - "id": "195415136", - "name": "Blaze ve Yol Canavarları", - "starttime": "2024-12-19 14:00:00 UTC+03:00", - "endtime": "2024-12-19 14:25:00 UTC+03:00", - "genres": "Çocuk", - "advisory": [], - "ratingid": "0", - "picture": "https://gbzeottvsc01.tvplus.com.tr:33207/CPS/images/universal/film/program/202412/20241213/59/2126361878495eb9542c_0_XL.jpg", - "isnpvr": "1", - "introduce": "Blaze'in arkadaşlarının yardıma ihtiyacı olduğunda, Ambulans Blaze, Paramedik AJ ve Paramedik Gabby günü kurtarmak için ihtiyaç duydukları tüm araçlara sahip!", - "programType": "episode", - "channelid": "4353", - "broadcastType": "Banttan", - "seasonInfo": "7. Sezon - 705. Bölüm" - }, - { - "id": "195415142", - "name": "Blaze ve Yol Canavarları", - "starttime": "2024-12-19 14:25:00 UTC+03:00", - "endtime": "2024-12-19 14:50:00 UTC+03:00", - "genres": "Çocuk", - "advisory": [], - "ratingid": "0", - "picture": "https://gbzeottvsc01.tvplus.com.tr:33207/CPS/images/universal/film/program/202412/20241213/93/2126361888525eb9542c_0_XL.jpg", - "isnpvr": "1", - "introduce": "Blaze ve Crusher'ın bir araya gelmesiyle kafa kafaya bir kapışma... Kar Tanesi Oyunları! En çok kış sporunu kim kazanacak ve ödüllü Kar Tanesi Madalyasını kim alacak?", - "programType": "episode", - "channelid": "4353", - "broadcastType": "Banttan", - "seasonInfo": "7. Sezon - 706. Bölüm" - }, - { - "id": "195415148", - "name": "Paw Patrol", - "starttime": "2024-12-19 14:50:00 UTC+03:00", - "endtime": "2024-12-19 15:10:00 UTC+03:00", - "genres": "Çocuk", - "advisory": [], - "ratingid": "0", - "picture": "https://gbzeottvsc01.tvplus.com.tr:33207/CPS/images/universal/film/program/202412/20241213/8/2126361888555eb9542c_0_XL.jpg", - "isnpvr": "1", - "introduce": "Paw patrol, dostları Carlos'un kayıp papağanı Mateo'yu bulmasına yardım için ormana gider! Ryder ve paw patrol, bir arı kovanını, daha güvenli bir eve kavuşmaları için çiftçi Al'ın çiftliğine taşımasına yaredım eder.", - "programType": "episode", - "channelid": "4353", - "broadcastType": "Banttan", - "seasonInfo": "2. Sezon - 212. Bölüm" - }, - { - "id": "195415154", - "name": "Paw Patrol", - "starttime": "2024-12-19 15:10:00 UTC+03:00", - "endtime": "2024-12-19 15:35:00 UTC+03:00", - "genres": "Çocuk", - "advisory": [], - "ratingid": "0", - "picture": "https://gbzeottvsc01.tvplus.com.tr:33207/CPS/images/universal/film/program/202412/20241213/28/2126361888585eb9542c_0_XL.jpg", - "isnpvr": "1", - "introduce": "Köpekçöilerin savana seyahati, bir fila ilesini kurtarma görevine dönüşüyor! Kusursuz kasaba ödülünü kazanmak için, paw patrol'un köpekçikleri macera körfezi'ni başkan Hamdinger'in kedicikler afet ekibi'nin elinden kurtarması şart!", - "programType": "episode", - "channelid": "4353", - "broadcastType": "Banttan", - "seasonInfo": "2. Sezon - 214. Bölüm" - }, - { - "id": "195415160", - "name": "Baby Shark's Big Show", - "starttime": "2024-12-19 15:35:00 UTC+03:00", - "endtime": "2024-12-19 15:55:00 UTC+03:00", - "genres": "Çocuk", - "advisory": [], - "ratingid": "0", - "picture": "https://gbzeottvsc01.tvplus.com.tr:33207/CPS/images/universal/film/program/202412/20241213/74/2126361888615eb9542c_0_XL.jpg", - "isnpvr": "1", - "introduce": "Chucks Baby Shark ve arkadaşlarının Carnivore Koy'unun komşu kasabasına karşı yıllık Kartopu Yarışı'nı kazanmasına yardım etmeye çalışır. Baby Shark Anne Köpekbalığı için mükemmel hediyeyi bulma görevine gider.", - "programType": "episode", - "channelid": "4353", - "broadcastType": "Banttan", - "seasonInfo": "1. Sezon - 115. Bölüm" - }, - { - "id": "195415166", - "name": "BARBAPAPA Ailesi", - "starttime": "2024-12-19 15:55:00 UTC+03:00", - "endtime": "2024-12-19 16:15:00 UTC+03:00", - "genres": "Çocuk", - "advisory": [], - "ratingid": "0", - "picture": "https://gbzeottvsc01.tvplus.com.tr:33207/CPS/images/universal/film/program/202412/20241213/54/2126361888645eb9542c_0_XL.jpg", - "isnpvr": "1", - "introduce": "Barbaçalışkan, Barbalala ve Barbasüslü, sırayla kendi dokunuşlarını katarak aynı hikayeyi anlatır. Barbapapa ailesi sahilde bir gün geçiriyor. İki takıma bölünen Barbabebekler kumlu bir yarımada için savaşır.", - "programType": "episode", - "channelid": "4353", - "broadcastType": "Banttan", - "seasonInfo": "1. Sezon - 120. Bölüm" - }, - { - "id": "195415172", - "name": "Ayı Paddington'un Maceraları", - "starttime": "2024-12-19 16:15:00 UTC+03:00", - "endtime": "2024-12-19 16:40:00 UTC+03:00", - "genres": "Çocuk", - "advisory": [], - "ratingid": "0", - "picture": "https://gbzeottvsc01.tvplus.com.tr:33207/CPS/images/universal/film/program/202412/20241213/26/2126361898675eb9542c_0_XL.jpg", - "isnpvr": "1", - "introduce": "Paddington, Kaptan Yeşil Sakal'ın ganimeti için hazine avına çıkar, ama arkadaş kalıp paylaşabilecekler mi? Herkes kumdan kale yarışmasını kazanmak ve özel bir dondurma ödülünün tadını çıkarmak istiyor, ancak takım çalışması çok önemli!", - "programType": "episode", - "channelid": "4353", - "broadcastType": "Banttan", - "seasonInfo": "3. Sezon - 310. Bölüm" - }, - { - "id": "195415178", - "name": "Rubble ve Ekibi", - "starttime": "2024-12-19 16:40:00 UTC+03:00", - "endtime": "2024-12-19 17:00:00 UTC+03:00", - "genres": "Çocuk", - "advisory": [], - "ratingid": "0", - "picture": "https://gbzeottvsc01.tvplus.com.tr:33207/CPS/images/universal/film/program/202412/20241213/30/2126361898705eb9542c_0_XL.jpg", - "isnpvr": "1", - "introduce": "Vali Greatway, Rubble ve Ekibi'nden Bay Ducky-Doo için özel bir şey ister. Ancak kısa süre sonra bir gizem ortaya çıkar... Rubble ve Ekibi, fırtınadan önce Çiftçi Zoe için bir yağmur tankı yapmaya çalışır, ta ki bir tavuk sorunu çıkana kadar.", - "programType": "episode", - "channelid": "4353", - "broadcastType": "Banttan", - "seasonInfo": "2. Sezon - 211. Bölüm" - }, - { - "id": "195415184", - "name": "Kaşif Dora", - "starttime": "2024-12-19 17:00:00 UTC+03:00", - "endtime": "2024-12-19 17:10:00 UTC+03:00", - "genres": "Çocuk", - "advisory": [], - "ratingid": "0", - "picture": "https://gbzeottvsc01.tvplus.com.tr:33207/CPS/images/universal/film/program/202412/20241213/93/2126361898735eb9542c_0_XL.jpg", - "isnpvr": "1", - "introduce": "DORA büyülü yağmur ormanlarında daha fazla fantastik macera için geri döndü! Dünyanın en olağanüstü küçük kaşifi ve en iyi arkadaşı Boots'a yeni eğlence ve yeni arkadaşlar keşfederken katılın; sınır gökyüzü! Haydi!", - "programType": "episode", - "channelid": "4353", - "broadcastType": "Banttan", - "seasonInfo": "2. Sezon - 213. Bölüm" - }, - { - "id": "195415190", - "name": "Kaşif Dora", - "starttime": "2024-12-19 17:10:00 UTC+03:00", - "endtime": "2024-12-19 17:25:00 UTC+03:00", - "genres": "Çocuk", - "advisory": [], - "ratingid": "0", - "picture": "https://gbzeottvsc01.tvplus.com.tr:33207/CPS/images/universal/film/program/202412/20241213/92/2126361898765eb9542c_0_XL.jpg", - "isnpvr": "1", - "introduce": "DORA büyülü yağmur ormanlarında daha fazla fantastik macera için geri döndü! Dünyanın en olağanüstü küçük kaşifi ve en iyi arkadaşı Boots'a yeni eğlence ve yeni arkadaşlar keşfederken katılın; sınır gökyüzü! Haydi!", - "programType": "episode", - "channelid": "4353", - "broadcastType": "Banttan", - "seasonInfo": "2. Sezon - 212. Bölüm" - }, - { - "id": "195415196", - "name": "Blaze ve Yol Canavarları", - "starttime": "2024-12-19 17:25:00 UTC+03:00", - "endtime": "2024-12-19 17:45:00 UTC+03:00", - "genres": "Çocuk", - "advisory": [], - "ratingid": "0", - "picture": "https://gbzeottvsc01.tvplus.com.tr:33207/CPS/images/universal/film/program/202412/20241213/79/2126361898795eb9542c_0_XL.jpg", - "isnpvr": "1", - "introduce": "AJ, Axle City Uçuş Yarışması'na katılıyor. Ancak Crusher onu ve Blaze'i uzağa gönderdiğinde, AJ'in süper havalı uçan icadını inşa etmesi için zamanında geri dönmeleri gerekiyor!", - "programType": "episode", - "channelid": "4353", - "broadcastType": "Banttan", - "seasonInfo": "7. Sezon - 707. Bölüm" - }, - { - "id": "195415202", - "name": "Minik Şef'in Yemek Programı", - "starttime": "2024-12-19 17:45:00 UTC+03:00", - "endtime": "2024-12-19 18:10:00 UTC+03:00", - "genres": "Çocuk", - "advisory": [], - "ratingid": "0", - "picture": "https://gbzeottvsc01.tvplus.com.tr:33207/CPS/images/universal/film/program/202412/20241213/1/2126361898825eb9542c_0_XL.jpg", - "isnpvr": "1", - "introduce": "Olly, Dinozor Kulübü için basit bir pasta yapmak ister ama Şef tarifi karmaşıklaştırıyor. Şef ve Olly mantı yapıyor, ancak ilk kez mantı yapan Olly daha iyi yapınca, Şef kendi becerilerine olan güvenini kaybeder gibi oluyor.", - "programType": "episode", - "channelid": "4353", - "broadcastType": "Banttan", - "seasonInfo": "2. Sezon - 209. Bölüm" - }, - { - "id": "195415208", - "name": "Baby Shark's Big Show!", - "starttime": "2024-12-19 18:10:00 UTC+03:00", - "endtime": "2024-12-19 18:30:00 UTC+03:00", - "genres": "Çocuk", - "advisory": [], - "ratingid": "0", - "picture": "https://gbzeottvsc01.tvplus.com.tr:33207/CPS/images/universal/film/program/202412/20241213/11/2126361908855eb9542c_0_XL.jpg", - "isnpvr": "1", - "introduce": "Baby Shark, ailesi ve arkadaşlarının tuzlu aptallıklarına dalın.", - "programType": "episode", - "channelid": "4353", - "broadcastType": "Banttan", - "seasonInfo": "2. Sezon - 215. Bölüm" - }, - { - "id": "195415214", - "name": "Camgöz (2020)", - "starttime": "2024-12-19 18:30:00 UTC+03:00", - "endtime": "2024-12-19 18:40:00 UTC+03:00", - "genres": "Çocuk", - "advisory": [], - "ratingid": "0", - "picture": "https://gbzeottvsc01.tvplus.com.tr:33207/CPS/images/universal/film/program/202412/20241213/56/2126361908885eb9542c_0_XL.jpg", - "isnpvr": "1", - "introduce": "Max'in Camgöz adında yarı köpek balığı yarı köpek eşsiz bir evcil havyanı vardır. İlk başlarda Camgöz'ü saklamaya çalışsa da Sisli Pınarlar'da, en iyi arkadaşlar, meraklı komşular ve hatta Max'in ailesi bile yaramaz yeni arkadaşını fark edecektir.", - "programType": "episode", - "channelid": "4353", - "broadcastType": "Banttan", - "seasonInfo": "1. Sezon - 118. Bölüm" - }, - { - "id": "195415220", - "name": "Camgöz (2020)", - "starttime": "2024-12-19 18:40:00 UTC+03:00", - "endtime": "2024-12-19 18:45:00 UTC+03:00", - "genres": "Çocuk", - "advisory": [], - "ratingid": "0", - "picture": "https://gbzeottvsc01.tvplus.com.tr:33207/CPS/images/universal/film/program/202412/20241213/97/2126361908915eb9542c_0_XL.jpg", - "isnpvr": "1", - "introduce": "Max'in Camgöz adında yarı köpek balığı yarı köpek eşsiz bir evcil havyanı vardır. İlk başlarda Camgöz'ü saklamaya çalışsa da Sisli Pınarlar'da, en iyi arkadaşlar, meraklı komşular ve hatta Max'in ailesi bile yaramaz yeni arkadaşını fark edecektir.", - "programType": "episode", - "channelid": "4353", - "broadcastType": "Banttan", - "seasonInfo": "1. Sezon - 119. Bölüm" - }, - { - "id": "195415226", - "name": "Camgöz (2020)", - "starttime": "2024-12-19 18:45:00 UTC+03:00", - "endtime": "2024-12-19 18:50:00 UTC+03:00", - "genres": "Çocuk", - "advisory": [], - "ratingid": "0", - "picture": "https://gbzeottvsc01.tvplus.com.tr:33207/CPS/images/universal/film/program/202412/20241213/35/2126361908945eb9542c_0_XL.jpg", - "isnpvr": "1", - "introduce": "Max'in Camgöz adında yarı köpek balığı yarı köpek eşsiz bir evcil havyanı vardır. İlk başlarda Camgöz'ü saklamaya çalışsa da Sisli Pınarlar'da, en iyi arkadaşlar, meraklı komşular ve hatta Max'in ailesi bile yaramaz yeni arkadaşını fark edecektir.", - "programType": "episode", - "channelid": "4353", - "broadcastType": "Banttan", - "seasonInfo": "1. Sezon - 120. Bölüm" - }, - { - "id": "195415232", - "name": "Camgöz (2020)", - "starttime": "2024-12-19 18:50:00 UTC+03:00", - "endtime": "2024-12-19 19:00:00 UTC+03:00", - "genres": "Çocuk", - "advisory": [], - "ratingid": "0", - "picture": "https://gbzeottvsc01.tvplus.com.tr:33207/CPS/images/universal/film/program/202412/20241213/9/2126361918975eb9542c_0_XL.jpg", - "isnpvr": "1", - "introduce": "Max'in yarı köpekbalığı yarı köpek olan Camgöz adlı sıra dışı bir evcil hayvanı vardır. Max önce Camgöz'ü sır olarak saklamaya çalışsa da Foggy Springs'teki dostları, meraklı komşuları ve ailesi onun yeni, yaramaz dostunu er ya da geç fark edecektir.", - "programType": "episode", - "channelid": "4353", - "broadcastType": "Banttan", - "seasonInfo": "2. Sezon - 201. Bölüm" - }, - { - "id": "195415238", - "name": "Paw Patrol", - "starttime": "2024-12-19 19:00:00 UTC+03:00", - "endtime": "2024-12-19 19:20:00 UTC+03:00", - "genres": "Çocuk", - "advisory": [], - "ratingid": "0", - "picture": "https://gbzeottvsc01.tvplus.com.tr:33207/CPS/images/universal/film/program/202412/20241213/71/2126361919005eb9542c_0_XL.jpg", - "isnpvr": "1", - "introduce": "Belediye Başkanı Humdinger, Kedi Sürüsü'nden spot ışıklarını çalmak için HumKediDingerMan olur. Doğaçlama bir Kalkan Balığı Turnuvası aşırı rekabete dönüştüğünde yavruların Büyükanne Tilly'yi kurtarması gerekir.", - "programType": "episode", - "channelid": "4353", - "broadcastType": "Banttan", - "seasonInfo": "10. Sezon - 1021. Bölüm" - }, - { - "id": "195415244", - "name": "Köpecik Pit Ekibi", - "starttime": "2024-12-19 19:20:00 UTC+03:00", - "endtime": "2024-12-19 19:30:00 UTC+03:00", - "genres": "Çocuk", - "advisory": [], - "ratingid": "0", - "picture": "https://gbzeottvsc01.tvplus.com.tr:33207/CPS/images/universal/film/program/202412/20241213/67/2126361919035eb9542c_0_XL.jpg", - "isnpvr": "1", - "introduce": "PAW Patrol okul öncesi programı ve altı tane köpekçik baş rolü paylaşıyor: Chase, Marshall, Rocky, Zuma, Rubble ve Skye, başlarında da teknoloji meraklısı 10 yaşında bir çocuk olan Ryder var.", - "programType": "episode", - "channelid": "4353", - "broadcastType": "Banttan", - "seasonInfo": "4. Sezon - 417. Bölüm" - }, - { - "id": "195415250", - "name": "Rubble ve Ekibi", - "starttime": "2024-12-19 19:30:00 UTC+03:00", - "endtime": "2024-12-19 20:00:00 UTC+03:00", - "genres": "Çocuk", - "advisory": [], - "ratingid": "0", - "picture": "https://gbzeottvsc01.tvplus.com.tr:33207/CPS/images/universal/film/program/202412/20241213/4/2126361919065eb9542c_0_XL.jpg", - "isnpvr": "1", - "introduce": "Koç Karima, Moloztaş ve Tayfa'dan bir spor salonu inşa etmelerini ister. Ancak kiriş Lily için çok yüksek olunca, günü kurtarmak yavrulara düşer. Gezici bir gösteri İnşaatçı Koyu'na ulaşamayınca, Rubble ve Ekibi kendilerininkini inşa eder!", - "programType": "episode", - "channelid": "4353", - "broadcastType": "Banttan", - "seasonInfo": "2. Sezon - 206. Bölüm" - }, - { - "id": "195415256", - "name": "Kaşif Dora", - "starttime": "2024-12-19 20:00:00 UTC+03:00", - "endtime": "2024-12-19 20:10:00 UTC+03:00", - "genres": "Çocuk", - "advisory": [], - "ratingid": "0", - "picture": "https://gbzeottvsc01.tvplus.com.tr:33207/CPS/images/universal/film/program/202412/20241213/53/2126361929095eb9542c_0_XL.jpg", - "isnpvr": "1", - "introduce": "DORA büyülü yağmur ormanlarında daha fazla fantastik macera için geri döndü! Dünyanın en olağanüstü küçük kaşifi ve en iyi arkadaşı Boots'a yeni eğlence ve yeni arkadaşlar keşfederken katılın; sınır gökyüzü! Haydi!", - "programType": "episode", - "channelid": "4353", - "broadcastType": "Banttan", - "seasonInfo": "2. Sezon - 213. Bölüm" - }, - { - "id": "195415262", - "name": "Kaşif Dora", - "starttime": "2024-12-19 20:10:00 UTC+03:00", - "endtime": "2024-12-19 20:20:00 UTC+03:00", - "genres": "Çocuk", - "advisory": [], - "ratingid": "0", - "picture": "https://gbzeottvsc01.tvplus.com.tr:33207/CPS/images/universal/film/program/202412/20241213/52/2126361929125eb9542c_0_XL.jpg", - "isnpvr": "1", - "introduce": "DORA büyülü yağmur ormanlarında daha fazla fantastik macera için geri döndü! Dünyanın en olağanüstü küçük kaşifi ve en iyi arkadaşı Boots'a yeni eğlence ve yeni arkadaşlar keşfederken katılın; sınır gökyüzü! Haydi!", - "programType": "episode", - "channelid": "4353", - "broadcastType": "Banttan", - "seasonInfo": "2. Sezon - 212. Bölüm" - }, - { - "id": "195415268", - "name": "Barbapapa Ailesi", - "starttime": "2024-12-19 20:20:00 UTC+03:00", - "endtime": "2024-12-19 20:40:00 UTC+03:00", - "genres": "Çocuk", - "advisory": [], - "ratingid": "0", - "picture": "https://gbzeottvsc01.tvplus.com.tr:33207/CPS/images/universal/film/program/202412/20241213/26/2126361929155eb9542c_0_XL.jpg", - "isnpvr": "1", - "introduce": "Barbapapa gururla ailesine prenses olmak istediğini açıklar. Barbasüslü can sıkıntısından mutsuzdur, kardeşlerinin hepsi meşguldür ve kimse onunla oynamak istemez.", - "programType": "episode", - "channelid": "4353", - "broadcastType": "Banttan", - "seasonInfo": "2. Sezon - 202. Bölüm" - }, - { - "id": "195415274", - "name": "Hamster Diyarı", - "starttime": "2024-12-19 20:40:00 UTC+03:00", - "endtime": "2024-12-19 21:00:00 UTC+03:00", - "genres": "Çocuk", - "advisory": [], - "ratingid": "0", - "picture": "https://gbzeottvsc01.tvplus.com.tr:33207/CPS/images/universal/film/program/202412/20241213/21/2126361929185eb9542c_0_XL.jpg", - "isnpvr": "1", - "introduce": "Greg, arkadaşlarına korkutucu bir numara yapmak zorunda kalmamak için yaralı numarası yapar. Bir saklambaç oyunu sırasında Lil Pal o kadar iyi saklanır ki bulunamaz.", - "programType": "episode", - "channelid": "4353", - "broadcastType": "Banttan", - "seasonInfo": "1. Sezon - 108. Bölüm" - }, - { - "id": "195415280", - "name": "Blaze ve Yol Canavarları", - "starttime": "2024-12-19 21:00:00 UTC+03:00", - "endtime": "2024-12-19 21:25:00 UTC+03:00", - "genres": "Çocuk", - "advisory": [], - "ratingid": "0", - "picture": "https://gbzeottvsc01.tvplus.com.tr:33207/CPS/images/universal/film/program/202412/20241213/23/2126361939215eb9542c_0_XL.jpg", - "isnpvr": "1", - "introduce": "Zeg, Blaze ve AJ'le bir şeyler ezerken küçücük bir dinozor yumurtası bulur. Şimdi bu üç arkadaşın yumurtayı Kamyondaktil annesine ulaştırmak için tarih öncesi bir diyara doğru yolculuğa çıkması gerekecek.", - "programType": "episode", - "channelid": "4353", - "broadcastType": "Banttan", - "seasonInfo": "1. Sezon - 113. Bölüm" - }, - { - "id": "195415286", - "name": "Blaze ve Yol Canavarları", - "starttime": "2024-12-19 21:25:00 UTC+03:00", - "endtime": "2024-12-19 21:45:00 UTC+03:00", - "genres": "Çocuk", - "advisory": [], - "ratingid": "0", - "picture": "https://gbzeottvsc01.tvplus.com.tr:33207/CPS/images/universal/film/program/202412/20241213/2/2126361939245eb9542c_0_XL.jpg", - "isnpvr": "1", - "introduce": "Blaze ve AJ dünya dışı bir yarış için uzaya çıkar! Zafer Gezegeni'ne giden yolda dost canlısı uzaylılarla tanışır, meteorlardan kaçar ve Ezici'nin uzay gemisiyle mücadele ederler!", - "programType": "episode", - "channelid": "4353", - "broadcastType": "Banttan", - "seasonInfo": "5. Sezon - 509. Bölüm" - }, - { - "id": "195415292", - "name": "Paw Patrol", - "starttime": "2024-12-19 21:45:00 UTC+03:00", - "endtime": "2024-12-19 22:10:00 UTC+03:00", - "genres": "Çocuk", - "advisory": [], - "ratingid": "0", - "picture": "https://gbzeottvsc01.tvplus.com.tr:33207/CPS/images/universal/film/program/202412/20241213/56/2126361939275eb9542c_0_XL.jpg", - "isnpvr": "1", - "introduce": "Korsan Alex, Julia, Julius ve Chick-ARR-letta çöle yelken açar ve kaybolur! Bu kara korsanlarını kurtarmak da PAW Patrol'e düşer. Kaptan Turbot ve Francois, bir kuş izleme yarışması yüzünden havada kalınca yardım ister.", - "programType": "episode", - "channelid": "4353", - "broadcastType": "Banttan", - "seasonInfo": "6. Sezon - 611. Bölüm" - }, - { - "id": "195415298", - "name": "Paw Patrol", - "starttime": "2024-12-19 22:10:00 UTC+03:00", - "endtime": "2024-12-19 22:30:00 UTC+03:00", - "genres": "Çocuk", - "advisory": [], - "ratingid": "0", - "picture": "https://gbzeottvsc01.tvplus.com.tr:33207/CPS/images/universal/film/program/202412/20241213/64/2126361939305eb9542c_0_XL.jpg", - "isnpvr": "1", - "introduce": "Chase ve Chickaletta beden değiştirir ve Kaptan Turbot'un teknesini limana getirmek için birlikte çalışmayı öğrenmek zorunda kalırlar. Vali Humdinger En Harika Sporcu yarışmasında hile yapmak için robot pantolon üretir.", - "programType": "episode", - "channelid": "4353", - "broadcastType": "Banttan", - "seasonInfo": "6. Sezon - 613. Bölüm" - }, - { - "id": "195415304", - "name": "Köpecik Pit Ekibi", - "starttime": "2024-12-19 22:30:00 UTC+03:00", - "endtime": "2024-12-19 22:40:00 UTC+03:00", - "genres": "Çocuk", - "advisory": [], - "ratingid": "0", - "picture": "https://gbzeottvsc01.tvplus.com.tr:33207/CPS/images/universal/film/program/202412/20241213/23/2126361949335eb9542c_0_XL.jpg", - "isnpvr": "1", - "introduce": "PAW Patrol okul öncesi programı ve altı tane köpekçik baş rolü paylaşıyor: Chase, Marshall, Rocky, Zuma, Rubble ve Skye, başlarında da teknoloji meraklısı 10 yaşında bir çocuk olan Ryder var.", - "programType": "episode", - "channelid": "4353", - "broadcastType": "Banttan", - "seasonInfo": "1. Sezon - 107. Bölüm" - }, - { - "id": "195415310", - "name": "Rubble ve Ekibi", - "starttime": "2024-12-19 22:40:00 UTC+03:00", - "endtime": "2024-12-19 23:05:00 UTC+03:00", - "genres": "Çocuk", - "advisory": [], - "ratingid": "0", - "picture": "https://gbzeottvsc01.tvplus.com.tr:33207/CPS/images/universal/film/program/202412/20241213/19/2126361949365eb9542c_0_XL.jpg", - "isnpvr": "1", - "introduce": "Café Carl'ın dondurma makinesi İnşaatçı Koyu'na çok sayıda araba getirince Ekip park sorununa yardımcı olur. Rubble'ın korkusu yavru köpeğin Bark Yard kampını raydan çıkarınca, Ekip ona yardımcı olacak bir fikir bulur.", - "programType": "episode", - "channelid": "4353", - "broadcastType": "Banttan", - "seasonInfo": "1. Sezon - 125. Bölüm" - }, - { - "id": "195415316", - "name": "Rubble ve Ekibi", - "starttime": "2024-12-19 23:05:00 UTC+03:00", - "endtime": "2024-12-19 23:30:00 UTC+03:00", - "genres": "Çocuk", - "advisory": [], - "ratingid": "0", - "picture": "https://gbzeottvsc01.tvplus.com.tr:33207/CPS/images/universal/film/program/202412/20241213/12/2126361949395eb9542c_0_XL.jpg", - "isnpvr": "1", - "introduce": "Park Korucusu Rose'un en sevdiği ağaç, Rubble ve Büyükbaba bir çözüm bulamazsa yasaklanabilir. Ekip, Çiftçi Zoe'nin tavukları için bir yemlik inşa ediyor, ancak tavuklar serbest kaldıklarında onları kurtarmak yavrulara kalıyor.", - "programType": "episode", - "channelid": "4353", - "broadcastType": "Banttan", - "seasonInfo": "1. Sezon - 126. Bölüm" - }, - { - "id": "195415322", - "name": "Kaşif Dora", - "starttime": "2024-12-19 23:30:00 UTC+03:00", - "endtime": "2024-12-19 23:40:00 UTC+03:00", - "genres": "Çocuk", - "advisory": [], - "ratingid": "0", - "picture": "https://gbzeottvsc01.tvplus.com.tr:33207/CPS/images/universal/film/program/202412/20241213/33/2126361949425eb9542c_0_XL.jpg", - "isnpvr": "1", - "introduce": "DORA büyülü yağmur ormanlarında daha fazla fantastik macera için geri döndü! Dünyanın en olağanüstü küçük kaşifi ve en iyi arkadaşı Boots'a yeni eğlence ve yeni arkadaşlar keşfederken katılın; sınır gökyüzü! Haydi!", - "programType": "episode", - "channelid": "4353", - "broadcastType": "Banttan", - "seasonInfo": "2. Sezon - 213. Bölüm" - }, - { - "id": "195415328", - "name": "Kaşif Dora", - "starttime": "2024-12-19 23:40:00 UTC+03:00", - "endtime": "2024-12-20 00:10:00 UTC+03:00", - "genres": "Çocuk", - "advisory": [], - "ratingid": "0", - "picture": "https://gbzeottvsc01.tvplus.com.tr:33207/CPS/images/universal/film/program/202412/20241213/49/2126361949455eb9542c_0_XL.jpg", - "isnpvr": "1", - "introduce": "DORA büyülü yağmur ormanlarında daha fazla fantastik macera için geri döndü! Dünyanın en olağanüstü küçük kaşifi ve en iyi arkadaşı Boots'a yeni eğlence ve yeni arkadaşlar keşfederken katılın; sınır gökyüzü! Haydi!", - "programType": "episode", - "channelid": "4353", - "broadcastType": "Banttan", - "seasonInfo": "2. Sezon - 213. Bölüm" - } - ] - ] - } +{ + "counttotal": "18", + "playbilllist": [ + { + "country": "", + "starttime": "2026-04-22 02:30:00 UTC+03:00", + "type": "PROGRAM", + "isBlackout": "0", + "rerun": "0", + "ppvsubscribed": "0", + "foreignsn": "225139929", + "isLive": "0", + "ratingid": "0", + "episodeTotalCount": "0", + "id": "225139929", + "keyword": "Bu Ülke", + "contentType": "0", + "isnpvr": "1", + "slsType": "0", + "iscpvr": "0", + "advisory": [], + "extensionInfo": [ + { + "value": "Banttan", + "key": "broadcastType" + }, + { + "value": "545", + "key": "subGenre" + } + ], + "genreIds": [ + "1193" + ], + "istvod": "1", + "name": "Bu Ülke", + "tvodStatus": "1", + "pictures": [ + { + "href": "https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260414/36/0005330799095eb7f426.webp", + "resolution": [ + "null", + "null" + ], + "imageType": "10" + }, + { + "href": "https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260414/79/0005330799085eb7f426.webp", + "resolution": [ + "null", + "null" + ], + "imageType": "7" + }, + { + "href": "https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260414/79/0005330799085eb7f426_0_XS.webp", + "resolution": [ + "null", + "null" + ], + "imageType": "7" + }, + { + "href": "https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260414/79/0005330799085eb7f426_0_S.webp", + "resolution": [ + "null", + "null" + ], + "imageType": "7" + }, + { + "href": "https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260414/79/0005330799085eb7f426_0_XL.webp", + "resolution": [ + "null", + "null" + ], + "imageType": "7" + }, + { + "href": "https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260414/79/0005330799085eb7f426_0_M.webp", + "resolution": [ + "null", + "null" + ], + "imageType": "7" + }, + { + "href": "https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260414/79/0005330799085eb7f426_0_L.webp", + "resolution": [ + "null", + "null" + ], + "imageType": "7" + }, + { + "href": "https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260414/79/0005330799085eb7f426_0_0.webp", + "resolution": [ + "null", + "null" + ], + "imageType": "7" + }, + { + "href": "https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260414/14/0005330799075eb7f426.jpg", + "resolution": [ + "null", + "null" + ], + "imageType": "6" + }, + { + "href": "https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260414/14/0005330799075eb7f426_0_S.jpg", + "resolution": [ + "null", + "null" + ], + "imageType": "6" + }, + { + "href": "https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260414/14/0005330799075eb7f426_0_M.jpg", + "resolution": [ + "null", + "null" + ], + "imageType": "6" + }, + { + "href": "https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260414/14/0005330799075eb7f426_0_XS.jpg", + "resolution": [ + "null", + "null" + ], + "imageType": "6" + }, + { + "href": "https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260414/14/0005330799075eb7f426_0_L.jpg", + "resolution": [ + "null", + "null" + ], + "imageType": "6" + }, + { + "href": "https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260414/14/0005330799075eb7f426_0_XL.jpg", + "resolution": [ + "null", + "null" + ], + "imageType": "6" + }, + { + "href": "https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260414/14/0005330799075eb7f426_0_0.jpg", + "resolution": [ + "null", + "null" + ], + "imageType": "6" + }, + { + "href": "https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260414/83/0005330799065eb7f426.jpg", + "resolution": [ + "null", + "null" + ], + "imageType": "5" + }, + { + "href": "https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260414/83/0005330799065eb7f426_0_M.jpg", + "resolution": [ + "null", + "null" + ], + "imageType": "5" + }, + { + "href": "https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260414/83/0005330799065eb7f426_0_L.jpg", + "resolution": [ + "null", + "null" + ], + "imageType": "5" + }, + { + "href": "https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260414/83/0005330799065eb7f426_0_XS.jpg", + "resolution": [ + "null", + "null" + ], + "imageType": "5" + }, + { + "href": "https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260414/83/0005330799065eb7f426_0_S.jpg", + "resolution": [ + "null", + "null" + ], + "imageType": "5" + }, + { + "href": "https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260414/83/0005330799065eb7f426_0_XL.jpg", + "resolution": [ + "null", + "null" + ], + "imageType": "5" + }, + { + "href": "https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260414/83/0005330799065eb7f426_0_0.jpg", + "resolution": [ + "null", + "null" + ], + "imageType": "5" + }, + { + "href": "https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260414/0/0005330799055eb7f426.jpg", + "resolution": [ + "null", + "null" + ], + "imageType": "3" + }, + { + "href": "https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260414/0/0005330799055eb7f426_0_XL.jpg", + "resolution": [ + "null", + "null" + ], + "imageType": "3" + }, + { + "href": "https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260414/0/0005330799055eb7f426_0_S.jpg", + "resolution": [ + "null", + "null" + ], + "imageType": "3" + }, + { + "href": "https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260414/0/0005330799055eb7f426_0_M.jpg", + "resolution": [ + "null", + "null" + ], + "imageType": "3" + }, + { + "href": "https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260414/0/0005330799055eb7f426_0_L.jpg", + "resolution": [ + "null", + "null" + ], + "imageType": "3" + }, + { + "href": "https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260414/0/0005330799055eb7f426_0_XS.jpg", + "resolution": [ + "null", + "null" + ], + "imageType": "3" + }, + { + "href": "https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260414/0/0005330799055eb7f426_0_0.jpg", + "resolution": [ + "null", + "null" + ], + "imageType": "3" + }, + { + "href": "https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260414/10/0005330799045eb7f426.jpg", + "resolution": [ + "null", + "null" + ], + "imageType": "2" + }, + { + "href": "https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260414/73/0005330799035eb7f426.jpg", + "resolution": [ + "null", + "null" + ], + "imageType": "1" + }, + { + "href": "https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260414/73/0005330799035eb7f426_0_XL.jpg", + "resolution": [ + "null", + "null" + ], + "imageType": "1" + }, + { + "href": "https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260414/73/0005330799035eb7f426_0_M.jpg", + "resolution": [ + "null", + "null" + ], + "imageType": "1" + }, + { + "href": "https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260414/73/0005330799035eb7f426_0_L.jpg", + "resolution": [ + "null", + "null" + ], + "imageType": "1" + }, + { + "href": "https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260414/73/0005330799035eb7f426_0_XS.jpg", + "resolution": [ + "null", + "null" + ], + "imageType": "1" + }, + { + "href": "https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260414/73/0005330799035eb7f426_0_S.jpg", + "resolution": [ + "null", + "null" + ], + "imageType": "1" + }, + { + "href": "https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260414/73/0005330799035eb7f426_0_0.jpg", + "resolution": [ + "null", + "null" + ], + "imageType": "1" + }, + { + "href": "https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260414/56/0005330799025eb7f426.jpg", + "resolution": [ + "null", + "null" + ], + "imageType": "0" + } + ], + "externalContentCode": "1091860209", + "genres": "Haber", + "visittimes": "0", + "issubscribed": "0", + "programType": "program", + "gapFiller": "0", + "introduce": "Türkiye'nin gündemindeki merak edilen ve tartışılan sorular, siyaset, ekonomi, toplumsal meseleler ve kültür-eğitim başlıklarıyla ele alınıyor. Uzman konuklar ve sahadan aktarılan bilgilerle olayların arka planı izleyiciye aktarılıyor.", + "priceType": [ + { + "value": "0", + "key": "BTV" + }, + { + "value": "0", + "key": "TVOD" + } + ], + "endtime": "2026-04-22 04:15:00 UTC+03:00", + "seasonTotalCount": "0", + "recordedMediaIds": [ + "100067919" + ], + "picture": { + "blackwhite": "https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260414/36/0005330799095eb7f426.webp", + "still": "https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260414/10/0005330799045eb7f426.jpg", + "ad": "https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260414/83/0005330799065eb7f426.jpg,https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260414/83/0005330799065eb7f426_0_M.jpg,https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260414/83/0005330799065eb7f426_0_L.jpg,https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260414/83/0005330799065eb7f426_0_XS.jpg,https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260414/83/0005330799065eb7f426_0_S.jpg,https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260414/83/0005330799065eb7f426_0_XL.jpg,https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260414/83/0005330799065eb7f426_0_0.jpg", + "icon": "https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260414/0/0005330799055eb7f426.jpg,https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260414/0/0005330799055eb7f426_0_XL.jpg,https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260414/0/0005330799055eb7f426_0_S.jpg,https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260414/0/0005330799055eb7f426_0_M.jpg,https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260414/0/0005330799055eb7f426_0_L.jpg,https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260414/0/0005330799055eb7f426_0_XS.jpg,https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260414/0/0005330799055eb7f426_0_0.jpg", + "deflate": "https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260414/56/0005330799025eb7f426.jpg", + "background": "https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260414/79/0005330799085eb7f426.webp,https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260414/79/0005330799085eb7f426_0_XS.webp,https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260414/79/0005330799085eb7f426_0_S.webp,https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260414/79/0005330799085eb7f426_0_XL.webp,https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260414/79/0005330799085eb7f426_0_M.webp,https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260414/79/0005330799085eb7f426_0_L.webp,https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260414/79/0005330799085eb7f426_0_0.webp", + "draft": "https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260414/14/0005330799075eb7f426.jpg,https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260414/14/0005330799075eb7f426_0_S.jpg,https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260414/14/0005330799075eb7f426_0_M.jpg,https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260414/14/0005330799075eb7f426_0_XS.jpg,https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260414/14/0005330799075eb7f426_0_L.jpg,https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260414/14/0005330799075eb7f426_0_XL.jpg,https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260414/14/0005330799075eb7f426_0_0.jpg", + "poster": "https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260414/73/0005330799035eb7f426.jpg,https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260414/73/0005330799035eb7f426_0_XL.jpg,https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260414/73/0005330799035eb7f426_0_M.jpg,https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260414/73/0005330799035eb7f426_0_L.jpg,https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260414/73/0005330799035eb7f426_0_XS.jpg,https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260414/73/0005330799035eb7f426_0_S.jpg,https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260414/73/0005330799035eb7f426_0_0.jpg" + }, + "isLoyalty": "0", + "isppv": "0", + "mainGenre": "0", + "contentRight": "[{\"mediaId\":\"100067919\",\"businessType\":\"13\",\"enable\":\"0\"},{\"mediaId\":\"100067919\",\"businessType\":\"14\",\"enable\":\"0\"},{\"mediaId\":\"100067919\",\"businessType\":\"15\",\"enable\":\"1\"},{\"mediaId\":\"223943150\",\"businessType\":\"13\",\"enable\":\"0\"},{\"mediaId\":\"223943150\",\"businessType\":\"14\",\"enable\":\"0\"},{\"mediaId\":\"223943150\",\"businessType\":\"15\",\"enable\":\"1\"},{\"mediaId\":\"3000435\",\"businessType\":\"13\",\"enable\":\"0\"},{\"mediaId\":\"3000435\",\"businessType\":\"14\",\"enable\":\"0\"},{\"mediaId\":\"3000435\",\"businessType\":\"15\",\"enable\":\"1\"}]", + "channelid": "32" + }, + { + "country": "", + "starttime": "2026-04-22 04:15:00 UTC+03:00", + "type": "PROGRAM", + "isBlackout": "0", + "rerun": "0", + "ppvsubscribed": "0", + "foreignsn": "225139935", + "isLive": "0", + "ratingid": "0", + "episodeTotalCount": "0", + "id": "225139935", + "keyword": "8. Etap", + "contentType": "0", + "isnpvr": "1", + "slsType": "0", + "iscpvr": "0", + "advisory": [], + "extensionInfo": [ + { + "value": "Banttan", + "key": "broadcastType" + }, + { + "value": "572", + "key": "subGenre" + } + ], + "genreIds": [ + "1183" + ], + "istvod": "1", + "name": "8. Etap", + "tvodStatus": "1", + "pictures": [ + { + "href": "https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260414/61/0005330809175eb7f426.webp", + "resolution": [ + "null", + "null" + ], + "imageType": "10" + }, + { + "href": "https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260414/99/0005330809165eb7f426.webp", + "resolution": [ + "null", + "null" + ], + "imageType": "7" + }, + { + "href": "https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260414/99/0005330809165eb7f426_0_XS.webp", + "resolution": [ + "null", + "null" + ], + "imageType": "7" + }, + { + "href": "https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260414/99/0005330809165eb7f426_0_S.webp", + "resolution": [ + "null", + "null" + ], + "imageType": "7" + }, + { + "href": "https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260414/99/0005330809165eb7f426_0_XL.webp", + "resolution": [ + "null", + "null" + ], + "imageType": "7" + }, + { + "href": "https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260414/99/0005330809165eb7f426_0_M.webp", + "resolution": [ + "null", + "null" + ], + "imageType": "7" + }, + { + "href": "https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260414/99/0005330809165eb7f426_0_L.webp", + "resolution": [ + "null", + "null" + ], + "imageType": "7" + }, + { + "href": "https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260414/99/0005330809165eb7f426_0_0.webp", + "resolution": [ + "null", + "null" + ], + "imageType": "7" + }, + { + "href": "https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260414/55/0005330809155eb7f426.jpg", + "resolution": [ + "null", + "null" + ], + "imageType": "6" + }, + { + "href": "https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260414/55/0005330809155eb7f426_0_S.jpg", + "resolution": [ + "null", + "null" + ], + "imageType": "6" + }, + { + "href": "https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260414/55/0005330809155eb7f426_0_M.jpg", + "resolution": [ + "null", + "null" + ], + "imageType": "6" + }, + { + "href": "https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260414/55/0005330809155eb7f426_0_XS.jpg", + "resolution": [ + "null", + "null" + ], + "imageType": "6" + }, + { + "href": "https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260414/55/0005330809155eb7f426_0_L.jpg", + "resolution": [ + "null", + "null" + ], + "imageType": "6" + }, + { + "href": "https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260414/55/0005330809155eb7f426_0_XL.jpg", + "resolution": [ + "null", + "null" + ], + "imageType": "6" + }, + { + "href": "https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260414/55/0005330809155eb7f426_0_0.jpg", + "resolution": [ + "null", + "null" + ], + "imageType": "6" + }, + { + "href": "https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260414/74/0005330809145eb7f426.jpg", + "resolution": [ + "null", + "null" + ], + "imageType": "5" + }, + { + "href": "https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260414/74/0005330809145eb7f426_0_M.jpg", + "resolution": [ + "null", + "null" + ], + "imageType": "5" + }, + { + "href": "https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260414/74/0005330809145eb7f426_0_L.jpg", + "resolution": [ + "null", + "null" + ], + "imageType": "5" + }, + { + "href": "https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260414/74/0005330809145eb7f426_0_XS.jpg", + "resolution": [ + "null", + "null" + ], + "imageType": "5" + }, + { + "href": "https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260414/74/0005330809145eb7f426_0_S.jpg", + "resolution": [ + "null", + "null" + ], + "imageType": "5" + }, + { + "href": "https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260414/74/0005330809145eb7f426_0_XL.jpg", + "resolution": [ + "null", + "null" + ], + "imageType": "5" + }, + { + "href": "https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260414/74/0005330809145eb7f426_0_0.jpg", + "resolution": [ + "null", + "null" + ], + "imageType": "5" + }, + { + "href": "https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260414/85/0005330809135eb7f426.jpg", + "resolution": [ + "null", + "null" + ], + "imageType": "3" + }, + { + "href": "https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260414/85/0005330809135eb7f426_0_XL.jpg", + "resolution": [ + "null", + "null" + ], + "imageType": "3" + }, + { + "href": "https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260414/85/0005330809135eb7f426_0_S.jpg", + "resolution": [ + "null", + "null" + ], + "imageType": "3" + }, + { + "href": "https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260414/85/0005330809135eb7f426_0_M.jpg", + "resolution": [ + "null", + "null" + ], + "imageType": "3" + }, + { + "href": "https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260414/85/0005330809135eb7f426_0_L.jpg", + "resolution": [ + "null", + "null" + ], + "imageType": "3" + }, + { + "href": "https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260414/85/0005330809135eb7f426_0_XS.jpg", + "resolution": [ + "null", + "null" + ], + "imageType": "3" + }, + { + "href": "https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260414/85/0005330809135eb7f426_0_0.jpg", + "resolution": [ + "null", + "null" + ], + "imageType": "3" + }, + { + "href": "https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260414/47/0005330809125eb7f426.jpg", + "resolution": [ + "null", + "null" + ], + "imageType": "2" + }, + { + "href": "https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260414/38/0005330809115eb7f426.jpg", + "resolution": [ + "null", + "null" + ], + "imageType": "1" + }, + { + "href": "https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260414/38/0005330809115eb7f426_0_XL.jpg", + "resolution": [ + "null", + "null" + ], + "imageType": "1" + }, + { + "href": "https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260414/38/0005330809115eb7f426_0_M.jpg", + "resolution": [ + "null", + "null" + ], + "imageType": "1" + }, + { + "href": "https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260414/38/0005330809115eb7f426_0_L.jpg", + "resolution": [ + "null", + "null" + ], + "imageType": "1" + }, + { + "href": "https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260414/38/0005330809115eb7f426_0_XS.jpg", + "resolution": [ + "null", + "null" + ], + "imageType": "1" + }, + { + "href": "https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260414/38/0005330809115eb7f426_0_S.jpg", + "resolution": [ + "null", + "null" + ], + "imageType": "1" + }, + { + "href": "https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260414/38/0005330809115eb7f426_0_0.jpg", + "resolution": [ + "null", + "null" + ], + "imageType": "1" + }, + { + "href": "https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260414/62/0005330799105eb7f426.jpg", + "resolution": [ + "null", + "null" + ], + "imageType": "0" + } + ], + "externalContentCode": "1091860227", + "genres": "Magazin", + "visittimes": "0", + "issubscribed": "0", + "programType": "program", + "gapFiller": "0", + "introduce": "Ekranların en uzun soluklu otomotiv ve motor sporları programı 8.", + "priceType": [ + { + "value": "0", + "key": "BTV" + }, + { + "value": "0", + "key": "TVOD" + } + ], + "endtime": "2026-04-22 04:45:00 UTC+03:00", + "seasonTotalCount": "0", + "recordedMediaIds": [ + "100067919" + ], + "picture": { + "blackwhite": "https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260414/61/0005330809175eb7f426.webp", + "still": "https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260414/47/0005330809125eb7f426.jpg", + "ad": "https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260414/74/0005330809145eb7f426.jpg,https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260414/74/0005330809145eb7f426_0_M.jpg,https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260414/74/0005330809145eb7f426_0_L.jpg,https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260414/74/0005330809145eb7f426_0_XS.jpg,https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260414/74/0005330809145eb7f426_0_S.jpg,https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260414/74/0005330809145eb7f426_0_XL.jpg,https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260414/74/0005330809145eb7f426_0_0.jpg", + "icon": "https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260414/85/0005330809135eb7f426.jpg,https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260414/85/0005330809135eb7f426_0_XL.jpg,https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260414/85/0005330809135eb7f426_0_S.jpg,https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260414/85/0005330809135eb7f426_0_M.jpg,https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260414/85/0005330809135eb7f426_0_L.jpg,https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260414/85/0005330809135eb7f426_0_XS.jpg,https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260414/85/0005330809135eb7f426_0_0.jpg", + "deflate": "https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260414/62/0005330799105eb7f426.jpg", + "background": "https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260414/99/0005330809165eb7f426.webp,https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260414/99/0005330809165eb7f426_0_XS.webp,https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260414/99/0005330809165eb7f426_0_S.webp,https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260414/99/0005330809165eb7f426_0_XL.webp,https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260414/99/0005330809165eb7f426_0_M.webp,https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260414/99/0005330809165eb7f426_0_L.webp,https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260414/99/0005330809165eb7f426_0_0.webp", + "draft": "https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260414/55/0005330809155eb7f426.jpg,https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260414/55/0005330809155eb7f426_0_S.jpg,https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260414/55/0005330809155eb7f426_0_M.jpg,https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260414/55/0005330809155eb7f426_0_XS.jpg,https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260414/55/0005330809155eb7f426_0_L.jpg,https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260414/55/0005330809155eb7f426_0_XL.jpg,https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260414/55/0005330809155eb7f426_0_0.jpg", + "poster": "https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260414/38/0005330809115eb7f426.jpg,https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260414/38/0005330809115eb7f426_0_XL.jpg,https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260414/38/0005330809115eb7f426_0_M.jpg,https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260414/38/0005330809115eb7f426_0_L.jpg,https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260414/38/0005330809115eb7f426_0_XS.jpg,https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260414/38/0005330809115eb7f426_0_S.jpg,https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260414/38/0005330809115eb7f426_0_0.jpg" + }, + "isLoyalty": "0", + "isppv": "0", + "mainGenre": "0", + "contentRight": "[{\"mediaId\":\"100067919\",\"businessType\":\"13\",\"enable\":\"0\"},{\"mediaId\":\"100067919\",\"businessType\":\"14\",\"enable\":\"0\"},{\"mediaId\":\"100067919\",\"businessType\":\"15\",\"enable\":\"1\"},{\"mediaId\":\"223943150\",\"businessType\":\"13\",\"enable\":\"0\"},{\"mediaId\":\"223943150\",\"businessType\":\"14\",\"enable\":\"0\"},{\"mediaId\":\"223943150\",\"businessType\":\"15\",\"enable\":\"1\"},{\"mediaId\":\"3000435\",\"businessType\":\"13\",\"enable\":\"0\"},{\"mediaId\":\"3000435\",\"businessType\":\"14\",\"enable\":\"0\"},{\"mediaId\":\"3000435\",\"businessType\":\"15\",\"enable\":\"1\"}]", + "channelid": "32" + }, + { + "country": "", + "starttime": "2026-04-22 04:45:00 UTC+03:00", + "type": "PROGRAM", + "isBlackout": "0", + "rerun": "0", + "ppvsubscribed": "0", + "foreignsn": "225390348", + "isLive": "0", + "ratingid": "0", + "episodeTotalCount": "0", + "id": "225390348", + "keyword": "Basın Ekspres", + "contentType": "0", + "isnpvr": "1", + "slsType": "0", + "iscpvr": "0", + "advisory": [], + "extensionInfo": [ + { + "value": "Banttan", + "key": "broadcastType" + }, + { + "value": "552", + "key": "subGenre" + } + ], + "genreIds": [ + "1183" + ], + "istvod": "1", + "name": "Basın Ekspres", + "tvodStatus": "1", + "pictures": [ + { + "href": "https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260418/98/0905279514845eb9b42e.webp", + "resolution": [ + "null", + "null" + ], + "imageType": "10" + }, + { + "href": "https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260418/84/0905279504835eb9b42e.webp", + "resolution": [ + "null", + "null" + ], + "imageType": "7" + }, + { + "href": "https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260418/84/0905279504835eb9b42e_0_XS.webp", + "resolution": [ + "null", + "null" + ], + "imageType": "7" + }, + { + "href": "https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260418/84/0905279504835eb9b42e_0_S.webp", + "resolution": [ + "null", + "null" + ], + "imageType": "7" + }, + { + "href": "https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260418/84/0905279504835eb9b42e_0_XL.webp", + "resolution": [ + "null", + "null" + ], + "imageType": "7" + }, + { + "href": "https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260418/84/0905279504835eb9b42e_0_M.webp", + "resolution": [ + "null", + "null" + ], + "imageType": "7" + }, + { + "href": "https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260418/84/0905279504835eb9b42e_0_L.webp", + "resolution": [ + "null", + "null" + ], + "imageType": "7" + }, + { + "href": "https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260418/84/0905279504835eb9b42e_0_0.webp", + "resolution": [ + "null", + "null" + ], + "imageType": "7" + }, + { + "href": "https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260418/49/0905279504825eb9b42e.jpg", + "resolution": [ + "null", + "null" + ], + "imageType": "6" + }, + { + "href": "https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260418/49/0905279504825eb9b42e_0_S.jpg", + "resolution": [ + "null", + "null" + ], + "imageType": "6" + }, + { + "href": "https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260418/49/0905279504825eb9b42e_0_M.jpg", + "resolution": [ + "null", + "null" + ], + "imageType": "6" + }, + { + "href": "https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260418/49/0905279504825eb9b42e_0_XS.jpg", + "resolution": [ + "null", + "null" + ], + "imageType": "6" + }, + { + "href": "https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260418/49/0905279504825eb9b42e_0_L.jpg", + "resolution": [ + "null", + "null" + ], + "imageType": "6" + }, + { + "href": "https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260418/49/0905279504825eb9b42e_0_XL.jpg", + "resolution": [ + "null", + "null" + ], + "imageType": "6" + }, + { + "href": "https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260418/49/0905279504825eb9b42e_0_0.jpg", + "resolution": [ + "null", + "null" + ], + "imageType": "6" + }, + { + "href": "https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260418/26/0905279504815eb9b42e.jpg", + "resolution": [ + "null", + "null" + ], + "imageType": "5" + }, + { + "href": "https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260418/26/0905279504815eb9b42e_0_M.jpg", + "resolution": [ + "null", + "null" + ], + "imageType": "5" + }, + { + "href": "https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260418/26/0905279504815eb9b42e_0_L.jpg", + "resolution": [ + "null", + "null" + ], + "imageType": "5" + }, + { + "href": "https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260418/26/0905279504815eb9b42e_0_XS.jpg", + "resolution": [ + "null", + "null" + ], + "imageType": "5" + }, + { + "href": "https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260418/26/0905279504815eb9b42e_0_S.jpg", + "resolution": [ + "null", + "null" + ], + "imageType": "5" + }, + { + "href": "https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260418/26/0905279504815eb9b42e_0_XL.jpg", + "resolution": [ + "null", + "null" + ], + "imageType": "5" + }, + { + "href": "https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260418/26/0905279504815eb9b42e_0_0.jpg", + "resolution": [ + "null", + "null" + ], + "imageType": "5" + }, + { + "href": "https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260418/25/0905279504805eb9b42e.jpg", + "resolution": [ + "null", + "null" + ], + "imageType": "3" + }, + { + "href": "https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260418/25/0905279504805eb9b42e_0_XL.jpg", + "resolution": [ + "null", + "null" + ], + "imageType": "3" + }, + { + "href": "https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260418/25/0905279504805eb9b42e_0_S.jpg", + "resolution": [ + "null", + "null" + ], + "imageType": "3" + }, + { + "href": "https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260418/25/0905279504805eb9b42e_0_M.jpg", + "resolution": [ + "null", + "null" + ], + "imageType": "3" + }, + { + "href": "https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260418/25/0905279504805eb9b42e_0_L.jpg", + "resolution": [ + "null", + "null" + ], + "imageType": "3" + }, + { + "href": "https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260418/25/0905279504805eb9b42e_0_XS.jpg", + "resolution": [ + "null", + "null" + ], + "imageType": "3" + }, + { + "href": "https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260418/25/0905279504805eb9b42e_0_0.jpg", + "resolution": [ + "null", + "null" + ], + "imageType": "3" + }, + { + "href": "https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260418/98/0905279504795eb9b42e.jpg", + "resolution": [ + "null", + "null" + ], + "imageType": "2" + }, + { + "href": "https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260418/63/0905279504785eb9b42e.jpg", + "resolution": [ + "null", + "null" + ], + "imageType": "1" + }, + { + "href": "https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260418/63/0905279504785eb9b42e_0_XL.jpg", + "resolution": [ + "null", + "null" + ], + "imageType": "1" + }, + { + "href": "https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260418/63/0905279504785eb9b42e_0_M.jpg", + "resolution": [ + "null", + "null" + ], + "imageType": "1" + }, + { + "href": "https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260418/63/0905279504785eb9b42e_0_L.jpg", + "resolution": [ + "null", + "null" + ], + "imageType": "1" + }, + { + "href": "https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260418/63/0905279504785eb9b42e_0_XS.jpg", + "resolution": [ + "null", + "null" + ], + "imageType": "1" + }, + { + "href": "https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260418/63/0905279504785eb9b42e_0_S.jpg", + "resolution": [ + "null", + "null" + ], + "imageType": "1" + }, + { + "href": "https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260418/63/0905279504785eb9b42e_0_0.jpg", + "resolution": [ + "null", + "null" + ], + "imageType": "1" + }, + { + "href": "https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260418/25/0905279504775eb9b42e.jpg", + "resolution": [ + "null", + "null" + ], + "imageType": "0" + } + ], + "externalContentCode": "1096753102", + "genres": "Magazin", + "visittimes": "0", + "issubscribed": "0", + "programType": "program", + "gapFiller": "0", + "introduce": "Basın Ekspres, gündemdeki magazin haberlerini, sosyal gelişmeleri ve kültürel olayları derli toplu şekilde izleyiciye sunan bir bilgi programıdır. Haberler ve özel dosyalar izleyiciye anlaşılır ve ilgi çekici bir dille aktarılır.", + "priceType": [ + { + "value": "0", + "key": "BTV" + }, + { + "value": "0", + "key": "TVOD" + } + ], + "endtime": "2026-04-22 06:00:00 UTC+03:00", + "seasonTotalCount": "0", + "recordedMediaIds": [ + "100067919" + ], + "picture": { + "blackwhite": "https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260418/98/0905279514845eb9b42e.webp", + "still": "https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260418/98/0905279504795eb9b42e.jpg", + "ad": "https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260418/26/0905279504815eb9b42e.jpg,https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260418/26/0905279504815eb9b42e_0_M.jpg,https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260418/26/0905279504815eb9b42e_0_L.jpg,https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260418/26/0905279504815eb9b42e_0_XS.jpg,https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260418/26/0905279504815eb9b42e_0_S.jpg,https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260418/26/0905279504815eb9b42e_0_XL.jpg,https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260418/26/0905279504815eb9b42e_0_0.jpg", + "icon": "https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260418/25/0905279504805eb9b42e.jpg,https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260418/25/0905279504805eb9b42e_0_XL.jpg,https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260418/25/0905279504805eb9b42e_0_S.jpg,https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260418/25/0905279504805eb9b42e_0_M.jpg,https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260418/25/0905279504805eb9b42e_0_L.jpg,https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260418/25/0905279504805eb9b42e_0_XS.jpg,https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260418/25/0905279504805eb9b42e_0_0.jpg", + "deflate": "https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260418/25/0905279504775eb9b42e.jpg", + "background": "https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260418/84/0905279504835eb9b42e.webp,https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260418/84/0905279504835eb9b42e_0_XS.webp,https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260418/84/0905279504835eb9b42e_0_S.webp,https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260418/84/0905279504835eb9b42e_0_XL.webp,https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260418/84/0905279504835eb9b42e_0_M.webp,https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260418/84/0905279504835eb9b42e_0_L.webp,https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260418/84/0905279504835eb9b42e_0_0.webp", + "draft": "https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260418/49/0905279504825eb9b42e.jpg,https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260418/49/0905279504825eb9b42e_0_S.jpg,https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260418/49/0905279504825eb9b42e_0_M.jpg,https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260418/49/0905279504825eb9b42e_0_XS.jpg,https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260418/49/0905279504825eb9b42e_0_L.jpg,https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260418/49/0905279504825eb9b42e_0_XL.jpg,https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260418/49/0905279504825eb9b42e_0_0.jpg", + "poster": "https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260418/63/0905279504785eb9b42e.jpg,https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260418/63/0905279504785eb9b42e_0_XL.jpg,https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260418/63/0905279504785eb9b42e_0_M.jpg,https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260418/63/0905279504785eb9b42e_0_L.jpg,https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260418/63/0905279504785eb9b42e_0_XS.jpg,https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260418/63/0905279504785eb9b42e_0_S.jpg,https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260418/63/0905279504785eb9b42e_0_0.jpg" + }, + "isLoyalty": "0", + "isppv": "0", + "mainGenre": "0", + "contentRight": "[{\"mediaId\":\"100067919\",\"businessType\":\"13\",\"enable\":\"0\"},{\"mediaId\":\"100067919\",\"businessType\":\"14\",\"enable\":\"0\"},{\"mediaId\":\"100067919\",\"businessType\":\"15\",\"enable\":\"1\"},{\"mediaId\":\"223943150\",\"businessType\":\"13\",\"enable\":\"0\"},{\"mediaId\":\"223943150\",\"businessType\":\"14\",\"enable\":\"0\"},{\"mediaId\":\"223943150\",\"businessType\":\"15\",\"enable\":\"1\"},{\"mediaId\":\"3000435\",\"businessType\":\"13\",\"enable\":\"0\"},{\"mediaId\":\"3000435\",\"businessType\":\"14\",\"enable\":\"0\"},{\"mediaId\":\"3000435\",\"businessType\":\"15\",\"enable\":\"1\"}]", + "channelid": "32" + }, + { + "country": "", + "starttime": "2026-04-22 06:00:00 UTC+03:00", + "type": "PROGRAM", + "isBlackout": "0", + "rerun": "0", + "ppvsubscribed": "0", + "foreignsn": "225390354", + "isLive": "0", + "ratingid": "0", + "episodeTotalCount": "0", + "id": "225390354", + "keyword": "Basın Ekspres", + "contentType": "0", + "isnpvr": "1", + "slsType": "0", + "iscpvr": "0", + "advisory": [], + "extensionInfo": [ + { + "value": "Banttan", + "key": "broadcastType" + }, + { + "value": "552", + "key": "subGenre" + } + ], + "genreIds": [ + "1183" + ], + "istvod": "1", + "name": "Basın Ekspres", + "tvodStatus": "1", + "pictures": [ + { + "href": "https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260418/31/0905279514925eb9b42e.webp", + "resolution": [ + "null", + "null" + ], + "imageType": "10" + }, + { + "href": "https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260418/90/0905279514915eb9b42e.webp", + "resolution": [ + "null", + "null" + ], + "imageType": "7" + }, + { + "href": "https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260418/90/0905279514915eb9b42e_0_XS.webp", + "resolution": [ + "null", + "null" + ], + "imageType": "7" + }, + { + "href": "https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260418/90/0905279514915eb9b42e_0_S.webp", + "resolution": [ + "null", + "null" + ], + "imageType": "7" + }, + { + "href": "https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260418/90/0905279514915eb9b42e_0_XL.webp", + "resolution": [ + "null", + "null" + ], + "imageType": "7" + }, + { + "href": "https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260418/90/0905279514915eb9b42e_0_M.webp", + "resolution": [ + "null", + "null" + ], + "imageType": "7" + }, + { + "href": "https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260418/90/0905279514915eb9b42e_0_L.webp", + "resolution": [ + "null", + "null" + ], + "imageType": "7" + }, + { + "href": "https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260418/90/0905279514915eb9b42e_0_0.webp", + "resolution": [ + "null", + "null" + ], + "imageType": "7" + }, + { + "href": "https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260418/80/0905279514905eb9b42e.jpg", + "resolution": [ + "null", + "null" + ], + "imageType": "6" + }, + { + "href": "https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260418/80/0905279514905eb9b42e_0_S.jpg", + "resolution": [ + "null", + "null" + ], + "imageType": "6" + }, + { + "href": "https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260418/80/0905279514905eb9b42e_0_M.jpg", + "resolution": [ + "null", + "null" + ], + "imageType": "6" + }, + { + "href": "https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260418/80/0905279514905eb9b42e_0_XS.jpg", + "resolution": [ + "null", + "null" + ], + "imageType": "6" + }, + { + "href": "https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260418/80/0905279514905eb9b42e_0_L.jpg", + "resolution": [ + "null", + "null" + ], + "imageType": "6" + }, + { + "href": "https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260418/80/0905279514905eb9b42e_0_XL.jpg", + "resolution": [ + "null", + "null" + ], + "imageType": "6" + }, + { + "href": "https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260418/80/0905279514905eb9b42e_0_0.jpg", + "resolution": [ + "null", + "null" + ], + "imageType": "6" + }, + { + "href": "https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260418/67/0905279514895eb9b42e.jpg", + "resolution": [ + "null", + "null" + ], + "imageType": "5" + }, + { + "href": "https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260418/67/0905279514895eb9b42e_0_M.jpg", + "resolution": [ + "null", + "null" + ], + "imageType": "5" + }, + { + "href": "https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260418/67/0905279514895eb9b42e_0_L.jpg", + "resolution": [ + "null", + "null" + ], + "imageType": "5" + }, + { + "href": "https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260418/67/0905279514895eb9b42e_0_XS.jpg", + "resolution": [ + "null", + "null" + ], + "imageType": "5" + }, + { + "href": "https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260418/67/0905279514895eb9b42e_0_S.jpg", + "resolution": [ + "null", + "null" + ], + "imageType": "5" + }, + { + "href": "https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260418/67/0905279514895eb9b42e_0_XL.jpg", + "resolution": [ + "null", + "null" + ], + "imageType": "5" + }, + { + "href": "https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260418/67/0905279514895eb9b42e_0_0.jpg", + "resolution": [ + "null", + "null" + ], + "imageType": "5" + }, + { + "href": "https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260418/73/0905279514885eb9b42e.jpg", + "resolution": [ + "null", + "null" + ], + "imageType": "3" + }, + { + "href": "https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260418/73/0905279514885eb9b42e_0_XL.jpg", + "resolution": [ + "null", + "null" + ], + "imageType": "3" + }, + { + "href": "https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260418/73/0905279514885eb9b42e_0_S.jpg", + "resolution": [ + "null", + "null" + ], + "imageType": "3" + }, + { + "href": "https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260418/73/0905279514885eb9b42e_0_M.jpg", + "resolution": [ + "null", + "null" + ], + "imageType": "3" + }, + { + "href": "https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260418/73/0905279514885eb9b42e_0_L.jpg", + "resolution": [ + "null", + "null" + ], + "imageType": "3" + }, + { + "href": "https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260418/73/0905279514885eb9b42e_0_XS.jpg", + "resolution": [ + "null", + "null" + ], + "imageType": "3" + }, + { + "href": "https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260418/73/0905279514885eb9b42e_0_0.jpg", + "resolution": [ + "null", + "null" + ], + "imageType": "3" + }, + { + "href": "https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260418/95/0905279514875eb9b42e.jpg", + "resolution": [ + "null", + "null" + ], + "imageType": "2" + }, + { + "href": "https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260418/21/0905279514865eb9b42e.jpg", + "resolution": [ + "null", + "null" + ], + "imageType": "1" + }, + { + "href": "https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260418/21/0905279514865eb9b42e_0_XL.jpg", + "resolution": [ + "null", + "null" + ], + "imageType": "1" + }, + { + "href": "https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260418/21/0905279514865eb9b42e_0_M.jpg", + "resolution": [ + "null", + "null" + ], + "imageType": "1" + }, + { + "href": "https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260418/21/0905279514865eb9b42e_0_L.jpg", + "resolution": [ + "null", + "null" + ], + "imageType": "1" + }, + { + "href": "https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260418/21/0905279514865eb9b42e_0_XS.jpg", + "resolution": [ + "null", + "null" + ], + "imageType": "1" + }, + { + "href": "https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260418/21/0905279514865eb9b42e_0_S.jpg", + "resolution": [ + "null", + "null" + ], + "imageType": "1" + }, + { + "href": "https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260418/21/0905279514865eb9b42e_0_0.jpg", + "resolution": [ + "null", + "null" + ], + "imageType": "1" + }, + { + "href": "https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260418/7/0905279514855eb9b42e.jpg", + "resolution": [ + "null", + "null" + ], + "imageType": "0" + } + ], + "externalContentCode": "1096753103", + "genres": "Magazin", + "visittimes": "0", + "issubscribed": "0", + "programType": "program", + "gapFiller": "0", + "introduce": "Basın Ekspres, gündemdeki magazin haberlerini, sosyal gelişmeleri ve kültürel olayları derli toplu şekilde izleyiciye sunan bir bilgi programıdır. Haberler ve özel dosyalar izleyiciye anlaşılır ve ilgi çekici bir dille aktarılır.", + "priceType": [ + { + "value": "0", + "key": "BTV" + }, + { + "value": "0", + "key": "TVOD" + } + ], + "endtime": "2026-04-22 07:00:00 UTC+03:00", + "seasonTotalCount": "0", + "recordedMediaIds": [ + "100067919" + ], + "picture": { + "blackwhite": "https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260418/31/0905279514925eb9b42e.webp", + "still": "https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260418/95/0905279514875eb9b42e.jpg", + "ad": "https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260418/67/0905279514895eb9b42e.jpg,https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260418/67/0905279514895eb9b42e_0_M.jpg,https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260418/67/0905279514895eb9b42e_0_L.jpg,https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260418/67/0905279514895eb9b42e_0_XS.jpg,https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260418/67/0905279514895eb9b42e_0_S.jpg,https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260418/67/0905279514895eb9b42e_0_XL.jpg,https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260418/67/0905279514895eb9b42e_0_0.jpg", + "icon": "https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260418/73/0905279514885eb9b42e.jpg,https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260418/73/0905279514885eb9b42e_0_XL.jpg,https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260418/73/0905279514885eb9b42e_0_S.jpg,https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260418/73/0905279514885eb9b42e_0_M.jpg,https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260418/73/0905279514885eb9b42e_0_L.jpg,https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260418/73/0905279514885eb9b42e_0_XS.jpg,https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260418/73/0905279514885eb9b42e_0_0.jpg", + "deflate": "https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260418/7/0905279514855eb9b42e.jpg", + "background": "https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260418/90/0905279514915eb9b42e.webp,https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260418/90/0905279514915eb9b42e_0_XS.webp,https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260418/90/0905279514915eb9b42e_0_S.webp,https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260418/90/0905279514915eb9b42e_0_XL.webp,https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260418/90/0905279514915eb9b42e_0_M.webp,https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260418/90/0905279514915eb9b42e_0_L.webp,https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260418/90/0905279514915eb9b42e_0_0.webp", + "draft": "https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260418/80/0905279514905eb9b42e.jpg,https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260418/80/0905279514905eb9b42e_0_S.jpg,https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260418/80/0905279514905eb9b42e_0_M.jpg,https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260418/80/0905279514905eb9b42e_0_XS.jpg,https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260418/80/0905279514905eb9b42e_0_L.jpg,https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260418/80/0905279514905eb9b42e_0_XL.jpg,https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260418/80/0905279514905eb9b42e_0_0.jpg", + "poster": "https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260418/21/0905279514865eb9b42e.jpg,https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260418/21/0905279514865eb9b42e_0_XL.jpg,https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260418/21/0905279514865eb9b42e_0_M.jpg,https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260418/21/0905279514865eb9b42e_0_L.jpg,https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260418/21/0905279514865eb9b42e_0_XS.jpg,https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260418/21/0905279514865eb9b42e_0_S.jpg,https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260418/21/0905279514865eb9b42e_0_0.jpg" + }, + "isLoyalty": "0", + "isppv": "0", + "mainGenre": "0", + "contentRight": "[{\"mediaId\":\"100067919\",\"businessType\":\"13\",\"enable\":\"0\"},{\"mediaId\":\"100067919\",\"businessType\":\"14\",\"enable\":\"0\"},{\"mediaId\":\"100067919\",\"businessType\":\"15\",\"enable\":\"1\"},{\"mediaId\":\"223943150\",\"businessType\":\"13\",\"enable\":\"0\"},{\"mediaId\":\"223943150\",\"businessType\":\"14\",\"enable\":\"0\"},{\"mediaId\":\"223943150\",\"businessType\":\"15\",\"enable\":\"1\"},{\"mediaId\":\"3000435\",\"businessType\":\"13\",\"enable\":\"0\"},{\"mediaId\":\"3000435\",\"businessType\":\"14\",\"enable\":\"0\"},{\"mediaId\":\"3000435\",\"businessType\":\"15\",\"enable\":\"1\"}]", + "channelid": "32" + }, + { + "country": "", + "starttime": "2026-04-22 07:00:00 UTC+03:00", + "type": "PROGRAM", + "isBlackout": "0", + "rerun": "0", + "ppvsubscribed": "0", + "foreignsn": "225199483", + "isLive": "0", + "ratingid": "0", + "episodeTotalCount": "0", + "id": "225199483", + "keyword": "Moderatör Sabah", + "contentType": "0", + "isnpvr": "1", + "slsType": "0", + "iscpvr": "0", + "advisory": [], + "extensionInfo": [ + { + "value": "Banttan", + "key": "broadcastType" + }, + { + "value": "545", + "key": "subGenre" + } + ], + "genreIds": [ + "1193" + ], + "istvod": "1", + "name": "Moderatör Sabah", + "tvodStatus": "1", + "pictures": [ + { + "href": "https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260414/22/2305322890165eb7f426.webp", + "resolution": [ + "null", + "null" + ], + "imageType": "10" + }, + { + "href": "https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260414/71/2305322890155eb7f426.webp", + "resolution": [ + "null", + "null" + ], + "imageType": "7" + }, + { + "href": "https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260414/71/2305322890155eb7f426_0_XS.webp", + "resolution": [ + "null", + "null" + ], + "imageType": "7" + }, + { + "href": "https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260414/71/2305322890155eb7f426_0_S.webp", + "resolution": [ + "null", + "null" + ], + "imageType": "7" + }, + { + "href": "https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260414/71/2305322890155eb7f426_0_XL.webp", + "resolution": [ + "null", + "null" + ], + "imageType": "7" + }, + { + "href": "https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260414/71/2305322890155eb7f426_0_M.webp", + "resolution": [ + "null", + "null" + ], + "imageType": "7" + }, + { + "href": "https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260414/71/2305322890155eb7f426_0_L.webp", + "resolution": [ + "null", + "null" + ], + "imageType": "7" + }, + { + "href": "https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260414/71/2305322890155eb7f426_0_0.webp", + "resolution": [ + "null", + "null" + ], + "imageType": "7" + }, + { + "href": "https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260414/13/2305322890145eb7f426.jpg", + "resolution": [ + "null", + "null" + ], + "imageType": "6" + }, + { + "href": "https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260414/13/2305322890145eb7f426_0_S.jpg", + "resolution": [ + "null", + "null" + ], + "imageType": "6" + }, + { + "href": "https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260414/13/2305322890145eb7f426_0_M.jpg", + "resolution": [ + "null", + "null" + ], + "imageType": "6" + }, + { + "href": "https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260414/13/2305322890145eb7f426_0_XS.jpg", + "resolution": [ + "null", + "null" + ], + "imageType": "6" + }, + { + "href": "https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260414/13/2305322890145eb7f426_0_L.jpg", + "resolution": [ + "null", + "null" + ], + "imageType": "6" + }, + { + "href": "https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260414/13/2305322890145eb7f426_0_XL.jpg", + "resolution": [ + "null", + "null" + ], + "imageType": "6" + }, + { + "href": "https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260414/13/2305322890145eb7f426_0_0.jpg", + "resolution": [ + "null", + "null" + ], + "imageType": "6" + }, + { + "href": "https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260414/57/2305322890135eb7f426.jpg", + "resolution": [ + "null", + "null" + ], + "imageType": "5" + }, + { + "href": "https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260414/57/2305322890135eb7f426_0_M.jpg", + "resolution": [ + "null", + "null" + ], + "imageType": "5" + }, + { + "href": "https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260414/57/2305322890135eb7f426_0_L.jpg", + "resolution": [ + "null", + "null" + ], + "imageType": "5" + }, + { + "href": "https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260414/57/2305322890135eb7f426_0_XS.jpg", + "resolution": [ + "null", + "null" + ], + "imageType": "5" + }, + { + "href": "https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260414/57/2305322890135eb7f426_0_S.jpg", + "resolution": [ + "null", + "null" + ], + "imageType": "5" + }, + { + "href": "https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260414/57/2305322890135eb7f426_0_XL.jpg", + "resolution": [ + "null", + "null" + ], + "imageType": "5" + }, + { + "href": "https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260414/57/2305322890135eb7f426_0_0.jpg", + "resolution": [ + "null", + "null" + ], + "imageType": "5" + }, + { + "href": "https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260414/21/2305322890125eb7f426.jpg", + "resolution": [ + "null", + "null" + ], + "imageType": "3" + }, + { + "href": "https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260414/21/2305322890125eb7f426_0_XL.jpg", + "resolution": [ + "null", + "null" + ], + "imageType": "3" + }, + { + "href": "https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260414/21/2305322890125eb7f426_0_S.jpg", + "resolution": [ + "null", + "null" + ], + "imageType": "3" + }, + { + "href": "https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260414/21/2305322890125eb7f426_0_M.jpg", + "resolution": [ + "null", + "null" + ], + "imageType": "3" + }, + { + "href": "https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260414/21/2305322890125eb7f426_0_L.jpg", + "resolution": [ + "null", + "null" + ], + "imageType": "3" + }, + { + "href": "https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260414/21/2305322890125eb7f426_0_XS.jpg", + "resolution": [ + "null", + "null" + ], + "imageType": "3" + }, + { + "href": "https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260414/21/2305322890125eb7f426_0_0.jpg", + "resolution": [ + "null", + "null" + ], + "imageType": "3" + }, + { + "href": "https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260414/25/2305322890115eb7f426.jpg", + "resolution": [ + "null", + "null" + ], + "imageType": "2" + }, + { + "href": "https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260414/90/2305322890105eb7f426.jpg", + "resolution": [ + "null", + "null" + ], + "imageType": "1" + }, + { + "href": "https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260414/90/2305322890105eb7f426_0_XL.jpg", + "resolution": [ + "null", + "null" + ], + "imageType": "1" + }, + { + "href": "https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260414/90/2305322890105eb7f426_0_M.jpg", + "resolution": [ + "null", + "null" + ], + "imageType": "1" + }, + { + "href": "https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260414/90/2305322890105eb7f426_0_L.jpg", + "resolution": [ + "null", + "null" + ], + "imageType": "1" + }, + { + "href": "https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260414/90/2305322890105eb7f426_0_XS.jpg", + "resolution": [ + "null", + "null" + ], + "imageType": "1" + }, + { + "href": "https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260414/90/2305322890105eb7f426_0_S.jpg", + "resolution": [ + "null", + "null" + ], + "imageType": "1" + }, + { + "href": "https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260414/90/2305322890105eb7f426_0_0.jpg", + "resolution": [ + "null", + "null" + ], + "imageType": "1" + }, + { + "href": "https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260414/62/2305322890095eb7f426.jpg", + "resolution": [ + "null", + "null" + ], + "imageType": "0" + } + ], + "externalContentCode": "1091860201", + "genres": "Haber", + "visittimes": "0", + "issubscribed": "0", + "programType": "program", + "gapFiller": "0", + "introduce": "Hızlı, tarafsız ve doğru haber anlayışıyla Türkiye ve dünyadan öne çıkan gelişmeler, sıcak haberler ve özel dosyalar hafta içi her gün Moderatör'de.", + "priceType": [ + { + "value": "0", + "key": "BTV" + }, + { + "value": "0", + "key": "TVOD" + } + ], + "endtime": "2026-04-22 09:00:00 UTC+03:00", + "seasonTotalCount": "0", + "recordedMediaIds": [ + "100067919" + ], + "picture": { + "blackwhite": "https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260414/22/2305322890165eb7f426.webp", + "still": "https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260414/25/2305322890115eb7f426.jpg", + "ad": "https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260414/57/2305322890135eb7f426.jpg,https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260414/57/2305322890135eb7f426_0_M.jpg,https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260414/57/2305322890135eb7f426_0_L.jpg,https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260414/57/2305322890135eb7f426_0_XS.jpg,https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260414/57/2305322890135eb7f426_0_S.jpg,https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260414/57/2305322890135eb7f426_0_XL.jpg,https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260414/57/2305322890135eb7f426_0_0.jpg", + "icon": "https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260414/21/2305322890125eb7f426.jpg,https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260414/21/2305322890125eb7f426_0_XL.jpg,https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260414/21/2305322890125eb7f426_0_S.jpg,https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260414/21/2305322890125eb7f426_0_M.jpg,https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260414/21/2305322890125eb7f426_0_L.jpg,https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260414/21/2305322890125eb7f426_0_XS.jpg,https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260414/21/2305322890125eb7f426_0_0.jpg", + "deflate": "https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260414/62/2305322890095eb7f426.jpg", + "background": "https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260414/71/2305322890155eb7f426.webp,https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260414/71/2305322890155eb7f426_0_XS.webp,https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260414/71/2305322890155eb7f426_0_S.webp,https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260414/71/2305322890155eb7f426_0_XL.webp,https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260414/71/2305322890155eb7f426_0_M.webp,https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260414/71/2305322890155eb7f426_0_L.webp,https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260414/71/2305322890155eb7f426_0_0.webp", + "draft": "https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260414/13/2305322890145eb7f426.jpg,https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260414/13/2305322890145eb7f426_0_S.jpg,https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260414/13/2305322890145eb7f426_0_M.jpg,https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260414/13/2305322890145eb7f426_0_XS.jpg,https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260414/13/2305322890145eb7f426_0_L.jpg,https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260414/13/2305322890145eb7f426_0_XL.jpg,https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260414/13/2305322890145eb7f426_0_0.jpg", + "poster": "https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260414/90/2305322890105eb7f426.jpg,https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260414/90/2305322890105eb7f426_0_XL.jpg,https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260414/90/2305322890105eb7f426_0_M.jpg,https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260414/90/2305322890105eb7f426_0_L.jpg,https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260414/90/2305322890105eb7f426_0_XS.jpg,https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260414/90/2305322890105eb7f426_0_S.jpg,https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260414/90/2305322890105eb7f426_0_0.jpg" + }, + "isLoyalty": "0", + "isppv": "0", + "mainGenre": "0", + "contentRight": "[{\"mediaId\":\"100067919\",\"businessType\":\"13\",\"enable\":\"0\"},{\"mediaId\":\"100067919\",\"businessType\":\"14\",\"enable\":\"0\"},{\"mediaId\":\"100067919\",\"businessType\":\"15\",\"enable\":\"1\"},{\"mediaId\":\"223943150\",\"businessType\":\"13\",\"enable\":\"0\"},{\"mediaId\":\"223943150\",\"businessType\":\"14\",\"enable\":\"0\"},{\"mediaId\":\"223943150\",\"businessType\":\"15\",\"enable\":\"1\"},{\"mediaId\":\"3000435\",\"businessType\":\"13\",\"enable\":\"0\"},{\"mediaId\":\"3000435\",\"businessType\":\"14\",\"enable\":\"0\"},{\"mediaId\":\"3000435\",\"businessType\":\"15\",\"enable\":\"1\"}]", + "channelid": "32" + }, + { + "country": "", + "starttime": "2026-04-22 09:00:00 UTC+03:00", + "type": "PROGRAM", + "isBlackout": "0", + "rerun": "0", + "ppvsubscribed": "0", + "foreignsn": "225199489", + "isLive": "0", + "ratingid": "0", + "episodeTotalCount": "0", + "id": "225199489", + "keyword": "Analiz Sentez", + "contentType": "0", + "isnpvr": "1", + "slsType": "0", + "iscpvr": "0", + "advisory": [], + "extensionInfo": [ + { + "value": "Banttan", + "key": "broadcastType" + }, + { + "value": "545", + "key": "subGenre" + } + ], + "genreIds": [ + "1193" + ], + "istvod": "1", + "name": "Analiz Sentez", + "tvodStatus": "1", + "pictures": [ + { + "href": "https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260414/43/2305322900245eb7f426.webp", + "resolution": [ + "null", + "null" + ], + "imageType": "10" + }, + { + "href": "https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260414/50/2305322900235eb7f426.webp", + "resolution": [ + "null", + "null" + ], + "imageType": "7" + }, + { + "href": "https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260414/50/2305322900235eb7f426_0_XS.webp", + "resolution": [ + "null", + "null" + ], + "imageType": "7" + }, + { + "href": "https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260414/50/2305322900235eb7f426_0_S.webp", + "resolution": [ + "null", + "null" + ], + "imageType": "7" + }, + { + "href": "https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260414/50/2305322900235eb7f426_0_XL.webp", + "resolution": [ + "null", + "null" + ], + "imageType": "7" + }, + { + "href": "https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260414/50/2305322900235eb7f426_0_M.webp", + "resolution": [ + "null", + "null" + ], + "imageType": "7" + }, + { + "href": "https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260414/50/2305322900235eb7f426_0_L.webp", + "resolution": [ + "null", + "null" + ], + "imageType": "7" + }, + { + "href": "https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260414/50/2305322900235eb7f426_0_0.webp", + "resolution": [ + "null", + "null" + ], + "imageType": "7" + }, + { + "href": "https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260414/31/2305322900225eb7f426.jpg", + "resolution": [ + "null", + "null" + ], + "imageType": "6" + }, + { + "href": "https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260414/31/2305322900225eb7f426_0_S.jpg", + "resolution": [ + "null", + "null" + ], + "imageType": "6" + }, + { + "href": "https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260414/31/2305322900225eb7f426_0_M.jpg", + "resolution": [ + "null", + "null" + ], + "imageType": "6" + }, + { + "href": "https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260414/31/2305322900225eb7f426_0_XS.jpg", + "resolution": [ + "null", + "null" + ], + "imageType": "6" + }, + { + "href": "https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260414/31/2305322900225eb7f426_0_L.jpg", + "resolution": [ + "null", + "null" + ], + "imageType": "6" + }, + { + "href": "https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260414/31/2305322900225eb7f426_0_XL.jpg", + "resolution": [ + "null", + "null" + ], + "imageType": "6" + }, + { + "href": "https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260414/31/2305322900225eb7f426_0_0.jpg", + "resolution": [ + "null", + "null" + ], + "imageType": "6" + }, + { + "href": "https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260414/83/2305322900215eb7f426.jpg", + "resolution": [ + "null", + "null" + ], + "imageType": "5" + }, + { + "href": "https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260414/83/2305322900215eb7f426_0_M.jpg", + "resolution": [ + "null", + "null" + ], + "imageType": "5" + }, + { + "href": "https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260414/83/2305322900215eb7f426_0_L.jpg", + "resolution": [ + "null", + "null" + ], + "imageType": "5" + }, + { + "href": "https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260414/83/2305322900215eb7f426_0_XS.jpg", + "resolution": [ + "null", + "null" + ], + "imageType": "5" + }, + { + "href": "https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260414/83/2305322900215eb7f426_0_S.jpg", + "resolution": [ + "null", + "null" + ], + "imageType": "5" + }, + { + "href": "https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260414/83/2305322900215eb7f426_0_XL.jpg", + "resolution": [ + "null", + "null" + ], + "imageType": "5" + }, + { + "href": "https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260414/83/2305322900215eb7f426_0_0.jpg", + "resolution": [ + "null", + "null" + ], + "imageType": "5" + }, + { + "href": "https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260414/87/2305322900205eb7f426.jpg", + "resolution": [ + "null", + "null" + ], + "imageType": "3" + }, + { + "href": "https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260414/87/2305322900205eb7f426_0_XL.jpg", + "resolution": [ + "null", + "null" + ], + "imageType": "3" + }, + { + "href": "https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260414/87/2305322900205eb7f426_0_S.jpg", + "resolution": [ + "null", + "null" + ], + "imageType": "3" + }, + { + "href": "https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260414/87/2305322900205eb7f426_0_M.jpg", + "resolution": [ + "null", + "null" + ], + "imageType": "3" + }, + { + "href": "https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260414/87/2305322900205eb7f426_0_L.jpg", + "resolution": [ + "null", + "null" + ], + "imageType": "3" + }, + { + "href": "https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260414/87/2305322900205eb7f426_0_XS.jpg", + "resolution": [ + "null", + "null" + ], + "imageType": "3" + }, + { + "href": "https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260414/87/2305322900205eb7f426_0_0.jpg", + "resolution": [ + "null", + "null" + ], + "imageType": "3" + }, + { + "href": "https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260414/77/2305322900195eb7f426.jpg", + "resolution": [ + "null", + "null" + ], + "imageType": "2" + }, + { + "href": "https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260414/91/2305322900185eb7f426.jpg", + "resolution": [ + "null", + "null" + ], + "imageType": "1" + }, + { + "href": "https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260414/91/2305322900185eb7f426_0_XL.jpg", + "resolution": [ + "null", + "null" + ], + "imageType": "1" + }, + { + "href": "https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260414/91/2305322900185eb7f426_0_M.jpg", + "resolution": [ + "null", + "null" + ], + "imageType": "1" + }, + { + "href": "https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260414/91/2305322900185eb7f426_0_L.jpg", + "resolution": [ + "null", + "null" + ], + "imageType": "1" + }, + { + "href": "https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260414/91/2305322900185eb7f426_0_XS.jpg", + "resolution": [ + "null", + "null" + ], + "imageType": "1" + }, + { + "href": "https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260414/91/2305322900185eb7f426_0_S.jpg", + "resolution": [ + "null", + "null" + ], + "imageType": "1" + }, + { + "href": "https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260414/91/2305322900185eb7f426_0_0.jpg", + "resolution": [ + "null", + "null" + ], + "imageType": "1" + }, + { + "href": "https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260414/81/2305322890175eb7f426.jpg", + "resolution": [ + "null", + "null" + ], + "imageType": "0" + } + ], + "externalContentCode": "1091860202", + "genres": "Haber", + "visittimes": "0", + "issubscribed": "0", + "programType": "program", + "gapFiller": "0", + "introduce": "Yeni güne başlarken finansal piyasalardaki beklentiler, ekonomi gündemi, siyaset ve dış politikadaki gelişmeler ele alınıyor. Piyasalarda konuşulmayanlar ve ekonomik gelişmelerin perde arkası analizlerle değerlendiriliyor.", + "priceType": [ + { + "value": "0", + "key": "BTV" + }, + { + "value": "0", + "key": "TVOD" + } + ], + "endtime": "2026-04-22 10:50:00 UTC+03:00", + "seasonTotalCount": "0", + "recordedMediaIds": [ + "100067919" + ], + "picture": { + "blackwhite": "https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260414/43/2305322900245eb7f426.webp", + "still": "https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260414/77/2305322900195eb7f426.jpg", + "ad": "https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260414/83/2305322900215eb7f426.jpg,https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260414/83/2305322900215eb7f426_0_M.jpg,https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260414/83/2305322900215eb7f426_0_L.jpg,https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260414/83/2305322900215eb7f426_0_XS.jpg,https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260414/83/2305322900215eb7f426_0_S.jpg,https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260414/83/2305322900215eb7f426_0_XL.jpg,https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260414/83/2305322900215eb7f426_0_0.jpg", + "icon": "https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260414/87/2305322900205eb7f426.jpg,https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260414/87/2305322900205eb7f426_0_XL.jpg,https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260414/87/2305322900205eb7f426_0_S.jpg,https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260414/87/2305322900205eb7f426_0_M.jpg,https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260414/87/2305322900205eb7f426_0_L.jpg,https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260414/87/2305322900205eb7f426_0_XS.jpg,https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260414/87/2305322900205eb7f426_0_0.jpg", + "deflate": "https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260414/81/2305322890175eb7f426.jpg", + "background": "https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260414/50/2305322900235eb7f426.webp,https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260414/50/2305322900235eb7f426_0_XS.webp,https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260414/50/2305322900235eb7f426_0_S.webp,https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260414/50/2305322900235eb7f426_0_XL.webp,https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260414/50/2305322900235eb7f426_0_M.webp,https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260414/50/2305322900235eb7f426_0_L.webp,https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260414/50/2305322900235eb7f426_0_0.webp", + "draft": "https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260414/31/2305322900225eb7f426.jpg,https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260414/31/2305322900225eb7f426_0_S.jpg,https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260414/31/2305322900225eb7f426_0_M.jpg,https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260414/31/2305322900225eb7f426_0_XS.jpg,https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260414/31/2305322900225eb7f426_0_L.jpg,https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260414/31/2305322900225eb7f426_0_XL.jpg,https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260414/31/2305322900225eb7f426_0_0.jpg", + "poster": "https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260414/91/2305322900185eb7f426.jpg,https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260414/91/2305322900185eb7f426_0_XL.jpg,https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260414/91/2305322900185eb7f426_0_M.jpg,https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260414/91/2305322900185eb7f426_0_L.jpg,https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260414/91/2305322900185eb7f426_0_XS.jpg,https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260414/91/2305322900185eb7f426_0_S.jpg,https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260414/91/2305322900185eb7f426_0_0.jpg" + }, + "isLoyalty": "0", + "isppv": "0", + "mainGenre": "0", + "contentRight": "[{\"mediaId\":\"100067919\",\"businessType\":\"13\",\"enable\":\"0\"},{\"mediaId\":\"100067919\",\"businessType\":\"14\",\"enable\":\"0\"},{\"mediaId\":\"100067919\",\"businessType\":\"15\",\"enable\":\"1\"},{\"mediaId\":\"223943150\",\"businessType\":\"13\",\"enable\":\"0\"},{\"mediaId\":\"223943150\",\"businessType\":\"14\",\"enable\":\"0\"},{\"mediaId\":\"223943150\",\"businessType\":\"15\",\"enable\":\"1\"},{\"mediaId\":\"3000435\",\"businessType\":\"13\",\"enable\":\"0\"},{\"mediaId\":\"3000435\",\"businessType\":\"14\",\"enable\":\"0\"},{\"mediaId\":\"3000435\",\"businessType\":\"15\",\"enable\":\"1\"}]", + "channelid": "32" + }, + { + "country": "", + "starttime": "2026-04-22 10:50:00 UTC+03:00", + "type": "PROGRAM", + "isBlackout": "0", + "rerun": "0", + "ppvsubscribed": "0", + "foreignsn": "225199495", + "isLive": "0", + "ratingid": "0", + "episodeTotalCount": "0", + "id": "225199495", + "keyword": "Hava Durumu", + "contentType": "0", + "isnpvr": "1", + "slsType": "0", + "iscpvr": "0", + "advisory": [], + "extensionInfo": [ + { + "value": "Banttan", + "key": "broadcastType" + }, + { + "value": "556", + "key": "subGenre" + } + ], + "genreIds": [ + "1173" + ], + "istvod": "1", + "name": "Hava Durumu", + "tvodStatus": "1", + "pictures": [ + { + "href": "https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260414/10/2305322940325eb7f426.webp", + "resolution": [ + "null", + "null" + ], + "imageType": "10" + }, + { + "href": "https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260414/82/2305322940315eb7f426.webp", + "resolution": [ + "null", + "null" + ], + "imageType": "7" + }, + { + "href": "https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260414/82/2305322940315eb7f426_0_XS.webp", + "resolution": [ + "null", + "null" + ], + "imageType": "7" + }, + { + "href": "https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260414/82/2305322940315eb7f426_0_S.webp", + "resolution": [ + "null", + "null" + ], + "imageType": "7" + }, + { + "href": "https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260414/82/2305322940315eb7f426_0_XL.webp", + "resolution": [ + "null", + "null" + ], + "imageType": "7" + }, + { + "href": "https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260414/82/2305322940315eb7f426_0_M.webp", + "resolution": [ + "null", + "null" + ], + "imageType": "7" + }, + { + "href": "https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260414/82/2305322940315eb7f426_0_L.webp", + "resolution": [ + "null", + "null" + ], + "imageType": "7" + }, + { + "href": "https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260414/82/2305322940315eb7f426_0_0.webp", + "resolution": [ + "null", + "null" + ], + "imageType": "7" + }, + { + "href": "https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260414/67/2305322940305eb7f426.jpg", + "resolution": [ + "null", + "null" + ], + "imageType": "6" + }, + { + "href": "https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260414/67/2305322940305eb7f426_0_S.jpg", + "resolution": [ + "null", + "null" + ], + "imageType": "6" + }, + { + "href": "https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260414/67/2305322940305eb7f426_0_M.jpg", + "resolution": [ + "null", + "null" + ], + "imageType": "6" + }, + { + "href": "https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260414/67/2305322940305eb7f426_0_XS.jpg", + "resolution": [ + "null", + "null" + ], + "imageType": "6" + }, + { + "href": "https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260414/67/2305322940305eb7f426_0_L.jpg", + "resolution": [ + "null", + "null" + ], + "imageType": "6" + }, + { + "href": "https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260414/67/2305322940305eb7f426_0_XL.jpg", + "resolution": [ + "null", + "null" + ], + "imageType": "6" + }, + { + "href": "https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260414/67/2305322940305eb7f426_0_0.jpg", + "resolution": [ + "null", + "null" + ], + "imageType": "6" + }, + { + "href": "https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260414/16/2305322930295eb7f426.jpg", + "resolution": [ + "null", + "null" + ], + "imageType": "5" + }, + { + "href": "https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260414/16/2305322930295eb7f426_0_M.jpg", + "resolution": [ + "null", + "null" + ], + "imageType": "5" + }, + { + "href": "https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260414/16/2305322930295eb7f426_0_L.jpg", + "resolution": [ + "null", + "null" + ], + "imageType": "5" + }, + { + "href": "https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260414/16/2305322930295eb7f426_0_XS.jpg", + "resolution": [ + "null", + "null" + ], + "imageType": "5" + }, + { + "href": "https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260414/16/2305322930295eb7f426_0_S.jpg", + "resolution": [ + "null", + "null" + ], + "imageType": "5" + }, + { + "href": "https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260414/16/2305322930295eb7f426_0_XL.jpg", + "resolution": [ + "null", + "null" + ], + "imageType": "5" + }, + { + "href": "https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260414/16/2305322930295eb7f426_0_0.jpg", + "resolution": [ + "null", + "null" + ], + "imageType": "5" + }, + { + "href": "https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260414/10/2305322930285eb7f426.jpg", + "resolution": [ + "null", + "null" + ], + "imageType": "3" + }, + { + "href": "https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260414/10/2305322930285eb7f426_0_XL.jpg", + "resolution": [ + "null", + "null" + ], + "imageType": "3" + }, + { + "href": "https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260414/10/2305322930285eb7f426_0_S.jpg", + "resolution": [ + "null", + "null" + ], + "imageType": "3" + }, + { + "href": "https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260414/10/2305322930285eb7f426_0_M.jpg", + "resolution": [ + "null", + "null" + ], + "imageType": "3" + }, + { + "href": "https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260414/10/2305322930285eb7f426_0_L.jpg", + "resolution": [ + "null", + "null" + ], + "imageType": "3" + }, + { + "href": "https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260414/10/2305322930285eb7f426_0_XS.jpg", + "resolution": [ + "null", + "null" + ], + "imageType": "3" + }, + { + "href": "https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260414/10/2305322930285eb7f426_0_0.jpg", + "resolution": [ + "null", + "null" + ], + "imageType": "3" + }, + { + "href": "https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260414/37/2305322930275eb7f426.jpg", + "resolution": [ + "null", + "null" + ], + "imageType": "2" + }, + { + "href": "https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260414/40/2305322930265eb7f426.jpg", + "resolution": [ + "null", + "null" + ], + "imageType": "1" + }, + { + "href": "https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260414/40/2305322930265eb7f426_0_XL.jpg", + "resolution": [ + "null", + "null" + ], + "imageType": "1" + }, + { + "href": "https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260414/40/2305322930265eb7f426_0_M.jpg", + "resolution": [ + "null", + "null" + ], + "imageType": "1" + }, + { + "href": "https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260414/40/2305322930265eb7f426_0_L.jpg", + "resolution": [ + "null", + "null" + ], + "imageType": "1" + }, + { + "href": "https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260414/40/2305322930265eb7f426_0_XS.jpg", + "resolution": [ + "null", + "null" + ], + "imageType": "1" + }, + { + "href": "https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260414/40/2305322930265eb7f426_0_S.jpg", + "resolution": [ + "null", + "null" + ], + "imageType": "1" + }, + { + "href": "https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260414/40/2305322930265eb7f426_0_0.jpg", + "resolution": [ + "null", + "null" + ], + "imageType": "1" + }, + { + "href": "https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260414/18/2305322930255eb7f426.jpg", + "resolution": [ + "null", + "null" + ], + "imageType": "0" + } + ], + "externalContentCode": "1091860203", + "genres": "Hava Durumu", + "visittimes": "0", + "issubscribed": "0", + "programType": "program", + "gapFiller": "0", + "introduce": "Sıcaklık değişimleri yağış ihtimali, rüzgâr ve nem oranları gibi temel bilgilerle birlikte, olası hava olaylarına ilişkin uyarılar ve tahminler detaylı biçimde paylaşılır. Hava durumu analizleri, bölgesel raporlar ve hava koşullarının günlük yaşamı nasıl etkileyeceğine dair açıklamalar izleyiciye aktarılıyor.", + "priceType": [ + { + "value": "0", + "key": "BTV" + }, + { + "value": "0", + "key": "TVOD" + } + ], + "endtime": "2026-04-22 11:00:00 UTC+03:00", + "seasonTotalCount": "0", + "recordedMediaIds": [ + "100067919" + ], + "picture": { + "blackwhite": "https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260414/10/2305322940325eb7f426.webp", + "still": "https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260414/37/2305322930275eb7f426.jpg", + "ad": "https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260414/16/2305322930295eb7f426.jpg,https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260414/16/2305322930295eb7f426_0_M.jpg,https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260414/16/2305322930295eb7f426_0_L.jpg,https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260414/16/2305322930295eb7f426_0_XS.jpg,https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260414/16/2305322930295eb7f426_0_S.jpg,https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260414/16/2305322930295eb7f426_0_XL.jpg,https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260414/16/2305322930295eb7f426_0_0.jpg", + "icon": "https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260414/10/2305322930285eb7f426.jpg,https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260414/10/2305322930285eb7f426_0_XL.jpg,https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260414/10/2305322930285eb7f426_0_S.jpg,https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260414/10/2305322930285eb7f426_0_M.jpg,https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260414/10/2305322930285eb7f426_0_L.jpg,https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260414/10/2305322930285eb7f426_0_XS.jpg,https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260414/10/2305322930285eb7f426_0_0.jpg", + "deflate": "https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260414/18/2305322930255eb7f426.jpg", + "background": "https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260414/82/2305322940315eb7f426.webp,https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260414/82/2305322940315eb7f426_0_XS.webp,https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260414/82/2305322940315eb7f426_0_S.webp,https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260414/82/2305322940315eb7f426_0_XL.webp,https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260414/82/2305322940315eb7f426_0_M.webp,https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260414/82/2305322940315eb7f426_0_L.webp,https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260414/82/2305322940315eb7f426_0_0.webp", + "draft": "https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260414/67/2305322940305eb7f426.jpg,https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260414/67/2305322940305eb7f426_0_S.jpg,https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260414/67/2305322940305eb7f426_0_M.jpg,https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260414/67/2305322940305eb7f426_0_XS.jpg,https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260414/67/2305322940305eb7f426_0_L.jpg,https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260414/67/2305322940305eb7f426_0_XL.jpg,https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260414/67/2305322940305eb7f426_0_0.jpg", + "poster": "https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260414/40/2305322930265eb7f426.jpg,https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260414/40/2305322930265eb7f426_0_XL.jpg,https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260414/40/2305322930265eb7f426_0_M.jpg,https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260414/40/2305322930265eb7f426_0_L.jpg,https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260414/40/2305322930265eb7f426_0_XS.jpg,https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260414/40/2305322930265eb7f426_0_S.jpg,https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260414/40/2305322930265eb7f426_0_0.jpg" + }, + "isLoyalty": "0", + "isppv": "0", + "mainGenre": "0", + "contentRight": "[{\"mediaId\":\"100067919\",\"businessType\":\"13\",\"enable\":\"0\"},{\"mediaId\":\"100067919\",\"businessType\":\"14\",\"enable\":\"0\"},{\"mediaId\":\"100067919\",\"businessType\":\"15\",\"enable\":\"1\"},{\"mediaId\":\"223943150\",\"businessType\":\"13\",\"enable\":\"0\"},{\"mediaId\":\"223943150\",\"businessType\":\"14\",\"enable\":\"0\"},{\"mediaId\":\"223943150\",\"businessType\":\"15\",\"enable\":\"1\"},{\"mediaId\":\"3000435\",\"businessType\":\"13\",\"enable\":\"0\"},{\"mediaId\":\"3000435\",\"businessType\":\"14\",\"enable\":\"0\"},{\"mediaId\":\"3000435\",\"businessType\":\"15\",\"enable\":\"1\"}]", + "channelid": "32" + }, + { + "country": "", + "starttime": "2026-04-22 11:00:00 UTC+03:00", + "type": "PROGRAM", + "isBlackout": "0", + "rerun": "0", + "ppvsubscribed": "0", + "foreignsn": "225199501", + "isLive": "0", + "ratingid": "0", + "episodeTotalCount": "0", + "id": "225199501", + "keyword": "Günün Manşeti", + "contentType": "0", + "isnpvr": "1", + "slsType": "0", + "iscpvr": "0", + "advisory": [], + "extensionInfo": [ + { + "value": "Banttan", + "key": "broadcastType" + }, + { + "value": "545", + "key": "subGenre" + } + ], + "genreIds": [ + "1193" + ], + "istvod": "1", + "name": "Günün Manşeti", + "tvodStatus": "1", + "pictures": [ + { + "href": "https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260414/1/2305322940405eb7f426.webp", + "resolution": [ + "null", + "null" + ], + "imageType": "10" + }, + { + "href": "https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260414/91/2305322940395eb7f426.webp", + "resolution": [ + "null", + "null" + ], + "imageType": "7" + }, + { + "href": "https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260414/91/2305322940395eb7f426_0_XS.webp", + "resolution": [ + "null", + "null" + ], + "imageType": "7" + }, + { + "href": "https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260414/91/2305322940395eb7f426_0_S.webp", + "resolution": [ + "null", + "null" + ], + "imageType": "7" + }, + { + "href": "https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260414/91/2305322940395eb7f426_0_XL.webp", + "resolution": [ + "null", + "null" + ], + "imageType": "7" + }, + { + "href": "https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260414/91/2305322940395eb7f426_0_M.webp", + "resolution": [ + "null", + "null" + ], + "imageType": "7" + }, + { + "href": "https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260414/91/2305322940395eb7f426_0_L.webp", + "resolution": [ + "null", + "null" + ], + "imageType": "7" + }, + { + "href": "https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260414/91/2305322940395eb7f426_0_0.webp", + "resolution": [ + "null", + "null" + ], + "imageType": "7" + }, + { + "href": "https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260414/87/2305322940385eb7f426.jpg", + "resolution": [ + "null", + "null" + ], + "imageType": "6" + }, + { + "href": "https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260414/87/2305322940385eb7f426_0_S.jpg", + "resolution": [ + "null", + "null" + ], + "imageType": "6" + }, + { + "href": "https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260414/87/2305322940385eb7f426_0_M.jpg", + "resolution": [ + "null", + "null" + ], + "imageType": "6" + }, + { + "href": "https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260414/87/2305322940385eb7f426_0_XS.jpg", + "resolution": [ + "null", + "null" + ], + "imageType": "6" + }, + { + "href": "https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260414/87/2305322940385eb7f426_0_L.jpg", + "resolution": [ + "null", + "null" + ], + "imageType": "6" + }, + { + "href": "https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260414/87/2305322940385eb7f426_0_XL.jpg", + "resolution": [ + "null", + "null" + ], + "imageType": "6" + }, + { + "href": "https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260414/87/2305322940385eb7f426_0_0.jpg", + "resolution": [ + "null", + "null" + ], + "imageType": "6" + }, + { + "href": "https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260414/41/2305322940375eb7f426.jpg", + "resolution": [ + "null", + "null" + ], + "imageType": "5" + }, + { + "href": "https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260414/41/2305322940375eb7f426_0_M.jpg", + "resolution": [ + "null", + "null" + ], + "imageType": "5" + }, + { + "href": "https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260414/41/2305322940375eb7f426_0_L.jpg", + "resolution": [ + "null", + "null" + ], + "imageType": "5" + }, + { + "href": "https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260414/41/2305322940375eb7f426_0_XS.jpg", + "resolution": [ + "null", + "null" + ], + "imageType": "5" + }, + { + "href": "https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260414/41/2305322940375eb7f426_0_S.jpg", + "resolution": [ + "null", + "null" + ], + "imageType": "5" + }, + { + "href": "https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260414/41/2305322940375eb7f426_0_XL.jpg", + "resolution": [ + "null", + "null" + ], + "imageType": "5" + }, + { + "href": "https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260414/41/2305322940375eb7f426_0_0.jpg", + "resolution": [ + "null", + "null" + ], + "imageType": "5" + }, + { + "href": "https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260414/88/2305322940365eb7f426.jpg", + "resolution": [ + "null", + "null" + ], + "imageType": "3" + }, + { + "href": "https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260414/88/2305322940365eb7f426_0_XL.jpg", + "resolution": [ + "null", + "null" + ], + "imageType": "3" + }, + { + "href": "https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260414/88/2305322940365eb7f426_0_S.jpg", + "resolution": [ + "null", + "null" + ], + "imageType": "3" + }, + { + "href": "https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260414/88/2305322940365eb7f426_0_M.jpg", + "resolution": [ + "null", + "null" + ], + "imageType": "3" + }, + { + "href": "https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260414/88/2305322940365eb7f426_0_L.jpg", + "resolution": [ + "null", + "null" + ], + "imageType": "3" + }, + { + "href": "https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260414/88/2305322940365eb7f426_0_XS.jpg", + "resolution": [ + "null", + "null" + ], + "imageType": "3" + }, + { + "href": "https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260414/88/2305322940365eb7f426_0_0.jpg", + "resolution": [ + "null", + "null" + ], + "imageType": "3" + }, + { + "href": "https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260414/6/2305322940355eb7f426.jpg", + "resolution": [ + "null", + "null" + ], + "imageType": "2" + }, + { + "href": "https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260414/93/2305322940345eb7f426.jpg", + "resolution": [ + "null", + "null" + ], + "imageType": "1" + }, + { + "href": "https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260414/93/2305322940345eb7f426_0_XL.jpg", + "resolution": [ + "null", + "null" + ], + "imageType": "1" + }, + { + "href": "https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260414/93/2305322940345eb7f426_0_M.jpg", + "resolution": [ + "null", + "null" + ], + "imageType": "1" + }, + { + "href": "https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260414/93/2305322940345eb7f426_0_L.jpg", + "resolution": [ + "null", + "null" + ], + "imageType": "1" + }, + { + "href": "https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260414/93/2305322940345eb7f426_0_XS.jpg", + "resolution": [ + "null", + "null" + ], + "imageType": "1" + }, + { + "href": "https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260414/93/2305322940345eb7f426_0_S.jpg", + "resolution": [ + "null", + "null" + ], + "imageType": "1" + }, + { + "href": "https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260414/93/2305322940345eb7f426_0_0.jpg", + "resolution": [ + "null", + "null" + ], + "imageType": "1" + }, + { + "href": "https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260414/35/2305322940335eb7f426.jpg", + "resolution": [ + "null", + "null" + ], + "imageType": "0" + } + ], + "externalContentCode": "1091860206", + "genres": "Haber", + "visittimes": "0", + "issubscribed": "0", + "programType": "program", + "gapFiller": "0", + "introduce": "Türkiye ve dünya gündemindeki önemli gelişmeler, gazetelerde çıkan haberler ve köşe yazıları bu programda ele alınıyor. Farklı bakış açıları ve çarpıcı analizlerle izleyicilere olayların arka planı aktarılıyor.", + "priceType": [ + { + "value": "0", + "key": "BTV" + }, + { + "value": "0", + "key": "TVOD" + } + ], + "endtime": "2026-04-22 12:00:00 UTC+03:00", + "seasonTotalCount": "0", + "recordedMediaIds": [ + "100067919" + ], + "picture": { + "blackwhite": "https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260414/1/2305322940405eb7f426.webp", + "still": "https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260414/6/2305322940355eb7f426.jpg", + "ad": "https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260414/41/2305322940375eb7f426.jpg,https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260414/41/2305322940375eb7f426_0_M.jpg,https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260414/41/2305322940375eb7f426_0_L.jpg,https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260414/41/2305322940375eb7f426_0_XS.jpg,https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260414/41/2305322940375eb7f426_0_S.jpg,https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260414/41/2305322940375eb7f426_0_XL.jpg,https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260414/41/2305322940375eb7f426_0_0.jpg", + "icon": "https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260414/88/2305322940365eb7f426.jpg,https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260414/88/2305322940365eb7f426_0_XL.jpg,https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260414/88/2305322940365eb7f426_0_S.jpg,https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260414/88/2305322940365eb7f426_0_M.jpg,https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260414/88/2305322940365eb7f426_0_L.jpg,https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260414/88/2305322940365eb7f426_0_XS.jpg,https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260414/88/2305322940365eb7f426_0_0.jpg", + "deflate": "https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260414/35/2305322940335eb7f426.jpg", + "background": "https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260414/91/2305322940395eb7f426.webp,https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260414/91/2305322940395eb7f426_0_XS.webp,https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260414/91/2305322940395eb7f426_0_S.webp,https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260414/91/2305322940395eb7f426_0_XL.webp,https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260414/91/2305322940395eb7f426_0_M.webp,https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260414/91/2305322940395eb7f426_0_L.webp,https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260414/91/2305322940395eb7f426_0_0.webp", + "draft": "https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260414/87/2305322940385eb7f426.jpg,https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260414/87/2305322940385eb7f426_0_S.jpg,https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260414/87/2305322940385eb7f426_0_M.jpg,https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260414/87/2305322940385eb7f426_0_XS.jpg,https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260414/87/2305322940385eb7f426_0_L.jpg,https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260414/87/2305322940385eb7f426_0_XL.jpg,https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260414/87/2305322940385eb7f426_0_0.jpg", + "poster": "https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260414/93/2305322940345eb7f426.jpg,https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260414/93/2305322940345eb7f426_0_XL.jpg,https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260414/93/2305322940345eb7f426_0_M.jpg,https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260414/93/2305322940345eb7f426_0_L.jpg,https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260414/93/2305322940345eb7f426_0_XS.jpg,https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260414/93/2305322940345eb7f426_0_S.jpg,https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260414/93/2305322940345eb7f426_0_0.jpg" + }, + "isLoyalty": "0", + "isppv": "0", + "mainGenre": "0", + "contentRight": "[{\"mediaId\":\"100067919\",\"businessType\":\"13\",\"enable\":\"0\"},{\"mediaId\":\"100067919\",\"businessType\":\"14\",\"enable\":\"0\"},{\"mediaId\":\"100067919\",\"businessType\":\"15\",\"enable\":\"1\"},{\"mediaId\":\"223943150\",\"businessType\":\"13\",\"enable\":\"0\"},{\"mediaId\":\"223943150\",\"businessType\":\"14\",\"enable\":\"0\"},{\"mediaId\":\"223943150\",\"businessType\":\"15\",\"enable\":\"1\"},{\"mediaId\":\"3000435\",\"businessType\":\"13\",\"enable\":\"0\"},{\"mediaId\":\"3000435\",\"businessType\":\"14\",\"enable\":\"0\"},{\"mediaId\":\"3000435\",\"businessType\":\"15\",\"enable\":\"1\"}]", + "channelid": "32" + }, + { + "country": "", + "starttime": "2026-04-22 12:00:00 UTC+03:00", + "type": "PROGRAM", + "isBlackout": "0", + "rerun": "0", + "ppvsubscribed": "0", + "foreignsn": "225199507", + "isLive": "0", + "ratingid": "0", + "episodeTotalCount": "0", + "id": "225199507", + "keyword": "Moderatör", + "contentType": "0", + "isnpvr": "1", + "slsType": "0", + "iscpvr": "0", + "advisory": [], + "extensionInfo": [ + { + "value": "Banttan", + "key": "broadcastType" + }, + { + "value": "545", + "key": "subGenre" + } + ], + "genreIds": [ + "1193" + ], + "istvod": "1", + "name": "Moderatör", + "tvodStatus": "1", + "pictures": [ + { + "href": "https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260414/24/2305322950485eb7f426.webp", + "resolution": [ + "null", + "null" + ], + "imageType": "10" + }, + { + "href": "https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260414/46/2305322950475eb7f426.webp", + "resolution": [ + "null", + "null" + ], + "imageType": "7" + }, + { + "href": "https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260414/46/2305322950475eb7f426_0_XS.webp", + "resolution": [ + "null", + "null" + ], + "imageType": "7" + }, + { + "href": "https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260414/46/2305322950475eb7f426_0_S.webp", + "resolution": [ + "null", + "null" + ], + "imageType": "7" + }, + { + "href": "https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260414/46/2305322950475eb7f426_0_XL.webp", + "resolution": [ + "null", + "null" + ], + "imageType": "7" + }, + { + "href": "https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260414/46/2305322950475eb7f426_0_M.webp", + "resolution": [ + "null", + "null" + ], + "imageType": "7" + }, + { + "href": "https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260414/46/2305322950475eb7f426_0_L.webp", + "resolution": [ + "null", + "null" + ], + "imageType": "7" + }, + { + "href": "https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260414/46/2305322950475eb7f426_0_0.webp", + "resolution": [ + "null", + "null" + ], + "imageType": "7" + }, + { + "href": "https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260414/30/2305322950465eb7f426.jpg", + "resolution": [ + "null", + "null" + ], + "imageType": "6" + }, + { + "href": "https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260414/30/2305322950465eb7f426_0_S.jpg", + "resolution": [ + "null", + "null" + ], + "imageType": "6" + }, + { + "href": "https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260414/30/2305322950465eb7f426_0_M.jpg", + "resolution": [ + "null", + "null" + ], + "imageType": "6" + }, + { + "href": "https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260414/30/2305322950465eb7f426_0_XS.jpg", + "resolution": [ + "null", + "null" + ], + "imageType": "6" + }, + { + "href": "https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260414/30/2305322950465eb7f426_0_L.jpg", + "resolution": [ + "null", + "null" + ], + "imageType": "6" + }, + { + "href": "https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260414/30/2305322950465eb7f426_0_XL.jpg", + "resolution": [ + "null", + "null" + ], + "imageType": "6" + }, + { + "href": "https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260414/30/2305322950465eb7f426_0_0.jpg", + "resolution": [ + "null", + "null" + ], + "imageType": "6" + }, + { + "href": "https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260414/53/2305322950455eb7f426.jpg", + "resolution": [ + "null", + "null" + ], + "imageType": "5" + }, + { + "href": "https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260414/53/2305322950455eb7f426_0_M.jpg", + "resolution": [ + "null", + "null" + ], + "imageType": "5" + }, + { + "href": "https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260414/53/2305322950455eb7f426_0_L.jpg", + "resolution": [ + "null", + "null" + ], + "imageType": "5" + }, + { + "href": "https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260414/53/2305322950455eb7f426_0_XS.jpg", + "resolution": [ + "null", + "null" + ], + "imageType": "5" + }, + { + "href": "https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260414/53/2305322950455eb7f426_0_S.jpg", + "resolution": [ + "null", + "null" + ], + "imageType": "5" + }, + { + "href": "https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260414/53/2305322950455eb7f426_0_XL.jpg", + "resolution": [ + "null", + "null" + ], + "imageType": "5" + }, + { + "href": "https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260414/53/2305322950455eb7f426_0_0.jpg", + "resolution": [ + "null", + "null" + ], + "imageType": "5" + }, + { + "href": "https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260414/97/2305322950445eb7f426.jpg", + "resolution": [ + "null", + "null" + ], + "imageType": "3" + }, + { + "href": "https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260414/97/2305322950445eb7f426_0_XL.jpg", + "resolution": [ + "null", + "null" + ], + "imageType": "3" + }, + { + "href": "https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260414/97/2305322950445eb7f426_0_S.jpg", + "resolution": [ + "null", + "null" + ], + "imageType": "3" + }, + { + "href": "https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260414/97/2305322950445eb7f426_0_M.jpg", + "resolution": [ + "null", + "null" + ], + "imageType": "3" + }, + { + "href": "https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260414/97/2305322950445eb7f426_0_L.jpg", + "resolution": [ + "null", + "null" + ], + "imageType": "3" + }, + { + "href": "https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260414/97/2305322950445eb7f426_0_XS.jpg", + "resolution": [ + "null", + "null" + ], + "imageType": "3" + }, + { + "href": "https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260414/97/2305322950445eb7f426_0_0.jpg", + "resolution": [ + "null", + "null" + ], + "imageType": "3" + }, + { + "href": "https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260414/85/2305322950435eb7f426.jpg", + "resolution": [ + "null", + "null" + ], + "imageType": "2" + }, + { + "href": "https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260414/26/2305322950425eb7f426.jpg", + "resolution": [ + "null", + "null" + ], + "imageType": "1" + }, + { + "href": "https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260414/26/2305322950425eb7f426_0_XL.jpg", + "resolution": [ + "null", + "null" + ], + "imageType": "1" + }, + { + "href": "https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260414/26/2305322950425eb7f426_0_M.jpg", + "resolution": [ + "null", + "null" + ], + "imageType": "1" + }, + { + "href": "https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260414/26/2305322950425eb7f426_0_L.jpg", + "resolution": [ + "null", + "null" + ], + "imageType": "1" + }, + { + "href": "https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260414/26/2305322950425eb7f426_0_XS.jpg", + "resolution": [ + "null", + "null" + ], + "imageType": "1" + }, + { + "href": "https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260414/26/2305322950425eb7f426_0_S.jpg", + "resolution": [ + "null", + "null" + ], + "imageType": "1" + }, + { + "href": "https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260414/26/2305322950425eb7f426_0_0.jpg", + "resolution": [ + "null", + "null" + ], + "imageType": "1" + }, + { + "href": "https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260414/35/2305322950415eb7f426.jpg", + "resolution": [ + "null", + "null" + ], + "imageType": "0" + } + ], + "externalContentCode": "1091860195", + "genres": "Haber", + "visittimes": "0", + "issubscribed": "0", + "programType": "program", + "gapFiller": "0", + "introduce": "Türkiye ve dünya gündemindeki en sıcak ve özel haberler, canlı bağlantılar ve tarafsız analizlerle izleyiciye aktarılıyor. Hafta içi her gün gündemin yoğun akışı programda ekrana geliyor.", + "priceType": [ + { + "value": "0", + "key": "BTV" + }, + { + "value": "0", + "key": "TVOD" + } + ], + "endtime": "2026-04-22 12:35:00 UTC+03:00", + "seasonTotalCount": "0", + "recordedMediaIds": [ + "100067919" + ], + "picture": { + "blackwhite": "https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260414/24/2305322950485eb7f426.webp", + "still": "https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260414/85/2305322950435eb7f426.jpg", + "ad": "https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260414/53/2305322950455eb7f426.jpg,https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260414/53/2305322950455eb7f426_0_M.jpg,https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260414/53/2305322950455eb7f426_0_L.jpg,https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260414/53/2305322950455eb7f426_0_XS.jpg,https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260414/53/2305322950455eb7f426_0_S.jpg,https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260414/53/2305322950455eb7f426_0_XL.jpg,https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260414/53/2305322950455eb7f426_0_0.jpg", + "icon": "https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260414/97/2305322950445eb7f426.jpg,https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260414/97/2305322950445eb7f426_0_XL.jpg,https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260414/97/2305322950445eb7f426_0_S.jpg,https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260414/97/2305322950445eb7f426_0_M.jpg,https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260414/97/2305322950445eb7f426_0_L.jpg,https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260414/97/2305322950445eb7f426_0_XS.jpg,https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260414/97/2305322950445eb7f426_0_0.jpg", + "deflate": "https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260414/35/2305322950415eb7f426.jpg", + "background": "https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260414/46/2305322950475eb7f426.webp,https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260414/46/2305322950475eb7f426_0_XS.webp,https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260414/46/2305322950475eb7f426_0_S.webp,https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260414/46/2305322950475eb7f426_0_XL.webp,https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260414/46/2305322950475eb7f426_0_M.webp,https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260414/46/2305322950475eb7f426_0_L.webp,https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260414/46/2305322950475eb7f426_0_0.webp", + "draft": "https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260414/30/2305322950465eb7f426.jpg,https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260414/30/2305322950465eb7f426_0_S.jpg,https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260414/30/2305322950465eb7f426_0_M.jpg,https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260414/30/2305322950465eb7f426_0_XS.jpg,https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260414/30/2305322950465eb7f426_0_L.jpg,https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260414/30/2305322950465eb7f426_0_XL.jpg,https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260414/30/2305322950465eb7f426_0_0.jpg", + "poster": "https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260414/26/2305322950425eb7f426.jpg,https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260414/26/2305322950425eb7f426_0_XL.jpg,https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260414/26/2305322950425eb7f426_0_M.jpg,https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260414/26/2305322950425eb7f426_0_L.jpg,https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260414/26/2305322950425eb7f426_0_XS.jpg,https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260414/26/2305322950425eb7f426_0_S.jpg,https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260414/26/2305322950425eb7f426_0_0.jpg" + }, + "isLoyalty": "0", + "isppv": "0", + "mainGenre": "0", + "contentRight": "[{\"mediaId\":\"100067919\",\"businessType\":\"13\",\"enable\":\"0\"},{\"mediaId\":\"100067919\",\"businessType\":\"14\",\"enable\":\"0\"},{\"mediaId\":\"100067919\",\"businessType\":\"15\",\"enable\":\"1\"},{\"mediaId\":\"223943150\",\"businessType\":\"13\",\"enable\":\"0\"},{\"mediaId\":\"223943150\",\"businessType\":\"14\",\"enable\":\"0\"},{\"mediaId\":\"223943150\",\"businessType\":\"15\",\"enable\":\"1\"},{\"mediaId\":\"3000435\",\"businessType\":\"13\",\"enable\":\"0\"},{\"mediaId\":\"3000435\",\"businessType\":\"14\",\"enable\":\"0\"},{\"mediaId\":\"3000435\",\"businessType\":\"15\",\"enable\":\"1\"}]", + "channelid": "32" + }, + { + "country": "", + "starttime": "2026-04-22 12:35:00 UTC+03:00", + "type": "PROGRAM", + "isBlackout": "0", + "rerun": "0", + "ppvsubscribed": "0", + "foreignsn": "225390360", + "isLive": "0", + "ratingid": "0", + "episodeTotalCount": "0", + "id": "225390360", + "keyword": "Kahve Molası", + "contentType": "0", + "isnpvr": "1", + "slsType": "0", + "iscpvr": "0", + "advisory": [], + "extensionInfo": [ + { + "value": "Banttan", + "key": "broadcastType" + }, + { + "value": "545", + "key": "subGenre" + } + ], + "genreIds": [ + "1193" + ], + "istvod": "1", + "name": "Kahve Molası", + "tvodStatus": "1", + "pictures": [ + { + "href": "https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260418/58/0905279525005eb9b42e.webp", + "resolution": [ + "null", + "null" + ], + "imageType": "10" + }, + { + "href": "https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260418/68/0905279524995eb9b42e.webp", + "resolution": [ + "null", + "null" + ], + "imageType": "7" + }, + { + "href": "https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260418/68/0905279524995eb9b42e_0_XS.webp", + "resolution": [ + "null", + "null" + ], + "imageType": "7" + }, + { + "href": "https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260418/68/0905279524995eb9b42e_0_S.webp", + "resolution": [ + "null", + "null" + ], + "imageType": "7" + }, + { + "href": "https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260418/68/0905279524995eb9b42e_0_XL.webp", + "resolution": [ + "null", + "null" + ], + "imageType": "7" + }, + { + "href": "https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260418/68/0905279524995eb9b42e_0_M.webp", + "resolution": [ + "null", + "null" + ], + "imageType": "7" + }, + { + "href": "https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260418/68/0905279524995eb9b42e_0_L.webp", + "resolution": [ + "null", + "null" + ], + "imageType": "7" + }, + { + "href": "https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260418/68/0905279524995eb9b42e_0_0.webp", + "resolution": [ + "null", + "null" + ], + "imageType": "7" + }, + { + "href": "https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260418/62/0905279524985eb9b42e.jpg", + "resolution": [ + "null", + "null" + ], + "imageType": "6" + }, + { + "href": "https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260418/62/0905279524985eb9b42e_0_S.jpg", + "resolution": [ + "null", + "null" + ], + "imageType": "6" + }, + { + "href": "https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260418/62/0905279524985eb9b42e_0_M.jpg", + "resolution": [ + "null", + "null" + ], + "imageType": "6" + }, + { + "href": "https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260418/62/0905279524985eb9b42e_0_XS.jpg", + "resolution": [ + "null", + "null" + ], + "imageType": "6" + }, + { + "href": "https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260418/62/0905279524985eb9b42e_0_L.jpg", + "resolution": [ + "null", + "null" + ], + "imageType": "6" + }, + { + "href": "https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260418/62/0905279524985eb9b42e_0_XL.jpg", + "resolution": [ + "null", + "null" + ], + "imageType": "6" + }, + { + "href": "https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260418/62/0905279524985eb9b42e_0_0.jpg", + "resolution": [ + "null", + "null" + ], + "imageType": "6" + }, + { + "href": "https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260418/4/0905279524975eb9b42e.jpg", + "resolution": [ + "null", + "null" + ], + "imageType": "5" + }, + { + "href": "https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260418/4/0905279524975eb9b42e_0_M.jpg", + "resolution": [ + "null", + "null" + ], + "imageType": "5" + }, + { + "href": "https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260418/4/0905279524975eb9b42e_0_L.jpg", + "resolution": [ + "null", + "null" + ], + "imageType": "5" + }, + { + "href": "https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260418/4/0905279524975eb9b42e_0_XS.jpg", + "resolution": [ + "null", + "null" + ], + "imageType": "5" + }, + { + "href": "https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260418/4/0905279524975eb9b42e_0_S.jpg", + "resolution": [ + "null", + "null" + ], + "imageType": "5" + }, + { + "href": "https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260418/4/0905279524975eb9b42e_0_XL.jpg", + "resolution": [ + "null", + "null" + ], + "imageType": "5" + }, + { + "href": "https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260418/4/0905279524975eb9b42e_0_0.jpg", + "resolution": [ + "null", + "null" + ], + "imageType": "5" + }, + { + "href": "https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260418/33/0905279524965eb9b42e.jpg", + "resolution": [ + "null", + "null" + ], + "imageType": "3" + }, + { + "href": "https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260418/33/0905279524965eb9b42e_0_XL.jpg", + "resolution": [ + "null", + "null" + ], + "imageType": "3" + }, + { + "href": "https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260418/33/0905279524965eb9b42e_0_S.jpg", + "resolution": [ + "null", + "null" + ], + "imageType": "3" + }, + { + "href": "https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260418/33/0905279524965eb9b42e_0_M.jpg", + "resolution": [ + "null", + "null" + ], + "imageType": "3" + }, + { + "href": "https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260418/33/0905279524965eb9b42e_0_L.jpg", + "resolution": [ + "null", + "null" + ], + "imageType": "3" + }, + { + "href": "https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260418/33/0905279524965eb9b42e_0_XS.jpg", + "resolution": [ + "null", + "null" + ], + "imageType": "3" + }, + { + "href": "https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260418/33/0905279524965eb9b42e_0_0.jpg", + "resolution": [ + "null", + "null" + ], + "imageType": "3" + }, + { + "href": "https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260418/65/0905279524955eb9b42e.jpg", + "resolution": [ + "null", + "null" + ], + "imageType": "2" + }, + { + "href": "https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260418/92/0905279524945eb9b42e.jpg", + "resolution": [ + "null", + "null" + ], + "imageType": "1" + }, + { + "href": "https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260418/92/0905279524945eb9b42e_0_XL.jpg", + "resolution": [ + "null", + "null" + ], + "imageType": "1" + }, + { + "href": "https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260418/92/0905279524945eb9b42e_0_M.jpg", + "resolution": [ + "null", + "null" + ], + "imageType": "1" + }, + { + "href": "https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260418/92/0905279524945eb9b42e_0_L.jpg", + "resolution": [ + "null", + "null" + ], + "imageType": "1" + }, + { + "href": "https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260418/92/0905279524945eb9b42e_0_XS.jpg", + "resolution": [ + "null", + "null" + ], + "imageType": "1" + }, + { + "href": "https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260418/92/0905279524945eb9b42e_0_S.jpg", + "resolution": [ + "null", + "null" + ], + "imageType": "1" + }, + { + "href": "https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260418/92/0905279524945eb9b42e_0_0.jpg", + "resolution": [ + "null", + "null" + ], + "imageType": "1" + }, + { + "href": "https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260418/44/0905279514935eb9b42e.jpg", + "resolution": [ + "null", + "null" + ], + "imageType": "0" + } + ], + "externalContentCode": "1096753104", + "genres": "Haber", + "visittimes": "0", + "issubscribed": "0", + "programType": "program", + "gapFiller": "0", + "introduce": "Piyasaların ara verdiği anlarda, iş dünyasından ve günlük yaşamdan konuklar ekonomik gelişmeleri değerlendiriyor. Program, hayata dokunan ekonomik gelişmelerin etkilerini, piyasa trendlerini ve sektörel yorumları izleyiciyle paylaşıyor, izleyicilerin gündemi daha iyi anlamasını sağlıyor.", + "priceType": [ + { + "value": "0", + "key": "BTV" + }, + { + "value": "0", + "key": "TVOD" + } + ], + "endtime": "2026-04-22 13:00:00 UTC+03:00", + "seasonTotalCount": "0", + "recordedMediaIds": [ + "100067919" + ], + "picture": { + "blackwhite": "https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260418/58/0905279525005eb9b42e.webp", + "still": "https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260418/65/0905279524955eb9b42e.jpg", + "ad": "https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260418/4/0905279524975eb9b42e.jpg,https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260418/4/0905279524975eb9b42e_0_M.jpg,https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260418/4/0905279524975eb9b42e_0_L.jpg,https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260418/4/0905279524975eb9b42e_0_XS.jpg,https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260418/4/0905279524975eb9b42e_0_S.jpg,https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260418/4/0905279524975eb9b42e_0_XL.jpg,https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260418/4/0905279524975eb9b42e_0_0.jpg", + "icon": "https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260418/33/0905279524965eb9b42e.jpg,https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260418/33/0905279524965eb9b42e_0_XL.jpg,https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260418/33/0905279524965eb9b42e_0_S.jpg,https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260418/33/0905279524965eb9b42e_0_M.jpg,https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260418/33/0905279524965eb9b42e_0_L.jpg,https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260418/33/0905279524965eb9b42e_0_XS.jpg,https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260418/33/0905279524965eb9b42e_0_0.jpg", + "deflate": "https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260418/44/0905279514935eb9b42e.jpg", + "background": "https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260418/68/0905279524995eb9b42e.webp,https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260418/68/0905279524995eb9b42e_0_XS.webp,https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260418/68/0905279524995eb9b42e_0_S.webp,https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260418/68/0905279524995eb9b42e_0_XL.webp,https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260418/68/0905279524995eb9b42e_0_M.webp,https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260418/68/0905279524995eb9b42e_0_L.webp,https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260418/68/0905279524995eb9b42e_0_0.webp", + "draft": "https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260418/62/0905279524985eb9b42e.jpg,https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260418/62/0905279524985eb9b42e_0_S.jpg,https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260418/62/0905279524985eb9b42e_0_M.jpg,https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260418/62/0905279524985eb9b42e_0_XS.jpg,https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260418/62/0905279524985eb9b42e_0_L.jpg,https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260418/62/0905279524985eb9b42e_0_XL.jpg,https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260418/62/0905279524985eb9b42e_0_0.jpg", + "poster": "https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260418/92/0905279524945eb9b42e.jpg,https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260418/92/0905279524945eb9b42e_0_XL.jpg,https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260418/92/0905279524945eb9b42e_0_M.jpg,https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260418/92/0905279524945eb9b42e_0_L.jpg,https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260418/92/0905279524945eb9b42e_0_XS.jpg,https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260418/92/0905279524945eb9b42e_0_S.jpg,https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260418/92/0905279524945eb9b42e_0_0.jpg" + }, + "isLoyalty": "0", + "isppv": "0", + "mainGenre": "0", + "contentRight": "[{\"mediaId\":\"100067919\",\"businessType\":\"13\",\"enable\":\"0\"},{\"mediaId\":\"100067919\",\"businessType\":\"14\",\"enable\":\"0\"},{\"mediaId\":\"100067919\",\"businessType\":\"15\",\"enable\":\"1\"},{\"mediaId\":\"223943150\",\"businessType\":\"13\",\"enable\":\"0\"},{\"mediaId\":\"223943150\",\"businessType\":\"14\",\"enable\":\"0\"},{\"mediaId\":\"223943150\",\"businessType\":\"15\",\"enable\":\"1\"},{\"mediaId\":\"3000435\",\"businessType\":\"13\",\"enable\":\"0\"},{\"mediaId\":\"3000435\",\"businessType\":\"14\",\"enable\":\"0\"},{\"mediaId\":\"3000435\",\"businessType\":\"15\",\"enable\":\"1\"}]", + "channelid": "32" + }, + { + "country": "", + "starttime": "2026-04-22 13:00:00 UTC+03:00", + "type": "PROGRAM", + "isBlackout": "0", + "rerun": "0", + "ppvsubscribed": "0", + "foreignsn": "225199519", + "isLive": "0", + "ratingid": "0", + "episodeTotalCount": "0", + "id": "225199519", + "keyword": "Moderatör", + "contentType": "0", + "isnpvr": "1", + "slsType": "0", + "iscpvr": "0", + "advisory": [], + "extensionInfo": [ + { + "value": "Banttan", + "key": "broadcastType" + }, + { + "value": "545", + "key": "subGenre" + } + ], + "genreIds": [ + "1193" + ], + "istvod": "1", + "name": "Moderatör", + "tvodStatus": "1", + "pictures": [ + { + "href": "https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260414/43/2305322970645eb7f426.webp", + "resolution": [ + "null", + "null" + ], + "imageType": "10" + }, + { + "href": "https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260414/97/2305322970635eb7f426.webp", + "resolution": [ + "null", + "null" + ], + "imageType": "7" + }, + { + "href": "https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260414/97/2305322970635eb7f426_0_XS.webp", + "resolution": [ + "null", + "null" + ], + "imageType": "7" + }, + { + "href": "https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260414/97/2305322970635eb7f426_0_S.webp", + "resolution": [ + "null", + "null" + ], + "imageType": "7" + }, + { + "href": "https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260414/97/2305322970635eb7f426_0_XL.webp", + "resolution": [ + "null", + "null" + ], + "imageType": "7" + }, + { + "href": "https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260414/97/2305322970635eb7f426_0_M.webp", + "resolution": [ + "null", + "null" + ], + "imageType": "7" + }, + { + "href": "https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260414/97/2305322970635eb7f426_0_L.webp", + "resolution": [ + "null", + "null" + ], + "imageType": "7" + }, + { + "href": "https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260414/97/2305322970635eb7f426_0_0.webp", + "resolution": [ + "null", + "null" + ], + "imageType": "7" + }, + { + "href": "https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260414/56/2305322970625eb7f426.jpg", + "resolution": [ + "null", + "null" + ], + "imageType": "6" + }, + { + "href": "https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260414/56/2305322970625eb7f426_0_S.jpg", + "resolution": [ + "null", + "null" + ], + "imageType": "6" + }, + { + "href": "https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260414/56/2305322970625eb7f426_0_M.jpg", + "resolution": [ + "null", + "null" + ], + "imageType": "6" + }, + { + "href": "https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260414/56/2305322970625eb7f426_0_XS.jpg", + "resolution": [ + "null", + "null" + ], + "imageType": "6" + }, + { + "href": "https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260414/56/2305322970625eb7f426_0_L.jpg", + "resolution": [ + "null", + "null" + ], + "imageType": "6" + }, + { + "href": "https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260414/56/2305322970625eb7f426_0_XL.jpg", + "resolution": [ + "null", + "null" + ], + "imageType": "6" + }, + { + "href": "https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260414/56/2305322970625eb7f426_0_0.jpg", + "resolution": [ + "null", + "null" + ], + "imageType": "6" + }, + { + "href": "https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260414/30/2305322970615eb7f426.jpg", + "resolution": [ + "null", + "null" + ], + "imageType": "5" + }, + { + "href": "https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260414/30/2305322970615eb7f426_0_M.jpg", + "resolution": [ + "null", + "null" + ], + "imageType": "5" + }, + { + "href": "https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260414/30/2305322970615eb7f426_0_L.jpg", + "resolution": [ + "null", + "null" + ], + "imageType": "5" + }, + { + "href": "https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260414/30/2305322970615eb7f426_0_XS.jpg", + "resolution": [ + "null", + "null" + ], + "imageType": "5" + }, + { + "href": "https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260414/30/2305322970615eb7f426_0_S.jpg", + "resolution": [ + "null", + "null" + ], + "imageType": "5" + }, + { + "href": "https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260414/30/2305322970615eb7f426_0_XL.jpg", + "resolution": [ + "null", + "null" + ], + "imageType": "5" + }, + { + "href": "https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260414/30/2305322970615eb7f426_0_0.jpg", + "resolution": [ + "null", + "null" + ], + "imageType": "5" + }, + { + "href": "https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260414/81/2305322960605eb7f426.jpg", + "resolution": [ + "null", + "null" + ], + "imageType": "3" + }, + { + "href": "https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260414/81/2305322960605eb7f426_0_XL.jpg", + "resolution": [ + "null", + "null" + ], + "imageType": "3" + }, + { + "href": "https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260414/81/2305322960605eb7f426_0_S.jpg", + "resolution": [ + "null", + "null" + ], + "imageType": "3" + }, + { + "href": "https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260414/81/2305322960605eb7f426_0_M.jpg", + "resolution": [ + "null", + "null" + ], + "imageType": "3" + }, + { + "href": "https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260414/81/2305322960605eb7f426_0_L.jpg", + "resolution": [ + "null", + "null" + ], + "imageType": "3" + }, + { + "href": "https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260414/81/2305322960605eb7f426_0_XS.jpg", + "resolution": [ + "null", + "null" + ], + "imageType": "3" + }, + { + "href": "https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260414/81/2305322960605eb7f426_0_0.jpg", + "resolution": [ + "null", + "null" + ], + "imageType": "3" + }, + { + "href": "https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260414/17/2305322960595eb7f426.jpg", + "resolution": [ + "null", + "null" + ], + "imageType": "2" + }, + { + "href": "https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260414/39/2305322960585eb7f426.jpg", + "resolution": [ + "null", + "null" + ], + "imageType": "1" + }, + { + "href": "https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260414/39/2305322960585eb7f426_0_XL.jpg", + "resolution": [ + "null", + "null" + ], + "imageType": "1" + }, + { + "href": "https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260414/39/2305322960585eb7f426_0_M.jpg", + "resolution": [ + "null", + "null" + ], + "imageType": "1" + }, + { + "href": "https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260414/39/2305322960585eb7f426_0_L.jpg", + "resolution": [ + "null", + "null" + ], + "imageType": "1" + }, + { + "href": "https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260414/39/2305322960585eb7f426_0_XS.jpg", + "resolution": [ + "null", + "null" + ], + "imageType": "1" + }, + { + "href": "https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260414/39/2305322960585eb7f426_0_S.jpg", + "resolution": [ + "null", + "null" + ], + "imageType": "1" + }, + { + "href": "https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260414/39/2305322960585eb7f426_0_0.jpg", + "resolution": [ + "null", + "null" + ], + "imageType": "1" + }, + { + "href": "https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260414/73/2305322960575eb7f426.jpg", + "resolution": [ + "null", + "null" + ], + "imageType": "0" + } + ], + "externalContentCode": "1091860208", + "genres": "Haber", + "visittimes": "0", + "issubscribed": "0", + "programType": "program", + "gapFiller": "0", + "introduce": "Türkiye ve dünya gündemindeki sıcak gelişmeler, kritik başlıklar ve merak edilen konular, canlı bağlantılar, özel haberler ve uzman yorumlarıyla izleyiciye aktarılıyor. Program, olayların perde arkasını ve detaylarını da ele alarak güvenilir bir haber kaynağı sunuyor.", + "priceType": [ + { + "value": "0", + "key": "BTV" + }, + { + "value": "0", + "key": "TVOD" + } + ], + "endtime": "2026-04-22 15:00:00 UTC+03:00", + "seasonTotalCount": "0", + "recordedMediaIds": [ + "100067919" + ], + "picture": { + "blackwhite": "https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260414/43/2305322970645eb7f426.webp", + "still": "https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260414/17/2305322960595eb7f426.jpg", + "ad": "https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260414/30/2305322970615eb7f426.jpg,https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260414/30/2305322970615eb7f426_0_M.jpg,https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260414/30/2305322970615eb7f426_0_L.jpg,https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260414/30/2305322970615eb7f426_0_XS.jpg,https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260414/30/2305322970615eb7f426_0_S.jpg,https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260414/30/2305322970615eb7f426_0_XL.jpg,https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260414/30/2305322970615eb7f426_0_0.jpg", + "icon": "https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260414/81/2305322960605eb7f426.jpg,https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260414/81/2305322960605eb7f426_0_XL.jpg,https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260414/81/2305322960605eb7f426_0_S.jpg,https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260414/81/2305322960605eb7f426_0_M.jpg,https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260414/81/2305322960605eb7f426_0_L.jpg,https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260414/81/2305322960605eb7f426_0_XS.jpg,https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260414/81/2305322960605eb7f426_0_0.jpg", + "deflate": "https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260414/73/2305322960575eb7f426.jpg", + "background": "https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260414/97/2305322970635eb7f426.webp,https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260414/97/2305322970635eb7f426_0_XS.webp,https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260414/97/2305322970635eb7f426_0_S.webp,https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260414/97/2305322970635eb7f426_0_XL.webp,https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260414/97/2305322970635eb7f426_0_M.webp,https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260414/97/2305322970635eb7f426_0_L.webp,https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260414/97/2305322970635eb7f426_0_0.webp", + "draft": "https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260414/56/2305322970625eb7f426.jpg,https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260414/56/2305322970625eb7f426_0_S.jpg,https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260414/56/2305322970625eb7f426_0_M.jpg,https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260414/56/2305322970625eb7f426_0_XS.jpg,https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260414/56/2305322970625eb7f426_0_L.jpg,https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260414/56/2305322970625eb7f426_0_XL.jpg,https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260414/56/2305322970625eb7f426_0_0.jpg", + "poster": "https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260414/39/2305322960585eb7f426.jpg,https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260414/39/2305322960585eb7f426_0_XL.jpg,https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260414/39/2305322960585eb7f426_0_M.jpg,https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260414/39/2305322960585eb7f426_0_L.jpg,https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260414/39/2305322960585eb7f426_0_XS.jpg,https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260414/39/2305322960585eb7f426_0_S.jpg,https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260414/39/2305322960585eb7f426_0_0.jpg" + }, + "isLoyalty": "0", + "isppv": "0", + "mainGenre": "0", + "contentRight": "[{\"mediaId\":\"100067919\",\"businessType\":\"13\",\"enable\":\"0\"},{\"mediaId\":\"100067919\",\"businessType\":\"14\",\"enable\":\"0\"},{\"mediaId\":\"100067919\",\"businessType\":\"15\",\"enable\":\"1\"},{\"mediaId\":\"223943150\",\"businessType\":\"13\",\"enable\":\"0\"},{\"mediaId\":\"223943150\",\"businessType\":\"14\",\"enable\":\"0\"},{\"mediaId\":\"223943150\",\"businessType\":\"15\",\"enable\":\"1\"},{\"mediaId\":\"3000435\",\"businessType\":\"13\",\"enable\":\"0\"},{\"mediaId\":\"3000435\",\"businessType\":\"14\",\"enable\":\"0\"},{\"mediaId\":\"3000435\",\"businessType\":\"15\",\"enable\":\"1\"}]", + "channelid": "32" + }, + { + "country": "", + "starttime": "2026-04-22 15:00:00 UTC+03:00", + "type": "PROGRAM", + "isBlackout": "0", + "rerun": "0", + "ppvsubscribed": "0", + "foreignsn": "225199525", + "isLive": "0", + "ratingid": "0", + "episodeTotalCount": "0", + "id": "225199525", + "keyword": "Moderatör", + "contentType": "0", + "isnpvr": "1", + "slsType": "0", + "iscpvr": "0", + "advisory": [], + "extensionInfo": [ + { + "value": "Banttan", + "key": "broadcastType" + }, + { + "value": "545", + "key": "subGenre" + } + ], + "genreIds": [ + "1193" + ], + "istvod": "1", + "name": "Moderatör", + "tvodStatus": "1", + "pictures": [ + { + "href": "https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260414/62/2305322980725eb7f426.webp", + "resolution": [ + "null", + "null" + ], + "imageType": "10" + }, + { + "href": "https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260414/8/2305322980715eb7f426.webp", + "resolution": [ + "null", + "null" + ], + "imageType": "7" + }, + { + "href": "https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260414/8/2305322980715eb7f426_0_XS.webp", + "resolution": [ + "null", + "null" + ], + "imageType": "7" + }, + { + "href": "https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260414/8/2305322980715eb7f426_0_S.webp", + "resolution": [ + "null", + "null" + ], + "imageType": "7" + }, + { + "href": "https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260414/8/2305322980715eb7f426_0_XL.webp", + "resolution": [ + "null", + "null" + ], + "imageType": "7" + }, + { + "href": "https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260414/8/2305322980715eb7f426_0_M.webp", + "resolution": [ + "null", + "null" + ], + "imageType": "7" + }, + { + "href": "https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260414/8/2305322980715eb7f426_0_L.webp", + "resolution": [ + "null", + "null" + ], + "imageType": "7" + }, + { + "href": "https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260414/8/2305322980715eb7f426_0_0.webp", + "resolution": [ + "null", + "null" + ], + "imageType": "7" + }, + { + "href": "https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260414/1/2305322980705eb7f426.jpg", + "resolution": [ + "null", + "null" + ], + "imageType": "6" + }, + { + "href": "https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260414/1/2305322980705eb7f426_0_S.jpg", + "resolution": [ + "null", + "null" + ], + "imageType": "6" + }, + { + "href": "https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260414/1/2305322980705eb7f426_0_M.jpg", + "resolution": [ + "null", + "null" + ], + "imageType": "6" + }, + { + "href": "https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260414/1/2305322980705eb7f426_0_XS.jpg", + "resolution": [ + "null", + "null" + ], + "imageType": "6" + }, + { + "href": "https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260414/1/2305322980705eb7f426_0_L.jpg", + "resolution": [ + "null", + "null" + ], + "imageType": "6" + }, + { + "href": "https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260414/1/2305322980705eb7f426_0_XL.jpg", + "resolution": [ + "null", + "null" + ], + "imageType": "6" + }, + { + "href": "https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260414/1/2305322980705eb7f426_0_0.jpg", + "resolution": [ + "null", + "null" + ], + "imageType": "6" + }, + { + "href": "https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260414/23/2305322980695eb7f426.jpg", + "resolution": [ + "null", + "null" + ], + "imageType": "5" + }, + { + "href": "https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260414/23/2305322980695eb7f426_0_M.jpg", + "resolution": [ + "null", + "null" + ], + "imageType": "5" + }, + { + "href": "https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260414/23/2305322980695eb7f426_0_L.jpg", + "resolution": [ + "null", + "null" + ], + "imageType": "5" + }, + { + "href": "https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260414/23/2305322980695eb7f426_0_XS.jpg", + "resolution": [ + "null", + "null" + ], + "imageType": "5" + }, + { + "href": "https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260414/23/2305322980695eb7f426_0_S.jpg", + "resolution": [ + "null", + "null" + ], + "imageType": "5" + }, + { + "href": "https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260414/23/2305322980695eb7f426_0_XL.jpg", + "resolution": [ + "null", + "null" + ], + "imageType": "5" + }, + { + "href": "https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260414/23/2305322980695eb7f426_0_0.jpg", + "resolution": [ + "null", + "null" + ], + "imageType": "5" + }, + { + "href": "https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260414/92/2305322970685eb7f426.jpg", + "resolution": [ + "null", + "null" + ], + "imageType": "3" + }, + { + "href": "https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260414/92/2305322970685eb7f426_0_XL.jpg", + "resolution": [ + "null", + "null" + ], + "imageType": "3" + }, + { + "href": "https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260414/92/2305322970685eb7f426_0_S.jpg", + "resolution": [ + "null", + "null" + ], + "imageType": "3" + }, + { + "href": "https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260414/92/2305322970685eb7f426_0_M.jpg", + "resolution": [ + "null", + "null" + ], + "imageType": "3" + }, + { + "href": "https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260414/92/2305322970685eb7f426_0_L.jpg", + "resolution": [ + "null", + "null" + ], + "imageType": "3" + }, + { + "href": "https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260414/92/2305322970685eb7f426_0_XS.jpg", + "resolution": [ + "null", + "null" + ], + "imageType": "3" + }, + { + "href": "https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260414/92/2305322970685eb7f426_0_0.jpg", + "resolution": [ + "null", + "null" + ], + "imageType": "3" + }, + { + "href": "https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260414/17/2305322970675eb7f426.jpg", + "resolution": [ + "null", + "null" + ], + "imageType": "2" + }, + { + "href": "https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260414/23/2305322970665eb7f426.jpg", + "resolution": [ + "null", + "null" + ], + "imageType": "1" + }, + { + "href": "https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260414/23/2305322970665eb7f426_0_XL.jpg", + "resolution": [ + "null", + "null" + ], + "imageType": "1" + }, + { + "href": "https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260414/23/2305322970665eb7f426_0_M.jpg", + "resolution": [ + "null", + "null" + ], + "imageType": "1" + }, + { + "href": "https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260414/23/2305322970665eb7f426_0_L.jpg", + "resolution": [ + "null", + "null" + ], + "imageType": "1" + }, + { + "href": "https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260414/23/2305322970665eb7f426_0_XS.jpg", + "resolution": [ + "null", + "null" + ], + "imageType": "1" + }, + { + "href": "https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260414/23/2305322970665eb7f426_0_S.jpg", + "resolution": [ + "null", + "null" + ], + "imageType": "1" + }, + { + "href": "https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260414/23/2305322970665eb7f426_0_0.jpg", + "resolution": [ + "null", + "null" + ], + "imageType": "1" + }, + { + "href": "https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260414/26/2305322970655eb7f426.jpg", + "resolution": [ + "null", + "null" + ], + "imageType": "0" + } + ], + "externalContentCode": "1091860196", + "genres": "Haber", + "visittimes": "0", + "issubscribed": "0", + "programType": "program", + "gapFiller": "0", + "introduce": "Moderatör, güncel haberleri net ve anlaşılır bir dille aktaran, izleyiciye güvenilir ve tarafsız bilgi sunan news-info programıdır.", + "priceType": [ + { + "value": "0", + "key": "BTV" + }, + { + "value": "0", + "key": "TVOD" + } + ], + "endtime": "2026-04-22 17:00:00 UTC+03:00", + "seasonTotalCount": "0", + "recordedMediaIds": [ + "100067919" + ], + "picture": { + "blackwhite": "https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260414/62/2305322980725eb7f426.webp", + "still": "https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260414/17/2305322970675eb7f426.jpg", + "ad": "https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260414/23/2305322980695eb7f426.jpg,https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260414/23/2305322980695eb7f426_0_M.jpg,https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260414/23/2305322980695eb7f426_0_L.jpg,https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260414/23/2305322980695eb7f426_0_XS.jpg,https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260414/23/2305322980695eb7f426_0_S.jpg,https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260414/23/2305322980695eb7f426_0_XL.jpg,https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260414/23/2305322980695eb7f426_0_0.jpg", + "icon": "https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260414/92/2305322970685eb7f426.jpg,https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260414/92/2305322970685eb7f426_0_XL.jpg,https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260414/92/2305322970685eb7f426_0_S.jpg,https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260414/92/2305322970685eb7f426_0_M.jpg,https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260414/92/2305322970685eb7f426_0_L.jpg,https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260414/92/2305322970685eb7f426_0_XS.jpg,https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260414/92/2305322970685eb7f426_0_0.jpg", + "deflate": "https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260414/26/2305322970655eb7f426.jpg", + "background": "https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260414/8/2305322980715eb7f426.webp,https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260414/8/2305322980715eb7f426_0_XS.webp,https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260414/8/2305322980715eb7f426_0_S.webp,https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260414/8/2305322980715eb7f426_0_XL.webp,https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260414/8/2305322980715eb7f426_0_M.webp,https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260414/8/2305322980715eb7f426_0_L.webp,https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260414/8/2305322980715eb7f426_0_0.webp", + "draft": "https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260414/1/2305322980705eb7f426.jpg,https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260414/1/2305322980705eb7f426_0_S.jpg,https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260414/1/2305322980705eb7f426_0_M.jpg,https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260414/1/2305322980705eb7f426_0_XS.jpg,https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260414/1/2305322980705eb7f426_0_L.jpg,https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260414/1/2305322980705eb7f426_0_XL.jpg,https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260414/1/2305322980705eb7f426_0_0.jpg", + "poster": "https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260414/23/2305322970665eb7f426.jpg,https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260414/23/2305322970665eb7f426_0_XL.jpg,https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260414/23/2305322970665eb7f426_0_M.jpg,https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260414/23/2305322970665eb7f426_0_L.jpg,https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260414/23/2305322970665eb7f426_0_XS.jpg,https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260414/23/2305322970665eb7f426_0_S.jpg,https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260414/23/2305322970665eb7f426_0_0.jpg" + }, + "isLoyalty": "0", + "isppv": "0", + "mainGenre": "0", + "contentRight": "[{\"mediaId\":\"100067919\",\"businessType\":\"13\",\"enable\":\"0\"},{\"mediaId\":\"100067919\",\"businessType\":\"14\",\"enable\":\"0\"},{\"mediaId\":\"100067919\",\"businessType\":\"15\",\"enable\":\"1\"},{\"mediaId\":\"223943150\",\"businessType\":\"13\",\"enable\":\"0\"},{\"mediaId\":\"223943150\",\"businessType\":\"14\",\"enable\":\"0\"},{\"mediaId\":\"223943150\",\"businessType\":\"15\",\"enable\":\"1\"},{\"mediaId\":\"3000435\",\"businessType\":\"13\",\"enable\":\"0\"},{\"mediaId\":\"3000435\",\"businessType\":\"14\",\"enable\":\"0\"},{\"mediaId\":\"3000435\",\"businessType\":\"15\",\"enable\":\"1\"}]", + "channelid": "32" + }, + { + "country": "", + "starttime": "2026-04-22 17:00:00 UTC+03:00", + "type": "PROGRAM", + "isBlackout": "0", + "rerun": "0", + "ppvsubscribed": "0", + "foreignsn": "225200427", + "isLive": "0", + "ratingid": "0", + "episodeTotalCount": "0", + "id": "225200427", + "keyword": "Moderatör", + "contentType": "0", + "isnpvr": "1", + "slsType": "0", + "iscpvr": "0", + "advisory": [], + "extensionInfo": [ + { + "value": "Banttan", + "key": "broadcastType" + }, + { + "value": "545", + "key": "subGenre" + } + ], + "genreIds": [ + "1193" + ], + "istvod": "1", + "name": "Moderatör", + "tvodStatus": "1", + "pictures": [ + { + "href": "https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260414/88/2305322980785eb7f426.jpg", + "resolution": [ + "null", + "null" + ], + "imageType": "6" + }, + { + "href": "https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260414/88/2305322980785eb7f426_0_S.jpg", + "resolution": [ + "null", + "null" + ], + "imageType": "6" + }, + { + "href": "https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260414/88/2305322980785eb7f426_0_M.jpg", + "resolution": [ + "null", + "null" + ], + "imageType": "6" + }, + { + "href": "https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260414/88/2305322980785eb7f426_0_XS.jpg", + "resolution": [ + "null", + "null" + ], + "imageType": "6" + }, + { + "href": "https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260414/88/2305322980785eb7f426_0_L.jpg", + "resolution": [ + "null", + "null" + ], + "imageType": "6" + }, + { + "href": "https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260414/88/2305322980785eb7f426_0_XL.jpg", + "resolution": [ + "null", + "null" + ], + "imageType": "6" + }, + { + "href": "https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260414/88/2305322980785eb7f426_0_0.jpg", + "resolution": [ + "null", + "null" + ], + "imageType": "6" + }, + { + "href": "https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260414/65/2305322980775eb7f426.jpg", + "resolution": [ + "null", + "null" + ], + "imageType": "5" + }, + { + "href": "https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260414/65/2305322980775eb7f426_0_M.jpg", + "resolution": [ + "null", + "null" + ], + "imageType": "5" + }, + { + "href": "https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260414/65/2305322980775eb7f426_0_L.jpg", + "resolution": [ + "null", + "null" + ], + "imageType": "5" + }, + { + "href": "https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260414/65/2305322980775eb7f426_0_XS.jpg", + "resolution": [ + "null", + "null" + ], + "imageType": "5" + }, + { + "href": "https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260414/65/2305322980775eb7f426_0_S.jpg", + "resolution": [ + "null", + "null" + ], + "imageType": "5" + }, + { + "href": "https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260414/65/2305322980775eb7f426_0_XL.jpg", + "resolution": [ + "null", + "null" + ], + "imageType": "5" + }, + { + "href": "https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260414/65/2305322980775eb7f426_0_0.jpg", + "resolution": [ + "null", + "null" + ], + "imageType": "5" + }, + { + "href": "https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260414/97/2305322980765eb7f426.jpg", + "resolution": [ + "null", + "null" + ], + "imageType": "3" + }, + { + "href": "https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260414/97/2305322980765eb7f426_0_XL.jpg", + "resolution": [ + "null", + "null" + ], + "imageType": "3" + }, + { + "href": "https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260414/97/2305322980765eb7f426_0_S.jpg", + "resolution": [ + "null", + "null" + ], + "imageType": "3" + }, + { + "href": "https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260414/97/2305322980765eb7f426_0_M.jpg", + "resolution": [ + "null", + "null" + ], + "imageType": "3" + }, + { + "href": "https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260414/97/2305322980765eb7f426_0_L.jpg", + "resolution": [ + "null", + "null" + ], + "imageType": "3" + }, + { + "href": "https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260414/97/2305322980765eb7f426_0_XS.jpg", + "resolution": [ + "null", + "null" + ], + "imageType": "3" + }, + { + "href": "https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260414/97/2305322980765eb7f426_0_0.jpg", + "resolution": [ + "null", + "null" + ], + "imageType": "3" + }, + { + "href": "https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260414/33/2305322980755eb7f426.jpg", + "resolution": [ + "null", + "null" + ], + "imageType": "2" + }, + { + "href": "https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260414/10/2305322980745eb7f426.jpg", + "resolution": [ + "null", + "null" + ], + "imageType": "1" + }, + { + "href": "https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260414/10/2305322980745eb7f426_0_XL.jpg", + "resolution": [ + "null", + "null" + ], + "imageType": "1" + }, + { + "href": "https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260414/10/2305322980745eb7f426_0_M.jpg", + "resolution": [ + "null", + "null" + ], + "imageType": "1" + }, + { + "href": "https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260414/10/2305322980745eb7f426_0_L.jpg", + "resolution": [ + "null", + "null" + ], + "imageType": "1" + }, + { + "href": "https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260414/10/2305322980745eb7f426_0_XS.jpg", + "resolution": [ + "null", + "null" + ], + "imageType": "1" + }, + { + "href": "https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260414/10/2305322980745eb7f426_0_S.jpg", + "resolution": [ + "null", + "null" + ], + "imageType": "1" + }, + { + "href": "https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260414/10/2305322980745eb7f426_0_0.jpg", + "resolution": [ + "null", + "null" + ], + "imageType": "1" + }, + { + "href": "https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260414/81/2305322980735eb7f426.jpg", + "resolution": [ + "null", + "null" + ], + "imageType": "0" + }, + { + "href": "https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260414/83/2305322980805eb7f426.webp", + "resolution": [ + "null", + "null" + ], + "imageType": "10" + }, + { + "href": "https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260414/83/2305322980795eb7f426.webp", + "resolution": [ + "null", + "null" + ], + "imageType": "7" + }, + { + "href": "https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260414/83/2305322980795eb7f426_0_XS.webp", + "resolution": [ + "null", + "null" + ], + "imageType": "7" + }, + { + "href": "https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260414/83/2305322980795eb7f426_0_S.webp", + "resolution": [ + "null", + "null" + ], + "imageType": "7" + }, + { + "href": "https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260414/83/2305322980795eb7f426_0_XL.webp", + "resolution": [ + "null", + "null" + ], + "imageType": "7" + }, + { + "href": "https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260414/83/2305322980795eb7f426_0_M.webp", + "resolution": [ + "null", + "null" + ], + "imageType": "7" + }, + { + "href": "https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260414/83/2305322980795eb7f426_0_L.webp", + "resolution": [ + "null", + "null" + ], + "imageType": "7" + }, + { + "href": "https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260414/83/2305322980795eb7f426_0_0.webp", + "resolution": [ + "null", + "null" + ], + "imageType": "7" + } + ], + "externalContentCode": "1091860197", + "genres": "Haber", + "visittimes": "0", + "issubscribed": "0", + "programType": "program", + "gapFiller": "0", + "introduce": "Hızlı, tarafsız ve doğru haber anlayışıyla Türkiye ve dünya gündemi, sıcak gelişmeler, özel haberler ve canlı bağlantılar hafta içi her gün Moderatör'de ekrana geliyor.", + "priceType": [ + { + "value": "0", + "key": "BTV" + }, + { + "value": "0", + "key": "TVOD" + } + ], + "endtime": "2026-04-22 18:00:00 UTC+03:00", + "seasonTotalCount": "0", + "recordedMediaIds": [ + "100067919" + ], + "picture": { + "blackwhite": "https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260414/83/2305322980805eb7f426.webp", + "still": "https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260414/33/2305322980755eb7f426.jpg", + "ad": "https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260414/65/2305322980775eb7f426.jpg,https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260414/65/2305322980775eb7f426_0_M.jpg,https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260414/65/2305322980775eb7f426_0_L.jpg,https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260414/65/2305322980775eb7f426_0_XS.jpg,https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260414/65/2305322980775eb7f426_0_S.jpg,https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260414/65/2305322980775eb7f426_0_XL.jpg,https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260414/65/2305322980775eb7f426_0_0.jpg", + "icon": "https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260414/97/2305322980765eb7f426.jpg,https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260414/97/2305322980765eb7f426_0_XL.jpg,https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260414/97/2305322980765eb7f426_0_S.jpg,https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260414/97/2305322980765eb7f426_0_M.jpg,https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260414/97/2305322980765eb7f426_0_L.jpg,https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260414/97/2305322980765eb7f426_0_XS.jpg,https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260414/97/2305322980765eb7f426_0_0.jpg", + "deflate": "https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260414/81/2305322980735eb7f426.jpg", + "background": "https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260414/83/2305322980795eb7f426.webp,https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260414/83/2305322980795eb7f426_0_XS.webp,https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260414/83/2305322980795eb7f426_0_S.webp,https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260414/83/2305322980795eb7f426_0_XL.webp,https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260414/83/2305322980795eb7f426_0_M.webp,https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260414/83/2305322980795eb7f426_0_L.webp,https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260414/83/2305322980795eb7f426_0_0.webp", + "draft": "https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260414/88/2305322980785eb7f426.jpg,https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260414/88/2305322980785eb7f426_0_S.jpg,https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260414/88/2305322980785eb7f426_0_M.jpg,https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260414/88/2305322980785eb7f426_0_XS.jpg,https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260414/88/2305322980785eb7f426_0_L.jpg,https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260414/88/2305322980785eb7f426_0_XL.jpg,https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260414/88/2305322980785eb7f426_0_0.jpg", + "poster": "https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260414/10/2305322980745eb7f426.jpg,https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260414/10/2305322980745eb7f426_0_XL.jpg,https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260414/10/2305322980745eb7f426_0_M.jpg,https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260414/10/2305322980745eb7f426_0_L.jpg,https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260414/10/2305322980745eb7f426_0_XS.jpg,https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260414/10/2305322980745eb7f426_0_S.jpg,https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260414/10/2305322980745eb7f426_0_0.jpg" + }, + "isLoyalty": "0", + "isppv": "0", + "mainGenre": "0", + "contentRight": "[{\"mediaId\":\"100067919\",\"businessType\":\"13\",\"enable\":\"0\"},{\"mediaId\":\"100067919\",\"businessType\":\"14\",\"enable\":\"0\"},{\"mediaId\":\"100067919\",\"businessType\":\"15\",\"enable\":\"1\"},{\"mediaId\":\"223943150\",\"businessType\":\"13\",\"enable\":\"0\"},{\"mediaId\":\"223943150\",\"businessType\":\"14\",\"enable\":\"0\"},{\"mediaId\":\"223943150\",\"businessType\":\"15\",\"enable\":\"1\"},{\"mediaId\":\"3000435\",\"businessType\":\"13\",\"enable\":\"0\"},{\"mediaId\":\"3000435\",\"businessType\":\"14\",\"enable\":\"0\"},{\"mediaId\":\"3000435\",\"businessType\":\"15\",\"enable\":\"1\"}]", + "channelid": "32" + }, + { + "country": "", + "starttime": "2026-04-22 18:00:00 UTC+03:00", + "type": "PROGRAM", + "isBlackout": "0", + "rerun": "0", + "ppvsubscribed": "0", + "foreignsn": "225200433", + "isLive": "0", + "ratingid": "0", + "episodeTotalCount": "0", + "id": "225200433", + "keyword": "Akşam Haberleri", + "contentType": "0", + "isnpvr": "1", + "slsType": "0", + "iscpvr": "0", + "advisory": [], + "extensionInfo": [ + { + "value": "Banttan", + "key": "broadcastType" + }, + { + "value": "545", + "key": "subGenre" + } + ], + "genreIds": [ + "1193" + ], + "istvod": "1", + "name": "Akşam Haberleri", + "tvodStatus": "1", + "pictures": [ + { + "href": "https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260414/17/2305322990885eb7f426.webp", + "resolution": [ + "null", + "null" + ], + "imageType": "10" + }, + { + "href": "https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260414/52/2305322990875eb7f426.webp", + "resolution": [ + "null", + "null" + ], + "imageType": "7" + }, + { + "href": "https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260414/52/2305322990875eb7f426_0_XS.webp", + "resolution": [ + "null", + "null" + ], + "imageType": "7" + }, + { + "href": "https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260414/52/2305322990875eb7f426_0_S.webp", + "resolution": [ + "null", + "null" + ], + "imageType": "7" + }, + { + "href": "https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260414/52/2305322990875eb7f426_0_XL.webp", + "resolution": [ + "null", + "null" + ], + "imageType": "7" + }, + { + "href": "https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260414/52/2305322990875eb7f426_0_M.webp", + "resolution": [ + "null", + "null" + ], + "imageType": "7" + }, + { + "href": "https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260414/52/2305322990875eb7f426_0_L.webp", + "resolution": [ + "null", + "null" + ], + "imageType": "7" + }, + { + "href": "https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260414/52/2305322990875eb7f426_0_0.webp", + "resolution": [ + "null", + "null" + ], + "imageType": "7" + }, + { + "href": "https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260414/69/2305322980865eb7f426.jpg", + "resolution": [ + "null", + "null" + ], + "imageType": "6" + }, + { + "href": "https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260414/69/2305322980865eb7f426_0_S.jpg", + "resolution": [ + "null", + "null" + ], + "imageType": "6" + }, + { + "href": "https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260414/69/2305322980865eb7f426_0_M.jpg", + "resolution": [ + "null", + "null" + ], + "imageType": "6" + }, + { + "href": "https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260414/69/2305322980865eb7f426_0_XS.jpg", + "resolution": [ + "null", + "null" + ], + "imageType": "6" + }, + { + "href": "https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260414/69/2305322980865eb7f426_0_L.jpg", + "resolution": [ + "null", + "null" + ], + "imageType": "6" + }, + { + "href": "https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260414/69/2305322980865eb7f426_0_XL.jpg", + "resolution": [ + "null", + "null" + ], + "imageType": "6" + }, + { + "href": "https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260414/69/2305322980865eb7f426_0_0.jpg", + "resolution": [ + "null", + "null" + ], + "imageType": "6" + }, + { + "href": "https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260414/84/2305322980855eb7f426.jpg", + "resolution": [ + "null", + "null" + ], + "imageType": "5" + }, + { + "href": "https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260414/84/2305322980855eb7f426_0_M.jpg", + "resolution": [ + "null", + "null" + ], + "imageType": "5" + }, + { + "href": "https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260414/84/2305322980855eb7f426_0_L.jpg", + "resolution": [ + "null", + "null" + ], + "imageType": "5" + }, + { + "href": "https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260414/84/2305322980855eb7f426_0_XS.jpg", + "resolution": [ + "null", + "null" + ], + "imageType": "5" + }, + { + "href": "https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260414/84/2305322980855eb7f426_0_S.jpg", + "resolution": [ + "null", + "null" + ], + "imageType": "5" + }, + { + "href": "https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260414/84/2305322980855eb7f426_0_XL.jpg", + "resolution": [ + "null", + "null" + ], + "imageType": "5" + }, + { + "href": "https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260414/84/2305322980855eb7f426_0_0.jpg", + "resolution": [ + "null", + "null" + ], + "imageType": "5" + }, + { + "href": "https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260414/2/2305322980845eb7f426.jpg", + "resolution": [ + "null", + "null" + ], + "imageType": "3" + }, + { + "href": "https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260414/2/2305322980845eb7f426_0_XL.jpg", + "resolution": [ + "null", + "null" + ], + "imageType": "3" + }, + { + "href": "https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260414/2/2305322980845eb7f426_0_S.jpg", + "resolution": [ + "null", + "null" + ], + "imageType": "3" + }, + { + "href": "https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260414/2/2305322980845eb7f426_0_M.jpg", + "resolution": [ + "null", + "null" + ], + "imageType": "3" + }, + { + "href": "https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260414/2/2305322980845eb7f426_0_L.jpg", + "resolution": [ + "null", + "null" + ], + "imageType": "3" + }, + { + "href": "https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260414/2/2305322980845eb7f426_0_XS.jpg", + "resolution": [ + "null", + "null" + ], + "imageType": "3" + }, + { + "href": "https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260414/2/2305322980845eb7f426_0_0.jpg", + "resolution": [ + "null", + "null" + ], + "imageType": "3" + }, + { + "href": "https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260414/10/2305322980835eb7f426.jpg", + "resolution": [ + "null", + "null" + ], + "imageType": "2" + }, + { + "href": "https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260414/92/2305322980825eb7f426.jpg", + "resolution": [ + "null", + "null" + ], + "imageType": "1" + }, + { + "href": "https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260414/92/2305322980825eb7f426_0_XL.jpg", + "resolution": [ + "null", + "null" + ], + "imageType": "1" + }, + { + "href": "https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260414/92/2305322980825eb7f426_0_M.jpg", + "resolution": [ + "null", + "null" + ], + "imageType": "1" + }, + { + "href": "https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260414/92/2305322980825eb7f426_0_L.jpg", + "resolution": [ + "null", + "null" + ], + "imageType": "1" + }, + { + "href": "https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260414/92/2305322980825eb7f426_0_XS.jpg", + "resolution": [ + "null", + "null" + ], + "imageType": "1" + }, + { + "href": "https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260414/92/2305322980825eb7f426_0_S.jpg", + "resolution": [ + "null", + "null" + ], + "imageType": "1" + }, + { + "href": "https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260414/92/2305322980825eb7f426_0_0.jpg", + "resolution": [ + "null", + "null" + ], + "imageType": "1" + }, + { + "href": "https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260414/90/2305322980815eb7f426.jpg", + "resolution": [ + "null", + "null" + ], + "imageType": "0" + } + ], + "externalContentCode": "1091860198", + "genres": "Haber", + "visittimes": "0", + "issubscribed": "0", + "programType": "program", + "gapFiller": "0", + "introduce": "Türkiye ve dünyanın gündemindeki önemli haberler, merak edilen sorular ve uzman konuk değerlendirmeleri programda ekrana yansıyor. İzleyiciler, olayların arka planını ve gelişmelerin detaylarını öğrenme imkânı buluyor.", + "priceType": [ + { + "value": "0", + "key": "BTV" + }, + { + "value": "0", + "key": "TVOD" + } + ], + "endtime": "2026-04-22 20:00:00 UTC+03:00", + "seasonTotalCount": "0", + "recordedMediaIds": [ + "100067919" + ], + "picture": { + "blackwhite": "https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260414/17/2305322990885eb7f426.webp", + "still": "https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260414/10/2305322980835eb7f426.jpg", + "ad": "https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260414/84/2305322980855eb7f426.jpg,https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260414/84/2305322980855eb7f426_0_M.jpg,https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260414/84/2305322980855eb7f426_0_L.jpg,https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260414/84/2305322980855eb7f426_0_XS.jpg,https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260414/84/2305322980855eb7f426_0_S.jpg,https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260414/84/2305322980855eb7f426_0_XL.jpg,https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260414/84/2305322980855eb7f426_0_0.jpg", + "icon": "https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260414/2/2305322980845eb7f426.jpg,https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260414/2/2305322980845eb7f426_0_XL.jpg,https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260414/2/2305322980845eb7f426_0_S.jpg,https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260414/2/2305322980845eb7f426_0_M.jpg,https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260414/2/2305322980845eb7f426_0_L.jpg,https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260414/2/2305322980845eb7f426_0_XS.jpg,https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260414/2/2305322980845eb7f426_0_0.jpg", + "deflate": "https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260414/90/2305322980815eb7f426.jpg", + "background": "https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260414/52/2305322990875eb7f426.webp,https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260414/52/2305322990875eb7f426_0_XS.webp,https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260414/52/2305322990875eb7f426_0_S.webp,https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260414/52/2305322990875eb7f426_0_XL.webp,https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260414/52/2305322990875eb7f426_0_M.webp,https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260414/52/2305322990875eb7f426_0_L.webp,https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260414/52/2305322990875eb7f426_0_0.webp", + "draft": "https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260414/69/2305322980865eb7f426.jpg,https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260414/69/2305322980865eb7f426_0_S.jpg,https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260414/69/2305322980865eb7f426_0_M.jpg,https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260414/69/2305322980865eb7f426_0_XS.jpg,https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260414/69/2305322980865eb7f426_0_L.jpg,https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260414/69/2305322980865eb7f426_0_XL.jpg,https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260414/69/2305322980865eb7f426_0_0.jpg", + "poster": "https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260414/92/2305322980825eb7f426.jpg,https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260414/92/2305322980825eb7f426_0_XL.jpg,https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260414/92/2305322980825eb7f426_0_M.jpg,https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260414/92/2305322980825eb7f426_0_L.jpg,https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260414/92/2305322980825eb7f426_0_XS.jpg,https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260414/92/2305322980825eb7f426_0_S.jpg,https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260414/92/2305322980825eb7f426_0_0.jpg" + }, + "isLoyalty": "0", + "isppv": "0", + "mainGenre": "0", + "contentRight": "[{\"mediaId\":\"100067919\",\"businessType\":\"13\",\"enable\":\"0\"},{\"mediaId\":\"100067919\",\"businessType\":\"14\",\"enable\":\"0\"},{\"mediaId\":\"100067919\",\"businessType\":\"15\",\"enable\":\"1\"},{\"mediaId\":\"223943150\",\"businessType\":\"13\",\"enable\":\"0\"},{\"mediaId\":\"223943150\",\"businessType\":\"14\",\"enable\":\"0\"},{\"mediaId\":\"223943150\",\"businessType\":\"15\",\"enable\":\"1\"},{\"mediaId\":\"3000435\",\"businessType\":\"13\",\"enable\":\"0\"},{\"mediaId\":\"3000435\",\"businessType\":\"14\",\"enable\":\"0\"},{\"mediaId\":\"3000435\",\"businessType\":\"15\",\"enable\":\"1\"}]", + "channelid": "32" + }, + { + "country": "", + "starttime": "2026-04-22 20:00:00 UTC+03:00", + "type": "PROGRAM", + "isBlackout": "0", + "rerun": "0", + "ppvsubscribed": "0", + "foreignsn": "225390366", + "isLive": "0", + "ratingid": "0", + "episodeTotalCount": "0", + "id": "225390366", + "keyword": "Açık Görüş", + "contentType": "0", + "isnpvr": "1", + "slsType": "0", + "iscpvr": "0", + "advisory": [], + "extensionInfo": [ + { + "value": "Banttan", + "key": "broadcastType" + }, + { + "value": "572", + "key": "subGenre" + } + ], + "genreIds": [ + "1183" + ], + "istvod": "1", + "name": "Açık Görüş", + "tvodStatus": "1", + "pictures": [ + { + "href": "https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260418/73/0905279525015eb9b42e.jpg", + "resolution": [ + "null", + "null" + ], + "imageType": "0" + }, + { + "href": "https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260418/22/0905279525045eb9b42e.jpg", + "resolution": [ + "null", + "null" + ], + "imageType": "3" + }, + { + "href": "https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260418/22/0905279525045eb9b42e_0_XL.jpg", + "resolution": [ + "null", + "null" + ], + "imageType": "3" + }, + { + "href": "https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260418/22/0905279525045eb9b42e_0_S.jpg", + "resolution": [ + "null", + "null" + ], + "imageType": "3" + }, + { + "href": "https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260418/22/0905279525045eb9b42e_0_M.jpg", + "resolution": [ + "null", + "null" + ], + "imageType": "3" + }, + { + "href": "https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260418/22/0905279525045eb9b42e_0_L.jpg", + "resolution": [ + "null", + "null" + ], + "imageType": "3" + }, + { + "href": "https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260418/22/0905279525045eb9b42e_0_XS.jpg", + "resolution": [ + "null", + "null" + ], + "imageType": "3" + }, + { + "href": "https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260418/22/0905279525045eb9b42e_0_0.jpg", + "resolution": [ + "null", + "null" + ], + "imageType": "3" + }, + { + "href": "https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260418/34/0905279525035eb9b42e.jpg", + "resolution": [ + "null", + "null" + ], + "imageType": "2" + }, + { + "href": "https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260418/61/0905279525025eb9b42e.jpg", + "resolution": [ + "null", + "null" + ], + "imageType": "1" + }, + { + "href": "https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260418/61/0905279525025eb9b42e_0_XL.jpg", + "resolution": [ + "null", + "null" + ], + "imageType": "1" + }, + { + "href": "https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260418/61/0905279525025eb9b42e_0_M.jpg", + "resolution": [ + "null", + "null" + ], + "imageType": "1" + }, + { + "href": "https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260418/61/0905279525025eb9b42e_0_L.jpg", + "resolution": [ + "null", + "null" + ], + "imageType": "1" + }, + { + "href": "https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260418/61/0905279525025eb9b42e_0_XS.jpg", + "resolution": [ + "null", + "null" + ], + "imageType": "1" + }, + { + "href": "https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260418/61/0905279525025eb9b42e_0_S.jpg", + "resolution": [ + "null", + "null" + ], + "imageType": "1" + }, + { + "href": "https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260418/61/0905279525025eb9b42e_0_0.jpg", + "resolution": [ + "null", + "null" + ], + "imageType": "1" + }, + { + "href": "https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260418/75/0905279525085eb9b42e.webp", + "resolution": [ + "null", + "null" + ], + "imageType": "10" + }, + { + "href": "https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260418/58/0905279525075eb9b42e.webp", + "resolution": [ + "null", + "null" + ], + "imageType": "7" + }, + { + "href": "https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260418/58/0905279525075eb9b42e_0_XS.webp", + "resolution": [ + "null", + "null" + ], + "imageType": "7" + }, + { + "href": "https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260418/58/0905279525075eb9b42e_0_S.webp", + "resolution": [ + "null", + "null" + ], + "imageType": "7" + }, + { + "href": "https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260418/58/0905279525075eb9b42e_0_XL.webp", + "resolution": [ + "null", + "null" + ], + "imageType": "7" + }, + { + "href": "https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260418/58/0905279525075eb9b42e_0_M.webp", + "resolution": [ + "null", + "null" + ], + "imageType": "7" + }, + { + "href": "https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260418/58/0905279525075eb9b42e_0_L.webp", + "resolution": [ + "null", + "null" + ], + "imageType": "7" + }, + { + "href": "https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260418/58/0905279525075eb9b42e_0_0.webp", + "resolution": [ + "null", + "null" + ], + "imageType": "7" + }, + { + "href": "https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260418/52/0905279525065eb9b42e.jpg", + "resolution": [ + "null", + "null" + ], + "imageType": "6" + }, + { + "href": "https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260418/52/0905279525065eb9b42e_0_S.jpg", + "resolution": [ + "null", + "null" + ], + "imageType": "6" + }, + { + "href": "https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260418/52/0905279525065eb9b42e_0_M.jpg", + "resolution": [ + "null", + "null" + ], + "imageType": "6" + }, + { + "href": "https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260418/52/0905279525065eb9b42e_0_XS.jpg", + "resolution": [ + "null", + "null" + ], + "imageType": "6" + }, + { + "href": "https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260418/52/0905279525065eb9b42e_0_L.jpg", + "resolution": [ + "null", + "null" + ], + "imageType": "6" + }, + { + "href": "https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260418/52/0905279525065eb9b42e_0_XL.jpg", + "resolution": [ + "null", + "null" + ], + "imageType": "6" + }, + { + "href": "https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260418/52/0905279525065eb9b42e_0_0.jpg", + "resolution": [ + "null", + "null" + ], + "imageType": "6" + }, + { + "href": "https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260418/57/0905279525055eb9b42e.jpg", + "resolution": [ + "null", + "null" + ], + "imageType": "5" + }, + { + "href": "https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260418/57/0905279525055eb9b42e_0_M.jpg", + "resolution": [ + "null", + "null" + ], + "imageType": "5" + }, + { + "href": "https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260418/57/0905279525055eb9b42e_0_L.jpg", + "resolution": [ + "null", + "null" + ], + "imageType": "5" + }, + { + "href": "https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260418/57/0905279525055eb9b42e_0_XS.jpg", + "resolution": [ + "null", + "null" + ], + "imageType": "5" + }, + { + "href": "https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260418/57/0905279525055eb9b42e_0_S.jpg", + "resolution": [ + "null", + "null" + ], + "imageType": "5" + }, + { + "href": "https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260418/57/0905279525055eb9b42e_0_XL.jpg", + "resolution": [ + "null", + "null" + ], + "imageType": "5" + }, + { + "href": "https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260418/57/0905279525055eb9b42e_0_0.jpg", + "resolution": [ + "null", + "null" + ], + "imageType": "5" + } + ], + "externalContentCode": "1096753105", + "genres": "Magazin", + "visittimes": "0", + "issubscribed": "0", + "programType": "program", + "gapFiller": "0", + "introduce": "Açık Görüş, farklı alanlardan uzman konukları ağırlayarak, güncel politika, ekonomi, kültür ve toplumsal meseleleri kapsamlı bir şekilde ele alan bilgilendirici bir programdır. Tartışmalar, izleyicilere olayları çok yönlü değerlendirme imkânı sunar.", + "priceType": [ + { + "value": "0", + "key": "BTV" + }, + { + "value": "0", + "key": "TVOD" + } + ], + "endtime": "2026-04-22 23:00:00 UTC+03:00", + "seasonTotalCount": "0", + "recordedMediaIds": [ + "100067919" + ], + "picture": { + "blackwhite": "https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260418/75/0905279525085eb9b42e.webp", + "still": "https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260418/34/0905279525035eb9b42e.jpg", + "ad": "https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260418/57/0905279525055eb9b42e.jpg,https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260418/57/0905279525055eb9b42e_0_M.jpg,https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260418/57/0905279525055eb9b42e_0_L.jpg,https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260418/57/0905279525055eb9b42e_0_XS.jpg,https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260418/57/0905279525055eb9b42e_0_S.jpg,https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260418/57/0905279525055eb9b42e_0_XL.jpg,https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260418/57/0905279525055eb9b42e_0_0.jpg", + "icon": "https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260418/22/0905279525045eb9b42e.jpg,https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260418/22/0905279525045eb9b42e_0_XL.jpg,https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260418/22/0905279525045eb9b42e_0_S.jpg,https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260418/22/0905279525045eb9b42e_0_M.jpg,https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260418/22/0905279525045eb9b42e_0_L.jpg,https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260418/22/0905279525045eb9b42e_0_XS.jpg,https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260418/22/0905279525045eb9b42e_0_0.jpg", + "deflate": "https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260418/73/0905279525015eb9b42e.jpg", + "background": "https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260418/58/0905279525075eb9b42e.webp,https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260418/58/0905279525075eb9b42e_0_XS.webp,https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260418/58/0905279525075eb9b42e_0_S.webp,https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260418/58/0905279525075eb9b42e_0_XL.webp,https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260418/58/0905279525075eb9b42e_0_M.webp,https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260418/58/0905279525075eb9b42e_0_L.webp,https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260418/58/0905279525075eb9b42e_0_0.webp", + "draft": "https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260418/52/0905279525065eb9b42e.jpg,https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260418/52/0905279525065eb9b42e_0_S.jpg,https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260418/52/0905279525065eb9b42e_0_M.jpg,https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260418/52/0905279525065eb9b42e_0_XS.jpg,https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260418/52/0905279525065eb9b42e_0_L.jpg,https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260418/52/0905279525065eb9b42e_0_XL.jpg,https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260418/52/0905279525065eb9b42e_0_0.jpg", + "poster": "https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260418/61/0905279525025eb9b42e.jpg,https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260418/61/0905279525025eb9b42e_0_XL.jpg,https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260418/61/0905279525025eb9b42e_0_M.jpg,https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260418/61/0905279525025eb9b42e_0_L.jpg,https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260418/61/0905279525025eb9b42e_0_XS.jpg,https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260418/61/0905279525025eb9b42e_0_S.jpg,https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260418/61/0905279525025eb9b42e_0_0.jpg" + }, + "isLoyalty": "0", + "isppv": "0", + "mainGenre": "0", + "contentRight": "[{\"mediaId\":\"100067919\",\"businessType\":\"13\",\"enable\":\"0\"},{\"mediaId\":\"100067919\",\"businessType\":\"14\",\"enable\":\"0\"},{\"mediaId\":\"100067919\",\"businessType\":\"15\",\"enable\":\"1\"},{\"mediaId\":\"223943150\",\"businessType\":\"13\",\"enable\":\"0\"},{\"mediaId\":\"223943150\",\"businessType\":\"14\",\"enable\":\"0\"},{\"mediaId\":\"223943150\",\"businessType\":\"15\",\"enable\":\"1\"},{\"mediaId\":\"3000435\",\"businessType\":\"13\",\"enable\":\"0\"},{\"mediaId\":\"3000435\",\"businessType\":\"14\",\"enable\":\"0\"},{\"mediaId\":\"3000435\",\"businessType\":\"15\",\"enable\":\"1\"}]", + "channelid": "32" + }, + { + "country": "", + "starttime": "2026-04-22 23:00:00 UTC+03:00", + "type": "PROGRAM", + "isBlackout": "0", + "rerun": "0", + "ppvsubscribed": "0", + "foreignsn": "225200445", + "isLive": "0", + "ratingid": "0", + "episodeTotalCount": "0", + "id": "225200445", + "keyword": "Moderatör Gece", + "contentType": "0", + "isnpvr": "1", + "slsType": "0", + "iscpvr": "0", + "advisory": [], + "extensionInfo": [ + { + "value": "Banttan", + "key": "broadcastType" + }, + { + "value": "545", + "key": "subGenre" + } + ], + "genreIds": [ + "1193" + ], + "istvod": "1", + "name": "Moderatör Gece", + "tvodStatus": "1", + "pictures": [ + { + "href": "https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260414/34/2305323001045eb7f426.webp", + "resolution": [ + "null", + "null" + ], + "imageType": "10" + }, + { + "href": "https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260414/23/2305323001035eb7f426.webp", + "resolution": [ + "null", + "null" + ], + "imageType": "7" + }, + { + "href": "https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260414/23/2305323001035eb7f426_0_XS.webp", + "resolution": [ + "null", + "null" + ], + "imageType": "7" + }, + { + "href": "https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260414/23/2305323001035eb7f426_0_S.webp", + "resolution": [ + "null", + "null" + ], + "imageType": "7" + }, + { + "href": "https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260414/23/2305323001035eb7f426_0_XL.webp", + "resolution": [ + "null", + "null" + ], + "imageType": "7" + }, + { + "href": "https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260414/23/2305323001035eb7f426_0_M.webp", + "resolution": [ + "null", + "null" + ], + "imageType": "7" + }, + { + "href": "https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260414/23/2305323001035eb7f426_0_L.webp", + "resolution": [ + "null", + "null" + ], + "imageType": "7" + }, + { + "href": "https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260414/23/2305323001035eb7f426_0_0.webp", + "resolution": [ + "null", + "null" + ], + "imageType": "7" + }, + { + "href": "https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260414/51/2305323001025eb7f426.jpg", + "resolution": [ + "null", + "null" + ], + "imageType": "6" + }, + { + "href": "https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260414/51/2305323001025eb7f426_0_S.jpg", + "resolution": [ + "null", + "null" + ], + "imageType": "6" + }, + { + "href": "https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260414/51/2305323001025eb7f426_0_M.jpg", + "resolution": [ + "null", + "null" + ], + "imageType": "6" + }, + { + "href": "https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260414/51/2305323001025eb7f426_0_XS.jpg", + "resolution": [ + "null", + "null" + ], + "imageType": "6" + }, + { + "href": "https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260414/51/2305323001025eb7f426_0_L.jpg", + "resolution": [ + "null", + "null" + ], + "imageType": "6" + }, + { + "href": "https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260414/51/2305323001025eb7f426_0_XL.jpg", + "resolution": [ + "null", + "null" + ], + "imageType": "6" + }, + { + "href": "https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260414/51/2305323001025eb7f426_0_0.jpg", + "resolution": [ + "null", + "null" + ], + "imageType": "6" + }, + { + "href": "https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260414/50/2305323001015eb7f426.jpg", + "resolution": [ + "null", + "null" + ], + "imageType": "5" + }, + { + "href": "https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260414/50/2305323001015eb7f426_0_M.jpg", + "resolution": [ + "null", + "null" + ], + "imageType": "5" + }, + { + "href": "https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260414/50/2305323001015eb7f426_0_L.jpg", + "resolution": [ + "null", + "null" + ], + "imageType": "5" + }, + { + "href": "https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260414/50/2305323001015eb7f426_0_XS.jpg", + "resolution": [ + "null", + "null" + ], + "imageType": "5" + }, + { + "href": "https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260414/50/2305323001015eb7f426_0_S.jpg", + "resolution": [ + "null", + "null" + ], + "imageType": "5" + }, + { + "href": "https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260414/50/2305323001015eb7f426_0_XL.jpg", + "resolution": [ + "null", + "null" + ], + "imageType": "5" + }, + { + "href": "https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260414/50/2305323001015eb7f426_0_0.jpg", + "resolution": [ + "null", + "null" + ], + "imageType": "5" + }, + { + "href": "https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260414/66/2305323001005eb7f426.jpg", + "resolution": [ + "null", + "null" + ], + "imageType": "3" + }, + { + "href": "https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260414/66/2305323001005eb7f426_0_XL.jpg", + "resolution": [ + "null", + "null" + ], + "imageType": "3" + }, + { + "href": "https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260414/66/2305323001005eb7f426_0_S.jpg", + "resolution": [ + "null", + "null" + ], + "imageType": "3" + }, + { + "href": "https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260414/66/2305323001005eb7f426_0_M.jpg", + "resolution": [ + "null", + "null" + ], + "imageType": "3" + }, + { + "href": "https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260414/66/2305323001005eb7f426_0_L.jpg", + "resolution": [ + "null", + "null" + ], + "imageType": "3" + }, + { + "href": "https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260414/66/2305323001005eb7f426_0_XS.jpg", + "resolution": [ + "null", + "null" + ], + "imageType": "3" + }, + { + "href": "https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260414/66/2305323001005eb7f426_0_0.jpg", + "resolution": [ + "null", + "null" + ], + "imageType": "3" + }, + { + "href": "https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260414/25/2305322990995eb7f426.jpg", + "resolution": [ + "null", + "null" + ], + "imageType": "2" + }, + { + "href": "https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260414/78/2305322990985eb7f426.jpg", + "resolution": [ + "null", + "null" + ], + "imageType": "1" + }, + { + "href": "https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260414/78/2305322990985eb7f426_0_XL.jpg", + "resolution": [ + "null", + "null" + ], + "imageType": "1" + }, + { + "href": "https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260414/78/2305322990985eb7f426_0_M.jpg", + "resolution": [ + "null", + "null" + ], + "imageType": "1" + }, + { + "href": "https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260414/78/2305322990985eb7f426_0_L.jpg", + "resolution": [ + "null", + "null" + ], + "imageType": "1" + }, + { + "href": "https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260414/78/2305322990985eb7f426_0_XS.jpg", + "resolution": [ + "null", + "null" + ], + "imageType": "1" + }, + { + "href": "https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260414/78/2305322990985eb7f426_0_S.jpg", + "resolution": [ + "null", + "null" + ], + "imageType": "1" + }, + { + "href": "https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260414/78/2305322990985eb7f426_0_0.jpg", + "resolution": [ + "null", + "null" + ], + "imageType": "1" + }, + { + "href": "https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260414/75/2305322990975eb7f426.jpg", + "resolution": [ + "null", + "null" + ], + "imageType": "0" + } + ], + "externalContentCode": "1091860199", + "genres": "Haber", + "visittimes": "0", + "issubscribed": "0", + "programType": "program", + "gapFiller": "0", + "introduce": "Günden geceye öne çıkan gelişmeler ve kritik haber başlıkları, uzman konuklar ve deneyimli yorumcuların değerlendirmeleriyle inceleniyor. Program, olayların perde arkasını ve detaylarını izleyiciye aktararak gündemi kapsamlı şekilde sunuyor.", + "priceType": [ + { + "value": "0", + "key": "BTV" + }, + { + "value": "0", + "key": "TVOD" + } + ], + "endtime": "2026-04-23 01:00:00 UTC+03:00", + "seasonTotalCount": "0", + "recordedMediaIds": [ + "100067919" + ], + "picture": { + "blackwhite": "https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260414/34/2305323001045eb7f426.webp", + "still": "https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260414/25/2305322990995eb7f426.jpg", + "ad": "https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260414/50/2305323001015eb7f426.jpg,https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260414/50/2305323001015eb7f426_0_M.jpg,https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260414/50/2305323001015eb7f426_0_L.jpg,https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260414/50/2305323001015eb7f426_0_XS.jpg,https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260414/50/2305323001015eb7f426_0_S.jpg,https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260414/50/2305323001015eb7f426_0_XL.jpg,https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260414/50/2305323001015eb7f426_0_0.jpg", + "icon": "https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260414/66/2305323001005eb7f426.jpg,https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260414/66/2305323001005eb7f426_0_XL.jpg,https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260414/66/2305323001005eb7f426_0_S.jpg,https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260414/66/2305323001005eb7f426_0_M.jpg,https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260414/66/2305323001005eb7f426_0_L.jpg,https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260414/66/2305323001005eb7f426_0_XS.jpg,https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260414/66/2305323001005eb7f426_0_0.jpg", + "deflate": "https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260414/75/2305322990975eb7f426.jpg", + "background": "https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260414/23/2305323001035eb7f426.webp,https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260414/23/2305323001035eb7f426_0_XS.webp,https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260414/23/2305323001035eb7f426_0_S.webp,https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260414/23/2305323001035eb7f426_0_XL.webp,https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260414/23/2305323001035eb7f426_0_M.webp,https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260414/23/2305323001035eb7f426_0_L.webp,https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260414/23/2305323001035eb7f426_0_0.webp", + "draft": "https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260414/51/2305323001025eb7f426.jpg,https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260414/51/2305323001025eb7f426_0_S.jpg,https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260414/51/2305323001025eb7f426_0_M.jpg,https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260414/51/2305323001025eb7f426_0_XS.jpg,https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260414/51/2305323001025eb7f426_0_L.jpg,https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260414/51/2305323001025eb7f426_0_XL.jpg,https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260414/51/2305323001025eb7f426_0_0.jpg", + "poster": "https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260414/78/2305322990985eb7f426.jpg,https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260414/78/2305322990985eb7f426_0_XL.jpg,https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260414/78/2305322990985eb7f426_0_M.jpg,https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260414/78/2305322990985eb7f426_0_L.jpg,https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260414/78/2305322990985eb7f426_0_XS.jpg,https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260414/78/2305322990985eb7f426_0_S.jpg,https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260414/78/2305322990985eb7f426_0_0.jpg" + }, + "isLoyalty": "0", + "isppv": "0", + "mainGenre": "0", + "contentRight": "[{\"mediaId\":\"100067919\",\"businessType\":\"13\",\"enable\":\"0\"},{\"mediaId\":\"100067919\",\"businessType\":\"14\",\"enable\":\"0\"},{\"mediaId\":\"100067919\",\"businessType\":\"15\",\"enable\":\"1\"},{\"mediaId\":\"223943150\",\"businessType\":\"13\",\"enable\":\"0\"},{\"mediaId\":\"223943150\",\"businessType\":\"14\",\"enable\":\"0\"},{\"mediaId\":\"223943150\",\"businessType\":\"15\",\"enable\":\"1\"},{\"mediaId\":\"3000435\",\"businessType\":\"13\",\"enable\":\"0\"},{\"mediaId\":\"3000435\",\"businessType\":\"14\",\"enable\":\"0\"},{\"mediaId\":\"3000435\",\"businessType\":\"15\",\"enable\":\"1\"}]", + "channelid": "32" + }, + { + "country": "", + "starttime": "2026-04-23 01:00:00 UTC+03:00", + "type": "PROGRAM", + "isBlackout": "0", + "rerun": "0", + "ppvsubscribed": "0", + "foreignsn": "225200451", + "isLive": "0", + "ratingid": "0", + "episodeTotalCount": "0", + "id": "225200451", + "keyword": "Günün Manşeti", + "contentType": "0", + "isnpvr": "1", + "slsType": "0", + "iscpvr": "0", + "advisory": [], + "extensionInfo": [ + { + "value": "Banttan", + "key": "broadcastType" + }, + { + "value": "545", + "key": "subGenre" + } + ], + "genreIds": [ + "1193" + ], + "istvod": "1", + "name": "Günün Manşeti", + "tvodStatus": "1", + "pictures": [ + { + "href": "https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260414/3/2305323001125eb7f426.webp", + "resolution": [ + "null", + "null" + ], + "imageType": "10" + }, + { + "href": "https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260414/14/2305323001115eb7f426.webp", + "resolution": [ + "null", + "null" + ], + "imageType": "7" + }, + { + "href": "https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260414/14/2305323001115eb7f426_0_XS.webp", + "resolution": [ + "null", + "null" + ], + "imageType": "7" + }, + { + "href": "https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260414/14/2305323001115eb7f426_0_S.webp", + "resolution": [ + "null", + "null" + ], + "imageType": "7" + }, + { + "href": "https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260414/14/2305323001115eb7f426_0_XL.webp", + "resolution": [ + "null", + "null" + ], + "imageType": "7" + }, + { + "href": "https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260414/14/2305323001115eb7f426_0_M.webp", + "resolution": [ + "null", + "null" + ], + "imageType": "7" + }, + { + "href": "https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260414/14/2305323001115eb7f426_0_L.webp", + "resolution": [ + "null", + "null" + ], + "imageType": "7" + }, + { + "href": "https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260414/14/2305323001115eb7f426_0_0.webp", + "resolution": [ + "null", + "null" + ], + "imageType": "7" + }, + { + "href": "https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260414/2/2305323001105eb7f426.jpg", + "resolution": [ + "null", + "null" + ], + "imageType": "6" + }, + { + "href": "https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260414/2/2305323001105eb7f426_0_S.jpg", + "resolution": [ + "null", + "null" + ], + "imageType": "6" + }, + { + "href": "https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260414/2/2305323001105eb7f426_0_M.jpg", + "resolution": [ + "null", + "null" + ], + "imageType": "6" + }, + { + "href": "https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260414/2/2305323001105eb7f426_0_XS.jpg", + "resolution": [ + "null", + "null" + ], + "imageType": "6" + }, + { + "href": "https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260414/2/2305323001105eb7f426_0_L.jpg", + "resolution": [ + "null", + "null" + ], + "imageType": "6" + }, + { + "href": "https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260414/2/2305323001105eb7f426_0_XL.jpg", + "resolution": [ + "null", + "null" + ], + "imageType": "6" + }, + { + "href": "https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260414/2/2305323001105eb7f426_0_0.jpg", + "resolution": [ + "null", + "null" + ], + "imageType": "6" + }, + { + "href": "https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260414/56/2305323001095eb7f426.jpg", + "resolution": [ + "null", + "null" + ], + "imageType": "5" + }, + { + "href": "https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260414/56/2305323001095eb7f426_0_M.jpg", + "resolution": [ + "null", + "null" + ], + "imageType": "5" + }, + { + "href": "https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260414/56/2305323001095eb7f426_0_L.jpg", + "resolution": [ + "null", + "null" + ], + "imageType": "5" + }, + { + "href": "https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260414/56/2305323001095eb7f426_0_XS.jpg", + "resolution": [ + "null", + "null" + ], + "imageType": "5" + }, + { + "href": "https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260414/56/2305323001095eb7f426_0_S.jpg", + "resolution": [ + "null", + "null" + ], + "imageType": "5" + }, + { + "href": "https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260414/56/2305323001095eb7f426_0_XL.jpg", + "resolution": [ + "null", + "null" + ], + "imageType": "5" + }, + { + "href": "https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260414/56/2305323001095eb7f426_0_0.jpg", + "resolution": [ + "null", + "null" + ], + "imageType": "5" + }, + { + "href": "https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260414/50/2305323001085eb7f426.jpg", + "resolution": [ + "null", + "null" + ], + "imageType": "3" + }, + { + "href": "https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260414/50/2305323001085eb7f426_0_XL.jpg", + "resolution": [ + "null", + "null" + ], + "imageType": "3" + }, + { + "href": "https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260414/50/2305323001085eb7f426_0_S.jpg", + "resolution": [ + "null", + "null" + ], + "imageType": "3" + }, + { + "href": "https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260414/50/2305323001085eb7f426_0_M.jpg", + "resolution": [ + "null", + "null" + ], + "imageType": "3" + }, + { + "href": "https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260414/50/2305323001085eb7f426_0_L.jpg", + "resolution": [ + "null", + "null" + ], + "imageType": "3" + }, + { + "href": "https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260414/50/2305323001085eb7f426_0_XS.jpg", + "resolution": [ + "null", + "null" + ], + "imageType": "3" + }, + { + "href": "https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260414/50/2305323001085eb7f426_0_0.jpg", + "resolution": [ + "null", + "null" + ], + "imageType": "3" + }, + { + "href": "https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260414/39/2305323001075eb7f426.jpg", + "resolution": [ + "null", + "null" + ], + "imageType": "2" + }, + { + "href": "https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260414/17/2305323001065eb7f426.jpg", + "resolution": [ + "null", + "null" + ], + "imageType": "1" + }, + { + "href": "https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260414/17/2305323001065eb7f426_0_XL.jpg", + "resolution": [ + "null", + "null" + ], + "imageType": "1" + }, + { + "href": "https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260414/17/2305323001065eb7f426_0_M.jpg", + "resolution": [ + "null", + "null" + ], + "imageType": "1" + }, + { + "href": "https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260414/17/2305323001065eb7f426_0_L.jpg", + "resolution": [ + "null", + "null" + ], + "imageType": "1" + }, + { + "href": "https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260414/17/2305323001065eb7f426_0_XS.jpg", + "resolution": [ + "null", + "null" + ], + "imageType": "1" + }, + { + "href": "https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260414/17/2305323001065eb7f426_0_S.jpg", + "resolution": [ + "null", + "null" + ], + "imageType": "1" + }, + { + "href": "https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260414/17/2305323001065eb7f426_0_0.jpg", + "resolution": [ + "null", + "null" + ], + "imageType": "1" + }, + { + "href": "https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260414/35/2305323001055eb7f426.jpg", + "resolution": [ + "null", + "null" + ], + "imageType": "0" + } + ], + "externalContentCode": "1091860207", + "genres": "Haber", + "visittimes": "0", + "issubscribed": "0", + "programType": "program", + "gapFiller": "0", + "introduce": "Türkiye ve dünya gündemindeki önemli gelişmeler, gazetelerde çıkan haberler ve köşe yazıları bu programda ele alınıyor. Farklı bakış açıları ve çarpıcı analizlerle izleyicilere olayların arka planı aktarılıyor.", + "priceType": [ + { + "value": "0", + "key": "BTV" + }, + { + "value": "0", + "key": "TVOD" + } + ], + "endtime": "2026-04-23 02:00:00 UTC+03:00", + "seasonTotalCount": "0", + "recordedMediaIds": [ + "100067919" + ], + "picture": { + "blackwhite": "https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260414/3/2305323001125eb7f426.webp", + "still": "https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260414/39/2305323001075eb7f426.jpg", + "ad": "https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260414/56/2305323001095eb7f426.jpg,https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260414/56/2305323001095eb7f426_0_M.jpg,https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260414/56/2305323001095eb7f426_0_L.jpg,https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260414/56/2305323001095eb7f426_0_XS.jpg,https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260414/56/2305323001095eb7f426_0_S.jpg,https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260414/56/2305323001095eb7f426_0_XL.jpg,https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260414/56/2305323001095eb7f426_0_0.jpg", + "icon": "https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260414/50/2305323001085eb7f426.jpg,https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260414/50/2305323001085eb7f426_0_XL.jpg,https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260414/50/2305323001085eb7f426_0_S.jpg,https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260414/50/2305323001085eb7f426_0_M.jpg,https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260414/50/2305323001085eb7f426_0_L.jpg,https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260414/50/2305323001085eb7f426_0_XS.jpg,https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260414/50/2305323001085eb7f426_0_0.jpg", + "deflate": "https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260414/35/2305323001055eb7f426.jpg", + "background": "https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260414/14/2305323001115eb7f426.webp,https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260414/14/2305323001115eb7f426_0_XS.webp,https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260414/14/2305323001115eb7f426_0_S.webp,https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260414/14/2305323001115eb7f426_0_XL.webp,https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260414/14/2305323001115eb7f426_0_M.webp,https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260414/14/2305323001115eb7f426_0_L.webp,https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260414/14/2305323001115eb7f426_0_0.webp", + "draft": "https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260414/2/2305323001105eb7f426.jpg,https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260414/2/2305323001105eb7f426_0_S.jpg,https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260414/2/2305323001105eb7f426_0_M.jpg,https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260414/2/2305323001105eb7f426_0_XS.jpg,https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260414/2/2305323001105eb7f426_0_L.jpg,https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260414/2/2305323001105eb7f426_0_XL.jpg,https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260414/2/2305323001105eb7f426_0_0.jpg", + "poster": "https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260414/17/2305323001065eb7f426.jpg,https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260414/17/2305323001065eb7f426_0_XL.jpg,https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260414/17/2305323001065eb7f426_0_M.jpg,https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260414/17/2305323001065eb7f426_0_L.jpg,https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260414/17/2305323001065eb7f426_0_XS.jpg,https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260414/17/2305323001065eb7f426_0_S.jpg,https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260414/17/2305323001065eb7f426_0_0.jpg" + }, + "isLoyalty": "0", + "isppv": "0", + "mainGenre": "0", + "contentRight": "[{\"mediaId\":\"100067919\",\"businessType\":\"13\",\"enable\":\"0\"},{\"mediaId\":\"100067919\",\"businessType\":\"14\",\"enable\":\"0\"},{\"mediaId\":\"100067919\",\"businessType\":\"15\",\"enable\":\"1\"},{\"mediaId\":\"223943150\",\"businessType\":\"13\",\"enable\":\"0\"},{\"mediaId\":\"223943150\",\"businessType\":\"14\",\"enable\":\"0\"},{\"mediaId\":\"223943150\",\"businessType\":\"15\",\"enable\":\"1\"},{\"mediaId\":\"3000435\",\"businessType\":\"13\",\"enable\":\"0\"},{\"mediaId\":\"3000435\",\"businessType\":\"14\",\"enable\":\"0\"},{\"mediaId\":\"3000435\",\"businessType\":\"15\",\"enable\":\"1\"}]", + "channelid": "32" + }, + { + "country": "", + "starttime": "2026-04-23 02:00:00 UTC+03:00", + "type": "PROGRAM", + "isBlackout": "0", + "rerun": "0", + "ppvsubscribed": "0", + "foreignsn": "225390372", + "isLive": "0", + "ratingid": "0", + "episodeTotalCount": "0", + "id": "225390372", + "keyword": "Açık Görüş", + "contentType": "0", + "isnpvr": "1", + "slsType": "0", + "iscpvr": "0", + "advisory": [], + "extensionInfo": [ + { + "value": "Tekrar", + "key": "broadcastType" + }, + { + "value": "572", + "key": "subGenre" + } + ], + "genreIds": [ + "1183" + ], + "istvod": "1", + "name": "Açık Görüş", + "tvodStatus": "1", + "pictures": [ + { + "href": "https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260418/62/0905279535165eb9b42e.webp", + "resolution": [ + "null", + "null" + ], + "imageType": "10" + }, + { + "href": "https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260418/67/0905279535155eb9b42e.webp", + "resolution": [ + "null", + "null" + ], + "imageType": "7" + }, + { + "href": "https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260418/67/0905279535155eb9b42e_0_XS.webp", + "resolution": [ + "null", + "null" + ], + "imageType": "7" + }, + { + "href": "https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260418/67/0905279535155eb9b42e_0_S.webp", + "resolution": [ + "null", + "null" + ], + "imageType": "7" + }, + { + "href": "https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260418/67/0905279535155eb9b42e_0_XL.webp", + "resolution": [ + "null", + "null" + ], + "imageType": "7" + }, + { + "href": "https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260418/67/0905279535155eb9b42e_0_M.webp", + "resolution": [ + "null", + "null" + ], + "imageType": "7" + }, + { + "href": "https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260418/67/0905279535155eb9b42e_0_L.webp", + "resolution": [ + "null", + "null" + ], + "imageType": "7" + }, + { + "href": "https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260418/67/0905279535155eb9b42e_0_0.webp", + "resolution": [ + "null", + "null" + ], + "imageType": "7" + }, + { + "href": "https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260418/93/0905279535145eb9b42e.jpg", + "resolution": [ + "null", + "null" + ], + "imageType": "6" + }, + { + "href": "https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260418/93/0905279535145eb9b42e_0_S.jpg", + "resolution": [ + "null", + "null" + ], + "imageType": "6" + }, + { + "href": "https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260418/93/0905279535145eb9b42e_0_M.jpg", + "resolution": [ + "null", + "null" + ], + "imageType": "6" + }, + { + "href": "https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260418/93/0905279535145eb9b42e_0_XS.jpg", + "resolution": [ + "null", + "null" + ], + "imageType": "6" + }, + { + "href": "https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260418/93/0905279535145eb9b42e_0_L.jpg", + "resolution": [ + "null", + "null" + ], + "imageType": "6" + }, + { + "href": "https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260418/93/0905279535145eb9b42e_0_XL.jpg", + "resolution": [ + "null", + "null" + ], + "imageType": "6" + }, + { + "href": "https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260418/93/0905279535145eb9b42e_0_0.jpg", + "resolution": [ + "null", + "null" + ], + "imageType": "6" + }, + { + "href": "https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260418/72/0905279525135eb9b42e.jpg", + "resolution": [ + "null", + "null" + ], + "imageType": "5" + }, + { + "href": "https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260418/72/0905279525135eb9b42e_0_M.jpg", + "resolution": [ + "null", + "null" + ], + "imageType": "5" + }, + { + "href": "https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260418/72/0905279525135eb9b42e_0_L.jpg", + "resolution": [ + "null", + "null" + ], + "imageType": "5" + }, + { + "href": "https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260418/72/0905279525135eb9b42e_0_XS.jpg", + "resolution": [ + "null", + "null" + ], + "imageType": "5" + }, + { + "href": "https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260418/72/0905279525135eb9b42e_0_S.jpg", + "resolution": [ + "null", + "null" + ], + "imageType": "5" + }, + { + "href": "https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260418/72/0905279525135eb9b42e_0_XL.jpg", + "resolution": [ + "null", + "null" + ], + "imageType": "5" + }, + { + "href": "https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260418/72/0905279525135eb9b42e_0_0.jpg", + "resolution": [ + "null", + "null" + ], + "imageType": "5" + }, + { + "href": "https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260418/58/0905279525125eb9b42e.jpg", + "resolution": [ + "null", + "null" + ], + "imageType": "3" + }, + { + "href": "https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260418/58/0905279525125eb9b42e_0_XL.jpg", + "resolution": [ + "null", + "null" + ], + "imageType": "3" + }, + { + "href": "https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260418/58/0905279525125eb9b42e_0_S.jpg", + "resolution": [ + "null", + "null" + ], + "imageType": "3" + }, + { + "href": "https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260418/58/0905279525125eb9b42e_0_M.jpg", + "resolution": [ + "null", + "null" + ], + "imageType": "3" + }, + { + "href": "https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260418/58/0905279525125eb9b42e_0_L.jpg", + "resolution": [ + "null", + "null" + ], + "imageType": "3" + }, + { + "href": "https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260418/58/0905279525125eb9b42e_0_XS.jpg", + "resolution": [ + "null", + "null" + ], + "imageType": "3" + }, + { + "href": "https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260418/58/0905279525125eb9b42e_0_0.jpg", + "resolution": [ + "null", + "null" + ], + "imageType": "3" + }, + { + "href": "https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260418/44/0905279525115eb9b42e.jpg", + "resolution": [ + "null", + "null" + ], + "imageType": "2" + }, + { + "href": "https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260418/62/0905279525105eb9b42e.jpg", + "resolution": [ + "null", + "null" + ], + "imageType": "1" + }, + { + "href": "https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260418/62/0905279525105eb9b42e_0_XL.jpg", + "resolution": [ + "null", + "null" + ], + "imageType": "1" + }, + { + "href": "https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260418/62/0905279525105eb9b42e_0_M.jpg", + "resolution": [ + "null", + "null" + ], + "imageType": "1" + }, + { + "href": "https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260418/62/0905279525105eb9b42e_0_L.jpg", + "resolution": [ + "null", + "null" + ], + "imageType": "1" + }, + { + "href": "https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260418/62/0905279525105eb9b42e_0_XS.jpg", + "resolution": [ + "null", + "null" + ], + "imageType": "1" + }, + { + "href": "https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260418/62/0905279525105eb9b42e_0_S.jpg", + "resolution": [ + "null", + "null" + ], + "imageType": "1" + }, + { + "href": "https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260418/62/0905279525105eb9b42e_0_0.jpg", + "resolution": [ + "null", + "null" + ], + "imageType": "1" + }, + { + "href": "https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260418/46/0905279525095eb9b42e.jpg", + "resolution": [ + "null", + "null" + ], + "imageType": "0" + } + ], + "externalContentCode": "1096753106", + "genres": "Magazin", + "visittimes": "0", + "issubscribed": "0", + "programType": "program", + "gapFiller": "0", + "introduce": "Açık Görüş, farklı alanlardan uzman konukları ağırlayarak, güncel politika, ekonomi, kültür ve toplumsal meseleleri kapsamlı bir şekilde ele alan bilgilendirici bir programdır. Tartışmalar, izleyicilere olayları çok yönlü değerlendirme imkânı sunar.", + "priceType": [ + { + "value": "0", + "key": "BTV" + }, + { + "value": "0", + "key": "TVOD" + } + ], + "endtime": "2026-04-23 04:15:00 UTC+03:00", + "seasonTotalCount": "0", + "recordedMediaIds": [ + "100067919" + ], + "picture": { + "blackwhite": "https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260418/62/0905279535165eb9b42e.webp", + "still": "https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260418/44/0905279525115eb9b42e.jpg", + "ad": "https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260418/72/0905279525135eb9b42e.jpg,https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260418/72/0905279525135eb9b42e_0_M.jpg,https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260418/72/0905279525135eb9b42e_0_L.jpg,https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260418/72/0905279525135eb9b42e_0_XS.jpg,https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260418/72/0905279525135eb9b42e_0_S.jpg,https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260418/72/0905279525135eb9b42e_0_XL.jpg,https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260418/72/0905279525135eb9b42e_0_0.jpg", + "icon": "https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260418/58/0905279525125eb9b42e.jpg,https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260418/58/0905279525125eb9b42e_0_XL.jpg,https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260418/58/0905279525125eb9b42e_0_S.jpg,https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260418/58/0905279525125eb9b42e_0_M.jpg,https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260418/58/0905279525125eb9b42e_0_L.jpg,https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260418/58/0905279525125eb9b42e_0_XS.jpg,https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260418/58/0905279525125eb9b42e_0_0.jpg", + "deflate": "https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260418/46/0905279525095eb9b42e.jpg", + "background": "https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260418/67/0905279535155eb9b42e.webp,https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260418/67/0905279535155eb9b42e_0_XS.webp,https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260418/67/0905279535155eb9b42e_0_S.webp,https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260418/67/0905279535155eb9b42e_0_XL.webp,https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260418/67/0905279535155eb9b42e_0_M.webp,https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260418/67/0905279535155eb9b42e_0_L.webp,https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260418/67/0905279535155eb9b42e_0_0.webp", + "draft": "https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260418/93/0905279535145eb9b42e.jpg,https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260418/93/0905279535145eb9b42e_0_S.jpg,https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260418/93/0905279535145eb9b42e_0_M.jpg,https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260418/93/0905279535145eb9b42e_0_XS.jpg,https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260418/93/0905279535145eb9b42e_0_L.jpg,https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260418/93/0905279535145eb9b42e_0_XL.jpg,https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260418/93/0905279535145eb9b42e_0_0.jpg", + "poster": "https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260418/62/0905279525105eb9b42e.jpg,https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260418/62/0905279525105eb9b42e_0_XL.jpg,https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260418/62/0905279525105eb9b42e_0_M.jpg,https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260418/62/0905279525105eb9b42e_0_L.jpg,https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260418/62/0905279525105eb9b42e_0_XS.jpg,https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260418/62/0905279525105eb9b42e_0_S.jpg,https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260418/62/0905279525105eb9b42e_0_0.jpg" + }, + "isLoyalty": "0", + "isppv": "0", + "mainGenre": "0", + "contentRight": "[{\"mediaId\":\"100067919\",\"businessType\":\"13\",\"enable\":\"0\"},{\"mediaId\":\"100067919\",\"businessType\":\"14\",\"enable\":\"0\"},{\"mediaId\":\"100067919\",\"businessType\":\"15\",\"enable\":\"1\"},{\"mediaId\":\"223943150\",\"businessType\":\"13\",\"enable\":\"0\"},{\"mediaId\":\"223943150\",\"businessType\":\"14\",\"enable\":\"0\"},{\"mediaId\":\"223943150\",\"businessType\":\"15\",\"enable\":\"1\"},{\"mediaId\":\"3000435\",\"businessType\":\"13\",\"enable\":\"0\"},{\"mediaId\":\"3000435\",\"businessType\":\"14\",\"enable\":\"0\"},{\"mediaId\":\"3000435\",\"businessType\":\"15\",\"enable\":\"1\"}]", + "channelid": "32" + } + ], + "playbillVersion": [ + { + "channelId": "32", + "date": "20260423", + "version": "20260418090528" + }, + { + "channelId": "32", + "date": "20260422", + "version": "20260418090528" + } + ] } \ No newline at end of file From 4a237acef87c25371c1b9f8c0b23404ba183f961 Mon Sep 17 00:00:00 2001 From: freearhey <7253922+freearhey@users.noreply.github.com> Date: Sun, 19 Apr 2026 07:25:42 +0300 Subject: [PATCH 59/92] Update tvplus.com.tr.test.js --- sites/tvplus.com.tr/tvplus.com.tr.test.js | 70 +++++++++++++---------- 1 file changed, 41 insertions(+), 29 deletions(-) diff --git a/sites/tvplus.com.tr/tvplus.com.tr.test.js b/sites/tvplus.com.tr/tvplus.com.tr.test.js index d7586cda4..28b1a342a 100644 --- a/sites/tvplus.com.tr/tvplus.com.tr.test.js +++ b/sites/tvplus.com.tr/tvplus.com.tr.test.js @@ -1,4 +1,4 @@ -const { parser, url } = require('./tvplus.com.tr.config.js') +const { parser, url, request } = require('./tvplus.com.tr.config.js') const fs = require('fs') const path = require('path') const axios = require('axios') @@ -11,12 +11,8 @@ dayjs.extend(utc) jest.mock('axios') -const date = dayjs.utc('2024-12-15', 'YYYY-MM-DD').startOf('d') -const channel = { - lang: 'tr', - site_id: 'nick-jr/4353', - xmltv_id: 'NickJr.tr' -} +const date = dayjs.utc('2026-04-22', 'YYYY-MM-DD').startOf('d') +const channel = { site_id: '32' } axios.get.mockImplementation(url => { if (url === 'https://tvplus.com.tr/canli-tv/yayin-akisi') { @@ -27,43 +23,59 @@ axios.get.mockImplementation(url => { }) it('can generate valid url', async () => { - expect(await url({ channel })).toBe( - 'https://tvplus.com.tr/_next/data/kUzvz_bbQJNaShlFUkrR3/tr/canli-tv/yayin-akisi/nick-jr--4353.json?title=nick-jr--4353' - ) + expect(url).toBe('https://izmaottvsc14.tvplus.com.tr:33207/EPG/JSON/PlayBillList') +}) + +it('can generate valid request method', async () => { + expect(request.method).toBe('POST') +}) + +it('can generate valid request headers', async () => { + expect(request.headers).toMatchObject({ + cookie: 'JSESSIONID=05DH3LSUA0W04YMLSYEWK3TRYY1QMBMY;' + }) +}) + +it('can generate valid request data', async () => { + expect(request.data({ channel, date })).toMatchObject({ + type: '2', + channelid: '32', + begintime: '20260422000000', + endtime: '20260423000000', + isFillProgram: 1 + }) }) it('can parse response', () => { const content = fs.readFileSync(path.join(__dirname, '__data__', 'content.json')) - const results = parser({ date, channel, content }).map(p => { + const results = parser({ content }).map(p => { p.start = p.start.toJSON() p.stop = p.stop.toJSON() return p }) - expect(results.length).toBe(88) + expect(results.length).toBe(18) expect(results[0]).toMatchObject({ - start: '2024-12-14T21:10:00.000Z', - stop: '2024-12-14T21:20:00.000Z', - title: 'Camgöz (2020)', + start: '2026-04-21T23:30:00.000Z', + stop: '2026-04-22T01:15:00.000Z', + title: 'Bu Ülke', description: - "Max'in Camgöz adında yarı köpek balığı yarı köpek eşsiz bir evcil havyanı vardır. İlk başlarda Camgöz'ü saklamaya çalışsa da Sisli Pınarlar'da, en iyi arkadaşlar, meraklı komşular ve hatta Max'in ailesi bile yaramaz yeni arkadaşını fark edecektir.", + "Türkiye'nin gündemindeki merak edilen ve tartışılan sorular, siyaset, ekonomi, toplumsal meseleler ve kültür-eğitim başlıklarıyla ele alınıyor. Uzman konuklar ve sahadan aktarılan bilgilerle olayların arka planı izleyiciye aktarılıyor.", + icon: 'https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260414/0/0005330799055eb7f426.jpg', image: - 'https://gbzeottvsc01.tvplus.com.tr:33207/CPS/images/universal/film/program/202412/20241209/21/2126356250845eb88428_0_XL.jpg', - category: 'Çocuk', - season: 1, - episode: 116 + 'https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260414/10/0005330799045eb7f426.jpg', + category: 'Haber' }) - expect(results[10]).toMatchObject({ - start: '2024-12-14T23:00:00.000Z', - stop: '2024-12-14T23:25:00.000Z', - title: 'Blaze ve Yol Canavarları', + expect(results[17]).toMatchObject({ + start: '2026-04-22T23:00:00.000Z', + stop: '2026-04-23T01:15:00.000Z', + title: 'Açık Görüş', description: - 'Blaze ve Yol Canavarları, dünyanın en büyük canavar kamyonu Blaze ve en iyi arkadaşı ve sürücüsü AJ adında bir çocuk hakkındaki interaktif bir anaokulu animasyon dizisidir.', + 'Açık Görüş, farklı alanlardan uzman konukları ağırlayarak, güncel politika, ekonomi, kültür ve toplumsal meseleleri kapsamlı bir şekilde ele alan bilgilendirici bir programdır. Tartışmalar, izleyicilere olayları çok yönlü değerlendirme imkânı sunar.', + icon: 'https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260418/58/0905279525125eb9b42e.jpg', image: - 'https://gbzeottvsc01.tvplus.com.tr:33207/CPS/images/universal/film/program/202412/20241209/94/2126356271145eb88428_0_XL.jpg', - category: 'Çocuk', - season: 6, - episode: 617 + 'https://izmaottvsc14.tvplus.com.tr:33207/CPS/images/universal/film/program/202604/20260418/44/0905279525115eb9b42e.jpg', + category: 'Magazin' }) }) From 415dfb5c7fff2bacd2396e2ccc189e5ff0f4792b Mon Sep 17 00:00:00 2001 From: freearhey <7253922+freearhey@users.noreply.github.com> Date: Sun, 19 Apr 2026 07:25:54 +0300 Subject: [PATCH 60/92] Update tvplus.com.tr.config.js --- sites/tvplus.com.tr/tvplus.com.tr.config.js | 132 ++++++++------------ 1 file changed, 51 insertions(+), 81 deletions(-) diff --git a/sites/tvplus.com.tr/tvplus.com.tr.config.js b/sites/tvplus.com.tr/tvplus.com.tr.config.js index a25681ae5..23b1528ad 100644 --- a/sites/tvplus.com.tr/tvplus.com.tr.config.js +++ b/sites/tvplus.com.tr/tvplus.com.tr.config.js @@ -1,102 +1,72 @@ -const cheerio = require('cheerio') -const axios = require('axios') const dayjs = require('dayjs') -const utc = require('dayjs/plugin/utc') const customParseFormat = require('dayjs/plugin/customParseFormat') -const debug = require('debug')('site:tvplus.com.tr') -dayjs.extend(utc) dayjs.extend(customParseFormat) -const baseUrl = 'https://tvplus.com.tr/canli-tv/yayin-akisi' - module.exports = { site: 'tvplus.com.tr', days: 2, + url: 'https://izmaottvsc14.tvplus.com.tr:33207/EPG/JSON/PlayBillList', request: { + method: 'POST', + headers: { + cookie: 'JSESSIONID=05DH3LSUA0W04YMLSYEWK3TRYY1QMBMY;' + }, + data({ channel, date }) { + return { + type: '2', + channelid: channel.site_id, + begintime: date.format('YYYYMMDDHHmmss'), + endtime: date.add(1, 'd').format('YYYYMMDDHHmmss'), + isFillProgram: 1 + } + }, cache: { ttl: 24 * 60 * 60 * 1000 // 1 day } }, - async url({ channel }) { - if (module.exports.buildId === undefined) { - module.exports.buildId = await module.exports.fetchBuildId() - debug('Got build id', module.exports.buildId) - } - const channelId = channel.site_id.replace('/', '--') - return `https://tvplus.com.tr/_next/data/${module.exports.buildId}/${channel.lang}/canli-tv/yayin-akisi/${channelId}.json?title=${channelId}` - }, - parser({ content, date }) { + parser({ content }) { const programs = [] - if (content) { - const data = JSON.parse(content) - if (Array.isArray(data?.pageProps?.allPlaybillList)) { - data.pageProps.allPlaybillList - .filter(i => i.length && i[0].starttime.startsWith(date.format('YYYY-MM-DD'))) - .forEach(i => { - for (const schedule of i) { - const [, season, episode] = schedule.seasonInfo?.match( - /(\d+)\. Sezon - (\d+)\. Bölüm/ - ) || [null, null, null] - programs.push({ - title: schedule.name, - description: schedule.introduce, - category: schedule.genres, - image: schedule.picture, - season: season ? parseInt(season) : null, - episode: episode ? parseInt(episode) : null, - start: dayjs.utc(schedule.starttime), - stop: dayjs.utc(schedule.endtime) - }) - } - }) - } - } - return programs - }, - async channels() { - if (module.exports.buildId === undefined) { - module.exports.buildId = await module.exports.fetchBuildId() - debug('Got build id', module.exports.buildId) - } - const channels = [] - const data = await axios - .get(`https://tvplus.com.tr/_next/data/${module.exports.buildId}/canli-tv/yayin-akisi.json`) - .then(r => r.data) - .catch(console.error) + const items = parseItems(content) - const channels_json = data.pageProps.channelListSsr - - channels_json.forEach(channel => { - channels.push({ - lang: 'tr', - name: channel.name, - site_id: channel.name.normalize('NFD') // Decompose accented characters - .replace(/[\u0300-\u036f]/g, '') // Remove accent marks - .toLowerCase() - .replace(/\s+/g, '-') // Replace spaces with hyphens - .replace(/[^a-zA-Z0-9-]/g, '') // Remove special chars but keep hyphens - .replace(/^-+|-+$/g, '') // Remove leading/trailing hyphens - + '/' + channel.id, - logo: channel.channelLogo + items.forEach(schedule => { + programs.push({ + title: schedule.name, + description: schedule.introduce, + category: schedule.genres, + icon: parseIcon(schedule), + image: parseImage(schedule), + start: parseTime(schedule.starttime), + stop: parseTime(schedule.endtime) }) }) - return channels - }, - async fetchBuildId() { - const data = await axios - .get(baseUrl) - .then(r => r.data) - .catch(console.error) - - if (data) { - const $ = cheerio.load(data) - const nextData = JSON.parse($('#__NEXT_DATA__').text()) - return nextData?.buildId || null - } else { - return null - } + return programs + } +} + +function parseTime(time) { + return dayjs(time, 'YYYY-MM-DD HH:mm:ss [UTC]Z') +} + +function parseImage(schedule) { + return schedule?.picture?.still || null +} + +function parseIcon(schedule) { + if (typeof schedule?.picture?.icon !== 'string') return null + + return schedule.picture.icon.split(',')[0] +} + +function parseItems(content) { + try { + const data = JSON.parse(content) + if (!data || !Array.isArray(data.playbilllist)) return [] + + return data.playbilllist + } catch { + return [] } } From 5e6ad995b8124f4669e0f65e130be81311839724 Mon Sep 17 00:00:00 2001 From: freearhey <7253922+freearhey@users.noreply.github.com> Date: Sun, 19 Apr 2026 07:26:12 +0300 Subject: [PATCH 61/92] Update tvplus.com.tr.channels.xml --- .../tvplus.com.tr/tvplus.com.tr.channels.xml | 300 +++++++++--------- 1 file changed, 150 insertions(+), 150 deletions(-) diff --git a/sites/tvplus.com.tr/tvplus.com.tr.channels.xml b/sites/tvplus.com.tr/tvplus.com.tr.channels.xml index 050164c91..68a35e981 100644 --- a/sites/tvplus.com.tr/tvplus.com.tr.channels.xml +++ b/sites/tvplus.com.tr/tvplus.com.tr.channels.xml @@ -1,153 +1,153 @@ - 24 - 360 - A2 - A HABER - A NEWS - A PARA - A SPOR - AKİT TV - AL JAZEERA ARABIC - AL JAZEERA ENGLISH - AS TV - ATV - BABYTV - BBC News - BENGÜTÜRK - BEYAZ TV - BİZİM EV TV - BLOOMBERG HT - Bloomberg - BluTV Play 1 - BluTV Play 2 - BRT 1 - BRT 2 - CARTOON NETWORK - CARTOONITO - ÇİFTÇİ TV - CNBC-E - CNN International - CNN TÜRK - DA VINCI - DEUTSCHE WELLE ENGLISH - DISCOVERY CHANNEL - DISNEY JUNIOR - DİYANET TV - DMAX - DREAM TÜRK - DUCK TV - EKOL TV - EKOTÜRK - ENGLISH CLUB TV - EPIC DRAMA - EURONEWS - EUROSPORT 1 - EUROSPORT 2 - FB TV - FLASH HABER - FM TV - FRANCE 24 ARABIC - FRANCE 24 ENGLISH - FX - GZT TV - HABER GLOBAL - HABERTÜRK - HALK TV - HT SPOR - KADIRGA TV - KANAL 7 - KANAL 23 - KANAL 26 - KANAL 33 - KANAL D - KANAL T - KANAL V - KIBRIS ADA TV - KIBRIS GENC TV - KIBRIS TV - KONTV - KRT TV - LOVE NATURE - MELTEM TV - MİNİKA ÇOCUK - MİNİKA GO - MOONBUG KIDS TV - NATIONAL GEOGRAPHIC WILD - NATIONAL GEOGRAPHIC - NBA TV - Nick JR - NICKELODEON - NICKTOONS - NOW - NR1 DAMAR - NTV - NUMBER1 TURK - NUMBER1 TV - ON6 - POWER TURK - POWER TV - S SPORT 2 - S SPORT - SEMERKAND - SHOW TV - SİNEMA 1002 - SİNEMA AİLE 2 - SİNEMA AİLE - SİNEMA AKSİYON 2 - SİNEMA KOMEDİ - SİNEMA TV 2 - SİNEMA TV 1001 - SİNEMA TV AKSİYON - SİNEMA TV - SİNEMA YERLİ 2 - SİNEMA YERLİ - SKY NEWS ARABIA - ŞÖMİNE PLUS - SÖZCÜ TV - SPACETOON - SPORTS TV - STAR TV - tabii spor - tabii TV - TARIH TV - TARIM TV - TELE1 - TEVE2 - TGRT HABER - TİVİ6 - TLC - TMB TV - TRT1 - TRT 2 - TRT 3 - TRT ARABI - TRT AVAZ - TRT BELGESEL - TRT ÇOCUK - TRT DIYANET COCUK - TRT EBA - TRT HABER - TRT KURDİ - TRT MÜZİK - TRT SPOR YILDIZ - TRT SPOR - TRT TÜRK - TRT World - TURKHABER - TV5 MONDE - TV5 - TV8 - TV8,5 - TV100 - TV 4 - TV 2020 - TV+ Info - TVNET - TYT TÜRK - ÜLKE TV - ULUSAL KANAL - VAV TV - VIASAT EXPLORE - VIASAT HISTORY + 24 + 360 + A2 + A HABER + A NEWS + A PARA + A SPOR + AKİT TV + AL JAZEERA ARABIC + AL JAZEERA ENGLISH + AS TV + ATV + BABYTV + BBC News + BENGÜTÜRK + BEYAZ TV + BİZİM EV TV + BLOOMBERG HT + Bloomberg + BluTV Play 1 + BluTV Play 2 + BRT 1 + BRT 2 + CARTOON NETWORK + CARTOONITO + ÇİFTÇİ TV + CNBC-E + CNN International + CNN TÜRK + DA VINCI + DEUTSCHE WELLE ENGLISH + DISCOVERY CHANNEL + DISNEY JUNIOR + DİYANET TV + DMAX + DREAM TÜRK + DUCK TV + EKOL TV + EKOTÜRK + ENGLISH CLUB TV + EPIC DRAMA + EURONEWS + EUROSPORT 1 + EUROSPORT 2 + FB TV + FLASH HABER + FM TV + FRANCE 24 ARABIC + FRANCE 24 ENGLISH + FX + GZT TV + HABER GLOBAL + HABERTÜRK + HALK TV + HT SPOR + KADIRGA TV + KANAL 7 + KANAL 23 + KANAL 26 + KANAL 33 + KANAL D + KANAL T + KANAL V + KIBRIS ADA TV + KIBRIS GENC TV + KIBRIS TV + KONTV + KRT TV + LOVE NATURE + MELTEM TV + MİNİKA ÇOCUK + MİNİKA GO + MOONBUG KIDS TV + NATIONAL GEOGRAPHIC WILD + NATIONAL GEOGRAPHIC + NBA TV + Nick JR + NICKELODEON + NICKTOONS + NOW + NR1 DAMAR + NTV + NUMBER1 TURK + NUMBER1 TV + ON6 + POWER TURK + POWER TV + S SPORT 2 + S SPORT + SEMERKAND + SHOW TV + SİNEMA 1002 + SİNEMA AİLE 2 + SİNEMA AİLE + SİNEMA AKSİYON 2 + SİNEMA KOMEDİ + SİNEMA TV 2 + SİNEMA TV 1001 + SİNEMA TV AKSİYON + SİNEMA TV + SİNEMA YERLİ 2 + SİNEMA YERLİ + SKY NEWS ARABIA + ŞÖMİNE PLUS + SÖZCÜ TV + SPACETOON + SPORTS TV + STAR TV + tabii spor + tabii TV + TARIH TV + TARIM TV + TELE1 + TEVE2 + TGRT HABER + TİVİ6 + TLC + TMB TV + TRT1 + TRT 2 + TRT 3 + TRT ARABI + TRT AVAZ + TRT BELGESEL + TRT ÇOCUK + TRT DIYANET COCUK + TRT EBA + TRT HABER + TRT KURDİ + TRT MÜZİK + TRT SPOR YILDIZ + TRT SPOR + TRT TÜRK + TRT World + TURKHABER + TV5 MONDE + TV5 + TV8 + TV8,5 + TV100 + TV 4 + TV 2020 + TV+ Info + TVNET + TYT TÜRK + ÜLKE TV + ULUSAL KANAL + VAV TV + VIASAT EXPLORE + VIASAT HISTORY From 579b155645dd3087613244663661f1454c87ff36 Mon Sep 17 00:00:00 2001 From: freearhey <7253922+freearhey@users.noreply.github.com> Date: Sun, 19 Apr 2026 07:26:24 +0300 Subject: [PATCH 62/92] Update readme.md --- sites/tvplus.com.tr/readme.md | 6 ------ 1 file changed, 6 deletions(-) diff --git a/sites/tvplus.com.tr/readme.md b/sites/tvplus.com.tr/readme.md index a55e1323a..71e992992 100644 --- a/sites/tvplus.com.tr/readme.md +++ b/sites/tvplus.com.tr/readme.md @@ -8,12 +8,6 @@ https://tvplus.com.tr/canli-tv/yayin-akisi npm run grab --- --sites=tvplus.com.tr ``` -### Update channel list - -```sh -npm run channels:parse --- --config=./sites/tvplus.com.tr/tvplus.com.tr.config.js --output=./sites/tvplus.com.tr/tvplus.com.tr.channels.xml -``` - ### Test ```sh From 393951c4516d81a98c10768862942709adae1bb9 Mon Sep 17 00:00:00 2001 From: freearhey <7253922+freearhey@users.noreply.github.com> Date: Sun, 19 Apr 2026 07:54:09 +0300 Subject: [PATCH 63/92] Delete programme.html --- sites/mytelly.co.uk/__data__/programme.html | 814 -------------------- 1 file changed, 814 deletions(-) delete mode 100644 sites/mytelly.co.uk/__data__/programme.html diff --git a/sites/mytelly.co.uk/__data__/programme.html b/sites/mytelly.co.uk/__data__/programme.html deleted file mode 100644 index 1bf7baffb..000000000 --- a/sites/mytelly.co.uk/__data__/programme.html +++ /dev/null @@ -1,814 +0,0 @@ - - - - - - Captain Phillips - TV Listings | My Telly - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- - - - -
-
-
-
-
-
-
-
-
-
-
-
-

- Captain Phillips -

-
-
-
-
- - - - -
12:00 am - 02:05 am, - Today - on BBC - One London (1) -
-
-
- - - - -
-
-

- - - - - -

-
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
-
- Average User Rating: 4.50 (2 votes)
- My Rating: Sign in or - Register to view last vote -

-
-
- - - Add to Favorites - -
-
-
-
-
- -
-
-
-
-
-

About this Broadcast

- -
-
- -
-
-

An American cargo ship sets a dangerous course around the coast of Somalia, while inland, - four men are pressed into service as pirates by the local warlords. The captain is taken - hostage when the raiding party hijacks the vessel, resulting in a tense five-day crisis. - Fact-based thriller, starring Tom Hanks and Barkhad Abdi

-
-
- 2013 - HD - subtitles - 16x9 -
-
- Factual - Movie/Drama - Thriller -
-
-

-

-

- Cast & Crew -

- -

-
-
-
- - Tom Hanks - - (Actor) - .. Capt Richard Phillips -
-
-
-
- - Barkhad Abdi - - (Actor) - .. Muse -
-
-
-
- - Catherine Keener - - (Actor) - .. Andrea Phillips -
-
-
-
- - Barkhad Abdirahman - - (Actor) - .. Bilal -
-
-
-
- - Faysal Ahmed - - (Actor) - .. Najee -
-
-
-
- - Mahat M Ali - - (Actor) - .. Elmi -
-
-
-
- - Michael Chernus - - (Actor) - .. Shane Murphy -
-
-
-
- - David Warshofsky - - (Actor) - .. Mike Perry -
-
-
-
- - Paul Greengrass - - (Director) -
-
-
- - - -
-

-

-

More Information

- -

- -
No Logo
-
- -
No Logo
-
-
-
-
-
-
- - - - - - - -
-
-
-
-
- -
-

- Did You Know.. -

-

-
-
-
-
- Tom Hanks - (Actor) - .. Capt Richard Phillips -
-
-
- - Born: - - July 09, 1956 - in - California -
-
- - Best Known For: - - Winning Oscars for Forrest Gump and Philadelphia -
-
- - Early-life: - - Born in California in 1956, Tom Hanks grew up in what he calls a "fractured" - family. His parents were pioneers in the development of marriage dissolution law in that - state, and Tom moved around a lot, living with a succession of step-families. Eager for - a career in acting, he auditioned for a community theater play, was invited by the - director of that play to go to Cleveland, and there his acting career started. -
-
- - Career: - - After several TV roles, Hanks made the transition to movies and became one of the - biggest stars of the past three decades. His breakthrough came in 1984's Splash, - and was followed by hit after hit, including Bachelor Party and Dragnet. When he took - the lead in Oscar-nominated Big in 1988, he transformed a simple comedy into something - much more powerful, before truly proving his acting credentials with an Oscar-winning - turn as an Aids-afflicted laweyer in Philadeplhia. He gave terrific turns in romantic - comedies like Sleepless in Seattle, then another Oscar followed for Forrest Gump. Many - expected him to garner a third for Saving Private Ryan. He has been a successful - director of several projects and helped bring iconic TV projects like Band of Brothers - to the screen. Recent hits include The Da Vinci Code and its follow-up, and the Toy - Story films. -
-
- - Quote: - - "My wife keeps on telling me my worst fault is that I keep things to myself and - appear relaxed. But I am really in a room in my own head and not hearing a thing anyone - is saying." -
-
-
-
-
- Barkhad Abdi - (Actor) - .. Muse -
-
-
-
- Catherine Keener - (Actor) - .. Andrea Phillips -
-
-
- - Born: - - March 23, 1959 - in - Miami, Florida -
-
- - Best Known For: - - Playing Maxine Lund in Being John Malkovich. -
-
- - Early-life: - - Catherine Ann Keener was born in Miami, Florida on March 23, 1959. She has four - siblings, including actress Elizabeth Keener. Catherine studied at Wheaton College in - Massachusetts, where she graduated with a degree in English and history in 1983. While - studying here, she joined a theatre course and appeared in her first theatrical - production during her junior year. -
-
- - Career: - - Keener's first film appearance was a one-worded role as a waitress in About Last - Night… (1986). She then went on to appear in Survival Quest (1988). After struggling in - the industry for a number of years, she landed a part in Johnny Suede (1991) and began - getting roles in independent films. Her mainstream breakthrough was in Being John - Malkovich (1999). Since then, she has appeared in many more films, including Capote - (2005), Into The Wild (2007), Captain Phillips (2013) and Get Out (2017). -
-
- - Quote: - - "Luck favours the prepared." -
-
- - Trivia: - - She was Oscar-nominated for Best Supporting Actress in 2000 for her performance in Being - John Malkovich and in 2006 for her performance in Capote. -
-
-
-
-
- Barkhad Abdirahman - (Actor) - .. Bilal -
-
-
-
- Faysal Ahmed - (Actor) - .. Najee -
-
-
-
- Mahat M Ali - (Actor) - .. Elmi -
-
-
-
- Michael Chernus - (Actor) - .. Shane Murphy -
-
-
-
- David Warshofsky - (Actor) - .. Mike Perry -
-
-
-
- Paul Greengrass - (Director) -
-
-
-
-
-
-
-
- -
-
-
-
-
-

Before / After

- -

- - - - - -
- - - - - -
- - - -
-
- - - - - -
- - - -
-
-
-
-
-
- - -
- -
- -
-
-
-
- - - -
-
-
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - \ No newline at end of file From 887187ef4499922c144510093c88baa807d4008b Mon Sep 17 00:00:00 2001 From: freearhey <7253922+freearhey@users.noreply.github.com> Date: Sun, 19 Apr 2026 07:54:11 +0300 Subject: [PATCH 64/92] Delete programme2.html --- sites/mytelly.co.uk/__data__/programme2.html | 796 ------------------- 1 file changed, 796 deletions(-) delete mode 100644 sites/mytelly.co.uk/__data__/programme2.html diff --git a/sites/mytelly.co.uk/__data__/programme2.html b/sites/mytelly.co.uk/__data__/programme2.html deleted file mode 100644 index e1c637d2f..000000000 --- a/sites/mytelly.co.uk/__data__/programme2.html +++ /dev/null @@ -1,796 +0,0 @@ - - - - - - The Rap Game UK - TV Listings | My Telly - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- - - - -
-
-
-
-
-
-
-
-
-
-
-
-

- The Rap Game UK -

-
-
-
-
- - - - -
11:35 pm - 12:40 am, - Today - on BBC - One Channel Islands (1) -
-
-
- - - - -
-
-

- - - - - -

-
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
-
- Average User Rating: 1.00 (1 - votes)
- My Rating: Sign in or - Register - to view last vote -

-
-
- - - Add to Favorites - -
-
-
-
-
- -
-
-
-
-
-

About this Broadcast

- -
-
- -
-
- Past and Pressure
- Season 6, Episode 5 -
-
-

The artists are tasked with writing a song about their heritage. - For some, the pressure of the competition proves too much for - them to match. In their final challenge, they are put face to - face with industry experts who grill them about their plans - after the competition. Some impress, while others leave the - mentors confused

-
-
- HD - subtitles - repeat - 16x9 -
-
- Challenge/Reality Show - Show/Game Show -
-
-

-

-

- Cast & Crew -

- -

-
-
-
- - Konan - - (Presenter) -
-
-
-
- - Krept - - (Presenter) -
-
-
-
- - DJ Target - - (Presenter) -
-
-
-
- - Hetal Dhanak - - (Series producer) -
-
-
-
- - Tom O'Brien - - (Executive producer) -
-
-
-
- - Paul Broadbent - - (Executive producer) -
-
-
-
- - Trent Williams-Jones - - (Executive producer) -
-
-
- - - -
-

-

-

More Information

- -

- -
No Logo
-
-
-
-
-
-
- - - - - -
-
-
-
-
- -
-

Upcoming Broadcasts

-

-
-

The Rap Game UK is scheduled to broadcast again at the - following times

-
-
-

- -
-
Saturday, December 07
-
- - - - - - - - - - - - - - - -
-
Time
-
-
Episode
-
-
Channel
-
-
11:35 pm
-
-
- The Rap Game UK -
-
- Season: 6, - Episode: 5 -
-
- The artists are tasked with writing a song about - their heritage. For some, the pressure of the - competition proves too much for them to match. In - their final challenge, they are put face to face - with industry experts who grill them about their - plans after the competition. Some impress, while - others leave the mentors confused -
-
-
- - BBC One Channel Islands HD - (101) - -
-
- (BT TV) -
-
-
-
-
- - -
-
-
-
-
- -
-

- Did You Know.. -

-

-
-
-
-
- Konan - (Presenter) -
-
-
-
- Krept - (Presenter) -
-
-
-
- DJ Target - (Presenter) -
-
-
-
- Hetal Dhanak - (Series producer) -
-
-
-
- Tom O'Brien - (Executive producer) -
-
-
-
- Paul Broadbent - (Executive producer) -
-
-
-
- Trent Williams-Jones - (Executive producer) -
-
-
-
-
-
-
-
- -
-
-
-
-
-

Before / After

- -

- - - - - -
- - - - - -
- - - -
-
- - - - - -
- - - -
-
-
-
-
-
- - -
- -
- -
-
-
-
- - - -
-
-
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - \ No newline at end of file From 99760756187e9a38a6fcd0c16312a73aa7f5284c Mon Sep 17 00:00:00 2001 From: freearhey <7253922+freearhey@users.noreply.github.com> Date: Sun, 19 Apr 2026 07:54:37 +0300 Subject: [PATCH 65/92] Update mytelly.co.uk.test.js --- sites/mytelly.co.uk/mytelly.co.uk.test.js | 46 +++-------------------- 1 file changed, 5 insertions(+), 41 deletions(-) diff --git a/sites/mytelly.co.uk/mytelly.co.uk.test.js b/sites/mytelly.co.uk/mytelly.co.uk.test.js index 6199a416f..ce61c4e9d 100644 --- a/sites/mytelly.co.uk/mytelly.co.uk.test.js +++ b/sites/mytelly.co.uk/mytelly.co.uk.test.js @@ -1,5 +1,4 @@ const { parser, url } = require('./mytelly.co.uk.config.js') -const axios = require('axios') const fs = require('fs') const path = require('path') const dayjs = require('dayjs') @@ -9,35 +8,12 @@ const customParseFormat = require('dayjs/plugin/customParseFormat') dayjs.extend(customParseFormat) dayjs.extend(utc) -jest.mock('axios') - const date = dayjs.utc('2024-12-07', 'YYYY-MM-DD').startOf('d') const channel = { site_id: '713/bbc-one-london', xmltv_id: 'BBCOneLondon.uk' } -axios.get.mockImplementation(url => { - if ( - url === - 'https://www.mytelly.co.uk/tv-guide/listings/programme?cid=713&pid=1906433&tm=2024-12-07+00%3A00%3A00' - ) { - return Promise.resolve({ - data: fs.readFileSync(path.join(__dirname, '__data__', 'programme.html')) - }) - } - if ( - url === - 'https://www.mytelly.co.uk/tv-guide/listings/programme?cid=713&pid=5656624&tm=2024-12-07+23%3A35%3A00' - ) { - return Promise.resolve({ - data: fs.readFileSync(path.join(__dirname, '__data__', 'programme2.html')) - }) - } - - return Promise.resolve({ data: '' }) -}) - it('can generate valid url', () => { expect(url({ channel, date })).toBe( 'https://www.mytelly.co.uk/tv-guide/listings/channel/713/bbc-one-london.html?dt=2024-12-07' @@ -52,29 +28,17 @@ it('can parse response', async () => { return p }) - expect(results.length).toBe(2) + expect(results.length).toBe(25) expect(results[0]).toMatchObject({ start: '2024-12-07T00:00:00.000Z', stop: '2024-12-07T02:05:00.000Z', - title: 'Captain Phillips', - description: - 'An American cargo ship sets a dangerous course around the coast of Somalia, while inland, four men are pressed into service as pirates by the local warlords. The captain is taken hostage when the raiding party hijacks the vessel, resulting in a tense five-day crisis. Fact-based thriller, starring Tom Hanks and Barkhad Abdi', - image: - 'https://d16ia5iwuvax6y.cloudfront.net/uk-prog-images/c44ce7b0d3ae602c0c93ece5af140815.jpg?k=VeeNdUjml3bSHdlZ0OXbGLy%2BmsLdYPwTV6iAxGkzq4dsylOCGGE7OWlqwSWt0cd0Qtrin4DkEMC0Zzdp8ZeNk2vNIQzjMF0DG0h3IeTR5NM%3D', - category: ['Factual', 'Movie/Drama', 'Thriller'] + title: 'Captain Phillips (2013)' }) - expect(results[1]).toMatchObject({ + expect(results[24]).toMatchObject({ start: '2024-12-07T23:35:00.000Z', - stop: '2024-12-08T00:40:00.000Z', + stop: '2024-12-08T00:05:00.000Z', title: 'The Rap Game UK', - subTitle: 'Past and Pressure Season 6, Episode 5', - description: - 'The artists are tasked with writing a song about their heritage. For some, the pressure of the competition proves too much for them to match. In their final challenge, they are put face to face with industry experts who grill them about their plans after the competition. Some impress, while others leave the mentors confused', - image: - 'https://d16ia5iwuvax6y.cloudfront.net/uk-prog-images/2039278182b27cc279570b9ab9b89379.jpg?k=VeeNdUjml3bSHdlZ0OXbGLy%2BmsLdYPwTV6iAxGkzq4cDhR7jXTNFW3tgwQCdOPUobhXwlT81mIsqOe93HPusDG6tw1aoeYOgafojtynNWxc%3D', - category: ['Challenge/Reality Show', 'Show/Game Show'], - season: 6, - episode: 5 + subTitle: 'Past and Pressure - Season 6, Episode 5' }) }) From 7a7a14548f7ca53c65c0cde85366e49f9d7b0730 Mon Sep 17 00:00:00 2001 From: freearhey <7253922+freearhey@users.noreply.github.com> Date: Sun, 19 Apr 2026 07:55:47 +0300 Subject: [PATCH 66/92] Update mytelly.co.uk.config.js --- sites/mytelly.co.uk/mytelly.co.uk.config.js | 127 +++++--------------- 1 file changed, 28 insertions(+), 99 deletions(-) diff --git a/sites/mytelly.co.uk/mytelly.co.uk.config.js b/sites/mytelly.co.uk/mytelly.co.uk.config.js index dbfd58e11..11584e60b 100644 --- a/sites/mytelly.co.uk/mytelly.co.uk.config.js +++ b/sites/mytelly.co.uk/mytelly.co.uk.config.js @@ -3,18 +3,11 @@ const dayjs = require('dayjs') const utc = require('dayjs/plugin/utc') const timezone = require('dayjs/plugin/timezone') const customParseFormat = require('dayjs/plugin/customParseFormat') -const doFetch = require('@ntlab/sfetch') -const debug = require('debug')('site:mytelly.co.uk') dayjs.extend(utc) dayjs.extend(timezone) dayjs.extend(customParseFormat) -doFetch.setDebugger(debug) - -const detailedGuide = true -const tz = 'Europe/London' - module.exports = { site: 'mytelly.co.uk', days: 2, @@ -32,94 +25,35 @@ module.exports = { async parser({ content, date }) { const programs = [] - if (content) { - const queues = [] - const $ = cheerio.load(content) - - $('table.table > tbody > tr') - .toArray() - .forEach(el => { - const td = $(el).find('td:eq(1)') - const title = td.find('h5 a') - if (detailedGuide) { - queues.push({ url: title.attr('href'), params: module.exports.request }) - } else { - const subtitle = td.find('h6') - const time = $(el).find('td:eq(0)') - let start = parseTime(date, time.text().trim()) - const prev = programs[programs.length - 1] - if (prev) { - if (start.isBefore(prev.start)) { - start = start.add(1, 'd') - date = date.add(1, 'd') - } - prev.stop = start - } - const stop = start.add(30, 'm') - programs.push({ - title: parseText(title), - subTitle: parseText(subtitle), - start, - stop - }) - } - }) - - if (queues.length) { - await doFetch(queues, (url, res) => { - const $ = cheerio.load(res) - const time = $('center > h5 > b').text() - const title = parseText($('.inner-heading.sub h2')) - const subTitle = parseText($('.tab-pane > h5 > strong')) - const description = parseText($('.tab-pane > .tvbody > p')) - const image = $('.program-media-image img').attr('src') - const category = $('.schedule-attributes-genres span') - .toArray() - .map(el => $(el).text()) - const casts = $('.single-cast-head:not([id])') - .toArray() - .map(el => { - const cast = { name: parseText($(el).find('a')) } - const [, role] = $(el) - .text() - .match(/\((.*)\)/) || [null, null] - if (role) { - cast.role = role - } - return cast - }) - const [start, stop] = parseStartStop(date, time) - let season, episode - if (subTitle) { - const [, ses, epi] = subTitle.match(/Season (\d+), Episode (\d+)/) || [null, null] - if (ses) { - season = parseInt(ses) - } - if (epi) { - episode = parseInt(epi) - } - } - programs.push({ - title, - subTitle, - description, - image, - category, - season, - episode, - actor: casts.filter(c => c.role === 'Actor').map(c => c.name), - director: casts.filter(c => c.role === 'Director').map(c => c.name), - presenter: casts.filter(c => c.role === 'Presenter').map(c => c.name), - start, - stop - }) - }) + const items = parseItems(content) + items.forEach(item => { + const $item = cheerio.load(item) + const td = $item('td:eq(1)') + const title = td.find('h5 a') + const subtitle = td.find('h6') + const time = $item('td:eq(0)') + let start = parseTime(date, time.text().trim()) + const prev = programs[programs.length - 1] + if (prev) { + if (start.isBefore(prev.start)) { + start = start.add(1, 'd') + date = date.add(1, 'd') + } + prev.stop = start } - } + const stop = start.add(30, 'm') + programs.push({ + title: parseText(title), + subTitle: parseText(subtitle), + start, + stop + }) + }) return programs }, async channels() { + const doFetch = require('@ntlab/sfetch') const channels = {} const queues = [{ t: 'p', url: 'https://www.mytelly.co.uk/getform', params: this.request }] await doFetch(queues, (queue, res) => { @@ -182,19 +116,14 @@ module.exports = { } } -function parseStartStop(date, time) { - const [s, e] = time.split(' - ') - const start = parseTime(date, s) - let stop = parseTime(date, e) - if (stop.isBefore(start)) { - stop = stop.add(1, 'd') - } +function parseItems(content) { + const $ = cheerio.load(content) - return [start, stop] + return $('table.table > tbody > tr').toArray() } function parseTime(date, time) { - return dayjs.tz(`${date.format('YYYY-MM-DD')} ${time}`, 'YYYY-MM-DD H:mm a', tz) + return dayjs.tz(`${date.format('YYYY-MM-DD')} ${time}`, 'YYYY-MM-DD H:mm a', 'Europe/London') } function parseText($item) { From 8ca2f37f264c48dc78fc42136aec7835d46929fb Mon Sep 17 00:00:00 2001 From: StrangeDrVN <172238701+StrangeDrVN@users.noreply.github.com> Date: Sun, 19 Apr 2026 14:50:46 +0530 Subject: [PATCH 67/92] add xmltv_id + fix title/subTitle --- .../starhubtvplus.com.config.js | 4 +- .../starhubtvplus.com_en.channels.xml | 208 +++++++++--------- .../starhubtvplus.com_zh.channels.xml | 208 +++++++++--------- 3 files changed, 210 insertions(+), 210 deletions(-) diff --git a/sites/starhubtvplus.com/starhubtvplus.com.config.js b/sites/starhubtvplus.com/starhubtvplus.com.config.js index c9710bae1..83234f258 100644 --- a/sites/starhubtvplus.com/starhubtvplus.com.config.js +++ b/sites/starhubtvplus.com/starhubtvplus.com.config.js @@ -46,8 +46,8 @@ module.exports = { return programs.map(item => { return { - title: item.title, - subTitle: item.serie_title, + title: item.serie_title || item.title, + subTitle: (item.serie_title && item.title && item.serie_title !== item.title) ? item.title : null, description: item.description, category: item.genres, image: item.pictures?.map(img => img.url), diff --git a/sites/starhubtvplus.com/starhubtvplus.com_en.channels.xml b/sites/starhubtvplus.com/starhubtvplus.com_en.channels.xml index 478d9e370..dc936fb9f 100644 --- a/sites/starhubtvplus.com/starhubtvplus.com_en.channels.xml +++ b/sites/starhubtvplus.com/starhubtvplus.com_en.channels.xml @@ -1,121 +1,121 @@ - SONY MAX - ONE HD - TV5MONDE HD - HBO Signature HD - ADITHYA TV - SPOTV2 + SONY MAX + ONE HD + TV5MONDE HD + HBO Signature HD + ADITHYA TV + SPOTV2 Hub Sports 8 HD - Sun TV - KTV HD - Cinemax HD - Phoenix Chinese Channel HD - NHK World Premium HD + Sun TV + KTV HD + Cinemax HD + Phoenix Chinese Channel HD + NHK World Premium HD TestChannel 996 - Hub Premier 6 - Arirang TV HD - Vannathirai - Hub Premier 8 - Hub Sports 3 HD - Hub Premier 1 - Zee Cinema HD - Premier Sports - Hub Premier 2 (HD) - beIN SPORTS 2 HD - Kalaignar TV - NHK WORLD - JAPAN HD - Preview Channel - TVB Xing He HD - Crime + Investigation HD - beIN SPORTS 4 HD - beIN SPORTS HD - Sun Music - Hub Premier 3 + Hub Premier 6 + Arirang TV HD + Vannathirai + Hub Premier 8 + Hub Sports 3 HD + Hub Premier 1 + Zee Cinema HD + Premier Sports + Hub Premier 2 (HD) + beIN SPORTS 2 HD + Kalaignar TV + NHK WORLD - JAPAN HD + Preview Channel + TVB Xing He HD + Crime + Investigation HD + beIN SPORTS 4 HD + beIN SPORTS HD + Sun Music + Hub Premier 3 TestChannel2 - Nick Jr. HD + Nick Jr. HD Hub Sports 5 HD ETTV ASIA HD - BBC Lifestyle HD - Cinema One Global - Zee TV HD - KBS World HD - ABC Australia HD - HITS NOW - beIN SPORTS 5 HD - AXN HD + BBC Lifestyle HD + Cinema One Global + Zee TV HD + KBS World HD + ABC Australia HD + HITS NOW + beIN SPORTS 5 HD + AXN HD Test 998 - Hub Premier 4 - CNBC HD - Cbeebies HD - beIN SPORTS 3 HD + Hub Premier 4 + CNBC HD + Cbeebies HD + beIN SPORTS 3 HD Hub Ruyi - Hub Sports 2 HD - Asianet - ONE (Malay) - CTI Asia HD - Hub Sports 4 HD - Cartoon Network + Hub Sports 2 HD + Asianet + ONE (Malay) + CTI Asia HD + Hub Sports 4 HD + Cartoon Network Hub VV Drama HD - DreamWorks HD - BBC News HD - Astro Warna HD - Hub E City HD - ANC - Karisma + DreamWorks HD + BBC News HD + Astro Warna HD + Hub E City HD + ANC + Karisma AFN - Sky News HD - DW English HD - TVB Jade HD - Animax HD + Sky News HD + DW English HD + TVB Jade HD + Animax HD Hub Sports 7 HD - CNN HD - COLORS Tamil HD - France24 - Dragon TV - Lifetime HD + CNN HD + COLORS Tamil HD + France24 + Dragon TV + Lifetime HD Cricbuzz 2 - FashionTV HD - FIGHT SPORTS HD - The Filipino Channel HD - Hub E City HD - Hub Premier 5 - Asianet Movies - Zee Tamil HD - Hits HD - Hub Sports 1 HD - Celestial Movies HD - CGTN + FashionTV HD + FIGHT SPORTS HD + The Filipino Channel HD + Hub E City HD + Hub Premier 5 + Asianet Movies + Zee Tamil HD + Hits HD + Hub Sports 1 HD + Celestial Movies HD + CGTN Cricbuzz - Vijay TV HD - COLORS - Nickelodeon Asia HD - ROCK Entertainment HD - HGTV HD - CCTV-4 - Bloomberg Originals + Vijay TV HD + COLORS + Nickelodeon Asia HD + ROCK Entertainment HD + HGTV HD + CCTV-4 + Bloomberg Originals Hub Sports 6 HD - Hub Premier 7 - CCM - HBO Hits HD - Sony Entertainment Television - Discovery HD - Phoenix InfoNews Channel HD - HBO Family HD - HBO HD - HISTORY HD - TVBS Asia + Hub Premier 7 + CCM + HBO Hits HD + Sony Entertainment Television + Discovery HD + Phoenix InfoNews Channel HD + HBO Family HD + HBO HD + HISTORY HD + TVBS Asia TestChannel 993 Channel 251 - SPOTV - Zee Thirai - TVBS-NEWS - Fox News Channel HD - Astro Sensasi HD - Travelxp HD - Citra Entertainment - HITS MOVIES HD - Bloomberg Television HD - Euronews HD - BBC Earth HD - + SPOTV + Zee Thirai + TVBS-NEWS + Fox News Channel HD + Astro Sensasi HD + Travelxp HD + Citra Entertainment + HITS MOVIES HD + Bloomberg Television HD + Euronews HD + BBC Earth HD + \ No newline at end of file diff --git a/sites/starhubtvplus.com/starhubtvplus.com_zh.channels.xml b/sites/starhubtvplus.com/starhubtvplus.com_zh.channels.xml index 02665df7a..3127abe4c 100644 --- a/sites/starhubtvplus.com/starhubtvplus.com_zh.channels.xml +++ b/sites/starhubtvplus.com/starhubtvplus.com_zh.channels.xml @@ -1,121 +1,121 @@ - SONY MAX - ONE HD - TV5MONDE HD - HBO Signature HD - ADITHYA TV - SPOTV2 + SONY MAX + ONE HD + TV5MONDE HD + HBO Signature HD + ADITHYA TV + SPOTV2 Hub Sports 8 - Sun TV - KTV HD - Cinemax HD - Phoenix Chinese Channel HD - NHK World Premium HD + Sun TV + KTV HD + Cinemax HD + Phoenix Chinese Channel HD + NHK World Premium HD TestChannel 996 - Hub Premier 6 - Arirang TV - Vannathirai - Hub Premier 8 - Hub Sports 3 HD - Hub Premier 1 - Zee Cinema - Premier Sports - Hub Premier 2 (HD) - beIN Sports 2 HD - Kalaignar TV - NHK WORLD - JAPAN - Preview Channel - TVB Xing He - Crime + Investigation HD - beIN SPORTS MAX 2 HD - beIN Sports HD - Sun Music - Hub Premier 3 + Hub Premier 6 + Arirang TV + Vannathirai + Hub Premier 8 + Hub Sports 3 HD + Hub Premier 1 + Zee Cinema + Premier Sports + Hub Premier 2 (HD) + beIN Sports 2 HD + Kalaignar TV + NHK WORLD - JAPAN + Preview Channel + TVB Xing He + Crime + Investigation HD + beIN SPORTS MAX 2 HD + beIN Sports HD + Sun Music + Hub Premier 3 TestChannel2 - Nick Jr + Nick Jr Hub Sports 5 HD ETTV ASIA HD - BBC Lifestyle - Cinema One Global - Zee TV - KBS World HD - ABC Australia - HITSNOW - beIN SPORTS MAX 3 HD - AXN HD + BBC Lifestyle + Cinema One Global + Zee TV + KBS World HD + ABC Australia + HITSNOW + beIN SPORTS MAX 3 HD + AXN HD Test 998 - Hub Premier 4 - CNBC HD - Cbeebies HD - beIN Sports 3 + Hub Premier 4 + CNBC HD + Cbeebies HD + beIN Sports 3 Hub Ruyi - Hub Sports 2 HD - Asianet - ONE (Malay) - CTI TV HD - Hub Sports 4 HD - Cartoon Network + Hub Sports 2 HD + Asianet + ONE (Malay) + CTI TV HD + Hub Sports 4 HD + Cartoon Network Hub VVDrama - DreamWorks Channel HD - BBC World News HD - Astro Warna - Hub E City HD - ANC - Karisma + DreamWorks Channel HD + BBC World News HD + Astro Warna + Hub E City HD + ANC + Karisma AFN - Sky News HD - DW (Deutsch) - TVB Jade HD - Animax HD + Sky News HD + DW (Deutsch) + TVB Jade HD + Animax HD Hub Sports 7 - CNN HD - COLORS Tamil HD - France24 - Dragon TV - Lifetime HD + CNN HD + COLORS Tamil HD + France24 + Dragon TV + Lifetime HD Cricbuzz 2 - FashionTV HD - FIGHT SPORTS HD - The Filipino Channel - Hub E City HD - Hub Premier 5 - Asianet Movies - Zee Tamil - Hits HD - Hub Sports 1 HD - Celestial Movies HD - CGTN + FashionTV HD + FIGHT SPORTS HD + The Filipino Channel + Hub E City HD + Hub Premier 5 + Asianet Movies + Zee Tamil + Hits HD + Hub Sports 1 HD + Celestial Movies HD + CGTN Cricbuzz - Vijay TV - COLORS - Nickelodeon Asia HD - ROCK Entertainment - HGTV - CCTV-4 - Bloomberg Quicktake + Vijay TV + COLORS + Nickelodeon Asia HD + ROCK Entertainment + HGTV + CCTV-4 + Bloomberg Quicktake Hub Sports 6 - Hub Premier 7 - CCM - HBO Hits HD - Sony Entertainment Television - Discovery HD - Phoenix InfoNews Channel HD - HBO Family HD - HBO HD - HISTORY HD - TVBS Asia + Hub Premier 7 + CCM + HBO Hits HD + Sony Entertainment Television + Discovery HD + Phoenix InfoNews Channel HD + HBO Family HD + HBO HD + HISTORY HD + TVBS Asia TestChannel 993.. Channel 251 - SPOTV - Zee Thirai - TVBS-NEWS - Fox News Channel - Hub Sensasi - Travelxp HD - Citra Entertainment - HITS MOVIES HD - Bloomberg Television HD - Euronews HD - BBC Earth HD - + SPOTV + Zee Thirai + TVBS-NEWS + Fox News Channel + Hub Sensasi + Travelxp HD + Citra Entertainment + HITS MOVIES HD + Bloomberg Television HD + Euronews HD + BBC Earth HD + \ No newline at end of file From 9097c035c1e44ccc7c6a51952d8dc533f6604e4a Mon Sep 17 00:00:00 2001 From: StrangeDrVN <172238701+StrangeDrVN@users.noreply.github.com> Date: Sun, 19 Apr 2026 14:56:31 +0530 Subject: [PATCH 68/92] update test --- sites/starhubtvplus.com/starhubtvplus.com.test.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/sites/starhubtvplus.com/starhubtvplus.com.test.js b/sites/starhubtvplus.com/starhubtvplus.com.test.js index 78d97c5bf..eef099198 100644 --- a/sites/starhubtvplus.com/starhubtvplus.com.test.js +++ b/sites/starhubtvplus.com/starhubtvplus.com.test.js @@ -33,8 +33,8 @@ it('can parse response', async () => { { start: '2024-12-03T17:25:00.000Z', stop: '2024-12-03T18:20:00.000Z', - title: 'Northern Rexposure', - subTitle: 'Hudson & Rex (Season 5)', + title: 'Hudson & Rex (Season 5)', + subTitle: 'Northern Rexposure', description: "When Jesse's sister contacts him for help, he, Sarah and Rex head to Northern Ontario and find themselves in the middle of a deadly situation.", category: ['Drama'], From 2862e9a84df654f6920f1f9a431f771d4f9fdb97 Mon Sep 17 00:00:00 2001 From: StrangeDrVN <172238701+StrangeDrVN@users.noreply.github.com> Date: Sun, 19 Apr 2026 21:58:00 +0530 Subject: [PATCH 69/92] update content --- sites/mewatch.sg/__data__/content.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sites/mewatch.sg/__data__/content.json b/sites/mewatch.sg/__data__/content.json index 81c223b32..306e5f233 100644 --- a/sites/mewatch.sg/__data__/content.json +++ b/sites/mewatch.sg/__data__/content.json @@ -1 +1 @@ -[{"channelId":"97098","startDate":"2022-06-11T21:00:00.000Z","endDate":"2022-06-12T21:00:00.000Z","schedules":[{"channelId":"97098","customId":"37040748","endDate":"2022-06-11T21:30:00Z","id":"788a7dd","live":false,"startDate":"2022-06-11T21:00:00Z","isGap":false,"InteractiveType":"0","item":{"type":"episode","title":"Open Homes S3 - EP 2","blackoutMessage":"Programme is not available for live streaming.","description":"Mike heads down to the Sydney beaches to visit a beachside renovation with all the bells and whistles, we see a kitchen tip and recipe anyone can do at home. We finish up in the prestigious Byron bay to visit a multi million dollar award winning home.","classification":{"code":"IMDA-G (Violence)","name":"G (Violence)"},"episodeNumber":2,"episodeTitle":"Collaroy, Sydney","seasonNumber":3,"images":{"wallpaper":"https://production.togglestatic.com/shain/v1/dataservice/ResizeImage/$value?Format='jpg'&Quality=85&ImageId='4853691'&EntityType='LinearSchedule'&EntityId='788a7dd9-9b12-446f-91b4-c8ac9fec95e5'&Width=1280&Height=720&device=web_browser&subscriptions=Anonymous&segmentationTags=all","tile":"https://production.togglestatic.com/shain/v1/dataservice/ResizeImage/$value?Format='jpg'&Quality=85&ImageId='4853697'&EntityType='LinearSchedule'&EntityId='788a7dd9-9b12-446f-91b4-c8ac9fec95e5'&Width=1280&Height=720&device=web_browser&subscriptions=Anonymous&segmentationTags=all"},"enableCatchUp":true,"enableStartOver":false,"enableSeeking":false,"programSource":"ACQUIRED","simulcast":"LOCAL","masterReferenceKey":"0CH50CH5A0105567800020A0000000000P3254400000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000"}}]}] \ No newline at end of file +[{"schedules":[{"item":{"blackout":false,"episodeTitle":"Why Am I A Teacher?!","episodeNumber":4,"blackoutMessage":"Programme is not available for live streaming.","classification":{"code":"IMDA-PG13","name":"PG13"},"description":"After arriving in Rotsgard, Makoto and Shiki gather info for their new store but soon help a girl named Luria in trouble.","images":{"logo":"https://prod98.togglestatic.com/shain/v1/dataservice/ResizeImage/$value?Format='png'&Quality=85&ImageId='9519433'&EntityType='LinearSchedule'&EntityId='fdb1a2e4-efe5-41dd-8560-84d4c3f50459'&Width=2384&Height=1000","wallpaper":"https://prod98.togglestatic.com/shain/v1/dataservice/ResizeImage/$value?Format='jpg'&Quality=85&ImageId='13651061'&EntityType='LinearSchedule'&EntityId='fdb1a2e4-efe5-41dd-8560-84d4c3f50459'&Width=1280&Height=720","tile":"https://prod98.togglestatic.com/shain/v1/dataservice/ResizeImage/$value?Format='jpg'&Quality=85&ImageId='13651065'&EntityType='LinearSchedule'&EntityId='fdb1a2e4-efe5-41dd-8560-84d4c3f50459'&Width=1280&Height=720"},"enableCatchUp":false,"enableSeeking":false,"enableStartOver":false,"enableStartOverV2":false,"type":"episode","title":"Tsukimichi -Moonlit Fantasy- Season 2 - Why Am I A Teacher?!"},"channelId":"571922","customId":"48551936","endDate":"2026-04-19T00:30:00Z","id":"fdb1a2e","live":false,"startDate":"2026-04-19T00:00:00Z","isGap":false,"InteractiveType":"0"},{"item":{"blackout":false,"episodeTitle":"The Lesson Will Now Begin","episodeNumber":5,"blackoutMessage":"Programme is not available for live streaming.","classification":{"code":"IMDA-PG13","name":"PG13"},"description":"Makoto passes the teacher recruitment exam and starts as an adjunct at a school. Meanwhile, Tsubasa investigates a lake linked to a war.","images":{"logo":"https://prod98.togglestatic.com/shain/v1/dataservice/ResizeImage/$value?Format='png'&Quality=85&ImageId='9519433'&EntityType='LinearSchedule'&EntityId='9f3e2685-47a8-45ad-bc9f-5853ca3b4299'&Width=2384&Height=1000","wallpaper":"https://prod98.togglestatic.com/shain/v1/dataservice/ResizeImage/$value?Format='jpg'&Quality=85&ImageId='13650998'&EntityType='LinearSchedule'&EntityId='9f3e2685-47a8-45ad-bc9f-5853ca3b4299'&Width=1280&Height=720","tile":"https://prod98.togglestatic.com/shain/v1/dataservice/ResizeImage/$value?Format='jpg'&Quality=85&ImageId='13651002'&EntityType='LinearSchedule'&EntityId='9f3e2685-47a8-45ad-bc9f-5853ca3b4299'&Width=1280&Height=720"},"enableCatchUp":false,"enableSeeking":false,"enableStartOver":false,"enableStartOverV2":false,"type":"episode","title":"Tsukimichi -Moonlit Fantasy- Season 2 - The Lesson Will Now Begin"},"channelId":"571922","customId":"48551937","endDate":"2026-04-19T01:00:00Z","id":"9f3e268","live":false,"startDate":"2026-04-19T00:30:00Z","isGap":false,"InteractiveType":"0"},{"item":{"blackout":false,"episodeTitle":"Letter From A Friend","episodeNumber":19,"blackoutMessage":"Programme is not available for live streaming.","classification":{"code":"IMDA-PG13","name":"PG13"},"description":"Morihito finds Nico’s childhood letter and visits his late mother’s grave, while the others listen to their story.","images":{"logo":"https://prod98.togglestatic.com/shain/v1/dataservice/ResizeImage/$value?Format='png'&Quality=85&ImageId='9519433'&EntityType='LinearSchedule'&EntityId='dd632c11-54fb-4eea-bf4e-988398b3bc77'&Width=2384&Height=1000","wallpaper":"https://prod98.togglestatic.com/shain/v1/dataservice/ResizeImage/$value?Format='jpg'&Quality=85&ImageId='13650920'&EntityType='LinearSchedule'&EntityId='dd632c11-54fb-4eea-bf4e-988398b3bc77'&Width=1280&Height=720","tile":"https://prod98.togglestatic.com/shain/v1/dataservice/ResizeImage/$value?Format='jpg'&Quality=85&ImageId='13650924'&EntityType='LinearSchedule'&EntityId='dd632c11-54fb-4eea-bf4e-988398b3bc77'&Width=1280&Height=720"},"enableCatchUp":false,"enableSeeking":false,"enableStartOver":false,"enableStartOverV2":false,"type":"episode","title":"Witch Watch - Letter From A Friend"},"channelId":"571922","customId":"48551938","endDate":"2026-04-19T01:30:00Z","id":"dd632c1","live":false,"startDate":"2026-04-19T01:00:00Z","isGap":false,"InteractiveType":"0"},{"item":{"blackout":false,"episodeTitle":"The Lost Wolf And The Stray Cat","episodeNumber":20,"blackoutMessage":"Programme is not available for live streaming.","classification":{"code":"IMDA-PG13","name":"PG13"},"description":"Keigo feels useless untransformed. Nico gives him a flying-magic ring, and he begins training. One day, Nemu visits him.","images":{"logo":"https://prod98.togglestatic.com/shain/v1/dataservice/ResizeImage/$value?Format='png'&Quality=85&ImageId='9519433'&EntityType='LinearSchedule'&EntityId='360a0182-5f3b-446a-804a-ca0a0d6471c7'&Width=2384&Height=1000","wallpaper":"https://prod98.togglestatic.com/shain/v1/dataservice/ResizeImage/$value?Format='jpg'&Quality=85&ImageId='13651129'&EntityType='LinearSchedule'&EntityId='360a0182-5f3b-446a-804a-ca0a0d6471c7'&Width=1280&Height=720","tile":"https://prod98.togglestatic.com/shain/v1/dataservice/ResizeImage/$value?Format='jpg'&Quality=85&ImageId='13651133'&EntityType='LinearSchedule'&EntityId='360a0182-5f3b-446a-804a-ca0a0d6471c7'&Width=1280&Height=720"},"enableCatchUp":false,"enableSeeking":false,"enableStartOver":false,"enableStartOverV2":false,"type":"episode","title":"Witch Watch - The Lost Wolf And The Stray Cat"},"channelId":"571922","customId":"48551939","endDate":"2026-04-19T02:00:00Z","id":"360a018","live":false,"startDate":"2026-04-19T01:30:00Z","isGap":false,"InteractiveType":"0"},{"item":{"blackout":false,"episodeTitle":"Keiko's Carefree Style / Secret Urges / Jekyll Visits The Otogi House","episodeNumber":21,"blackoutMessage":"Programme is not available for live streaming.","classification":{"code":"IMDA-PG13","name":"PG13"},"description":"Keigo's channel was struggling with few viewers. He asks Nico to appear but is turned down.Then Nico has a great idea.","images":{"logo":"https://prod98.togglestatic.com/shain/v1/dataservice/ResizeImage/$value?Format='png'&Quality=85&ImageId='9519433'&EntityType='LinearSchedule'&EntityId='bacddfb7-45d1-4f85-a053-ddc505dd675a'&Width=2384&Height=1000","wallpaper":"https://prod98.togglestatic.com/shain/v1/dataservice/ResizeImage/$value?Format='jpg'&Quality=85&ImageId='13650973'&EntityType='LinearSchedule'&EntityId='bacddfb7-45d1-4f85-a053-ddc505dd675a'&Width=1280&Height=720","tile":"https://prod98.togglestatic.com/shain/v1/dataservice/ResizeImage/$value?Format='jpg'&Quality=85&ImageId='13650977'&EntityType='LinearSchedule'&EntityId='bacddfb7-45d1-4f85-a053-ddc505dd675a'&Width=1280&Height=720"},"enableCatchUp":false,"enableSeeking":false,"enableStartOver":false,"enableStartOverV2":false,"type":"episode","title":"Witch Watch - Keiko's Carefree Style / Secret Urges / Jekyll Visits The Otogi House"},"channelId":"571922","customId":"48551940","endDate":"2026-04-19T02:30:00Z","id":"bacddfb","live":false,"startDate":"2026-04-19T02:00:00Z","isGap":false,"InteractiveType":"0"},{"item":{"blackout":false,"episodeTitle":"The Incredible Shrinking Adventure / The Hamazaki Fall Bread Festival / Lucky Birthday","episodeNumber":22,"blackoutMessage":"Programme is not available for live streaming.","classification":{"code":"IMDA-PG13","name":"PG13"},"description":"Nico shrinks herself and Morihito to experience the magical candy land every girl dreams of, rolling in donuts.","images":{"logo":"https://prod98.togglestatic.com/shain/v1/dataservice/ResizeImage/$value?Format='png'&Quality=85&ImageId='9519433'&EntityType='LinearSchedule'&EntityId='0cdde1a1-8b43-49ae-b545-9803d15e4e8d'&Width=2384&Height=1000","wallpaper":"https://prod98.togglestatic.com/shain/v1/dataservice/ResizeImage/$value?Format='jpg'&Quality=85&ImageId='13651069'&EntityType='LinearSchedule'&EntityId='0cdde1a1-8b43-49ae-b545-9803d15e4e8d'&Width=1280&Height=720","tile":"https://prod98.togglestatic.com/shain/v1/dataservice/ResizeImage/$value?Format='jpg'&Quality=85&ImageId='13651073'&EntityType='LinearSchedule'&EntityId='0cdde1a1-8b43-49ae-b545-9803d15e4e8d'&Width=1280&Height=720"},"enableCatchUp":false,"enableSeeking":false,"enableStartOver":false,"enableStartOverV2":false,"type":"episode","title":"Witch Watch - The Incredible Shrinking Adventure / The Hamazaki Fall Bread Festival / Lucky Birthday"},"channelId":"571922","customId":"48551941","endDate":"2026-04-19T03:00:00Z","id":"0cdde1a","live":false,"startDate":"2026-04-19T02:30:00Z","isGap":false,"InteractiveType":"0"},{"item":{"blackout":false,"episodeTitle":"The Villainess And Sits This One Out","episodeNumber":7,"blackoutMessage":"Programme is not available for live streaming.","classification":{"code":"IMDA-PG","name":"PG"},"description":"Alicia promised her father she’d reach magic level 90 to stay Liz’s overseer, secluding herself in a shed to train.","images":{"logo":"https://prod98.togglestatic.com/shain/v1/dataservice/ResizeImage/$value?Format='png'&Quality=85&ImageId='9519433'&EntityType='LinearSchedule'&EntityId='be852a11-4107-4793-bf17-ecad287b1bc7'&Width=2384&Height=1000","wallpaper":"https://prod98.togglestatic.com/shain/v1/dataservice/ResizeImage/$value?Format='jpg'&Quality=85&ImageId='13650981'&EntityType='LinearSchedule'&EntityId='be852a11-4107-4793-bf17-ecad287b1bc7'&Width=1280&Height=720","tile":"https://prod98.togglestatic.com/shain/v1/dataservice/ResizeImage/$value?Format='jpg'&Quality=85&ImageId='13650986'&EntityType='LinearSchedule'&EntityId='be852a11-4107-4793-bf17-ecad287b1bc7'&Width=1280&Height=720"},"enableCatchUp":false,"enableSeeking":false,"enableStartOver":false,"enableStartOverV2":false,"type":"episode","title":"I'll Become A Villainess Who Goes Down In History - The Villainess And Sits This One Out"},"channelId":"571922","customId":"48551942","endDate":"2026-04-19T03:30:00Z","id":"be852a1","live":false,"startDate":"2026-04-19T03:00:00Z","isGap":false,"InteractiveType":"0"},{"item":{"blackout":false,"episodeTitle":"The Villainess And The Return","episodeNumber":8,"blackoutMessage":"Programme is not available for live streaming.","classification":{"code":"IMDA-PG","name":"PG"},"description":"After two years of training, Alicia sets out for the village of Roana, where she achieves something remarkable.","images":{"logo":"https://prod98.togglestatic.com/shain/v1/dataservice/ResizeImage/$value?Format='png'&Quality=85&ImageId='9519433'&EntityType='LinearSchedule'&EntityId='9d9cc602-ac29-46fd-bf89-b045ef470e51'&Width=2384&Height=1000","wallpaper":"https://prod98.togglestatic.com/shain/v1/dataservice/ResizeImage/$value?Format='jpg'&Quality=85&ImageId='13651138'&EntityType='LinearSchedule'&EntityId='9d9cc602-ac29-46fd-bf89-b045ef470e51'&Width=1280&Height=720","tile":"https://prod98.togglestatic.com/shain/v1/dataservice/ResizeImage/$value?Format='jpg'&Quality=85&ImageId='13651142'&EntityType='LinearSchedule'&EntityId='9d9cc602-ac29-46fd-bf89-b045ef470e51'&Width=1280&Height=720"},"enableCatchUp":false,"enableSeeking":false,"enableStartOver":false,"enableStartOverV2":false,"type":"episode","title":"I'll Become A Villainess Who Goes Down In History - The Villainess And The Return"},"channelId":"571922","customId":"48551943","endDate":"2026-04-19T04:00:00Z","id":"9d9cc60","live":false,"startDate":"2026-04-19T03:30:00Z","isGap":false,"InteractiveType":"0"},{"item":{"blackout":false,"episodeTitle":"Luffy And Ace! The Story Of How The Brothers Met!","episodeNumber":493,"blackoutMessage":"Programme is not available for live streaming.","classification":{"code":"IMDA-PG13","name":"PG13"},"description":"Luffy faces the greatest battle yet, as pirates and marines clash in a war that will reshape the era.","images":{"logo":"https://prod98.togglestatic.com/shain/v1/dataservice/ResizeImage/$value?Format='png'&Quality=85&ImageId='9519433'&EntityType='LinearSchedule'&EntityId='4f7827c9-2aa4-4a61-bd88-ba48685ef717'&Width=2384&Height=1000","wallpaper":"https://prod98.togglestatic.com/shain/v1/dataservice/ResizeImage/$value?Format='jpg'&Quality=85&ImageId='13650928'&EntityType='LinearSchedule'&EntityId='4f7827c9-2aa4-4a61-bd88-ba48685ef717'&Width=1280&Height=720","tile":"https://prod98.togglestatic.com/shain/v1/dataservice/ResizeImage/$value?Format='jpg'&Quality=85&ImageId='13650931'&EntityType='LinearSchedule'&EntityId='4f7827c9-2aa4-4a61-bd88-ba48685ef717'&Width=1280&Height=720"},"enableCatchUp":false,"enableSeeking":false,"enableStartOver":false,"enableStartOverV2":false,"type":"episode","title":"One Piece: Marineford Arc - Luffy And Ace! The Story Of How The Brothers Met!"},"channelId":"571922","customId":"48551944","endDate":"2026-04-19T04:30:00Z","id":"4f7827c","live":false,"startDate":"2026-04-19T04:00:00Z","isGap":false,"InteractiveType":"0"},{"item":{"blackout":false,"episodeTitle":"Here Comes Sabo! The Boy At The Gray Terminal!","episodeNumber":494,"blackoutMessage":"Programme is not available for live streaming.","classification":{"code":"IMDA-PG13","name":"PG13"},"description":"Luffy faces the greatest battle yet, as pirates and marines clash in a war that will reshape the era.","images":{"logo":"https://prod98.togglestatic.com/shain/v1/dataservice/ResizeImage/$value?Format='png'&Quality=85&ImageId='9519433'&EntityType='LinearSchedule'&EntityId='8c1b8611-d4fe-4aa4-a029-402816185ec8'&Width=2384&Height=1000","wallpaper":"https://prod98.togglestatic.com/shain/v1/dataservice/ResizeImage/$value?Format='jpg'&Quality=85&ImageId='13651146'&EntityType='LinearSchedule'&EntityId='8c1b8611-d4fe-4aa4-a029-402816185ec8'&Width=1280&Height=720","tile":"https://prod98.togglestatic.com/shain/v1/dataservice/ResizeImage/$value?Format='jpg'&Quality=85&ImageId='13651149'&EntityType='LinearSchedule'&EntityId='8c1b8611-d4fe-4aa4-a029-402816185ec8'&Width=1280&Height=720"},"enableCatchUp":false,"enableSeeking":false,"enableStartOver":false,"enableStartOverV2":false,"type":"episode","title":"One Piece: Marineford Arc - Here Comes Sabo! The Boy At The Gray Terminal!"},"channelId":"571922","customId":"48551945","endDate":"2026-04-19T05:00:00Z","id":"8c1b861","live":false,"startDate":"2026-04-19T04:30:00Z","isGap":false,"InteractiveType":"0"},{"item":{"blackout":false,"episodeTitle":"I Won't Run! Ace's Desperate Rescue Operation!","episodeNumber":495,"blackoutMessage":"Programme is not available for live streaming.","classification":{"code":"IMDA-PG13","name":"PG13"},"description":"Luffy faces the greatest battle yet, as pirates and marines clash in a war that will reshape the era.","images":{"logo":"https://prod98.togglestatic.com/shain/v1/dataservice/ResizeImage/$value?Format='png'&Quality=85&ImageId='9519433'&EntityType='LinearSchedule'&EntityId='2fc75eb6-298e-4c80-904e-af9462d4e3d8'&Width=2384&Height=1000","wallpaper":"https://prod98.togglestatic.com/shain/v1/dataservice/ResizeImage/$value?Format='jpg'&Quality=85&ImageId='13651154'&EntityType='LinearSchedule'&EntityId='2fc75eb6-298e-4c80-904e-af9462d4e3d8'&Width=1280&Height=720","tile":"https://prod98.togglestatic.com/shain/v1/dataservice/ResizeImage/$value?Format='jpg'&Quality=85&ImageId='13651159'&EntityType='LinearSchedule'&EntityId='2fc75eb6-298e-4c80-904e-af9462d4e3d8'&Width=1280&Height=720"},"enableCatchUp":false,"enableSeeking":false,"enableStartOver":false,"enableStartOverV2":false,"type":"episode","title":"One Piece: Marineford Arc - I Won't Run! Ace's Desperate Rescue Operation!"},"channelId":"571922","customId":"48551946","endDate":"2026-04-19T05:30:00Z","id":"2fc75eb","live":false,"startDate":"2026-04-19T05:00:00Z","isGap":false,"InteractiveType":"0"},{"item":{"blackout":false,"episodeTitle":"Letter From A Friend","episodeNumber":19,"blackoutMessage":"Programme is not available for live streaming.","classification":{"code":"IMDA-PG13","name":"PG13"},"description":"Morihito finds Nico’s childhood letter and visits his late mother’s grave, while the others listen to their story.","images":{"logo":"https://prod98.togglestatic.com/shain/v1/dataservice/ResizeImage/$value?Format='png'&Quality=85&ImageId='9519433'&EntityType='LinearSchedule'&EntityId='61f24aaf-4b54-499b-8038-1acfef553f9e'&Width=2384&Height=1000","wallpaper":"https://prod98.togglestatic.com/shain/v1/dataservice/ResizeImage/$value?Format='jpg'&Quality=85&ImageId='13651162'&EntityType='LinearSchedule'&EntityId='61f24aaf-4b54-499b-8038-1acfef553f9e'&Width=1280&Height=720","tile":"https://prod98.togglestatic.com/shain/v1/dataservice/ResizeImage/$value?Format='jpg'&Quality=85&ImageId='13651165'&EntityType='LinearSchedule'&EntityId='61f24aaf-4b54-499b-8038-1acfef553f9e'&Width=1280&Height=720"},"enableCatchUp":false,"enableSeeking":false,"enableStartOver":false,"enableStartOverV2":false,"type":"episode","title":"Witch Watch - Letter From A Friend"},"channelId":"571922","customId":"48551947","endDate":"2026-04-19T06:00:00Z","id":"61f24aa","live":false,"startDate":"2026-04-19T05:30:00Z","isGap":false,"InteractiveType":"0"},{"item":{"blackout":false,"episodeTitle":"The Lost Wolf And The Stray Cat","episodeNumber":20,"blackoutMessage":"Programme is not available for live streaming.","classification":{"code":"IMDA-PG13","name":"PG13"},"description":"Keigo feels useless untransformed. Nico gives him a flying-magic ring, and he begins training. One day, Nemu visits him.","images":{"logo":"https://prod98.togglestatic.com/shain/v1/dataservice/ResizeImage/$value?Format='png'&Quality=85&ImageId='9519433'&EntityType='LinearSchedule'&EntityId='49362b8b-1c75-46b7-ad78-f22362bd06ff'&Width=2384&Height=1000","wallpaper":"https://prod98.togglestatic.com/shain/v1/dataservice/ResizeImage/$value?Format='jpg'&Quality=85&ImageId='13650934'&EntityType='LinearSchedule'&EntityId='49362b8b-1c75-46b7-ad78-f22362bd06ff'&Width=1280&Height=720","tile":"https://prod98.togglestatic.com/shain/v1/dataservice/ResizeImage/$value?Format='jpg'&Quality=85&ImageId='13650938'&EntityType='LinearSchedule'&EntityId='49362b8b-1c75-46b7-ad78-f22362bd06ff'&Width=1280&Height=720"},"enableCatchUp":false,"enableSeeking":false,"enableStartOver":false,"enableStartOverV2":false,"type":"episode","title":"Witch Watch - The Lost Wolf And The Stray Cat"},"channelId":"571922","customId":"48551948","endDate":"2026-04-19T06:30:00Z","id":"49362b8","live":false,"startDate":"2026-04-19T06:00:00Z","isGap":false,"InteractiveType":"0"},{"item":{"blackout":false,"episodeTitle":"Keiko's Carefree Style / Secret Urges / Jekyll Visits The Otogi House","episodeNumber":21,"blackoutMessage":"Programme is not available for live streaming.","classification":{"code":"IMDA-PG13","name":"PG13"},"description":"Keigo's channel was struggling with few viewers. He asks Nico to appear but is turned down.Then Nico has a great idea.","images":{"logo":"https://prod98.togglestatic.com/shain/v1/dataservice/ResizeImage/$value?Format='png'&Quality=85&ImageId='9519433'&EntityType='LinearSchedule'&EntityId='f0622727-9e9c-41ea-8327-f2d229196953'&Width=2384&Height=1000","wallpaper":"https://prod98.togglestatic.com/shain/v1/dataservice/ResizeImage/$value?Format='jpg'&Quality=85&ImageId='13651023'&EntityType='LinearSchedule'&EntityId='f0622727-9e9c-41ea-8327-f2d229196953'&Width=1280&Height=720","tile":"https://prod98.togglestatic.com/shain/v1/dataservice/ResizeImage/$value?Format='jpg'&Quality=85&ImageId='13651026'&EntityType='LinearSchedule'&EntityId='f0622727-9e9c-41ea-8327-f2d229196953'&Width=1280&Height=720"},"enableCatchUp":false,"enableSeeking":false,"enableStartOver":false,"enableStartOverV2":false,"type":"episode","title":"Witch Watch - Keiko's Carefree Style / Secret Urges / Jekyll Visits The Otogi House"},"channelId":"571922","customId":"48551949","endDate":"2026-04-19T07:00:00Z","id":"f062272","live":false,"startDate":"2026-04-19T06:30:00Z","isGap":false,"InteractiveType":"0"},{"item":{"blackout":false,"episodeTitle":"The Incredible Shrinking Adventure / The Hamazaki Fall Bread Festival / Lucky Birthday","episodeNumber":22,"blackoutMessage":"Programme is not available for live streaming.","classification":{"code":"IMDA-PG13","name":"PG13"},"description":"Nico shrinks herself and Morihito to experience the magical candy land every girl dreams of, rolling in donuts.","images":{"logo":"https://prod98.togglestatic.com/shain/v1/dataservice/ResizeImage/$value?Format='png'&Quality=85&ImageId='9519433'&EntityType='LinearSchedule'&EntityId='db1a4efb-1f22-4777-8e33-54e5661211db'&Width=2384&Height=1000","wallpaper":"https://prod98.togglestatic.com/shain/v1/dataservice/ResizeImage/$value?Format='jpg'&Quality=85&ImageId='13650942'&EntityType='LinearSchedule'&EntityId='db1a4efb-1f22-4777-8e33-54e5661211db'&Width=1280&Height=720","tile":"https://prod98.togglestatic.com/shain/v1/dataservice/ResizeImage/$value?Format='jpg'&Quality=85&ImageId='13650946'&EntityType='LinearSchedule'&EntityId='db1a4efb-1f22-4777-8e33-54e5661211db'&Width=1280&Height=720"},"enableCatchUp":false,"enableSeeking":false,"enableStartOver":false,"enableStartOverV2":false,"type":"episode","title":"Witch Watch - The Incredible Shrinking Adventure / The Hamazaki Fall Bread Festival / Lucky Birthday"},"channelId":"571922","customId":"48551950","endDate":"2026-04-19T07:30:00Z","id":"db1a4ef","live":false,"startDate":"2026-04-19T07:00:00Z","isGap":false,"InteractiveType":"0"},{"item":{"blackout":false,"episodeTitle":"Stellar Wars","episodeNumber":3,"blackoutMessage":"Programme is not available for live streaming.","classification":{"code":"IMDA-PG13","name":"PG13"},"description":"Hibiki and Tomoki clash before the battle to reclaim Stella Fortress, where hidden demonic traps await the human army.","images":{"logo":"https://prod98.togglestatic.com/shain/v1/dataservice/ResizeImage/$value?Format='png'&Quality=85&ImageId='9519433'&EntityType='LinearSchedule'&EntityId='280e1561-ee4c-43e2-90c1-1b635d30f690'&Width=2384&Height=1000","wallpaper":"https://prod98.togglestatic.com/shain/v1/dataservice/ResizeImage/$value?Format='jpg'&Quality=85&ImageId='13651006'&EntityType='LinearSchedule'&EntityId='280e1561-ee4c-43e2-90c1-1b635d30f690'&Width=1280&Height=720","tile":"https://prod98.togglestatic.com/shain/v1/dataservice/ResizeImage/$value?Format='jpg'&Quality=85&ImageId='13651011'&EntityType='LinearSchedule'&EntityId='280e1561-ee4c-43e2-90c1-1b635d30f690'&Width=1280&Height=720"},"enableCatchUp":false,"enableSeeking":false,"enableStartOver":false,"enableStartOverV2":false,"type":"episode","title":"Tsukimichi -Moonlit Fantasy- Season 2 - Stellar Wars"},"channelId":"571922","customId":"48551951","endDate":"2026-04-19T08:00:00Z","id":"280e156","live":false,"startDate":"2026-04-19T07:30:00Z","isGap":false,"InteractiveType":"0"},{"item":{"blackout":false,"episodeTitle":"Why Am I A Teacher?!","episodeNumber":4,"blackoutMessage":"Programme is not available for live streaming.","classification":{"code":"IMDA-PG13","name":"PG13"},"description":"After arriving in Rotsgard, Makoto and Shiki gather info for their new store but soon help a girl named Luria in trouble.","images":{"logo":"https://prod98.togglestatic.com/shain/v1/dataservice/ResizeImage/$value?Format='png'&Quality=85&ImageId='9519433'&EntityType='LinearSchedule'&EntityId='aec7a52a-bde1-4fa5-8f98-697b7027937e'&Width=2384&Height=1000","wallpaper":"https://prod98.togglestatic.com/shain/v1/dataservice/ResizeImage/$value?Format='jpg'&Quality=85&ImageId='13650840'&EntityType='LinearSchedule'&EntityId='aec7a52a-bde1-4fa5-8f98-697b7027937e'&Width=1280&Height=720","tile":"https://prod98.togglestatic.com/shain/v1/dataservice/ResizeImage/$value?Format='jpg'&Quality=85&ImageId='13650846'&EntityType='LinearSchedule'&EntityId='aec7a52a-bde1-4fa5-8f98-697b7027937e'&Width=1280&Height=720"},"enableCatchUp":false,"enableSeeking":false,"enableStartOver":false,"enableStartOverV2":false,"type":"episode","title":"Tsukimichi -Moonlit Fantasy- Season 2 - Why Am I A Teacher?!"},"channelId":"571922","customId":"48551952","endDate":"2026-04-19T08:30:00Z","id":"aec7a52","live":false,"startDate":"2026-04-19T08:00:00Z","isGap":false,"InteractiveType":"0"},{"item":{"blackout":false,"episodeTitle":"The Lesson Will Now Begin","episodeNumber":5,"blackoutMessage":"Programme is not available for live streaming.","classification":{"code":"IMDA-PG13","name":"PG13"},"description":"Makoto passes the teacher recruitment exam and starts as an adjunct at a school. Meanwhile, Tsubasa investigates a lake linked to a war.","images":{"logo":"https://prod98.togglestatic.com/shain/v1/dataservice/ResizeImage/$value?Format='png'&Quality=85&ImageId='9519433'&EntityType='LinearSchedule'&EntityId='bd01cfb6-7249-49fd-9848-21c0cd140ef3'&Width=2384&Height=1000","wallpaper":"https://prod98.togglestatic.com/shain/v1/dataservice/ResizeImage/$value?Format='jpg'&Quality=85&ImageId='13651030'&EntityType='LinearSchedule'&EntityId='bd01cfb6-7249-49fd-9848-21c0cd140ef3'&Width=1280&Height=720","tile":"https://prod98.togglestatic.com/shain/v1/dataservice/ResizeImage/$value?Format='jpg'&Quality=85&ImageId='13651034'&EntityType='LinearSchedule'&EntityId='bd01cfb6-7249-49fd-9848-21c0cd140ef3'&Width=1280&Height=720"},"enableCatchUp":false,"enableSeeking":false,"enableStartOver":false,"enableStartOverV2":false,"type":"episode","title":"Tsukimichi -Moonlit Fantasy- Season 2 - The Lesson Will Now Begin"},"channelId":"571922","customId":"48551953","endDate":"2026-04-19T09:00:00Z","id":"bd01cfb","live":false,"startDate":"2026-04-19T08:30:00Z","isGap":false,"InteractiveType":"0"},{"item":{"blackout":false,"episodeTitle":"Godzilla Minus One","blackoutMessage":"Programme is not available for live streaming.","classification":{"code":"IMDA-PG13","name":"PG13"},"description":"In postwar Japan, a new terror rises; Godzilla. Will the devastated people be able to survive... let alone fight back?","images":{"logo":"https://prod98.togglestatic.com/shain/v1/dataservice/ResizeImage/$value?Format='png'&Quality=85&ImageId='9519433'&EntityType='LinearSchedule'&EntityId='bd153223-6b8d-4e9d-92b7-8047a7c76f0d'&Width=2384&Height=1000","wallpaper":"https://prod98.togglestatic.com/shain/v1/dataservice/ResizeImage/$value?Format='jpg'&Quality=85&ImageId='13651039'&EntityType='LinearSchedule'&EntityId='bd153223-6b8d-4e9d-92b7-8047a7c76f0d'&Width=1280&Height=720","tile":"https://prod98.togglestatic.com/shain/v1/dataservice/ResizeImage/$value?Format='jpg'&Quality=85&ImageId='13651043'&EntityType='LinearSchedule'&EntityId='bd153223-6b8d-4e9d-92b7-8047a7c76f0d'&Width=1280&Height=720"},"enableCatchUp":false,"enableSeeking":false,"enableStartOver":false,"enableStartOverV2":false,"type":"program","title":"Godzilla Minus One - Godzilla Minus One"},"channelId":"571922","customId":"48551954","endDate":"2026-04-19T11:30:00Z","id":"bd15322","live":false,"startDate":"2026-04-19T09:00:00Z","isGap":false,"InteractiveType":"0"},{"item":{"blackout":false,"episodeTitle":"Stellar Wars","episodeNumber":3,"blackoutMessage":"Programme is not available for live streaming.","classification":{"code":"IMDA-PG13","name":"PG13"},"description":"Hibiki and Tomoki clash before the battle to reclaim Stella Fortress, where hidden demonic traps await the human army.","images":{"logo":"https://prod98.togglestatic.com/shain/v1/dataservice/ResizeImage/$value?Format='png'&Quality=85&ImageId='9519433'&EntityType='LinearSchedule'&EntityId='8323777c-48fa-4822-b109-0fe298fab810'&Width=2384&Height=1000","wallpaper":"https://prod98.togglestatic.com/shain/v1/dataservice/ResizeImage/$value?Format='jpg'&Quality=85&ImageId='13650950'&EntityType='LinearSchedule'&EntityId='8323777c-48fa-4822-b109-0fe298fab810'&Width=1280&Height=720","tile":"https://prod98.togglestatic.com/shain/v1/dataservice/ResizeImage/$value?Format='jpg'&Quality=85&ImageId='13650955'&EntityType='LinearSchedule'&EntityId='8323777c-48fa-4822-b109-0fe298fab810'&Width=1280&Height=720"},"enableCatchUp":false,"enableSeeking":false,"enableStartOver":false,"enableStartOverV2":false,"type":"episode","title":"Tsukimichi -Moonlit Fantasy- Season 2 - Stellar Wars"},"channelId":"571922","customId":"48551955","endDate":"2026-04-19T12:00:00Z","id":"8323777","live":false,"startDate":"2026-04-19T11:30:00Z","isGap":false,"InteractiveType":"0"},{"item":{"blackout":false,"episodeTitle":"Why Am I A Teacher?!","episodeNumber":4,"blackoutMessage":"Programme is not available for live streaming.","classification":{"code":"IMDA-PG13","name":"PG13"},"description":"After arriving in Rotsgard, Makoto and Shiki gather info for their new store but soon help a girl named Luria in trouble.","images":{"logo":"https://prod98.togglestatic.com/shain/v1/dataservice/ResizeImage/$value?Format='png'&Quality=85&ImageId='9519433'&EntityType='LinearSchedule'&EntityId='39de8a48-6200-4e5b-b43e-9764367243c5'&Width=2384&Height=1000","wallpaper":"https://prod98.togglestatic.com/shain/v1/dataservice/ResizeImage/$value?Format='jpg'&Quality=85&ImageId='13651014'&EntityType='LinearSchedule'&EntityId='39de8a48-6200-4e5b-b43e-9764367243c5'&Width=1280&Height=720","tile":"https://prod98.togglestatic.com/shain/v1/dataservice/ResizeImage/$value?Format='jpg'&Quality=85&ImageId='13651018'&EntityType='LinearSchedule'&EntityId='39de8a48-6200-4e5b-b43e-9764367243c5'&Width=1280&Height=720"},"enableCatchUp":false,"enableSeeking":false,"enableStartOver":false,"enableStartOverV2":false,"type":"episode","title":"Tsukimichi -Moonlit Fantasy- Season 2 - Why Am I A Teacher?!"},"channelId":"571922","customId":"48551956","endDate":"2026-04-19T12:28:00Z","id":"39de8a4","live":false,"startDate":"2026-04-19T12:00:00Z","isGap":false,"InteractiveType":"0"},{"item":{"blackout":false,"episodeTitle":"The Lesson Will Now Begin","episodeNumber":5,"blackoutMessage":"Programme is not available for live streaming.","classification":{"code":"IMDA-PG13","name":"PG13"},"description":"Makoto passes the teacher recruitment exam and starts as an adjunct at a school. Meanwhile, Tsubasa investigates a lake linked to a war.","images":{"logo":"https://prod98.togglestatic.com/shain/v1/dataservice/ResizeImage/$value?Format='png'&Quality=85&ImageId='9519433'&EntityType='LinearSchedule'&EntityId='a0accdce-f4d3-4749-ae60-38291b4ce76f'&Width=2384&Height=1000","wallpaper":"https://prod98.togglestatic.com/shain/v1/dataservice/ResizeImage/$value?Format='jpg'&Quality=85&ImageId='13651078'&EntityType='LinearSchedule'&EntityId='a0accdce-f4d3-4749-ae60-38291b4ce76f'&Width=1280&Height=720","tile":"https://prod98.togglestatic.com/shain/v1/dataservice/ResizeImage/$value?Format='jpg'&Quality=85&ImageId='13651082'&EntityType='LinearSchedule'&EntityId='a0accdce-f4d3-4749-ae60-38291b4ce76f'&Width=1280&Height=720"},"enableCatchUp":false,"enableSeeking":false,"enableStartOver":false,"enableStartOverV2":false,"type":"episode","title":"Tsukimichi -Moonlit Fantasy- Season 2 - The Lesson Will Now Begin"},"channelId":"571922","customId":"48551957","endDate":"2026-04-19T13:00:00Z","id":"a0accdc","live":false,"startDate":"2026-04-19T12:28:00Z","isGap":false,"InteractiveType":"0"},{"item":{"blackout":false,"episodeTitle":"Letter From A Friend","episodeNumber":19,"blackoutMessage":"Programme is not available for live streaming.","classification":{"code":"IMDA-PG13","name":"PG13"},"description":"Morihito finds Nico’s childhood letter and visits his late mother’s grave, while the others listen to their story.","images":{"logo":"https://prod98.togglestatic.com/shain/v1/dataservice/ResizeImage/$value?Format='png'&Quality=85&ImageId='9519433'&EntityType='LinearSchedule'&EntityId='0550e1bf-cf1b-40c4-a70e-6ae7342a30bf'&Width=2384&Height=1000","wallpaper":"https://prod98.togglestatic.com/shain/v1/dataservice/ResizeImage/$value?Format='jpg'&Quality=85&ImageId='13650958'&EntityType='LinearSchedule'&EntityId='0550e1bf-cf1b-40c4-a70e-6ae7342a30bf'&Width=1280&Height=720","tile":"https://prod98.togglestatic.com/shain/v1/dataservice/ResizeImage/$value?Format='jpg'&Quality=85&ImageId='13650962'&EntityType='LinearSchedule'&EntityId='0550e1bf-cf1b-40c4-a70e-6ae7342a30bf'&Width=1280&Height=720"},"enableCatchUp":false,"enableSeeking":false,"enableStartOver":false,"enableStartOverV2":false,"type":"episode","title":"Witch Watch - Letter From A Friend"},"channelId":"571922","customId":"48551958","endDate":"2026-04-19T13:28:00Z","id":"0550e1b","live":false,"startDate":"2026-04-19T13:00:00Z","isGap":false,"InteractiveType":"0"},{"item":{"blackout":false,"episodeTitle":"The Lost Wolf And The Stray Cat","episodeNumber":20,"blackoutMessage":"Programme is not available for live streaming.","classification":{"code":"IMDA-PG13","name":"PG13"},"description":"Keigo feels useless untransformed. Nico gives him a flying-magic ring, and he begins training. One day, Nemu visits him.","images":{"logo":"https://prod98.togglestatic.com/shain/v1/dataservice/ResizeImage/$value?Format='png'&Quality=85&ImageId='9519433'&EntityType='LinearSchedule'&EntityId='3d303384-749a-4c5c-a558-65863d4b5f7b'&Width=2384&Height=1000","wallpaper":"https://prod98.togglestatic.com/shain/v1/dataservice/ResizeImage/$value?Format='jpg'&Quality=85&ImageId='13650852'&EntityType='LinearSchedule'&EntityId='3d303384-749a-4c5c-a558-65863d4b5f7b'&Width=1280&Height=720","tile":"https://prod98.togglestatic.com/shain/v1/dataservice/ResizeImage/$value?Format='jpg'&Quality=85&ImageId='13650858'&EntityType='LinearSchedule'&EntityId='3d303384-749a-4c5c-a558-65863d4b5f7b'&Width=1280&Height=720"},"enableCatchUp":false,"enableSeeking":false,"enableStartOver":false,"enableStartOverV2":false,"type":"episode","title":"Witch Watch - The Lost Wolf And The Stray Cat"},"channelId":"571922","customId":"48551959","endDate":"2026-04-19T13:58:00Z","id":"3d30338","live":false,"startDate":"2026-04-19T13:28:00Z","isGap":false,"InteractiveType":"0"},{"item":{"blackout":false,"episodeTitle":"Keiko's Carefree Style / Secret Urges / Jekyll Visits The Otogi House","episodeNumber":21,"blackoutMessage":"Programme is not available for live streaming.","classification":{"code":"IMDA-PG13","name":"PG13"},"description":"Keigo's channel was struggling with few viewers. He asks Nico to appear but is turned down.Then Nico has a great idea.","images":{"logo":"https://prod98.togglestatic.com/shain/v1/dataservice/ResizeImage/$value?Format='png'&Quality=85&ImageId='9519433'&EntityType='LinearSchedule'&EntityId='b92a1d95-0ae2-4eea-8292-3bd9abb49323'&Width=2384&Height=1000","wallpaper":"https://prod98.togglestatic.com/shain/v1/dataservice/ResizeImage/$value?Format='jpg'&Quality=85&ImageId='13650864'&EntityType='LinearSchedule'&EntityId='b92a1d95-0ae2-4eea-8292-3bd9abb49323'&Width=1280&Height=720","tile":"https://prod98.togglestatic.com/shain/v1/dataservice/ResizeImage/$value?Format='jpg'&Quality=85&ImageId='13650868'&EntityType='LinearSchedule'&EntityId='b92a1d95-0ae2-4eea-8292-3bd9abb49323'&Width=1280&Height=720"},"enableCatchUp":false,"enableSeeking":false,"enableStartOver":false,"enableStartOverV2":false,"type":"episode","title":"Witch Watch - Keiko's Carefree Style / Secret Urges / Jekyll Visits The Otogi House"},"channelId":"571922","customId":"48551960","endDate":"2026-04-19T14:28:00Z","id":"b92a1d9","live":false,"startDate":"2026-04-19T13:58:00Z","isGap":false,"InteractiveType":"0"},{"item":{"blackout":false,"episodeTitle":"The Incredible Shrinking Adventure / The Hamazaki Fall Bread Festival / Lucky Birthday","episodeNumber":22,"blackoutMessage":"Programme is not available for live streaming.","classification":{"code":"IMDA-PG13","name":"PG13"},"description":"Nico shrinks herself and Morihito to experience the magical candy land every girl dreams of, rolling in donuts.","images":{"logo":"https://prod98.togglestatic.com/shain/v1/dataservice/ResizeImage/$value?Format='png'&Quality=85&ImageId='9519433'&EntityType='LinearSchedule'&EntityId='3407f829-d483-4eef-8037-209e6e9ea876'&Width=2384&Height=1000","wallpaper":"https://prod98.togglestatic.com/shain/v1/dataservice/ResizeImage/$value?Format='jpg'&Quality=85&ImageId='13651086'&EntityType='LinearSchedule'&EntityId='3407f829-d483-4eef-8037-209e6e9ea876'&Width=1280&Height=720","tile":"https://prod98.togglestatic.com/shain/v1/dataservice/ResizeImage/$value?Format='jpg'&Quality=85&ImageId='13651090'&EntityType='LinearSchedule'&EntityId='3407f829-d483-4eef-8037-209e6e9ea876'&Width=1280&Height=720"},"enableCatchUp":false,"enableSeeking":false,"enableStartOver":false,"enableStartOverV2":false,"type":"episode","title":"Witch Watch - The Incredible Shrinking Adventure / The Hamazaki Fall Bread Festival / Lucky Birthday"},"channelId":"571922","customId":"48551961","endDate":"2026-04-19T15:00:00Z","id":"3407f82","live":false,"startDate":"2026-04-19T14:28:00Z","isGap":false,"InteractiveType":"0"},{"item":{"blackout":false,"episodeTitle":"You Look Like You’re Having Fun","episodeNumber":12,"blackoutMessage":"Programme is not available for live streaming.","classification":{"code":"IMDA-PG13","name":"PG13"},"description":"It is a new school year, and Tohru is excited to see Momiji and Hatsuharu as first year students in their school.","images":{"logo":"https://prod98.togglestatic.com/shain/v1/dataservice/ResizeImage/$value?Format='png'&Quality=85&ImageId='9519433'&EntityType='LinearSchedule'&EntityId='09ff6b30-b223-4fb2-b1e5-4537cc595d7f'&Width=2384&Height=1000","wallpaper":"https://prod98.togglestatic.com/shain/v1/dataservice/ResizeImage/$value?Format='jpg'&Quality=85&ImageId='13650965'&EntityType='LinearSchedule'&EntityId='09ff6b30-b223-4fb2-b1e5-4537cc595d7f'&Width=1280&Height=720","tile":"https://prod98.togglestatic.com/shain/v1/dataservice/ResizeImage/$value?Format='jpg'&Quality=85&ImageId='13650969'&EntityType='LinearSchedule'&EntityId='09ff6b30-b223-4fb2-b1e5-4537cc595d7f'&Width=1280&Height=720"},"enableCatchUp":false,"enableSeeking":false,"enableStartOver":false,"enableStartOverV2":false,"type":"episode","title":"Fruits Basket Season 1 - You Look Like You’re Having Fun"},"channelId":"571922","customId":"48551962","endDate":"2026-04-19T15:30:00Z","id":"09ff6b3","live":false,"startDate":"2026-04-19T15:00:00Z","isGap":false,"InteractiveType":"0"},{"item":{"blackout":false,"episodeTitle":"How Have You Been, My Brother?","episodeNumber":13,"blackoutMessage":"Programme is not available for live streaming.","classification":{"code":"IMDA-PG13","name":"PG13"},"description":"While out at the vegetable patch, Tohru encounters a snake which turns out to be Kyo's older brother Ayame.","images":{"logo":"https://prod98.togglestatic.com/shain/v1/dataservice/ResizeImage/$value?Format='png'&Quality=85&ImageId='9519433'&EntityType='LinearSchedule'&EntityId='ce3f3183-4fc4-4517-8606-bded9b2e5ebd'&Width=2384&Height=1000","wallpaper":"https://prod98.togglestatic.com/shain/v1/dataservice/ResizeImage/$value?Format='jpg'&Quality=85&ImageId='13651103'&EntityType='LinearSchedule'&EntityId='ce3f3183-4fc4-4517-8606-bded9b2e5ebd'&Width=1280&Height=720","tile":"https://prod98.togglestatic.com/shain/v1/dataservice/ResizeImage/$value?Format='jpg'&Quality=85&ImageId='13651107'&EntityType='LinearSchedule'&EntityId='ce3f3183-4fc4-4517-8606-bded9b2e5ebd'&Width=1280&Height=720"},"enableCatchUp":false,"enableSeeking":false,"enableStartOver":false,"enableStartOverV2":false,"type":"episode","title":"Fruits Basket Season 1 - How Have You Been, My Brother?"},"channelId":"571922","customId":"48551963","endDate":"2026-04-19T15:58:00Z","id":"ce3f318","live":false,"startDate":"2026-04-19T15:30:00Z","isGap":false,"InteractiveType":"0"},{"item":{"blackout":false,"episodeTitle":"That’s A Secret","episodeNumber":14,"blackoutMessage":"Programme is not available for live streaming.","classification":{"code":"IMDA-PG13","name":"PG13"},"description":"It has been a year since Tohru's mother passed away. At her part time job, Momiji tells Tohru about his family.","images":{"logo":"https://prod98.togglestatic.com/shain/v1/dataservice/ResizeImage/$value?Format='png'&Quality=85&ImageId='9519433'&EntityType='LinearSchedule'&EntityId='541cbca7-6814-443d-b98d-55905e9b5438'&Width=2384&Height=1000","wallpaper":"https://prod98.togglestatic.com/shain/v1/dataservice/ResizeImage/$value?Format='jpg'&Quality=85&ImageId='13651094'&EntityType='LinearSchedule'&EntityId='541cbca7-6814-443d-b98d-55905e9b5438'&Width=1280&Height=720","tile":"https://prod98.togglestatic.com/shain/v1/dataservice/ResizeImage/$value?Format='jpg'&Quality=85&ImageId='13651098'&EntityType='LinearSchedule'&EntityId='541cbca7-6814-443d-b98d-55905e9b5438'&Width=1280&Height=720"},"enableCatchUp":false,"enableSeeking":false,"enableStartOver":false,"enableStartOverV2":false,"type":"episode","title":"Fruits Basket Season 1 - That’s A Secret"},"channelId":"571922","customId":"48551964","endDate":"2026-04-19T16:30:00Z","id":"541cbca","live":false,"startDate":"2026-04-19T15:58:00Z","isGap":false,"InteractiveType":"0"},{"item":{"blackout":false,"episodeTitle":"Luffy And Ace! The Story Of How The Brothers Met!","episodeNumber":493,"blackoutMessage":"Programme is not available for live streaming.","classification":{"code":"IMDA-PG13","name":"PG13"},"description":"Luffy faces the greatest battle yet, as pirates and marines clash in a war that will reshape the era.","images":{"logo":"https://prod98.togglestatic.com/shain/v1/dataservice/ResizeImage/$value?Format='png'&Quality=85&ImageId='9519433'&EntityType='LinearSchedule'&EntityId='4c310ccf-8b3d-4035-8718-0e968a85156a'&Width=2384&Height=1000","wallpaper":"https://prod98.togglestatic.com/shain/v1/dataservice/ResizeImage/$value?Format='jpg'&Quality=85&ImageId='13663022'&EntityType='LinearSchedule'&EntityId='4c310ccf-8b3d-4035-8718-0e968a85156a'&Width=1280&Height=720","tile":"https://prod98.togglestatic.com/shain/v1/dataservice/ResizeImage/$value?Format='jpg'&Quality=85&ImageId='13663030'&EntityType='LinearSchedule'&EntityId='4c310ccf-8b3d-4035-8718-0e968a85156a'&Width=1280&Height=720"},"enableCatchUp":false,"enableSeeking":false,"enableStartOver":false,"enableStartOverV2":false,"type":"episode","title":"One Piece: Marineford Arc - Luffy And Ace! The Story Of How The Brothers Met!"},"channelId":"571922","customId":"48551965","endDate":"2026-04-19T17:00:00Z","id":"4c310cc","live":false,"startDate":"2026-04-19T16:30:00Z","isGap":false,"InteractiveType":"0"},{"item":{"blackout":false,"episodeTitle":"Here Comes Sabo! The Boy At The Gray Terminal!","episodeNumber":494,"blackoutMessage":"Programme is not available for live streaming.","classification":{"code":"IMDA-PG13","name":"PG13"},"description":"Luffy faces the greatest battle yet, as pirates and marines clash in a war that will reshape the era.","images":{"logo":"https://prod98.togglestatic.com/shain/v1/dataservice/ResizeImage/$value?Format='png'&Quality=85&ImageId='9519433'&EntityType='LinearSchedule'&EntityId='0f3caeb4-1632-4053-9c3d-0f07c853964b'&Width=2384&Height=1000","wallpaper":"https://prod98.togglestatic.com/shain/v1/dataservice/ResizeImage/$value?Format='jpg'&Quality=85&ImageId='13663039'&EntityType='LinearSchedule'&EntityId='0f3caeb4-1632-4053-9c3d-0f07c853964b'&Width=1280&Height=720","tile":"https://prod98.togglestatic.com/shain/v1/dataservice/ResizeImage/$value?Format='jpg'&Quality=85&ImageId='13663046'&EntityType='LinearSchedule'&EntityId='0f3caeb4-1632-4053-9c3d-0f07c853964b'&Width=1280&Height=720"},"enableCatchUp":false,"enableSeeking":false,"enableStartOver":false,"enableStartOverV2":false,"type":"episode","title":"One Piece: Marineford Arc - Here Comes Sabo! The Boy At The Gray Terminal!"},"channelId":"571922","customId":"48556028","endDate":"2026-04-19T17:30:00Z","id":"0f3caeb","live":false,"startDate":"2026-04-19T17:00:00Z","isGap":false,"InteractiveType":"0"},{"item":{"blackout":false,"episodeTitle":"I Won't Run! Ace's Desperate Rescue Operation!","episodeNumber":495,"blackoutMessage":"Programme is not available for live streaming.","classification":{"code":"IMDA-PG13","name":"PG13"},"description":"Luffy faces the greatest battle yet, as pirates and marines clash in a war that will reshape the era.","images":{"logo":"https://prod98.togglestatic.com/shain/v1/dataservice/ResizeImage/$value?Format='png'&Quality=85&ImageId='9519433'&EntityType='LinearSchedule'&EntityId='8ea36579-e6b9-4393-a7c7-8800bdcbe460'&Width=2384&Height=1000","wallpaper":"https://prod98.togglestatic.com/shain/v1/dataservice/ResizeImage/$value?Format='jpg'&Quality=85&ImageId='13662912'&EntityType='LinearSchedule'&EntityId='8ea36579-e6b9-4393-a7c7-8800bdcbe460'&Width=1280&Height=720","tile":"https://prod98.togglestatic.com/shain/v1/dataservice/ResizeImage/$value?Format='jpg'&Quality=85&ImageId='13662919'&EntityType='LinearSchedule'&EntityId='8ea36579-e6b9-4393-a7c7-8800bdcbe460'&Width=1280&Height=720"},"enableCatchUp":false,"enableSeeking":false,"enableStartOver":false,"enableStartOverV2":false,"type":"episode","title":"One Piece: Marineford Arc - I Won't Run! Ace's Desperate Rescue Operation!"},"channelId":"571922","customId":"48556029","endDate":"2026-04-19T18:00:00Z","id":"8ea3657","live":false,"startDate":"2026-04-19T17:30:00Z","isGap":false,"InteractiveType":"0"},{"item":{"blackout":false,"episodeTitle":"The Villainess And Sits This One Out","episodeNumber":7,"blackoutMessage":"Programme is not available for live streaming.","classification":{"code":"IMDA-PG","name":"PG"},"description":"Alicia promised her father she’d reach magic level 90 to stay Liz’s overseer, secluding herself in a shed to train.","images":{"logo":"https://prod98.togglestatic.com/shain/v1/dataservice/ResizeImage/$value?Format='png'&Quality=85&ImageId='9519433'&EntityType='LinearSchedule'&EntityId='f5925563-652a-49e5-89c1-0670f68734c9'&Width=2384&Height=1000","wallpaper":"https://prod98.togglestatic.com/shain/v1/dataservice/ResizeImage/$value?Format='jpg'&Quality=85&ImageId='13663215'&EntityType='LinearSchedule'&EntityId='f5925563-652a-49e5-89c1-0670f68734c9'&Width=1280&Height=720","tile":"https://prod98.togglestatic.com/shain/v1/dataservice/ResizeImage/$value?Format='jpg'&Quality=85&ImageId='13663224'&EntityType='LinearSchedule'&EntityId='f5925563-652a-49e5-89c1-0670f68734c9'&Width=1280&Height=720"},"enableCatchUp":false,"enableSeeking":false,"enableStartOver":false,"enableStartOverV2":false,"type":"episode","title":"I'll Become A Villainess Who Goes Down In History - The Villainess And Sits This One Out"},"channelId":"571922","customId":"48556030","endDate":"2026-04-19T18:30:00Z","id":"f592556","live":false,"startDate":"2026-04-19T18:00:00Z","isGap":false,"InteractiveType":"0"},{"item":{"blackout":false,"episodeTitle":"The Villainess And The Return","episodeNumber":8,"blackoutMessage":"Programme is not available for live streaming.","classification":{"code":"IMDA-PG","name":"PG"},"description":"After two years of training, Alicia sets out for the village of Roana, where she achieves something remarkable.","images":{"logo":"https://prod98.togglestatic.com/shain/v1/dataservice/ResizeImage/$value?Format='png'&Quality=85&ImageId='9519433'&EntityType='LinearSchedule'&EntityId='3966e13e-bff7-4b31-a835-378d43c9c87b'&Width=2384&Height=1000","wallpaper":"https://prod98.togglestatic.com/shain/v1/dataservice/ResizeImage/$value?Format='jpg'&Quality=85&ImageId='13663234'&EntityType='LinearSchedule'&EntityId='3966e13e-bff7-4b31-a835-378d43c9c87b'&Width=1280&Height=720","tile":"https://prod98.togglestatic.com/shain/v1/dataservice/ResizeImage/$value?Format='jpg'&Quality=85&ImageId='13663242'&EntityType='LinearSchedule'&EntityId='3966e13e-bff7-4b31-a835-378d43c9c87b'&Width=1280&Height=720"},"enableCatchUp":false,"enableSeeking":false,"enableStartOver":false,"enableStartOverV2":false,"type":"episode","title":"I'll Become A Villainess Who Goes Down In History - The Villainess And The Return"},"channelId":"571922","customId":"48556031","endDate":"2026-04-19T19:00:00Z","id":"3966e13","live":false,"startDate":"2026-04-19T18:30:00Z","isGap":false,"InteractiveType":"0"},{"item":{"blackout":false,"episodeTitle":"You Look Like You’re Having Fun","episodeNumber":12,"blackoutMessage":"Programme is not available for live streaming.","classification":{"code":"IMDA-PG13","name":"PG13"},"description":"It is a new school year, and Tohru is excited to see Momiji and Hatsuharu as first year students in their school.","images":{"logo":"https://prod98.togglestatic.com/shain/v1/dataservice/ResizeImage/$value?Format='png'&Quality=85&ImageId='9519433'&EntityType='LinearSchedule'&EntityId='b86ad096-7b3f-42f6-92aa-6fa3fca78635'&Width=2384&Height=1000","wallpaper":"https://prod98.togglestatic.com/shain/v1/dataservice/ResizeImage/$value?Format='jpg'&Quality=85&ImageId='13663054'&EntityType='LinearSchedule'&EntityId='b86ad096-7b3f-42f6-92aa-6fa3fca78635'&Width=1280&Height=720","tile":"https://prod98.togglestatic.com/shain/v1/dataservice/ResizeImage/$value?Format='jpg'&Quality=85&ImageId='13663059'&EntityType='LinearSchedule'&EntityId='b86ad096-7b3f-42f6-92aa-6fa3fca78635'&Width=1280&Height=720"},"enableCatchUp":false,"enableSeeking":false,"enableStartOver":false,"enableStartOverV2":false,"type":"episode","title":"Fruits Basket Season 1 - You Look Like You’re Having Fun"},"channelId":"571922","customId":"48556032","endDate":"2026-04-19T19:30:00Z","id":"b86ad09","live":false,"startDate":"2026-04-19T19:00:00Z","isGap":false,"InteractiveType":"0"},{"item":{"blackout":false,"episodeTitle":"How Have You Been, My Brother?","episodeNumber":13,"blackoutMessage":"Programme is not available for live streaming.","classification":{"code":"IMDA-PG13","name":"PG13"},"description":"While out at the vegetable patch, Tohru encounters a snake which turns out to be Kyo's older brother Ayame.","images":{"logo":"https://prod98.togglestatic.com/shain/v1/dataservice/ResizeImage/$value?Format='png'&Quality=85&ImageId='9519433'&EntityType='LinearSchedule'&EntityId='00507779-07b3-490c-a528-c67cb3a5fe21'&Width=2384&Height=1000","wallpaper":"https://prod98.togglestatic.com/shain/v1/dataservice/ResizeImage/$value?Format='jpg'&Quality=85&ImageId='13663366'&EntityType='LinearSchedule'&EntityId='00507779-07b3-490c-a528-c67cb3a5fe21'&Width=1280&Height=720","tile":"https://prod98.togglestatic.com/shain/v1/dataservice/ResizeImage/$value?Format='jpg'&Quality=85&ImageId='13663373'&EntityType='LinearSchedule'&EntityId='00507779-07b3-490c-a528-c67cb3a5fe21'&Width=1280&Height=720"},"enableCatchUp":false,"enableSeeking":false,"enableStartOver":false,"enableStartOverV2":false,"type":"episode","title":"Fruits Basket Season 1 - How Have You Been, My Brother?"},"channelId":"571922","customId":"48556033","endDate":"2026-04-19T20:00:00Z","id":"0050777","live":false,"startDate":"2026-04-19T19:30:00Z","isGap":false,"InteractiveType":"0"},{"item":{"blackout":false,"episodeTitle":"That’s A Secret","episodeNumber":14,"blackoutMessage":"Programme is not available for live streaming.","classification":{"code":"IMDA-PG13","name":"PG13"},"description":"It has been a year since Tohru's mother passed away. At her part time job, Momiji tells Tohru about his family.","images":{"logo":"https://prod98.togglestatic.com/shain/v1/dataservice/ResizeImage/$value?Format='png'&Quality=85&ImageId='9519433'&EntityType='LinearSchedule'&EntityId='038e5f4f-3290-4120-b87e-8caf7a59d2e1'&Width=2384&Height=1000","wallpaper":"https://prod98.togglestatic.com/shain/v1/dataservice/ResizeImage/$value?Format='jpg'&Quality=85&ImageId='13662927'&EntityType='LinearSchedule'&EntityId='038e5f4f-3290-4120-b87e-8caf7a59d2e1'&Width=1280&Height=720","tile":"https://prod98.togglestatic.com/shain/v1/dataservice/ResizeImage/$value?Format='jpg'&Quality=85&ImageId='13662935'&EntityType='LinearSchedule'&EntityId='038e5f4f-3290-4120-b87e-8caf7a59d2e1'&Width=1280&Height=720"},"enableCatchUp":false,"enableSeeking":false,"enableStartOver":false,"enableStartOverV2":false,"type":"episode","title":"Fruits Basket Season 1 - That’s A Secret"},"channelId":"571922","customId":"48556034","endDate":"2026-04-19T20:30:00Z","id":"038e5f4","live":false,"startDate":"2026-04-19T20:00:00Z","isGap":false,"InteractiveType":"0"},{"item":{"blackout":false,"episodeTitle":"Stellar Wars","episodeNumber":3,"blackoutMessage":"Programme is not available for live streaming.","classification":{"code":"IMDA-PG13","name":"PG13"},"description":"Hibiki and Tomoki clash before the battle to reclaim Stella Fortress, where hidden demonic traps await the human army.","images":{"logo":"https://prod98.togglestatic.com/shain/v1/dataservice/ResizeImage/$value?Format='png'&Quality=85&ImageId='9519433'&EntityType='LinearSchedule'&EntityId='a08a9b96-765d-4682-b127-cad2efb2829e'&Width=2384&Height=1000","wallpaper":"https://prod98.togglestatic.com/shain/v1/dataservice/ResizeImage/$value?Format='jpg'&Quality=85&ImageId='13663068'&EntityType='LinearSchedule'&EntityId='a08a9b96-765d-4682-b127-cad2efb2829e'&Width=1280&Height=720","tile":"https://prod98.togglestatic.com/shain/v1/dataservice/ResizeImage/$value?Format='jpg'&Quality=85&ImageId='13663075'&EntityType='LinearSchedule'&EntityId='a08a9b96-765d-4682-b127-cad2efb2829e'&Width=1280&Height=720"},"enableCatchUp":false,"enableSeeking":false,"enableStartOver":false,"enableStartOverV2":false,"type":"episode","title":"Tsukimichi -Moonlit Fantasy- Season 2 - Stellar Wars"},"channelId":"571922","customId":"48556035","endDate":"2026-04-19T21:00:00Z","id":"a08a9b9","live":false,"startDate":"2026-04-19T20:30:00Z","isGap":false,"InteractiveType":"0"},{"item":{"blackout":false,"episodeTitle":"Why Am I A Teacher?!","episodeNumber":4,"blackoutMessage":"Programme is not available for live streaming.","classification":{"code":"IMDA-PG13","name":"PG13"},"description":"After arriving in Rotsgard, Makoto and Shiki gather info for their new store but soon help a girl named Luria in trouble.","images":{"logo":"https://prod98.togglestatic.com/shain/v1/dataservice/ResizeImage/$value?Format='png'&Quality=85&ImageId='9519433'&EntityType='LinearSchedule'&EntityId='c4ef95b2-54ef-4acc-ac44-58f55be502eb'&Width=2384&Height=1000","wallpaper":"https://prod98.togglestatic.com/shain/v1/dataservice/ResizeImage/$value?Format='jpg'&Quality=85&ImageId='13662943'&EntityType='LinearSchedule'&EntityId='c4ef95b2-54ef-4acc-ac44-58f55be502eb'&Width=1280&Height=720","tile":"https://prod98.togglestatic.com/shain/v1/dataservice/ResizeImage/$value?Format='jpg'&Quality=85&ImageId='13662950'&EntityType='LinearSchedule'&EntityId='c4ef95b2-54ef-4acc-ac44-58f55be502eb'&Width=1280&Height=720"},"enableCatchUp":false,"enableSeeking":false,"enableStartOver":false,"enableStartOverV2":false,"type":"episode","title":"Tsukimichi -Moonlit Fantasy- Season 2 - Why Am I A Teacher?!"},"channelId":"571922","customId":"48556036","endDate":"2026-04-19T21:30:00Z","id":"c4ef95b","live":false,"startDate":"2026-04-19T21:00:00Z","isGap":false,"InteractiveType":"0"},{"item":{"blackout":false,"episodeTitle":"The Lesson Will Now Begin","episodeNumber":5,"blackoutMessage":"Programme is not available for live streaming.","classification":{"code":"IMDA-PG13","name":"PG13"},"description":"Makoto passes the teacher recruitment exam and starts as an adjunct at a school. Meanwhile, Tsubasa investigates a lake linked to a war.","images":{"logo":"https://prod98.togglestatic.com/shain/v1/dataservice/ResizeImage/$value?Format='png'&Quality=85&ImageId='9519433'&EntityType='LinearSchedule'&EntityId='4000b4f9-9c9a-497e-81cd-b1329f85c546'&Width=2384&Height=1000","wallpaper":"https://prod98.togglestatic.com/shain/v1/dataservice/ResizeImage/$value?Format='jpg'&Quality=85&ImageId='13662849'&EntityType='LinearSchedule'&EntityId='4000b4f9-9c9a-497e-81cd-b1329f85c546'&Width=1280&Height=720","tile":"https://prod98.togglestatic.com/shain/v1/dataservice/ResizeImage/$value?Format='jpg'&Quality=85&ImageId='13662855'&EntityType='LinearSchedule'&EntityId='4000b4f9-9c9a-497e-81cd-b1329f85c546'&Width=1280&Height=720"},"enableCatchUp":false,"enableSeeking":false,"enableStartOver":false,"enableStartOverV2":false,"type":"episode","title":"Tsukimichi -Moonlit Fantasy- Season 2 - The Lesson Will Now Begin"},"channelId":"571922","customId":"48556037","endDate":"2026-04-19T22:00:00Z","id":"4000b4f","live":false,"startDate":"2026-04-19T21:30:00Z","isGap":false,"InteractiveType":"0"},{"item":{"blackout":false,"episodeTitle":"A Chance To Connect","episodeNumber":11,"blackoutMessage":"Programme is not available for live streaming.","classification":{"code":"IMDA-PG","name":"PG"},"description":"The first match of Karasuno is against Tsubakihara. Kageyama and Hinata heat up the stadium with their freak quick move.","images":{"logo":"https://prod98.togglestatic.com/shain/v1/dataservice/ResizeImage/$value?Format='png'&Quality=85&ImageId='9519433'&EntityType='LinearSchedule'&EntityId='1017c66c-1e34-4791-8960-1198075f1279'&Width=2384&Height=1000","wallpaper":"https://prod98.togglestatic.com/shain/v1/dataservice/ResizeImage/$value?Format='jpg'&Quality=85&ImageId='13663379'&EntityType='LinearSchedule'&EntityId='1017c66c-1e34-4791-8960-1198075f1279'&Width=1280&Height=720","tile":"https://prod98.togglestatic.com/shain/v1/dataservice/ResizeImage/$value?Format='jpg'&Quality=85&ImageId='13663384'&EntityType='LinearSchedule'&EntityId='1017c66c-1e34-4791-8960-1198075f1279'&Width=1280&Height=720"},"enableCatchUp":false,"enableSeeking":false,"enableStartOver":false,"enableStartOverV2":false,"type":"episode","title":"Haikyu!! 4th Season - A Chance To Connect"},"channelId":"571922","customId":"48556038","endDate":"2026-04-19T22:30:00Z","id":"1017c66","live":false,"startDate":"2026-04-19T22:00:00Z","isGap":false,"InteractiveType":"0"},{"item":{"blackout":false,"episodeTitle":"Vivid","episodeNumber":12,"blackoutMessage":"Programme is not available for live streaming.","classification":{"code":"IMDA-PG","name":"PG"},"description":"Defeating Tsubakihara, Karasuno advances to the next match. Hinata meets Korai of Kamomedai High from the camp.","images":{"logo":"https://prod98.togglestatic.com/shain/v1/dataservice/ResizeImage/$value?Format='png'&Quality=85&ImageId='9519433'&EntityType='LinearSchedule'&EntityId='f6d795de-a3da-4a65-9519-e4373676ed1e'&Width=2384&Height=1000","wallpaper":"https://prod98.togglestatic.com/shain/v1/dataservice/ResizeImage/$value?Format='jpg'&Quality=85&ImageId='13663390'&EntityType='LinearSchedule'&EntityId='f6d795de-a3da-4a65-9519-e4373676ed1e'&Width=1280&Height=720","tile":"https://prod98.togglestatic.com/shain/v1/dataservice/ResizeImage/$value?Format='jpg'&Quality=85&ImageId='13663396'&EntityType='LinearSchedule'&EntityId='f6d795de-a3da-4a65-9519-e4373676ed1e'&Width=1280&Height=720"},"enableCatchUp":false,"enableSeeking":false,"enableStartOver":false,"enableStartOverV2":false,"type":"episode","title":"Haikyu!! 4th Season - Vivid"},"channelId":"571922","customId":"48556039","endDate":"2026-04-19T23:00:00Z","id":"f6d795d","live":false,"startDate":"2026-04-19T22:30:00Z","isGap":false,"InteractiveType":"0"},{"item":{"blackout":false,"episodeTitle":"The Villainess And Sits This One Out","episodeNumber":7,"blackoutMessage":"Programme is not available for live streaming.","classification":{"code":"IMDA-PG","name":"PG"},"description":"Alicia promised her father she’d reach magic level 90 to stay Liz’s overseer, secluding herself in a shed to train.","images":{"logo":"https://prod98.togglestatic.com/shain/v1/dataservice/ResizeImage/$value?Format='png'&Quality=85&ImageId='9519433'&EntityType='LinearSchedule'&EntityId='847f1b61-0c69-4a56-aaa2-53c957cbdaee'&Width=2384&Height=1000","wallpaper":"https://prod98.togglestatic.com/shain/v1/dataservice/ResizeImage/$value?Format='jpg'&Quality=85&ImageId='13663082'&EntityType='LinearSchedule'&EntityId='847f1b61-0c69-4a56-aaa2-53c957cbdaee'&Width=1280&Height=720","tile":"https://prod98.togglestatic.com/shain/v1/dataservice/ResizeImage/$value?Format='jpg'&Quality=85&ImageId='13663092'&EntityType='LinearSchedule'&EntityId='847f1b61-0c69-4a56-aaa2-53c957cbdaee'&Width=1280&Height=720"},"enableCatchUp":false,"enableSeeking":false,"enableStartOver":false,"enableStartOverV2":false,"type":"episode","title":"I'll Become A Villainess Who Goes Down In History - The Villainess And Sits This One Out"},"channelId":"571922","customId":"48556040","endDate":"2026-04-19T23:30:00Z","id":"847f1b6","live":false,"startDate":"2026-04-19T23:00:00Z","isGap":false,"InteractiveType":"0"},{"item":{"blackout":false,"episodeTitle":"The Villainess And The Return","episodeNumber":8,"blackoutMessage":"Programme is not available for live streaming.","classification":{"code":"IMDA-PG","name":"PG"},"description":"After two years of training, Alicia sets out for the village of Roana, where she achieves something remarkable.","images":{"logo":"https://prod98.togglestatic.com/shain/v1/dataservice/ResizeImage/$value?Format='png'&Quality=85&ImageId='9519433'&EntityType='LinearSchedule'&EntityId='b560870b-1514-4f37-a01b-b78ca210724b'&Width=2384&Height=1000","wallpaper":"https://prod98.togglestatic.com/shain/v1/dataservice/ResizeImage/$value?Format='jpg'&Quality=85&ImageId='13663402'&EntityType='LinearSchedule'&EntityId='b560870b-1514-4f37-a01b-b78ca210724b'&Width=1280&Height=720","tile":"https://prod98.togglestatic.com/shain/v1/dataservice/ResizeImage/$value?Format='jpg'&Quality=85&ImageId='13663409'&EntityType='LinearSchedule'&EntityId='b560870b-1514-4f37-a01b-b78ca210724b'&Width=1280&Height=720"},"enableCatchUp":false,"enableSeeking":false,"enableStartOver":false,"enableStartOverV2":false,"type":"episode","title":"I'll Become A Villainess Who Goes Down In History - The Villainess And The Return"},"channelId":"571922","customId":"48556041","endDate":"2026-04-20T00:00:00Z","id":"b560870","live":false,"startDate":"2026-04-19T23:30:00Z","isGap":false,"InteractiveType":"0"},{"item":{"blackout":false,"episodeTitle":"Keiko's Carefree Style / Secret Urges / Jekyll Visits The Otogi House","episodeNumber":21,"blackoutMessage":"Programme is not available for live streaming.","classification":{"code":"IMDA-PG13","name":"PG13"},"description":"Keigo's channel was struggling with few viewers. He asks Nico to appear but is turned down.Then Nico has a great idea.","images":{"logo":"https://prod98.togglestatic.com/shain/v1/dataservice/ResizeImage/$value?Format='png'&Quality=85&ImageId='9519433'&EntityType='LinearSchedule'&EntityId='f394edb9-06d0-483b-9488-5587866c0f45'&Width=2384&Height=1000","wallpaper":"https://prod98.togglestatic.com/shain/v1/dataservice/ResizeImage/$value?Format='jpg'&Quality=85&ImageId='13663416'&EntityType='LinearSchedule'&EntityId='f394edb9-06d0-483b-9488-5587866c0f45'&Width=1280&Height=720","tile":"https://prod98.togglestatic.com/shain/v1/dataservice/ResizeImage/$value?Format='jpg'&Quality=85&ImageId='13663422'&EntityType='LinearSchedule'&EntityId='f394edb9-06d0-483b-9488-5587866c0f45'&Width=1280&Height=720"},"enableCatchUp":false,"enableSeeking":false,"enableStartOver":false,"enableStartOverV2":false,"type":"episode","title":"Witch Watch - Keiko's Carefree Style / Secret Urges / Jekyll Visits The Otogi House"},"channelId":"571922","customId":"48556042","endDate":"2026-04-20T00:30:00Z","id":"f394edb","live":false,"startDate":"2026-04-20T00:00:00Z","isGap":false,"InteractiveType":"0"}],"channelId":"571922","startDate":"2026-04-19T00:00:00.000Z","endDate":"2026-04-20T00:00:00.000Z"}] \ No newline at end of file From 53fd22e0a435b7539faf50fda6b0c99a4b489444 Mon Sep 17 00:00:00 2001 From: StrangeDrVN <172238701+StrangeDrVN@users.noreply.github.com> Date: Sun, 19 Apr 2026 21:59:29 +0530 Subject: [PATCH 70/92] update channels api + programs --- sites/mewatch.sg/mewatch.sg.channels.xml | 138 +++++++++++++++++++---- sites/mewatch.sg/mewatch.sg.config.js | 76 ++++++++----- sites/mewatch.sg/mewatch.sg.test.js | 37 +++--- 3 files changed, 183 insertions(+), 68 deletions(-) diff --git a/sites/mewatch.sg/mewatch.sg.channels.xml b/sites/mewatch.sg/mewatch.sg.channels.xml index e84bfbccd..b304c3d6b 100644 --- a/sites/mewatch.sg/mewatch.sg.channels.xml +++ b/sites/mewatch.sg/mewatch.sg.channels.xml @@ -1,28 +1,122 @@ - CNA - LIVE 1 - LIVE 2 - Suria - Vasantham + Action Hollywood Movies + W-Sport + River Monsters + Fear Factor + MasterChef + Vijay Takkar + Hub VV Drama HD + BBC Earth HD + ONE HD + Hub Sports 3 HD + KTV HD + HITS HD + FIGHT SPORTS HD + KBS World HD + Hub E City HD + Hub Sports 1 HD + Hub Sports 2 HD + Nick Jr. HD + Nickelodeon Asia HD + DreamWorks HD + HISTORY HD + ANC + The Filipino Channel HD + HITS MOVIES HD + Astro Warna HD + Astro Sensasi HD + ONE (Malay) + BBC News HD + CCTV-4 + Phoenix Chinese Channel HD + Phoenix InfoNews Channel HD + TVBS-NEWS + ETTV Asia HD + Cartoon Network + Crime + Investigation HD + Discovery HD + Travelxp HD + BBC Lifestyle HD + HGTV HD + ROCK Entertainment HD + Deal or No Deal + AXN HD + Lifetime HD + Fox News Channel HD + Sky News HD + Euronews HD + CNBC HD + CNN HD + CTI Asia HD + Hub Ruyi + TVB Xing He HD + Celestial Movies HD + Zee TV HD + Zee Thirai + Vijay TV HD + Sun TV + Sun Music + Sony Entertainment Television + SONY MAX + COLORS + COLORS Tamil HD + Asianet + Asianet Movies + Cricbuzz + Cricbuzz 2 + SPOTV + SPOTV2 + beIN SPORTS 5 HD + beIN SPORTS HD + beIN SPORTS 2 HD + Hub Sports 6 HD + Hub Sports 5 HD + beIN SPORTS 3 HD + Hub Sports 4 HD + Hub Sports 8 HD + beIN SPORTS 4 HD + Hub Sports 7 HD + That's 80s + That's Rock + That's 70s + ADITHYA TV + Animax HD + CBeebies HD + CCM + CGTN Channel 5 Channel 8 Channel U - HBO - HBO Hits - HBO Signature - HBO Family - Cinemax - SPL01 - SPL02 - Global Trekker - TRACE Urban - NOW Rock - NOW 70s - NOW 80s - oktolidays - ROCK Entertainment - ROCK Action - Animax + Cinema One Global CinemaWorld - + Citra Entertainment + CNA + Dragon TV + FIFA+ + FoodON + Hub Premier 1 + Hub Premier 2 + Hub Premier 3 + Hub Premier 4 + Hub Premier 5 + Hub Premier 6 + Hub Premier 7 + Hub Premier 8 + Hub Premier 9 + Hub Premier 10 + Hub Premier 11 + Kalaignar TV + Karisma + Kartoon Channel! + LIVE 1 + SPL CH01 + Suria + TG Junior + TRACE Sport Stars + TVBS Asia + Vannathirai + Vasantham + Zee Cinema HD + Zee Tamil HD + \ No newline at end of file diff --git a/sites/mewatch.sg/mewatch.sg.config.js b/sites/mewatch.sg/mewatch.sg.config.js index 1b793c83a..375c374cc 100644 --- a/sites/mewatch.sg/mewatch.sg.config.js +++ b/sites/mewatch.sg/mewatch.sg.config.js @@ -24,12 +24,25 @@ module.exports = { const items = parseItems(content, channel) items.forEach(item => { const info = item.item + + let title = info.title || '' + let subTitle = info.episodeTitle || null + + if (subTitle && title.includes(` - ${subTitle}`)) { + title = title.replace(` - ${subTitle}`, '') + } + + if (title === subTitle) { + subTitle = null + } + programs.push({ - title: info.title, - description: info.description, - image: info.images.tile, - episode: info.episodeNumber, - season: info.seasonNumber, + title, + subTitle, + description: info.description || null, + image: info.images?.tile || null, + episode: info.episodeNumber || null, + season: info.seasonNumber || null, start: parseStart(item), stop: parseStop(item), rating: parseRating(info) @@ -40,29 +53,40 @@ module.exports = { }, async channels() { const axios = require('axios') - const cheerio = require('cheerio') - const data = await axios - .get('https://www.mewatch.sg/channel-guide') - .then(r => r.data) - .catch(console.log) - + const LIST_ID = '239614' let channels = [] - const $ = cheerio.load(data) - $('#side-nav > div > div > div > nav:nth-child(1) > ul > li > ul > li').each((i, el) => { - const name = $(el).find('a > span').text() - const url = $(el).find('a').attr('href') - const [, site_id = null] = url.match(/\/(\d+)\?player-fullscreen/) ?? [] + let page = 1 + let hasNextPage = true - if (!site_id) { - return + while (hasNextPage) { + const url = `https://cdn.mewatch.sg/api/lists/${LIST_ID}?page=${page}&page_size=100&segments=all` + + try { + const r = await axios.get(url) + const data = r.data + + if (data && Array.isArray(data.items)) { + data.items.forEach(item => { + if (item.type === 'channel' || item.itemType === 'channel') { + channels.push({ + lang: 'en', + name: item.title, + site_id: item.id + }) + } + }) + } + + if (data.paging && data.paging.next) { + page++ + } else { + hasNextPage = false + } + } catch (error) { + console.error(`Error fetching page ${page}:`, error.message) + hasNextPage = false } - - channels.push({ - lang: 'en', - name, - site_id - }) - }) + } return channels } @@ -97,4 +121,4 @@ function parseItems(content, channel) { const channelData = data.find(i => i.channelId === channel.site_id) return channelData && Array.isArray(channelData.schedules) ? channelData.schedules : [] -} +} \ No newline at end of file diff --git a/sites/mewatch.sg/mewatch.sg.test.js b/sites/mewatch.sg/mewatch.sg.test.js index f65ecb3f9..6364cde07 100644 --- a/sites/mewatch.sg/mewatch.sg.test.js +++ b/sites/mewatch.sg/mewatch.sg.test.js @@ -9,13 +9,13 @@ dayjs.extend(utc) const date = dayjs.utc('2022-06-11', 'YYYY-MM-DD').startOf('d') const channel = { - site_id: '97098', - xmltv_id: 'Channel5Singapore.sg' + site_id: '571922', + xmltv_id: 'AnimaxAsia.sg@SD' } it('can generate valid url', () => { expect(url({ channel, date })).toBe( - 'https://cdn.mewatch.sg/api/schedules?channels=97098&date=2022-06-10&duration=24&ff=idp,ldp,rpt,cd&hour=12&intersect=true&lang=en&segments=all' + 'https://cdn.mewatch.sg/api/schedules?channels=571922&date=2022-06-10&duration=24&ff=idp,ldp,rpt,cd&hour=12&intersect=true&lang=en&segments=all' ) }) @@ -27,23 +27,20 @@ it('can parse response', () => { return p }) - expect(result).toMatchObject([ - { - start: '2022-06-11T21:00:00.000Z', - stop: '2022-06-11T21:30:00.000Z', - title: 'Open Homes S3 - EP 2', - description: - 'Mike heads down to the Sydney beaches to visit a beachside renovation with all the bells and whistles, we see a kitchen tip and recipe anyone can do at home. We finish up in the prestigious Byron bay to visit a multi million dollar award winning home.', - image: - "https://production.togglestatic.com/shain/v1/dataservice/ResizeImage/$value?Format='jpg'&Quality=85&ImageId='4853697'&EntityType='LinearSchedule'&EntityId='788a7dd9-9b12-446f-91b4-c8ac9fec95e5'&Width=1280&Height=720&device=web_browser&subscriptions=Anonymous&segmentationTags=all", - episode: 2, - season: 3, - rating: { - system: 'IMDA', - value: 'G' - } - } - ]) + expect(result.length).toBe(45) + expect(result[0]).toMatchObject({ + title: 'Tsukimichi -Moonlit Fantasy- Season 2', + subTitle: 'Why Am I A Teacher?!', + description: + 'After arriving in Rotsgard, Makoto and Shiki gather info for their new store but soon help a girl named Luria in trouble.', + image: + "https://prod98.togglestatic.com/shain/v1/dataservice/ResizeImage/$value?Format='jpg'&Quality=85&ImageId='13651065'&EntityType='LinearSchedule'&EntityId='fdb1a2e4-efe5-41dd-8560-84d4c3f50459'&Width=1280&Height=720", + episode: 4, + season: null, + start: '2026-04-19T00:00:00.000Z', + stop: '2026-04-19T00:30:00.000Z', + rating: { system: 'IMDA', value: 'PG13' } + }) }) it('can handle empty guide', () => { From a1cb0abd67e57f609762f49b720168a0f0776732 Mon Sep 17 00:00:00 2001 From: freearhey <7253922+freearhey@users.noreply.github.com> Date: Mon, 20 Apr 2026 03:26:45 +0300 Subject: [PATCH 71/92] Update tv24.se.config.js --- sites/tv24.se/tv24.se.config.js | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/sites/tv24.se/tv24.se.config.js b/sites/tv24.se/tv24.se.config.js index 76d92535f..b710c8b47 100644 --- a/sites/tv24.se/tv24.se.config.js +++ b/sites/tv24.se/tv24.se.config.js @@ -82,7 +82,12 @@ module.exports = { async function loadProgramDetails($item) { const programId = $item('a').attr('href') const data = await axios - .get(`https://tv24.se/x${programId}/0/0`) + .get(`https://tv24.se/x${programId}/0/0`, { + headers: { + 'User-Agent': + 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/128.0.0.0 Safari/537.36' + } + }) .then(r => r.data) .catch(console.error) if (!data) return Promise.resolve({}) From 5b31df8e8cd880905fa2f4830dd6ec6edc08c92f Mon Sep 17 00:00:00 2001 From: freearhey <7253922+freearhey@users.noreply.github.com> Date: Mon, 20 Apr 2026 03:46:43 +0300 Subject: [PATCH 72/92] Update tvplus.com.tr.test.js --- sites/tvplus.com.tr/tvplus.com.tr.test.js | 23 +++++++++++++++-------- 1 file changed, 15 insertions(+), 8 deletions(-) diff --git a/sites/tvplus.com.tr/tvplus.com.tr.test.js b/sites/tvplus.com.tr/tvplus.com.tr.test.js index 28b1a342a..38e960bac 100644 --- a/sites/tvplus.com.tr/tvplus.com.tr.test.js +++ b/sites/tvplus.com.tr/tvplus.com.tr.test.js @@ -14,29 +14,36 @@ jest.mock('axios') const date = dayjs.utc('2026-04-22', 'YYYY-MM-DD').startOf('d') const channel = { site_id: '32' } -axios.get.mockImplementation(url => { - if (url === 'https://tvplus.com.tr/canli-tv/yayin-akisi') { +axios.post.mockImplementation(url => { + if (url === 'https://izmaottvsc14.tvplus.com.tr:33207/EPG/JSON/Authenticate') { return Promise.resolve({ - data: fs.readFileSync(path.join(__dirname, '__data__', 'build.html')).toString() + headers: { + 'set-cookie': [ + 'XSESSIONID=05DIPYMD4BHOKRQCZTHF8F5GHMMBCNJ6; Domain=izmaottvsc14.tvplus.com.tr; Path=/; Secure; HttpOnly', + 'JSESSIONID=05DIPYMD4BHOKRQCZTHF8F5GHMMBCNJ6; Domain=izmaottvsc14.tvplus.com.tr; Path=/; HttpOnly' + ] + } }) } }) -it('can generate valid url', async () => { +it('can generate valid url', () => { expect(url).toBe('https://izmaottvsc14.tvplus.com.tr:33207/EPG/JSON/PlayBillList') }) -it('can generate valid request method', async () => { +it('can generate valid request method', () => { expect(request.method).toBe('POST') }) it('can generate valid request headers', async () => { - expect(request.headers).toMatchObject({ - cookie: 'JSESSIONID=05DH3LSUA0W04YMLSYEWK3TRYY1QMBMY;' + const headers = await request.headers() + expect(headers).toMatchObject({ + cookie: + 'XSESSIONID=05DIPYMD4BHOKRQCZTHF8F5GHMMBCNJ6; Domain=izmaottvsc14.tvplus.com.tr; Path=/; Secure; HttpOnly;JSESSIONID=05DIPYMD4BHOKRQCZTHF8F5GHMMBCNJ6; Domain=izmaottvsc14.tvplus.com.tr; Path=/; HttpOnly' }) }) -it('can generate valid request data', async () => { +it('can generate valid request data', () => { expect(request.data({ channel, date })).toMatchObject({ type: '2', channelid: '32', From d684baff2ea909665ceb6dbe86faf1a2d7c691f6 Mon Sep 17 00:00:00 2001 From: freearhey <7253922+freearhey@users.noreply.github.com> Date: Mon, 20 Apr 2026 03:46:56 +0300 Subject: [PATCH 73/92] Update tvplus.com.tr.config.js --- sites/tvplus.com.tr/tvplus.com.tr.config.js | 19 +++++++++++++++++-- 1 file changed, 17 insertions(+), 2 deletions(-) diff --git a/sites/tvplus.com.tr/tvplus.com.tr.config.js b/sites/tvplus.com.tr/tvplus.com.tr.config.js index 23b1528ad..8645d5c26 100644 --- a/sites/tvplus.com.tr/tvplus.com.tr.config.js +++ b/sites/tvplus.com.tr/tvplus.com.tr.config.js @@ -1,3 +1,4 @@ +const axios = require('axios') const dayjs = require('dayjs') const customParseFormat = require('dayjs/plugin/customParseFormat') @@ -9,8 +10,22 @@ module.exports = { url: 'https://izmaottvsc14.tvplus.com.tr:33207/EPG/JSON/PlayBillList', request: { method: 'POST', - headers: { - cookie: 'JSESSIONID=05DH3LSUA0W04YMLSYEWK3TRYY1QMBMY;' + async headers() { + const response = await axios + .post('https://izmaottvsc14.tvplus.com.tr:33207/EPG/JSON/Authenticate', { + terminaltype: 'webtv', + terminalvendor: + '5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', + osversion: 'Win32', + userType: '3', + utcEnable: '1', + timezone: 'Europe/Istanbul' + }) + .catch(console.error) + + return { + cookie: response.headers['set-cookie'].join(';') + } }, data({ channel, date }) { return { From 9e16837def28314c800832884bb92e054690d9d5 Mon Sep 17 00:00:00 2001 From: freearhey <7253922+freearhey@users.noreply.github.com> Date: Mon, 20 Apr 2026 03:54:28 +0300 Subject: [PATCH 74/92] Update web.magentatv.de.test.js --- sites/web.magentatv.de/web.magentatv.de.test.js | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/sites/web.magentatv.de/web.magentatv.de.test.js b/sites/web.magentatv.de/web.magentatv.de.test.js index 71f566728..5beb8a22e 100644 --- a/sites/web.magentatv.de/web.magentatv.de.test.js +++ b/sites/web.magentatv.de/web.magentatv.de.test.js @@ -27,7 +27,7 @@ axios.request.mockImplementation(req => { 'JSESSIONID=2147EBA9C59BCDC33822CFD2764E5C0B; Path=/EPG/; HttpOnly; SameSite=None; Secure', 'CSESSIONID=1CF187ABCA12ED1B01ADF84C691048ED; Path=/EPG/; Secure; HttpOnly; SameSite=None', 'CSRFSESSION=ea2329ba213271192bffd77c2fa276086a8e828c1a4ee379; Path=/EPG/; SameSite=None; Secure' - ] + ] }, data: { csrfToken: '6f678415702493d2c28813747c413aa05c87d8f87ecf05fe' @@ -94,6 +94,7 @@ it('can parse response', () => { 'Die besten Big-Wave-Surfer werden bei ihrer Suche nach der nächsten großen Welle begleitet.', image: 'http://ngiss.t-online.de/cm1s/media/gracenote/2/4/p24832950_e_h9_aa_2023-06-22T10_12_01.jpg', + icon: 'http://ngiss.t-online.de/cm1s/media/gracenote/2/4/p24832950_e_h9_aa_2023-06-22T10_12_01.jpg', category: ['Sport'] }, { @@ -107,6 +108,8 @@ it('can parse response', () => { episode: '5', image: 'http://ngiss.t-online.de/cm1s/media/gracenote/1/0/p10262968_e_h9_ah_2021-10-20T07_16_16.jpg', + icon: + 'http://ngiss.t-online.de/cm1s/media/gracenote/1/0/p10262968_e_h9_ah_2021-10-20T07_16_16.jpg', category: ['Sitcom'], directors: ['Mark Cendrowski'], producers: ['Chuck Lorre', 'Bill Prady', 'Steven Molaro'], From 2576b9fdeceff2279fe3066b720d6770b35ac151 Mon Sep 17 00:00:00 2001 From: freearhey <7253922+freearhey@users.noreply.github.com> Date: Mon, 20 Apr 2026 03:54:38 +0300 Subject: [PATCH 75/92] Update web.magentatv.de.config.js --- sites/web.magentatv.de/web.magentatv.de.config.js | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/sites/web.magentatv.de/web.magentatv.de.config.js b/sites/web.magentatv.de/web.magentatv.de.config.js index 3a38685ab..aef724d9b 100644 --- a/sites/web.magentatv.de/web.magentatv.de.config.js +++ b/sites/web.magentatv.de/web.magentatv.de.config.js @@ -46,6 +46,7 @@ module.exports = { title: item.name, description: item.introduce, image: parseImage(item), + icon: parseImage(item), category: parseCategory(item), start: parseStart(item), stop: parseStop(item), @@ -176,7 +177,7 @@ async function fetchCookieAndToken() { T: 'Windows_chrome_118' }, method: 'POST', - data: '{"terminalid":"00:00:00:00:00:00","mac":"00:00:00:00:00:00","terminaltype":"WEBTV","utcEnable":1,"timezone":"Etc/GMT0","userType":3,"terminalvendor":"Unknown"}', + data: '{"terminalid":"00:00:00:00:00:00","mac":"00:00:00:00:00:00","terminaltype":"WEBTV","utcEnable":1,"timezone":"Etc/GMT0","userType":3,"terminalvendor":"Unknown"}' }) // Extract the cookies specified in cookiesToExtract @@ -200,8 +201,7 @@ async function fetchCookieAndToken() { X_CSRFTOKEN = response.data.csrfToken Cookie = extractedCookies.join(' ') - - } catch(error) { + } catch (error) { console.error(error) } } From 2868ab8688e2f5a45ff5bee6f213eb3d7c5c0259 Mon Sep 17 00:00:00 2001 From: freearhey <7253922+freearhey@users.noreply.github.com> Date: Mon, 20 Apr 2026 04:02:37 +0300 Subject: [PATCH 76/92] Update ontvtonight.com.test.js --- sites/ontvtonight.com/ontvtonight.com.test.js | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/sites/ontvtonight.com/ontvtonight.com.test.js b/sites/ontvtonight.com/ontvtonight.com.test.js index 9f1eaf151..34bafbeb4 100644 --- a/sites/ontvtonight.com/ontvtonight.com.test.js +++ b/sites/ontvtonight.com/ontvtonight.com.test.js @@ -1,4 +1,4 @@ -const { parser, url } = require('./ontvtonight.com.config.js') +const { parser, url, request } = require('./ontvtonight.com.config.js') const fs = require('fs') const path = require('path') const dayjs = require('dayjs') @@ -19,6 +19,13 @@ it('can generate valid url', () => { ) }) +it('can generate valid request headers', () => { + expect(request.headers).toMatchObject({ + 'user-agent': + 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/128.0.0.0 Safari/537.36' + }) +}) + it('can parse response', () => { const content = fs.readFileSync(path.resolve(__dirname, '__data__/content.html'), 'utf8') const result = parser({ content, channel, date }).map(p => { From e2a427d7d65bd562531f2955ef89d6158512f53a Mon Sep 17 00:00:00 2001 From: freearhey <7253922+freearhey@users.noreply.github.com> Date: Mon, 20 Apr 2026 04:02:45 +0300 Subject: [PATCH 77/92] Update ontvtonight.com.config.js --- sites/ontvtonight.com/ontvtonight.com.config.js | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/sites/ontvtonight.com/ontvtonight.com.config.js b/sites/ontvtonight.com/ontvtonight.com.config.js index 1519f4fc2..4718611b3 100644 --- a/sites/ontvtonight.com/ontvtonight.com.config.js +++ b/sites/ontvtonight.com/ontvtonight.com.config.js @@ -21,6 +21,12 @@ module.exports = { return url }, + request: { + headers: { + 'user-agent': + 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/128.0.0.0 Safari/537.36' + } + }, parser: function ({ content, date, channel }) { const programs = [] const items = parseItems(content) From c1f7ece997ede6e528a2352b72e80d2618e27223 Mon Sep 17 00:00:00 2001 From: freearhey <7253922+freearhey@users.noreply.github.com> Date: Mon, 20 Apr 2026 04:39:47 +0300 Subject: [PATCH 78/92] Update tv24.se.config.js --- sites/tv24.se/tv24.se.config.js | 11 +++++++++-- 1 file changed, 9 insertions(+), 2 deletions(-) diff --git a/sites/tv24.se/tv24.se.config.js b/sites/tv24.se/tv24.se.config.js index b710c8b47..67bd0db6a 100644 --- a/sites/tv24.se/tv24.se.config.js +++ b/sites/tv24.se/tv24.se.config.js @@ -47,7 +47,12 @@ module.exports = { }, async channels() { let html = await axios - .get('https://tv24.se/x/settings/addremove') + .get('https://tv24.se/x/settings/addremove', { + headers: { + 'User-Agent': + 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/128.0.0.0 Safari/537.36' + } + }) .then(r => r.data) .catch(console.log) let $ = cheerio.load(html) @@ -57,7 +62,9 @@ module.exports = { html = await axios .get('https://tv24.se', { headers: { - Cookie: `selectedChannels=${nums.join(',')}` + Cookie: `selectedChannels=${nums.join(',')}`, + 'User-Agent': + 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/128.0.0.0 Safari/537.36' } }) .then(r => r.data) From 0be055151e501c55a5c03a40db5e5f26870dab7c Mon Sep 17 00:00:00 2001 From: freearhey <7253922+freearhey@users.noreply.github.com> Date: Mon, 20 Apr 2026 04:39:57 +0300 Subject: [PATCH 79/92] Update tv24.se.channels.xml --- sites/tv24.se/tv24.se.channels.xml | 346 ++++++++++++++--------------- 1 file changed, 164 insertions(+), 182 deletions(-) diff --git a/sites/tv24.se/tv24.se.channels.xml b/sites/tv24.se/tv24.se.channels.xml index b5c1051a3..7c0c60aa4 100644 --- a/sites/tv24.se/tv24.se.channels.xml +++ b/sites/tv24.se/tv24.se.channels.xml @@ -1,17 +1,78 @@ + DR1 + DR2 + Kanal 4 + TV2 Danmark + TV2 Charlie + TV2 News + TV3 Danmark + TV3 Plus 3sat - Al Arabiya - Al Jazeera (English) - Al Jazeera (Arabic) + Das Erste + Motorvision TV + ProSieben + RTL + Super RTL + RTLZWEI + VOX + ZDF + CGTN + The Adult Channel + Al Jazeera Arabic + Al Jazeera + BBC Earth + CNBC + CNN International + Discovery Science + Extreme Sports Channel + FTV HD + Fight Sports + Food Network + GINX eSports TV + God + Horse & Country + Magnolia Network HD + Mezzo + MTV 00s Europe + MTV 80s + MTV 90s + Nautical Channel + OUTtv + Sky History 2 HD + Sky News + Djazz HD + Travel Channel + Canal 24H + Las Estrellas + TVE Internacional + MTV3 + Yle Teema & Fem HD + Yle TV1 + Yle TV2 + Classica HD + France 24 + TV5 Monde Europe + Duna TV + Rai 1 + Rai 2 + Rai 3 + NRK2 Norge + NRK3 + NRK Super + NRK Super / NRK3 HD + TV 2 Zebra + TVNorge + TVP Polonia + RTP Internacional Europe + Pro TV int + 3sat + Al Jazeera (English) + Al Jazeera (Arabic) Al Jazeera English Al Jazeera HD - Animal Planet Animal Planet HD ARTE - ATG Live - Axess TV - BBC Earth BBC News BBC News Europe HD BBC Nordic @@ -21,224 +82,99 @@ BBC Nordic HD Bloomberg HD Bloomberg TV HD (UK) - Blue Hustler - C More Fotboll/Hockey/Stars HD - C More Live 2 (PPV) - C More Live 3 (PPV) - C More Live 4 (PPV) - C More Live (PPV) - C More Sport SF-Kanalen - Canal 24 Horas - Canal 24H - Las Estrellas - Cartoon Network + Canal 24 Horas HD Cartoonito - CCTV-4 - CGTN - Channel One Russia - Classica HD - CNBC + CBS Reality MENA CNBC HD - CNN International CNN International HD - Das Erste - Di TV HD - Discovery Channel Discovery Channel HD - Discovery HD Showcase Discovery HD - Text Discovery Science - Discovery Science Discovery Science - Disney Channel + Disney Channel Disney Channel HD - Disney Junior - Disney XD - Djazz HD - DR1 DR1 HD - DR2 DR2 HD - DR3 - DR3 HD - DR K - DR Ramasjang - DR Ultra - Duna TV Duna TV HD - Deutsche Welle + Duna TV (Sweden) + Deutsche Welle eSportsone - eSportsTV HD euronews - Euronews HD - Eurosport 1 + Euronews Eurosport 1 HD - Eurosport 2 Eurosport 2 HD - Extreme Sports Channel - Fight Sports Fight Sports Fight Sports HD - Food Network - FOX - FOX HD - France 2 France 2 HD - France 24 - France 24 English HD FREEDOM - FTV HD + FTV FTV HD - Fuel TV - Fuel TV HD - GINX eSports TV - God - Godare - H2 H2 HD - Hayat Plus High TV 3D - History History Channel History HD - Horse & Country (UK) - Horse & Country TV - HRT1 - Hustler TV - ID - Kanal 4 - Kanal 5 + hr-fernsehen Kanal 5 HD Kanal 5 HD - Text - Kanal 9 Kanal 9 HD Kanal 9 HD - Text - Kanal 10 - Kanal 11 + Kanal 10 HD Kanal 11 HD Kanal 11 HD - Text - Kunskapskanalen Kunskapskanalen HD Kunskapskanalen HD - Text + Love Nature M2 Magyar HD - Magnolia Network HD - Manchester United Television HD - MBC MBC - Mezzo + MDR Mezzo Live - Motorvision TV + Moonbug Motorvision TV HD Motorvision TV HD MTV - MTV3 - MTV 00s Europe - MTV 80s - MTV 90s MTV Aitio MTV Aitio HD MTV HD - MTV Hits International - MTV Live HD MTV Viihde MTV Viihde HD - National Geographic National Geographic HD - National Geographic HD - National Geographic Wild National Geographic Wild HD - Nautical Channel Nautical Channel HD - NHK World TV - Nick JR Nick Jr. HD - Nickelodeon Nickelodeon HD - Nicktoons - NRK1 Norge NRK1 HD - NRK2 Norge NRK2 HD - NRK3 - NRK Super - NRK Super / NRK3 HD - OBN Öppna Kanalen Stockholm Öppna Kanalen Växjö - Öppna kanalen VS - OUTtv - Pink Extra - Pink Plus - Playboy TV - Pro TV int - ProSieben - Rai 1 - Rai 2 - Rai 3 - RT - RTL - RTLZWEI - RTP Mundo Europe - RTR Planeta RTS Sat Sat.1 - SF Kanalen - Sjuan Sjuan HD Sjuan HD - Text - Sky Cinema Premiere +1 - Sky History 2 HD - Sky News - SkyShowtime 1 - SkyShowtime 2 SonLife Broadcasting Network - Super RTL - SVT1 + SonLife International + Stingray Classica SVT1 HD SVT1 Södertälje - SVT2 SVT2 HD - SVT24 SVT24 HD - SVT Barn SVT Barn HD - SVT Barn/SVT24 SVTB/SVT24 HD SVTB/SVT24 HD - Text - TBN Europe - The Adult Channel - TLC TLC HD TLC HD - Trace Urban HD - Travel Channel Travel Channel Travel Channel HD Travel Channel HD - TRT 1 TRT 1 HD - TRT Turk - True Crime - TV2 Danmark - TV2 Charlie TV2 Echo TV2 Danmark HD - TV2 News - TV3 - TV3 Danmark TV3+ TV3 HD TV3 HD - Text - TV3 Plus - TV3 Sport - TV4 - TV4 Fakta TV4 Fakta - Text - TV4 Film TV4 Film - Text TV4 Fotboll TV4 Fotboll HD - TV4 Guld TV4 HD TV4 HD - Text TV4 Hits @@ -263,42 +199,27 @@ TV4 Stars HD TV4 Tennis TV4 Tennis HD - TV5 Monde Europe - TV6 + TV5 Monde Europe HD TV6 HD - TV8 TV8 HD - TV10 TV10 HD - TV12 + TV12 Bedehuskanalen TV12 HD TV12 HD - Text - TV2 Norge TV2 Norge HD - TV 2 Nyheter (NORWAY) - TV 2 Zebra TV Chile TV Finland - TVCG Sat - TVE Internacional - TVNorge - TVP Polonia - V Film Action HD - V Film Family - V Film Hits HD - V Film Premiere HD + TV Montenegro RTCG + TVE Internacional HD (Europe) + TVP Polonia HD V Series HD V Sport 1 HD - V Sport Extra V Sport Extra HD - V Sport Fotboll HD - V Sport Golf HD - V Sport Motor HD - V Sport Premium HD - V Sport Ultra HD - V Sport Vinter + V Sport Football Live 1 + V Sport Football Live 2 + V Sport Football Live 3 V Sport Vinter HD - Viasat Explore + Viaplay Sport Viasat Explore HD Viasat Film Action Viasat Film Family HD @@ -306,24 +227,85 @@ Viasat Film Premiere Viasat Fotboll Viasat Golf - Viasat History Viasat History HD Finland Viasat History HD - Viasat Hockey Finland Viasat Motor - Viasat Nature Viasat Nature HD - Viasat Series - Viasat Sport - Viasat Sport Premium Vision Sverige - Visjon Norge HD - VOX + WDR Fernsehen Yle Teema & Fem - Yle Teema & Fem HD - Yle TV1 Yle TV1 HD - Yle TV2 Yle TV2 HD - ZDF + ZDF + Animal Planet + ATG Live + Axess TV + Cartoon Network + C More Sport SF-Kanalen + Discovery Channel + Disney Channel + DR Ramasjang + Eurosport 1 + Eurosport 2 + France 2 + Fuel TV + Godare + Hayat Plus + H2 + History + HRT1 + ID + Kanal 5 + Kanal 9 + Kanal 10 + Kanal 11 + Kunskapskanalen + National Geographic + National Geographic Wild + Nickelodeon + Nick JR + Nicktoons + NRK1 Norge + Pink Plus + SF Kanalen + Sjuan + SkyShowtime 1 + SkyShowtime 2 + SVT1 + SVT2 + SVT24 + SVT Barn + SVT Barn/SVT24 + TLC + TRT 1 + TV2 Norge + TV 2 Nyheter (NORWAY) + TV3 + TV4 + TV4 Fakta + TV4 Film + TV4 Guld + TV6 + TV8 + TV10 + TV12 + TVCG Sat + Visjon Norge HD + V Film Action HD + V Film Family + V Film Hits HD + V Film Premiere HD + Viasat Explore + Viasat History + Viasat Nature + Viasat Sport + Viasat Series + V Sport Extra + V Sport Fotboll HD + V Sport Golf HD + V Sport Motor HD + V Sport Premium HD + V Sport Ultra HD + V Sport Vinter + TRT Turk From 469a64908245f07c138f79ec98a632f7b566af83 Mon Sep 17 00:00:00 2001 From: "iptv-bot[bot]" <84861620+iptv-bot[bot]@users.noreply.github.com> Date: Mon, 20 Apr 2026 02:01:39 +0000 Subject: [PATCH 80/92] [Bot] Update SITES.md Committed by [iptv-bot](https://github.com/apps/iptv-bot) via [update](https://github.com/iptv-org/epg/actions/runs/24644969003) workflow. --- SITES.md | 17 +++++++++-------- 1 file changed, 9 insertions(+), 8 deletions(-) diff --git a/SITES.md b/SITES.md index eda2b6ed2..05533b0b1 100644 --- a/SITES.md +++ b/SITES.md @@ -8,6 +8,7 @@ 9tv.co.il11🟢 abc.net.au5480🟢 airtelxstream.in972667🟢 + aljazeera.com33🟢 allente.no3190🟢 andorradifusio.ad11🟢 anteltv.com.uy5446🟢 @@ -108,7 +109,7 @@ mujtvprogram.cz213190🟢 musor.tv181142🟢 mysky.com.ph11543🟢 - mytelly.co.uk488387🟢https://github.com/iptv-org/epg/issues/2985 + mytelly.co.uk488387🔴https://github.com/iptv-org/epg/issues/2985 mytvsuper.com10899🟢 neo.io337230🟢 nhkworldpremium.com22🟢 @@ -119,7 +120,7 @@ nowplayer.now.com288227🟢 nuevosiglo.com.uy17346🟢 nzxmltv.com532118🟢 - ontvtonight.com5177528🟢https://github.com/iptv-org/epg/issues/3014 + ontvtonight.com5177528🔴https://github.com/iptv-org/epg/issues/3014 opto.sic.pt33🟢 orangetv.orange.es273151🟢 osn.com13486🟢 @@ -141,7 +142,7 @@ raiplay.it1713🟢 reportv.com.ar16395🟢 rikstv.no800🟢 - rotana.net3226🟢 + rotana.net3226🔴https://github.com/iptv-org/epg/issues/3018 roya-tv.com108🟢 rthk.hk88🟢 rtmklik.rtm.gov.my86🟢 @@ -161,7 +162,7 @@ skyperfectv.co.jp19667🟢 snrt.ma117🟢 sporttv.pt99🟢 - starhubtvplus.com232208🟢https://github.com/iptv-org/epg/issues/2965 + starhubtvplus.com236206🟢 startimestv.com7758🟢 streamingtvguides.com30661🟢 superguidatv.it204159🟢 @@ -196,14 +197,14 @@ tv.sfr.fr489438🟢 tv.trueid.net24635🟢 tv24.co.uk107238🟢 - tv24.se326157🟢https://github.com/iptv-org/epg/issues/2993 + tv24.se326157🔴https://github.com/iptv-org/epg/issues/2993 tv2go.t-2.net342232🟢 tvarenasport.com1818🟢 tvarenasport.hr1010🟢 tvcesoir.fr135132🟢 tvcubana.icrt.cu1010🟢 tvgids.nl115101🟢 - tvguide.com153153🟢https://github.com/iptv-org/epg/issues/2967 + tvguide.com153153🔴https://github.com/iptv-org/epg/issues/2967 tvguide.myjcom.jp134128🟢 tvhebdo.com317213🟢 tvheute.at5348🟢 @@ -216,7 +217,7 @@ tvmusor.hu9966🟢 tvmustra.hu1890🟢 tvpassport.com192872496🟢 - tvplus.com.tr150144🟢https://github.com/iptv-org/epg/issues/2983 + tvplus.com.tr150144🔴https://github.com/iptv-org/epg/issues/2983 tvprofil.com9091408🔴https://github.com/iptv-org/epg/issues/3032 tvtv.us22992230🟢 v3.myafn.dodmedia.osd.mil88🟢 @@ -245,7 +246,7 @@ yes.co.il1740🟢 zap.co.ao11463🟢 zap2it.com5950🟢 - ziggogo.tv156150🟢https://github.com/iptv-org/epg/issues/2977, https://github.com/iptv-org/epg/issues/2976 + ziggogo.tv156150🟡https://github.com/iptv-org/epg/issues/2977, https://github.com/iptv-org/epg/issues/2976 znbc.co.zm44🟢 zuragt.mn3427🟢 From 7d1f0e9b698cdbc8c6bc4ec78ff9e13eee33bba1 Mon Sep 17 00:00:00 2001 From: freearhey <7253922+freearhey@users.noreply.github.com> Date: Mon, 20 Apr 2026 05:28:47 +0300 Subject: [PATCH 81/92] Update player.ee.co.uk.config.js --- sites/player.ee.co.uk/player.ee.co.uk.config.js | 11 ++--------- 1 file changed, 2 insertions(+), 9 deletions(-) diff --git a/sites/player.ee.co.uk/player.ee.co.uk.config.js b/sites/player.ee.co.uk/player.ee.co.uk.config.js index 6914b0170..463a9f63e 100644 --- a/sites/player.ee.co.uk/player.ee.co.uk.config.js +++ b/sites/player.ee.co.uk/player.ee.co.uk.config.js @@ -65,14 +65,7 @@ module.exports = { }, async channels() { const token = - 'eyJkaXNjb3ZlcnlVc2VyR3JvdXBzIjpbIkFMTFVTRVJTIiwiYWxsIiwiaHR0cDovL3JlZmRhd' + - 'GEueW91dmlldy5jb20vbXBlZzdjcy9Zb3VWaWV3QXBwbGljYXRpb25QbGF5ZXJDUy8yMDIxLT' + - 'A5LTEwI2FuZHJvaWRfcnVudGltZS1wcm9maWxlMSIsInRhZzpidC5jb20sMjAxOC0wNy0xMTp' + - '1c2VyZ3JvdXAjR0JSLWJ0X25vd1RWX211bHRpY2FzdCIsInRhZzpidC5jb20sMjAyMS0xMC0y' + - 'NTp1c2VyZ3JvdXAjR0JSLWJ0X2V1cm9zcG9ydCJdLCJyZWdpb25zIjpbIkFMTFJFR0lPTlMiL' + - 'CJHQlIiLCJHQlItRU5HIiwiR0JSLUVORy1sb25kb24iLCJhbGwiXSwic3Vic2V0IjoiMy41Lj' + - 'EvYW5kcm9pZF9ydW50aW1lLXByb2ZpbGUxL0JST0FEQ0FTVF9JUC9HQlItYnRfYnJvYWRiYW5' + - 'kIiwic3Vic2V0cyI6WyIvLy8iLCIvL0JST0FEQ0FTVF9JUC8iLCIzLjUvLy8iXX0=' + 'eJx0kF1r2zAUhv_L6a0VfbRuF98lbTCB0ha7LYwRgiydZgLZMkdSMjP234e7bmMrvRFCOs_LeZ_vYAh1QnujE0IFSqhLJi6YElCAddGEI9L0FJFqCnmMUH2B1e3tU7tpWihAew8FfE1prDgnfLE66cUU8tHhaWFCz_sRD1cm8s8hPzs8rcbRO6OTC8OD1xPSdcuVUJKJJZPiTA-WgrN7ykNyPbKRwovzKKGApA9Vl-bMQgn5iYkrJmWVI9JhXuysXjesS_shnB6f9332yRkd0_-gkkwKpsr3IGYKcQyUYFcAfjM-W7Qt0tEZ3NrX3styqS4vSjlPEB5cGH7raDb19v5uFlKvm18n29zVf2_Mh8GG4c3YroAYMplZOO8mdgxGd9lrmlhC6iMUEHMXMUEF54tyIflHYvi6uV_dXK_ax_32gb9V6Sho2-nB_sl53ZNzDgXwf5H55cPw-fd8Uc7g7sfPAAAA__-Un7J1' const extensions = [ 'LinearCategoriesExtension', 'LogicalChannelNumberExtension', @@ -91,7 +84,7 @@ module.exports = { return ( result?.items - .filter(channel => channel.contentTypes.indexOf('tv') >= 0) + .filter(channel => channel.mediaType === 'audio_and_video') .map(channel => { return { lang: 'en', From 8107ee7c804c38ff5bbed24c239e951838f768df Mon Sep 17 00:00:00 2001 From: freearhey <7253922+freearhey@users.noreply.github.com> Date: Mon, 20 Apr 2026 05:29:08 +0300 Subject: [PATCH 82/92] Update player.ee.co.uk.channels.xml --- .../player.ee.co.uk.channels.xml | 436 +++++++++--------- 1 file changed, 213 insertions(+), 223 deletions(-) diff --git a/sites/player.ee.co.uk/player.ee.co.uk.channels.xml b/sites/player.ee.co.uk/player.ee.co.uk.channels.xml index c9425ed26..dfe31f479 100644 --- a/sites/player.ee.co.uk/player.ee.co.uk.channels.xml +++ b/sites/player.ee.co.uk/player.ee.co.uk.channels.xml @@ -1,244 +1,234 @@ - BBC RB 1 - On Demand 365 - GREAT! action - TJC - ITVBe +1 - ITV4 +1 - ITV2 +1 - ITV3 +1 - 5ACTION - KetchupTv - Drama - Mech + - Together TV - TBN UK - 5Select - Food Network - That's Christmas - Create & Craft - Really - Quest Red - QUEST+1 - Yesterday+1 - That's 90s - Gems TV - GREAT! tv - Jewellery Maker - EarthxTV - GREAT! Christmas - QUEST - GB News - Together TV - ADULT Xpanded TV - DMAX - Al Jazeera Eng - Hobby Maker - GREAT! movies - ADULT Babestn - That's TV (UK) - PBS America - HGTV - That's 60s - W - Talking Pictures TV - GREAT! movies extra - GREAT! tv +1 - GREAT! Christmas mix - BBC Two England - BBC Three - BBC Four - ITV1 +1 London - Channel 4 - Film4 - More 4 - POP Player - 5USA - Dave Ja Vu - Channel 5+1 - ITV1 HD - CBBC HD - Sky Mix - Challenge - Film4+1 - Yesterday - Tiny Pop - ITV4 - E4+1 - BBC One London - BBC News Channel - BBC Red Button - CBBC - CBeebies - BBC Parliament - ITV1 London - ITV3 - ITV2 - ITVBe - E4 + GREAT! Movies + U&Drama + POP + Tiny Pop + U&Eden + Legend Xtra + SonLife + Must Have Ideas + POP UP + Rewind TV + GREAT! Romance mix + That's TV 3 + U&Yesterday + wedotv Movies UK + 4seven + U&W + Shop On TV Channel 4 +1 - Channel 5 - 5STAR - TalkTV - YAAAS! - QVC - Blaze - Blaze+1 - QVC2 True Crime True Crime Xtra - WildEarth - Legend - TCC - BBC Two HD - BBC One London HD Channel 4 HD - Channel 5 HD - BBC Three HD BBC Four HD - CBeebies HD - Sky News - Sky Arts - Dave - Drama+1 - E4 Extra + U&Dave + U&Drama+1 ADULT smileTV3 - 4seven - Ideal World - POP - POP MAX - Legend Xtra - Sky Cinema Comedy - Sky Cinema Action + High Street TV + U&Dave Ja Vu + TLC+1 Sky News. - Sky Max - Sky Sports Main Event - MTV - GOLD - Nickelodeon - Sky Witness - Cartoon Network - Sky Sports Cricket - Sky Sci-Fi - Sky Sports NFL - Alibi - Discovery - Sky Sports News - Sky Cinema Family - Sky Cinema Favourites - Sky Cinema Sci-Fi & Horror - Sky Cinema Best of 2023 - Sky Cinema Hits HD - Sky Sports Golf - Sky Cinema Premiere - Sky Cinema Christmas - Nick Junior - Eurosport 1 - Boomerang - Eurosport 2 + U&GOLD + U&alibi + Sky Cinema Greats + Sky Cinema 5 Star Movies + Sky Cinema Drama Sky Arts. - Comedy Central - Sky Sports Racing - Nicktoons - Sky Crime - Sky Cinema Thriller HD - Cartoonito - Sky Max HD - Sky Cinema Hits - Sky Cinema Thriller - Sky Arts HD - Sky Sports Main Event HD - Sky Sports Cricket HD Discovery HD - Sky Cinema Premiere HD - Sky Sports NFL HD - Sky Cinema Comedy HD - Sky Cinema Action HD - Sky Cinema Family HD - Sky Cinema Christmas HD - Sky Cinema Sci-Fi & Horror HD - Sky Cinema Favourites HD - Sky Sci-Fi HD - TNT Sports 4 - TNT Sports 4 HD - Sky Witness HD - Sky Cinema Best of 2023 HD - Sky News HD - Comedy Central HD - Eurosport 1 HD - Sky Sports Golf HD - Sky Sports News HD - Sky Atlantic - Sky Atlantic HD - Nickelodeon HD - Sky Sports F1 - Alibi HD + Sky Cinema Drama HD + Sky Cinema Greats HD + Sky Cinema 5 Star Movies HD + U&alibi HD EE TV Preview - Sky Sports F1 HD - Cartoon Network HD - Utsav Plus HD - MTV HD - Eurosport 2 HD - TNT Sports 1 - TNT Sports 1 HD - TNT Sports 2 - TNT Sports 2 HD - TNT Sports 5 HD - TNT Sports 6 HD - TNT Sports 7 HD - TNT Sports 8 HD - TNT Sports 9 HD - TNT Sports 10 HD - TNT Sports 5 - TNT Sports 6 - TNT Sports 7 - TNT Sports 8 - TNT Sports 9 - TNT Sports 10 - Sky Sports Premier League - Sky Sports Premier League HD - TNT Sports Ultimate - TNT Sports 3 - TNT Sports 3 HD Sky Sports Box Office HD - Boomerang HD - Nick Junior HD - Sky Sports Mix Netflix Prime Video - Colors Cineplex - Colors HD - Sky Sports Arena - Sky Sports Football - GOLD HD - Sky Sports Arena HD - Sky Sports Football HD - TNT Sports Box Office HD - Sky Sports Mix HD + U&GOLD HD Sky Sports Racing HD - Sky Comedy - Sky Crime HD - Sky Comedy HD - TNT Sports Box Office 2 HD - Sky Nature - Sky Documentaries - Sky History - Sky Nature HD - Sky Documentaries HD - Sky History HD - Sky Cinema Animation - Sky Cinema Animation HD - Sony Max HD Zee TV HD Zee Cinema HD - Sky Sports Box Office 2 HD - Sky Showcase - Sky Showcase HD - NBC News Now - NBC News Now HD - Utsav Gold HD Sony TV HD - Sky Kids + Sky Sports Tennis + Sky Sports Tennis HD + 5ACTION + 5Select + 5STAR + 5USA + ADULT Babestn + BBC Four + BBC News + BBC One London + BBC One London HD + BBC Parliament + BBC RB 1 + BBC Red Button + BBC Three HD + BBC Three + BBC Two + BBC Two HD + Blaze+1 + Blaze + Boomerang HD + Boomerang + Cartoonito + Cartoon Network HD + Cartoon Network + CBBC HD + CBBC + CBeebies HD + CBeebies + Challenge + Channel 4 + 5 HD + 5+1 + 5 + Colors Cineplex + Colors HD + Comedy Central HD + Comedy Central + Discovery + DMAX + E4+1 + E4 + E4 Extra + Hobbycraft TV + Film4+1 + Film4 + Food Network + GB News + Gemporia + GREAT! action + GREAT! Mystery + GREAT! Romance + GREAT! tv + TLC + Hobby Maker + Ideal World + ITV1 HD + ITV1 London + ITV1 +1 London + ITV2 +1 + ITV2 + ITV3 +1 + ITV3 + ITV4 +1 + ITV4 + ITV Quiz + Jewellery Maker + Legend + More 4 + MTV HD + MTV + Nickelodeon HD + Nickelodeon + Nick Junior HD + Nick Junior + Nicktoons + PBS America + QUEST+1 + QUEST + Quest Red + QVC2 + QVC + Really + Sky Arts HD + Sky Arts + Sky Atlantic HD + Sky Atlantic + Sky Cinema Action HD + Sky Cinema Action + Sky Cinema Animation HD + Sky Cinema Animation + Sky Cinema Comedy HD + Sky Cinema Comedy + Sky Cinema Family HD + Sky Cinema Family + Sky Cinema Hits HD + Sky Cinema Hits + Sky Cinema Premiere HD + Sky Cinema Premiere + Sky Cinema Sci-Fi Horror HD + Sky Cinema Sci-Fi Horror + Sky Cinema Thriller HD + Sky Cinema Thriller + Sky Comedy HD + Sky Comedy + Sky Crime HD + Sky Crime + Sky Documentaries HD + Sky Documentaries + Sky History HD + Sky History Sky Kids HD + Sky Kids + Sky One HD + Sky One + Sky Mix + Sky Nature HD + Sky Nature + Sky News HD + Sky News + Sky Sci-Fi HD + Sky Sci-Fi + Sky Sports + HD + Sky Sports + + Sky Sports Cricket HD + Sky Sports Cricket + Sky Sports F1 HD + Sky Sports F1 + Sky Sports Football HD + Sky Sports Football + Sky Sports Golf HD + Sky Sports Golf + Sky Sports Main Event HD + Sky Sports Main Event + Sky Sports Mix HD + Sky Sports Mix + Sky Sports News HD + Sky Sports News + Sky Sports NFL HD + Sky Sports NFL + Sky Sports Premier League HD + Sky Sports Premier League + Sky Sports Racing + Sky Witness HD + Sky Witness + Sony Max HD + Talking Pictures TV + TBN UK + That's 60s + That's TV 2 + That's 70s + That's TV (UK) + TJC + TNT Sports 1 HD + TNT Sports 1 + TNT Sports 2 HD + TNT Sports 2 + TNT Sports 3 HD + TNT Sports 3 + TNT Sports 4 HD + TNT Sports 4 + TNT Sports 5 HD + TNT Sports 5 + TNT Sports 6 HD + TNT Sports 6 + TNT Sports 7 HD + TNT Sports 7 + TNT Sports 8 HD + TNT Sports 8 + TNT Sports 9 HD + TNT Sports 9 + TNT Sports 10 HD + TNT Sports 10 + TNT Sports Box Office 2 HD + TNT Sports Box Office HD + TNT Sports Ultimate + Together TV + Together TV +1 + Utsav Gold HD + Utsav Plus HD + WildEarth + ADULT Xpanded TV From 541d6b1c84776366cb846bb91fdd593b226a91a0 Mon Sep 17 00:00:00 2001 From: freearhey <7253922+freearhey@users.noreply.github.com> Date: Mon, 20 Apr 2026 05:29:17 +0300 Subject: [PATCH 83/92] Update readme.md --- sites/player.ee.co.uk/readme.md | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/sites/player.ee.co.uk/readme.md b/sites/player.ee.co.uk/readme.md index facb7660e..17c48c16a 100644 --- a/sites/player.ee.co.uk/readme.md +++ b/sites/player.ee.co.uk/readme.md @@ -8,6 +8,12 @@ https://player.ee.co.uk/#/livetv/schedule npm run grab --- --sites=player.ee.co.uk ``` +### Update channel list + +```sh +npm run channels:parse --- --config=./sites/player.ee.co.uk/player.ee.co.uk.config.js --output=./sites/player.ee.co.uk/player.ee.co.uk.channels.xml +``` + ### Test ```sh From fd0ea1c9fccc2c5c14bc43e055dbcee14a25fb89 Mon Sep 17 00:00:00 2001 From: StrangeDrVN <172238701+StrangeDrVN@users.noreply.github.com> Date: Mon, 20 Apr 2026 12:54:58 +0530 Subject: [PATCH 84/92] fix channel:edit not saving --- scripts/commands/channels/edit.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/scripts/commands/channels/edit.ts b/scripts/commands/channels/edit.ts index 8005e03c0..e3c1f47b6 100644 --- a/scripts/commands/channels/edit.ts +++ b/scripts/commands/channels/edit.ts @@ -70,6 +70,7 @@ export default async function main(filepath: string) { channel.xmltv_id = '' } }) + save(filepath, channelsFromXML) } async function selectChannel(channel: epgGrabber.Channel): Promise { From 8461c310d92191db03ea1e2ae1c1a6fee62340ec Mon Sep 17 00:00:00 2001 From: "iptv-bot[bot]" <84861620+iptv-bot[bot]@users.noreply.github.com> Date: Tue, 21 Apr 2026 01:56:50 +0000 Subject: [PATCH 85/92] [Bot] Update SITES.md Committed by [iptv-bot](https://github.com/apps/iptv-bot) via [update](https://github.com/iptv-org/epg/actions/runs/24700006031) workflow. --- SITES.md | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) diff --git a/SITES.md b/SITES.md index 05533b0b1..41e0ccdbb 100644 --- a/SITES.md +++ b/SITES.md @@ -97,7 +97,7 @@ melita.com127110🟢 meo.pt212199🟢 meuguia.tv10296🟢 - mewatch.sg2524🟢 + mewatch.sg11938🟢 mi.tv2084614🟢 mncvision.id276221🟢 moji.id11🟢 @@ -109,7 +109,7 @@ mujtvprogram.cz213190🟢 musor.tv181142🟢 mysky.com.ph11543🟢 - mytelly.co.uk488387🔴https://github.com/iptv-org/epg/issues/2985 + mytelly.co.uk488387🟢 mytvsuper.com10899🟢 neo.io337230🟢 nhkworldpremium.com22🟢 @@ -120,14 +120,14 @@ nowplayer.now.com288227🟢 nuevosiglo.com.uy17346🟢 nzxmltv.com532118🟢 - ontvtonight.com5177528🔴https://github.com/iptv-org/epg/issues/3014 + ontvtonight.com5177528🟢 opto.sic.pt33🟢 orangetv.orange.es273151🟢 osn.com13486🟢 passie.nl11🟢 pbsguam.org11🟢 pickx.be404375🟢 - player.ee.co.uk241198🟢https://github.com/iptv-org/epg/issues/3050 + player.ee.co.uk231180🟢 playtv.unifi.com.my6661🟢 plex.tv1315555🟢 pluto.tv2591415🟢 @@ -156,7 +156,7 @@ singtel.com139100🟢 sjonvarp.is1313🟢 sky.co.nz9188🟢 - sky.com533471🟡https://github.com/iptv-org/epg/issues/2763 + sky.com533471🟢 sky.de7474🟢 skylife.co.kr2570🟢 skyperfectv.co.jp19667🟢 @@ -197,14 +197,14 @@ tv.sfr.fr489438🟢 tv.trueid.net24635🟢 tv24.co.uk107238🟢 - tv24.se326157🔴https://github.com/iptv-org/epg/issues/2993 + tv24.se308136🟢 tv2go.t-2.net342232🟢 tvarenasport.com1818🟢 tvarenasport.hr1010🟢 tvcesoir.fr135132🟢 tvcubana.icrt.cu1010🟢 tvgids.nl115101🟢 - tvguide.com153153🔴https://github.com/iptv-org/epg/issues/2967 + tvguide.com153153🟢 tvguide.myjcom.jp134128🟢 tvhebdo.com317213🟢 tvheute.at5348🟢 @@ -217,7 +217,7 @@ tvmusor.hu9966🟢 tvmustra.hu1890🟢 tvpassport.com192872496🟢 - tvplus.com.tr150144🔴https://github.com/iptv-org/epg/issues/2983 + tvplus.com.tr150144🟢 tvprofil.com9091408🔴https://github.com/iptv-org/epg/issues/3032 tvtv.us22992230🟢 v3.myafn.dodmedia.osd.mil88🟢 @@ -246,7 +246,7 @@ yes.co.il1740🟢 zap.co.ao11463🟢 zap2it.com5950🟢 - ziggogo.tv156150🟡https://github.com/iptv-org/epg/issues/2977, https://github.com/iptv-org/epg/issues/2976 + ziggogo.tv156150🟡https://github.com/iptv-org/epg/issues/2977 znbc.co.zm44🟢 zuragt.mn3427🟢 From 93c98f6a2761cff4473965749cbcc2d0cc42971b Mon Sep 17 00:00:00 2001 From: CasperMcFadden95 <145611964+CasperMcFadden95@users.noreply.github.com> Date: Tue, 21 Apr 2026 10:08:56 +0000 Subject: [PATCH 86/92] Update shahid.mbc.net_ar.channels.xml --- sites/shahid.mbc.net/shahid.mbc.net_ar.channels.xml | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/sites/shahid.mbc.net/shahid.mbc.net_ar.channels.xml b/sites/shahid.mbc.net/shahid.mbc.net_ar.channels.xml index dfbc74d28..39bbc3ac3 100644 --- a/sites/shahid.mbc.net/shahid.mbc.net_ar.channels.xml +++ b/sites/shahid.mbc.net/shahid.mbc.net_ar.channels.xml @@ -11,17 +11,20 @@ القرآن الكريم بصوت السديس قناة كامل العدد قناة جاك العلم + AWSN عبدالمجيد عبدالله أفلام العربية العربية Business AL Arabiya English + العربية برامج الإخبارية الحدث إذاعة خزامى القرآن الكريم السعودية السعودية الآن + السورية السنة النبوية الشرق ديسكفري Asharq Documentary @@ -34,6 +37,7 @@ إقرأ ماجد المهندس قناة مرايا + MBC1 MBC1 MBC1 MBC2 @@ -41,6 +45,7 @@ MBC3 MBC4 MBC5 + MBC Action MBC Bollywood MBC Drama MBC Drama @@ -63,7 +68,6 @@ الثقافية SBC Spacetoon - السورية طرب ذكريات وناسه From 281ba6cf0e2c58ebcbf3a5937d2aeb307aed82e1 Mon Sep 17 00:00:00 2001 From: CasperMcFadden95 <145611964+CasperMcFadden95@users.noreply.github.com> Date: Tue, 21 Apr 2026 10:09:25 +0000 Subject: [PATCH 87/92] Update shahid.mbc.net_en.channels.xml --- sites/shahid.mbc.net/shahid.mbc.net_en.channels.xml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/sites/shahid.mbc.net/shahid.mbc.net_en.channels.xml b/sites/shahid.mbc.net/shahid.mbc.net_en.channels.xml index ec416a6c8..f766f2435 100644 --- a/sites/shahid.mbc.net/shahid.mbc.net_en.channels.xml +++ b/sites/shahid.mbc.net/shahid.mbc.net_en.channels.xml @@ -11,17 +11,20 @@ The Holy Quran Recited By Al Sudais Kamel El Adad Channel Jak Al Elm Channel + AWSN Abdul Majeed Abdullah Aflam Al Arabiya Al Arabiya Business AL Arabiya English + Al Arabiya Program Alikhbariya Al Hadath Alkhuzama Radio Al Quraan al Kareem AlSaudia KSA Now + Al Souriya TV Al Sunnah al Nabawiyah Asharq Discovery Asharq Documentary @@ -65,7 +68,6 @@ AlThaqafeya SBC Spacetoon - Al Souriya TV Tarab Thikrayat Wanasa From 93339f070c39b063813830dd4bbc18634008e98a Mon Sep 17 00:00:00 2001 From: CasperMcFadden95 <145611964+CasperMcFadden95@users.noreply.github.com> Date: Tue, 21 Apr 2026 10:09:51 +0000 Subject: [PATCH 88/92] Update shahid.mbc.net_fr.channels.xml --- sites/shahid.mbc.net/shahid.mbc.net_fr.channels.xml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/sites/shahid.mbc.net/shahid.mbc.net_fr.channels.xml b/sites/shahid.mbc.net/shahid.mbc.net_fr.channels.xml index 6d64a1048..da35d5339 100644 --- a/sites/shahid.mbc.net/shahid.mbc.net_fr.channels.xml +++ b/sites/shahid.mbc.net/shahid.mbc.net_fr.channels.xml @@ -11,17 +11,20 @@ The Holy Quran Recited By Al Sudais Kamel El Adad Channel Jak Al Elm Channel + AWSN Abdul Majeed Abdullah Aflam Al Arabiya Al Arabiya Business AL Arabiya English + Al Arabiya Program Alikhbariya Al Hadath Alkhuzama Radio Al Quraan al Kareem AlSaudia KSA Now + Al Souriya TV Al Sunnah al Nabawiyah Asharq Discovery Asharq Documentary @@ -65,7 +68,6 @@ AlThaqafeya SBC Spacetoon - Al Souriya TV Tarab Thikrayat Wanasa From 735404af23b9168808ca7ef9513e5fcc12dfef92 Mon Sep 17 00:00:00 2001 From: "iptv-bot[bot]" <84861620+iptv-bot[bot]@users.noreply.github.com> Date: Wed, 22 Apr 2026 01:55:38 +0000 Subject: [PATCH 89/92] [Bot] Update SITES.md Committed by [iptv-bot](https://github.com/apps/iptv-bot) via [update](https://github.com/iptv-org/epg/actions/runs/24756120032) workflow. --- SITES.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/SITES.md b/SITES.md index 41e0ccdbb..81a1d4c6a 100644 --- a/SITES.md +++ b/SITES.md @@ -246,7 +246,7 @@ yes.co.il1740🟢 zap.co.ao11463🟢 zap2it.com5950🟢 - ziggogo.tv156150🟡https://github.com/iptv-org/epg/issues/2977 + ziggogo.tv156150🟡https://github.com/iptv-org/epg/issues/2977, https://github.com/iptv-org/epg/issues/2976 znbc.co.zm44🟢 zuragt.mn3427🟢 From a817dabb0276044886d6a98c71fe6efc6708a2c3 Mon Sep 17 00:00:00 2001 From: Toha Date: Wed, 22 Apr 2026 10:06:26 +0700 Subject: [PATCH 90/92] Site indihometv.com is retired. Signed-off-by: Toha --- sites/indihometv.com/__data__/content.html | 1 - sites/indihometv.com/__data__/no_content.html | 1 - .../indihometv.com.channels.xml | 131 ------------------ sites/indihometv.com/indihometv.com.config.js | 92 ------------ sites/indihometv.com/indihometv.com.test.js | 57 -------- sites/indihometv.com/readme.md | 23 --- 6 files changed, 305 deletions(-) delete mode 100644 sites/indihometv.com/__data__/content.html delete mode 100644 sites/indihometv.com/__data__/no_content.html delete mode 100644 sites/indihometv.com/indihometv.com.channels.xml delete mode 100644 sites/indihometv.com/indihometv.com.config.js delete mode 100644 sites/indihometv.com/indihometv.com.test.js delete mode 100644 sites/indihometv.com/readme.md diff --git a/sites/indihometv.com/__data__/content.html b/sites/indihometv.com/__data__/content.html deleted file mode 100644 index 9feda34de..000000000 --- a/sites/indihometv.com/__data__/content.html +++ /dev/null @@ -1 +0,0 @@ -
\ No newline at end of file diff --git a/sites/indihometv.com/__data__/no_content.html b/sites/indihometv.com/__data__/no_content.html deleted file mode 100644 index 6fedfd4c7..000000000 --- a/sites/indihometv.com/__data__/no_content.html +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/sites/indihometv.com/indihometv.com.channels.xml b/sites/indihometv.com/indihometv.com.channels.xml deleted file mode 100644 index 85d06ca99..000000000 --- a/sites/indihometv.com/indihometv.com.channels.xml +++ /dev/null @@ -1,131 +0,0 @@ - - - ABC Australia - Asian Food Network - Aljazeera - AlQuran Kareem - Animal Planet - Animax - Aniplus - Antara - ANTV - Arirang - ATV - AXN - Bali TV - SPOTV - SPOTV 2 - BTV - Bioskop Indonesia - Bloomberg - Rock Entertainment - Rock Action - Cartoonito - Cartoon Network - CCTV4 - Citra Drama - Celestial Movie - CGTN Documentary - Chinese Drama - Cinema World - Citra Dangdut - CNBC Asia - CNBC Indonesia - CNN Indonesia - CNN International - Crime Investigation - Curiosity - Daai TV - Da Vinci Learning - Discovery Channel - Discovery Asia - Dreamworks - Dunia anak - Dunia Lain - DW (English) - Euronews - FashionTV - Fight Sport - Flik - France 24 - Galaxy - Galaxy Premium - HGTV - History - Hits - HIts Movie - HITS Now - Horee - Horizon Sports - Berita Satu - IDX - IMC - FunPlanet - Indosiar - iNews - JakTV - Jawa Pos TV - JTV - KBS World - Kix - Kompas TV - Kplus - Lifetime - Love Nature - Maxstream - Mentari TV - Metro TV - SINDO News TV - Moonbug - MQTV - MTATV - MTV Live - Muhammadiyah TV - MUI TV - Musik Indonesia - MyKidz - NBA - MDTV - News Asia - New Tv Comprehensive - New Tv Finance - New Tv Variety - nhk world Japan - Nickelodeon - Nick Junior - Nusantara TV - MOJI - Phoenix Chinese - Phoenix InfoNews - Prambors - Rodja TV - Rajawali TV - SCTV - Shenzen - SONE - Studio Universal - Tawaf TV - Thrill - TLC - Trans7 - TransTV - TV5Monde - TV9 NU - TVBS News - TVN - TVN Movies - TV One - TVRI Nasional - UChannel - AllPlay Ent - Warner - ZBioskop - Zhejiang - GTV - MNCTV - RCTI - RT - TVRI World - BBC World News - CBeebies - diff --git a/sites/indihometv.com/indihometv.com.config.js b/sites/indihometv.com/indihometv.com.config.js deleted file mode 100644 index cf943af82..000000000 --- a/sites/indihometv.com/indihometv.com.config.js +++ /dev/null @@ -1,92 +0,0 @@ -const cheerio = require('cheerio') -const dayjs = require('dayjs') -const utc = require('dayjs/plugin/utc') -const timezone = require('dayjs/plugin/timezone') -const customParseFormat = require('dayjs/plugin/customParseFormat') - -dayjs.extend(utc) -dayjs.extend(timezone) -dayjs.extend(customParseFormat) - -const tz = 'Asia/Jakarta' - -module.exports = { - site: 'indihometv.com', - days: 2, - url({ channel }) { - return `https://www.indihometv.com/livetv/${channel.site_id}` - }, - parser({ content, date }) { - const programs = [] - const [$, items] = parseItems(content, date) - items.forEach(item => { - const prev = programs[programs.length - 1] - const $item = $(item) - let start = parseStart($item, date) - if (prev && start.isBefore(prev.start)) { - start = start.add(1, 'd') - date = date.add(1, 'd') - } - let stop = parseStop($item, date) - if (stop.isBefore(start)) { - stop = stop.add(1, 'd') - date = date.add(1, 'd') - } - programs.push({ - title: parseTitle($item), - start, - stop - }) - }) - - return programs - }, - async channels() { - const axios = require('axios') - const cheerio = require('cheerio') - const data = await axios - .get('https://www.indihometv.com/tv/live') - .then(response => response.data) - .catch(console.error) - - const $ = cheerio.load(data) - const items = $('#channelContainer a.channel-item').toArray() - const channels = items.map(item => { - const $item = $(item) - - return { - lang: 'id', - site_id: $item.data('url').substr($item.data('url').lastIndexOf('/') + 1), - name: $item.data('name') - } - }) - - return channels - } -} - -function parseStart($item, date) { - const timeString = $item.find('p').text() - const [, start] = timeString.match(/(\d{2}:\d{2}) -/) || [null, null] - const dateString = `${date.format('YYYY-MM-DD')} ${start}` - - return dayjs.tz(dateString, 'YYYY-MM-DD HH:mm', tz) -} - -function parseStop($item, date) { - const timeString = $item.find('p').text() - const [, stop] = timeString.match(/- (\d{2}:\d{2})/) || [null, null] - const dateString = `${date.format('YYYY-MM-DD')} ${stop}` - - return dayjs.tz(dateString, 'YYYY-MM-DD HH:mm', tz) -} - -function parseTitle($item) { - return $item.find('b').text() -} - -function parseItems(content, date) { - const $ = cheerio.load(content) - - return [$, $(`#pills-${date.format('YYYY-MM-DD')} .schedule-item`).toArray()] -} diff --git a/sites/indihometv.com/indihometv.com.test.js b/sites/indihometv.com/indihometv.com.test.js deleted file mode 100644 index d84c0c24e..000000000 --- a/sites/indihometv.com/indihometv.com.test.js +++ /dev/null @@ -1,57 +0,0 @@ -const { parser, url } = require('./indihometv.com.config.js') -const fs = require('fs') -const path = require('path') -const dayjs = require('dayjs') -const utc = require('dayjs/plugin/utc') -dayjs.extend(utc) - -const date = dayjs.utc('2022-08-08').startOf('d') -const channel = { - site_id: 'metrotv', - xmltv_id: 'MetroTV.id' -} - -it('can generate valid url', () => { - expect(url({ channel })).toBe('https://www.indihometv.com/livetv/metrotv') -}) - -it('can parse response', () => { - const content = fs.readFileSync(path.resolve(__dirname, '__data__/content.html'), 'utf8') - const result = parser({ content, channel, date }).map(p => { - p.start = p.start.toJSON() - p.stop = p.stop.toJSON() - return p - }) - - expect(result).toMatchObject([ - { - title: 'Headline News', - start: '2022-08-08T00:00:00.000Z', - stop: '2022-08-08T00:05:00.000Z' - }, - { - title: 'Editorial Media Indonesia', - start: '2022-08-08T00:05:00.000Z', - stop: '2022-08-08T00:30:00.000Z' - }, - { - title: 'Editorial Media Indonesia', - start: '2022-08-08T00:30:00.000Z', - stop: '2022-08-08T00:45:00.000Z' - }, - { - title: 'Editorial Media Indonesia', - start: '2022-08-08T00:45:00.000Z', - stop: '2022-08-08T01:00:00.000Z' - } - ]) -}) - -it('can handle empty guide', () => { - const result = parser({ - date, - channel, - content: fs.readFileSync(path.resolve(__dirname, '__data__/no_content.html'), 'utf8') - }) - expect(result).toMatchObject([]) -}) diff --git a/sites/indihometv.com/readme.md b/sites/indihometv.com/readme.md deleted file mode 100644 index ccced056c..000000000 --- a/sites/indihometv.com/readme.md +++ /dev/null @@ -1,23 +0,0 @@ -# indihometv.com - -https://www.indihometv.com/ - -### Download the guide - -```sh -npm run grab --- --sites=indihometv.com -``` - -**NOTE:** Requests from some regions may return a "Connection timeout" error (https://check-host.net/check-report/13a843e2ke22). - -### Update channel list - -```sh -npm run channels:parse --- --config=./sites/indihometv.com/indihometv.com.config.js --output=./sites/indihometv.com/indihometv.com.channels.xml -``` - -### Test - -```sh -npm test --- indihometv.com -``` From cf1f841d5bb9c014617bddfe5ed60e14ffe1df98 Mon Sep 17 00:00:00 2001 From: "._______166" Date: Wed, 22 Apr 2026 16:16:53 +0100 Subject: [PATCH 91/92] Freeview: Pull all channels from every region this change builds one massive freeview TV guide for the entire uk, as it merges the guide for every region/transmitter group into one single guide, i have tried my best to remove duplicate channels from the guide, but, specifically with the bbc shifting some of their IDs for some regions, and 'that's tv' owning nearly all the local tv licences in the UK, it is impossible to remove all duplicates --- .../freeview.co.uk.channels.xml | 210 +++++++++++++++++- sites/freeview.co.uk/freeview.co.uk.config.js | 29 ++- 2 files changed, 216 insertions(+), 23 deletions(-) diff --git a/sites/freeview.co.uk/freeview.co.uk.channels.xml b/sites/freeview.co.uk/freeview.co.uk.channels.xml index eee24034c..290c3dcd9 100644 --- a/sites/freeview.co.uk/freeview.co.uk.channels.xml +++ b/sites/freeview.co.uk/freeview.co.uk.channels.xml @@ -21,13 +21,13 @@ Sonlife On Demand 365 Channelbox - That's Oldies CNA Originals GIGS - EuroNews Trailblazer Odyssey TV Ketchup Too + Music & Memories + Outdoor Channel ROK Global Arabic + Amazing Facts @@ -35,7 +35,6 @@ Nosey Shop On TV Purpose Media - LEGEND XTRA RNIB Connect Heart Capital @@ -44,24 +43,117 @@ That's TV 2 SonLife Must Have Ideas - That's 80s + That's 70s Smooth Radio Hobbycraft TV Rewind TV Together TV IP - That's Melody + That's 60s Premier Radio Great! Player Great! Romance Mix - India Today MBC Group - wedotv movies + wedotv Big Stories It Is Written TV OUTflix Proud High Street TV Cartoon Classics wedotv Movies UK Nolly Africa + BBC Solent + BBC Solent Dorset + BBC Sussex + BBC Wiltshire + BBC Kent + KMTV + That's TV + That's TV + Latest TV + That's TV + That's TV + BBC Oxford + BBC Gloucestershire + That's TV + BBC Norfolk + BBC Northampton + BBC Cambridge + BBC Suffolk + That's TV + That's TV + BBC Bristol + BBC Somerset + Bristol TV + BBC Cornwall + BBC Devon + BBC Guernsey + BBC Jersey + BBC WM + BBC Stoke + BBC Derby + BBC H&W + BBC Shropshire + BBC CWR + Birmingham TV + BBC Nottingham + BBC Lincolnshire + BBC Leicester + BBC Sheffield + BBC Humberside + That's TV + That's TV + BBC Leeds + BBC York + That's TV + Leeds TV + That's TV + BBC Newcastle + BBC Cumbria + BBC Tees + Tyne & Wear TV + Teesside TV + BBC Manchester + BBC Lancashire + BBC Merseyside + That's TV (UK) MCR + TV Warehouse + That's 60s MCR + That's Oldies MCR + That's TV 2 MCR + TV Warehouse+1 + That's TV 3 MCR + That's Classics MCR + That's TV + Liverpool TV + That's TV + That's TV + BBC R5L + BBC 5SX + BBC 6 Music + BBC Radio 4 Ex + BBC R1X + BBC Asian Net. + BBC World Sv. + BBC R Scotland + BBC R n Gaidheal + BBC Radio 1 + BBC Radio 2 + BBC Radio 3 + BBC Radio 4 + That's TV + That's TV + That's TV + That's TV + That's TV + BBC Radio Wales + BBC Radio Cymru + BBC Radio Cymru 2 + Cardiff TV + That's TV + North Wales TV + BBC Radio Ulster + BBC Radio Foyle + RTÉ RnaG + That's TV 4seven 5ACTION 5SELECT @@ -72,20 +164,63 @@ Al Jazeera Arabic Al Jazeera English ASHARQ NEWS + BBC ALBA BBC FOUR HD BBC FOUR BBC NEWS + BBC ONE CI + BBC ONE CI HD + BBC ONE East + BBC ONE East + BBC ONE EastHD + BBC ONE EastHD + BBC ONE E Mid + BBC ONE EMidHD BBC ONE Lon BBC ONE Lon HD + BBC ONE NE&C + BBC ONE NE&CHD + BBC ONE NI + BBC ONE NI HD + BBC ONE N West + BBC ONE NWstHD + BBC ONE Scot + BBC 1 Scot HD + BBC ONE South + BBC ONE South + BBC ONE S East + BBC ONE SE HD + BBC ONE Sth HD + BBC ONE Sth HD + BBC ONE S West + BBC ONE SW HD + BBC ONE Wales + BBC 1 Wales HD + BBC ONE West + BBC ONE WestHD + BBC ONE W Mid + BBC ONE WMidHD + BBC ONE Yorks + BBC ONE Yks HD + BBC ONE Yk&Li + BBC ONE Yk&LHD BBC Parliament BBC RB 1 + BBC Scotland HD + BBC Scotland BBC THREE HD BBC THREE BBC TWO BBC TWO HD + BBC TWO NI + BBC TWO NI HD + BBC TWO Wales + BBC 2 Wales HD Blaze+1 Blaze CBBC HD + CBBC HD + CBBC HD CBBC CBeebies HD CBeebies @@ -98,26 +233,61 @@ 5 DMAX E4+1 + E4+1 E4 E4 Extra + EuroNews Film4+1 Film4 Food Network FRANCE 24 GB News Gemporia - God TV Great! Action Great! Mystery Great! Movies Great! Romance Great! TV - HGTV HobbyMaker + LEGEND XTRA Ideal World + ITV1 + ITV1 + ITV1+1 + ITV1 Border England + ITV1+1 + ITV1 Border Scotland + ITV1 HD + ITV1 + ITV1 + ITV1 HD + ITV1+1 + ITV1 + ITV1 + ITV1 HD + ITV1+1 ITV1 HD ITV1 + ITV1 + ITV1 + ITV1 + ITV1 HD + ITV1+1 ITV1+1 + ITV1 + ITV1+1 + ITV1 Wales + ITV1 Wales HD + ITV1+1 + ITV1 + ITV1 + ITV1 HD + ITV1+1 + ITV1+1 + ITV1 + ITV1 + ITV1 HD + ITV1+1 ITV2+1 ITV2 ITV3+1 @@ -137,33 +307,49 @@ POP POP UP QUEST+1 + QUEST+1 QUEST Quest Red QVC2 QVC Really Revelation TV + RTÉ Two + RTÉ One + S4C HD + S4C Sky Arts Sky Mix Sky News + STV HD + STV+1 + STV + STV+1 + STV TalkingPictures TV talkSPORT Talk TBN UK + TG4 That's TV (UK) + That's TV Tiny Pop TJC + TLC+1 + TLC Together TV+1 Together TV TRUE CRIME TRUE CRIME XTRA U&Dave - U&DaveJaVu + U&DaveJaVu U&Drama+1 U&Drama U&Eden - U&W + UTV HD + UTV+1 + UTV + U&W U&Yesterday WildEarth - YAAAS! diff --git a/sites/freeview.co.uk/freeview.co.uk.config.js b/sites/freeview.co.uk/freeview.co.uk.config.js index e98f8302e..3a0f03d46 100644 --- a/sites/freeview.co.uk/freeview.co.uk.config.js +++ b/sites/freeview.co.uk/freeview.co.uk.config.js @@ -36,18 +36,25 @@ module.exports = { return programs }, async channels() { - const networkId = '64257' // Great London const startTimestamp = dayjs.utc().startOf('d').unix() - const data = await axios - .get(`https://www.freeview.co.uk/api/tv-guide?nid=${networkId}&start=${startTimestamp}`) - .then(r => r.data) - .catch(console.log) + let channels = [] + for (let networkId = 64257; networkId <= 64425; networkId++) { // loop through all valid networkIds starting from 64257 (Greater London) to 64425 (Belfast) to ensure we can get all the channels available on freeview + console.log(networkId) + const data = await axios + .get(`https://www.freeview.co.uk/api/tv-guide?nid=${networkId}&start=${startTimestamp}`) + .then(r => r.data) + .catch(console.log) - return data.data.programs.map(item => ({ - lang: 'en', - site_id: `${networkId}#${item.service_id}`, - name: item.title - })) + channels = channels.concat(data.data.programs.map(item => ({ + lang: 'en', + site_id: `${networkId}#${item.service_id}`, + name: item.title + }))) + } + const uniqueServiceIds = Array.from(new Set(channels.map(c => c.site_id.split('#')[1]))) + return uniqueServiceIds.map(serviceId => { + return channels.find(c => c.site_id.split('#')[1] === serviceId) + }) } } @@ -85,4 +92,4 @@ async function loadProgramDetails(item) { }) .catch(console.log) return data || {} -} \ No newline at end of file +} From 74552b70ab3482461d4edee612ab712f98fe52af Mon Sep 17 00:00:00 2001 From: "iptv-bot[bot]" <84861620+iptv-bot[bot]@users.noreply.github.com> Date: Thu, 23 Apr 2026 01:59:51 +0000 Subject: [PATCH 92/92] [Bot] Update SITES.md Committed by [iptv-bot](https://github.com/apps/iptv-bot) via [update](https://github.com/iptv-org/epg/actions/runs/24812551962) workflow. --- SITES.md | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/SITES.md b/SITES.md index 81a1d4c6a..85d286346 100644 --- a/SITES.md +++ b/SITES.md @@ -79,7 +79,6 @@ i.mjh.nz108702935🟢 i24news.tv43🟢 iltalehti.fi1470🟢 - indihometv.com128122🟢 ionplustv.com11🟢 ipko.tv194151🟢 jiotv.com10940🟢 @@ -151,7 +150,7 @@ ruv.is22🟢 s.mxtv.jp22🟢 sat.tv30308249🟢 - shahid.mbc.net205172🟢 + shahid.mbc.net213177🟢 siba.com.co24488🟢 singtel.com139100🟢 sjonvarp.is1313🟢