From 0c954add230c67eb19cdcb41bec2c7490e4f4bdd Mon Sep 17 00:00:00 2001 From: remzouille Date: Fri, 3 Nov 2023 10:59:41 +0100 Subject: [PATCH 1/9] Authentification par cookie / token --- resources/lib/provider_templates/orange.py | 66 ++++++++++++++++++---- resources/lib/providers/fr/orange.py | 4 +- 2 files changed, 56 insertions(+), 14 deletions(-) diff --git a/resources/lib/provider_templates/orange.py b/resources/lib/provider_templates/orange.py index 2484b5e..ea16050 100644 --- a/resources/lib/provider_templates/orange.py +++ b/resources/lib/provider_templates/orange.py @@ -3,12 +3,15 @@ from dataclasses import dataclass from datetime import date, datetime, timedelta import json +import os +import re +import xbmcvfs from urllib.error import HTTPError -from urllib.parse import urlparse +from urllib.parse import urlparse, quote from urllib.request import Request, urlopen from lib.providers.provider_interface import ProviderInterface -from lib.utils import get_drm, get_global_setting, log, LogLevel, random_ua +from lib.utils import get_drm, get_global_setting, log, LogLevel, random_ua, get_addon_profile @dataclass class OrangeTemplate(ProviderInterface): @@ -27,18 +30,55 @@ def __init__( self.endpoint_programs = endpoint_programs self.groups = groups + def _auth_urlopen(self, url: str, headers: dict = None) -> tuple: + if headers is None: + headers = {} + timestamp = datetime.timestamp(datetime.today()) + filepath = os.path.join(xbmcvfs.translatePath(get_addon_profile()), 'auth') + + try: + with open(filepath) as file: + auth = json.loads(file.read()) + except FileNotFoundError: + auth = {'timestamp': timestamp} + + for _ in range(2): + if 'cookie' in auth: + headers['cookie'] = auth['cookie'] + headers['tv_token'] = auth['tv_token'] + req = Request(url, headers=headers) + + try: + with urlopen(req) as res: + if res.code == 200: + return res.read(), auth['cookie'], auth['tv_token'] + except HTTPError as error: + if error.code in (401, 403): + log("cookie/token invalide, âge = %d" % (timestamp - auth['timestamp']), LogLevel.INFO) + else: + log("erreur %s" % error, LogLevel.INFO) + raise + + req = Request("https://chaines-tv.orange.fr", headers={ + 'User-Agent': random_ua(), + 'Host': 'chaines-tv.orange.fr', + }) + + with urlopen(req) as res: + cookie = res.headers['Set-Cookie'].split(";")[0] + tv_token = "Bearer %s" % re.sub('.*token:"', '', str(res.read()), 1) + tv_token = re.sub('",claims:.*', '', tv_token, 1) + auth = {'timestamp': timestamp, 'cookie': cookie, 'tv_token': tv_token} + with open(filepath, 'w') as file: + file.write(json.dumps(auth)) + def get_stream_info(self, channel_id: int) -> dict: - req = Request(self.endpoint_stream_info.format(channel_id=channel_id), headers={ + res, cookie, tv_token = self._auth_urlopen(self.endpoint_stream_info.format(channel_id=channel_id), headers={ 'User-Agent': random_ua(), 'Host': urlparse(self.endpoint_stream_info).netloc }) - try: - with urlopen(req) as res: - stream_info = json.loads(res.read()) - except HTTPError as error: - if error.code == 403: - return False + stream_info = json.loads(res) drm = get_drm() license_server_url = None @@ -47,6 +87,7 @@ def get_stream_info(self, channel_id: int) -> dict: license_server_url = system.get('laUrl') headers = f'Content-Type=&User-Agent={random_ua()}&Host={urlparse(license_server_url).netloc}' + headers += '&Cookie=%s&tv_token=%s' % (quote(cookie), quote(tv_token)) post_data = 'R{SSM}' response = '' @@ -63,13 +104,14 @@ def get_stream_info(self, channel_id: int) -> dict: return stream_info def get_streams(self) -> list: - req = Request(self.endpoint_streams, headers={ + return [] + + res, _, _ = self._auth_urlopen(self.endpoint_streams, headers={ 'User-Agent': random_ua(), 'Host': urlparse(self.endpoint_streams).netloc }) - with urlopen(req) as res: - channels = json.loads(res.read()) + channels = json.loads(res) streams = [] diff --git a/resources/lib/providers/fr/orange.py b/resources/lib/providers/fr/orange.py index aad2e21..6af0128 100644 --- a/resources/lib/providers/fr/orange.py +++ b/resources/lib/providers/fr/orange.py @@ -8,8 +8,8 @@ class OrangeFranceProvider(OrangeTemplate): # pylint: disable=line-too-long def __init__(self) -> None: super().__init__( - endpoint_stream_info = 'https://mediation-tv.orange.fr/all/live/v3/applications/PC/users/me/channels/{channel_id}/stream?terminalModel=WEB_PC', - endpoint_streams = 'https://mediation-tv.orange.fr/all/live/v3/applications/PC/channels?mco=OFR', + endpoint_stream_info = 'https://mediation-tv.orange.fr/all/api-gw/live/v3/auth/accountToken/applications/PC/channels/{channel_id}/stream?terminalModel=WEB_PC', + endpoint_streams = 'https://mediation-tv.orange.fr/all/api-gw/live/v3/auth/accountToken/applications/PC/channels?mco=OFR', endpoint_programs = 'https://rp-ott-mediation-tv.woopic.com/api-gw/live/v3/applications/PC/programs?period={period}&mco=OFR', groups = { 'TNT': \ From 1608ed75e6be76814746108dfad67da04882e3bd Mon Sep 17 00:00:00 2001 From: remzouille Date: Fri, 3 Nov 2023 14:37:08 +0100 Subject: [PATCH 2/9] =?UTF-8?q?Modifications=20syntaxiques=20pour=20faire?= =?UTF-8?q?=20plaisir=20=C3=A0=20pylint?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- resources/lib/provider_templates/orange.py | 17 ++++++++++------- 1 file changed, 10 insertions(+), 7 deletions(-) diff --git a/resources/lib/provider_templates/orange.py b/resources/lib/provider_templates/orange.py index ea16050..b02c3e1 100644 --- a/resources/lib/provider_templates/orange.py +++ b/resources/lib/provider_templates/orange.py @@ -5,10 +5,10 @@ import json import os import re -import xbmcvfs from urllib.error import HTTPError from urllib.parse import urlparse, quote from urllib.request import Request, urlopen +import xbmcvfs from lib.providers.provider_interface import ProviderInterface from lib.utils import get_drm, get_global_setting, log, LogLevel, random_ua, get_addon_profile @@ -37,7 +37,7 @@ def _auth_urlopen(self, url: str, headers: dict = None) -> tuple: filepath = os.path.join(xbmcvfs.translatePath(get_addon_profile()), 'auth') try: - with open(filepath) as file: + with open(filepath, encoding='UTF-8') as file: auth = json.loads(file.read()) except FileNotFoundError: auth = {'timestamp': timestamp} @@ -54,9 +54,9 @@ def _auth_urlopen(self, url: str, headers: dict = None) -> tuple: return res.read(), auth['cookie'], auth['tv_token'] except HTTPError as error: if error.code in (401, 403): - log("cookie/token invalide, âge = %d" % (timestamp - auth['timestamp']), LogLevel.INFO) + log(f"cookie/token invalide, âge = {int(timestamp - auth['timestamp'])}", LogLevel.INFO) else: - log("erreur %s" % error, LogLevel.INFO) + log(f"erreur {error}", LogLevel.INFO) raise req = Request("https://chaines-tv.orange.fr", headers={ @@ -66,12 +66,14 @@ def _auth_urlopen(self, url: str, headers: dict = None) -> tuple: with urlopen(req) as res: cookie = res.headers['Set-Cookie'].split(";")[0] - tv_token = "Bearer %s" % re.sub('.*token:"', '', str(res.read()), 1) + tv_token = re.sub('.*token:"', 'Bearer ', str(res.read()), 1) tv_token = re.sub('",claims:.*', '', tv_token, 1) auth = {'timestamp': timestamp, 'cookie': cookie, 'tv_token': tv_token} - with open(filepath, 'w') as file: + with open(filepath, 'w', encoding='UTF-8') as file: file.write(json.dumps(auth)) + return None + def get_stream_info(self, channel_id: int) -> dict: res, cookie, tv_token = self._auth_urlopen(self.endpoint_stream_info.format(channel_id=channel_id), headers={ 'User-Agent': random_ua(), @@ -87,7 +89,7 @@ def get_stream_info(self, channel_id: int) -> dict: license_server_url = system.get('laUrl') headers = f'Content-Type=&User-Agent={random_ua()}&Host={urlparse(license_server_url).netloc}' - headers += '&Cookie=%s&tv_token=%s' % (quote(cookie), quote(tv_token)) + headers += f'&Cookie={quote(cookie)}&tv_token={quote(tv_token)}' post_data = 'R{SSM}' response = '' @@ -104,6 +106,7 @@ def get_stream_info(self, channel_id: int) -> dict: return stream_info def get_streams(self) -> list: + # pylint: disable=unreachable return [] res, _, _ = self._auth_urlopen(self.endpoint_streams, headers={ From baaf50bdc7408aacf1f85b4a04ec6b108b207c38 Mon Sep 17 00:00:00 2001 From: remzouille Date: Sat, 4 Nov 2023 17:56:42 +0100 Subject: [PATCH 3/9] =?UTF-8?q?Cha=C3=AEnes=20et=20logos=20cod=C3=A9s=20en?= =?UTF-8?q?=20dur=20(pour=20l'instant)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- resources/lib/provider_templates/orange.py | 61 +++++++++++++--------- resources/lib/providers/fr/orange.py | 2 +- resources/lib/utils.py | 4 ++ 3 files changed, 40 insertions(+), 27 deletions(-) diff --git a/resources/lib/provider_templates/orange.py b/resources/lib/provider_templates/orange.py index b02c3e1..5b20880 100644 --- a/resources/lib/provider_templates/orange.py +++ b/resources/lib/provider_templates/orange.py @@ -11,7 +11,7 @@ import xbmcvfs from lib.providers.provider_interface import ProviderInterface -from lib.utils import get_drm, get_global_setting, log, LogLevel, random_ua, get_addon_profile +from lib.utils import get_drm, get_global_setting, log, LogLevel, random_ua, get_addon_profile, get_addon_path @dataclass class OrangeTemplate(ProviderInterface): @@ -30,6 +30,27 @@ def __init__( self.endpoint_programs = endpoint_programs self.groups = groups + def _get_auth(self) -> tuple: + timestamp = datetime.timestamp(datetime.today()) + filepath = os.path.join(xbmcvfs.translatePath(get_addon_profile()), 'auth') + + req = Request("https://chaines-tv.orange.fr", headers={ + 'User-Agent': random_ua(), + 'Host': 'chaines-tv.orange.fr', + }) + + with urlopen(req) as res: + nuxt = re.sub('.*.*', '', nuxt, 1) + cookie = res.headers['Set-Cookie'].split(";")[0] + tv_token = re.sub('.*token:"', 'Bearer ', nuxt, 1) + tv_token = re.sub('",claims:.*', '', tv_token, 1) + auth = {'timestamp': timestamp, 'cookie': cookie, 'tv_token': tv_token} + with open(filepath, 'w', encoding='UTF-8') as file: + file.write(json.dumps(auth)) + + return nuxt, cookie, tv_token + def _auth_urlopen(self, url: str, headers: dict = None) -> tuple: if headers is None: headers = {} @@ -59,18 +80,7 @@ def _auth_urlopen(self, url: str, headers: dict = None) -> tuple: log(f"erreur {error}", LogLevel.INFO) raise - req = Request("https://chaines-tv.orange.fr", headers={ - 'User-Agent': random_ua(), - 'Host': 'chaines-tv.orange.fr', - }) - - with urlopen(req) as res: - cookie = res.headers['Set-Cookie'].split(";")[0] - tv_token = re.sub('.*token:"', 'Bearer ', str(res.read()), 1) - tv_token = re.sub('",claims:.*', '', tv_token, 1) - auth = {'timestamp': timestamp, 'cookie': cookie, 'tv_token': tv_token} - with open(filepath, 'w', encoding='UTF-8') as file: - file.write(json.dumps(auth)) + _, auth['cookie'], auth['tv_token'] = self._get_auth() return None @@ -106,27 +116,26 @@ def get_stream_info(self, channel_id: int) -> dict: return stream_info def get_streams(self) -> list: - # pylint: disable=unreachable - return [] - - res, _, _ = self._auth_urlopen(self.endpoint_streams, headers={ - 'User-Agent': random_ua(), - 'Host': urlparse(self.endpoint_streams).netloc - }) - - channels = json.loads(res) + filepath = os.path.join(xbmcvfs.translatePath(get_addon_path()), 'channels.json') + with open(filepath, encoding='UTF-8') as file: + channels = json.load(file) streams = [] for channel in channels: - channel_id: str = channel['id'] + channel_id = str(channel['idEPG']) + logourl = None + for logo in channel['logos']: + if logo['definitionType'] == 'webTVSquare': + logourl = logo['listLogos'][0]['path'] + break streams.append({ 'id': channel_id, 'name': channel['name'], - 'preset': channel['zappingNumber'], - 'logo': channel['logos']['square'].replace('%2F/', '%2F') if 'square' in channel['logos'] else None, + 'preset': str(channel['displayOrder']), + 'logo': logourl, 'stream': f'plugin://plugin.video.orange.fr/channel/{channel_id}', - 'group': [group_name for group_name in self.groups if int(channel['id']) in self.groups[group_name]] + 'group': [group_name for group_name in self.groups if int(channel_id) in self.groups[group_name]] }) return streams diff --git a/resources/lib/providers/fr/orange.py b/resources/lib/providers/fr/orange.py index 6af0128..d7ac67d 100644 --- a/resources/lib/providers/fr/orange.py +++ b/resources/lib/providers/fr/orange.py @@ -9,7 +9,7 @@ class OrangeFranceProvider(OrangeTemplate): def __init__(self) -> None: super().__init__( endpoint_stream_info = 'https://mediation-tv.orange.fr/all/api-gw/live/v3/auth/accountToken/applications/PC/channels/{channel_id}/stream?terminalModel=WEB_PC', - endpoint_streams = 'https://mediation-tv.orange.fr/all/api-gw/live/v3/auth/accountToken/applications/PC/channels?mco=OFR', + endpoint_streams = 'https://rp-ott-mediation-tv.woopic.com/api-gw/live/v3/applications/PC/programs?groupBy=channel&mco=OFR', endpoint_programs = 'https://rp-ott-mediation-tv.woopic.com/api-gw/live/v3/applications/PC/programs?period={period}&mco=OFR', groups = { 'TNT': \ diff --git a/resources/lib/utils.py b/resources/lib/utils.py index bfa0da9..650ea82 100644 --- a/resources/lib/utils.py +++ b/resources/lib/utils.py @@ -51,6 +51,10 @@ def get_addon_name(): """Return the addon info name property""" return _ADDON.getAddonInfo('name') +def get_addon_path(): + """Return the addon info path property""" + return _ADDON.getAddonInfo('path') + def get_addon_profile(): """Return the addon info profile property""" return _ADDON.getAddonInfo('profile') From e951449c54a45e0f8f761795112e1796cd04d8f3 Mon Sep 17 00:00:00 2001 From: remzouille Date: Sat, 4 Nov 2023 19:24:24 +0100 Subject: [PATCH 4/9] Ajout du fichier channels.json --- channels.json | 39097 ++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 39097 insertions(+) create mode 100644 channels.json diff --git a/channels.json b/channels.json new file mode 100644 index 0000000..fdbd28e --- /dev/null +++ b/channels.json @@ -0,0 +1,39097 @@ +[ + { + "name": "TF1", + "editoChannelId": "livetv_tf1", + "lcn": 1, + "idEPG": 192, + "epgAvailable": true, + "epgTextSubstitution": "", + "displayOrder": 1, + "csaCode": 1, + "slogan": "Partageons des ondes positives", + "catchupChannelId": "catchuptv_tf1", + "newChannel": false, + "roamingBlocked": true, + "allowedDeviceCategories": [ + "M_ANDROID", + "M_IOS", + "M_TABLET_ANDROID", + "M_TABLET_IOS", + "W_AIRPLAY", + "W_CHROMECAST", + "W_LACLETV2", + "W_SMARTTV", + "W_PC", + "S_STB" + ], + "packages": [ + "PA_BQ_PASSACCESTVPREMIUM_M", + "PA_BQ_BASIC_M", + "PA_BQ_RE_TVMAX_M", + "PA_BQ_ACCESTVPREMIUM_M", + "PA_BQ_PAYG_M", + "PA_BQ_TVDIGITALE_I", + "PA_BQ_SPORT_M", + "PA_BQ_BASIC_I", + "PA_BQ_BASICQUAD_I", + "PA_BQ_ACCESTV_M", + "PI_WHITELIST" + ], + "hasRightIAccess": true, + "hasRightMAccess": true, + "logos": [ + { + "definitionType": "mobileAppli", + "listLogos": [ + { + "size": "183x183", + "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_tf1%2F20180417_164011%2FmobileAppli%2Flogo_183x183.png" + } + ] + }, + { + "definitionType": "mobileAppliDark", + "listLogos": [ + { + "size": "183x183", + "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_tf1%2F20180417_164011%2FmobileAppliDark%2Flogo_183x183.png" + } + ] + }, + { + "definitionType": "webTVLogo", + "listLogos": [ + { + "size": "180x96", + "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_tf1%2F20180417_164011%2FwebTVLogo%2Flogo_180x96.png" + } + ] + }, + { + "definitionType": "webTVSquare", + "listLogos": [ + { + "size": "150x150", + "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_tf1%2F20180417_164011%2FwebTVSquare%2Flogo_150x150.png" + } + ] + } + ], + "mobileData": { + "wifiForbidden": false, + "wifiSecuredOnly": false, + "everywhereChannel": true, + "nomadismAllowed": true, + "drmLevels": [ + { + "definition": "SD", + "securedTerminal": [ + "DRM-HW", + "DRM-SW" + ], + "unsecuredTerminal": [ + "DRM-HW", + "DRM-SW" + ] + }, + { + "definition": "HD", + "securedTerminal": [ + "DRM-HW", + "DRM-SW" + ], + "unsecuredTerminal": [ + "ND" + ] + } + ] + }, + "webdeviceData": { + "nomadismAllowed": true + }, + "technicalChannels": { + "live": [ + { + "techChannelId": "400013", + "type": "CLOUDTV", + "liveTargetURLRelativePath": "livetv_tf1_ctv", + "usi": 400013, + "isDRMized": true, + "csa5Disabled": true + } + ], + "npvr": [ + { + "externalId": "livetv_tf1_ctv", + "techChannelId": "400013", + "type": "CLOUDTV", + "usi": 400013, + "isDRMized": true, + "antiAdskipping": "DEACTIVATED", + "csa5Disabled": true + } + ], + "startover": [ + { + "externalId": "livetv_tf1_ctv", + "techChannelId": "400013", + "type": "CLOUDTV", + "usi": 400013, + "isDRMized": true, + "antiAdskipping": "DEACTIVATED", + "csa5Disabled": true + } + ] + } + }, + { + "name": "FRANCE 2", + "editoChannelId": "livetv_france2", + "lcn": 2, + "idEPG": 4, + "epgAvailable": true, + "epgTextSubstitution": "", + "displayOrder": 2, + "csaCode": 1, + "slogan": "France 2, Plus 2 passion", + "catchupChannelId": "catchuptv_france2", + "newChannel": false, + "roamingBlocked": true, + "allowedDeviceCategories": [ + "M_ANDROID", + "M_IOS", + "M_TABLET_ANDROID", + "M_TABLET_IOS", + "W_AIRPLAY", + "W_CHROMECAST", + "W_LACLETV2", + "W_SMARTTV", + "W_PC", + "S_STB" + ], + "packages": [ + "PA_BQ_PASSACCESTVPREMIUM_M", + "PA_BQ_BASIC_M", + "PA_BQ_RE_TVMAX_M", + "PA_BQ_ACCESTVPREMIUM_M", + "PA_BQ_PAYG_M", + "PA_BQ_MUSIQUE_M", + "PA_BQ_TVDIGITALE_I", + "PA_BQ_SPORT_M", + "PA_BQ_BASIC_I", + "PA_BQ_BASICQUAD_I", + "PA_BQ_ACCESTV_M", + "PI_WHITELIST" + ], + "hasRightIAccess": true, + "hasRightMAccess": true, + "logos": [ + { + "definitionType": "mobileAppli", + "listLogos": [ + { + "size": "183x183", + "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_france2%2F20180417_153001%2FmobileAppli%2Flogo_183x183.png" + } + ] + }, + { + "definitionType": "mobileAppliDark", + "listLogos": [ + { + "size": "183x183", + "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_france2%2F20180417_153001%2FmobileAppliDark%2Flogo_183x183.png" + } + ] + }, + { + "definitionType": "webTVLogo", + "listLogos": [ + { + "size": "180x96", + "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_france2%2F20180417_153001%2FwebTVLogo%2Flogo_180x96.png" + } + ] + }, + { + "definitionType": "webTVSquare", + "listLogos": [ + { + "size": "150x150", + "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_france2%2F20180417_153001%2FwebTVSquare%2Flogo_150x150.png" + } + ] + } + ], + "mobileData": { + "wifiForbidden": false, + "wifiSecuredOnly": false, + "everywhereChannel": true, + "nomadismAllowed": true, + "drmLevels": [ + { + "definition": "SD", + "securedTerminal": [ + "DRM-HW", + "DRM-SW" + ], + "unsecuredTerminal": [ + "DRM-HW", + "DRM-SW" + ] + }, + { + "definition": "HD", + "securedTerminal": [ + "DRM-HW", + "DRM-SW" + ], + "unsecuredTerminal": [ + "ND" + ] + } + ] + }, + "webdeviceData": { + "nomadismAllowed": true + }, + "technicalChannels": { + "live": [ + { + "techChannelId": "400014", + "type": "CLOUDTV", + "liveTargetURLRelativePath": "livetv_france2_ctv", + "usi": 400014, + "isDRMized": true, + "csa5Disabled": true + } + ], + "npvr": [ + { + "externalId": "livetv_france2_ctv", + "techChannelId": "400014", + "type": "CLOUDTV", + "usi": 400014, + "isDRMized": true, + "antiAdskipping": "DEACTIVATED", + "csa5Disabled": true + } + ], + "startover": [ + { + "externalId": "livetv_france2_ctv", + "techChannelId": "400014", + "type": "CLOUDTV", + "usi": 400014, + "isDRMized": true, + "antiAdskipping": "DEACTIVATED", + "csa5Disabled": true + } + ] + } + }, + { + "name": "FRANCE 3", + "editoChannelId": "livetv_france3", + "lcn": 3, + "idEPG": 80, + "epgAvailable": true, + "epgTextSubstitution": "", + "displayOrder": 3, + "csaCode": 1, + "slogan": "Nos régions nous inspirent, nos régions vou", + "catchupChannelId": "catchuptv_france3", + "newChannel": false, + "roamingBlocked": true, + "allowedDeviceCategories": [ + "M_ANDROID", + "M_IOS", + "M_TABLET_ANDROID", + "M_TABLET_IOS", + "W_AIRPLAY", + "W_CHROMECAST", + "W_LACLETV2", + "W_SMARTTV", + "W_PC", + "S_STB" + ], + "packages": [ + "PA_BQ_PASSACCESTVPREMIUM_M", + "PA_BQ_BASIC_M", + "PA_BQ_RE_TVMAX_M", + "PA_BQ_ACCESTVPREMIUM_M", + "PA_BQ_PAYG_M", + "PA_BQ_MUSIQUE_M", + "PA_BQ_TVDIGITALE_I", + "PA_BQ_SPORT_M", + "PA_BQ_BASIC_I", + "PA_BQ_BASICQUAD_I", + "PA_BQ_ACCESTV_M", + "PI_WHITELIST" + ], + "hasRightIAccess": true, + "hasRightMAccess": true, + "logos": [ + { + "definitionType": "mobileAppli", + "listLogos": [ + { + "size": "183x183", + "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_france3%2F20180131_171239%2FmobileAppli%2Flogo_183x183.png" + } + ] + }, + { + "definitionType": "mobileAppliDark", + "listLogos": [ + { + "size": "183x183", + "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_france3%2F20180131_171239%2FmobileAppliDark%2Flogo_183x183.png" + } + ] + }, + { + "definitionType": "webTVLogo", + "listLogos": [ + { + "size": "180x96", + "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_france3%2F20180131_171239%2FwebTVLogo%2Flogo_180x96.png" + } + ] + }, + { + "definitionType": "webTVSquare", + "listLogos": [ + { + "size": "150x150", + "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_france3%2F20180131_171239%2FwebTVSquare%2Flogo_150x150.png" + } + ] + } + ], + "mobileData": { + "wifiForbidden": false, + "wifiSecuredOnly": false, + "everywhereChannel": true, + "nomadismAllowed": true, + "drmLevels": [ + { + "definition": "SD", + "securedTerminal": [ + "DRM-HW", + "DRM-SW" + ], + "unsecuredTerminal": [ + "DRM-HW", + "DRM-SW" + ] + }, + { + "definition": "HD", + "securedTerminal": [ + "DRM-HW", + "DRM-SW" + ], + "unsecuredTerminal": [ + "ND" + ] + } + ] + }, + "webdeviceData": { + "nomadismAllowed": true + }, + "technicalChannels": { + "live": [ + { + "techChannelId": "400015", + "type": "CLOUDTV", + "liveTargetURLRelativePath": "livetv_france3_ctv", + "usi": 400015, + "isDRMized": true, + "csa5Disabled": true + } + ], + "npvr": [ + { + "externalId": "livetv_france3_ctv", + "techChannelId": "400015", + "type": "CLOUDTV", + "usi": 400015, + "isDRMized": true, + "antiAdskipping": "DEACTIVATED", + "csa5Disabled": true + } + ], + "startover": [ + { + "externalId": "livetv_france3_ctv", + "techChannelId": "400015", + "type": "CLOUDTV", + "usi": 400015, + "isDRMized": true, + "antiAdskipping": "DEACTIVATED", + "csa5Disabled": true + } + ] + } + }, + { + "name": "CANAL+", + "editoChannelId": "livetv_canalplus", + "lcn": 4, + "idEPG": 34, + "epgAvailable": true, + "epgTextSubstitution": "", + "displayOrder": 4, + "csaCode": 1, + "slogan": "La chaîne des rendez-vous incontournables", + "catchupChannelId": "catchuptv_canalplus", + "newChannel": false, + "roamingBlocked": true, + "allowedDeviceCategories": [ + "M_ANDROID", + "M_IOS", + "M_TABLET_ANDROID", + "M_TABLET_IOS", + "W_AIRPLAY", + "W_CHROMECAST", + "W_LACLETV2", + "W_PC", + "W_SMARTTV", + "S_STB" + ], + "packages": [ + "PA_BQ_BASIC_I", + "PI_WHITELIST" + ], + "hasRightIAccess": true, + "hasRightMAccess": false, + "logos": [ + { + "definitionType": "mobileAppli", + "listLogos": [ + { + "size": "183x183", + "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_canalplus%2F20230919_140016%2FmobileAppli%2Flogo_183x183.png" + } + ] + }, + { + "definitionType": "mobileAppliDark", + "listLogos": [ + { + "size": "183x183", + "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_canalplus%2F20230919_140016%2FmobileAppliDark%2Flogo_183x183.png" + } + ] + }, + { + "definitionType": "webTVLogo", + "listLogos": [ + { + "size": "180x96", + "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_canalplus%2F20230919_140016%2FwebTVLogo%2Flogo_180x96.png" + } + ] + }, + { + "definitionType": "webTVSquare", + "listLogos": [ + { + "size": "150x150", + "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_canalplus%2F20230919_140016%2FwebTVSquare%2Flogo_150x150.png" + } + ] + } + ], + "mobileData": { + "wifiForbidden": false, + "wifiSecuredOnly": false, + "everywhereChannel": true, + "nomadismAllowed": true, + "drmLevels": [ + { + "definition": "SD", + "securedTerminal": [ + "DRM-HW", + "DRM-SW" + ], + "unsecuredTerminal": [ + "DRM-HW", + "DRM-SW" + ] + }, + { + "definition": "HD", + "securedTerminal": [ + "ND" + ], + "unsecuredTerminal": [ + "ND" + ] + } + ] + }, + "webdeviceData": { + "nomadismAllowed": true + }, + "technicalChannels": { + "live": [ + { + "techChannelId": "400183", + "type": "CLOUDTV", + "liveTargetURLRelativePath": "livetv_canal_plus_ctv", + "usi": 400183, + "isDRMized": true, + "csa5Disabled": true + } + ], + "npvr": [ + { + "externalId": "livetv_canal_plus_ctv", + "techChannelId": "400183", + "type": "CLOUDTV", + "usi": 400183, + "isDRMized": true, + "antiAdskipping": "DEACTIVATED", + "csa5Disabled": true + } + ], + "startover": [] + } + }, + { + "name": "FRANCE 5", + "editoChannelId": "livetv_france5", + "lcn": 5, + "idEPG": 47, + "epgAvailable": true, + "epgTextSubstitution": "", + "displayOrder": 5, + "csaCode": 1, + "slogan": "France 5, d'intérêt public", + "catchupChannelId": "catchuptv_france5", + "newChannel": false, + "roamingBlocked": true, + "allowedDeviceCategories": [ + "M_ANDROID", + "M_IOS", + "M_TABLET_ANDROID", + "M_TABLET_IOS", + "W_AIRPLAY", + "W_CHROMECAST", + "W_LACLETV2", + "W_SMARTTV", + "W_PC", + "S_STB" + ], + "packages": [ + "PA_BQ_PASSACCESTVPREMIUM_M", + "PA_BQ_BASIC_M", + "PA_BQ_RE_TVMAX_M", + "PA_BQ_ACCESTVPREMIUM_M", + "PA_BQ_PAYG_M", + "PA_BQ_MUSIQUE_M", + "PA_BQ_TVDIGITALE_I", + "PA_BQ_SPORT_M", + "PA_BQ_BASIC_I", + "PA_BQ_BASICQUAD_I", + "PA_BQ_ACCESTV_M", + "PI_WHITELIST" + ], + "hasRightIAccess": true, + "hasRightMAccess": true, + "logos": [ + { + "definitionType": "mobileAppli", + "listLogos": [ + { + "size": "183x183", + "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_france5%2F20180131_171239%2FmobileAppli%2Flogo_183x183.png" + } + ] + }, + { + "definitionType": "mobileAppliDark", + "listLogos": [ + { + "size": "183x183", + "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_france5%2F20180131_171239%2FmobileAppliDark%2Flogo_183x183.png" + } + ] + }, + { + "definitionType": "webTVLogo", + "listLogos": [ + { + "size": "180x96", + "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_france5%2F20180131_171239%2FwebTVLogo%2Flogo_180x96.png" + } + ] + }, + { + "definitionType": "webTVSquare", + "listLogos": [ + { + "size": "150x150", + "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_france5%2F20180131_171239%2FwebTVSquare%2Flogo_150x150.png" + } + ] + } + ], + "mobileData": { + "wifiForbidden": false, + "wifiSecuredOnly": false, + "everywhereChannel": true, + "nomadismAllowed": true, + "drmLevels": [ + { + "definition": "SD", + "securedTerminal": [ + "DRM-HW", + "DRM-SW" + ], + "unsecuredTerminal": [ + "DRM-HW", + "DRM-SW" + ] + }, + { + "definition": "HD", + "securedTerminal": [ + "DRM-HW", + "DRM-SW" + ], + "unsecuredTerminal": [ + "ND" + ] + } + ] + }, + "webdeviceData": { + "nomadismAllowed": true + }, + "technicalChannels": { + "live": [ + { + "techChannelId": "400016", + "type": "CLOUDTV", + "liveTargetURLRelativePath": "livetv_france5_ctv", + "usi": 400016, + "isDRMized": true, + "csa5Disabled": true + } + ], + "npvr": [ + { + "externalId": "livetv_france5_ctv", + "techChannelId": "400016", + "type": "CLOUDTV", + "usi": 400016, + "isDRMized": true, + "antiAdskipping": "DEACTIVATED", + "csa5Disabled": true + } + ], + "startover": [ + { + "externalId": "livetv_france5_ctv", + "techChannelId": "400016", + "type": "CLOUDTV", + "usi": 400016, + "isDRMized": true, + "antiAdskipping": "DEACTIVATED", + "csa5Disabled": true + } + ] + } + }, + { + "name": "M6", + "editoChannelId": "livetv_m6_umts", + "lcn": 6, + "idEPG": 118, + "epgAvailable": true, + "epgTextSubstitution": "", + "displayOrder": 6, + "csaCode": 1, + "slogan": "Continuons de grandir ensemble", + "catchupChannelId": "catchuptv_m6_umts", + "newChannel": false, + "roamingBlocked": true, + "allowedDeviceCategories": [ + "M_ANDROID", + "M_IOS", + "M_TABLET_ANDROID", + "M_TABLET_IOS", + "W_AIRPLAY", + "W_CHROMECAST", + "W_LACLETV2", + "W_SMARTTV", + "W_PC", + "S_STB" + ], + "packages": [ + "PA_BQ_PASSACCESTVPREMIUM_M", + "PA_BQ_BASIC_M", + "PA_BQ_RE_TVMAX_M", + "PA_BQ_ACCESTVPREMIUM_M", + "PA_BQ_PAYG_M", + "PA_BQ_TVDIGITALE_I", + "PA_BQ_SPORT_M", + "PA_BQ_BASIC_I", + "PA_BQ_BASICQUAD_I", + "PA_BQ_ACCESTV_M", + "PI_WHITELIST" + ], + "hasRightIAccess": true, + "hasRightMAccess": true, + "logos": [ + { + "definitionType": "mobileAppli", + "listLogos": [ + { + "size": "183x183", + "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_m6_umts%2F20151026_092415%2FmobileAppli%2Flogo_183x183.png" + } + ] + }, + { + "definitionType": "mobileAppliDark", + "listLogos": [ + { + "size": "183x183", + "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_m6_umts%2F20151026_092415%2FmobileAppliDark%2Flogo_183x183.png" + } + ] + }, + { + "definitionType": "webTVLogo", + "listLogos": [ + { + "size": "180x96", + "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_m6_umts%2F20151026_092415%2FwebTVLogo%2Flogo_180x96.png" + } + ] + }, + { + "definitionType": "webTVSquare", + "listLogos": [ + { + "size": "150x150", + "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_m6_umts%2F20151026_092415%2FwebTVSquare%2Flogo_150x150.png" + } + ] + } + ], + "mobileData": { + "wifiForbidden": false, + "wifiSecuredOnly": false, + "everywhereChannel": true, + "nomadismAllowed": true, + "drmLevels": [ + { + "definition": "SD", + "securedTerminal": [ + "DRM-HW", + "DRM-SW" + ], + "unsecuredTerminal": [ + "DRM-HW", + "DRM-SW" + ] + }, + { + "definition": "HD", + "securedTerminal": [ + "DRM-HW", + "DRM-SW" + ], + "unsecuredTerminal": [ + "ND" + ] + } + ] + }, + "webdeviceData": { + "nomadismAllowed": true + }, + "technicalChannels": { + "live": [ + { + "techChannelId": "400017", + "type": "CLOUDTV", + "liveTargetURLRelativePath": "livetv_m6_ctv", + "usi": 400017, + "isDRMized": true, + "csa5Disabled": true + } + ], + "npvr": [ + { + "externalId": "livetv_m6_ctv", + "techChannelId": "400017", + "type": "CLOUDTV", + "usi": 400017, + "isDRMized": true, + "antiAdskipping": "DEACTIVATED", + "csa5Disabled": true + } + ], + "startover": [ + { + "externalId": "livetv_m6_ctv", + "techChannelId": "400017", + "type": "CLOUDTV", + "usi": 400017, + "isDRMized": true, + "antiAdskipping": "DEACTIVATED", + "csa5Disabled": true + } + ] + } + }, + { + "name": "ARTE", + "editoChannelId": "livetv_arte", + "lcn": 7, + "idEPG": 111, + "epgAvailable": true, + "epgTextSubstitution": "", + "displayOrder": 7, + "csaCode": 1, + "slogan": "La télé qui vous allume", + "catchupChannelId": "catchuptv_arte", + "newChannel": false, + "roamingBlocked": true, + "allowedDeviceCategories": [ + "M_ANDROID", + "M_IOS", + "M_TABLET_ANDROID", + "M_TABLET_IOS", + "W_AIRPLAY", + "W_CHROMECAST", + "W_LACLETV2", + "W_SMARTTV", + "W_PC", + "S_STB" + ], + "packages": [ + "PA_BQ_PASSACCESTVPREMIUM_M", + "PA_BQ_BASIC_M", + "PA_BQ_RE_TVMAX_M", + "PA_BQ_ACCESTVPREMIUM_M", + "PA_BQ_PAYG_M", + "PA_BQ_MUSIQUE_M", + "PA_BQ_TVDIGITALE_I", + "PA_BQ_SPORT_M", + "PA_BQ_BASIC_I", + "PA_BQ_BASICQUAD_I", + "PA_BQ_ACCESTV_M", + "PI_WHITELIST" + ], + "hasRightIAccess": true, + "hasRightMAccess": true, + "logos": [ + { + "definitionType": "mobileAppli", + "listLogos": [ + { + "size": "183x183", + "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_arte%2F20151026_092415%2FmobileAppli%2Flogo_183x183.png" + } + ] + }, + { + "definitionType": "mobileAppliDark", + "listLogos": [ + { + "size": "183x183", + "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_arte%2F20151026_092415%2FmobileAppliDark%2Flogo_183x183.png" + } + ] + }, + { + "definitionType": "webTVLogo", + "listLogos": [ + { + "size": "180x96", + "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_arte%2F20151026_092415%2FwebTVLogo%2Flogo_180x96.png" + } + ] + }, + { + "definitionType": "webTVSquare", + "listLogos": [ + { + "size": "150x150", + "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_arte%2F20151026_092415%2FwebTVSquare%2Flogo_150x150.png" + } + ] + } + ], + "mobileData": { + "wifiForbidden": false, + "wifiSecuredOnly": false, + "everywhereChannel": true, + "nomadismAllowed": true, + "drmLevels": [ + { + "definition": "SD", + "securedTerminal": [ + "DRM-HW", + "DRM-SW" + ], + "unsecuredTerminal": [ + "DRM-HW", + "DRM-SW" + ] + }, + { + "definition": "HD", + "securedTerminal": [ + "DRM-HW", + "DRM-SW" + ], + "unsecuredTerminal": [ + "ND" + ] + } + ] + }, + "webdeviceData": { + "nomadismAllowed": true + }, + "technicalChannels": { + "live": [ + { + "techChannelId": "400018", + "type": "CLOUDTV", + "liveTargetURLRelativePath": "livetv_arte_ctv", + "usi": 400018, + "isDRMized": true, + "csa5Disabled": true + } + ], + "npvr": [ + { + "externalId": "livetv_arte_ctv", + "techChannelId": "400018", + "type": "CLOUDTV", + "usi": 400018, + "isDRMized": true, + "antiAdskipping": "DEACTIVATED", + "csa5Disabled": true + } + ], + "startover": [ + { + "externalId": "livetv_arte_ctv", + "techChannelId": "400018", + "type": "CLOUDTV", + "usi": 400018, + "isDRMized": true, + "antiAdskipping": "DEACTIVATED", + "csa5Disabled": true + } + ] + } + }, + { + "name": "C8", + "editoChannelId": "livetv_direct8", + "lcn": 8, + "idEPG": 445, + "epgAvailable": true, + "epgTextSubstitution": "", + "displayOrder": 8, + "csaCode": 1, + "slogan": ".", + "catchupChannelId": "catchuptv_c8", + "newChannel": false, + "roamingBlocked": true, + "allowedDeviceCategories": [ + "M_ANDROID", + "M_IOS", + "M_TABLET_ANDROID", + "M_TABLET_IOS", + "W_AIRPLAY", + "W_CHROMECAST", + "W_LACLETV2", + "W_SMARTTV", + "W_PC", + "S_STB" + ], + "packages": [ + "PA_BQ_PASSACCESTVPREMIUM_M", + "PA_BQ_BASIC_M", + "PA_BQ_RE_TVMAX_M", + "PA_BQ_ACCESTVPREMIUM_M", + "PA_BQ_PAYG_M", + "PA_BQ_TVDIGITALE_I", + "PA_BQ_SPORT_M", + "PA_BQ_BASIC_I", + "PA_BQ_BASICQUAD_I", + "PA_BQ_ACCESTV_M", + "PI_WHITELIST" + ], + "hasRightIAccess": true, + "hasRightMAccess": true, + "logos": [ + { + "definitionType": "mobileAppli", + "listLogos": [ + { + "size": "183x183", + "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_direct8%2F20180417_143126%2FmobileAppli%2Flogo_183x183.png" + } + ] + }, + { + "definitionType": "mobileAppliDark", + "listLogos": [ + { + "size": "183x183", + "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_direct8%2F20180417_143126%2FmobileAppliDark%2Flogo_183x183.png" + } + ] + }, + { + "definitionType": "webTVLogo", + "listLogos": [ + { + "size": "180x96", + "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_direct8%2F20180417_143126%2FwebTVLogo%2Flogo_180x96.png" + } + ] + }, + { + "definitionType": "webTVSquare", + "listLogos": [ + { + "size": "150x150", + "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_direct8%2F20180417_143126%2FwebTVSquare%2Flogo_150x150.png" + } + ] + } + ], + "mobileData": { + "wifiForbidden": false, + "wifiSecuredOnly": false, + "everywhereChannel": true, + "nomadismAllowed": true, + "drmLevels": [ + { + "definition": "SD", + "securedTerminal": [ + "DRM-HW", + "DRM-SW" + ], + "unsecuredTerminal": [ + "DRM-HW", + "DRM-SW" + ] + }, + { + "definition": "HD", + "securedTerminal": [ + "DRM-HW", + "DRM-SW" + ], + "unsecuredTerminal": [ + "ND" + ] + } + ] + }, + "webdeviceData": { + "nomadismAllowed": true + }, + "technicalChannels": { + "live": [ + { + "techChannelId": "400019", + "type": "CLOUDTV", + "liveTargetURLRelativePath": "livetv_c8_ctv", + "usi": 400019, + "isDRMized": true, + "csa5Disabled": true + } + ], + "npvr": [ + { + "externalId": "livetv_c8_ctv", + "techChannelId": "400019", + "type": "CLOUDTV", + "usi": 400019, + "isDRMized": true, + "antiAdskipping": "DEACTIVATED", + "csa5Disabled": true + } + ], + "startover": [ + { + "externalId": "livetv_c8_ctv", + "techChannelId": "400019", + "type": "CLOUDTV", + "usi": 400019, + "isDRMized": true, + "antiAdskipping": "DEACTIVATED", + "csa5Disabled": true + } + ] + } + }, + { + "name": "W9", + "editoChannelId": "livetv_w9", + "lcn": 9, + "idEPG": 119, + "epgAvailable": true, + "epgTextSubstitution": "", + "displayOrder": 9, + "csaCode": 1, + "slogan": ".", + "catchupChannelId": "catchuptv_w9", + "newChannel": false, + "roamingBlocked": true, + "allowedDeviceCategories": [ + "M_ANDROID", + "M_IOS", + "M_TABLET_ANDROID", + "M_TABLET_IOS", + "W_AIRPLAY", + "W_CHROMECAST", + "W_LACLETV2", + "W_SMARTTV", + "W_PC", + "S_STB" + ], + "packages": [ + "PA_BQ_PASSACCESTVPREMIUM_M", + "PA_BQ_BASIC_M", + "PA_BQ_RE_TVMAX_M", + "PA_BQ_ACCESTVPREMIUM_M", + "PA_BQ_PAYG_M", + "PA_BQ_TVDIGITALE_I", + "PA_BQ_SPORT_M", + "PA_BQ_BASIC_I", + "PA_BQ_BASICQUAD_I", + "PA_BQ_ACCESTV_M", + "PI_WHITELIST" + ], + "hasRightIAccess": true, + "hasRightMAccess": true, + "logos": [ + { + "definitionType": "mobileAppli", + "listLogos": [ + { + "size": "183x183", + "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_w9%2F20151026_092415%2FmobileAppli%2Flogo_183x183.png" + } + ] + }, + { + "definitionType": "mobileAppliDark", + "listLogos": [ + { + "size": "183x183", + "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_w9%2F20151026_092415%2FmobileAppliDark%2Flogo_183x183.png" + } + ] + }, + { + "definitionType": "webTVLogo", + "listLogos": [ + { + "size": "180x96", + "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_w9%2F20151026_092415%2FwebTVLogo%2Flogo_180x96.png" + } + ] + }, + { + "definitionType": "webTVSquare", + "listLogos": [ + { + "size": "150x150", + "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_w9%2F20151026_092415%2FwebTVSquare%2Flogo_150x150.png" + } + ] + } + ], + "mobileData": { + "wifiForbidden": false, + "wifiSecuredOnly": false, + "everywhereChannel": true, + "nomadismAllowed": true, + "drmLevels": [ + { + "definition": "SD", + "securedTerminal": [ + "DRM-HW", + "DRM-SW" + ], + "unsecuredTerminal": [ + "DRM-HW", + "DRM-SW" + ] + }, + { + "definition": "HD", + "securedTerminal": [ + "DRM-HW", + "DRM-SW" + ], + "unsecuredTerminal": [ + "ND" + ] + } + ] + }, + "webdeviceData": { + "nomadismAllowed": true + }, + "technicalChannels": { + "live": [ + { + "techChannelId": "400020", + "type": "CLOUDTV", + "liveTargetURLRelativePath": "livetv_w9_ctv", + "usi": 400020, + "isDRMized": true, + "csa5Disabled": true + } + ], + "npvr": [ + { + "externalId": "livetv_w9_ctv", + "techChannelId": "400020", + "type": "CLOUDTV", + "usi": 400020, + "isDRMized": true, + "antiAdskipping": "DEACTIVATED", + "csa5Disabled": true + } + ], + "startover": [ + { + "externalId": "livetv_w9_ctv", + "techChannelId": "400020", + "type": "CLOUDTV", + "usi": 400020, + "isDRMized": true, + "antiAdskipping": "DEACTIVATED", + "csa5Disabled": true + } + ] + } + }, + { + "name": "TMC", + "editoChannelId": "livetv_tmc", + "lcn": 10, + "idEPG": 195, + "epgAvailable": true, + "epgTextSubstitution": "", + "displayOrder": 10, + "csaCode": 1, + "slogan": "Toujours plus proche de vous", + "catchupChannelId": "catchuptv_tmc", + "newChannel": false, + "roamingBlocked": true, + "allowedDeviceCategories": [ + "M_ANDROID", + "M_IOS", + "M_TABLET_ANDROID", + "M_TABLET_IOS", + "W_AIRPLAY", + "W_CHROMECAST", + "W_LACLETV2", + "W_SMARTTV", + "W_PC", + "S_STB" + ], + "packages": [ + "PA_BQ_PASSACCESTVPREMIUM_M", + "PA_BQ_BASIC_M", + "PA_BQ_RE_TVMAX_M", + "PA_BQ_ACCESTVPREMIUM_M", + "PA_BQ_PAYG_M", + "PA_BQ_TVDIGITALE_I", + "PA_BQ_SPORT_M", + "PA_BQ_BASIC_I", + "PA_BQ_BASICQUAD_I", + "PA_BQ_ACCESTV_M", + "PI_WHITELIST" + ], + "hasRightIAccess": true, + "hasRightMAccess": true, + "logos": [ + { + "definitionType": "mobileAppli", + "listLogos": [ + { + "size": "183x183", + "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_tmc%2F20180417_113022%2FmobileAppli%2Flogo_183x183.png" + } + ] + }, + { + "definitionType": "mobileAppliDark", + "listLogos": [ + { + "size": "183x183", + "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_tmc%2F20180417_113022%2FmobileAppliDark%2Flogo_183x183.png" + } + ] + }, + { + "definitionType": "webTVLogo", + "listLogos": [ + { + "size": "180x96", + "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_tmc%2F20180417_113022%2FwebTVLogo%2Flogo_180x96.png" + } + ] + }, + { + "definitionType": "webTVSquare", + "listLogos": [ + { + "size": "150x150", + "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_tmc%2F20180417_113022%2FwebTVSquare%2Flogo_150x150.png" + } + ] + } + ], + "mobileData": { + "wifiForbidden": false, + "wifiSecuredOnly": false, + "everywhereChannel": true, + "nomadismAllowed": true, + "drmLevels": [ + { + "definition": "SD", + "securedTerminal": [ + "DRM-HW", + "DRM-SW" + ], + "unsecuredTerminal": [ + "DRM-HW", + "DRM-SW" + ] + }, + { + "definition": "HD", + "securedTerminal": [ + "DRM-HW", + "DRM-SW" + ], + "unsecuredTerminal": [ + "ND" + ] + } + ] + }, + "webdeviceData": { + "nomadismAllowed": true + }, + "technicalChannels": { + "live": [ + { + "techChannelId": "400021", + "type": "CLOUDTV", + "liveTargetURLRelativePath": "livetv_tmc_ctv", + "usi": 400021, + "isDRMized": true, + "csa5Disabled": true + } + ], + "npvr": [ + { + "externalId": "livetv_tmc_ctv", + "techChannelId": "400021", + "type": "CLOUDTV", + "usi": 400021, + "isDRMized": true, + "antiAdskipping": "DEACTIVATED", + "csa5Disabled": true + } + ], + "startover": [ + { + "externalId": "livetv_tmc_ctv", + "techChannelId": "400021", + "type": "CLOUDTV", + "usi": 400021, + "isDRMized": true, + "antiAdskipping": "DEACTIVATED", + "csa5Disabled": true + } + ] + } + }, + { + "name": "TFX", + "editoChannelId": "livetv_nt1_umts", + "lcn": 11, + "idEPG": 446, + "epgAvailable": true, + "epgTextSubstitution": "", + "displayOrder": 11, + "csaCode": 1, + "slogan": "Chaîne addictive", + "catchupChannelId": "catchuptv_nt1", + "newChannel": false, + "roamingBlocked": true, + "allowedDeviceCategories": [ + "M_ANDROID", + "M_IOS", + "M_TABLET_ANDROID", + "M_TABLET_IOS", + "W_AIRPLAY", + "W_CHROMECAST", + "W_LACLETV2", + "W_SMARTTV", + "W_PC", + "S_STB" + ], + "packages": [ + "PA_BQ_PASSACCESTVPREMIUM_M", + "PA_BQ_BASIC_M", + "PA_BQ_RE_TVMAX_M", + "PA_BQ_ACCESTVPREMIUM_M", + "PA_BQ_PAYG_M", + "PA_BQ_TVDIGITALE_I", + "PA_BQ_SPORT_M", + "PA_BQ_BASIC_I", + "PA_BQ_BASICQUAD_I", + "PA_BQ_ACCESTV_M", + "PI_WHITELIST" + ], + "hasRightIAccess": true, + "hasRightMAccess": true, + "logos": [ + { + "definitionType": "mobileAppli", + "listLogos": [ + { + "size": "183x183", + "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_nt1_umts%2F20180129_113538%2FmobileAppli%2Flogo_183x183.png" + } + ] + }, + { + "definitionType": "mobileAppliDark", + "listLogos": [ + { + "size": "183x183", + "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_nt1_umts%2F20180129_113538%2FmobileAppliDark%2Flogo_183x183.png" + } + ] + }, + { + "definitionType": "webTVLogo", + "listLogos": [ + { + "size": "180x96", + "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_nt1_umts%2F20180129_113538%2FwebTVLogo%2Flogo_180x96.png" + } + ] + }, + { + "definitionType": "webTVSquare", + "listLogos": [ + { + "size": "150x150", + "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_nt1_umts%2F20180129_113538%2FwebTVSquare%2Flogo_150x150.png" + } + ] + } + ], + "mobileData": { + "wifiForbidden": false, + "wifiSecuredOnly": false, + "everywhereChannel": true, + "nomadismAllowed": true, + "drmLevels": [ + { + "definition": "SD", + "securedTerminal": [ + "DRM-HW", + "DRM-SW" + ], + "unsecuredTerminal": [ + "DRM-HW", + "DRM-SW" + ] + }, + { + "definition": "HD", + "securedTerminal": [ + "DRM-HW", + "DRM-SW" + ], + "unsecuredTerminal": [ + "ND" + ] + } + ] + }, + "webdeviceData": { + "nomadismAllowed": true + }, + "technicalChannels": { + "live": [ + { + "techChannelId": "400030", + "type": "CLOUDTV", + "liveTargetURLRelativePath": "livetv_tfx_ctv", + "usi": 400030, + "isDRMized": true, + "csa5Disabled": true + } + ], + "npvr": [ + { + "externalId": "livetv_tfx_ctv", + "techChannelId": "400030", + "type": "CLOUDTV", + "usi": 400030, + "isDRMized": true, + "antiAdskipping": "DEACTIVATED", + "csa5Disabled": true + } + ], + "startover": [ + { + "externalId": "livetv_tfx_ctv", + "techChannelId": "400030", + "type": "CLOUDTV", + "usi": 400030, + "isDRMized": true, + "antiAdskipping": "DEACTIVATED", + "csa5Disabled": true + } + ] + } + }, + { + "name": "NRJ12", + "editoChannelId": "livetv_nrj12", + "lcn": 12, + "idEPG": 444, + "epgAvailable": true, + "epgTextSubstitution": "", + "displayOrder": 12, + "csaCode": 1, + "slogan": "Tout l'esprit NRJ dans une télé", + "catchupChannelId": "catchuptv_nrj12", + "newChannel": false, + "roamingBlocked": true, + "allowedDeviceCategories": [ + "M_ANDROID", + "M_IOS", + "M_TABLET_ANDROID", + "M_TABLET_IOS", + "W_AIRPLAY", + "W_CHROMECAST", + "W_LACLETV2", + "W_SMARTTV", + "W_PC", + "S_STB" + ], + "packages": [ + "PA_BQ_PASSACCESTVPREMIUM_M", + "PA_BQ_BASIC_M", + "PA_BQ_RE_TVMAX_M", + "PA_BQ_ACCESTVPREMIUM_M", + "PA_BQ_TVDIGITALE_I", + "PA_BQ_SPORT_M", + "PA_BQ_BASIC_I", + "PA_BQ_BASICQUAD_I", + "PA_BQ_ACCESTV_M", + "PI_WHITELIST" + ], + "hasRightIAccess": true, + "hasRightMAccess": true, + "logos": [ + { + "definitionType": "mobileAppli", + "listLogos": [ + { + "size": "183x183", + "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_nrj12%2F20151026_092415%2FmobileAppli%2Flogo_183x183.png" + } + ] + }, + { + "definitionType": "mobileAppliDark", + "listLogos": [ + { + "size": "183x183", + "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_nrj12%2F20151026_092415%2FmobileAppliDark%2Flogo_183x183.png" + } + ] + }, + { + "definitionType": "webTVLogo", + "listLogos": [ + { + "size": "180x96", + "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_nrj12%2F20151026_092415%2FwebTVLogo%2Flogo_180x96.png" + } + ] + }, + { + "definitionType": "webTVSquare", + "listLogos": [ + { + "size": "150x150", + "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_nrj12%2F20151026_092415%2FwebTVSquare%2Flogo_150x150.png" + } + ] + } + ], + "mobileData": { + "wifiForbidden": false, + "wifiSecuredOnly": false, + "everywhereChannel": true, + "nomadismAllowed": true, + "drmLevels": [ + { + "definition": "SD", + "securedTerminal": [ + "DRM-HW", + "DRM-SW" + ], + "unsecuredTerminal": [ + "DRM-HW", + "DRM-SW" + ] + }, + { + "definition": "HD", + "securedTerminal": [ + "DRM-HW", + "DRM-SW" + ], + "unsecuredTerminal": [ + "ND" + ] + } + ] + }, + "webdeviceData": { + "nomadismAllowed": true + }, + "technicalChannels": { + "live": [ + { + "techChannelId": "400031", + "type": "CLOUDTV", + "liveTargetURLRelativePath": "livetv_nrj12_ctv", + "usi": 400031, + "isDRMized": true, + "csa5Disabled": true + } + ], + "npvr": [ + { + "externalId": "livetv_nrj12_ctv", + "techChannelId": "400031", + "type": "CLOUDTV", + "usi": 400031, + "isDRMized": true, + "antiAdskipping": "DEACTIVATED", + "csa5Disabled": true + } + ], + "startover": [ + { + "externalId": "livetv_nrj12_ctv", + "techChannelId": "400031", + "type": "CLOUDTV", + "usi": 400031, + "isDRMized": true, + "antiAdskipping": "DEACTIVATED", + "csa5Disabled": true + } + ] + } + }, + { + "name": "LCP/PS", + "editoChannelId": "livetv_lcp_umts", + "lcn": 13, + "idEPG": 234, + "epgAvailable": true, + "epgTextSubstitution": "", + "displayOrder": 13, + "csaCode": 1, + "slogan": "La chaîne parlementaire", + "catchupChannelId": "catchuptv_lcp_ps", + "newChannel": false, + "roamingBlocked": true, + "allowedDeviceCategories": [ + "M_ANDROID", + "M_IOS", + "M_TABLET_ANDROID", + "M_TABLET_IOS", + "W_AIRPLAY", + "W_CHROMECAST", + "W_LACLETV2", + "W_SMARTTV", + "W_PC", + "S_STB" + ], + "packages": [ + "PA_BQ_PASSACCESTVPREMIUM_M", + "PA_BQ_BASIC_M", + "PA_BQ_RE_TVMAX_M", + "PA_BQ_ACCESTVPREMIUM_M", + "PA_BQ_PAYG_M", + "PA_BQ_MUSIQUE_M", + "PA_BQ_TVDIGITALE_I", + "PA_BQ_SPORT_M", + "PA_BQ_BASIC_I", + "PA_BQ_BASICQUAD_I", + "PA_BQ_ACCESTV_M", + "PI_WHITELIST" + ], + "hasRightIAccess": true, + "hasRightMAccess": true, + "logos": [ + { + "definitionType": "mobileAppli", + "listLogos": [ + { + "size": "183x183", + "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_lcp_umts%2F20191106_163032%2FmobileAppli%2Flogo_183x183.png" + } + ] + }, + { + "definitionType": "mobileAppliDark", + "listLogos": [ + { + "size": "183x183", + "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_lcp_umts%2F20191106_163032%2FmobileAppliDark%2Flogo_183x183.png" + } + ] + }, + { + "definitionType": "webTVLogo", + "listLogos": [ + { + "size": "180x96", + "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_lcp_umts%2F20191106_163032%2FwebTVLogo%2Flogo_180x96.png" + } + ] + }, + { + "definitionType": "webTVSquare", + "listLogos": [ + { + "size": "150x150", + "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_lcp_umts%2F20191106_163032%2FwebTVSquare%2Flogo_150x150.png" + } + ] + } + ], + "mobileData": { + "wifiForbidden": false, + "wifiSecuredOnly": false, + "everywhereChannel": true, + "nomadismAllowed": true, + "drmLevels": [ + { + "definition": "SD", + "securedTerminal": [ + "DRM-HW", + "DRM-SW" + ], + "unsecuredTerminal": [ + "DRM-HW", + "DRM-SW" + ] + }, + { + "definition": "HD", + "securedTerminal": [ + "DRM-HW", + "DRM-SW" + ], + "unsecuredTerminal": [ + "ND" + ] + } + ] + }, + "webdeviceData": { + "nomadismAllowed": true + }, + "technicalChannels": { + "live": [ + { + "techChannelId": "400071", + "type": "CLOUDTV", + "liveTargetURLRelativePath": "livetv_lcp_ps_ctv", + "usi": 400071, + "isDRMized": true, + "csa5Disabled": true + } + ], + "npvr": [ + { + "externalId": "livetv_lcp_ps_ctv", + "techChannelId": "400071", + "type": "CLOUDTV", + "usi": 400071, + "isDRMized": true, + "antiAdskipping": "DEACTIVATED", + "csa5Disabled": true + } + ], + "startover": [ + { + "externalId": "livetv_lcp_ps_ctv", + "techChannelId": "400071", + "type": "CLOUDTV", + "usi": 400071, + "isDRMized": true, + "antiAdskipping": "DEACTIVATED", + "csa5Disabled": true + } + ] + } + }, + { + "name": "FRANCE 4", + "editoChannelId": "livetv_france4", + "lcn": 14, + "idEPG": 78, + "epgAvailable": true, + "epgTextSubstitution": "", + "displayOrder": 14, + "csaCode": 1, + "slogan": "L'esprit positif", + "catchupChannelId": "catchuptv_france4", + "newChannel": false, + "roamingBlocked": true, + "allowedDeviceCategories": [ + "M_ANDROID", + "M_IOS", + "M_TABLET_ANDROID", + "M_TABLET_IOS", + "W_AIRPLAY", + "W_CHROMECAST", + "W_LACLETV2", + "W_SMARTTV", + "W_PC", + "S_STB" + ], + "packages": [ + "PA_BQ_PASSACCESTVPREMIUM_M", + "PA_BQ_BASIC_M", + "PA_BQ_RE_TVMAX_M", + "PA_BQ_ACCESTVPREMIUM_M", + "PA_BQ_PAYG_M", + "PA_BQ_MUSIQUE_M", + "PA_BQ_TVDIGITALE_I", + "PA_BQ_SPORT_M", + "PA_BQ_BASIC_I", + "PA_BQ_BASICQUAD_I", + "PA_BQ_ACCESTV_M", + "PI_WHITELIST" + ], + "hasRightIAccess": true, + "hasRightMAccess": true, + "logos": [ + { + "definitionType": "mobileAppli", + "listLogos": [ + { + "size": "183x183", + "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_france4%2F20180131_171239%2FmobileAppli%2Flogo_183x183.png" + } + ] + }, + { + "definitionType": "mobileAppliDark", + "listLogos": [ + { + "size": "183x183", + "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_france4%2F20180131_171239%2FmobileAppliDark%2Flogo_183x183.png" + } + ] + }, + { + "definitionType": "webTVLogo", + "listLogos": [ + { + "size": "180x96", + "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_france4%2F20180131_171239%2FwebTVLogo%2Flogo_180x96.png" + } + ] + }, + { + "definitionType": "webTVSquare", + "listLogos": [ + { + "size": "150x150", + "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_france4%2F20180131_171239%2FwebTVSquare%2Flogo_150x150.png" + } + ] + } + ], + "mobileData": { + "wifiForbidden": false, + "wifiSecuredOnly": false, + "everywhereChannel": true, + "nomadismAllowed": true, + "drmLevels": [ + { + "definition": "SD", + "securedTerminal": [ + "DRM-HW", + "DRM-SW" + ], + "unsecuredTerminal": [ + "DRM-HW", + "DRM-SW" + ] + }, + { + "definition": "HD", + "securedTerminal": [ + "DRM-HW", + "DRM-SW" + ], + "unsecuredTerminal": [ + "ND" + ] + } + ] + }, + "webdeviceData": { + "nomadismAllowed": true + }, + "technicalChannels": { + "live": [ + { + "techChannelId": "400032", + "type": "CLOUDTV", + "liveTargetURLRelativePath": "livetv_france_4_ctv", + "usi": 400032, + "isDRMized": true, + "csa5Disabled": true + } + ], + "npvr": [ + { + "externalId": "livetv_france_4_ctv", + "techChannelId": "400032", + "type": "CLOUDTV", + "usi": 400032, + "isDRMized": true, + "antiAdskipping": "DEACTIVATED", + "csa5Disabled": true + } + ], + "startover": [ + { + "externalId": "livetv_france_4_ctv", + "techChannelId": "400032", + "type": "CLOUDTV", + "usi": 400032, + "isDRMized": true, + "antiAdskipping": "DEACTIVATED", + "csa5Disabled": true + } + ] + } + }, + { + "name": "BFM TV", + "editoChannelId": "livetv_bfmtv", + "lcn": 15, + "idEPG": 481, + "epgAvailable": true, + "epgTextSubstitution": "", + "displayOrder": 15, + "csaCode": 1, + "slogan": "Première chaîne d'info de France", + "catchupChannelId": "catchuptv_bfmtv", + "newChannel": false, + "roamingBlocked": true, + "allowedDeviceCategories": [ + "M_ANDROID", + "M_IOS", + "M_TABLET_ANDROID", + "M_TABLET_IOS", + "W_AIRPLAY", + "W_CHROMECAST", + "W_LACLETV2", + "W_SMARTTV", + "W_PC", + "S_STB" + ], + "packages": [ + "PA_BQ_PASSACCESTVPREMIUM_M", + "PA_BQ_BASIC_M", + "PA_BQ_RE_TVMAX_M", + "PA_BQ_ACCESTVPREMIUM_M", + "PA_BQ_PAYG_M", + "PA_BQ_TVDIGITALE_I", + "PA_BQ_SPORT_M", + "PA_BQ_BASIC_I", + "PA_BQ_BASICQUAD_I", + "PA_BQ_ACCESTV_M", + "PI_WHITELIST" + ], + "hasRightIAccess": true, + "hasRightMAccess": true, + "logos": [ + { + "definitionType": "mobileAppli", + "listLogos": [ + { + "size": "183x183", + "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_bfmtv%2F20180417_144733%2FmobileAppli%2Flogo_183x183.png" + } + ] + }, + { + "definitionType": "mobileAppliDark", + "listLogos": [ + { + "size": "183x183", + "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_bfmtv%2F20180417_144733%2FmobileAppliDark%2Flogo_183x183.png" + } + ] + }, + { + "definitionType": "webTVLogo", + "listLogos": [ + { + "size": "180x96", + "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_bfmtv%2F20180417_144733%2FwebTVLogo%2Flogo_180x96.png" + } + ] + }, + { + "definitionType": "webTVSquare", + "listLogos": [ + { + "size": "150x150", + "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_bfmtv%2F20180417_144733%2FwebTVSquare%2Flogo_150x150.png" + } + ] + } + ], + "mobileData": { + "wifiForbidden": false, + "wifiSecuredOnly": false, + "everywhereChannel": true, + "nomadismAllowed": true, + "drmLevels": [ + { + "definition": "SD", + "securedTerminal": [ + "DRM-HW", + "DRM-SW" + ], + "unsecuredTerminal": [ + "DRM-HW", + "DRM-SW" + ] + }, + { + "definition": "HD", + "securedTerminal": [ + "DRM-HW", + "DRM-SW" + ], + "unsecuredTerminal": [ + "ND" + ] + } + ] + }, + "webdeviceData": { + "nomadismAllowed": true + }, + "technicalChannels": { + "live": [ + { + "techChannelId": "400072", + "type": "CLOUDTV", + "liveTargetURLRelativePath": "livetv_bfm_tv_ctv", + "usi": 400072, + "isDRMized": true, + "csa5Disabled": true + } + ], + "npvr": [ + { + "externalId": "livetv_bfm_tv_ctv", + "techChannelId": "400072", + "type": "CLOUDTV", + "usi": 400072, + "isDRMized": true, + "antiAdskipping": "DEACTIVATED", + "csa5Disabled": true + } + ], + "startover": [ + { + "externalId": "livetv_bfm_tv_ctv", + "techChannelId": "400072", + "type": "CLOUDTV", + "usi": 400072, + "isDRMized": true, + "antiAdskipping": "DEACTIVATED", + "csa5Disabled": true + } + ] + } + }, + { + "name": "CNEWS", + "editoChannelId": "livetv_itelevision", + "lcn": 16, + "idEPG": 226, + "epgAvailable": true, + "epgTextSubstitution": "", + "displayOrder": 16, + "csaCode": 1, + "slogan": ".", + "catchupChannelId": "", + "newChannel": true, + "roamingBlocked": true, + "allowedDeviceCategories": [ + "M_ANDROID", + "M_IOS", + "M_TABLET_ANDROID", + "M_TABLET_IOS", + "W_AIRPLAY", + "W_CHROMECAST", + "W_LACLETV2", + "W_SMARTTV", + "W_PC", + "S_STB" + ], + "packages": [ + "PA_BQ_PASSACCESTVPREMIUM_M", + "PA_BQ_BASIC_M", + "PA_BQ_RE_TVMAX_M", + "PA_BQ_ACCESTVPREMIUM_M", + "PA_BQ_PAYG_M", + "PA_BQ_TVDIGITALE_I", + "PA_BQ_SPORT_M", + "PA_BQ_BASIC_I", + "PA_BQ_BASICQUAD_I", + "PA_BQ_ACCESTV_M", + "PI_WHITELIST" + ], + "hasRightIAccess": true, + "hasRightMAccess": true, + "logos": [ + { + "definitionType": "mobileAppli", + "listLogos": [ + { + "size": "183x183", + "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_itelevision%2F20180417_140029%2FmobileAppli%2Flogo_183x183.png" + } + ] + }, + { + "definitionType": "mobileAppliDark", + "listLogos": [ + { + "size": "183x183", + "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_itelevision%2F20180417_140029%2FmobileAppliDark%2Flogo_183x183.png" + } + ] + }, + { + "definitionType": "webTVLogo", + "listLogos": [ + { + "size": "180x96", + "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_itelevision%2F20180417_140029%2FwebTVLogo%2Flogo_180x96.png" + } + ] + }, + { + "definitionType": "webTVSquare", + "listLogos": [ + { + "size": "150x150", + "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_itelevision%2F20180417_140029%2FwebTVSquare%2Flogo_150x150.png" + } + ] + } + ], + "mobileData": { + "wifiForbidden": false, + "wifiSecuredOnly": false, + "everywhereChannel": true, + "nomadismAllowed": true, + "drmLevels": [ + { + "definition": "SD", + "securedTerminal": [ + "DRM-HW", + "DRM-SW" + ], + "unsecuredTerminal": [ + "DRM-HW", + "DRM-SW" + ] + }, + { + "definition": "HD", + "securedTerminal": [ + "DRM-HW", + "DRM-SW" + ], + "unsecuredTerminal": [ + "ND" + ] + } + ] + }, + "webdeviceData": { + "nomadismAllowed": true + }, + "technicalChannels": { + "live": [ + { + "techChannelId": "400073", + "type": "CLOUDTV", + "liveTargetURLRelativePath": "livetv_cnews_ctv", + "usi": 400073, + "isDRMized": true, + "csa5Disabled": true + } + ], + "npvr": [ + { + "externalId": "livetv_cnews_ctv", + "techChannelId": "400073", + "type": "CLOUDTV", + "usi": 400073, + "isDRMized": true, + "antiAdskipping": "DEACTIVATED", + "csa5Disabled": true + } + ], + "startover": [ + { + "externalId": "livetv_cnews_ctv", + "techChannelId": "400073", + "type": "CLOUDTV", + "usi": 400073, + "isDRMized": true, + "antiAdskipping": "DEACTIVATED", + "csa5Disabled": true + } + ] + } + }, + { + "name": "CSTAR", + "editoChannelId": "livetv_directstar", + "lcn": 17, + "idEPG": 458, + "epgAvailable": true, + "epgTextSubstitution": "", + "displayOrder": 17, + "csaCode": 1, + "slogan": ".", + "catchupChannelId": "catchuptv_cstar", + "newChannel": false, + "roamingBlocked": true, + "allowedDeviceCategories": [ + "M_ANDROID", + "M_IOS", + "M_TABLET_ANDROID", + "M_TABLET_IOS", + "W_AIRPLAY", + "W_CHROMECAST", + "W_LACLETV2", + "W_SMARTTV", + "W_PC", + "S_STB" + ], + "packages": [ + "PA_BQ_PASSACCESTVPREMIUM_M", + "PA_BQ_BASIC_M", + "PA_BQ_RE_TVMAX_M", + "PA_BQ_ACCESTVPREMIUM_M", + "PA_BQ_PAYG_M", + "PA_BQ_TVDIGITALE_I", + "PA_BQ_SPORT_M", + "PA_BQ_BASIC_I", + "PA_BQ_BASICQUAD_I", + "PA_BQ_ACCESTV_M", + "PI_WHITELIST" + ], + "hasRightIAccess": true, + "hasRightMAccess": true, + "logos": [ + { + "definitionType": "mobileAppli", + "listLogos": [ + { + "size": "183x183", + "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_directstar%2F20180417_142355%2FmobileAppli%2Flogo_183x183.png" + } + ] + }, + { + "definitionType": "mobileAppliDark", + "listLogos": [ + { + "size": "183x183", + "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_directstar%2F20180417_142355%2FmobileAppliDark%2Flogo_183x183.png" + } + ] + }, + { + "definitionType": "webTVLogo", + "listLogos": [ + { + "size": "180x96", + "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_directstar%2F20180417_142355%2FwebTVLogo%2Flogo_180x96.png" + } + ] + }, + { + "definitionType": "webTVSquare", + "listLogos": [ + { + "size": "150x150", + "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_directstar%2F20180417_142355%2FwebTVSquare%2Flogo_150x150.png" + } + ] + } + ], + "mobileData": { + "wifiForbidden": false, + "wifiSecuredOnly": false, + "everywhereChannel": true, + "nomadismAllowed": true, + "drmLevels": [ + { + "definition": "SD", + "securedTerminal": [ + "DRM-HW", + "DRM-SW" + ], + "unsecuredTerminal": [ + "DRM-HW", + "DRM-SW" + ] + }, + { + "definition": "HD", + "securedTerminal": [ + "DRM-HW", + "DRM-SW" + ], + "unsecuredTerminal": [ + "ND" + ] + } + ] + }, + "webdeviceData": { + "nomadismAllowed": true + }, + "technicalChannels": { + "live": [ + { + "techChannelId": "400007", + "type": "CLOUDTV", + "liveTargetURLRelativePath": "livetv_cstar_ctv", + "usi": 400007, + "isDRMized": true, + "csa5Disabled": true + } + ], + "npvr": [ + { + "externalId": "livetv_cstar_ctv", + "techChannelId": "400007", + "type": "CLOUDTV", + "usi": 400007, + "isDRMized": true, + "antiAdskipping": "DEACTIVATED", + "csa5Disabled": true + } + ], + "startover": [ + { + "externalId": "livetv_cstar_ctv", + "techChannelId": "400007", + "type": "CLOUDTV", + "usi": 400007, + "isDRMized": true, + "antiAdskipping": "DEACTIVATED", + "csa5Disabled": true + } + ] + } + }, + { + "name": "GULLI", + "editoChannelId": "livetv_gulli", + "lcn": 18, + "idEPG": 482, + "epgAvailable": true, + "epgTextSubstitution": "", + "displayOrder": 18, + "csaCode": 1, + "slogan": "Gulli. Bienvenue dans la familli", + "catchupChannelId": "catchuptv_6play_gulli", + "newChannel": false, + "roamingBlocked": true, + "allowedDeviceCategories": [ + "M_ANDROID", + "M_IOS", + "M_TABLET_ANDROID", + "M_TABLET_IOS", + "W_AIRPLAY", + "W_CHROMECAST", + "W_LACLETV2", + "W_PC", + "W_SMARTTV", + "S_STB" + ], + "packages": [ + "PA_BQ_PASSACCESTVPREMIUM_M", + "PA_BQ_BASIC_M", + "PA_BQ_RE_TVMAX_M", + "PA_BQ_ACCESTVPREMIUM_M", + "PA_BQ_PAYG_M", + "PA_BQ_TVDIGITALE_I", + "PA_BQ_SPORT_M", + "PA_BQ_BASIC_I", + "PA_BQ_BASICQUAD_I", + "PA_BQ_ACCESTV_M", + "PI_WHITELIST" + ], + "hasRightIAccess": true, + "hasRightMAccess": true, + "logos": [ + { + "definitionType": "mobileAppli", + "listLogos": [ + { + "size": "183x183", + "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_gulli%2F20230921_113253%2FmobileAppli%2Flogo_183x183.png" + } + ] + }, + { + "definitionType": "mobileAppliDark", + "listLogos": [ + { + "size": "183x183", + "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_gulli%2F20230921_113253%2FmobileAppliDark%2Flogo_183x183.png" + } + ] + }, + { + "definitionType": "webTVLogo", + "listLogos": [ + { + "size": "180x96", + "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_gulli%2F20230921_113253%2FwebTVLogo%2Flogo_180x96.png" + } + ] + }, + { + "definitionType": "webTVSquare", + "listLogos": [ + { + "size": "150x150", + "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_gulli%2F20230921_113253%2FwebTVSquare%2Flogo_150x150.png" + } + ] + } + ], + "mobileData": { + "wifiForbidden": false, + "wifiSecuredOnly": false, + "everywhereChannel": true, + "nomadismAllowed": true, + "drmLevels": [ + { + "definition": "SD", + "securedTerminal": [ + "DRM-HW", + "DRM-SW" + ], + "unsecuredTerminal": [ + "DRM-HW", + "DRM-SW" + ] + }, + { + "definition": "HD", + "securedTerminal": [ + "DRM-HW", + "DRM-SW" + ], + "unsecuredTerminal": [ + "ND" + ] + } + ] + }, + "webdeviceData": { + "nomadismAllowed": true + }, + "technicalChannels": { + "live": [ + { + "techChannelId": "400033", + "type": "CLOUDTV", + "liveTargetURLRelativePath": "livetv_gulli_ctv", + "usi": 400033, + "isDRMized": true, + "csa5Disabled": true + } + ], + "npvr": [ + { + "externalId": "livetv_gulli_ctv", + "techChannelId": "400033", + "type": "CLOUDTV", + "usi": 400033, + "isDRMized": true, + "antiAdskipping": "DEACTIVATED", + "csa5Disabled": true + } + ], + "startover": [ + { + "externalId": "livetv_gulli_ctv", + "techChannelId": "400033", + "type": "CLOUDTV", + "usi": 400033, + "isDRMized": true, + "antiAdskipping": "DEACTIVATED", + "csa5Disabled": true + } + ] + } + }, + { + "name": "TF1 SERIES FILMS", + "editoChannelId": "livetv_hd1", + "lcn": 20, + "idEPG": 1404, + "epgAvailable": true, + "epgTextSubstitution": "", + "displayOrder": 20, + "csaCode": 1, + "slogan": "Le meilleur du cinéma et des séries", + "catchupChannelId": "catchuptv_hd1", + "newChannel": false, + "roamingBlocked": true, + "allowedDeviceCategories": [ + "M_ANDROID", + "M_IOS", + "M_TABLET_ANDROID", + "M_TABLET_IOS", + "W_AIRPLAY", + "W_CHROMECAST", + "W_LACLETV2", + "W_SMARTTV", + "W_PC", + "S_STB" + ], + "packages": [ + "PA_BQ_PASSACCESTVPREMIUM_M", + "PA_BQ_BASIC_M", + "PA_BQ_RE_TVMAX_M", + "PA_BQ_ACCESTVPREMIUM_M", + "PA_BQ_TVDIGITALE_I", + "PA_BQ_BASIC_I", + "PA_BQ_BASICQUAD_I", + "PA_BQ_ACCESTV_M", + "PI_WHITELIST" + ], + "hasRightIAccess": true, + "hasRightMAccess": true, + "logos": [ + { + "definitionType": "mobileAppli", + "listLogos": [ + { + "size": "183x183", + "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_hd1%2F20200324_111923%2FmobileAppli%2Flogo_183x183.png" + } + ] + }, + { + "definitionType": "mobileAppliDark", + "listLogos": [ + { + "size": "183x183", + "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_hd1%2F20200324_111923%2FmobileAppliDark%2Flogo_183x183.png" + } + ] + }, + { + "definitionType": "webTVLogo", + "listLogos": [ + { + "size": "180x96", + "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_hd1%2F20200324_111923%2FwebTVLogo%2Flogo_180x96.png" + } + ] + }, + { + "definitionType": "webTVSquare", + "listLogos": [ + { + "size": "150x150", + "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_hd1%2F20200324_111923%2FwebTVSquare%2Flogo_150x150.png" + } + ] + } + ], + "mobileData": { + "wifiForbidden": false, + "wifiSecuredOnly": false, + "everywhereChannel": true, + "nomadismAllowed": true, + "drmLevels": [ + { + "definition": "SD", + "securedTerminal": [ + "DRM-HW", + "DRM-SW" + ], + "unsecuredTerminal": [ + "DRM-HW", + "DRM-SW" + ] + }, + { + "definition": "HD", + "securedTerminal": [ + "DRM-HW", + "DRM-SW" + ], + "unsecuredTerminal": [ + "ND" + ] + } + ] + }, + "webdeviceData": { + "nomadismAllowed": true + }, + "technicalChannels": { + "live": [ + { + "techChannelId": "400035", + "type": "CLOUDTV", + "liveTargetURLRelativePath": "livetv_tf1_series_films_ctv", + "usi": 400035, + "isDRMized": true, + "csa5Disabled": true + } + ], + "npvr": [ + { + "externalId": "livetv_tf1_series_films_ctv", + "techChannelId": "400035", + "type": "CLOUDTV", + "usi": 400035, + "isDRMized": true, + "antiAdskipping": "DEACTIVATED", + "csa5Disabled": true + } + ], + "startover": [ + { + "externalId": "livetv_tf1_series_films_ctv", + "techChannelId": "400035", + "type": "CLOUDTV", + "usi": 400035, + "isDRMized": true, + "antiAdskipping": "DEACTIVATED", + "csa5Disabled": true + } + ] + } + }, + { + "name": "LA CHAINE L'EQUIPE", + "editoChannelId": "livetv_equipe21", + "lcn": 21, + "idEPG": 1401, + "epgAvailable": true, + "epgTextSubstitution": "", + "displayOrder": 21, + "csaCode": 1, + "slogan": "Première chaine de sport en France", + "catchupChannelId": "catchuptv_equipe21", + "newChannel": false, + "roamingBlocked": true, + "allowedDeviceCategories": [ + "M_ANDROID", + "M_IOS", + "M_TABLET_ANDROID", + "M_TABLET_IOS", + "W_AIRPLAY", + "W_CHROMECAST", + "W_LACLETV2", + "W_SMARTTV", + "W_PC", + "S_STB" + ], + "packages": [ + "PA_BQ_PASSACCESTVPREMIUM_M", + "PA_BQ_BASIC_M", + "PA_BQ_RE_TVMAX_M", + "PA_BQ_ACCESTVPREMIUM_M", + "PA_BQ_TVDIGITALE_I", + "PA_BQ_BASIC_I", + "PA_BQ_BASICQUAD_I", + "PA_BQ_ACCESTV_M", + "PI_WHITELIST" + ], + "hasRightIAccess": true, + "hasRightMAccess": true, + "logos": [ + { + "definitionType": "mobileAppli", + "listLogos": [ + { + "size": "183x183", + "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_equipe21%2F20180417_141110%2FmobileAppli%2Flogo_183x183.png" + } + ] + }, + { + "definitionType": "mobileAppliDark", + "listLogos": [ + { + "size": "183x183", + "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_equipe21%2F20180417_141110%2FmobileAppliDark%2Flogo_183x183.png" + } + ] + }, + { + "definitionType": "webTVLogo", + "listLogos": [ + { + "size": "180x96", + "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_equipe21%2F20180417_141110%2FwebTVLogo%2Flogo_180x96.png" + } + ] + }, + { + "definitionType": "webTVSquare", + "listLogos": [ + { + "size": "150x150", + "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_equipe21%2F20180417_141110%2FwebTVSquare%2Flogo_150x150.png" + } + ] + } + ], + "mobileData": { + "wifiForbidden": false, + "wifiSecuredOnly": false, + "everywhereChannel": true, + "nomadismAllowed": true, + "drmLevels": [ + { + "definition": "SD", + "securedTerminal": [ + "DRM-HW", + "DRM-SW" + ], + "unsecuredTerminal": [ + "DRM-HW", + "DRM-SW" + ] + }, + { + "definition": "HD", + "securedTerminal": [ + "DRM-HW", + "DRM-SW" + ], + "unsecuredTerminal": [ + "ND" + ] + } + ] + }, + "webdeviceData": { + "nomadismAllowed": true + }, + "technicalChannels": { + "live": [ + { + "techChannelId": "400074", + "type": "CLOUDTV", + "liveTargetURLRelativePath": "livetv_la_chaine_l_equipe_ctv", + "usi": 400074, + "isDRMized": true, + "csa5Disabled": true + } + ], + "npvr": [ + { + "externalId": "livetv_la_chaine_l_equipe_ctv", + "techChannelId": "400074", + "type": "CLOUDTV", + "usi": 400074, + "isDRMized": true, + "antiAdskipping": "DEACTIVATED", + "csa5Disabled": true + } + ], + "startover": [ + { + "externalId": "livetv_la_chaine_l_equipe_ctv", + "techChannelId": "400074", + "type": "CLOUDTV", + "usi": 400074, + "isDRMized": true, + "antiAdskipping": "DEACTIVATED", + "csa5Disabled": true + } + ] + } + }, + { + "name": "6TER", + "editoChannelId": "livetv_6ter", + "lcn": 22, + "idEPG": 1403, + "epgAvailable": true, + "epgTextSubstitution": "", + "displayOrder": 22, + "csaCode": 1, + "slogan": "La télé à partager", + "catchupChannelId": "catchuptv_6ter", + "newChannel": false, + "roamingBlocked": true, + "allowedDeviceCategories": [ + "M_ANDROID", + "M_IOS", + "M_TABLET_ANDROID", + "M_TABLET_IOS", + "W_AIRPLAY", + "W_CHROMECAST", + "W_LACLETV2", + "W_SMARTTV", + "W_PC", + "S_STB" + ], + "packages": [ + "PA_BQ_PASSACCESTVPREMIUM_M", + "PA_BQ_BASIC_M", + "PA_BQ_RE_TVMAX_M", + "PA_BQ_ACCESTVPREMIUM_M", + "PA_BQ_TVDIGITALE_I", + "PA_BQ_BASIC_I", + "PA_BQ_BASICQUAD_I", + "PA_BQ_ACCESTV_M", + "PI_WHITELIST" + ], + "hasRightIAccess": true, + "hasRightMAccess": true, + "logos": [ + { + "definitionType": "mobileAppli", + "listLogos": [ + { + "size": "183x183", + "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_6ter%2F20151026_092415%2FmobileAppli%2Flogo_183x183.png" + } + ] + }, + { + "definitionType": "mobileAppliDark", + "listLogos": [ + { + "size": "183x183", + "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_6ter%2F20151026_092415%2FmobileAppliDark%2Flogo_183x183.png" + } + ] + }, + { + "definitionType": "webTVLogo", + "listLogos": [ + { + "size": "180x96", + "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_6ter%2F20151026_092415%2FwebTVLogo%2Flogo_180x96.png" + } + ] + }, + { + "definitionType": "webTVSquare", + "listLogos": [ + { + "size": "150x150", + "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_6ter%2F20151026_092415%2FwebTVSquare%2Flogo_150x150.png" + } + ] + } + ], + "mobileData": { + "wifiForbidden": false, + "wifiSecuredOnly": false, + "everywhereChannel": true, + "nomadismAllowed": true, + "drmLevels": [ + { + "definition": "SD", + "securedTerminal": [ + "DRM-HW", + "DRM-SW" + ], + "unsecuredTerminal": [ + "DRM-HW", + "DRM-SW" + ] + }, + { + "definition": "HD", + "securedTerminal": [ + "DRM-HW", + "DRM-SW" + ], + "unsecuredTerminal": [ + "ND" + ] + } + ] + }, + "webdeviceData": { + "nomadismAllowed": true + }, + "technicalChannels": { + "live": [ + { + "techChannelId": "400004", + "type": "CLOUDTV", + "liveTargetURLRelativePath": "livetv_6ter_ctv", + "usi": 400004, + "isDRMized": true, + "csa5Disabled": true + } + ], + "npvr": [ + { + "externalId": "livetv_6ter_ctv", + "techChannelId": "400004", + "type": "CLOUDTV", + "usi": 400004, + "isDRMized": true, + "antiAdskipping": "DEACTIVATED", + "csa5Disabled": true + } + ], + "startover": [ + { + "externalId": "livetv_6ter_ctv", + "techChannelId": "400004", + "type": "CLOUDTV", + "usi": 400004, + "isDRMized": true, + "antiAdskipping": "DEACTIVATED", + "csa5Disabled": true + } + ] + } + }, + { + "name": "RMC STORY", + "editoChannelId": "livetv_numero23", + "lcn": 23, + "idEPG": 1402, + "epgAvailable": true, + "epgTextSubstitution": "", + "displayOrder": 23, + "csaCode": 1, + "slogan": "La chaîne des histoires vraies", + "catchupChannelId": "catchuptv_numero23", + "newChannel": false, + "roamingBlocked": true, + "allowedDeviceCategories": [ + "M_ANDROID", + "M_IOS", + "M_TABLET_ANDROID", + "M_TABLET_IOS", + "W_AIRPLAY", + "W_CHROMECAST", + "W_LACLETV2", + "W_SMARTTV", + "W_PC", + "S_STB" + ], + "packages": [ + "PA_BQ_PASSACCESTVPREMIUM_M", + "PA_BQ_BASIC_M", + "PA_BQ_RE_TVMAX_M", + "PA_BQ_ACCESTVPREMIUM_M", + "PA_BQ_TVDIGITALE_I", + "PA_BQ_BASIC_I", + "PA_BQ_BASICQUAD_I", + "PA_BQ_ACCESTV_M", + "PI_WHITELIST" + ], + "hasRightIAccess": true, + "hasRightMAccess": true, + "logos": [ + { + "definitionType": "mobileAppli", + "listLogos": [ + { + "size": "183x183", + "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_numero23%2F20181002_112821%2FmobileAppli%2Flogo_183x183.png" + } + ] + }, + { + "definitionType": "mobileAppliDark", + "listLogos": [ + { + "size": "183x183", + "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_numero23%2F20181002_112821%2FmobileAppliDark%2Flogo_183x183.png" + } + ] + }, + { + "definitionType": "webTVLogo", + "listLogos": [ + { + "size": "180x96", + "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_numero23%2F20181002_112821%2FwebTVLogo%2Flogo_180x96.png" + } + ] + }, + { + "definitionType": "webTVSquare", + "listLogos": [ + { + "size": "150x150", + "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_numero23%2F20181002_112821%2FwebTVSquare%2Flogo_150x150.png" + } + ] + } + ], + "mobileData": { + "wifiForbidden": false, + "wifiSecuredOnly": false, + "everywhereChannel": true, + "nomadismAllowed": true, + "drmLevels": [ + { + "definition": "SD", + "securedTerminal": [ + "DRM-HW", + "DRM-SW" + ], + "unsecuredTerminal": [ + "DRM-HW", + "DRM-SW" + ] + }, + { + "definition": "HD", + "securedTerminal": [ + "DRM-HW", + "DRM-SW" + ], + "unsecuredTerminal": [ + "ND" + ] + } + ] + }, + "webdeviceData": { + "nomadismAllowed": true + }, + "technicalChannels": { + "live": [ + { + "techChannelId": "400008", + "type": "CLOUDTV", + "liveTargetURLRelativePath": "livetv_rmc_story_ctv", + "usi": 400008, + "isDRMized": true, + "csa5Disabled": true + } + ], + "npvr": [ + { + "externalId": "livetv_rmc_story_ctv", + "techChannelId": "400008", + "type": "CLOUDTV", + "usi": 400008, + "isDRMized": true, + "antiAdskipping": "DEACTIVATED", + "csa5Disabled": true + } + ], + "startover": [ + { + "externalId": "livetv_rmc_story_ctv", + "techChannelId": "400008", + "type": "CLOUDTV", + "usi": 400008, + "isDRMized": true, + "antiAdskipping": "DEACTIVATED", + "csa5Disabled": true + } + ] + } + }, + { + "name": "RMC DECOUVERTE", + "editoChannelId": "livetv_rmcdecouverte", + "lcn": 24, + "idEPG": 1400, + "epgAvailable": true, + "epgTextSubstitution": "", + "displayOrder": 24, + "csaCode": 1, + "slogan": "Plus fort que la fiction", + "catchupChannelId": "catchuptv_rmcdecouverte", + "newChannel": false, + "roamingBlocked": true, + "allowedDeviceCategories": [ + "M_ANDROID", + "M_IOS", + "M_TABLET_ANDROID", + "M_TABLET_IOS", + "W_AIRPLAY", + "W_CHROMECAST", + "W_LACLETV2", + "W_PC", + "W_SMARTTV", + "S_STB" + ], + "packages": [ + "PA_BQ_PASSACCESTVPREMIUM_M", + "PA_BQ_BASIC_M", + "PA_BQ_RE_TVMAX_M", + "PA_BQ_ACCESTVPREMIUM_M", + "PA_BQ_TVDIGITALE_I", + "PA_BQ_BASIC_I", + "PA_BQ_BASICQUAD_I", + "PA_BQ_ACCESTV_M", + "PI_WHITELIST" + ], + "hasRightIAccess": true, + "hasRightMAccess": true, + "logos": [ + { + "definitionType": "mobileAppli", + "listLogos": [ + { + "size": "183x183", + "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_rmcdecouverte%2F20220317_155749%2FmobileAppli%2Flogo_183x183.png" + } + ] + }, + { + "definitionType": "mobileAppliDark", + "listLogos": [ + { + "size": "183x183", + "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_rmcdecouverte%2F20220317_155749%2FmobileAppliDark%2Flogo_183x183.png" + } + ] + }, + { + "definitionType": "webTVLogo", + "listLogos": [ + { + "size": "180x96", + "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_rmcdecouverte%2F20220317_155749%2FwebTVLogo%2Flogo_180x96.png" + } + ] + }, + { + "definitionType": "webTVSquare", + "listLogos": [ + { + "size": "150x150", + "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_rmcdecouverte%2F20220317_155749%2FwebTVSquare%2Flogo_150x150.png" + } + ] + } + ], + "mobileData": { + "wifiForbidden": false, + "wifiSecuredOnly": false, + "everywhereChannel": true, + "nomadismAllowed": true, + "drmLevels": [ + { + "definition": "SD", + "securedTerminal": [ + "DRM-HW", + "DRM-SW" + ], + "unsecuredTerminal": [ + "DRM-HW", + "DRM-SW" + ] + }, + { + "definition": "HD", + "securedTerminal": [ + "DRM-HW", + "DRM-SW" + ], + "unsecuredTerminal": [ + "ND" + ] + } + ] + }, + "webdeviceData": { + "nomadismAllowed": true + }, + "technicalChannels": { + "live": [ + { + "techChannelId": "400009", + "type": "CLOUDTV", + "liveTargetURLRelativePath": "livetv_rmc_decouverte_ctv", + "usi": 400009, + "isDRMized": true, + "csa5Disabled": true + } + ], + "npvr": [ + { + "externalId": "livetv_rmc_decouverte_ctv", + "techChannelId": "400009", + "type": "CLOUDTV", + "usi": 400009, + "isDRMized": true, + "antiAdskipping": "DEACTIVATED", + "csa5Disabled": true + } + ], + "startover": [ + { + "externalId": "livetv_rmc_decouverte_ctv", + "techChannelId": "400009", + "type": "CLOUDTV", + "usi": 400009, + "isDRMized": true, + "antiAdskipping": "DEACTIVATED", + "csa5Disabled": true + } + ] + } + }, + { + "name": "CHERIE 25", + "editoChannelId": "livetv_cherie25", + "lcn": 25, + "idEPG": 1399, + "epgAvailable": true, + "epgTextSubstitution": "", + "displayOrder": 25, + "csaCode": 1, + "slogan": "La chaîne qui a tout pour elles", + "catchupChannelId": "catchuptv_cherie25", + "newChannel": false, + "roamingBlocked": true, + "allowedDeviceCategories": [ + "M_ANDROID", + "M_IOS", + "M_TABLET_ANDROID", + "M_TABLET_IOS", + "W_AIRPLAY", + "W_CHROMECAST", + "W_LACLETV2", + "W_SMARTTV", + "W_PC", + "S_STB" + ], + "packages": [ + "PA_BQ_PASSACCESTVPREMIUM_M", + "PA_BQ_BASIC_M", + "PA_BQ_RE_TVMAX_M", + "PA_BQ_ACCESTVPREMIUM_M", + "PA_BQ_TVDIGITALE_I", + "PA_BQ_BASIC_I", + "PA_BQ_BASICQUAD_I", + "PA_BQ_ACCESTV_M", + "PI_WHITELIST" + ], + "hasRightIAccess": true, + "hasRightMAccess": true, + "logos": [ + { + "definitionType": "mobileAppli", + "listLogos": [ + { + "size": "183x183", + "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_cherie25%2F20151026_092415%2FmobileAppli%2Flogo_183x183.png" + } + ] + }, + { + "definitionType": "mobileAppliDark", + "listLogos": [ + { + "size": "183x183", + "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_cherie25%2F20151026_092415%2FmobileAppliDark%2Flogo_183x183.png" + } + ] + }, + { + "definitionType": "webTVLogo", + "listLogos": [ + { + "size": "180x96", + "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_cherie25%2F20151026_092415%2FwebTVLogo%2Flogo_180x96.png" + } + ] + }, + { + "definitionType": "webTVSquare", + "listLogos": [ + { + "size": "150x150", + "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_cherie25%2F20151026_092415%2FwebTVSquare%2Flogo_150x150.png" + } + ] + } + ], + "mobileData": { + "wifiForbidden": false, + "wifiSecuredOnly": false, + "everywhereChannel": true, + "nomadismAllowed": true, + "drmLevels": [ + { + "definition": "SD", + "securedTerminal": [ + "DRM-HW", + "DRM-SW" + ], + "unsecuredTerminal": [ + "DRM-HW", + "DRM-SW" + ] + }, + { + "definition": "HD", + "securedTerminal": [ + "DRM-HW", + "DRM-SW" + ], + "unsecuredTerminal": [ + "ND" + ] + } + ] + }, + "webdeviceData": { + "nomadismAllowed": true + }, + "technicalChannels": { + "live": [ + { + "techChannelId": "400012", + "type": "CLOUDTV", + "liveTargetURLRelativePath": "livetv_cherie_25_ctv", + "usi": 400012, + "isDRMized": true, + "csa5Disabled": true + } + ], + "npvr": [ + { + "externalId": "livetv_cherie_25_ctv", + "techChannelId": "400012", + "type": "CLOUDTV", + "usi": 400012, + "isDRMized": true, + "antiAdskipping": "DEACTIVATED", + "csa5Disabled": true + } + ], + "startover": [ + { + "externalId": "livetv_cherie_25_ctv", + "techChannelId": "400012", + "type": "CLOUDTV", + "usi": 400012, + "isDRMized": true, + "antiAdskipping": "DEACTIVATED", + "csa5Disabled": true + } + ] + } + }, + { + "name": "LCI", + "editoChannelId": "livetv_lcimobile_UMTS", + "lcn": 26, + "idEPG": 112, + "epgAvailable": true, + "epgTextSubstitution": "", + "displayOrder": 26, + "csaCode": 1, + "slogan": "Vous êtes au cœur de l’info", + "catchupChannelId": "catchuptv_lcimobile_UMTS", + "newChannel": false, + "roamingBlocked": true, + "allowedDeviceCategories": [ + "M_ANDROID", + "M_IOS", + "M_TABLET_ANDROID", + "M_TABLET_IOS", + "W_AIRPLAY", + "W_CHROMECAST", + "W_LACLETV2", + "W_SMARTTV", + "W_PC", + "S_STB" + ], + "packages": [ + "PA_BQ_PASSACCESTVPREMIUM_M", + "PA_BQ_BASIC_M", + "PA_BQ_RE_TVMAX_M", + "PA_BQ_ACCESTVPREMIUM_M", + "PA_BQ_PAYG_M", + "PA_BQ_TVDIGITALE_I", + "PA_BQ_BASIC_I", + "PA_BQ_BASICQUAD_I", + "PA_BQ_ACCESTV_M", + "PI_WHITELIST" + ], + "hasRightIAccess": true, + "hasRightMAccess": true, + "logos": [ + { + "definitionType": "mobileAppli", + "listLogos": [ + { + "size": "183x183", + "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_lcimobile_UMTS%2F20200324_111923%2FmobileAppli%2Flogo_183x183.png" + } + ] + }, + { + "definitionType": "mobileAppliDark", + "listLogos": [ + { + "size": "183x183", + "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_lcimobile_UMTS%2F20200324_111923%2FmobileAppliDark%2Flogo_183x183.png" + } + ] + }, + { + "definitionType": "webTVLogo", + "listLogos": [ + { + "size": "180x96", + "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_lcimobile_UMTS%2F20200324_111923%2FwebTVLogo%2Flogo_180x96.png" + } + ] + }, + { + "definitionType": "webTVSquare", + "listLogos": [ + { + "size": "150x150", + "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_lcimobile_UMTS%2F20200324_111923%2FwebTVSquare%2Flogo_150x150.png" + } + ] + } + ], + "mobileData": { + "wifiForbidden": false, + "wifiSecuredOnly": false, + "everywhereChannel": true, + "nomadismAllowed": true, + "drmLevels": [ + { + "definition": "SD", + "securedTerminal": [ + "DRM-HW", + "DRM-SW" + ], + "unsecuredTerminal": [ + "DRM-HW", + "DRM-SW" + ] + }, + { + "definition": "HD", + "securedTerminal": [ + "DRM-HW", + "DRM-SW" + ], + "unsecuredTerminal": [ + "ND" + ] + } + ] + }, + "webdeviceData": { + "nomadismAllowed": true + }, + "technicalChannels": { + "live": [ + { + "techChannelId": "400075", + "type": "CLOUDTV", + "liveTargetURLRelativePath": "livetv_lci_ctv", + "usi": 400075, + "isDRMized": true, + "csa5Disabled": true + } + ], + "npvr": [ + { + "externalId": "livetv_lci_ctv", + "techChannelId": "400075", + "type": "CLOUDTV", + "usi": 400075, + "isDRMized": true, + "antiAdskipping": "DEACTIVATED", + "csa5Disabled": true + } + ], + "startover": [ + { + "externalId": "livetv_lci_ctv", + "techChannelId": "400075", + "type": "CLOUDTV", + "usi": 400075, + "isDRMized": true, + "antiAdskipping": "DEACTIVATED", + "csa5Disabled": true + } + ] + } + }, + { + "name": "FRANCEINFO:", + "editoChannelId": "livetv_franceinfo", + "lcn": 27, + "idEPG": 2111, + "epgAvailable": true, + "epgTextSubstitution": "", + "displayOrder": 27, + "csaCode": 1, + "slogan": "franceinfo deux points ouvrez l’info", + "catchupChannelId": "", + "newChannel": true, + "roamingBlocked": true, + "allowedDeviceCategories": [ + "M_ANDROID", + "M_IOS", + "M_TABLET_ANDROID", + "M_TABLET_IOS", + "W_AIRPLAY", + "W_CHROMECAST", + "W_LACLETV2", + "W_SMARTTV", + "W_PC", + "S_STB" + ], + "packages": [ + "PA_BQ_BASIC_M", + "PA_BQ_RE_TVMAX_M", + "PA_BQ_TVDIGITALE_I", + "PA_BQ_BASIC_I", + "PA_BQ_BASICQUAD_I", + "PA_BQ_ACCESTV_M", + "PI_WHITELIST" + ], + "hasRightIAccess": true, + "hasRightMAccess": true, + "logos": [ + { + "definitionType": "mobileAppli", + "listLogos": [ + { + "size": "183x183", + "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_franceinfo%2F20151026_092415%2FmobileAppli%2Flogo_183x183.png" + } + ] + }, + { + "definitionType": "mobileAppliDark", + "listLogos": [ + { + "size": "183x183", + "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_franceinfo%2F20151026_092415%2FmobileAppliDark%2Flogo_183x183.png" + } + ] + }, + { + "definitionType": "webTVLogo", + "listLogos": [ + { + "size": "180x96", + "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_franceinfo%2F20151026_092415%2FwebTVLogo%2Flogo_180x96.png" + } + ] + }, + { + "definitionType": "webTVSquare", + "listLogos": [ + { + "size": "150x150", + "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_franceinfo%2F20151026_092415%2FwebTVSquare%2Flogo_150x150.png" + } + ] + } + ], + "mobileData": { + "wifiForbidden": false, + "wifiSecuredOnly": false, + "everywhereChannel": true, + "nomadismAllowed": true, + "drmLevels": [ + { + "definition": "SD", + "securedTerminal": [ + "DRM-HW", + "DRM-SW" + ], + "unsecuredTerminal": [ + "DRM-HW", + "DRM-SW" + ] + }, + { + "definition": "HD", + "securedTerminal": [ + "DRM-HW", + "DRM-SW" + ], + "unsecuredTerminal": [ + "ND" + ] + } + ] + }, + "webdeviceData": { + "nomadismAllowed": true + }, + "technicalChannels": { + "live": [ + { + "techChannelId": "400076", + "type": "CLOUDTV", + "liveTargetURLRelativePath": "livetv_franceinfo_ctv", + "usi": 400076, + "isDRMized": true, + "csa5Disabled": true + } + ], + "npvr": [ + { + "externalId": "livetv_franceinfo_ctv", + "techChannelId": "400076", + "type": "CLOUDTV", + "usi": 400076, + "isDRMized": true, + "antiAdskipping": "DEACTIVATED", + "csa5Disabled": true + } + ], + "startover": [ + { + "externalId": "livetv_franceinfo_ctv", + "techChannelId": "400076", + "type": "CLOUDTV", + "usi": 400076, + "isDRMized": true, + "antiAdskipping": "DEACTIVATED", + "csa5Disabled": true + } + ] + } + }, + { + "name": "TV5MONDE", + "editoChannelId": "livetv_tv5", + "lcn": 33, + "idEPG": 205, + "epgAvailable": true, + "epgTextSubstitution": "", + "displayOrder": 33, + "csaCode": 1, + "slogan": "Regarder le Monde avec attention", + "catchupChannelId": "catchuptv_tv5monde", + "newChannel": false, + "roamingBlocked": true, + "allowedDeviceCategories": [ + "M_ANDROID", + "M_IOS", + "M_TABLET_ANDROID", + "M_TABLET_IOS", + "W_AIRPLAY", + "W_CHROMECAST", + "W_LACLETV2", + "W_SMARTTV", + "W_PC", + "S_STB" + ], + "packages": [ + "PA_BQ_PASSACCESTVPREMIUM_M", + "PA_BQ_BASIC_M", + "PA_BQ_RE_TVMAX_M", + "PA_BQ_ACCESTVPREMIUM_M", + "PA_BQ_PAYG_M", + "PA_BQ_MUSIQUE_M", + "PA_BQ_TVDIGITALE_I", + "PA_BQ_SPORT_M", + "PA_BQ_BASIC_I", + "PA_BQ_BASICQUAD_I", + "PA_BQ_ACCESTV_M", + "PI_WHITELIST" + ], + "hasRightIAccess": true, + "hasRightMAccess": true, + "logos": [ + { + "definitionType": "mobileAppli", + "listLogos": [ + { + "size": "183x183", + "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_tv5%2F20230719_182354%2FmobileAppli%2Flogo_183x183.png" + } + ] + }, + { + "definitionType": "mobileAppliDark", + "listLogos": [ + { + "size": "183x183", + "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_tv5%2F20230719_182354%2FmobileAppliDark%2Flogo_183x183.png" + } + ] + }, + { + "definitionType": "webTVLogo", + "listLogos": [ + { + "size": "180x96", + "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_tv5%2F20230719_182354%2FwebTVLogo%2Flogo_180x96.png" + } + ] + }, + { + "definitionType": "webTVSquare", + "listLogos": [ + { + "size": "150x150", + "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_tv5%2F20230719_182354%2FwebTVSquare%2Flogo_150x150.png" + } + ] + } + ], + "mobileData": { + "wifiForbidden": false, + "wifiSecuredOnly": false, + "everywhereChannel": true, + "nomadismAllowed": true, + "drmLevels": [ + { + "definition": "SD", + "securedTerminal": [ + "DRM-HW", + "DRM-SW" + ], + "unsecuredTerminal": [ + "DRM-HW", + "DRM-SW" + ] + }, + { + "definition": "HD", + "securedTerminal": [ + "DRM-HW", + "DRM-SW" + ], + "unsecuredTerminal": [ + "ND" + ] + } + ] + }, + "webdeviceData": { + "nomadismAllowed": true + }, + "technicalChannels": { + "live": [ + { + "techChannelId": "400077", + "type": "CLOUDTV", + "liveTargetURLRelativePath": "livetv_tv5monde_ctv", + "usi": 400077, + "isDRMized": true, + "csa5Disabled": true + } + ], + "npvr": [ + { + "externalId": "livetv_tv5monde_ctv", + "techChannelId": "400077", + "type": "CLOUDTV", + "usi": 400077, + "isDRMized": true, + "antiAdskipping": "DEACTIVATED", + "csa5Disabled": true + } + ], + "startover": [] + } + }, + { + "name": "TEVA", + "editoChannelId": "livetv_teva", + "lcn": 34, + "idEPG": 191, + "epgAvailable": true, + "epgTextSubstitution": "", + "displayOrder": 34, + "csaCode": 1, + "slogan": "La meilleure alliée des femmes !", + "catchupChannelId": "catchuptv_teva", + "newChannel": false, + "roamingBlocked": true, + "allowedDeviceCategories": [ + "M_ANDROID", + "M_IOS", + "M_TABLET_ANDROID", + "M_TABLET_IOS", + "W_AIRPLAY", + "W_CHROMECAST", + "W_LACLETV2", + "W_SMARTTV", + "W_PC", + "S_STB" + ], + "packages": [ + "PA_BQ_PASSACCESTVPREMIUM_M", + "PA_bouquet_famille_disneyplus", + "PA_BQ_ACCESTVPREMIUM_M", + "PA_pack_intense", + "PA_bouquet_divertissement_fibre", + "PA_bouquet_famille_by_canal", + "PA_bouquet_famille_by_canal_nov2018", + "PA_bouquet_famille_max", + "PA_bouquet_divertissement_adsl", + "PI_WHITELIST" + ], + "hasRightIAccess": true, + "hasRightMAccess": true, + "logos": [ + { + "definitionType": "mobileAppli", + "listLogos": [ + { + "size": "183x183", + "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_teva%2F20151026_092415%2FmobileAppli%2Flogo_183x183.png" + } + ] + }, + { + "definitionType": "mobileAppliDark", + "listLogos": [ + { + "size": "183x183", + "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_teva%2F20151026_092415%2FmobileAppliDark%2Flogo_183x183.png" + } + ] + }, + { + "definitionType": "webTVLogo", + "listLogos": [ + { + "size": "180x96", + "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_teva%2F20151026_092415%2FwebTVLogo%2Flogo_180x96.png" + } + ] + }, + { + "definitionType": "webTVSquare", + "listLogos": [ + { + "size": "150x150", + "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_teva%2F20151026_092415%2FwebTVSquare%2Flogo_150x150.png" + } + ] + } + ], + "mobileData": { + "wifiForbidden": false, + "wifiSecuredOnly": false, + "everywhereChannel": true, + "nomadismAllowed": true, + "drmLevels": [ + { + "definition": "SD", + "securedTerminal": [ + "DRM-HW", + "DRM-SW" + ], + "unsecuredTerminal": [ + "DRM-HW", + "DRM-SW" + ] + }, + { + "definition": "HD", + "securedTerminal": [ + "DRM-HW", + "DRM-SW" + ], + "unsecuredTerminal": [ + "ND" + ] + } + ] + }, + "webdeviceData": { + "nomadismAllowed": true + }, + "technicalChannels": { + "live": [ + { + "techChannelId": "400036", + "type": "CLOUDTV", + "liveTargetURLRelativePath": "livetv_teva_ctv", + "usi": 400036, + "isDRMized": true, + "csa5Disabled": true + } + ], + "npvr": [ + { + "externalId": "livetv_teva_ctv", + "techChannelId": "400036", + "type": "CLOUDTV", + "usi": 400036, + "isDRMized": true, + "antiAdskipping": "DEACTIVATED", + "csa5Disabled": true + } + ], + "startover": [ + { + "externalId": "livetv_teva_ctv", + "techChannelId": "400036", + "type": "CLOUDTV", + "usi": 400036, + "isDRMized": true, + "antiAdskipping": "DEACTIVATED", + "csa5Disabled": true + } + ] + } + }, + { + "name": "PARIS PREMIERE", + "editoChannelId": "livetv_parispremiere", + "lcn": 35, + "idEPG": 145, + "epgAvailable": true, + "epgTextSubstitution": "", + "displayOrder": 35, + "csaCode": 1, + "slogan": "La chaîne essentielle", + "catchupChannelId": "catchuptv_parispremiere", + "newChannel": false, + "roamingBlocked": true, + "allowedDeviceCategories": [ + "M_ANDROID", + "M_IOS", + "M_TABLET_ANDROID", + "M_TABLET_IOS", + "W_AIRPLAY", + "W_CHROMECAST", + "W_LACLETV2", + "W_SMARTTV", + "W_PC", + "S_STB" + ], + "packages": [ + "PA_BQ_PASSACCESTVPREMIUM_M", + "PA_pack_Divertissement", + "PA_BQ_RE_TVMAX_M", + "PA_bouquet_famille_disneyplus", + "PA_BQ_ACCESTVPREMIUM_M", + "PA_BQ_PAYG_M", + "PA_pack_intense", + "PA_bouquet_divertissement_fibre", + "PA_bouquet_famille_by_canal", + "PA_bouquet_famille_by_canal_nov2018", + "PA_bouquet_famille_max", + "PA_bouquet_divertissement_adsl", + "PI_WHITELIST" + ], + "hasRightIAccess": true, + "hasRightMAccess": true, + "logos": [ + { + "definitionType": "mobileAppli", + "listLogos": [ + { + "size": "183x183", + "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_parispremiere%2F20170405_200000%2FmobileAppli%2Flogo_183x183.png" + } + ] + }, + { + "definitionType": "mobileAppliDark", + "listLogos": [ + { + "size": "183x183", + "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_parispremiere%2F20170405_200000%2FmobileAppliDark%2Flogo_183x183.png" + } + ] + }, + { + "definitionType": "webTVLogo", + "listLogos": [ + { + "size": "180x96", + "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_parispremiere%2F20170405_200000%2FwebTVLogo%2Flogo_180x96.png" + } + ] + }, + { + "definitionType": "webTVSquare", + "listLogos": [ + { + "size": "150x150", + "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_parispremiere%2F20170405_200000%2FwebTVSquare%2Flogo_150x150.png" + } + ] + } + ], + "mobileData": { + "wifiForbidden": false, + "wifiSecuredOnly": false, + "everywhereChannel": true, + "nomadismAllowed": true, + "drmLevels": [ + { + "definition": "SD", + "securedTerminal": [ + "DRM-HW", + "DRM-SW" + ], + "unsecuredTerminal": [ + "DRM-HW", + "DRM-SW" + ] + }, + { + "definition": "HD", + "securedTerminal": [ + "DRM-HW", + "DRM-SW" + ], + "unsecuredTerminal": [ + "ND" + ] + } + ] + }, + "webdeviceData": { + "nomadismAllowed": true + }, + "technicalChannels": { + "live": [ + { + "techChannelId": "400022", + "type": "CLOUDTV", + "liveTargetURLRelativePath": "livetv_parispremiere_ctv", + "usi": 400022, + "isDRMized": true, + "csa5Disabled": true + } + ], + "npvr": [ + { + "externalId": "livetv_parispremiere_ctv", + "techChannelId": "400022", + "type": "CLOUDTV", + "usi": 400022, + "isDRMized": true, + "antiAdskipping": "DEACTIVATED", + "csa5Disabled": true + } + ], + "startover": [ + { + "externalId": "livetv_parispremiere_ctv", + "techChannelId": "400022", + "type": "CLOUDTV", + "usi": 400022, + "isDRMized": true, + "antiAdskipping": "DEACTIVATED", + "csa5Disabled": true + } + ] + } + }, + { + "name": "RTL9", + "editoChannelId": "livetv_rtl9", + "lcn": 36, + "idEPG": 115, + "epgAvailable": true, + "epgTextSubstitution": "", + "displayOrder": 36, + "csaCode": 1, + "slogan": "La chaîne du cinéma et du divertissement", + "catchupChannelId": "catchuptv_rtl9", + "newChannel": false, + "roamingBlocked": true, + "allowedDeviceCategories": [ + "M_ANDROID", + "M_IOS", + "M_TABLET_ANDROID", + "M_TABLET_IOS", + "W_AIRPLAY", + "W_CHROMECAST", + "W_LACLETV2", + "W_PC", + "W_SMARTTV", + "S_STB" + ], + "packages": [ + "PA_BQ_PASSACCESTVPREMIUM_M", + "PA_pack_Divertissement", + "PA_BQ_RE_TVMAX_M", + "PA_bouquet_famille_disneyplus", + "PA_BQ_ACCESTVPREMIUM_M", + "PA_BQ_PAYG_M", + "PA_pack_intense", + "PA_bouquet_divertissement_fibre", + "PA_bouquet_famille_by_canal", + "PA_bouquet_famille_by_canal_nov2018", + "PA_bouquet_famille_max", + "PA_bouquet_divertissement_adsl", + "PI_WHITELIST" + ], + "hasRightIAccess": true, + "hasRightMAccess": true, + "logos": [ + { + "definitionType": "mobileAppli", + "listLogos": [ + { + "size": "183x183", + "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_rtl9%2F20230517_112910%2FmobileAppli%2Flogo_183x183.png" + } + ] + }, + { + "definitionType": "mobileAppliDark", + "listLogos": [ + { + "size": "183x183", + "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_rtl9%2F20230517_112910%2FmobileAppliDark%2Flogo_183x183.png" + } + ] + }, + { + "definitionType": "webTVLogo", + "listLogos": [ + { + "size": "180x96", + "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_rtl9%2F20230517_112910%2FwebTVLogo%2Flogo_180x96.png" + } + ] + }, + { + "definitionType": "webTVSquare", + "listLogos": [ + { + "size": "150x150", + "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_rtl9%2F20230517_112910%2FwebTVSquare%2Flogo_150x150.png" + } + ] + } + ], + "mobileData": { + "wifiForbidden": false, + "wifiSecuredOnly": false, + "everywhereChannel": true, + "nomadismAllowed": true, + "drmLevels": [ + { + "definition": "SD", + "securedTerminal": [ + "DRM-HW", + "DRM-SW" + ], + "unsecuredTerminal": [ + "DRM-HW", + "DRM-SW" + ] + }, + { + "definition": "HD", + "securedTerminal": [ + "DRM-HW", + "DRM-SW" + ], + "unsecuredTerminal": [ + "ND" + ] + } + ] + }, + "webdeviceData": { + "nomadismAllowed": true + }, + "technicalChannels": { + "live": [ + { + "techChannelId": "400023", + "type": "CLOUDTV", + "liveTargetURLRelativePath": "livetv_rtl9_ctv", + "usi": 400023, + "isDRMized": true, + "csa5Disabled": true + } + ], + "npvr": [ + { + "externalId": "livetv_rtl9_ctv", + "techChannelId": "400023", + "type": "CLOUDTV", + "usi": 400023, + "isDRMized": true, + "antiAdskipping": "DEACTIVATED", + "csa5Disabled": true + } + ], + "startover": [ + { + "externalId": "livetv_rtl9_ctv", + "techChannelId": "400023", + "type": "CLOUDTV", + "usi": 400023, + "isDRMized": true, + "antiAdskipping": "DEACTIVATED", + "csa5Disabled": true + } + ] + } + }, + { + "name": "TV BREIZH", + "editoChannelId": "livetv_tvbreizh_umts", + "lcn": 37, + "idEPG": 225, + "epgAvailable": true, + "epgTextSubstitution": "", + "displayOrder": 37, + "csaCode": 1, + "slogan": "Carrément culte", + "catchupChannelId": "catchuptv_tvbreizh_umts", + "newChannel": false, + "roamingBlocked": true, + "allowedDeviceCategories": [ + "M_ANDROID", + "M_IOS", + "M_TABLET_ANDROID", + "M_TABLET_IOS", + "W_AIRPLAY", + "W_CHROMECAST", + "W_LACLETV2", + "W_SMARTTV", + "W_PC", + "S_STB" + ], + "packages": [ + "PA_BQ_PASSACCESTVPREMIUM_M", + "PA_pack_Divertissement", + "PA_bouquet_famille_disneyplus", + "PA_BQ_ACCESTVPREMIUM_M", + "PA_pack_intense", + "PA_bouquet_divertissement_fibre", + "PA_bouquet_famille_by_canal", + "PA_bouquet_famille_by_canal_nov2018", + "PA_bouquet_famille_max", + "PA_bouquet_divertissement_adsl", + "PI_WHITELIST" + ], + "hasRightIAccess": true, + "hasRightMAccess": true, + "logos": [ + { + "definitionType": "mobileAppli", + "listLogos": [ + { + "size": "183x183", + "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_tvbreizh_umts%2F20200210_181602%2FmobileAppli%2Flogo_183x183.png" + } + ] + }, + { + "definitionType": "mobileAppliDark", + "listLogos": [ + { + "size": "183x183", + "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_tvbreizh_umts%2F20200210_181602%2FmobileAppliDark%2Flogo_183x183.png" + } + ] + }, + { + "definitionType": "webTVLogo", + "listLogos": [ + { + "size": "180x96", + "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_tvbreizh_umts%2F20200210_181602%2FwebTVLogo%2Flogo_180x96.png" + } + ] + }, + { + "definitionType": "webTVSquare", + "listLogos": [ + { + "size": "150x150", + "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_tvbreizh_umts%2F20200210_181602%2FwebTVSquare%2Flogo_150x150.png" + } + ] + } + ], + "mobileData": { + "wifiForbidden": false, + "wifiSecuredOnly": false, + "everywhereChannel": true, + "nomadismAllowed": true, + "drmLevels": [ + { + "definition": "SD", + "securedTerminal": [ + "DRM-HW", + "DRM-SW" + ], + "unsecuredTerminal": [ + "DRM-HW", + "DRM-SW" + ] + }, + { + "definition": "HD", + "securedTerminal": [ + "DRM-HW", + "DRM-SW" + ], + "unsecuredTerminal": [ + "ND" + ] + } + ] + }, + "webdeviceData": { + "nomadismAllowed": true + }, + "technicalChannels": { + "live": [ + { + "techChannelId": "400024", + "type": "CLOUDTV", + "liveTargetURLRelativePath": "livetv_tvbreizh_ctv", + "usi": 400024, + "isDRMized": true, + "csa5Disabled": true + } + ], + "npvr": [ + { + "externalId": "livetv_tvbreizh_ctv", + "techChannelId": "400024", + "type": "CLOUDTV", + "usi": 400024, + "isDRMized": true, + "antiAdskipping": "DEACTIVATED", + "csa5Disabled": true + } + ], + "startover": [ + { + "externalId": "livetv_tvbreizh_ctv", + "techChannelId": "400024", + "type": "CLOUDTV", + "usi": 400024, + "isDRMized": true, + "antiAdskipping": "DEACTIVATED", + "csa5Disabled": true + } + ] + } + }, + { + "name": "CANAL+SPORT360", + "editoChannelId": "livetv_canalplus_sport_360", + "lcn": 38, + "idEPG": 3504, + "epgAvailable": true, + "epgTextSubstitution": "", + "displayOrder": 38, + "csaCode": 1, + "slogan": "Le nouveau frisson du sport", + "catchupChannelId": "", + "newChannel": true, + "roamingBlocked": false, + "allowedDeviceCategories": [ + "M_ANDROID", + "M_IOS", + "M_TABLET_ANDROID", + "M_TABLET_IOS", + "W_AIRPLAY", + "W_CHROMECAST", + "W_LACLETV2", + "W_PC", + "W_SMARTTV", + "S_STB" + ], + "packages": [ + "PA_BQ_BASIC_I", + "PI_WHITELIST" + ], + "hasRightIAccess": true, + "hasRightMAccess": false, + "logos": [ + { + "definitionType": "mobileAppli", + "listLogos": [ + { + "size": "183x183", + "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_canalplus_sport_360%2F20230801_125104%2FmobileAppli%2Flogo_183x183.png" + } + ] + }, + { + "definitionType": "mobileAppliDark", + "listLogos": [ + { + "size": "183x183", + "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_canalplus_sport_360%2F20230801_125104%2FmobileAppliDark%2Flogo_183x183.png" + } + ] + }, + { + "definitionType": "webTVLogo", + "listLogos": [ + { + "size": "180x96", + "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_canalplus_sport_360%2F20230801_125104%2FwebTVLogo%2Flogo_180x96.png" + } + ] + }, + { + "definitionType": "webTVSquare", + "listLogos": [ + { + "size": "150x150", + "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_canalplus_sport_360%2F20230801_125104%2FwebTVSquare%2Flogo_150x150.png" + } + ] + } + ], + "mobileData": { + "wifiForbidden": false, + "wifiSecuredOnly": false, + "everywhereChannel": true, + "nomadismAllowed": true, + "drmLevels": [ + { + "definition": "SD", + "securedTerminal": [ + "DRM-HW", + "DRM-SW" + ], + "unsecuredTerminal": [ + "DRM-HW", + "DRM-SW" + ] + }, + { + "definition": "HD", + "securedTerminal": [ + "DRM-HW", + "DRM-SW" + ], + "unsecuredTerminal": [ + "ND" + ] + } + ] + }, + "webdeviceData": { + "nomadismAllowed": true + }, + "technicalChannels": { + "live": [ + { + "techChannelId": "400417", + "type": "CLOUDTV", + "liveTargetURLRelativePath": "livetv_acces_limite_ctv", + "usi": 400417, + "isDRMized": true, + "csa5Disabled": true + } + ], + "npvr": [], + "startover": [] + } + }, + { + "name": "CANAL+FOOT", + "editoChannelId": "livetv_canalplus_foot", + "lcn": 39, + "idEPG": 3501, + "epgAvailable": true, + "epgTextSubstitution": "", + "displayOrder": 39, + "csaCode": 1, + "slogan": "La plus belle chaîne de foot", + "catchupChannelId": "", + "newChannel": true, + "roamingBlocked": false, + "allowedDeviceCategories": [ + "M_ANDROID", + "M_IOS", + "M_TABLET_ANDROID", + "M_TABLET_IOS", + "W_AIRPLAY", + "W_CHROMECAST", + "W_LACLETV2", + "W_PC", + "W_SMARTTV", + "S_STB" + ], + "packages": [ + "PA_BQ_BASIC_I", + "PI_WHITELIST" + ], + "hasRightIAccess": true, + "hasRightMAccess": false, + "logos": [ + { + "definitionType": "mobileAppli", + "listLogos": [ + { + "size": "183x183", + "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_canalplus_foot%2F20230801_115557%2FmobileAppli%2Flogo_183x183.png" + } + ] + }, + { + "definitionType": "mobileAppliDark", + "listLogos": [ + { + "size": "183x183", + "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_canalplus_foot%2F20230801_115557%2FmobileAppliDark%2Flogo_183x183.png" + } + ] + }, + { + "definitionType": "webTVLogo", + "listLogos": [ + { + "size": "180x96", + "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_canalplus_foot%2F20230801_115557%2FwebTVLogo%2Flogo_180x96.png" + } + ] + }, + { + "definitionType": "webTVSquare", + "listLogos": [ + { + "size": "150x150", + "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_canalplus_foot%2F20230801_115557%2FwebTVSquare%2Flogo_150x150.png" + } + ] + } + ], + "mobileData": { + "wifiForbidden": false, + "wifiSecuredOnly": false, + "everywhereChannel": true, + "nomadismAllowed": true, + "drmLevels": [ + { + "definition": "SD", + "securedTerminal": [ + "DRM-HW", + "DRM-SW" + ], + "unsecuredTerminal": [ + "DRM-HW", + "DRM-SW" + ] + }, + { + "definition": "HD", + "securedTerminal": [ + "DRM-HW", + "DRM-SW" + ], + "unsecuredTerminal": [ + "ND" + ] + } + ] + }, + "webdeviceData": { + "nomadismAllowed": true + }, + "technicalChannels": { + "live": [ + { + "techChannelId": "400417", + "type": "CLOUDTV", + "liveTargetURLRelativePath": "livetv_acces_limite_ctv", + "usi": 400417, + "isDRMized": true, + "csa5Disabled": true + } + ], + "npvr": [], + "startover": [] + } + }, + { + "name": "CANAL+SPORT", + "editoChannelId": "livetv_canal_sport", + "lcn": 40, + "idEPG": 35, + "epgAvailable": true, + "epgTextSubstitution": "", + "displayOrder": 40, + "csaCode": 1, + "slogan": "Plus de sport d'exception", + "catchupChannelId": "", + "newChannel": true, + "roamingBlocked": true, + "allowedDeviceCategories": [ + "M_ANDROID", + "M_IOS", + "M_TABLET_ANDROID", + "M_TABLET_IOS", + "W_AIRPLAY", + "W_CHROMECAST", + "W_LACLETV2", + "W_PC", + "W_SMARTTV", + "S_STB" + ], + "packages": [ + "PA_BQ_BASIC_I", + "PI_WHITELIST" + ], + "hasRightIAccess": true, + "hasRightMAccess": false, + "logos": [ + { + "definitionType": "mobileAppli", + "listLogos": [ + { + "size": "183x183", + "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_canal_sport%2F20230801_115557%2FmobileAppli%2Flogo_183x183.png" + } + ] + }, + { + "definitionType": "mobileAppliDark", + "listLogos": [ + { + "size": "183x183", + "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_canal_sport%2F20230801_115557%2FmobileAppliDark%2Flogo_183x183.png" + } + ] + }, + { + "definitionType": "webTVLogo", + "listLogos": [ + { + "size": "180x96", + "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_canal_sport%2F20230801_115557%2FwebTVLogo%2Flogo_180x96.png" + } + ] + }, + { + "definitionType": "webTVSquare", + "listLogos": [ + { + "size": "150x150", + "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_canal_sport%2F20230801_115557%2FwebTVSquare%2Flogo_150x150.png" + } + ] + } + ], + "mobileData": { + "wifiForbidden": false, + "wifiSecuredOnly": false, + "everywhereChannel": true, + "nomadismAllowed": true, + "drmLevels": [ + { + "definition": "SD", + "securedTerminal": [ + "DRM-HW", + "DRM-SW" + ], + "unsecuredTerminal": [ + "DRM-HW", + "DRM-SW" + ] + }, + { + "definition": "HD", + "securedTerminal": [ + "DRM-HW", + "DRM-SW" + ], + "unsecuredTerminal": [ + "ND" + ] + } + ] + }, + "webdeviceData": { + "nomadismAllowed": false + }, + "technicalChannels": { + "live": [ + { + "techChannelId": "400417", + "type": "CLOUDTV", + "liveTargetURLRelativePath": "livetv_acces_limite_ctv", + "usi": 400417, + "isDRMized": true, + "csa5Disabled": true + } + ], + "npvr": [], + "startover": [] + } + }, + { + "name": "CANAL+BOX OFFICE", + "editoChannelId": "livetv_canalplus_box_office", + "lcn": 41, + "idEPG": 3779, + "epgAvailable": true, + "epgTextSubstitution": "", + "displayOrder": 41, + "csaCode": 1, + "slogan": "Les plus grands succès du cinéma récent", + "catchupChannelId": "", + "newChannel": false, + "roamingBlocked": false, + "allowedDeviceCategories": [ + "M_ANDROID", + "M_IOS", + "M_TABLET_ANDROID", + "M_TABLET_IOS", + "W_AIRPLAY", + "W_CHROMECAST", + "W_LACLETV2", + "W_PC", + "W_SMARTTV", + "S_STB" + ], + "packages": [ + "PA_BQ_BASIC_I", + "PI_WHITELIST" + ], + "hasRightIAccess": true, + "hasRightMAccess": false, + "logos": [ + { + "definitionType": "mobileAppli", + "listLogos": [ + { + "size": "183x183", + "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_canalplus_box_office%2F20230801_115557%2FmobileAppli%2Flogo_183x183.png" + } + ] + }, + { + "definitionType": "mobileAppliDark", + "listLogos": [ + { + "size": "183x183", + "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_canalplus_box_office%2F20230801_115557%2FmobileAppliDark%2Flogo_183x183.png" + } + ] + }, + { + "definitionType": "webTVLogo", + "listLogos": [ + { + "size": "180x96", + "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_canalplus_box_office%2F20230801_115557%2FwebTVLogo%2Flogo_180x96.png" + } + ] + }, + { + "definitionType": "webTVSquare", + "listLogos": [ + { + "size": "150x150", + "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_canalplus_box_office%2F20230801_115557%2FwebTVSquare%2Flogo_150x150.png" + } + ] + } + ], + "mobileData": { + "wifiForbidden": false, + "wifiSecuredOnly": false, + "everywhereChannel": true, + "nomadismAllowed": true, + "drmLevels": [ + { + "definition": "SD", + "securedTerminal": [ + "DRM-HW", + "DRM-SW" + ], + "unsecuredTerminal": [ + "DRM-HW", + "DRM-SW" + ] + }, + { + "definition": "HD", + "securedTerminal": [ + "DRM-HW", + "DRM-SW" + ], + "unsecuredTerminal": [ + "ND" + ] + } + ] + }, + "webdeviceData": { + "nomadismAllowed": true + }, + "technicalChannels": { + "live": [ + { + "techChannelId": "400417", + "type": "CLOUDTV", + "liveTargetURLRelativePath": "livetv_acces_limite_ctv", + "usi": 400417, + "isDRMized": true, + "csa5Disabled": true + } + ], + "npvr": [], + "startover": [] + } + }, + { + "name": "CANAL+GRAND ECRAN", + "editoChannelId": "livetv_canalplus_grand_ecran", + "lcn": 42, + "idEPG": 3349, + "epgAvailable": true, + "epgTextSubstitution": "", + "displayOrder": 42, + "csaCode": 1, + "slogan": "Les films à avoir vus dans une vie", + "catchupChannelId": "", + "newChannel": true, + "roamingBlocked": false, + "allowedDeviceCategories": [ + "M_ANDROID", + "M_IOS", + "M_TABLET_ANDROID", + "M_TABLET_IOS", + "W_AIRPLAY", + "W_CHROMECAST", + "W_LACLETV2", + "W_PC", + "W_SMARTTV", + "S_STB" + ], + "packages": [ + "PA_BQ_BASIC_I", + "PI_WHITELIST" + ], + "hasRightIAccess": true, + "hasRightMAccess": false, + "logos": [ + { + "definitionType": "mobileAppli", + "listLogos": [ + { + "size": "183x183", + "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_canalplus_grand_ecran%2F20230801_115557%2FmobileAppli%2Flogo_183x183.png" + } + ] + }, + { + "definitionType": "mobileAppliDark", + "listLogos": [ + { + "size": "183x183", + "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_canalplus_grand_ecran%2F20230801_115557%2FmobileAppliDark%2Flogo_183x183.png" + } + ] + }, + { + "definitionType": "webTVLogo", + "listLogos": [ + { + "size": "180x96", + "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_canalplus_grand_ecran%2F20230801_115557%2FwebTVLogo%2Flogo_180x96.png" + } + ] + }, + { + "definitionType": "webTVSquare", + "listLogos": [ + { + "size": "150x150", + "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_canalplus_grand_ecran%2F20230801_115557%2FwebTVSquare%2Flogo_150x150.png" + } + ] + } + ], + "mobileData": { + "wifiForbidden": false, + "wifiSecuredOnly": false, + "everywhereChannel": true, + "nomadismAllowed": true, + "drmLevels": [ + { + "definition": "SD", + "securedTerminal": [ + "DRM-HW", + "DRM-SW" + ], + "unsecuredTerminal": [ + "DRM-HW", + "DRM-SW" + ] + }, + { + "definition": "HD", + "securedTerminal": [ + "DRM-HW", + "DRM-SW" + ], + "unsecuredTerminal": [ + "ND" + ] + } + ] + }, + "webdeviceData": { + "nomadismAllowed": false + }, + "technicalChannels": { + "live": [ + { + "techChannelId": "400417", + "type": "CLOUDTV", + "liveTargetURLRelativePath": "livetv_acces_limite_ctv", + "usi": 400417, + "isDRMized": true, + "csa5Disabled": true + } + ], + "npvr": [], + "startover": [] + } + }, + { + "name": "CANAL+CINEMA(S)", + "editoChannelId": "livetv_canal_cinema", + "lcn": 43, + "idEPG": 33, + "epgAvailable": true, + "epgTextSubstitution": "", + "displayOrder": 43, + "csaCode": 1, + "slogan": "La passion du cinéma", + "catchupChannelId": "", + "newChannel": true, + "roamingBlocked": true, + "allowedDeviceCategories": [ + "M_ANDROID", + "M_IOS", + "M_TABLET_ANDROID", + "M_TABLET_IOS", + "W_AIRPLAY", + "W_CHROMECAST", + "W_LACLETV2", + "W_PC", + "W_SMARTTV", + "S_STB" + ], + "packages": [ + "PA_BQ_BASIC_I", + "PI_WHITELIST" + ], + "hasRightIAccess": true, + "hasRightMAccess": false, + "logos": [ + { + "definitionType": "mobileAppli", + "listLogos": [ + { + "size": "183x183", + "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_canal_cinema%2F20230801_115557%2FmobileAppli%2Flogo_183x183.png" + } + ] + }, + { + "definitionType": "mobileAppliDark", + "listLogos": [ + { + "size": "183x183", + "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_canal_cinema%2F20230801_115557%2FmobileAppliDark%2Flogo_183x183.png" + } + ] + }, + { + "definitionType": "webTVLogo", + "listLogos": [ + { + "size": "180x96", + "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_canal_cinema%2F20230801_115557%2FwebTVLogo%2Flogo_180x96.png" + } + ] + }, + { + "definitionType": "webTVSquare", + "listLogos": [ + { + "size": "150x150", + "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_canal_cinema%2F20230801_115557%2FwebTVSquare%2Flogo_150x150.png" + } + ] + } + ], + "mobileData": { + "wifiForbidden": false, + "wifiSecuredOnly": false, + "everywhereChannel": true, + "nomadismAllowed": true, + "drmLevels": [ + { + "definition": "SD", + "securedTerminal": [ + "DRM-HW", + "DRM-SW" + ], + "unsecuredTerminal": [ + "DRM-HW", + "DRM-SW" + ] + }, + { + "definition": "HD", + "securedTerminal": [ + "DRM-HW", + "DRM-SW" + ], + "unsecuredTerminal": [ + "ND" + ] + } + ] + }, + "webdeviceData": { + "nomadismAllowed": false + }, + "technicalChannels": { + "live": [ + { + "techChannelId": "400417", + "type": "CLOUDTV", + "liveTargetURLRelativePath": "livetv_acces_limite_ctv", + "usi": 400417, + "isDRMized": true, + "csa5Disabled": true + } + ], + "npvr": [], + "startover": [] + } + }, + { + "name": "CANAL+SERIES", + "editoChannelId": "livetv_canalplus_series", + "lcn": 44, + "idEPG": 1563, + "epgAvailable": true, + "epgTextSubstitution": "", + "displayOrder": 44, + "csaCode": 1, + "slogan": "Toujours plus de grandes séries", + "catchupChannelId": "", + "newChannel": true, + "roamingBlocked": false, + "allowedDeviceCategories": [ + "M_ANDROID", + "M_IOS", + "M_TABLET_ANDROID", + "M_TABLET_IOS", + "W_AIRPLAY", + "W_CHROMECAST", + "W_LACLETV2", + "W_PC", + "W_SMARTTV", + "S_STB" + ], + "packages": [ + "PA_BQ_BASIC_I", + "PI_WHITELIST" + ], + "hasRightIAccess": true, + "hasRightMAccess": false, + "logos": [ + { + "definitionType": "mobileAppli", + "listLogos": [ + { + "size": "183x183", + "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_canalplus_series%2F20230801_125104%2FmobileAppli%2Flogo_183x183.png" + } + ] + }, + { + "definitionType": "mobileAppliDark", + "listLogos": [ + { + "size": "183x183", + "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_canalplus_series%2F20230801_125104%2FmobileAppliDark%2Flogo_183x183.png" + } + ] + }, + { + "definitionType": "webTVLogo", + "listLogos": [ + { + "size": "180x96", + "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_canalplus_series%2F20230801_125104%2FwebTVLogo%2Flogo_180x96.png" + } + ] + }, + { + "definitionType": "webTVSquare", + "listLogos": [ + { + "size": "150x150", + "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_canalplus_series%2F20230801_125104%2FwebTVSquare%2Flogo_150x150.png" + } + ] + } + ], + "mobileData": { + "wifiForbidden": false, + "wifiSecuredOnly": false, + "everywhereChannel": true, + "nomadismAllowed": true, + "drmLevels": [ + { + "definition": "SD", + "securedTerminal": [ + "DRM-HW", + "DRM-SW" + ], + "unsecuredTerminal": [ + "DRM-HW", + "DRM-SW" + ] + }, + { + "definition": "HD", + "securedTerminal": [ + "DRM-HW", + "DRM-SW" + ], + "unsecuredTerminal": [ + "ND" + ] + } + ] + }, + "webdeviceData": { + "nomadismAllowed": false + }, + "technicalChannels": { + "live": [ + { + "techChannelId": "400417", + "type": "CLOUDTV", + "liveTargetURLRelativePath": "livetv_acces_limite_ctv", + "usi": 400417, + "isDRMized": true, + "csa5Disabled": true + } + ], + "npvr": [], + "startover": [] + } + }, + { + "name": "CANAL+DOCS", + "editoChannelId": "livetv_canalplus_docs", + "lcn": 45, + "idEPG": 3347, + "epgAvailable": true, + "epgTextSubstitution": "", + "displayOrder": 45, + "csaCode": 1, + "slogan": "Et le monde se révèle", + "catchupChannelId": "", + "newChannel": true, + "roamingBlocked": false, + "allowedDeviceCategories": [ + "M_ANDROID", + "M_IOS", + "M_TABLET_ANDROID", + "M_TABLET_IOS", + "W_AIRPLAY", + "W_CHROMECAST", + "W_LACLETV2", + "W_PC", + "W_SMARTTV", + "S_STB" + ], + "packages": [ + "PA_BQ_BASIC_I", + "PI_WHITELIST" + ], + "hasRightIAccess": true, + "hasRightMAccess": false, + "logos": [ + { + "definitionType": "mobileAppli", + "listLogos": [ + { + "size": "183x183", + "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_canalplus_docs%2F20230801_115557%2FmobileAppli%2Flogo_183x183.png" + } + ] + }, + { + "definitionType": "mobileAppliDark", + "listLogos": [ + { + "size": "183x183", + "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_canalplus_docs%2F20230801_115557%2FmobileAppliDark%2Flogo_183x183.png" + } + ] + }, + { + "definitionType": "webTVLogo", + "listLogos": [ + { + "size": "180x96", + "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_canalplus_docs%2F20230801_115557%2FwebTVLogo%2Flogo_180x96.png" + } + ] + }, + { + "definitionType": "webTVSquare", + "listLogos": [ + { + "size": "150x150", + "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_canalplus_docs%2F20230801_115557%2FwebTVSquare%2Flogo_150x150.png" + } + ] + } + ], + "mobileData": { + "wifiForbidden": false, + "wifiSecuredOnly": false, + "everywhereChannel": true, + "nomadismAllowed": true, + "drmLevels": [ + { + "definition": "SD", + "securedTerminal": [ + "DRM-HW", + "DRM-SW" + ], + "unsecuredTerminal": [ + "DRM-HW", + "DRM-SW" + ] + }, + { + "definition": "HD", + "securedTerminal": [ + "DRM-HW", + "DRM-SW" + ], + "unsecuredTerminal": [ + "ND" + ] + } + ] + }, + "webdeviceData": { + "nomadismAllowed": false + }, + "technicalChannels": { + "live": [ + { + "techChannelId": "400417", + "type": "CLOUDTV", + "liveTargetURLRelativePath": "livetv_acces_limite_ctv", + "usi": 400417, + "isDRMized": true, + "csa5Disabled": true + } + ], + "npvr": [], + "startover": [] + } + }, + { + "name": "CANAL+kids", + "editoChannelId": "livetv_canalplus_kids", + "lcn": 46, + "idEPG": 3348, + "epgAvailable": true, + "epgTextSubstitution": "", + "displayOrder": 46, + "csaCode": 1, + "slogan": "voit grand pour les petits", + "catchupChannelId": "", + "newChannel": true, + "roamingBlocked": false, + "allowedDeviceCategories": [ + "M_ANDROID", + "M_IOS", + "M_TABLET_ANDROID", + "M_TABLET_IOS", + "W_AIRPLAY", + "W_CHROMECAST", + "W_LACLETV2", + "W_PC", + "W_SMARTTV", + "S_STB" + ], + "packages": [ + "PA_BQ_BASIC_I", + "PI_WHITELIST" + ], + "hasRightIAccess": true, + "hasRightMAccess": false, + "logos": [ + { + "definitionType": "mobileAppli", + "listLogos": [ + { + "size": "183x183", + "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_canalplus_kids%2F20230801_125104%2FmobileAppli%2Flogo_183x183.png" + } + ] + }, + { + "definitionType": "mobileAppliDark", + "listLogos": [ + { + "size": "183x183", + "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_canalplus_kids%2F20230801_125104%2FmobileAppliDark%2Flogo_183x183.png" + } + ] + }, + { + "definitionType": "webTVLogo", + "listLogos": [ + { + "size": "180x96", + "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_canalplus_kids%2F20230801_125104%2FwebTVLogo%2Flogo_180x96.png" + } + ] + }, + { + "definitionType": "webTVSquare", + "listLogos": [ + { + "size": "150x150", + "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_canalplus_kids%2F20230801_125104%2FwebTVSquare%2Flogo_150x150.png" + } + ] + } + ], + "mobileData": { + "wifiForbidden": false, + "wifiSecuredOnly": false, + "everywhereChannel": true, + "nomadismAllowed": true, + "drmLevels": [ + { + "definition": "SD", + "securedTerminal": [ + "DRM-HW", + "DRM-SW" + ], + "unsecuredTerminal": [ + "DRM-HW", + "DRM-SW" + ] + }, + { + "definition": "HD", + "securedTerminal": [ + "DRM-HW", + "DRM-SW" + ], + "unsecuredTerminal": [ + "ND" + ] + } + ] + }, + "webdeviceData": { + "nomadismAllowed": false + }, + "technicalChannels": { + "live": [ + { + "techChannelId": "400417", + "type": "CLOUDTV", + "liveTargetURLRelativePath": "livetv_acces_limite_ctv", + "usi": 400417, + "isDRMized": true, + "csa5Disabled": true + } + ], + "npvr": [], + "startover": [] + } + }, + { + "name": "BEIN SPORTS 1", + "editoChannelId": "livetv_beinsport1", + "lcn": 47, + "idEPG": 1290, + "epgAvailable": true, + "epgTextSubstitution": "", + "displayOrder": 47, + "csaCode": 1, + "slogan": "Le plus grand des spectacles", + "catchupChannelId": "catchuptv_BEINSPORTS", + "newChannel": false, + "roamingBlocked": true, + "allowedDeviceCategories": [ + "M_ANDROID", + "M_IOS", + "M_TABLET_ANDROID", + "M_TABLET_IOS", + "W_AIRPLAY", + "W_CHROMECAST", + "W_LACLETV2", + "W_SMARTTV", + "W_PC", + "S_STB" + ], + "packages": [ + "PA_Pack_Sport", + "PA_bouquet_bein_disneyplus", + "PA_pack_intense", + "PA_bouquet_divertissement_fibre", + "PA_beIN_SPORT", + "PA_bouquet_sport", + "PA_bouquet_divertissement_adsl", + "PI_WHITELIST" + ], + "hasRightIAccess": true, + "hasRightMAccess": false, + "logos": [ + { + "definitionType": "mobileAppli", + "listLogos": [ + { + "size": "183x183", + "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_beinsport1%2F20180417_151324%2FmobileAppli%2Flogo_183x183.png" + } + ] + }, + { + "definitionType": "mobileAppliDark", + "listLogos": [ + { + "size": "183x183", + "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_beinsport1%2F20180417_151324%2FmobileAppliDark%2Flogo_183x183.png" + } + ] + }, + { + "definitionType": "webTVLogo", + "listLogos": [ + { + "size": "180x96", + "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_beinsport1%2F20180417_151324%2FwebTVLogo%2Flogo_180x96.png" + } + ] + }, + { + "definitionType": "webTVSquare", + "listLogos": [ + { + "size": "150x150", + "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_beinsport1%2F20180417_151324%2FwebTVSquare%2Flogo_150x150.png" + } + ] + } + ], + "mobileData": { + "wifiForbidden": false, + "wifiSecuredOnly": false, + "everywhereChannel": true, + "nomadismAllowed": true, + "drmLevels": [ + { + "definition": "SD", + "securedTerminal": [ + "DRM-HW", + "DRM-SW" + ], + "unsecuredTerminal": [ + "DRM-HW", + "DRM-SW" + ] + }, + { + "definition": "HD", + "securedTerminal": [ + "DRM-HW", + "DRM-SW" + ], + "unsecuredTerminal": [ + "ND" + ] + } + ] + }, + "webdeviceData": { + "nomadismAllowed": true + }, + "technicalChannels": { + "live": [ + { + "techChannelId": "400025", + "type": "CLOUDTV", + "liveTargetURLRelativePath": "livetv_beinsports1_ctv", + "usi": 400025, + "isDRMized": true, + "csa5Disabled": true + } + ], + "npvr": [ + { + "externalId": "livetv_beinsports1_ctv", + "techChannelId": "400025", + "type": "CLOUDTV", + "usi": 400025, + "isDRMized": true, + "antiAdskipping": "DEACTIVATED", + "csa5Disabled": true + } + ], + "startover": [ + { + "externalId": "livetv_beinsports1_ctv", + "techChannelId": "400025", + "type": "CLOUDTV", + "usi": 400025, + "isDRMized": true, + "antiAdskipping": "DEACTIVATED", + "csa5Disabled": true + } + ] + } + }, + { + "name": "BEIN SPORTS 2", + "editoChannelId": "livetv_beinsport2", + "lcn": 48, + "idEPG": 1304, + "epgAvailable": true, + "epgTextSubstitution": "", + "displayOrder": 48, + "csaCode": 1, + "slogan": "Le plus grand des spectacles", + "catchupChannelId": "catchuptv_BEINSPORTS", + "newChannel": false, + "roamingBlocked": true, + "allowedDeviceCategories": [ + "M_ANDROID", + "M_IOS", + "M_TABLET_ANDROID", + "M_TABLET_IOS", + "W_AIRPLAY", + "W_CHROMECAST", + "W_LACLETV2", + "W_SMARTTV", + "W_PC", + "S_STB" + ], + "packages": [ + "PA_Pack_Sport", + "PA_bouquet_bein_disneyplus", + "PA_pack_intense", + "PA_bouquet_divertissement_fibre", + "PA_beIN_SPORT", + "PA_bouquet_sport", + "PA_bouquet_divertissement_adsl", + "PI_WHITELIST" + ], + "hasRightIAccess": true, + "hasRightMAccess": false, + "logos": [ + { + "definitionType": "mobileAppli", + "listLogos": [ + { + "size": "183x183", + "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_beinsport2%2F20180417_151448%2FmobileAppli%2Flogo_183x183.png" + } + ] + }, + { + "definitionType": "mobileAppliDark", + "listLogos": [ + { + "size": "183x183", + "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_beinsport2%2F20180417_151448%2FmobileAppliDark%2Flogo_183x183.png" + } + ] + }, + { + "definitionType": "webTVLogo", + "listLogos": [ + { + "size": "180x96", + "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_beinsport2%2F20180417_151448%2FwebTVLogo%2Flogo_180x96.png" + } + ] + }, + { + "definitionType": "webTVSquare", + "listLogos": [ + { + "size": "150x150", + "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_beinsport2%2F20180417_151448%2FwebTVSquare%2Flogo_150x150.png" + } + ] + } + ], + "mobileData": { + "wifiForbidden": false, + "wifiSecuredOnly": false, + "everywhereChannel": true, + "nomadismAllowed": true, + "drmLevels": [ + { + "definition": "SD", + "securedTerminal": [ + "DRM-HW", + "DRM-SW" + ], + "unsecuredTerminal": [ + "DRM-HW", + "DRM-SW" + ] + }, + { + "definition": "HD", + "securedTerminal": [ + "DRM-HW", + "DRM-SW" + ], + "unsecuredTerminal": [ + "ND" + ] + } + ] + }, + "webdeviceData": { + "nomadismAllowed": true + }, + "technicalChannels": { + "live": [ + { + "techChannelId": "400037", + "type": "CLOUDTV", + "liveTargetURLRelativePath": "livetv_beinsports_2_ctv", + "usi": 400037, + "isDRMized": true, + "csa5Disabled": true + } + ], + "npvr": [ + { + "externalId": "livetv_beinsports_2_ctv", + "techChannelId": "400037", + "type": "CLOUDTV", + "usi": 400037, + "isDRMized": true, + "antiAdskipping": "DEACTIVATED", + "csa5Disabled": true + } + ], + "startover": [ + { + "externalId": "livetv_beinsports_2_ctv", + "techChannelId": "400037", + "type": "CLOUDTV", + "usi": 400037, + "isDRMized": true, + "antiAdskipping": "DEACTIVATED", + "csa5Disabled": true + } + ] + } + }, + { + "name": "BEIN SPORTS 3", + "editoChannelId": "livetv_beinsportsmax3", + "lcn": 49, + "idEPG": 1335, + "epgAvailable": true, + "epgTextSubstitution": "", + "displayOrder": 49, + "csaCode": 1, + "slogan": "Le plus grand des spectacles", + "catchupChannelId": "catchuptv_BEINSPORTS", + "newChannel": false, + "roamingBlocked": true, + "allowedDeviceCategories": [ + "M_ANDROID", + "M_IOS", + "M_TABLET_ANDROID", + "M_TABLET_IOS", + "W_AIRPLAY", + "W_CHROMECAST", + "W_LACLETV2", + "W_SMARTTV", + "W_PC", + "S_STB" + ], + "packages": [ + "PA_Pack_Sport", + "PA_bouquet_bein_disneyplus", + "PA_pack_intense", + "PA_bouquet_divertissement_fibre", + "PA_beIN_SPORT", + "PA_bouquet_sport", + "PA_bouquet_divertissement_adsl", + "PI_WHITELIST" + ], + "hasRightIAccess": true, + "hasRightMAccess": false, + "logos": [ + { + "definitionType": "mobileAppli", + "listLogos": [ + { + "size": "183x183", + "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_beinsportsmax3%2F20180417_151549%2FmobileAppli%2Flogo_183x183.png" + } + ] + }, + { + "definitionType": "mobileAppliDark", + "listLogos": [ + { + "size": "183x183", + "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_beinsportsmax3%2F20180417_151549%2FmobileAppliDark%2Flogo_183x183.png" + } + ] + }, + { + "definitionType": "webTVLogo", + "listLogos": [ + { + "size": "180x96", + "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_beinsportsmax3%2F20180417_151549%2FwebTVLogo%2Flogo_180x96.png" + } + ] + }, + { + "definitionType": "webTVSquare", + "listLogos": [ + { + "size": "150x150", + "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_beinsportsmax3%2F20180417_151549%2FwebTVSquare%2Flogo_150x150.png" + } + ] + } + ], + "mobileData": { + "wifiForbidden": false, + "wifiSecuredOnly": false, + "everywhereChannel": true, + "nomadismAllowed": true, + "drmLevels": [ + { + "definition": "SD", + "securedTerminal": [ + "DRM-HW", + "DRM-SW" + ], + "unsecuredTerminal": [ + "DRM-HW", + "DRM-SW" + ] + }, + { + "definition": "HD", + "securedTerminal": [ + "DRM-HW", + "DRM-SW" + ], + "unsecuredTerminal": [ + "ND" + ] + } + ] + }, + "webdeviceData": { + "nomadismAllowed": true + }, + "technicalChannels": { + "live": [ + { + "techChannelId": "400038", + "type": "CLOUDTV", + "liveTargetURLRelativePath": "livetv_beinsports_3_ctv", + "usi": 400038, + "isDRMized": true, + "csa5Disabled": true + } + ], + "npvr": [ + { + "externalId": "livetv_beinsports_3_ctv", + "techChannelId": "400038", + "type": "CLOUDTV", + "usi": 400038, + "isDRMized": true, + "antiAdskipping": "DEACTIVATED", + "csa5Disabled": true + } + ], + "startover": [ + { + "externalId": "livetv_beinsports_3_ctv", + "techChannelId": "400038", + "type": "CLOUDTV", + "usi": 400038, + "isDRMized": true, + "antiAdskipping": "DEACTIVATED", + "csa5Disabled": true + } + ] + } + }, + { + "name": "OCS MAX", + "editoChannelId": "livetv_orange_cine_max", + "lcn": 51, + "idEPG": 730, + "epgAvailable": true, + "epgTextSubstitution": "", + "displayOrder": 51, + "csaCode": 1, + "slogan": "Le grand spectacle pour toute la famille", + "catchupChannelId": "catchuptv_ocsgo", + "newChannel": false, + "roamingBlocked": true, + "allowedDeviceCategories": [ + "M_ANDROID", + "M_IOS", + "M_TABLET_ANDROID", + "M_TABLET_IOS", + "W_AIRPLAY", + "W_CHROMECAST", + "W_LACLETV2", + "W_PC", + "W_SMARTTV", + "S_STB" + ], + "packages": [ + "PA_pack_Divertissement", + "PA_pack_cineseries", + "PA_orange_cinema_series", + "PA_BQ_OCS_M", + "PA_pack_intense", + "PA_bouquet_divertissement_fibre", + "PA_bouquet_cineseries", + "PA_bouquet_divertissement_adsl", + "PI_WHITELIST" + ], + "hasRightIAccess": true, + "hasRightMAccess": true, + "logos": [ + { + "definitionType": "mobileAppli", + "listLogos": [ + { + "size": "183x183", + "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_orange_cine_max%2F20221212_170133%2FmobileAppli%2Flogo_183x183.png" + } + ] + }, + { + "definitionType": "mobileAppliDark", + "listLogos": [ + { + "size": "183x183", + "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_orange_cine_max%2F20221212_170133%2FmobileAppliDark%2Flogo_183x183.png" + } + ] + }, + { + "definitionType": "webTVLogo", + "listLogos": [ + { + "size": "180x96", + "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_orange_cine_max%2F20221212_170133%2FwebTVLogo%2Flogo_180x96.png" + } + ] + }, + { + "definitionType": "webTVSquare", + "listLogos": [ + { + "size": "150x150", + "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_orange_cine_max%2F20221212_170133%2FwebTVSquare%2Flogo_150x150.png" + } + ] + } + ], + "mobileData": { + "wifiForbidden": false, + "wifiSecuredOnly": true, + "everywhereChannel": true, + "nomadismAllowed": true, + "drmLevels": [ + { + "definition": "SD", + "securedTerminal": [ + "DRM-HW", + "DRM-SW" + ], + "unsecuredTerminal": [ + "DRM-HW", + "DRM-SW" + ] + }, + { + "definition": "HD", + "securedTerminal": [ + "DRM-HW" + ], + "unsecuredTerminal": [ + "ND" + ] + } + ] + }, + "webdeviceData": { + "nomadismAllowed": true + }, + "technicalChannels": { + "live": [ + { + "techChannelId": "400026", + "type": "CLOUDTV", + "liveTargetURLRelativePath": "livetv_ocsmax_ctv", + "usi": 400026, + "isDRMized": true, + "csa5Disabled": true + } + ], + "npvr": [ + { + "externalId": "livetv_ocsmax_ctv", + "techChannelId": "400026", + "type": "CLOUDTV", + "usi": 400026, + "isDRMized": true, + "antiAdskipping": "DEACTIVATED", + "csa5Disabled": true + } + ], + "startover": [ + { + "externalId": "livetv_ocsmax_ctv", + "techChannelId": "400026", + "type": "CLOUDTV", + "usi": 400026, + "isDRMized": true, + "antiAdskipping": "DEACTIVATED", + "csa5Disabled": true + } + ] + } + }, + { + "name": "OCS PULP", + "editoChannelId": "livetv_orange_cine_choc", + "lcn": 52, + "idEPG": 732, + "epgAvailable": true, + "epgTextSubstitution": "", + "displayOrder": 52, + "csaCode": 1, + "slogan": "Sensations fortes et cinéma indé", + "catchupChannelId": "catchuptv_ocsgo", + "newChannel": true, + "roamingBlocked": true, + "allowedDeviceCategories": [ + "M_ANDROID", + "M_IOS", + "M_TABLET_ANDROID", + "M_TABLET_IOS", + "W_AIRPLAY", + "W_CHROMECAST", + "W_LACLETV2", + "W_PC", + "W_SMARTTV", + "S_STB" + ], + "packages": [ + "PA_pack_Divertissement", + "PA_pack_cineseries", + "PA_orange_cinema_series", + "PA_BQ_OCS_M", + "PA_pack_intense", + "PA_bouquet_divertissement_fibre", + "PA_bouquet_cineseries", + "PA_bouquet_divertissement_adsl", + "PI_WHITELIST" + ], + "hasRightIAccess": true, + "hasRightMAccess": true, + "logos": [ + { + "definitionType": "mobileAppli", + "listLogos": [ + { + "size": "183x183", + "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_orange_cine_choc%2F20230125_161654%2FmobileAppli%2Flogo_183x183.png" + } + ] + }, + { + "definitionType": "mobileAppliDark", + "listLogos": [ + { + "size": "183x183", + "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_orange_cine_choc%2F20230125_161654%2FmobileAppliDark%2Flogo_183x183.png" + } + ] + }, + { + "definitionType": "webTVLogo", + "listLogos": [ + { + "size": "180x96", + "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_orange_cine_choc%2F20230125_161654%2FwebTVLogo%2Flogo_180x96.png" + } + ] + }, + { + "definitionType": "webTVSquare", + "listLogos": [ + { + "size": "150x150", + "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_orange_cine_choc%2F20230125_161654%2FwebTVSquare%2Flogo_150x150.png" + } + ] + } + ], + "mobileData": { + "wifiForbidden": false, + "wifiSecuredOnly": true, + "everywhereChannel": true, + "nomadismAllowed": true, + "drmLevels": [ + { + "definition": "SD", + "securedTerminal": [ + "DRM-HW", + "DRM-SW" + ], + "unsecuredTerminal": [ + "DRM-HW", + "DRM-SW" + ] + }, + { + "definition": "HD", + "securedTerminal": [ + "DRM-HW" + ], + "unsecuredTerminal": [ + "ND" + ] + } + ] + }, + "webdeviceData": { + "nomadismAllowed": true + }, + "technicalChannels": { + "live": [ + { + "techChannelId": "400027", + "type": "CLOUDTV", + "liveTargetURLRelativePath": "livetv_ocschoc_ctv", + "usi": 400027, + "isDRMized": true, + "csa5Disabled": true + } + ], + "npvr": [ + { + "externalId": "livetv_ocschoc_ctv", + "techChannelId": "400027", + "type": "CLOUDTV", + "usi": 400027, + "isDRMized": true, + "antiAdskipping": "DEACTIVATED", + "csa5Disabled": true + } + ], + "startover": [ + { + "externalId": "livetv_ocschoc_ctv", + "techChannelId": "400027", + "type": "CLOUDTV", + "usi": 400027, + "isDRMized": true, + "antiAdskipping": "DEACTIVATED", + "csa5Disabled": true + } + ] + } + }, + { + "name": "OCS GEANTS", + "editoChannelId": "livetv_orange_cine_geants", + "lcn": 53, + "idEPG": 734, + "epgAvailable": true, + "epgTextSubstitution": "", + "displayOrder": 53, + "csaCode": 1, + "slogan": "La chaîne des films de légende", + "catchupChannelId": "catchuptv_ocsgo", + "newChannel": false, + "roamingBlocked": true, + "allowedDeviceCategories": [ + "M_ANDROID", + "M_IOS", + "M_TABLET_ANDROID", + "M_TABLET_IOS", + "W_AIRPLAY", + "W_CHROMECAST", + "W_LACLETV2", + "W_PC", + "W_SMARTTV", + "S_STB" + ], + "packages": [ + "PA_pack_Divertissement", + "PA_pack_cineseries", + "PA_orange_cinema_series", + "PA_BQ_OCS_M", + "PA_pack_intense", + "PA_bouquet_divertissement_fibre", + "PA_bouquet_cineseries", + "PA_bouquet_divertissement_adsl", + "PI_WHITELIST" + ], + "hasRightIAccess": true, + "hasRightMAccess": true, + "logos": [ + { + "definitionType": "mobileAppli", + "listLogos": [ + { + "size": "183x183", + "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_orange_cine_geants%2F20221212_170133%2FmobileAppli%2Flogo_183x183.png" + } + ] + }, + { + "definitionType": "mobileAppliDark", + "listLogos": [ + { + "size": "183x183", + "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_orange_cine_geants%2F20221212_170133%2FmobileAppliDark%2Flogo_183x183.png" + } + ] + }, + { + "definitionType": "webTVLogo", + "listLogos": [ + { + "size": "180x96", + "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_orange_cine_geants%2F20221212_170133%2FwebTVLogo%2Flogo_180x96.png" + } + ] + }, + { + "definitionType": "webTVSquare", + "listLogos": [ + { + "size": "150x150", + "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_orange_cine_geants%2F20221212_170133%2FwebTVSquare%2Flogo_150x150.png" + } + ] + } + ], + "mobileData": { + "wifiForbidden": false, + "wifiSecuredOnly": true, + "everywhereChannel": true, + "nomadismAllowed": true, + "drmLevels": [ + { + "definition": "SD", + "securedTerminal": [ + "DRM-HW", + "DRM-SW" + ], + "unsecuredTerminal": [ + "DRM-HW", + "DRM-SW" + ] + }, + { + "definition": "HD", + "securedTerminal": [ + "DRM-HW" + ], + "unsecuredTerminal": [ + "ND" + ] + } + ] + }, + "webdeviceData": { + "nomadismAllowed": true + }, + "technicalChannels": { + "live": [ + { + "techChannelId": "400040", + "type": "CLOUDTV", + "liveTargetURLRelativePath": "livetv_ocs_geants_ctv", + "usi": 400040, + "isDRMized": true, + "csa5Disabled": true + } + ], + "npvr": [ + { + "externalId": "livetv_ocs_geants_ctv", + "techChannelId": "400040", + "type": "CLOUDTV", + "usi": 400040, + "isDRMized": true, + "antiAdskipping": "DEACTIVATED", + "csa5Disabled": true + } + ], + "startover": [ + { + "externalId": "livetv_ocs_geants_ctv", + "techChannelId": "400040", + "type": "CLOUDTV", + "usi": 400040, + "isDRMized": true, + "antiAdskipping": "DEACTIVATED", + "csa5Disabled": true + } + ] + } + }, + { + "name": "PARAMOUNT CHANNEL", + "editoChannelId": "livetv_paramount", + "lcn": 55, + "idEPG": 1562, + "epgAvailable": true, + "epgTextSubstitution": "", + "displayOrder": 55, + "csaCode": 1, + "slogan": "La chaîne made in Hollywood", + "catchupChannelId": "catchuptv_paramount", + "newChannel": true, + "roamingBlocked": true, + "allowedDeviceCategories": [ + "M_ANDROID", + "M_IOS", + "M_TABLET_ANDROID", + "M_TABLET_IOS", + "W_AIRPLAY", + "W_CHROMECAST", + "W_LACLETV2", + "W_SMARTTV", + "W_PC", + "S_STB" + ], + "packages": [ + "PA_pack_Divertissement", + "PA_pack_cineseries", + "PA_bouquet_famille_disneyplus", + "PA_bouquet_cine", + "PA_pack_intense", + "PA_bouquet_divertissement_fibre", + "PA_bouquet_cineseries", + "PA_bouquet_famille_max", + "PA_bouquet_divertissement_adsl", + "PI_WHITELIST" + ], + "hasRightIAccess": true, + "hasRightMAccess": false, + "logos": [ + { + "definitionType": "mobileAppli", + "listLogos": [ + { + "size": "183x183", + "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_paramount%2F20151026_092415%2FmobileAppli%2Flogo_183x183.png" + } + ] + }, + { + "definitionType": "mobileAppliDark", + "listLogos": [ + { + "size": "183x183", + "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_paramount%2F20151026_092415%2FmobileAppliDark%2Flogo_183x183.png" + } + ] + }, + { + "definitionType": "webTVLogo", + "listLogos": [ + { + "size": "180x96", + "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_paramount%2F20151026_092415%2FwebTVLogo%2Flogo_180x96.png" + } + ] + }, + { + "definitionType": "webTVSquare", + "listLogos": [ + { + "size": "150x150", + "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_paramount%2F20151026_092415%2FwebTVSquare%2Flogo_150x150.png" + } + ] + } + ], + "mobileData": { + "wifiForbidden": false, + "wifiSecuredOnly": false, + "everywhereChannel": true, + "nomadismAllowed": true, + "drmLevels": [ + { + "definition": "SD", + "securedTerminal": [ + "DRM-HW", + "DRM-SW" + ], + "unsecuredTerminal": [ + "DRM-HW", + "DRM-SW" + ] + }, + { + "definition": "HD", + "securedTerminal": [ + "DRM-HW", + "DRM-SW" + ], + "unsecuredTerminal": [ + "ND" + ] + } + ] + }, + "webdeviceData": { + "nomadismAllowed": true + }, + "technicalChannels": { + "live": [ + { + "techChannelId": "400078", + "type": "CLOUDTV", + "liveTargetURLRelativePath": "livetv_paramount_channel_ctv", + "usi": 400078, + "isDRMized": true, + "csa5Disabled": true + } + ], + "npvr": [ + { + "externalId": "livetv_paramount_channel_ctv", + "techChannelId": "400078", + "type": "CLOUDTV", + "usi": 400078, + "isDRMized": true, + "antiAdskipping": "DEACTIVATED", + "csa5Disabled": true + } + ], + "startover": [] + } + }, + { + "name": "PARAMOUNT CHANNEL DECALE", + "editoChannelId": "livetv_paramountdec", + "lcn": 56, + "idEPG": 2072, + "epgAvailable": true, + "epgTextSubstitution": "", + "displayOrder": 56, + "csaCode": 1, + "slogan": "2 fois plus de films made in Hollywood", + "catchupChannelId": "", + "newChannel": true, + "roamingBlocked": true, + "allowedDeviceCategories": [ + "M_ANDROID", + "M_IOS", + "M_TABLET_ANDROID", + "M_TABLET_IOS", + "W_AIRPLAY", + "W_CHROMECAST", + "W_LACLETV2", + "W_SMARTTV", + "W_PC", + "S_STB" + ], + "packages": [ + "PA_pack_Divertissement", + "PA_pack_cineseries", + "PA_bouquet_famille_disneyplus", + "PA_bouquet_cine", + "PA_pack_intense", + "PA_bouquet_divertissement_fibre", + "PA_bouquet_cineseries", + "PA_bouquet_famille_max", + "PA_bouquet_divertissement_adsl", + "PI_WHITELIST" + ], + "hasRightIAccess": true, + "hasRightMAccess": false, + "logos": [ + { + "definitionType": "mobileAppli", + "listLogos": [ + { + "size": "183x183", + "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_paramountdec%2F20170807_155154%2FmobileAppli%2Flogo_183x183.png" + } + ] + }, + { + "definitionType": "mobileAppliDark", + "listLogos": [ + { + "size": "183x183", + "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_paramountdec%2F20170807_155154%2FmobileAppliDark%2Flogo_183x183.png" + } + ] + }, + { + "definitionType": "webTVLogo", + "listLogos": [ + { + "size": "180x96", + "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_paramountdec%2F20170807_155154%2FwebTVLogo%2Flogo_180x96.png" + } + ] + }, + { + "definitionType": "webTVSquare", + "listLogos": [ + { + "size": "150x150", + "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_paramountdec%2F20170807_155154%2FwebTVSquare%2Flogo_150x150.png" + } + ] + } + ], + "mobileData": { + "wifiForbidden": false, + "wifiSecuredOnly": false, + "everywhereChannel": true, + "nomadismAllowed": true, + "drmLevels": [ + { + "definition": "SD", + "securedTerminal": [ + "DRM-HW", + "DRM-SW" + ], + "unsecuredTerminal": [ + "DRM-HW", + "DRM-SW" + ] + }, + { + "definition": "HD", + "securedTerminal": [ + "DRM-HW", + "DRM-SW" + ], + "unsecuredTerminal": [ + "ND" + ] + } + ] + }, + "webdeviceData": { + "nomadismAllowed": true + }, + "technicalChannels": { + "live": [ + { + "techChannelId": "400079", + "type": "CLOUDTV", + "liveTargetURLRelativePath": "livetv_paramount_channel_decale_ctv", + "usi": 400079, + "isDRMized": true, + "csa5Disabled": true + } + ], + "npvr": [ + { + "externalId": "livetv_paramount_channel_decale_ctv", + "techChannelId": "400079", + "type": "CLOUDTV", + "usi": 400079, + "isDRMized": true, + "antiAdskipping": "DEACTIVATED", + "csa5Disabled": true + } + ], + "startover": [] + } + }, + { + "name": "TCM CINEMA", + "editoChannelId": "livetv_tcm", + "lcn": 57, + "idEPG": 185, + "epgAvailable": true, + "epgTextSubstitution": "", + "displayOrder": 57, + "csaCode": 1, + "slogan": "Le meilleur du cinéma américain", + "catchupChannelId": "catchuptv_tcm", + "newChannel": false, + "roamingBlocked": true, + "allowedDeviceCategories": [ + "M_ANDROID", + "M_IOS", + "M_TABLET_ANDROID", + "M_TABLET_IOS", + "W_AIRPLAY", + "W_CHROMECAST", + "W_LACLETV2", + "W_SMARTTV", + "W_PC", + "S_STB" + ], + "packages": [ + "PA_pack_Divertissement", + "PA_pack_cineseries", + "PA_bouquet_cine", + "PA_pack_intense", + "PA_bouquet_divertissement_fibre", + "PA_bouquet_cineseries", + "PA_bouquet_divertissement_adsl", + "PI_WHITELIST" + ], + "hasRightIAccess": true, + "hasRightMAccess": false, + "logos": [ + { + "definitionType": "mobileAppli", + "listLogos": [ + { + "size": "183x183", + "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_tcm%2F20190822_090621%2FmobileAppli%2Flogo_183x183.png" + } + ] + }, + { + "definitionType": "mobileAppliDark", + "listLogos": [ + { + "size": "183x183", + "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_tcm%2F20190822_090621%2FmobileAppliDark%2Flogo_183x183.png" + } + ] + }, + { + "definitionType": "webTVLogo", + "listLogos": [ + { + "size": "180x96", + "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_tcm%2F20190822_090621%2FwebTVLogo%2Flogo_180x96.png" + } + ] + }, + { + "definitionType": "webTVSquare", + "listLogos": [ + { + "size": "150x150", + "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_tcm%2F20190822_090621%2FwebTVSquare%2Flogo_150x150.png" + } + ] + } + ], + "mobileData": { + "wifiForbidden": false, + "wifiSecuredOnly": false, + "everywhereChannel": true, + "nomadismAllowed": true, + "drmLevels": [ + { + "definition": "SD", + "securedTerminal": [ + "DRM-HW", + "DRM-SW" + ], + "unsecuredTerminal": [ + "DRM-HW", + "DRM-SW" + ] + }, + { + "definition": "HD", + "securedTerminal": [ + "DRM-HW", + "DRM-SW" + ], + "unsecuredTerminal": [ + "ND" + ] + } + ] + }, + "webdeviceData": { + "nomadismAllowed": true + }, + "technicalChannels": { + "live": [ + { + "techChannelId": "400028", + "type": "CLOUDTV", + "liveTargetURLRelativePath": "livetv_tcmcinema_ctv", + "usi": 400028, + "isDRMized": true, + "csa5Disabled": true + } + ], + "npvr": [ + { + "externalId": "livetv_tcmcinema_ctv", + "techChannelId": "400028", + "type": "CLOUDTV", + "usi": 400028, + "isDRMized": true, + "antiAdskipping": "DEACTIVATED", + "csa5Disabled": true + } + ], + "startover": [] + } + }, + { + "name": "ACTION", + "editoChannelId": "livetv_action", + "lcn": 58, + "idEPG": 10, + "epgAvailable": true, + "epgTextSubstitution": "", + "displayOrder": 58, + "csaCode": 1, + "slogan": "La chaîne 100% adrénaline", + "catchupChannelId": "catchuptv_action", + "newChannel": true, + "roamingBlocked": true, + "allowedDeviceCategories": [ + "M_ANDROID", + "M_IOS", + "M_TABLET_ANDROID", + "M_TABLET_IOS", + "W_AIRPLAY", + "W_CHROMECAST", + "W_LACLETV2", + "W_SMARTTV", + "W_PC", + "S_STB" + ], + "packages": [ + "PA_pack_Divertissement", + "PA_pack_cineseries", + "PA_bouquet_cine", + "PA_pack_intense", + "PA_bouquet_divertissement_fibre", + "PA_bouquet_cineseries", + "PA_bouquet_divertissement_adsl", + "PI_WHITELIST" + ], + "hasRightIAccess": true, + "hasRightMAccess": false, + "logos": [ + { + "definitionType": "mobileAppli", + "listLogos": [ + { + "size": "183x183", + "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_action%2F20151026_092415%2FmobileAppli%2Flogo_183x183.png" + } + ] + }, + { + "definitionType": "mobileAppliDark", + "listLogos": [ + { + "size": "183x183", + "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_action%2F20151026_092415%2FmobileAppliDark%2Flogo_183x183.png" + } + ] + }, + { + "definitionType": "webTVLogo", + "listLogos": [ + { + "size": "180x96", + "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_action%2F20151026_092415%2FwebTVLogo%2Flogo_180x96.png" + } + ] + }, + { + "definitionType": "webTVSquare", + "listLogos": [ + { + "size": "150x150", + "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_action%2F20151026_092415%2FwebTVSquare%2Flogo_150x150.png" + } + ] + } + ], + "mobileData": { + "wifiForbidden": false, + "wifiSecuredOnly": false, + "everywhereChannel": true, + "nomadismAllowed": true, + "drmLevels": [ + { + "definition": "SD", + "securedTerminal": [ + "DRM-HW", + "DRM-SW" + ], + "unsecuredTerminal": [ + "DRM-HW", + "DRM-SW" + ] + }, + { + "definition": "HD", + "securedTerminal": [ + "DRM-HW", + "DRM-SW" + ], + "unsecuredTerminal": [ + "ND" + ] + } + ] + }, + "webdeviceData": { + "nomadismAllowed": true + }, + "technicalChannels": { + "live": [ + { + "techChannelId": "400080", + "type": "CLOUDTV", + "liveTargetURLRelativePath": "livetv_action_ctv", + "usi": 400080, + "isDRMized": true, + "csa5Disabled": true + } + ], + "npvr": [ + { + "externalId": "livetv_action_ctv", + "techChannelId": "400080", + "type": "CLOUDTV", + "usi": 400080, + "isDRMized": true, + "antiAdskipping": "DEACTIVATED", + "csa5Disabled": true + } + ], + "startover": [] + } + }, + { + "name": "CINE+PREMIER", + "editoChannelId": "livetv_cineplus_premier", + "lcn": 59, + "idEPG": 282, + "epgAvailable": true, + "epgTextSubstitution": "", + "displayOrder": 59, + "csaCode": 1, + "slogan": "Quand le cinéma crée l'événement", + "catchupChannelId": "catchuptv_cineplusalademande", + "newChannel": false, + "roamingBlocked": true, + "allowedDeviceCategories": [ + "M_ANDROID", + "M_IOS", + "M_TABLET_ANDROID", + "M_TABLET_IOS", + "W_AIRPLAY", + "W_CHROMECAST", + "W_LACLETV2", + "W_SMARTTV", + "W_PC", + "S_STB" + ], + "packages": [ + "PA_pack_cineseries", + "PA_bouquet_cine", + "PA_pack_intense", + "PI_WHITELIST" + ], + "hasRightIAccess": true, + "hasRightMAccess": false, + "logos": [ + { + "definitionType": "mobileAppli", + "listLogos": [ + { + "size": "183x183", + "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_cineplus_premier%2F20221110_120745%2FmobileAppli%2Flogo_183x183.png" + } + ] + }, + { + "definitionType": "mobileAppliDark", + "listLogos": [ + { + "size": "183x183", + "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_cineplus_premier%2F20221110_120745%2FmobileAppliDark%2Flogo_183x183.png" + } + ] + }, + { + "definitionType": "webTVLogo", + "listLogos": [ + { + "size": "180x96", + "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_cineplus_premier%2F20221110_120745%2FwebTVLogo%2Flogo_180x96.png" + } + ] + }, + { + "definitionType": "webTVSquare", + "listLogos": [ + { + "size": "150x150", + "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_cineplus_premier%2F20221110_120745%2FwebTVSquare%2Flogo_150x150.png" + } + ] + } + ], + "mobileData": { + "wifiForbidden": false, + "wifiSecuredOnly": false, + "everywhereChannel": true, + "nomadismAllowed": true, + "drmLevels": [ + { + "definition": "SD", + "securedTerminal": [ + "DRM-HW", + "DRM-SW" + ], + "unsecuredTerminal": [ + "DRM-HW", + "DRM-SW" + ] + }, + { + "definition": "HD", + "securedTerminal": [ + "DRM-HW" + ], + "unsecuredTerminal": [ + "ND" + ] + } + ] + }, + "webdeviceData": { + "nomadismAllowed": true + }, + "technicalChannels": { + "live": [ + { + "techChannelId": "400041", + "type": "CLOUDTV", + "liveTargetURLRelativePath": "livetv_cine_premier_ctv", + "usi": 400041, + "isDRMized": true, + "csa5Disabled": true + } + ], + "npvr": [ + { + "externalId": "livetv_cine_premier_ctv", + "techChannelId": "400041", + "type": "CLOUDTV", + "usi": 400041, + "isDRMized": true, + "antiAdskipping": "DEACTIVATED", + "csa5Disabled": true + } + ], + "startover": [] + } + }, + { + "name": "CINE+FRISSON", + "editoChannelId": "livetv_cineplus_frisson", + "lcn": 60, + "idEPG": 284, + "epgAvailable": true, + "epgTextSubstitution": "", + "displayOrder": 60, + "csaCode": 1, + "slogan": "Le cinéma sous haute tension", + "catchupChannelId": "catchuptv_cineplusalademande", + "newChannel": false, + "roamingBlocked": true, + "allowedDeviceCategories": [ + "M_ANDROID", + "M_IOS", + "M_TABLET_ANDROID", + "M_TABLET_IOS", + "W_AIRPLAY", + "W_CHROMECAST", + "W_LACLETV2", + "W_SMARTTV", + "W_PC", + "S_STB" + ], + "packages": [ + "PA_pack_cineseries", + "PA_bouquet_cine", + "PA_pack_intense", + "PI_WHITELIST" + ], + "hasRightIAccess": true, + "hasRightMAccess": false, + "logos": [ + { + "definitionType": "mobileAppli", + "listLogos": [ + { + "size": "183x183", + "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_cineplus_frisson%2F20221110_120745%2FmobileAppli%2Flogo_183x183.png" + } + ] + }, + { + "definitionType": "mobileAppliDark", + "listLogos": [ + { + "size": "183x183", + "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_cineplus_frisson%2F20221110_120745%2FmobileAppliDark%2Flogo_183x183.png" + } + ] + }, + { + "definitionType": "webTVLogo", + "listLogos": [ + { + "size": "180x96", + "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_cineplus_frisson%2F20221110_120745%2FwebTVLogo%2Flogo_180x96.png" + } + ] + }, + { + "definitionType": "webTVSquare", + "listLogos": [ + { + "size": "150x150", + "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_cineplus_frisson%2F20221110_120745%2FwebTVSquare%2Flogo_150x150.png" + } + ] + } + ], + "mobileData": { + "wifiForbidden": false, + "wifiSecuredOnly": false, + "everywhereChannel": true, + "nomadismAllowed": true, + "drmLevels": [ + { + "definition": "SD", + "securedTerminal": [ + "DRM-HW", + "DRM-SW" + ], + "unsecuredTerminal": [ + "DRM-HW", + "DRM-SW" + ] + }, + { + "definition": "HD", + "securedTerminal": [ + "DRM-HW" + ], + "unsecuredTerminal": [ + "ND" + ] + } + ] + }, + "webdeviceData": { + "nomadismAllowed": true + }, + "technicalChannels": { + "live": [ + { + "techChannelId": "400081", + "type": "CLOUDTV", + "liveTargetURLRelativePath": "livetv_cine_frisson_ctv", + "usi": 400081, + "isDRMized": true, + "csa5Disabled": true + } + ], + "npvr": [ + { + "externalId": "livetv_cine_frisson_ctv", + "techChannelId": "400081", + "type": "CLOUDTV", + "usi": 400081, + "isDRMized": true, + "antiAdskipping": "DEACTIVATED", + "csa5Disabled": true + } + ], + "startover": [] + } + }, + { + "name": "CINE+EMOTION", + "editoChannelId": "livetv_cineplus_emotion", + "lcn": 61, + "idEPG": 283, + "epgAvailable": true, + "epgTextSubstitution": "", + "displayOrder": 61, + "csaCode": 1, + "slogan": "Le cinéma, à la folie, passionnément", + "catchupChannelId": "catchuptv_cineplusalademande", + "newChannel": false, + "roamingBlocked": true, + "allowedDeviceCategories": [ + "M_ANDROID", + "M_IOS", + "M_TABLET_ANDROID", + "M_TABLET_IOS", + "W_AIRPLAY", + "W_CHROMECAST", + "W_LACLETV2", + "W_SMARTTV", + "W_PC", + "S_STB" + ], + "packages": [ + "PA_pack_cineseries", + "PA_bouquet_cine", + "PA_pack_intense", + "PI_WHITELIST" + ], + "hasRightIAccess": true, + "hasRightMAccess": false, + "logos": [ + { + "definitionType": "mobileAppli", + "listLogos": [ + { + "size": "183x183", + "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_cineplus_emotion%2F20221110_120745%2FmobileAppli%2Flogo_183x183.png" + } + ] + }, + { + "definitionType": "mobileAppliDark", + "listLogos": [ + { + "size": "183x183", + "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_cineplus_emotion%2F20221110_120745%2FmobileAppliDark%2Flogo_183x183.png" + } + ] + }, + { + "definitionType": "webTVLogo", + "listLogos": [ + { + "size": "180x96", + "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_cineplus_emotion%2F20221110_120745%2FwebTVLogo%2Flogo_180x96.png" + } + ] + }, + { + "definitionType": "webTVSquare", + "listLogos": [ + { + "size": "150x150", + "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_cineplus_emotion%2F20221110_120745%2FwebTVSquare%2Flogo_150x150.png" + } + ] + } + ], + "mobileData": { + "wifiForbidden": false, + "wifiSecuredOnly": false, + "everywhereChannel": true, + "nomadismAllowed": true, + "drmLevels": [ + { + "definition": "SD", + "securedTerminal": [ + "DRM-HW", + "DRM-SW" + ], + "unsecuredTerminal": [ + "DRM-HW", + "DRM-SW" + ] + }, + { + "definition": "HD", + "securedTerminal": [ + "DRM-HW" + ], + "unsecuredTerminal": [ + "ND" + ] + } + ] + }, + "webdeviceData": { + "nomadismAllowed": true + }, + "technicalChannels": { + "live": [ + { + "techChannelId": "400082", + "type": "CLOUDTV", + "liveTargetURLRelativePath": "livetv_cine_emotion_ctv", + "usi": 400082, + "isDRMized": true, + "csa5Disabled": true + } + ], + "npvr": [ + { + "externalId": "livetv_cine_emotion_ctv", + "techChannelId": "400082", + "type": "CLOUDTV", + "usi": 400082, + "isDRMized": true, + "antiAdskipping": "DEACTIVATED", + "csa5Disabled": true + } + ], + "startover": [] + } + }, + { + "name": "CINE+FAMIZ", + "editoChannelId": "livetv_cineplus_famiz", + "lcn": 62, + "idEPG": 401, + "epgAvailable": true, + "epgTextSubstitution": "", + "displayOrder": 62, + "csaCode": 1, + "slogan": "Le cinéma qui a l'esprit de famille", + "catchupChannelId": "catchuptv_cineplusalademande", + "newChannel": false, + "roamingBlocked": true, + "allowedDeviceCategories": [ + "M_ANDROID", + "M_IOS", + "M_TABLET_ANDROID", + "M_TABLET_IOS", + "W_AIRPLAY", + "W_CHROMECAST", + "W_LACLETV2", + "W_SMARTTV", + "W_PC", + "S_STB" + ], + "packages": [ + "PA_pack_cineseries", + "PA_bouquet_cine", + "PA_pack_intense", + "PI_WHITELIST" + ], + "hasRightIAccess": true, + "hasRightMAccess": false, + "logos": [ + { + "definitionType": "mobileAppli", + "listLogos": [ + { + "size": "183x183", + "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_cineplus_famiz%2F20221110_120745%2FmobileAppli%2Flogo_183x183.png" + } + ] + }, + { + "definitionType": "mobileAppliDark", + "listLogos": [ + { + "size": "183x183", + "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_cineplus_famiz%2F20221110_120745%2FmobileAppliDark%2Flogo_183x183.png" + } + ] + }, + { + "definitionType": "webTVLogo", + "listLogos": [ + { + "size": "180x96", + "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_cineplus_famiz%2F20221110_120745%2FwebTVLogo%2Flogo_180x96.png" + } + ] + }, + { + "definitionType": "webTVSquare", + "listLogos": [ + { + "size": "150x150", + "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_cineplus_famiz%2F20221110_120745%2FwebTVSquare%2Flogo_150x150.png" + } + ] + } + ], + "mobileData": { + "wifiForbidden": false, + "wifiSecuredOnly": false, + "everywhereChannel": true, + "nomadismAllowed": true, + "drmLevels": [ + { + "definition": "SD", + "securedTerminal": [ + "DRM-HW", + "DRM-SW" + ], + "unsecuredTerminal": [ + "DRM-HW", + "DRM-SW" + ] + }, + { + "definition": "HD", + "securedTerminal": [ + "DRM-HW" + ], + "unsecuredTerminal": [ + "ND" + ] + } + ] + }, + "webdeviceData": { + "nomadismAllowed": true + }, + "technicalChannels": { + "live": [ + { + "techChannelId": "400083", + "type": "CLOUDTV", + "liveTargetURLRelativePath": "livetv_cine_famiz_ctv", + "usi": 400083, + "isDRMized": true, + "csa5Disabled": true + } + ], + "npvr": [ + { + "externalId": "livetv_cine_famiz_ctv", + "techChannelId": "400083", + "type": "CLOUDTV", + "usi": 400083, + "isDRMized": true, + "antiAdskipping": "DEACTIVATED", + "csa5Disabled": true + } + ], + "startover": [] + } + }, + { + "name": "CINE+CLUB", + "editoChannelId": "livetv_cineplus_club", + "lcn": 63, + "idEPG": 285, + "epgAvailable": true, + "epgTextSubstitution": "", + "displayOrder": 63, + "csaCode": 1, + "slogan": "Un regard plus libre sur le cinéma", + "catchupChannelId": "catchuptv_cineplusalademande", + "newChannel": false, + "roamingBlocked": true, + "allowedDeviceCategories": [ + "M_ANDROID", + "M_IOS", + "M_TABLET_ANDROID", + "M_TABLET_IOS", + "W_AIRPLAY", + "W_CHROMECAST", + "W_LACLETV2", + "W_PC", + "W_SMARTTV", + "S_STB" + ], + "packages": [ + "PA_pack_cineseries", + "PA_bouquet_cine", + "PA_pack_intense", + "PI_WHITELIST" + ], + "hasRightIAccess": true, + "hasRightMAccess": false, + "logos": [ + { + "definitionType": "mobileAppli", + "listLogos": [ + { + "size": "183x183", + "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_cineplus_club%2F20221110_120745%2FmobileAppli%2Flogo_183x183.png" + } + ] + }, + { + "definitionType": "mobileAppliDark", + "listLogos": [ + { + "size": "183x183", + "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_cineplus_club%2F20221110_120745%2FmobileAppliDark%2Flogo_183x183.png" + } + ] + }, + { + "definitionType": "webTVLogo", + "listLogos": [ + { + "size": "180x96", + "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_cineplus_club%2F20221110_120745%2FwebTVLogo%2Flogo_180x96.png" + } + ] + }, + { + "definitionType": "webTVSquare", + "listLogos": [ + { + "size": "150x150", + "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_cineplus_club%2F20221110_120745%2FwebTVSquare%2Flogo_150x150.png" + } + ] + } + ], + "mobileData": { + "wifiForbidden": false, + "wifiSecuredOnly": false, + "everywhereChannel": true, + "nomadismAllowed": true, + "drmLevels": [ + { + "definition": "SD", + "securedTerminal": [ + "DRM-HW", + "DRM-SW" + ], + "unsecuredTerminal": [ + "DRM-HW", + "DRM-SW" + ] + }, + { + "definition": "HD", + "securedTerminal": [ + "DRM-HW" + ], + "unsecuredTerminal": [ + "ND" + ] + } + ] + }, + "webdeviceData": { + "nomadismAllowed": true + }, + "technicalChannels": { + "live": [ + { + "techChannelId": "400084", + "type": "CLOUDTV", + "liveTargetURLRelativePath": "livetv_cine_club_ctv", + "usi": 400084, + "isDRMized": true, + "csa5Disabled": true + } + ], + "npvr": [ + { + "externalId": "livetv_cine_club_ctv", + "techChannelId": "400084", + "type": "CLOUDTV", + "usi": 400084, + "isDRMized": true, + "antiAdskipping": "DEACTIVATED", + "csa5Disabled": true + } + ], + "startover": [] + } + }, + { + "name": "CINE+CLASSIC", + "editoChannelId": "livetv_cineplus_classic", + "lcn": 64, + "idEPG": 287, + "epgAvailable": true, + "epgTextSubstitution": "", + "displayOrder": 64, + "csaCode": 1, + "slogan": "Les monstres sacrés du cinéma", + "catchupChannelId": "catchuptv_cineplusalademande", + "newChannel": false, + "roamingBlocked": true, + "allowedDeviceCategories": [ + "M_ANDROID", + "M_IOS", + "M_TABLET_ANDROID", + "M_TABLET_IOS", + "W_AIRPLAY", + "W_CHROMECAST", + "W_LACLETV2", + "W_PC", + "W_SMARTTV", + "S_STB" + ], + "packages": [ + "PA_pack_cineseries", + "PA_bouquet_cine", + "PA_pack_intense", + "PI_WHITELIST" + ], + "hasRightIAccess": true, + "hasRightMAccess": false, + "logos": [ + { + "definitionType": "mobileAppli", + "listLogos": [ + { + "size": "183x183", + "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_cineplus_classic%2F20221110_120745%2FmobileAppli%2Flogo_183x183.png" + } + ] + }, + { + "definitionType": "mobileAppliDark", + "listLogos": [ + { + "size": "183x183", + "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_cineplus_classic%2F20221110_120745%2FmobileAppliDark%2Flogo_183x183.png" + } + ] + }, + { + "definitionType": "webTVLogo", + "listLogos": [ + { + "size": "180x96", + "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_cineplus_classic%2F20221110_120745%2FwebTVLogo%2Flogo_180x96.png" + } + ] + }, + { + "definitionType": "webTVSquare", + "listLogos": [ + { + "size": "150x150", + "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_cineplus_classic%2F20221110_120745%2FwebTVSquare%2Flogo_150x150.png" + } + ] + } + ], + "mobileData": { + "wifiForbidden": false, + "wifiSecuredOnly": false, + "everywhereChannel": true, + "nomadismAllowed": true, + "drmLevels": [ + { + "definition": "SD", + "securedTerminal": [ + "DRM-HW", + "DRM-SW" + ], + "unsecuredTerminal": [ + "DRM-HW", + "DRM-SW" + ] + }, + { + "definition": "HD", + "securedTerminal": [ + "DRM-HW" + ], + "unsecuredTerminal": [ + "ND" + ] + } + ] + }, + "webdeviceData": { + "nomadismAllowed": true + }, + "technicalChannels": { + "live": [ + { + "techChannelId": "400085", + "type": "CLOUDTV", + "liveTargetURLRelativePath": "livetv_cine_classic_ctv", + "usi": 400085, + "isDRMized": true, + "csa5Disabled": true + } + ], + "npvr": [ + { + "externalId": "livetv_cine_classic_ctv", + "techChannelId": "400085", + "type": "CLOUDTV", + "usi": 400085, + "isDRMized": true, + "antiAdskipping": "DEACTIVATED", + "csa5Disabled": true + } + ], + "startover": [] + } + }, + { + "name": "EUROCHANNEL", + "editoChannelId": "livetv_eurochannel", + "lcn": 65, + "idEPG": 1190, + "epgAvailable": true, + "epgTextSubstitution": "", + "displayOrder": 65, + "csaCode": 1, + "slogan": "Le meilleur de l'Europe", + "catchupChannelId": "", + "newChannel": true, + "roamingBlocked": true, + "allowedDeviceCategories": [ + "M_ANDROID", + "M_IOS", + "M_TABLET_ANDROID", + "M_TABLET_IOS", + "W_AIRPLAY", + "W_CHROMECAST", + "W_LACLETV2", + "W_SMARTTV", + "W_PC", + "S_STB" + ], + "packages": [ + "PA_pack_cineseries", + "PA_pack_intense", + "PI_WHITELIST" + ], + "hasRightIAccess": true, + "hasRightMAccess": false, + "logos": [ + { + "definitionType": "mobileAppli", + "listLogos": [ + { + "size": "183x183", + "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_eurochannel%2F20151118_173140%2FmobileAppli%2Flogo_183x183.png" + } + ] + }, + { + "definitionType": "mobileAppliDark", + "listLogos": [ + { + "size": "183x183", + "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_eurochannel%2F20151118_173140%2FmobileAppliDark%2Flogo_183x183.png" + } + ] + }, + { + "definitionType": "webTVLogo", + "listLogos": [ + { + "size": "180x96", + "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_eurochannel%2F20151118_173140%2FwebTVLogo%2Flogo_180x96.png" + } + ] + }, + { + "definitionType": "webTVSquare", + "listLogos": [ + { + "size": "150x150", + "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_eurochannel%2F20151118_173140%2FwebTVSquare%2Flogo_150x150.png" + } + ] + } + ], + "mobileData": { + "wifiForbidden": false, + "wifiSecuredOnly": false, + "everywhereChannel": true, + "nomadismAllowed": true, + "drmLevels": [ + { + "definition": "SD", + "securedTerminal": [ + "DRM-HW", + "DRM-SW" + ], + "unsecuredTerminal": [ + "DRM-HW", + "DRM-SW" + ] + }, + { + "definition": "HD", + "securedTerminal": [ + "DRM-HW", + "DRM-SW" + ], + "unsecuredTerminal": [ + "ND" + ] + } + ] + }, + "webdeviceData": { + "nomadismAllowed": true + }, + "technicalChannels": { + "live": [ + { + "techChannelId": "400086", + "type": "CLOUDTV", + "liveTargetURLRelativePath": "livetv_eurochannel_ctv", + "usi": 400086, + "isDRMized": true, + "csa5Disabled": true + } + ], + "npvr": [ + { + "externalId": "livetv_eurochannel_ctv", + "techChannelId": "400086", + "type": "CLOUDTV", + "usi": 400086, + "isDRMized": true, + "antiAdskipping": "DEACTIVATED", + "csa5Disabled": true + } + ], + "startover": [] + } + }, + { + "name": "MTV", + "editoChannelId": "livetv_mtv", + "lcn": 73, + "idEPG": 128, + "epgAvailable": true, + "epgTextSubstitution": "", + "displayOrder": 73, + "csaCode": 1, + "slogan": "Plus ça pique plus c'est bon", + "catchupChannelId": "catchuptv_MTV", + "newChannel": false, + "roamingBlocked": true, + "allowedDeviceCategories": [ + "M_ANDROID", + "M_IOS", + "M_TABLET_ANDROID", + "M_TABLET_IOS", + "W_AIRPLAY", + "W_CHROMECAST", + "W_LACLETV2", + "W_PC", + "W_SMARTTV", + "S_STB" + ], + "packages": [ + "PA_BQ_BASIC_M", + "PA_BQ_TVDIGITALE_I", + "PA_BQ_BASIC_I", + "PA_BQ_BASICQUAD_I", + "PI_WHITELIST" + ], + "hasRightIAccess": true, + "hasRightMAccess": true, + "logos": [ + { + "definitionType": "mobileAppli", + "listLogos": [ + { + "size": "183x183", + "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_mtv%2F20220411_102238%2FmobileAppli%2Flogo_183x183.png" + } + ] + }, + { + "definitionType": "mobileAppliDark", + "listLogos": [ + { + "size": "183x183", + "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_mtv%2F20220411_102238%2FmobileAppliDark%2Flogo_183x183.png" + } + ] + }, + { + "definitionType": "webTVLogo", + "listLogos": [ + { + "size": "180x96", + "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_mtv%2F20220411_102238%2FwebTVLogo%2Flogo_180x96.png" + } + ] + }, + { + "definitionType": "webTVSquare", + "listLogos": [ + { + "size": "150x150", + "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_mtv%2F20220411_102238%2FwebTVSquare%2Flogo_150x150.png" + } + ] + } + ], + "mobileData": { + "wifiForbidden": false, + "wifiSecuredOnly": false, + "everywhereChannel": true, + "nomadismAllowed": true, + "drmLevels": [ + { + "definition": "SD", + "securedTerminal": [ + "DRM-HW", + "DRM-SW" + ], + "unsecuredTerminal": [ + "DRM-HW", + "DRM-SW" + ] + }, + { + "definition": "HD", + "securedTerminal": [ + "DRM-HW", + "DRM-SW" + ], + "unsecuredTerminal": [ + "ND" + ] + } + ] + }, + "webdeviceData": { + "nomadismAllowed": true + }, + "technicalChannels": { + "live": [ + { + "techChannelId": "400102", + "type": "CLOUDTV", + "liveTargetURLRelativePath": "livetv_mtv_ctv", + "usi": 400102, + "isDRMized": true, + "csa5Disabled": true + } + ], + "npvr": [ + { + "externalId": "livetv_mtv_ctv", + "techChannelId": "400102", + "type": "CLOUDTV", + "usi": 400102, + "isDRMized": true, + "antiAdskipping": "DEACTIVATED", + "csa5Disabled": true + } + ], + "startover": [] + } + }, + { + "name": "BET", + "editoChannelId": "livetv_bet", + "lcn": 74, + "idEPG": 1960, + "epgAvailable": true, + "epgTextSubstitution": "", + "displayOrder": 74, + "csaCode": 1, + "slogan": "La chaîne culture noire-américaine", + "catchupChannelId": "catchuptv_bet", + "newChannel": false, + "roamingBlocked": true, + "allowedDeviceCategories": [ + "M_ANDROID", + "M_IOS", + "M_TABLET_ANDROID", + "M_TABLET_IOS", + "W_AIRPLAY", + "W_CHROMECAST", + "W_LACLETV2", + "W_PC", + "W_SMARTTV", + "S_STB" + ], + "packages": [ + "PA_BQ_BASIC_M", + "PA_BQ_TVDIGITALE_I", + "PA_BQ_BASIC_I", + "PA_BQ_BASICQUAD_I", + "PI_WHITELIST" + ], + "hasRightIAccess": true, + "hasRightMAccess": true, + "logos": [ + { + "definitionType": "mobileAppli", + "listLogos": [ + { + "size": "183x183", + "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_bet%2F20220411_102238%2FmobileAppli%2Flogo_183x183.png" + } + ] + }, + { + "definitionType": "mobileAppliDark", + "listLogos": [ + { + "size": "183x183", + "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_bet%2F20220411_102238%2FmobileAppliDark%2Flogo_183x183.png" + } + ] + }, + { + "definitionType": "webTVLogo", + "listLogos": [ + { + "size": "180x96", + "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_bet%2F20220411_102238%2FwebTVLogo%2Flogo_180x96.png" + } + ] + }, + { + "definitionType": "webTVSquare", + "listLogos": [ + { + "size": "150x150", + "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_bet%2F20220411_102238%2FwebTVSquare%2Flogo_150x150.png" + } + ] + } + ], + "mobileData": { + "wifiForbidden": false, + "wifiSecuredOnly": false, + "everywhereChannel": true, + "nomadismAllowed": true, + "drmLevels": [ + { + "definition": "SD", + "securedTerminal": [ + "DRM-HW", + "DRM-SW" + ], + "unsecuredTerminal": [ + "DRM-HW", + "DRM-SW" + ] + }, + { + "definition": "HD", + "securedTerminal": [ + "DRM-HW", + "DRM-SW" + ], + "unsecuredTerminal": [ + "ND" + ] + } + ] + }, + "webdeviceData": { + "nomadismAllowed": true + }, + "technicalChannels": { + "live": [ + { + "techChannelId": "400093", + "type": "CLOUDTV", + "liveTargetURLRelativePath": "livetv_bet_ctv", + "usi": 400093, + "isDRMized": true, + "csa5Disabled": true + } + ], + "npvr": [ + { + "externalId": "livetv_bet_ctv", + "techChannelId": "400093", + "type": "CLOUDTV", + "usi": 400093, + "isDRMized": true, + "antiAdskipping": "DEACTIVATED", + "csa5Disabled": true + } + ], + "startover": [] + } + }, + { + "name": "AB1", + "editoChannelId": "livetv_AB1", + "lcn": 75, + "idEPG": 5, + "epgAvailable": true, + "epgTextSubstitution": "", + "displayOrder": 75, + "csaCode": 1, + "slogan": "Éternellement Fan !", + "catchupChannelId": "catchuptv_AB1", + "newChannel": false, + "roamingBlocked": true, + "allowedDeviceCategories": [ + "M_ANDROID", + "M_IOS", + "M_TABLET_ANDROID", + "M_TABLET_IOS", + "W_AIRPLAY", + "W_CHROMECAST", + "W_LACLETV2", + "W_PC", + "W_SMARTTV", + "S_STB" + ], + "packages": [ + "PA_BQ_PASSACCESTVPREMIUM_M", + "PA_pack_Divertissement", + "PA_BQ_RE_TVMAX_M", + "PA_bouquet_famille_disneyplus", + "PA_BQ_ACCESTVPREMIUM_M", + "PA_pack_intense", + "PA_bouquet_divertissement_fibre", + "PA_bouquet_famille_by_canal", + "PA_bouquet_famille_by_canal_nov2018", + "PA_bouquet_famille_max", + "PA_bouquet_divertissement_adsl", + "PI_WHITELIST" + ], + "hasRightIAccess": true, + "hasRightMAccess": true, + "logos": [ + { + "definitionType": "mobileAppli", + "listLogos": [ + { + "size": "183x183", + "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_AB1%2F20220922_114506%2FmobileAppli%2Flogo_183x183.png" + } + ] + }, + { + "definitionType": "mobileAppliDark", + "listLogos": [ + { + "size": "183x183", + "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_AB1%2F20220922_114506%2FmobileAppliDark%2Flogo_183x183.png" + } + ] + }, + { + "definitionType": "webTVLogo", + "listLogos": [ + { + "size": "180x96", + "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_AB1%2F20220922_114506%2FwebTVLogo%2Flogo_180x96.png" + } + ] + }, + { + "definitionType": "webTVSquare", + "listLogos": [ + { + "size": "150x150", + "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_AB1%2F20220922_114506%2FwebTVSquare%2Flogo_150x150.png" + } + ] + } + ], + "mobileData": { + "wifiForbidden": false, + "wifiSecuredOnly": false, + "everywhereChannel": true, + "nomadismAllowed": true, + "drmLevels": [ + { + "definition": "SD", + "securedTerminal": [ + "DRM-HW", + "DRM-SW" + ], + "unsecuredTerminal": [ + "DRM-HW", + "DRM-SW" + ] + }, + { + "definition": "HD", + "securedTerminal": [ + "DRM-HW", + "DRM-SW" + ], + "unsecuredTerminal": [ + "ND" + ] + } + ] + }, + "webdeviceData": { + "nomadismAllowed": true + }, + "technicalChannels": { + "live": [ + { + "techChannelId": "400042", + "type": "CLOUDTV", + "liveTargetURLRelativePath": "livetv_ab1_ctv", + "usi": 400042, + "isDRMized": true, + "csa5Disabled": true + } + ], + "npvr": [ + { + "externalId": "livetv_ab1_ctv", + "techChannelId": "400042", + "type": "CLOUDTV", + "usi": 400042, + "isDRMized": true, + "antiAdskipping": "DEACTIVATED", + "csa5Disabled": true + } + ], + "startover": [] + } + }, + { + "name": "TF1 +1", + "editoChannelId": "livetv_tf1_1", + "lcn": 76, + "idEPG": 2441, + "epgAvailable": true, + "epgTextSubstitution": "", + "displayOrder": 76, + "csaCode": 1, + "slogan": "Vos programmes de TF1 décalés d’1h !", + "catchupChannelId": "", + "newChannel": false, + "roamingBlocked": false, + "allowedDeviceCategories": [ + "M_ANDROID", + "M_IOS", + "M_TABLET_ANDROID", + "M_TABLET_IOS", + "W_AIRPLAY", + "W_CHROMECAST", + "W_LACLETV2", + "W_SMARTTV", + "W_PC", + "S_STB" + ], + "packages": [ + "PA_bouquet_famille_disneyplus", + "PA_pack_intense", + "PA_bouquet_famille_max", + "PA_bouquet_divertissement_adsl", + "PI_WHITELIST" + ], + "hasRightIAccess": true, + "hasRightMAccess": false, + "logos": [ + { + "definitionType": "mobileAppli", + "listLogos": [ + { + "size": "183x183", + "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_tf1_1%2F20181002_112754%2FmobileAppli%2Flogo_183x183.png" + } + ] + }, + { + "definitionType": "mobileAppliDark", + "listLogos": [ + { + "size": "183x183", + "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_tf1_1%2F20181002_112754%2FmobileAppliDark%2Flogo_183x183.png" + } + ] + }, + { + "definitionType": "webTVLogo", + "listLogos": [ + { + "size": "180x96", + "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_tf1_1%2F20181002_112754%2FwebTVLogo%2Flogo_180x96.png" + } + ] + }, + { + "definitionType": "webTVSquare", + "listLogos": [ + { + "size": "150x150", + "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_tf1_1%2F20181002_112754%2FwebTVSquare%2Flogo_150x150.png" + } + ] + } + ], + "mobileData": { + "wifiForbidden": false, + "wifiSecuredOnly": false, + "everywhereChannel": true, + "nomadismAllowed": true, + "drmLevels": [ + { + "definition": "SD", + "securedTerminal": [ + "DRM-HW", + "DRM-SW" + ], + "unsecuredTerminal": [ + "DRM-HW", + "DRM-SW" + ] + }, + { + "definition": "HD", + "securedTerminal": [ + "DRM-HW", + "DRM-SW" + ], + "unsecuredTerminal": [ + "ND" + ] + } + ] + }, + "webdeviceData": { + "nomadismAllowed": true + }, + "technicalChannels": { + "live": [ + { + "techChannelId": "400095", + "type": "CLOUDTV", + "liveTargetURLRelativePath": "livetv_tf1_plus_1_ctv", + "usi": 400095, + "isDRMized": true, + "csa5Disabled": true + } + ], + "npvr": [ + { + "externalId": "livetv_tf1_plus_1_ctv", + "techChannelId": "400095", + "type": "CLOUDTV", + "usi": 400095, + "isDRMized": true, + "antiAdskipping": "DEACTIVATED", + "csa5Disabled": true + } + ], + "startover": [] + } + }, + { + "name": "COMEDY CENTRAL", + "editoChannelId": "livetv_comedycentral", + "lcn": 77, + "idEPG": 2752, + "epgAvailable": true, + "epgTextSubstitution": "", + "displayOrder": 77, + "csaCode": 1, + "slogan": "La TV en plus drôle", + "catchupChannelId": "catchuptv_comedycentral", + "newChannel": false, + "roamingBlocked": false, + "allowedDeviceCategories": [ + "M_ANDROID", + "M_IOS", + "M_TABLET_ANDROID", + "M_TABLET_IOS", + "W_AIRPLAY", + "W_CHROMECAST", + "W_LACLETV2", + "W_SMARTTV", + "W_PC", + "S_STB" + ], + "packages": [ + "PA_bouquet_famille_disneyplus", + "PA_pack_intense", + "PA_bouquet_divertissement_fibre", + "PA_bouquet_famille_by_canal", + "PA_bouquet_famille_by_canal_nov2018", + "PA_bouquet_famille_max", + "PA_bouquet_divertissement_adsl", + "PI_WHITELIST" + ], + "hasRightIAccess": true, + "hasRightMAccess": false, + "logos": [ + { + "definitionType": "mobileAppli", + "listLogos": [ + { + "size": "183x183", + "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_comedycentral%2F20181002_120516%2FmobileAppli%2Flogo_183x183.png" + } + ] + }, + { + "definitionType": "mobileAppliDark", + "listLogos": [ + { + "size": "183x183", + "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_comedycentral%2F20181002_120516%2FmobileAppliDark%2Flogo_183x183.png" + } + ] + }, + { + "definitionType": "webTVLogo", + "listLogos": [ + { + "size": "180x96", + "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_comedycentral%2F20181002_120516%2FwebTVLogo%2Flogo_180x96.png" + } + ] + }, + { + "definitionType": "webTVSquare", + "listLogos": [ + { + "size": "150x150", + "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_comedycentral%2F20181002_120516%2FwebTVSquare%2Flogo_150x150.png" + } + ] + } + ], + "mobileData": { + "wifiForbidden": false, + "wifiSecuredOnly": false, + "everywhereChannel": true, + "nomadismAllowed": true, + "drmLevels": [ + { + "definition": "SD", + "securedTerminal": [ + "DRM-HW", + "DRM-SW" + ], + "unsecuredTerminal": [ + "DRM-HW", + "DRM-SW" + ] + }, + { + "definition": "HD", + "securedTerminal": [ + "DRM-HW", + "DRM-SW" + ], + "unsecuredTerminal": [ + "ND" + ] + } + ] + }, + "webdeviceData": { + "nomadismAllowed": true + }, + "technicalChannels": { + "live": [ + { + "techChannelId": "400096", + "type": "CLOUDTV", + "liveTargetURLRelativePath": "livetv_comedy_central_ctv", + "usi": 400096, + "isDRMized": true, + "csa5Disabled": true + } + ], + "npvr": [ + { + "externalId": "livetv_comedy_central_ctv", + "techChannelId": "400096", + "type": "CLOUDTV", + "usi": 400096, + "isDRMized": true, + "antiAdskipping": "DEACTIVATED", + "csa5Disabled": true + } + ], + "startover": [] + } + }, + { + "name": "GAME ONE", + "editoChannelId": "livetv_gameone", + "lcn": 78, + "idEPG": 87, + "epgAvailable": true, + "epgTextSubstitution": "", + "displayOrder": 78, + "csaCode": 1, + "slogan": "La chaîne des générations digitales", + "catchupChannelId": "catchuptv_gameone", + "newChannel": false, + "roamingBlocked": true, + "allowedDeviceCategories": [ + "M_ANDROID", + "M_IOS", + "M_TABLET_ANDROID", + "M_TABLET_IOS", + "W_AIRPLAY", + "W_CHROMECAST", + "W_LACLETV2", + "W_SMARTTV", + "W_PC", + "S_STB" + ], + "packages": [ + "PA_BQ_PASSACCESTVPREMIUM_M", + "PA_pack_Divertissement", + "PA_bouquet_famille_disneyplus", + "PA_BQ_ACCESTVPREMIUM_M", + "PA_BQ_PAYG_M", + "PA_pack_intense", + "PA_bouquet_divertissement_fibre", + "PA_bouquet_famille_by_canal", + "PA_bouquet_famille_by_canal_nov2018", + "PA_bouquet_famille_max", + "PA_bouquet_divertissement_adsl", + "PI_WHITELIST" + ], + "hasRightIAccess": true, + "hasRightMAccess": true, + "logos": [ + { + "definitionType": "mobileAppli", + "listLogos": [ + { + "size": "183x183", + "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_gameone%2F20170405_200000%2FmobileAppli%2Flogo_183x183.png" + } + ] + }, + { + "definitionType": "mobileAppliDark", + "listLogos": [ + { + "size": "183x183", + "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_gameone%2F20170405_200000%2FmobileAppliDark%2Flogo_183x183.png" + } + ] + }, + { + "definitionType": "webTVLogo", + "listLogos": [ + { + "size": "180x96", + "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_gameone%2F20170405_200000%2FwebTVLogo%2Flogo_180x96.png" + } + ] + }, + { + "definitionType": "webTVSquare", + "listLogos": [ + { + "size": "150x150", + "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_gameone%2F20170405_200000%2FwebTVSquare%2Flogo_150x150.png" + } + ] + } + ], + "mobileData": { + "wifiForbidden": false, + "wifiSecuredOnly": false, + "everywhereChannel": true, + "nomadismAllowed": true, + "drmLevels": [ + { + "definition": "SD", + "securedTerminal": [ + "DRM-HW", + "DRM-SW" + ], + "unsecuredTerminal": [ + "DRM-HW", + "DRM-SW" + ] + }, + { + "definition": "HD", + "securedTerminal": [ + "DRM-HW", + "DRM-SW" + ], + "unsecuredTerminal": [ + "ND" + ] + } + ] + }, + "webdeviceData": { + "nomadismAllowed": true + }, + "technicalChannels": { + "live": [ + { + "techChannelId": "400097", + "type": "CLOUDTV", + "liveTargetURLRelativePath": "livetv_game_one_ctv", + "usi": 400097, + "isDRMized": true, + "csa5Disabled": true + } + ], + "npvr": [ + { + "externalId": "livetv_game_one_ctv", + "techChannelId": "400097", + "type": "CLOUDTV", + "usi": 400097, + "isDRMized": true, + "antiAdskipping": "DEACTIVATED", + "csa5Disabled": true + } + ], + "startover": [] + } + }, + { + "name": "GAME ONE +1", + "editoChannelId": "livetv_game_one_plus1", + "lcn": 79, + "idEPG": 1167, + "epgAvailable": true, + "epgTextSubstitution": "", + "displayOrder": 79, + "csaCode": 1, + "slogan": "La chaîne des générations digitales", + "catchupChannelId": "", + "newChannel": false, + "roamingBlocked": true, + "allowedDeviceCategories": [ + "M_ANDROID", + "M_IOS", + "M_TABLET_ANDROID", + "M_TABLET_IOS", + "W_AIRPLAY", + "W_CHROMECAST", + "W_LACLETV2", + "W_SMARTTV", + "W_PC", + "S_STB" + ], + "packages": [ + "PA_pack_Divertissement", + "PA_bouquet_famille_disneyplus", + "PA_pack_intense", + "PA_bouquet_famille_max", + "PA_bouquet_divertissement_adsl", + "PI_WHITELIST" + ], + "hasRightIAccess": true, + "hasRightMAccess": false, + "logos": [ + { + "definitionType": "mobileAppli", + "listLogos": [ + { + "size": "183x183", + "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_game_one_plus1%2F20171120_154149%2FmobileAppli%2Flogo_183x183.png" + } + ] + }, + { + "definitionType": "mobileAppliDark", + "listLogos": [ + { + "size": "183x183", + "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_game_one_plus1%2F20171120_154149%2FmobileAppliDark%2Flogo_183x183.png" + } + ] + }, + { + "definitionType": "webTVLogo", + "listLogos": [ + { + "size": "180x96", + "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_game_one_plus1%2F20171120_154149%2FwebTVLogo%2Flogo_180x96.png" + } + ] + }, + { + "definitionType": "webTVSquare", + "listLogos": [ + { + "size": "150x150", + "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_game_one_plus1%2F20171120_154149%2FwebTVSquare%2Flogo_150x150.png" + } + ] + } + ], + "mobileData": { + "wifiForbidden": false, + "wifiSecuredOnly": false, + "everywhereChannel": true, + "nomadismAllowed": true, + "drmLevels": [ + { + "definition": "SD", + "securedTerminal": [ + "DRM-HW", + "DRM-SW" + ], + "unsecuredTerminal": [ + "DRM-HW", + "DRM-SW" + ] + }, + { + "definition": "HD", + "securedTerminal": [ + "DRM-HW", + "DRM-SW" + ], + "unsecuredTerminal": [ + "ND" + ] + } + ] + }, + "webdeviceData": { + "nomadismAllowed": true + }, + "technicalChannels": { + "live": [ + { + "techChannelId": "400098", + "type": "CLOUDTV", + "liveTargetURLRelativePath": "livetv_game_one_plus_1_ctv", + "usi": 400098, + "isDRMized": true, + "csa5Disabled": true + } + ], + "npvr": [ + { + "externalId": "livetv_game_one_plus_1_ctv", + "techChannelId": "400098", + "type": "CLOUDTV", + "usi": 400098, + "isDRMized": true, + "antiAdskipping": "DEACTIVATED", + "csa5Disabled": true + } + ], + "startover": [] + } + }, + { + "name": "COMEDIE+", + "editoChannelId": "livetv_comedieplus", + "lcn": 80, + "idEPG": 54, + "epgAvailable": true, + "epgTextSubstitution": "", + "displayOrder": 80, + "csaCode": 1, + "slogan": "Des spectacles d'humour", + "catchupChannelId": "catchuptv_comedieplus", + "newChannel": false, + "roamingBlocked": true, + "allowedDeviceCategories": [ + "M_ANDROID", + "M_IOS", + "M_TABLET_ANDROID", + "M_TABLET_IOS", + "W_LACLETV2", + "W_SMARTTV", + "W_PC", + "W_AIRPLAY", + "W_CHROMECAST", + "S_STB" + ], + "packages": [ + "PA_bouquet_divertissement_fibre", + "PA_bouquet_famille_by_canal", + "PA_bouquet_famille_by_canal_nov2018", + "PI_WHITELIST" + ], + "hasRightIAccess": true, + "hasRightMAccess": false, + "logos": [ + { + "definitionType": "mobileAppli", + "listLogos": [ + { + "size": "183x183", + "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_comedieplus%2F20170405_200000%2FmobileAppli%2Flogo_183x183.png" + } + ] + }, + { + "definitionType": "mobileAppliDark", + "listLogos": [ + { + "size": "183x183", + "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_comedieplus%2F20170405_200000%2FmobileAppliDark%2Flogo_183x183.png" + } + ] + }, + { + "definitionType": "webTVLogo", + "listLogos": [ + { + "size": "180x96", + "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_comedieplus%2F20170405_200000%2FwebTVLogo%2Flogo_180x96.png" + } + ] + }, + { + "definitionType": "webTVSquare", + "listLogos": [ + { + "size": "150x150", + "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_comedieplus%2F20170405_200000%2FwebTVSquare%2Flogo_150x150.png" + } + ] + } + ], + "mobileData": { + "wifiForbidden": false, + "wifiSecuredOnly": false, + "everywhereChannel": true, + "nomadismAllowed": true, + "drmLevels": [ + { + "definition": "SD", + "securedTerminal": [ + "DRM-HW", + "DRM-SW" + ], + "unsecuredTerminal": [ + "DRM-HW", + "DRM-SW" + ] + }, + { + "definition": "HD", + "securedTerminal": [ + "DRM-HW", + "DRM-SW" + ], + "unsecuredTerminal": [ + "ND" + ] + } + ] + }, + "webdeviceData": { + "nomadismAllowed": true + }, + "technicalChannels": { + "live": [ + { + "techChannelId": "400099", + "type": "CLOUDTV", + "liveTargetURLRelativePath": "livetv_comedie_plus_ctv", + "usi": 400099, + "isDRMized": true, + "csa5Disabled": true + } + ], + "npvr": [ + { + "externalId": "livetv_comedie_plus_ctv", + "techChannelId": "400099", + "type": "CLOUDTV", + "usi": 400099, + "isDRMized": true, + "antiAdskipping": "DEACTIVATED", + "csa5Disabled": true + } + ], + "startover": [] + } + }, + { + "name": "POLAR+", + "editoChannelId": "livetv_polarPlus", + "lcn": 81, + "idEPG": 2326, + "epgAvailable": true, + "epgTextSubstitution": "", + "displayOrder": 81, + "csaCode": 1, + "slogan": "Votre nouvelle scène de crime", + "catchupChannelId": "catchuptv_polarplus", + "newChannel": true, + "roamingBlocked": true, + "allowedDeviceCategories": [ + "M_ANDROID", + "M_IOS", + "M_TABLET_ANDROID", + "M_TABLET_IOS", + "W_AIRPLAY", + "W_CHROMECAST", + "W_LACLETV2", + "W_SMARTTV", + "W_PC", + "S_STB" + ], + "packages": [ + "PA_bouquet_divertissement_fibre", + "PA_bouquet_famille_by_canal", + "PA_bouquet_famille_by_canal_nov2018", + "PI_WHITELIST" + ], + "hasRightIAccess": true, + "hasRightMAccess": false, + "logos": [ + { + "definitionType": "mobileAppli", + "listLogos": [ + { + "size": "183x183", + "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_polarPlus%2F20171002_155125%2FmobileAppli%2Flogo_183x183.png" + } + ] + }, + { + "definitionType": "mobileAppliDark", + "listLogos": [ + { + "size": "183x183", + "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_polarPlus%2F20171002_155125%2FmobileAppliDark%2Flogo_183x183.png" + } + ] + }, + { + "definitionType": "webTVLogo", + "listLogos": [ + { + "size": "180x96", + "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_polarPlus%2F20171002_155125%2FwebTVLogo%2Flogo_180x96.png" + } + ] + }, + { + "definitionType": "webTVSquare", + "listLogos": [ + { + "size": "150x150", + "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_polarPlus%2F20171002_155125%2FwebTVSquare%2Flogo_150x150.png" + } + ] + } + ], + "mobileData": { + "wifiForbidden": false, + "wifiSecuredOnly": false, + "everywhereChannel": true, + "nomadismAllowed": true, + "drmLevels": [ + { + "definition": "SD", + "securedTerminal": [ + "DRM-HW", + "DRM-SW" + ], + "unsecuredTerminal": [ + "DRM-HW", + "DRM-SW" + ] + }, + { + "definition": "HD", + "securedTerminal": [ + "DRM-HW", + "DRM-SW" + ], + "unsecuredTerminal": [ + "ND" + ] + } + ] + }, + "webdeviceData": { + "nomadismAllowed": true + }, + "technicalChannels": { + "live": [ + { + "techChannelId": "400043", + "type": "CLOUDTV", + "liveTargetURLRelativePath": "livetv_polar_ctv", + "usi": 400043, + "isDRMized": true, + "csa5Disabled": true + } + ], + "npvr": [ + { + "externalId": "livetv_polar_ctv", + "techChannelId": "400043", + "type": "CLOUDTV", + "usi": 400043, + "isDRMized": true, + "antiAdskipping": "DEACTIVATED", + "csa5Disabled": true + } + ], + "startover": [] + } + }, + { + "name": "SERIE CLUB", + "editoChannelId": "livetv_serie_club", + "lcn": 82, + "idEPG": 49, + "epgAvailable": true, + "epgTextSubstitution": "", + "displayOrder": 82, + "csaCode": 1, + "slogan": "Découvreur de Séries", + "catchupChannelId": "catchuptv_serieclub", + "newChannel": false, + "roamingBlocked": true, + "allowedDeviceCategories": [ + "M_ANDROID", + "M_IOS", + "M_TABLET_ANDROID", + "M_TABLET_IOS", + "W_AIRPLAY", + "W_CHROMECAST", + "W_LACLETV2", + "W_SMARTTV", + "W_PC", + "S_STB" + ], + "packages": [ + "PA_bouquet_divertissement_fibre", + "PA_bouquet_famille_by_canal", + "PA_bouquet_famille_by_canal_nov2018", + "PI_WHITELIST" + ], + "hasRightIAccess": true, + "hasRightMAccess": false, + "logos": [ + { + "definitionType": "mobileAppli", + "listLogos": [ + { + "size": "183x183", + "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_serie_club%2F20170405_200000%2FmobileAppli%2Flogo_183x183.png" + } + ] + }, + { + "definitionType": "mobileAppliDark", + "listLogos": [ + { + "size": "183x183", + "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_serie_club%2F20170405_200000%2FmobileAppliDark%2Flogo_183x183.png" + } + ] + }, + { + "definitionType": "webTVLogo", + "listLogos": [ + { + "size": "180x96", + "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_serie_club%2F20170405_200000%2FwebTVLogo%2Flogo_180x96.png" + } + ] + }, + { + "definitionType": "webTVSquare", + "listLogos": [ + { + "size": "150x150", + "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_serie_club%2F20170405_200000%2FwebTVSquare%2Flogo_150x150.png" + } + ] + } + ], + "mobileData": { + "wifiForbidden": false, + "wifiSecuredOnly": false, + "everywhereChannel": true, + "nomadismAllowed": true, + "drmLevels": [ + { + "definition": "SD", + "securedTerminal": [ + "DRM-HW", + "DRM-SW" + ], + "unsecuredTerminal": [ + "DRM-HW", + "DRM-SW" + ] + }, + { + "definition": "HD", + "securedTerminal": [ + "DRM-HW", + "DRM-SW" + ], + "unsecuredTerminal": [ + "ND" + ] + } + ] + }, + "webdeviceData": { + "nomadismAllowed": true + }, + "technicalChannels": { + "live": [ + { + "techChannelId": "400101", + "type": "CLOUDTV", + "liveTargetURLRelativePath": "livetv_serie_club_ctv", + "usi": 400101, + "isDRMized": true, + "csa5Disabled": true + } + ], + "npvr": [ + { + "externalId": "livetv_serie_club_ctv", + "techChannelId": "400101", + "type": "CLOUDTV", + "usi": 400101, + "isDRMized": true, + "antiAdskipping": "DEACTIVATED", + "csa5Disabled": true + } + ], + "startover": [] + } + }, + { + "name": "TV PITCHOUN", + "editoChannelId": "livetv_pitchountv", + "lcn": 88, + "idEPG": 2803, + "epgAvailable": true, + "epgTextSubstitution": "", + "displayOrder": 88, + "csaCode": 1, + "slogan": "La TV des enfants que les parents regardent", + "catchupChannelId": "", + "newChannel": false, + "roamingBlocked": true, + "allowedDeviceCategories": [ + "M_ANDROID", + "M_IOS", + "M_TABLET_ANDROID", + "M_TABLET_IOS", + "W_AIRPLAY", + "W_CHROMECAST", + "W_LACLETV2", + "W_SMARTTV", + "W_PC", + "S_STB" + ], + "packages": [ + "PA_BQ_BASIC_M", + "PA_BQ_TVDIGITALE_I", + "PA_BQ_BASIC_I", + "PA_BQ_BASICQUAD_I", + "PI_WHITELIST" + ], + "hasRightIAccess": true, + "hasRightMAccess": true, + "logos": [ + { + "definitionType": "mobileAppli", + "listLogos": [ + { + "size": "183x183", + "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_pitchountv%2F20180206_091500%2FmobileAppli%2Flogo_183x183.png" + } + ] + }, + { + "definitionType": "mobileAppliDark", + "listLogos": [ + { + "size": "183x183", + "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_pitchountv%2F20180206_091500%2FmobileAppliDark%2Flogo_183x183.png" + } + ] + }, + { + "definitionType": "webTVLogo", + "listLogos": [ + { + "size": "180x96", + "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_pitchountv%2F20180206_091500%2FwebTVLogo%2Flogo_180x96.png" + } + ] + }, + { + "definitionType": "webTVSquare", + "listLogos": [ + { + "size": "150x150", + "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_pitchountv%2F20180206_091500%2FwebTVSquare%2Flogo_150x150.png" + } + ] + } + ], + "mobileData": { + "wifiForbidden": false, + "wifiSecuredOnly": false, + "everywhereChannel": true, + "nomadismAllowed": true, + "drmLevels": [ + { + "definition": "SD", + "securedTerminal": [ + "DRM-HW", + "DRM-SW" + ], + "unsecuredTerminal": [ + "DRM-HW", + "DRM-SW" + ] + }, + { + "definition": "HD", + "securedTerminal": [ + "ND" + ], + "unsecuredTerminal": [ + "ND" + ] + } + ] + }, + "webdeviceData": { + "nomadismAllowed": true + }, + "technicalChannels": { + "live": [ + { + "techChannelId": "400106", + "type": "CLOUDTV", + "liveTargetURLRelativePath": "livetv_pitchoun_tv_ctv", + "usi": 400106, + "isDRMized": true, + "csa5Disabled": true + } + ], + "npvr": [ + { + "externalId": "livetv_pitchoun_tv_ctv", + "techChannelId": "400106", + "type": "CLOUDTV", + "usi": 400106, + "isDRMized": true, + "antiAdskipping": "DEACTIVATED", + "csa5Disabled": true + } + ], + "startover": [] + } + }, + { + "name": "BOOMERANG", + "editoChannelId": "livetv_boomerang", + "lcn": 91, + "idEPG": 321, + "epgAvailable": true, + "epgTextSubstitution": "", + "displayOrder": 91, + "csaCode": 1, + "slogan": "La chaîne des stars du dessin animé", + "catchupChannelId": "catchuptv_boomerangreplay", + "newChannel": false, + "roamingBlocked": true, + "allowedDeviceCategories": [ + "M_ANDROID", + "M_IOS", + "M_TABLET_ANDROID", + "M_TABLET_IOS", + "W_AIRPLAY", + "W_CHROMECAST", + "W_LACLETV2", + "W_SMARTTV", + "W_PC", + "S_STB" + ], + "packages": [ + "PA_pack_Divertissement", + "PA_bouquet_famille_disneyplus", + "PA_BQ_ACCESTVPREMIUM_M", + "PA_pack_intense", + "PA_bouquet_famille_max", + "PA_bouquet_divertissement_adsl", + "PI_WHITELIST" + ], + "hasRightIAccess": true, + "hasRightMAccess": true, + "logos": [ + { + "definitionType": "mobileAppli", + "listLogos": [ + { + "size": "183x183", + "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_boomerang%2F20180417_143557%2FmobileAppli%2Flogo_183x183.png" + } + ] + }, + { + "definitionType": "mobileAppliDark", + "listLogos": [ + { + "size": "183x183", + "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_boomerang%2F20180417_143557%2FmobileAppliDark%2Flogo_183x183.png" + } + ] + }, + { + "definitionType": "webTVLogo", + "listLogos": [ + { + "size": "180x96", + "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_boomerang%2F20180417_143557%2FwebTVLogo%2Flogo_180x96.png" + } + ] + }, + { + "definitionType": "webTVSquare", + "listLogos": [ + { + "size": "150x150", + "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_boomerang%2F20180417_143557%2FwebTVSquare%2Flogo_150x150.png" + } + ] + } + ], + "mobileData": { + "wifiForbidden": false, + "wifiSecuredOnly": false, + "everywhereChannel": true, + "nomadismAllowed": true, + "drmLevels": [ + { + "definition": "SD", + "securedTerminal": [ + "DRM-HW", + "DRM-SW" + ], + "unsecuredTerminal": [ + "DRM-HW", + "DRM-SW" + ] + }, + { + "definition": "HD", + "securedTerminal": [ + "DRM-HW", + "DRM-SW" + ], + "unsecuredTerminal": [ + "ND" + ] + } + ] + }, + "webdeviceData": { + "nomadismAllowed": true + }, + "technicalChannels": { + "live": [ + { + "techChannelId": "400029", + "type": "CLOUDTV", + "liveTargetURLRelativePath": "livetv_boomerang_ctv", + "usi": 400029, + "isDRMized": true, + "csa5Disabled": true + } + ], + "npvr": [ + { + "externalId": "livetv_boomerang_ctv", + "techChannelId": "400029", + "type": "CLOUDTV", + "usi": 400029, + "isDRMized": true, + "antiAdskipping": "DEACTIVATED", + "csa5Disabled": true + } + ], + "startover": [] + } + }, + { + "name": "BOOMERANG +1", + "editoChannelId": "livetv_boomerang_1", + "lcn": 92, + "idEPG": 928, + "epgAvailable": true, + "epgTextSubstitution": "", + "displayOrder": 92, + "csaCode": 1, + "slogan": "Le rendez-vous des stars du dessin animé", + "catchupChannelId": "", + "newChannel": true, + "roamingBlocked": true, + "allowedDeviceCategories": [ + "M_ANDROID", + "M_IOS", + "M_TABLET_ANDROID", + "M_TABLET_IOS", + "W_AIRPLAY", + "W_CHROMECAST", + "W_LACLETV2", + "W_SMARTTV", + "W_PC", + "S_STB" + ], + "packages": [ + "PA_pack_Divertissement", + "PA_bouquet_famille_disneyplus", + "PA_pack_intense", + "PA_bouquet_famille_max", + "PA_bouquet_divertissement_adsl", + "PI_WHITELIST" + ], + "hasRightIAccess": true, + "hasRightMAccess": false, + "logos": [ + { + "definitionType": "mobileAppli", + "listLogos": [ + { + "size": "183x183", + "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_boomerang_1%2F20171004_102149%2FmobileAppli%2Flogo_183x183.png" + } + ] + }, + { + "definitionType": "mobileAppliDark", + "listLogos": [ + { + "size": "183x183", + "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_boomerang_1%2F20171004_102149%2FmobileAppliDark%2Flogo_183x183.png" + } + ] + }, + { + "definitionType": "webTVLogo", + "listLogos": [ + { + "size": "180x96", + "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_boomerang_1%2F20171004_102149%2FwebTVLogo%2Flogo_180x96.png" + } + ] + }, + { + "definitionType": "webTVSquare", + "listLogos": [ + { + "size": "150x150", + "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_boomerang_1%2F20171004_102149%2FwebTVSquare%2Flogo_150x150.png" + } + ] + } + ], + "mobileData": { + "wifiForbidden": false, + "wifiSecuredOnly": false, + "everywhereChannel": true, + "nomadismAllowed": true, + "drmLevels": [ + { + "definition": "SD", + "securedTerminal": [ + "DRM-HW", + "DRM-SW" + ], + "unsecuredTerminal": [ + "DRM-HW", + "DRM-SW" + ] + }, + { + "definition": "HD", + "securedTerminal": [ + "ND" + ], + "unsecuredTerminal": [ + "ND" + ] + } + ] + }, + "webdeviceData": { + "nomadismAllowed": true + }, + "technicalChannels": { + "live": [ + { + "techChannelId": "400107", + "type": "CLOUDTV", + "liveTargetURLRelativePath": "livetv_boomerang_plus_1_ctv", + "usi": 400107, + "isDRMized": true, + "csa5Disabled": true + } + ], + "npvr": [ + { + "externalId": "livetv_boomerang_plus_1_ctv", + "techChannelId": "400107", + "type": "CLOUDTV", + "usi": 400107, + "isDRMized": true, + "antiAdskipping": "DEACTIVATED", + "csa5Disabled": true + } + ], + "startover": [] + } + }, + { + "name": "CARTOONITO", + "editoChannelId": "livetv_boing", + "lcn": 93, + "idEPG": 3738, + "epgAvailable": true, + "epgTextSubstitution": "", + "displayOrder": 93, + "csaCode": 1, + "slogan": "Rire, s'ouvrir et bien grandir !", + "catchupChannelId": "", + "newChannel": false, + "roamingBlocked": true, + "allowedDeviceCategories": [ + "M_ANDROID", + "M_IOS", + "M_TABLET_ANDROID", + "M_TABLET_IOS", + "W_AIRPLAY", + "W_CHROMECAST", + "W_LACLETV2", + "W_PC", + "W_SMARTTV", + "S_STB" + ], + "packages": [ + "PA_pack_Divertissement", + "PA_bouquet_famille_disneyplus", + "PA_BQ_ACCESTVPREMIUM_M", + "PA_pack_intense", + "PA_bouquet_famille_max", + "PA_bouquet_divertissement_adsl", + "PI_WHITELIST" + ], + "hasRightIAccess": true, + "hasRightMAccess": true, + "logos": [ + { + "definitionType": "mobileAppli", + "listLogos": [ + { + "size": "183x183", + "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_boing%2F20230321_182925%2FmobileAppli%2Flogo_183x183.png" + } + ] + }, + { + "definitionType": "mobileAppliDark", + "listLogos": [ + { + "size": "183x183", + "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_boing%2F20230321_182925%2FmobileAppliDark%2Flogo_183x183.png" + } + ] + }, + { + "definitionType": "webTVLogo", + "listLogos": [ + { + "size": "180x96", + "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_boing%2F20230321_182925%2FwebTVLogo%2Flogo_180x96.png" + } + ] + }, + { + "definitionType": "webTVSquare", + "listLogos": [ + { + "size": "150x150", + "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_boing%2F20230321_182925%2FwebTVSquare%2Flogo_150x150.png" + } + ] + } + ], + "mobileData": { + "wifiForbidden": false, + "wifiSecuredOnly": false, + "everywhereChannel": true, + "nomadismAllowed": true, + "drmLevels": [ + { + "definition": "SD", + "securedTerminal": [ + "DRM-HW", + "DRM-SW" + ], + "unsecuredTerminal": [ + "DRM-HW", + "DRM-SW" + ] + }, + { + "definition": "HD", + "securedTerminal": [ + "DRM-HW", + "DRM-SW" + ], + "unsecuredTerminal": [ + "ND" + ] + } + ] + }, + "webdeviceData": { + "nomadismAllowed": true + }, + "technicalChannels": { + "live": [ + { + "techChannelId": "400044", + "type": "CLOUDTV", + "liveTargetURLRelativePath": "livetv_boing_ctv", + "usi": 400044, + "isDRMized": true, + "csa5Disabled": true + } + ], + "npvr": [ + { + "externalId": "livetv_boing_ctv", + "techChannelId": "400044", + "type": "CLOUDTV", + "usi": 400044, + "isDRMized": true, + "antiAdskipping": "DEACTIVATED", + "csa5Disabled": true + } + ], + "startover": [] + } + }, + { + "name": "TIJI", + "editoChannelId": "livetv_tiji", + "lcn": 94, + "idEPG": 229, + "epgAvailable": true, + "epgTextSubstitution": "", + "displayOrder": 94, + "csaCode": 1, + "slogan": "La chaine tendre et complice", + "catchupChannelId": "catchuptv_tiji", + "newChannel": false, + "roamingBlocked": true, + "allowedDeviceCategories": [ + "M_ANDROID", + "M_IOS", + "M_TABLET_ANDROID", + "M_TABLET_IOS", + "W_AIRPLAY", + "W_CHROMECAST", + "W_LACLETV2", + "W_SMARTTV", + "W_PC", + "S_STB" + ], + "packages": [ + "PA_pack_kids", + "PA_bouquet_famille_disneyplus", + "PA_pack_intense", + "PA_bouquet_divertissement_fibre", + "PA_bouquet_famille_by_canal", + "PA_bouquet_famille_by_canal_nov2018", + "PA_bouquet_famille_max", + "PA_bouquet_divertissement_adsl", + "PI_WHITELIST" + ], + "hasRightIAccess": true, + "hasRightMAccess": false, + "logos": [ + { + "definitionType": "mobileAppli", + "listLogos": [ + { + "size": "183x183", + "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_tiji%2F20170405_200000%2FmobileAppli%2Flogo_183x183.png" + } + ] + }, + { + "definitionType": "mobileAppliDark", + "listLogos": [ + { + "size": "183x183", + "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_tiji%2F20170405_200000%2FmobileAppliDark%2Flogo_183x183.png" + } + ] + }, + { + "definitionType": "webTVLogo", + "listLogos": [ + { + "size": "180x96", + "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_tiji%2F20170405_200000%2FwebTVLogo%2Flogo_180x96.png" + } + ] + }, + { + "definitionType": "webTVSquare", + "listLogos": [ + { + "size": "150x150", + "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_tiji%2F20170405_200000%2FwebTVSquare%2Flogo_150x150.png" + } + ] + } + ], + "mobileData": { + "wifiForbidden": false, + "wifiSecuredOnly": false, + "everywhereChannel": true, + "nomadismAllowed": true, + "drmLevels": [ + { + "definition": "SD", + "securedTerminal": [ + "DRM-HW", + "DRM-SW" + ], + "unsecuredTerminal": [ + "DRM-HW", + "DRM-SW" + ] + }, + { + "definition": "HD", + "securedTerminal": [ + "DRM-HW", + "DRM-SW" + ], + "unsecuredTerminal": [ + "ND" + ] + } + ] + }, + "webdeviceData": { + "nomadismAllowed": true + }, + "technicalChannels": { + "live": [ + { + "techChannelId": "400045", + "type": "CLOUDTV", + "liveTargetURLRelativePath": "livetv_tiji_ctv", + "usi": 400045, + "isDRMized": true, + "csa5Disabled": true + } + ], + "npvr": [ + { + "externalId": "livetv_tiji_ctv", + "techChannelId": "400045", + "type": "CLOUDTV", + "usi": 400045, + "isDRMized": true, + "antiAdskipping": "DEACTIVATED", + "csa5Disabled": true + } + ], + "startover": [] + } + }, + { + "name": "CANAL J", + "editoChannelId": "livetv_canal_j", + "lcn": 95, + "idEPG": 32, + "epgAvailable": true, + "epgTextSubstitution": "", + "displayOrder": 95, + "csaCode": 1, + "slogan": "La chaine de toutes les aventures", + "catchupChannelId": "catchuptv_canal_j", + "newChannel": false, + "roamingBlocked": true, + "allowedDeviceCategories": [ + "M_ANDROID", + "M_IOS", + "M_TABLET_ANDROID", + "M_TABLET_IOS", + "W_AIRPLAY", + "W_CHROMECAST", + "W_LACLETV2", + "W_SMARTTV", + "W_PC", + "S_STB" + ], + "packages": [ + "PA_pack_kids", + "PA_bouquet_famille_disneyplus", + "PA_pack_intense", + "PA_bouquet_divertissement_fibre", + "PA_bouquet_famille_by_canal", + "PA_bouquet_famille_by_canal_nov2018", + "PA_bouquet_famille_max", + "PA_bouquet_divertissement_adsl", + "PI_WHITELIST" + ], + "hasRightIAccess": true, + "hasRightMAccess": false, + "logos": [ + { + "definitionType": "mobileAppli", + "listLogos": [ + { + "size": "183x183", + "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_canal_j%2F20191106_163032%2FmobileAppli%2Flogo_183x183.png" + } + ] + }, + { + "definitionType": "mobileAppliDark", + "listLogos": [ + { + "size": "183x183", + "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_canal_j%2F20191106_163032%2FmobileAppliDark%2Flogo_183x183.png" + } + ] + }, + { + "definitionType": "webTVLogo", + "listLogos": [ + { + "size": "180x96", + "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_canal_j%2F20191106_163032%2FwebTVLogo%2Flogo_180x96.png" + } + ] + }, + { + "definitionType": "webTVSquare", + "listLogos": [ + { + "size": "150x150", + "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_canal_j%2F20191106_163032%2FwebTVSquare%2Flogo_150x150.png" + } + ] + } + ], + "mobileData": { + "wifiForbidden": false, + "wifiSecuredOnly": false, + "everywhereChannel": true, + "nomadismAllowed": true, + "drmLevels": [ + { + "definition": "SD", + "securedTerminal": [ + "DRM-HW", + "DRM-SW" + ], + "unsecuredTerminal": [ + "DRM-HW", + "DRM-SW" + ] + }, + { + "definition": "HD", + "securedTerminal": [ + "DRM-HW", + "DRM-SW" + ], + "unsecuredTerminal": [ + "ND" + ] + } + ] + }, + "webdeviceData": { + "nomadismAllowed": true + }, + "technicalChannels": { + "live": [ + { + "techChannelId": "400108", + "type": "CLOUDTV", + "liveTargetURLRelativePath": "livetv_canal_j_ctv", + "usi": 400108, + "isDRMized": true, + "csa5Disabled": true + } + ], + "npvr": [ + { + "externalId": "livetv_canal_j_ctv", + "techChannelId": "400108", + "type": "CLOUDTV", + "usi": 400108, + "isDRMized": true, + "antiAdskipping": "DEACTIVATED", + "csa5Disabled": true + } + ], + "startover": [] + } + }, + { + "name": "NICKELODEON JUNIOR", + "editoChannelId": "livetv_nickelodeon_junior", + "lcn": 96, + "idEPG": 888, + "epgAvailable": true, + "epgTextSubstitution": "", + "displayOrder": 96, + "csaCode": 1, + "slogan": "Chaîne préscolaire des 3-7 ans", + "catchupChannelId": "catchuptv_nickelodeon_junior", + "newChannel": false, + "roamingBlocked": true, + "allowedDeviceCategories": [ + "M_ANDROID", + "M_IOS", + "M_TABLET_ANDROID", + "M_TABLET_IOS", + "W_AIRPLAY", + "W_CHROMECAST", + "W_LACLETV2", + "W_SMARTTV", + "W_PC", + "S_STB" + ], + "packages": [ + "PA_pack_kids", + "PA_bouquet_famille_disneyplus", + "PA_pack_intense", + "PA_bouquet_divertissement_fibre", + "PA_bouquet_famille_by_canal", + "PA_bouquet_famille_by_canal_nov2018", + "PA_bouquet_famille_max", + "PA_bouquet_divertissement_adsl", + "PI_WHITELIST" + ], + "hasRightIAccess": true, + "hasRightMAccess": false, + "logos": [ + { + "definitionType": "mobileAppli", + "listLogos": [ + { + "size": "183x183", + "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_nickelodeon_junior%2F20200615_173007%2FmobileAppli%2Flogo_183x183.png" + } + ] + }, + { + "definitionType": "mobileAppliDark", + "listLogos": [ + { + "size": "183x183", + "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_nickelodeon_junior%2F20200615_173007%2FmobileAppliDark%2Flogo_183x183.png" + } + ] + }, + { + "definitionType": "webTVLogo", + "listLogos": [ + { + "size": "180x96", + "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_nickelodeon_junior%2F20200615_173007%2FwebTVLogo%2Flogo_180x96.png" + } + ] + }, + { + "definitionType": "webTVSquare", + "listLogos": [ + { + "size": "150x150", + "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_nickelodeon_junior%2F20200615_173007%2FwebTVSquare%2Flogo_150x150.png" + } + ] + } + ], + "mobileData": { + "wifiForbidden": false, + "wifiSecuredOnly": false, + "everywhereChannel": true, + "nomadismAllowed": true, + "drmLevels": [ + { + "definition": "SD", + "securedTerminal": [ + "DRM-HW", + "DRM-SW" + ], + "unsecuredTerminal": [ + "DRM-HW", + "DRM-SW" + ] + }, + { + "definition": "HD", + "securedTerminal": [ + "ND" + ], + "unsecuredTerminal": [ + "ND" + ] + } + ] + }, + "webdeviceData": { + "nomadismAllowed": true + }, + "technicalChannels": { + "live": [ + { + "techChannelId": "400113", + "type": "CLOUDTV", + "liveTargetURLRelativePath": "livetv_nickelodeon_junior_ctv", + "usi": 400113, + "isDRMized": true, + "csa5Disabled": true + } + ], + "npvr": [ + { + "externalId": "livetv_nickelodeon_junior_ctv", + "techChannelId": "400113", + "type": "CLOUDTV", + "usi": 400113, + "isDRMized": true, + "antiAdskipping": "DEACTIVATED", + "csa5Disabled": true + } + ], + "startover": [] + } + }, + { + "name": "NICKELODEON", + "editoChannelId": "livetv_nickelodeon", + "lcn": 97, + "idEPG": 473, + "epgAvailable": true, + "epgTextSubstitution": "", + "displayOrder": 97, + "csaCode": 1, + "slogan": "Chaîne pour les 7/14 ans", + "catchupChannelId": "catchuptv_catchuptv_nickelodeon_v", + "newChannel": false, + "roamingBlocked": true, + "allowedDeviceCategories": [ + "M_ANDROID", + "M_IOS", + "M_TABLET_ANDROID", + "M_TABLET_IOS", + "W_AIRPLAY", + "W_CHROMECAST", + "W_LACLETV2", + "W_SMARTTV", + "W_PC", + "S_STB" + ], + "packages": [ + "PA_pack_kids", + "PA_bouquet_famille_disneyplus", + "PA_pack_intense", + "PA_bouquet_divertissement_fibre", + "PA_bouquet_famille_by_canal", + "PA_bouquet_famille_by_canal_nov2018", + "PA_bouquet_famille_max", + "PA_bouquet_divertissement_adsl", + "PI_WHITELIST" + ], + "hasRightIAccess": true, + "hasRightMAccess": false, + "logos": [ + { + "definitionType": "mobileAppli", + "listLogos": [ + { + "size": "183x183", + "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_nickelodeon%2F20200615_173007%2FmobileAppli%2Flogo_183x183.png" + } + ] + }, + { + "definitionType": "mobileAppliDark", + "listLogos": [ + { + "size": "183x183", + "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_nickelodeon%2F20200615_173007%2FmobileAppliDark%2Flogo_183x183.png" + } + ] + }, + { + "definitionType": "webTVLogo", + "listLogos": [ + { + "size": "180x96", + "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_nickelodeon%2F20200615_173007%2FwebTVLogo%2Flogo_180x96.png" + } + ] + }, + { + "definitionType": "webTVSquare", + "listLogos": [ + { + "size": "150x150", + "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_nickelodeon%2F20200615_173007%2FwebTVSquare%2Flogo_150x150.png" + } + ] + } + ], + "mobileData": { + "wifiForbidden": false, + "wifiSecuredOnly": false, + "everywhereChannel": true, + "nomadismAllowed": true, + "drmLevels": [ + { + "definition": "SD", + "securedTerminal": [ + "DRM-HW", + "DRM-SW" + ], + "unsecuredTerminal": [ + "DRM-HW", + "DRM-SW" + ] + }, + { + "definition": "HD", + "securedTerminal": [ + "ND" + ], + "unsecuredTerminal": [ + "ND" + ] + } + ] + }, + "webdeviceData": { + "nomadismAllowed": true + }, + "technicalChannels": { + "live": [ + { + "techChannelId": "400115", + "type": "CLOUDTV", + "liveTargetURLRelativePath": "livetv_nickelodeon_ctv", + "usi": 400115, + "isDRMized": true, + "csa5Disabled": true + } + ], + "npvr": [ + { + "externalId": "livetv_nickelodeon_ctv", + "techChannelId": "400115", + "type": "CLOUDTV", + "usi": 400115, + "isDRMized": true, + "antiAdskipping": "DEACTIVATED", + "csa5Disabled": true + } + ], + "startover": [] + } + }, + { + "name": "NICKELODEON +1", + "editoChannelId": "livetv_nickelodeon_1", + "lcn": 98, + "idEPG": 2065, + "epgAvailable": true, + "epgTextSubstitution": "", + "displayOrder": 98, + "csaCode": 1, + "slogan": "Tout NICKELODEON 1h plus tard", + "catchupChannelId": "", + "newChannel": false, + "roamingBlocked": true, + "allowedDeviceCategories": [ + "M_ANDROID", + "M_IOS", + "M_TABLET_ANDROID", + "M_TABLET_IOS", + "W_AIRPLAY", + "W_CHROMECAST", + "W_LACLETV2", + "W_SMARTTV", + "W_PC", + "S_STB" + ], + "packages": [ + "PA_pack_kids", + "PA_bouquet_famille_disneyplus", + "PA_pack_intense", + "PA_bouquet_divertissement_fibre", + "PA_bouquet_famille_by_canal", + "PA_bouquet_famille_by_canal_nov2018", + "PA_bouquet_famille_max", + "PA_bouquet_divertissement_adsl", + "PI_WHITELIST" + ], + "hasRightIAccess": true, + "hasRightMAccess": false, + "logos": [ + { + "definitionType": "mobileAppli", + "listLogos": [ + { + "size": "183x183", + "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_nickelodeon_1%2F20200615_173007%2FmobileAppli%2Flogo_183x183.png" + } + ] + }, + { + "definitionType": "mobileAppliDark", + "listLogos": [ + { + "size": "183x183", + "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_nickelodeon_1%2F20200615_173007%2FmobileAppliDark%2Flogo_183x183.png" + } + ] + }, + { + "definitionType": "webTVLogo", + "listLogos": [ + { + "size": "180x96", + "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_nickelodeon_1%2F20200615_173007%2FwebTVLogo%2Flogo_180x96.png" + } + ] + }, + { + "definitionType": "webTVSquare", + "listLogos": [ + { + "size": "150x150", + "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_nickelodeon_1%2F20200615_173007%2FwebTVSquare%2Flogo_150x150.png" + } + ] + } + ], + "mobileData": { + "wifiForbidden": false, + "wifiSecuredOnly": false, + "everywhereChannel": true, + "nomadismAllowed": true, + "drmLevels": [ + { + "definition": "SD", + "securedTerminal": [ + "DRM-HW", + "DRM-SW" + ], + "unsecuredTerminal": [ + "DRM-HW", + "DRM-SW" + ] + }, + { + "definition": "HD", + "securedTerminal": [ + "ND" + ], + "unsecuredTerminal": [ + "ND" + ] + } + ] + }, + "webdeviceData": { + "nomadismAllowed": true + }, + "technicalChannels": { + "live": [ + { + "techChannelId": "400116", + "type": "CLOUDTV", + "liveTargetURLRelativePath": "livetv_nickelodeon_plus_1_ctv", + "usi": 400116, + "isDRMized": true, + "csa5Disabled": true + } + ], + "npvr": [ + { + "externalId": "livetv_nickelodeon_plus_1_ctv", + "techChannelId": "400116", + "type": "CLOUDTV", + "usi": 400116, + "isDRMized": true, + "antiAdskipping": "DEACTIVATED", + "csa5Disabled": true + } + ], + "startover": [] + } + }, + { + "name": "NICKELODEON TEEN", + "editoChannelId": "livetv_nickelodeon_4teen", + "lcn": 99, + "idEPG": 1746, + "epgAvailable": true, + "epgTextSubstitution": "", + "displayOrder": 99, + "csaCode": 1, + "slogan": "Trop bien, trop cool", + "catchupChannelId": "catchuptv_nickelodeon_teen", + "newChannel": false, + "roamingBlocked": true, + "allowedDeviceCategories": [ + "M_ANDROID", + "M_IOS", + "M_TABLET_ANDROID", + "M_TABLET_IOS", + "W_AIRPLAY", + "W_CHROMECAST", + "W_LACLETV2", + "W_SMARTTV", + "W_PC", + "S_STB" + ], + "packages": [ + "PA_pack_kids", + "PA_bouquet_famille_disneyplus", + "PA_pack_intense", + "PA_bouquet_divertissement_fibre", + "PA_bouquet_famille_by_canal", + "PA_bouquet_famille_by_canal_nov2018", + "PA_bouquet_famille_max", + "PA_bouquet_divertissement_adsl", + "PI_WHITELIST" + ], + "hasRightIAccess": true, + "hasRightMAccess": false, + "logos": [ + { + "definitionType": "mobileAppli", + "listLogos": [ + { + "size": "183x183", + "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_nickelodeon_4teen%2F20200615_173007%2FmobileAppli%2Flogo_183x183.png" + } + ] + }, + { + "definitionType": "mobileAppliDark", + "listLogos": [ + { + "size": "183x183", + "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_nickelodeon_4teen%2F20200615_173007%2FmobileAppliDark%2Flogo_183x183.png" + } + ] + }, + { + "definitionType": "webTVLogo", + "listLogos": [ + { + "size": "180x96", + "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_nickelodeon_4teen%2F20200615_173007%2FwebTVLogo%2Flogo_180x96.png" + } + ] + }, + { + "definitionType": "webTVSquare", + "listLogos": [ + { + "size": "150x150", + "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_nickelodeon_4teen%2F20200615_173007%2FwebTVSquare%2Flogo_150x150.png" + } + ] + } + ], + "mobileData": { + "wifiForbidden": false, + "wifiSecuredOnly": false, + "everywhereChannel": true, + "nomadismAllowed": true, + "drmLevels": [ + { + "definition": "SD", + "securedTerminal": [ + "DRM-HW", + "DRM-SW" + ], + "unsecuredTerminal": [ + "DRM-HW", + "DRM-SW" + ] + }, + { + "definition": "HD", + "securedTerminal": [ + "ND" + ], + "unsecuredTerminal": [ + "ND" + ] + } + ] + }, + "webdeviceData": { + "nomadismAllowed": true + }, + "technicalChannels": { + "live": [ + { + "techChannelId": "400117", + "type": "CLOUDTV", + "liveTargetURLRelativePath": "livetv_nickelodeon_4teen_ctv", + "usi": 400117, + "isDRMized": true, + "csa5Disabled": true + } + ], + "npvr": [ + { + "externalId": "livetv_nickelodeon_4teen_ctv", + "techChannelId": "400117", + "type": "CLOUDTV", + "usi": 400117, + "isDRMized": true, + "antiAdskipping": "DEACTIVATED", + "csa5Disabled": true + } + ], + "startover": [] + } + }, + { + "name": "DISNEY CHANNEL", + "editoChannelId": "livetv_disney_channel", + "lcn": 101, + "idEPG": 58, + "epgAvailable": true, + "epgTextSubstitution": "", + "displayOrder": 101, + "csaCode": 1, + "slogan": "La chaîne des héros préférés des enfants", + "catchupChannelId": "catchuptv_disneychannelfbc", + "newChannel": false, + "roamingBlocked": true, + "allowedDeviceCategories": [ + "M_ANDROID", + "M_IOS", + "M_TABLET_ANDROID", + "M_TABLET_IOS", + "W_AIRPLAY", + "W_CHROMECAST", + "W_LACLETV2", + "W_SMARTTV", + "W_PC", + "S_STB" + ], + "packages": [ + "PA_BQ_PASSACCESTVPREMIUM_M", + "PA_BQ_RE_TVMAX_M", + "PA_BQ_ACCESTVPREMIUM_M", + "PA_BQ_PAYG_M", + "PA_bouquet_divertissement_fibre", + "PA_bouquet_famille_by_canal", + "PA_bouquet_famille_by_canal_nov2018", + "PA_BQ_SPORT_M", + "PA_BQ_ACCESTV_M", + "PI_WHITELIST" + ], + "hasRightIAccess": true, + "hasRightMAccess": true, + "logos": [ + { + "definitionType": "mobileAppli", + "listLogos": [ + { + "size": "183x183", + "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_disney_channel%2F20200217_155011%2FmobileAppli%2Flogo_183x183.png" + } + ] + }, + { + "definitionType": "mobileAppliDark", + "listLogos": [ + { + "size": "183x183", + "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_disney_channel%2F20200217_155011%2FmobileAppliDark%2Flogo_183x183.png" + } + ] + }, + { + "definitionType": "webTVLogo", + "listLogos": [ + { + "size": "180x96", + "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_disney_channel%2F20200217_155011%2FwebTVLogo%2Flogo_180x96.png" + } + ] + }, + { + "definitionType": "webTVSquare", + "listLogos": [ + { + "size": "150x150", + "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_disney_channel%2F20200217_155011%2FwebTVSquare%2Flogo_150x150.png" + } + ] + } + ], + "mobileData": { + "wifiForbidden": false, + "wifiSecuredOnly": false, + "everywhereChannel": true, + "nomadismAllowed": true, + "drmLevels": [ + { + "definition": "SD", + "securedTerminal": [ + "DRM-HW", + "DRM-SW" + ], + "unsecuredTerminal": [ + "DRM-HW", + "DRM-SW" + ] + }, + { + "definition": "HD", + "securedTerminal": [ + "DRM-HW", + "DRM-SW" + ], + "unsecuredTerminal": [ + "ND" + ] + } + ] + }, + "webdeviceData": { + "nomadismAllowed": true + }, + "technicalChannels": { + "live": [ + { + "techChannelId": "400105", + "type": "CLOUDTV", + "liveTargetURLRelativePath": "livetv_disney_channel_ctv", + "usi": 400105, + "isDRMized": true, + "csa5Disabled": true + } + ], + "npvr": [ + { + "externalId": "livetv_disney_channel_ctv", + "techChannelId": "400105", + "type": "CLOUDTV", + "usi": 400105, + "isDRMized": true, + "antiAdskipping": "DEACTIVATED", + "csa5Disabled": true + } + ], + "startover": [] + } + }, + { + "name": "DISNEY CHANNEL +1", + "editoChannelId": "livetv_disneychannel_1", + "lcn": 102, + "idEPG": 299, + "epgAvailable": true, + "epgTextSubstitution": "", + "displayOrder": 102, + "csaCode": 1, + "slogan": "Tout Disney une heure plus tard", + "catchupChannelId": "", + "newChannel": false, + "roamingBlocked": false, + "allowedDeviceCategories": [ + "M_ANDROID", + "M_IOS", + "M_TABLET_ANDROID", + "M_TABLET_IOS", + "W_AIRPLAY", + "W_CHROMECAST", + "W_LACLETV2", + "W_SMARTTV", + "W_PC", + "S_STB" + ], + "packages": [ + "PA_bouquet_divertissement_fibre", + "PA_bouquet_famille_by_canal", + "PA_bouquet_famille_by_canal_nov2018", + "PI_WHITELIST" + ], + "hasRightIAccess": true, + "hasRightMAccess": false, + "logos": [ + { + "definitionType": "mobileAppli", + "listLogos": [ + { + "size": "183x183", + "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_disneychannel_1%2F20200217_155011%2FmobileAppli%2Flogo_183x183.png" + } + ] + }, + { + "definitionType": "mobileAppliDark", + "listLogos": [ + { + "size": "183x183", + "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_disneychannel_1%2F20200217_155011%2FmobileAppliDark%2Flogo_183x183.png" + } + ] + }, + { + "definitionType": "webTVLogo", + "listLogos": [ + { + "size": "180x96", + "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_disneychannel_1%2F20200217_155011%2FwebTVLogo%2Flogo_180x96.png" + } + ] + }, + { + "definitionType": "webTVSquare", + "listLogos": [ + { + "size": "150x150", + "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_disneychannel_1%2F20200217_155011%2FwebTVSquare%2Flogo_150x150.png" + } + ] + } + ], + "mobileData": { + "wifiForbidden": false, + "wifiSecuredOnly": false, + "everywhereChannel": true, + "nomadismAllowed": true, + "drmLevels": [ + { + "definition": "SD", + "securedTerminal": [ + "DRM-HW", + "DRM-SW" + ], + "unsecuredTerminal": [ + "DRM-HW", + "DRM-SW" + ] + }, + { + "definition": "HD", + "securedTerminal": [ + "ND" + ], + "unsecuredTerminal": [ + "ND" + ] + } + ] + }, + "webdeviceData": { + "nomadismAllowed": true + }, + "technicalChannels": { + "live": [ + { + "techChannelId": "400251", + "type": "CLOUDTV", + "liveTargetURLRelativePath": "livetv_disneychannel1_ctv", + "usi": 400251, + "isDRMized": true, + "csa5Disabled": true + } + ], + "npvr": [], + "startover": [] + } + }, + { + "name": "DISNEY JUNIOR", + "editoChannelId": "livetv_disney_junior", + "lcn": 103, + "idEPG": 300, + "epgAvailable": true, + "epgTextSubstitution": "", + "displayOrder": 103, + "csaCode": 1, + "slogan": "La magie commence ici", + "catchupChannelId": "catchuptv_disneyjunior", + "newChannel": false, + "roamingBlocked": true, + "allowedDeviceCategories": [ + "M_ANDROID", + "M_IOS", + "M_TABLET_ANDROID", + "M_TABLET_IOS", + "W_AIRPLAY", + "W_CHROMECAST", + "W_LACLETV2", + "W_SMARTTV", + "W_PC", + "S_STB" + ], + "packages": [ + "PA_bouquet_divertissement_fibre", + "PA_bouquet_famille_by_canal", + "PA_bouquet_famille_by_canal_nov2018", + "PI_WHITELIST" + ], + "hasRightIAccess": true, + "hasRightMAccess": false, + "logos": [ + { + "definitionType": "mobileAppli", + "listLogos": [ + { + "size": "183x183", + "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_disney_junior%2F20170405_200000%2FmobileAppli%2Flogo_183x183.png" + } + ] + }, + { + "definitionType": "mobileAppliDark", + "listLogos": [ + { + "size": "183x183", + "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_disney_junior%2F20170405_200000%2FmobileAppliDark%2Flogo_183x183.png" + } + ] + }, + { + "definitionType": "webTVLogo", + "listLogos": [ + { + "size": "180x96", + "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_disney_junior%2F20170405_200000%2FwebTVLogo%2Flogo_180x96.png" + } + ] + }, + { + "definitionType": "webTVSquare", + "listLogos": [ + { + "size": "150x150", + "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_disney_junior%2F20170405_200000%2FwebTVSquare%2Flogo_150x150.png" + } + ] + } + ], + "mobileData": { + "wifiForbidden": false, + "wifiSecuredOnly": false, + "everywhereChannel": true, + "nomadismAllowed": true, + "drmLevels": [ + { + "definition": "SD", + "securedTerminal": [ + "DRM-HW", + "DRM-SW" + ], + "unsecuredTerminal": [ + "DRM-HW", + "DRM-SW" + ] + }, + { + "definition": "HD", + "securedTerminal": [ + "ND" + ], + "unsecuredTerminal": [ + "ND" + ] + } + ] + }, + "webdeviceData": { + "nomadismAllowed": true + }, + "technicalChannels": { + "live": [ + { + "techChannelId": "400112", + "type": "CLOUDTV", + "liveTargetURLRelativePath": "livetv_disney_junior_ctv", + "usi": 400112, + "isDRMized": true, + "csa5Disabled": true + } + ], + "npvr": [ + { + "externalId": "livetv_disney_junior_ctv", + "techChannelId": "400112", + "type": "CLOUDTV", + "usi": 400112, + "isDRMized": true, + "antiAdskipping": "DEACTIVATED", + "csa5Disabled": true + } + ], + "startover": [] + } + }, + { + "name": "PIWI+", + "editoChannelId": "livetv_piwi", + "lcn": 105, + "idEPG": 344, + "epgAvailable": true, + "epgTextSubstitution": "", + "displayOrder": 105, + "csaCode": 1, + "slogan": "Le jardin d'éveil des tout-petits", + "catchupChannelId": "catchuptv_piwiplus", + "newChannel": false, + "roamingBlocked": true, + "allowedDeviceCategories": [ + "M_ANDROID", + "M_IOS", + "M_TABLET_ANDROID", + "M_TABLET_IOS", + "W_AIRPLAY", + "W_CHROMECAST", + "W_LACLETV2", + "W_SMARTTV", + "W_PC", + "S_STB" + ], + "packages": [ + "PA_bouquet_divertissement_fibre", + "PA_bouquet_famille_by_canal", + "PA_bouquet_famille_by_canal_nov2018", + "PI_WHITELIST" + ], + "hasRightIAccess": true, + "hasRightMAccess": false, + "logos": [ + { + "definitionType": "mobileAppli", + "listLogos": [ + { + "size": "183x183", + "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_piwi%2F20170405_200000%2FmobileAppli%2Flogo_183x183.png" + } + ] + }, + { + "definitionType": "mobileAppliDark", + "listLogos": [ + { + "size": "183x183", + "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_piwi%2F20170405_200000%2FmobileAppliDark%2Flogo_183x183.png" + } + ] + }, + { + "definitionType": "webTVLogo", + "listLogos": [ + { + "size": "180x96", + "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_piwi%2F20170405_200000%2FwebTVLogo%2Flogo_180x96.png" + } + ] + }, + { + "definitionType": "webTVSquare", + "listLogos": [ + { + "size": "150x150", + "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_piwi%2F20170405_200000%2FwebTVSquare%2Flogo_150x150.png" + } + ] + } + ], + "mobileData": { + "wifiForbidden": false, + "wifiSecuredOnly": false, + "everywhereChannel": true, + "nomadismAllowed": true, + "drmLevels": [ + { + "definition": "SD", + "securedTerminal": [ + "DRM-HW", + "DRM-SW" + ], + "unsecuredTerminal": [ + "DRM-HW", + "DRM-SW" + ] + }, + { + "definition": "HD", + "securedTerminal": [ + "ND" + ], + "unsecuredTerminal": [ + "ND" + ] + } + ] + }, + "webdeviceData": { + "nomadismAllowed": true + }, + "technicalChannels": { + "live": [ + { + "techChannelId": "400109", + "type": "CLOUDTV", + "liveTargetURLRelativePath": "livetv_piwi_plus_ctv", + "usi": 400109, + "isDRMized": true, + "csa5Disabled": true + } + ], + "npvr": [ + { + "externalId": "livetv_piwi_plus_ctv", + "techChannelId": "400109", + "type": "CLOUDTV", + "usi": 400109, + "isDRMized": true, + "antiAdskipping": "DEACTIVATED", + "csa5Disabled": true + } + ], + "startover": [] + } + }, + { + "name": "TELETOON+", + "editoChannelId": "livetv_teletoon", + "lcn": 106, + "idEPG": 197, + "epgAvailable": true, + "epgTextSubstitution": "", + "displayOrder": 106, + "csaCode": 1, + "slogan": "La chaîne des enfants d'aujourd'hui", + "catchupChannelId": "catchuptv_teletoonplus", + "newChannel": false, + "roamingBlocked": true, + "allowedDeviceCategories": [ + "M_ANDROID", + "M_IOS", + "M_TABLET_ANDROID", + "M_TABLET_IOS", + "W_AIRPLAY", + "W_CHROMECAST", + "W_LACLETV2", + "W_SMARTTV", + "W_PC", + "S_STB" + ], + "packages": [ + "PA_bouquet_divertissement_fibre", + "PA_bouquet_famille_by_canal", + "PA_bouquet_famille_by_canal_nov2018", + "PI_WHITELIST" + ], + "hasRightIAccess": true, + "hasRightMAccess": false, + "logos": [ + { + "definitionType": "mobileAppli", + "listLogos": [ + { + "size": "183x183", + "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_teletoon%2F20170405_200000%2FmobileAppli%2Flogo_183x183.png" + } + ] + }, + { + "definitionType": "mobileAppliDark", + "listLogos": [ + { + "size": "183x183", + "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_teletoon%2F20170405_200000%2FmobileAppliDark%2Flogo_183x183.png" + } + ] + }, + { + "definitionType": "webTVLogo", + "listLogos": [ + { + "size": "180x96", + "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_teletoon%2F20170405_200000%2FwebTVLogo%2Flogo_180x96.png" + } + ] + }, + { + "definitionType": "webTVSquare", + "listLogos": [ + { + "size": "150x150", + "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_teletoon%2F20170405_200000%2FwebTVSquare%2Flogo_150x150.png" + } + ] + } + ], + "mobileData": { + "wifiForbidden": false, + "wifiSecuredOnly": false, + "everywhereChannel": true, + "nomadismAllowed": true, + "drmLevels": [ + { + "definition": "SD", + "securedTerminal": [ + "DRM-HW", + "DRM-SW" + ], + "unsecuredTerminal": [ + "DRM-HW", + "DRM-SW" + ] + }, + { + "definition": "HD", + "securedTerminal": [ + "ND" + ], + "unsecuredTerminal": [ + "ND" + ] + } + ] + }, + "webdeviceData": { + "nomadismAllowed": true + }, + "technicalChannels": { + "live": [ + { + "techChannelId": "400110", + "type": "CLOUDTV", + "liveTargetURLRelativePath": "livetv_teletoon_ctv", + "usi": 400110, + "isDRMized": true, + "csa5Disabled": true + } + ], + "npvr": [ + { + "externalId": "livetv_teletoon_ctv", + "techChannelId": "400110", + "type": "CLOUDTV", + "usi": 400110, + "isDRMized": true, + "antiAdskipping": "DEACTIVATED", + "csa5Disabled": true + } + ], + "startover": [] + } + }, + { + "name": "TELETOON +1", + "editoChannelId": "livetv_teletoonplus1", + "lcn": 107, + "idEPG": 293, + "epgAvailable": true, + "epgTextSubstitution": "", + "displayOrder": 107, + "csaCode": 1, + "slogan": "Tout TéléTOON 1h plus tard", + "catchupChannelId": "", + "newChannel": false, + "roamingBlocked": true, + "allowedDeviceCategories": [ + "M_ANDROID", + "M_IOS", + "M_TABLET_ANDROID", + "M_TABLET_IOS", + "W_AIRPLAY", + "W_CHROMECAST", + "W_LACLETV2", + "W_SMARTTV", + "W_PC", + "S_STB" + ], + "packages": [ + "PA_bouquet_divertissement_fibre", + "PA_bouquet_famille_by_canal", + "PA_bouquet_famille_by_canal_nov2018", + "PI_WHITELIST" + ], + "hasRightIAccess": true, + "hasRightMAccess": false, + "logos": [ + { + "definitionType": "mobileAppli", + "listLogos": [ + { + "size": "183x183", + "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_teletoonplus1%2F20170405_200000%2FmobileAppli%2Flogo_183x183.png" + } + ] + }, + { + "definitionType": "mobileAppliDark", + "listLogos": [ + { + "size": "183x183", + "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_teletoonplus1%2F20170405_200000%2FmobileAppliDark%2Flogo_183x183.png" + } + ] + }, + { + "definitionType": "webTVLogo", + "listLogos": [ + { + "size": "180x96", + "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_teletoonplus1%2F20170405_200000%2FwebTVLogo%2Flogo_180x96.png" + } + ] + }, + { + "definitionType": "webTVSquare", + "listLogos": [ + { + "size": "150x150", + "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_teletoonplus1%2F20170405_200000%2FwebTVSquare%2Flogo_150x150.png" + } + ] + } + ], + "mobileData": { + "wifiForbidden": false, + "wifiSecuredOnly": false, + "everywhereChannel": true, + "nomadismAllowed": true, + "drmLevels": [ + { + "definition": "SD", + "securedTerminal": [ + "DRM-HW", + "DRM-SW" + ], + "unsecuredTerminal": [ + "DRM-HW", + "DRM-SW" + ] + }, + { + "definition": "HD", + "securedTerminal": [ + "ND" + ], + "unsecuredTerminal": [ + "ND" + ] + } + ] + }, + "webdeviceData": { + "nomadismAllowed": true + }, + "technicalChannels": { + "live": [ + { + "techChannelId": "400111", + "type": "CLOUDTV", + "liveTargetURLRelativePath": "livetv_teletoon_plus_1_ctv", + "usi": 400111, + "isDRMized": true, + "csa5Disabled": true + } + ], + "npvr": [ + { + "externalId": "livetv_teletoon_plus_1_ctv", + "techChannelId": "400111", + "type": "CLOUDTV", + "usi": 400111, + "isDRMized": true, + "antiAdskipping": "DEACTIVATED", + "csa5Disabled": true + } + ], + "startover": [] + } + }, + { + "name": "L'ESPRIT SORCIER TV", + "editoChannelId": "livetv_esprit_sorcier_tv", + "lcn": 111, + "idEPG": 3561, + "epgAvailable": true, + "epgTextSubstitution": "", + "displayOrder": 111, + "csaCode": 1, + "slogan": "La chaine sciences et environnement", + "catchupChannelId": "", + "newChannel": true, + "roamingBlocked": false, + "allowedDeviceCategories": [ + "M_ANDROID", + "M_IOS", + "M_TABLET_ANDROID", + "M_TABLET_IOS", + "W_AIRPLAY", + "W_CHROMECAST", + "W_LACLETV2", + "W_PC", + "W_SMARTTV", + "S_STB" + ], + "packages": [ + "PA_BQ_BASIC_M", + "PA_BQ_TVDIGITALE_I", + "PA_BQ_BASIC_I", + "PA_BQ_BASICQUAD_I", + "PI_WHITELIST" + ], + "hasRightIAccess": true, + "hasRightMAccess": true, + "logos": [ + { + "definitionType": "mobileAppli", + "listLogos": [ + { + "size": "183x183", + "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_esprit_sorcier_tv%2F20220922_114506%2FmobileAppli%2Flogo_183x183.png" + } + ] + }, + { + "definitionType": "mobileAppliDark", + "listLogos": [ + { + "size": "183x183", + "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_esprit_sorcier_tv%2F20220922_114506%2FmobileAppliDark%2Flogo_183x183.png" + } + ] + }, + { + "definitionType": "webTVLogo", + "listLogos": [ + { + "size": "180x96", + "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_esprit_sorcier_tv%2F20220922_114506%2FwebTVLogo%2Flogo_180x96.png" + } + ] + }, + { + "definitionType": "webTVSquare", + "listLogos": [ + { + "size": "150x150", + "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_esprit_sorcier_tv%2F20220922_114506%2FwebTVSquare%2Flogo_150x150.png" + } + ] + } + ], + "mobileData": { + "wifiForbidden": false, + "wifiSecuredOnly": false, + "everywhereChannel": true, + "nomadismAllowed": true, + "drmLevels": [ + { + "definition": "SD", + "securedTerminal": [ + "DRM-HW", + "DRM-SW" + ], + "unsecuredTerminal": [ + "DRM-HW", + "DRM-SW" + ] + }, + { + "definition": "HD", + "securedTerminal": [ + "DRM-HW", + "DRM-SW" + ], + "unsecuredTerminal": [ + "NO-DRM" + ] + } + ] + }, + "webdeviceData": { + "nomadismAllowed": true + }, + "technicalChannels": { + "live": [ + { + "techChannelId": "400243", + "type": "CLOUDTV", + "liveTargetURLRelativePath": "livetv_l_esprit_sorcier_tv_ctv", + "usi": 400243, + "isDRMized": true, + "csa5Disabled": true + } + ], + "npvr": [ + { + "externalId": "livetv_l_esprit_sorcier_tv_ctv", + "techChannelId": "400243", + "type": "CLOUDTV", + "usi": 400243, + "isDRMized": true, + "antiAdskipping": "DEACTIVATED", + "csa5Disabled": true + } + ], + "startover": [] + } + }, + { + "name": "MUSEUM TV", + "editoChannelId": "livetv_museum_channel", + "lcn": 112, + "idEPG": 1072, + "epgAvailable": true, + "epgTextSubstitution": "", + "displayOrder": 112, + "csaCode": 1, + "slogan": "Museum TV, la première télé 100% art", + "catchupChannelId": "catchuptv_museumtv", + "newChannel": true, + "roamingBlocked": true, + "allowedDeviceCategories": [ + "M_ANDROID", + "M_IOS", + "M_TABLET_ANDROID", + "M_TABLET_IOS", + "W_AIRPLAY", + "W_CHROMECAST", + "W_LACLETV2", + "W_SMARTTV", + "W_PC", + "S_STB" + ], + "packages": [ + "PA_BQ_BASIC_M", + "PA_BQ_TVDIGITALE_I", + "PA_BQ_BASIC_I", + "PA_BQ_BASICQUAD_I", + "PI_WHITELIST" + ], + "hasRightIAccess": true, + "hasRightMAccess": true, + "logos": [ + { + "definitionType": "mobileAppli", + "listLogos": [ + { + "size": "183x183", + "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_museum_channel%2F20210125_104742%2FmobileAppli%2Flogo_183x183.png" + } + ] + }, + { + "definitionType": "mobileAppliDark", + "listLogos": [ + { + "size": "183x183", + "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_museum_channel%2F20210125_104742%2FmobileAppliDark%2Flogo_183x183.png" + } + ] + }, + { + "definitionType": "webTVLogo", + "listLogos": [ + { + "size": "180x96", + "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_museum_channel%2F20210125_104742%2FwebTVLogo%2Flogo_180x96.png" + } + ] + }, + { + "definitionType": "webTVSquare", + "listLogos": [ + { + "size": "150x150", + "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_museum_channel%2F20210125_104742%2FwebTVSquare%2Flogo_150x150.png" + } + ] + } + ], + "mobileData": { + "wifiForbidden": false, + "wifiSecuredOnly": false, + "everywhereChannel": true, + "nomadismAllowed": true, + "drmLevels": [ + { + "definition": "SD", + "securedTerminal": [ + "DRM-HW", + "DRM-SW" + ], + "unsecuredTerminal": [ + "DRM-HW", + "DRM-SW" + ] + }, + { + "definition": "HD", + "securedTerminal": [ + "ND" + ], + "unsecuredTerminal": [ + "ND" + ] + } + ] + }, + "webdeviceData": { + "nomadismAllowed": true + }, + "technicalChannels": { + "live": [ + { + "techChannelId": "400160", + "type": "CLOUDTV", + "liveTargetURLRelativePath": "livetv_museum_ctv", + "usi": 400160, + "isDRMized": true, + "csa5Disabled": true + } + ], + "npvr": [ + { + "externalId": "livetv_museum_ctv", + "techChannelId": "400160", + "type": "CLOUDTV", + "usi": 400160, + "isDRMized": true, + "antiAdskipping": "DEACTIVATED", + "csa5Disabled": true + } + ], + "startover": [] + } + }, + { + "name": "MAISON ET TRAVAUX TV", + "editoChannelId": "livetv_maison_et_travaux_tv", + "lcn": 113, + "idEPG": 3360, + "epgAvailable": true, + "epgTextSubstitution": "", + "displayOrder": 113, + "csaCode": 1, + "slogan": "Deco, Brico, Reno et Jardinage", + "catchupChannelId": "catchuptv_maison_travaux", + "newChannel": true, + "roamingBlocked": false, + "allowedDeviceCategories": [ + "M_ANDROID", + "M_IOS", + "M_TABLET_ANDROID", + "M_TABLET_IOS", + "W_AIRPLAY", + "W_CHROMECAST", + "W_LACLETV2", + "W_PC", + "W_SMARTTV", + "S_STB" + ], + "packages": [ + "PA_BQ_BASIC_M", + "PA_BQ_TVDIGITALE_I", + "PA_BQ_BASIC_I", + "PA_BQ_BASICQUAD_I", + "PI_WHITELIST" + ], + "hasRightIAccess": true, + "hasRightMAccess": true, + "logos": [ + { + "definitionType": "mobileAppli", + "listLogos": [ + { + "size": "183x183", + "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_maison_et_travaux_tv%2F20210930_141331%2FmobileAppli%2Flogo_183x183.png" + } + ] + }, + { + "definitionType": "mobileAppliDark", + "listLogos": [ + { + "size": "183x183", + "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_maison_et_travaux_tv%2F20210930_141331%2FmobileAppliDark%2Flogo_183x183.png" + } + ] + }, + { + "definitionType": "webTVLogo", + "listLogos": [ + { + "size": "180x96", + "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_maison_et_travaux_tv%2F20210930_141331%2FwebTVLogo%2Flogo_180x96.png" + } + ] + }, + { + "definitionType": "webTVSquare", + "listLogos": [ + { + "size": "150x150", + "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_maison_et_travaux_tv%2F20210930_141331%2FwebTVSquare%2Flogo_150x150.png" + } + ] + } + ], + "mobileData": { + "wifiForbidden": false, + "wifiSecuredOnly": false, + "everywhereChannel": true, + "nomadismAllowed": true, + "drmLevels": [ + { + "definition": "SD", + "securedTerminal": [ + "DRM-HW", + "DRM-SW" + ], + "unsecuredTerminal": [ + "DRM-HW", + "DRM-SW" + ] + }, + { + "definition": "HD", + "securedTerminal": [ + "NO-DRM" + ], + "unsecuredTerminal": [ + "NO-DRM" + ] + } + ] + }, + "webdeviceData": { + "nomadismAllowed": true + }, + "technicalChannels": { + "live": [ + { + "techChannelId": "400406", + "type": "CLOUDTV", + "liveTargetURLRelativePath": "livetv_maison_et_travaux_ctv", + "usi": 400406, + "isDRMized": true, + "csa5Disabled": true + } + ], + "npvr": [ + { + "externalId": "livetv_maison_et_travaux_ctv", + "techChannelId": "400406", + "type": "CLOUDTV", + "usi": 400406, + "isDRMized": true, + "antiAdskipping": "DEACTIVATED", + "csa5Disabled": true + } + ], + "startover": [] + } + }, + { + "name": "TOP SANTE TV", + "editoChannelId": "livetv_top_sante_tv", + "lcn": 114, + "idEPG": 3106, + "epgAvailable": true, + "epgTextSubstitution": "", + "displayOrder": 114, + "csaCode": 1, + "slogan": "Votre chaîne Santé et Bien-Etre", + "catchupChannelId": "catchuptv_top_sante", + "newChannel": true, + "roamingBlocked": false, + "allowedDeviceCategories": [ + "M_ANDROID", + "M_IOS", + "M_TABLET_ANDROID", + "M_TABLET_IOS", + "W_AIRPLAY", + "W_CHROMECAST", + "W_LACLETV2", + "W_PC", + "W_SMARTTV", + "S_STB" + ], + "packages": [ + "PA_BQ_BASIC_M", + "PA_BQ_TVDIGITALE_I", + "PA_BQ_BASIC_I", + "PA_BQ_BASICQUAD_I", + "PI_WHITELIST" + ], + "hasRightIAccess": true, + "hasRightMAccess": true, + "logos": [ + { + "definitionType": "mobileAppli", + "listLogos": [ + { + "size": "183x183", + "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_top_sante_tv%2F20210930_141331%2FmobileAppli%2Flogo_183x183.png" + } + ] + }, + { + "definitionType": "mobileAppliDark", + "listLogos": [ + { + "size": "183x183", + "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_top_sante_tv%2F20210930_141331%2FmobileAppliDark%2Flogo_183x183.png" + } + ] + }, + { + "definitionType": "webTVLogo", + "listLogos": [ + { + "size": "180x96", + "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_top_sante_tv%2F20210930_141331%2FwebTVLogo%2Flogo_180x96.png" + } + ] + }, + { + "definitionType": "webTVSquare", + "listLogos": [ + { + "size": "150x150", + "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_top_sante_tv%2F20210930_141331%2FwebTVSquare%2Flogo_150x150.png" + } + ] + } + ], + "mobileData": { + "wifiForbidden": false, + "wifiSecuredOnly": false, + "everywhereChannel": true, + "nomadismAllowed": true, + "drmLevels": [ + { + "definition": "SD", + "securedTerminal": [ + "DRM-HW", + "DRM-SW" + ], + "unsecuredTerminal": [ + "DRM-HW", + "DRM-SW" + ] + }, + { + "definition": "HD", + "securedTerminal": [ + "NO-DRM" + ], + "unsecuredTerminal": [ + "NO-DRM" + ] + } + ] + }, + "webdeviceData": { + "nomadismAllowed": true + }, + "technicalChannels": { + "live": [ + { + "techChannelId": "400407", + "type": "CLOUDTV", + "liveTargetURLRelativePath": "livetv_top_sante_ctv", + "usi": 400407, + "isDRMized": true, + "csa5Disabled": true + } + ], + "npvr": [ + { + "externalId": "livetv_top_sante_ctv", + "techChannelId": "400407", + "type": "CLOUDTV", + "usi": 400407, + "isDRMized": true, + "antiAdskipping": "DEACTIVATED", + "csa5Disabled": true + } + ], + "startover": [] + } + }, + { + "name": "ANIMAUX", + "editoChannelId": "livetv_Animaux", + "lcn": 118, + "idEPG": 12, + "epgAvailable": true, + "epgTextSubstitution": "", + "displayOrder": 118, + "csaCode": 1, + "slogan": "La chaîne grandeur nature", + "catchupChannelId": "catchuptv_animaux", + "newChannel": false, + "roamingBlocked": true, + "allowedDeviceCategories": [ + "M_ANDROID", + "M_IOS", + "M_TABLET_ANDROID", + "M_TABLET_IOS", + "W_AIRPLAY", + "W_CHROMECAST", + "W_LACLETV2", + "W_SMARTTV", + "W_PC", + "S_STB" + ], + "packages": [ + "PA_BQ_PASSACCESTVPREMIUM_M", + "PA_pack_Divertissement", + "PA_BQ_RE_TVMAX_M", + "PA_bouquet_famille_disneyplus", + "PA_BQ_ACCESTVPREMIUM_M", + "PA_BQ_PAYG_M", + "PA_pack_intense", + "PA_bouquet_famille_max", + "PA_bouquet_divertissement_adsl", + "PI_WHITELIST" + ], + "hasRightIAccess": true, + "hasRightMAccess": true, + "logos": [ + { + "definitionType": "mobileAppli", + "listLogos": [ + { + "size": "183x183", + "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_Animaux%2F20200727_164727%2FmobileAppli%2Flogo_183x183.png" + } + ] + }, + { + "definitionType": "mobileAppliDark", + "listLogos": [ + { + "size": "183x183", + "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_Animaux%2F20200727_164727%2FmobileAppliDark%2Flogo_183x183.png" + } + ] + }, + { + "definitionType": "webTVLogo", + "listLogos": [ + { + "size": "180x96", + "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_Animaux%2F20200727_164727%2FwebTVLogo%2Flogo_180x96.png" + } + ] + }, + { + "definitionType": "webTVSquare", + "listLogos": [ + { + "size": "150x150", + "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_Animaux%2F20200727_164727%2FwebTVSquare%2Flogo_150x150.png" + } + ] + } + ], + "mobileData": { + "wifiForbidden": false, + "wifiSecuredOnly": false, + "everywhereChannel": true, + "nomadismAllowed": true, + "drmLevels": [ + { + "definition": "SD", + "securedTerminal": [ + "DRM-HW", + "DRM-SW" + ], + "unsecuredTerminal": [ + "DRM-HW", + "DRM-SW" + ] + }, + { + "definition": "HD", + "securedTerminal": [ + "ND" + ], + "unsecuredTerminal": [ + "ND" + ] + } + ] + }, + "webdeviceData": { + "nomadismAllowed": true + }, + "technicalChannels": { + "live": [ + { + "techChannelId": "400119", + "type": "CLOUDTV", + "liveTargetURLRelativePath": "livetv_animaux_ctv", + "usi": 400119, + "isDRMized": true, + "csa5Disabled": true + } + ], + "npvr": [ + { + "externalId": "livetv_animaux_ctv", + "techChannelId": "400119", + "type": "CLOUDTV", + "usi": 400119, + "isDRMized": true, + "antiAdskipping": "DEACTIVATED", + "csa5Disabled": true + } + ], + "startover": [] + } + }, + { + "name": "CRIME DISTRICT", + "editoChannelId": "livetv_CrimeDistrict", + "lcn": 119, + "idEPG": 2037, + "epgAvailable": true, + "epgTextSubstitution": "", + "displayOrder": 119, + "csaCode": 1, + "slogan": "C’est un crime de ne pas la regarder", + "catchupChannelId": "catchuptv_CrimeDistrict", + "newChannel": true, + "roamingBlocked": true, + "allowedDeviceCategories": [ + "M_ANDROID", + "M_IOS", + "M_TABLET_ANDROID", + "M_TABLET_IOS", + "W_AIRPLAY", + "W_CHROMECAST", + "W_LACLETV2", + "W_SMARTTV", + "W_PC", + "S_STB" + ], + "packages": [ + "PA_bouquet_famille_disneyplus", + "PA_pack_intense", + "PA_bouquet_famille_max", + "PA_bouquet_divertissement_adsl", + "PI_WHITELIST" + ], + "hasRightIAccess": true, + "hasRightMAccess": false, + "logos": [ + { + "definitionType": "mobileAppli", + "listLogos": [ + { + "size": "183x183", + "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_CrimeDistrict%2F20160211_110558%2FmobileAppli%2Flogo_183x183.png" + } + ] + }, + { + "definitionType": "mobileAppliDark", + "listLogos": [ + { + "size": "183x183", + "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_CrimeDistrict%2F20160211_110558%2FmobileAppliDark%2Flogo_183x183.png" + } + ] + }, + { + "definitionType": "webTVLogo", + "listLogos": [ + { + "size": "180x96", + "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_CrimeDistrict%2F20160211_110558%2FwebTVLogo%2Flogo_180x96.png" + } + ] + }, + { + "definitionType": "webTVSquare", + "listLogos": [ + { + "size": "150x150", + "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_CrimeDistrict%2F20160211_110558%2FwebTVSquare%2Flogo_150x150.png" + } + ] + } + ], + "mobileData": { + "wifiForbidden": false, + "wifiSecuredOnly": false, + "everywhereChannel": true, + "nomadismAllowed": true, + "drmLevels": [ + { + "definition": "SD", + "securedTerminal": [ + "DRM-HW", + "DRM-SW" + ], + "unsecuredTerminal": [ + "DRM-HW", + "DRM-SW" + ] + }, + { + "definition": "HD", + "securedTerminal": [ + "DRM-HW", + "DRM-SW" + ], + "unsecuredTerminal": [ + "ND" + ] + } + ] + }, + "webdeviceData": { + "nomadismAllowed": true + }, + "technicalChannels": { + "live": [ + { + "techChannelId": "400118", + "type": "CLOUDTV", + "liveTargetURLRelativePath": "livetv_crime_district_ctv", + "usi": 400118, + "isDRMized": true, + "csa5Disabled": true + } + ], + "npvr": [ + { + "externalId": "livetv_crime_district_ctv", + "techChannelId": "400118", + "type": "CLOUDTV", + "usi": 400118, + "isDRMized": true, + "antiAdskipping": "DEACTIVATED", + "csa5Disabled": true + } + ], + "startover": [] + } + }, + { + "name": "CHASSE PECHE", + "editoChannelId": "livetv_chasseetpeche", + "lcn": 120, + "idEPG": 38, + "epgAvailable": true, + "epgTextSubstitution": "", + "displayOrder": 120, + "csaCode": 1, + "slogan": "La chaîne des passionnés", + "catchupChannelId": "catchuptv_chasseetpeche", + "newChannel": false, + "roamingBlocked": true, + "allowedDeviceCategories": [ + "M_ANDROID", + "M_IOS", + "M_TABLET_ANDROID", + "M_TABLET_IOS", + "W_AIRPLAY", + "W_CHROMECAST", + "W_LACLETV2", + "W_SMARTTV", + "W_PC", + "S_STB" + ], + "packages": [ + "PA_BQ_PASSACCESTVPREMIUM_M", + "PA_pack_Divertissement", + "PA_Pack_Sport", + "PA_bouquet_famille_disneyplus", + "PA_BQ_ACCESTVPREMIUM_M", + "PA_pack_intense", + "PA_bouquet_divertissement_fibre", + "PA_bouquet_sport", + "PA_bouquet_famille_max", + "PA_bouquet_divertissement_adsl", + "PI_WHITELIST" + ], + "hasRightIAccess": true, + "hasRightMAccess": true, + "logos": [ + { + "definitionType": "mobileAppli", + "listLogos": [ + { + "size": "183x183", + "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_chasseetpeche%2F20151026_092415%2FmobileAppli%2Flogo_183x183.png" + } + ] + }, + { + "definitionType": "mobileAppliDark", + "listLogos": [ + { + "size": "183x183", + "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_chasseetpeche%2F20151026_092415%2FmobileAppliDark%2Flogo_183x183.png" + } + ] + }, + { + "definitionType": "webTVLogo", + "listLogos": [ + { + "size": "180x96", + "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_chasseetpeche%2F20151026_092415%2FwebTVLogo%2Flogo_180x96.png" + } + ] + }, + { + "definitionType": "webTVSquare", + "listLogos": [ + { + "size": "150x150", + "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_chasseetpeche%2F20151026_092415%2FwebTVSquare%2Flogo_150x150.png" + } + ] + } + ], + "mobileData": { + "wifiForbidden": false, + "wifiSecuredOnly": false, + "everywhereChannel": true, + "nomadismAllowed": true, + "drmLevels": [ + { + "definition": "SD", + "securedTerminal": [ + "DRM-HW", + "DRM-SW" + ], + "unsecuredTerminal": [ + "DRM-HW", + "DRM-SW" + ] + }, + { + "definition": "HD", + "securedTerminal": [ + "ND" + ], + "unsecuredTerminal": [ + "ND" + ] + } + ] + }, + "webdeviceData": { + "nomadismAllowed": true + }, + "technicalChannels": { + "live": [ + { + "techChannelId": "400127", + "type": "CLOUDTV", + "liveTargetURLRelativePath": "livetv_chasse_peche_ctv", + "usi": 400127, + "isDRMized": true, + "csa5Disabled": true + } + ], + "npvr": [ + { + "externalId": "livetv_chasse_peche_ctv", + "techChannelId": "400127", + "type": "CLOUDTV", + "usi": 400127, + "isDRMized": true, + "antiAdskipping": "DEACTIVATED", + "csa5Disabled": true + } + ], + "startover": [] + } + }, + { + "name": "TOUTE L'HISTOIRE", + "editoChannelId": "livetv_toute_l_histoire", + "lcn": 121, + "idEPG": 7, + "epgAvailable": true, + "epgTextSubstitution": "", + "displayOrder": 121, + "csaCode": 1, + "slogan": "Pour ne rien oublier", + "catchupChannelId": "catchuptv_toutelhistoire", + "newChannel": false, + "roamingBlocked": true, + "allowedDeviceCategories": [ + "M_ANDROID", + "M_IOS", + "M_TABLET_ANDROID", + "M_TABLET_IOS", + "W_AIRPLAY", + "W_CHROMECAST", + "W_LACLETV2", + "W_SMARTTV", + "W_PC", + "S_STB" + ], + "packages": [ + "PA_BQ_PASSACCESTVPREMIUM_M", + "PA_pack_Divertissement", + "PA_BQ_RE_TVMAX_M", + "PA_bouquet_famille_disneyplus", + "PA_BQ_ACCESTVPREMIUM_M", + "PA_BQ_PAYG_M", + "PA_pack_intense", + "PA_bouquet_divertissement_fibre", + "PA_bouquet_famille_by_canal", + "PA_bouquet_famille_by_canal_nov2018", + "PA_bouquet_famille_max", + "PA_bouquet_divertissement_adsl", + "PI_WHITELIST" + ], + "hasRightIAccess": true, + "hasRightMAccess": true, + "logos": [ + { + "definitionType": "mobileAppli", + "listLogos": [ + { + "size": "183x183", + "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_toute_l_histoire%2F20170405_200000%2FmobileAppli%2Flogo_183x183.png" + } + ] + }, + { + "definitionType": "mobileAppliDark", + "listLogos": [ + { + "size": "183x183", + "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_toute_l_histoire%2F20170405_200000%2FmobileAppliDark%2Flogo_183x183.png" + } + ] + }, + { + "definitionType": "webTVLogo", + "listLogos": [ + { + "size": "180x96", + "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_toute_l_histoire%2F20170405_200000%2FwebTVLogo%2Flogo_180x96.png" + } + ] + }, + { + "definitionType": "webTVSquare", + "listLogos": [ + { + "size": "150x150", + "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_toute_l_histoire%2F20170405_200000%2FwebTVSquare%2Flogo_150x150.png" + } + ] + } + ], + "mobileData": { + "wifiForbidden": false, + "wifiSecuredOnly": false, + "everywhereChannel": true, + "nomadismAllowed": true, + "drmLevels": [ + { + "definition": "SD", + "securedTerminal": [ + "DRM-HW", + "DRM-SW" + ], + "unsecuredTerminal": [ + "DRM-HW", + "DRM-SW" + ] + }, + { + "definition": "HD", + "securedTerminal": [ + "ND" + ], + "unsecuredTerminal": [ + "ND" + ] + } + ] + }, + "webdeviceData": { + "nomadismAllowed": true + }, + "technicalChannels": { + "live": [ + { + "techChannelId": "400121", + "type": "CLOUDTV", + "liveTargetURLRelativePath": "livetv_toute_histoire_ctv", + "usi": 400121, + "isDRMized": true, + "csa5Disabled": true + } + ], + "npvr": [ + { + "externalId": "livetv_toute_histoire_ctv", + "techChannelId": "400121", + "type": "CLOUDTV", + "usi": 400121, + "isDRMized": true, + "antiAdskipping": "DEACTIVATED", + "csa5Disabled": true + } + ], + "startover": [] + } + }, + { + "name": "HISTOIRE TV", + "editoChannelId": "livetv_histoire", + "lcn": 122, + "idEPG": 88, + "epgAvailable": true, + "epgTextSubstitution": "", + "displayOrder": 122, + "csaCode": 1, + "slogan": "Les histoires qui font l’Histoire", + "catchupChannelId": "catchuptv_histoire", + "newChannel": false, + "roamingBlocked": true, + "allowedDeviceCategories": [ + "M_ANDROID", + "M_IOS", + "M_TABLET_ANDROID", + "M_TABLET_IOS", + "W_AIRPLAY", + "W_CHROMECAST", + "W_LACLETV2", + "W_SMARTTV", + "W_PC", + "S_STB" + ], + "packages": [ + "PA_BQ_PASSACCESTVPREMIUM_M", + "PA_pack_Divertissement", + "PA_BQ_RE_TVMAX_M", + "PA_bouquet_famille_disneyplus", + "PA_BQ_ACCESTVPREMIUM_M", + "PA_BQ_PAYG_M", + "PA_pack_intense", + "PA_bouquet_divertissement_fibre", + "PA_bouquet_famille_by_canal", + "PA_bouquet_famille_by_canal_nov2018", + "PA_bouquet_famille_max", + "PA_bouquet_divertissement_adsl", + "PI_WHITELIST" + ], + "hasRightIAccess": true, + "hasRightMAccess": true, + "logos": [ + { + "definitionType": "mobileAppli", + "listLogos": [ + { + "size": "183x183", + "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_histoire%2F20200102_141654%2FmobileAppli%2Flogo_183x183.png" + } + ] + }, + { + "definitionType": "mobileAppliDark", + "listLogos": [ + { + "size": "183x183", + "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_histoire%2F20200102_141654%2FmobileAppliDark%2Flogo_183x183.png" + } + ] + }, + { + "definitionType": "webTVLogo", + "listLogos": [ + { + "size": "180x96", + "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_histoire%2F20200102_141654%2FwebTVLogo%2Flogo_180x96.png" + } + ] + }, + { + "definitionType": "webTVSquare", + "listLogos": [ + { + "size": "150x150", + "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_histoire%2F20200102_141654%2FwebTVSquare%2Flogo_150x150.png" + } + ] + } + ], + "mobileData": { + "wifiForbidden": false, + "wifiSecuredOnly": false, + "everywhereChannel": true, + "nomadismAllowed": true, + "drmLevels": [ + { + "definition": "SD", + "securedTerminal": [ + "DRM-HW", + "DRM-SW" + ], + "unsecuredTerminal": [ + "DRM-HW", + "DRM-SW" + ] + }, + { + "definition": "HD", + "securedTerminal": [ + "DRM-HW", + "DRM-SW" + ], + "unsecuredTerminal": [ + "ND" + ] + } + ] + }, + "webdeviceData": { + "nomadismAllowed": true + }, + "technicalChannels": { + "live": [ + { + "techChannelId": "400125", + "type": "CLOUDTV", + "liveTargetURLRelativePath": "livetv_histoire_ctv", + "usi": 400125, + "isDRMized": true, + "csa5Disabled": true + } + ], + "npvr": [ + { + "externalId": "livetv_histoire_ctv", + "techChannelId": "400125", + "type": "CLOUDTV", + "usi": 400125, + "isDRMized": true, + "antiAdskipping": "DEACTIVATED", + "csa5Disabled": true + } + ], + "startover": [] + } + }, + { + "name": "USHUAIA TV", + "editoChannelId": "livetv_ushuaia", + "lcn": 123, + "idEPG": 451, + "epgAvailable": true, + "epgTextSubstitution": "", + "displayOrder": 123, + "csaCode": 1, + "slogan": "Explorer. S’émerveiller. Protéger.", + "catchupChannelId": "catchuptv_ushuaia", + "newChannel": false, + "roamingBlocked": true, + "allowedDeviceCategories": [ + "M_ANDROID", + "M_IOS", + "M_TABLET_ANDROID", + "M_TABLET_IOS", + "W_AIRPLAY", + "W_CHROMECAST", + "W_LACLETV2", + "W_SMARTTV", + "W_PC", + "S_STB" + ], + "packages": [ + "PA_BQ_PASSACCESTVPREMIUM_M", + "PA_pack_Divertissement", + "PA_BQ_RE_TVMAX_M", + "PA_bouquet_famille_disneyplus", + "PA_BQ_ACCESTVPREMIUM_M", + "PA_BQ_PAYG_M", + "PA_pack_intense", + "PA_bouquet_divertissement_fibre", + "PA_bouquet_famille_by_canal", + "PA_bouquet_famille_by_canal_nov2018", + "PA_bouquet_famille_max", + "PA_bouquet_divertissement_adsl", + "PI_WHITELIST" + ], + "hasRightIAccess": true, + "hasRightMAccess": true, + "logos": [ + { + "definitionType": "mobileAppli", + "listLogos": [ + { + "size": "183x183", + "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_ushuaia%2F20200102_141654%2FmobileAppli%2Flogo_183x183.png" + } + ] + }, + { + "definitionType": "mobileAppliDark", + "listLogos": [ + { + "size": "183x183", + "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_ushuaia%2F20200102_141654%2FmobileAppliDark%2Flogo_183x183.png" + } + ] + }, + { + "definitionType": "webTVLogo", + "listLogos": [ + { + "size": "180x96", + "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_ushuaia%2F20200102_141654%2FwebTVLogo%2Flogo_180x96.png" + } + ] + }, + { + "definitionType": "webTVSquare", + "listLogos": [ + { + "size": "150x150", + "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_ushuaia%2F20200102_141654%2FwebTVSquare%2Flogo_150x150.png" + } + ] + } + ], + "mobileData": { + "wifiForbidden": false, + "wifiSecuredOnly": false, + "everywhereChannel": true, + "nomadismAllowed": true, + "drmLevels": [ + { + "definition": "SD", + "securedTerminal": [ + "DRM-HW", + "DRM-SW" + ], + "unsecuredTerminal": [ + "DRM-HW", + "DRM-SW" + ] + }, + { + "definition": "HD", + "securedTerminal": [ + "DRM-HW", + "DRM-SW" + ], + "unsecuredTerminal": [ + "ND" + ] + } + ] + }, + "webdeviceData": { + "nomadismAllowed": true + }, + "technicalChannels": { + "live": [ + { + "techChannelId": "400126", + "type": "CLOUDTV", + "liveTargetURLRelativePath": "livetv_ushuaia_tv_ctv", + "usi": 400126, + "isDRMized": true, + "csa5Disabled": true + } + ], + "npvr": [ + { + "externalId": "livetv_ushuaia_tv_ctv", + "techChannelId": "400126", + "type": "CLOUDTV", + "usi": 400126, + "isDRMized": true, + "antiAdskipping": "DEACTIVATED", + "csa5Disabled": true + } + ], + "startover": [] + } + }, + { + "name": "MY ZEN TV", + "editoChannelId": "livetv_myzentv", + "lcn": 124, + "idEPG": 829, + "epgAvailable": true, + "epgTextSubstitution": "", + "displayOrder": 124, + "csaCode": 1, + "slogan": "La chaîne du bien-être", + "catchupChannelId": "catchuptv_myzentv", + "newChannel": false, + "roamingBlocked": true, + "allowedDeviceCategories": [ + "M_ANDROID", + "M_IOS", + "M_TABLET_ANDROID", + "M_TABLET_IOS", + "W_AIRPLAY", + "W_CHROMECAST", + "W_LACLETV2", + "W_SMARTTV", + "W_PC", + "S_STB" + ], + "packages": [ + "PA_bouquet_famille_disneyplus", + "PA_pack_intense", + "PA_bouquet_famille_max", + "PA_bouquet_divertissement_adsl", + "PI_WHITELIST" + ], + "hasRightIAccess": true, + "hasRightMAccess": false, + "logos": [ + { + "definitionType": "mobileAppli", + "listLogos": [ + { + "size": "183x183", + "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_myzentv%2F20181115_170016%2FmobileAppli%2Flogo_183x183.png" + } + ] + }, + { + "definitionType": "mobileAppliDark", + "listLogos": [ + { + "size": "183x183", + "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_myzentv%2F20181115_170016%2FmobileAppliDark%2Flogo_183x183.png" + } + ] + }, + { + "definitionType": "webTVLogo", + "listLogos": [ + { + "size": "180x96", + "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_myzentv%2F20181115_170016%2FwebTVLogo%2Flogo_180x96.png" + } + ] + }, + { + "definitionType": "webTVSquare", + "listLogos": [ + { + "size": "150x150", + "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_myzentv%2F20181115_170016%2FwebTVSquare%2Flogo_150x150.png" + } + ] + } + ], + "mobileData": { + "wifiForbidden": false, + "wifiSecuredOnly": false, + "everywhereChannel": true, + "nomadismAllowed": true, + "drmLevels": [ + { + "definition": "SD", + "securedTerminal": [ + "DRM-HW", + "DRM-SW" + ], + "unsecuredTerminal": [ + "DRM-HW", + "DRM-SW" + ] + }, + { + "definition": "HD", + "securedTerminal": [ + "ND" + ], + "unsecuredTerminal": [ + "ND" + ] + } + ] + }, + "webdeviceData": { + "nomadismAllowed": true + }, + "technicalChannels": { + "live": [ + { + "techChannelId": "400132", + "type": "CLOUDTV", + "liveTargetURLRelativePath": "livetv_my_zen_tv_ctv", + "usi": 400132, + "isDRMized": true, + "csa5Disabled": true + } + ], + "npvr": [ + { + "externalId": "livetv_my_zen_tv_ctv", + "techChannelId": "400132", + "type": "CLOUDTV", + "usi": 400132, + "isDRMized": true, + "antiAdskipping": "DEACTIVATED", + "csa5Disabled": true + } + ], + "startover": [] + } + }, + { + "name": "SCIENCE & VIE TV", + "editoChannelId": "livetv_encyclopedia", + "lcn": 125, + "idEPG": 63, + "epgAvailable": true, + "epgTextSubstitution": "", + "displayOrder": 125, + "csaCode": 1, + "slogan": "La chaine pour comprendre", + "catchupChannelId": "catchuptv_scienceetvie", + "newChannel": false, + "roamingBlocked": true, + "allowedDeviceCategories": [ + "M_ANDROID", + "M_IOS", + "M_TABLET_ANDROID", + "M_TABLET_IOS", + "W_AIRPLAY", + "W_CHROMECAST", + "W_LACLETV2", + "W_PC", + "W_SMARTTV", + "S_STB" + ], + "packages": [ + "PA_BQ_PASSACCESTVPREMIUM_M", + "PA_pack_Divertissement", + "PA_bouquet_famille_disneyplus", + "PA_BQ_ACCESTVPREMIUM_M", + "PA_pack_intense", + "PA_bouquet_famille_max", + "PA_bouquet_divertissement_adsl", + "PI_WHITELIST" + ], + "hasRightIAccess": true, + "hasRightMAccess": true, + "logos": [ + { + "definitionType": "mobileAppli", + "listLogos": [ + { + "size": "183x183", + "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_encyclopedia%2F20220922_114506%2FmobileAppli%2Flogo_183x183.png" + } + ] + }, + { + "definitionType": "mobileAppliDark", + "listLogos": [ + { + "size": "183x183", + "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_encyclopedia%2F20220922_114506%2FmobileAppliDark%2Flogo_183x183.png" + } + ] + }, + { + "definitionType": "webTVLogo", + "listLogos": [ + { + "size": "180x96", + "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_encyclopedia%2F20220922_114506%2FwebTVLogo%2Flogo_180x96.png" + } + ] + }, + { + "definitionType": "webTVSquare", + "listLogos": [ + { + "size": "150x150", + "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_encyclopedia%2F20220922_114506%2FwebTVSquare%2Flogo_150x150.png" + } + ] + } + ], + "mobileData": { + "wifiForbidden": false, + "wifiSecuredOnly": false, + "everywhereChannel": true, + "nomadismAllowed": true, + "drmLevels": [ + { + "definition": "SD", + "securedTerminal": [ + "DRM-HW", + "DRM-SW" + ], + "unsecuredTerminal": [ + "DRM-HW", + "DRM-SW" + ] + }, + { + "definition": "HD", + "securedTerminal": [ + "ND" + ], + "unsecuredTerminal": [ + "ND" + ] + } + ] + }, + "webdeviceData": { + "nomadismAllowed": true + }, + "technicalChannels": { + "live": [ + { + "techChannelId": "400128", + "type": "CLOUDTV", + "liveTargetURLRelativePath": "livetv_science_vie_tv_ctv", + "usi": 400128, + "isDRMized": true, + "csa5Disabled": true + } + ], + "npvr": [ + { + "externalId": "livetv_science_vie_tv_ctv", + "techChannelId": "400128", + "type": "CLOUDTV", + "usi": 400128, + "isDRMized": true, + "antiAdskipping": "DEACTIVATED", + "csa5Disabled": true + } + ], + "startover": [] + } + }, + { + "name": "NATIONAL GEOGRAPHIC", + "editoChannelId": "livetv_Natgeo", + "lcn": 129, + "idEPG": 508, + "epgAvailable": true, + "epgTextSubstitution": "", + "displayOrder": 129, + "csaCode": 1, + "slogan": "Voir plus loin", + "catchupChannelId": "catchuptv_nationalgeo", + "newChannel": false, + "roamingBlocked": true, + "allowedDeviceCategories": [ + "M_ANDROID", + "M_IOS", + "M_TABLET_ANDROID", + "M_TABLET_IOS", + "W_AIRPLAY", + "W_CHROMECAST", + "W_LACLETV2", + "W_SMARTTV", + "W_PC", + "S_STB" + ], + "packages": [ + "PA_bouquet_divertissement_fibre", + "PA_bouquet_famille_by_canal", + "PA_bouquet_famille_by_canal_nov2018", + "PI_WHITELIST" + ], + "hasRightIAccess": true, + "hasRightMAccess": false, + "logos": [ + { + "definitionType": "mobileAppli", + "listLogos": [ + { + "size": "183x183", + "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_Natgeo%2F20200226_115623%2FmobileAppli%2Flogo_183x183.png" + } + ] + }, + { + "definitionType": "mobileAppliDark", + "listLogos": [ + { + "size": "183x183", + "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_Natgeo%2F20200226_115623%2FmobileAppliDark%2Flogo_183x183.png" + } + ] + }, + { + "definitionType": "webTVLogo", + "listLogos": [ + { + "size": "180x96", + "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_Natgeo%2F20200226_115623%2FwebTVLogo%2Flogo_180x96.png" + } + ] + }, + { + "definitionType": "webTVSquare", + "listLogos": [ + { + "size": "150x150", + "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_Natgeo%2F20200226_115623%2FwebTVSquare%2Flogo_150x150.png" + } + ] + } + ], + "mobileData": { + "wifiForbidden": false, + "wifiSecuredOnly": false, + "everywhereChannel": true, + "nomadismAllowed": true, + "drmLevels": [ + { + "definition": "SD", + "securedTerminal": [ + "DRM-HW", + "DRM-SW" + ], + "unsecuredTerminal": [ + "DRM-HW", + "DRM-SW" + ] + }, + { + "definition": "HD", + "securedTerminal": [ + "DRM-HW", + "DRM-SW" + ], + "unsecuredTerminal": [ + "ND" + ] + } + ] + }, + "webdeviceData": { + "nomadismAllowed": true + }, + "technicalChannels": { + "live": [ + { + "techChannelId": "400123", + "type": "CLOUDTV", + "liveTargetURLRelativePath": "livetv_national_geographic_ctv", + "usi": 400123, + "isDRMized": true, + "csa5Disabled": true + } + ], + "npvr": [ + { + "externalId": "livetv_national_geographic_ctv", + "techChannelId": "400123", + "type": "CLOUDTV", + "usi": 400123, + "isDRMized": true, + "antiAdskipping": "DEACTIVATED", + "csa5Disabled": true + } + ], + "startover": [] + } + }, + { + "name": "NATIONAL GEOGRAPHIC WILD", + "editoChannelId": "livetv_Natgeo_wild", + "lcn": 130, + "idEPG": 719, + "epgAvailable": true, + "epgTextSubstitution": "", + "displayOrder": 130, + "csaCode": 1, + "slogan": ".", + "catchupChannelId": "catchuptv_natgeowild", + "newChannel": false, + "roamingBlocked": true, + "allowedDeviceCategories": [ + "M_ANDROID", + "M_IOS", + "M_TABLET_ANDROID", + "M_TABLET_IOS", + "W_AIRPLAY", + "W_CHROMECAST", + "W_LACLETV2", + "W_SMARTTV", + "W_PC", + "S_STB" + ], + "packages": [ + "PA_bouquet_divertissement_fibre", + "PA_bouquet_famille_by_canal", + "PA_bouquet_famille_by_canal_nov2018", + "PI_WHITELIST" + ], + "hasRightIAccess": true, + "hasRightMAccess": false, + "logos": [ + { + "definitionType": "mobileAppli", + "listLogos": [ + { + "size": "183x183", + "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_Natgeo_wild%2F20190513_093153%2FmobileAppli%2Flogo_183x183.png" + } + ] + }, + { + "definitionType": "mobileAppliDark", + "listLogos": [ + { + "size": "183x183", + "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_Natgeo_wild%2F20190513_093153%2FmobileAppliDark%2Flogo_183x183.png" + } + ] + }, + { + "definitionType": "webTVLogo", + "listLogos": [ + { + "size": "180x96", + "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_Natgeo_wild%2F20190513_093153%2FwebTVLogo%2Flogo_180x96.png" + } + ] + }, + { + "definitionType": "webTVSquare", + "listLogos": [ + { + "size": "150x150", + "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_Natgeo_wild%2F20190513_093153%2FwebTVSquare%2Flogo_150x150.png" + } + ] + } + ], + "mobileData": { + "wifiForbidden": false, + "wifiSecuredOnly": false, + "everywhereChannel": true, + "nomadismAllowed": true, + "drmLevels": [ + { + "definition": "SD", + "securedTerminal": [ + "DRM-HW", + "DRM-SW" + ], + "unsecuredTerminal": [ + "DRM-HW", + "DRM-SW" + ] + }, + { + "definition": "HD", + "securedTerminal": [ + "DRM-HW", + "DRM-SW" + ], + "unsecuredTerminal": [ + "ND" + ] + } + ] + }, + "webdeviceData": { + "nomadismAllowed": true + }, + "technicalChannels": { + "live": [ + { + "techChannelId": "400124", + "type": "CLOUDTV", + "liveTargetURLRelativePath": "livetv_nat_geo_wild_ctv", + "usi": 400124, + "isDRMized": true, + "csa5Disabled": true + } + ], + "npvr": [ + { + "externalId": "livetv_nat_geo_wild_ctv", + "techChannelId": "400124", + "type": "CLOUDTV", + "usi": 400124, + "isDRMized": true, + "antiAdskipping": "DEACTIVATED", + "csa5Disabled": true + } + ], + "startover": [] + } + }, + { + "name": "PLANETE+", + "editoChannelId": "livetv_planeteplus", + "lcn": 132, + "idEPG": 147, + "epgAvailable": true, + "epgTextSubstitution": "", + "displayOrder": 132, + "csaCode": 1, + "slogan": "Réalité plus forte que fiction", + "catchupChannelId": "catchuptv_planeteplus", + "newChannel": false, + "roamingBlocked": true, + "allowedDeviceCategories": [ + "M_ANDROID", + "M_IOS", + "M_TABLET_ANDROID", + "M_TABLET_IOS", + "W_AIRPLAY", + "W_CHROMECAST", + "W_LACLETV2", + "W_PC", + "W_SMARTTV", + "S_STB" + ], + "packages": [ + "PA_bouquet_divertissement_fibre", + "PA_bouquet_famille_by_canal", + "PA_bouquet_famille_by_canal_nov2018", + "PI_WHITELIST" + ], + "hasRightIAccess": true, + "hasRightMAccess": false, + "logos": [ + { + "definitionType": "mobileAppli", + "listLogos": [ + { + "size": "183x183", + "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_planeteplus%2F20220601_165712%2FmobileAppli%2Flogo_183x183.png" + } + ] + }, + { + "definitionType": "mobileAppliDark", + "listLogos": [ + { + "size": "183x183", + "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_planeteplus%2F20220601_165712%2FmobileAppliDark%2Flogo_183x183.png" + } + ] + }, + { + "definitionType": "webTVLogo", + "listLogos": [ + { + "size": "180x96", + "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_planeteplus%2F20220601_165712%2FwebTVLogo%2Flogo_180x96.png" + } + ] + }, + { + "definitionType": "webTVSquare", + "listLogos": [ + { + "size": "150x150", + "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_planeteplus%2F20220601_165712%2FwebTVSquare%2Flogo_150x150.png" + } + ] + } + ], + "mobileData": { + "wifiForbidden": false, + "wifiSecuredOnly": false, + "everywhereChannel": true, + "nomadismAllowed": true, + "drmLevels": [ + { + "definition": "SD", + "securedTerminal": [ + "DRM-HW", + "DRM-SW" + ], + "unsecuredTerminal": [ + "DRM-HW", + "DRM-SW" + ] + }, + { + "definition": "HD", + "securedTerminal": [ + "ND" + ], + "unsecuredTerminal": [ + "ND" + ] + } + ] + }, + "webdeviceData": { + "nomadismAllowed": true + }, + "technicalChannels": { + "live": [ + { + "techChannelId": "400129", + "type": "CLOUDTV", + "liveTargetURLRelativePath": "livetv_planete_plus_ctv", + "usi": 400129, + "isDRMized": true, + "csa5Disabled": true + } + ], + "npvr": [ + { + "externalId": "livetv_planete_plus_ctv", + "techChannelId": "400129", + "type": "CLOUDTV", + "usi": 400129, + "isDRMized": true, + "antiAdskipping": "DEACTIVATED", + "csa5Disabled": true + } + ], + "startover": [] + } + }, + { + "name": "PLANETE+CRIME", + "editoChannelId": "livetv_planeteplus_ci", + "lcn": 133, + "idEPG": 662, + "epgAvailable": true, + "epgTextSubstitution": "", + "displayOrder": 133, + "csaCode": 1, + "slogan": "Le crime n'est pas une fiction", + "catchupChannelId": "catchuptv_planeteplus", + "newChannel": false, + "roamingBlocked": true, + "allowedDeviceCategories": [ + "M_ANDROID", + "M_IOS", + "M_TABLET_ANDROID", + "M_TABLET_IOS", + "W_AIRPLAY", + "W_CHROMECAST", + "W_LACLETV2", + "W_PC", + "W_SMARTTV", + "S_STB" + ], + "packages": [ + "PA_bouquet_divertissement_fibre", + "PA_bouquet_famille_by_canal", + "PA_bouquet_famille_by_canal_nov2018", + "PI_WHITELIST" + ], + "hasRightIAccess": true, + "hasRightMAccess": false, + "logos": [ + { + "definitionType": "mobileAppli", + "listLogos": [ + { + "size": "183x183", + "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_planeteplus_ci%2F20220315_112924%2FmobileAppli%2Flogo_183x183.png" + } + ] + }, + { + "definitionType": "mobileAppliDark", + "listLogos": [ + { + "size": "183x183", + "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_planeteplus_ci%2F20220315_112924%2FmobileAppliDark%2Flogo_183x183.png" + } + ] + }, + { + "definitionType": "webTVLogo", + "listLogos": [ + { + "size": "180x96", + "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_planeteplus_ci%2F20220315_112924%2FwebTVLogo%2Flogo_180x96.png" + } + ] + }, + { + "definitionType": "webTVSquare", + "listLogos": [ + { + "size": "150x150", + "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_planeteplus_ci%2F20220315_112924%2FwebTVSquare%2Flogo_150x150.png" + } + ] + } + ], + "mobileData": { + "wifiForbidden": false, + "wifiSecuredOnly": false, + "everywhereChannel": true, + "nomadismAllowed": true, + "drmLevels": [ + { + "definition": "SD", + "securedTerminal": [ + "DRM-HW", + "DRM-SW" + ], + "unsecuredTerminal": [ + "DRM-HW", + "DRM-SW" + ] + }, + { + "definition": "HD", + "securedTerminal": [ + "DRM-HW", + "DRM-SW" + ], + "unsecuredTerminal": [ + "ND" + ] + } + ] + }, + "webdeviceData": { + "nomadismAllowed": true + }, + "technicalChannels": { + "live": [ + { + "techChannelId": "400130", + "type": "CLOUDTV", + "liveTargetURLRelativePath": "livetv_planete_plus_ci_ctv", + "usi": 400130, + "isDRMized": true, + "csa5Disabled": true + } + ], + "npvr": [ + { + "externalId": "livetv_planete_plus_ci_ctv", + "techChannelId": "400130", + "type": "CLOUDTV", + "usi": 400130, + "isDRMized": true, + "antiAdskipping": "DEACTIVATED", + "csa5Disabled": true + } + ], + "startover": [] + } + }, + { + "name": "PLANETE+AVENTURE", + "editoChannelId": "livetv_planeteplus_aventure_experience", + "lcn": 134, + "idEPG": 402, + "epgAvailable": true, + "epgTextSubstitution": "", + "displayOrder": 134, + "csaCode": 1, + "slogan": "Le réel passe à l'action", + "catchupChannelId": "catchuptv_planeteplus", + "newChannel": false, + "roamingBlocked": true, + "allowedDeviceCategories": [ + "M_ANDROID", + "M_IOS", + "M_TABLET_ANDROID", + "M_TABLET_IOS", + "W_AIRPLAY", + "W_CHROMECAST", + "W_LACLETV2", + "W_PC", + "W_SMARTTV", + "S_STB" + ], + "packages": [ + "PA_bouquet_divertissement_fibre", + "PA_bouquet_famille_by_canal", + "PA_bouquet_famille_by_canal_nov2018", + "PI_WHITELIST" + ], + "hasRightIAccess": true, + "hasRightMAccess": false, + "logos": [ + { + "definitionType": "mobileAppli", + "listLogos": [ + { + "size": "183x183", + "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_planeteplus_aventure_experience%2F20220315_112924%2FmobileAppli%2Flogo_183x183.png" + } + ] + }, + { + "definitionType": "mobileAppliDark", + "listLogos": [ + { + "size": "183x183", + "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_planeteplus_aventure_experience%2F20220315_112924%2FmobileAppliDark%2Flogo_183x183.png" + } + ] + }, + { + "definitionType": "webTVLogo", + "listLogos": [ + { + "size": "180x96", + "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_planeteplus_aventure_experience%2F20220315_112924%2FwebTVLogo%2Flogo_180x96.png" + } + ] + }, + { + "definitionType": "webTVSquare", + "listLogos": [ + { + "size": "150x150", + "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_planeteplus_aventure_experience%2F20220315_112924%2FwebTVSquare%2Flogo_150x150.png" + } + ] + } + ], + "mobileData": { + "wifiForbidden": false, + "wifiSecuredOnly": false, + "everywhereChannel": true, + "nomadismAllowed": true, + "drmLevels": [ + { + "definition": "SD", + "securedTerminal": [ + "DRM-HW", + "DRM-SW" + ], + "unsecuredTerminal": [ + "DRM-HW", + "DRM-SW" + ] + }, + { + "definition": "HD", + "securedTerminal": [ + "DRM-HW", + "DRM-SW" + ], + "unsecuredTerminal": [ + "ND" + ] + } + ] + }, + "webdeviceData": { + "nomadismAllowed": true + }, + "technicalChannels": { + "live": [ + { + "techChannelId": "400131", + "type": "CLOUDTV", + "liveTargetURLRelativePath": "livetv_planete_plus_aventure_experience_ctv", + "usi": 400131, + "isDRMized": true, + "csa5Disabled": true + } + ], + "npvr": [ + { + "externalId": "livetv_planete_plus_aventure_experience_ctv", + "techChannelId": "400131", + "type": "CLOUDTV", + "usi": 400131, + "isDRMized": true, + "antiAdskipping": "DEACTIVATED", + "csa5Disabled": true + } + ], + "startover": [] + } + }, + { + "name": "MGG TV", + "editoChannelId": "livetv_es1", + "lcn": 140, + "idEPG": 2353, + "epgAvailable": true, + "epgTextSubstitution": "", + "displayOrder": 140, + "csaCode": 1, + "slogan": "Tout L'esport", + "catchupChannelId": "catchuptv_es1", + "newChannel": true, + "roamingBlocked": true, + "allowedDeviceCategories": [ + "M_ANDROID", + "M_IOS", + "M_TABLET_ANDROID", + "M_TABLET_IOS", + "W_AIRPLAY", + "W_CHROMECAST", + "W_LACLETV2", + "W_PC", + "W_SMARTTV", + "S_STB" + ], + "packages": [ + "PA_BQ_BASIC_M", + "PA_BQ_TVDIGITALE_I", + "PA_BQ_BASIC_I", + "PA_BQ_BASICQUAD_I", + "PI_WHITELIST" + ], + "hasRightIAccess": true, + "hasRightMAccess": true, + "logos": [ + { + "definitionType": "mobileAppli", + "listLogos": [ + { + "size": "183x183", + "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_es1%2F20220128_093134%2FmobileAppli%2Flogo_183x183.png" + } + ] + }, + { + "definitionType": "mobileAppliDark", + "listLogos": [ + { + "size": "183x183", + "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_es1%2F20220128_093134%2FmobileAppliDark%2Flogo_183x183.png" + } + ] + }, + { + "definitionType": "webTVLogo", + "listLogos": [ + { + "size": "180x96", + "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_es1%2F20220128_093134%2FwebTVLogo%2Flogo_180x96.png" + } + ] + }, + { + "definitionType": "webTVSquare", + "listLogos": [ + { + "size": "150x150", + "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_es1%2F20220128_093134%2FwebTVSquare%2Flogo_150x150.png" + } + ] + } + ], + "mobileData": { + "wifiForbidden": false, + "wifiSecuredOnly": false, + "everywhereChannel": true, + "nomadismAllowed": true, + "drmLevels": [ + { + "definition": "SD", + "securedTerminal": [ + "DRM-HW", + "DRM-SW" + ], + "unsecuredTerminal": [ + "DRM-HW", + "DRM-SW" + ] + }, + { + "definition": "HD", + "securedTerminal": [ + "DRM-HW", + "DRM-SW" + ], + "unsecuredTerminal": [ + "ND" + ] + } + ] + }, + "webdeviceData": { + "nomadismAllowed": true + }, + "technicalChannels": { + "live": [ + { + "techChannelId": "400144", + "type": "CLOUDTV", + "liveTargetURLRelativePath": "livetv_es1_ctv", + "usi": 400144, + "isDRMized": true, + "csa5Disabled": true + } + ], + "npvr": [ + { + "externalId": "livetv_es1_ctv", + "techChannelId": "400144", + "type": "CLOUDTV", + "usi": 400144, + "isDRMized": true, + "antiAdskipping": "DEACTIVATED", + "csa5Disabled": true + } + ], + "startover": [] + } + }, + { + "name": "TECH&CO", + "editoChannelId": "livetv_01tv", + "lcn": 141, + "idEPG": 2942, + "epgAvailable": true, + "epgTextSubstitution": "", + "displayOrder": 141, + "csaCode": 1, + "slogan": "La plateforme 100% dédiée à la tech'", + "catchupChannelId": "catchuptv__TV01", + "newChannel": true, + "roamingBlocked": true, + "allowedDeviceCategories": [ + "M_ANDROID", + "M_IOS", + "M_TABLET_ANDROID", + "M_TABLET_IOS", + "W_AIRPLAY", + "W_CHROMECAST", + "W_LACLETV2", + "W_PC", + "W_SMARTTV", + "S_STB" + ], + "packages": [ + "PA_bouquet_famille_disneyplus", + "PA_pack_intense", + "PA_bouquet_divertissement_fibre", + "PA_bouquet_famille_by_canal_nov2018", + "PA_bouquet_famille_max", + "PA_bouquet_divertissement_adsl", + "PI_WHITELIST" + ], + "hasRightIAccess": true, + "hasRightMAccess": false, + "logos": [ + { + "definitionType": "mobileAppli", + "listLogos": [ + { + "size": "183x183", + "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_01tv%2F20220623_154612%2FmobileAppli%2Flogo_183x183.png" + } + ] + }, + { + "definitionType": "mobileAppliDark", + "listLogos": [ + { + "size": "183x183", + "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_01tv%2F20220623_154612%2FmobileAppliDark%2Flogo_183x183.png" + } + ] + }, + { + "definitionType": "webTVLogo", + "listLogos": [ + { + "size": "180x96", + "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_01tv%2F20220623_154612%2FwebTVLogo%2Flogo_180x96.png" + } + ] + }, + { + "definitionType": "webTVSquare", + "listLogos": [ + { + "size": "150x150", + "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_01tv%2F20220623_154612%2FwebTVSquare%2Flogo_150x150.png" + } + ] + } + ], + "mobileData": { + "wifiForbidden": false, + "wifiSecuredOnly": false, + "everywhereChannel": true, + "nomadismAllowed": true, + "drmLevels": [ + { + "definition": "SD", + "securedTerminal": [ + "DRM-HW", + "DRM-SW" + ], + "unsecuredTerminal": [ + "DRM-HW", + "DRM-SW" + ] + }, + { + "definition": "HD", + "securedTerminal": [ + "ND" + ], + "unsecuredTerminal": [ + "ND" + ] + } + ] + }, + "webdeviceData": { + "nomadismAllowed": true + }, + "technicalChannels": { + "live": [ + { + "techChannelId": "400133", + "type": "CLOUDTV", + "liveTargetURLRelativePath": "livetv_01_tv_ctv", + "usi": 400133, + "isDRMized": true, + "csa5Disabled": true + } + ], + "npvr": [ + { + "externalId": "livetv_01_tv_ctv", + "techChannelId": "400133", + "type": "CLOUDTV", + "usi": 400133, + "isDRMized": true, + "antiAdskipping": "DEACTIVATED", + "csa5Disabled": true + } + ], + "startover": [] + } + }, + { + "name": "MCM", + "editoChannelId": "livetv_mcm", + "lcn": 142, + "idEPG": 121, + "epgAvailable": true, + "epgTextSubstitution": "", + "displayOrder": 142, + "csaCode": 1, + "slogan": "Pop Culture Television", + "catchupChannelId": "catchuptv_mcm", + "newChannel": false, + "roamingBlocked": true, + "allowedDeviceCategories": [ + "M_ANDROID", + "M_IOS", + "M_TABLET_ANDROID", + "M_TABLET_IOS", + "W_AIRPLAY", + "W_CHROMECAST", + "W_LACLETV2", + "W_SMARTTV", + "W_PC", + "S_STB" + ], + "packages": [ + "PA_pack_Divertissement", + "PA_bouquet_famille_disneyplus", + "PA_pack_intense", + "PA_bouquet_divertissement_fibre", + "PA_bouquet_famille_by_canal", + "PA_bouquet_famille_by_canal_nov2018", + "PA_bouquet_famille_max", + "PA_bouquet_divertissement_adsl", + "PI_WHITELIST" + ], + "hasRightIAccess": true, + "hasRightMAccess": false, + "logos": [ + { + "definitionType": "mobileAppli", + "listLogos": [ + { + "size": "183x183", + "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_mcm%2F20181115_095836%2FmobileAppli%2Flogo_183x183.png" + } + ] + }, + { + "definitionType": "mobileAppliDark", + "listLogos": [ + { + "size": "183x183", + "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_mcm%2F20181115_095836%2FmobileAppliDark%2Flogo_183x183.png" + } + ] + }, + { + "definitionType": "webTVLogo", + "listLogos": [ + { + "size": "180x96", + "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_mcm%2F20181115_095836%2FwebTVLogo%2Flogo_180x96.png" + } + ] + }, + { + "definitionType": "webTVSquare", + "listLogos": [ + { + "size": "150x150", + "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_mcm%2F20181115_095836%2FwebTVSquare%2Flogo_150x150.png" + } + ] + } + ], + "mobileData": { + "wifiForbidden": false, + "wifiSecuredOnly": false, + "everywhereChannel": true, + "nomadismAllowed": true, + "drmLevels": [ + { + "definition": "SD", + "securedTerminal": [ + "DRM-HW", + "DRM-SW" + ], + "unsecuredTerminal": [ + "DRM-HW", + "DRM-SW" + ] + }, + { + "definition": "HD", + "securedTerminal": [ + "DRM-HW", + "DRM-SW" + ], + "unsecuredTerminal": [ + "ND" + ] + } + ] + }, + "webdeviceData": { + "nomadismAllowed": true + }, + "technicalChannels": { + "live": [ + { + "techChannelId": "400094", + "type": "CLOUDTV", + "liveTargetURLRelativePath": "livetv_mcm_ctv", + "usi": 400094, + "isDRMized": true, + "csa5Disabled": true + } + ], + "npvr": [ + { + "externalId": "livetv_mcm_ctv", + "techChannelId": "400094", + "type": "CLOUDTV", + "usi": 400094, + "isDRMized": true, + "antiAdskipping": "DEACTIVATED", + "csa5Disabled": true + } + ], + "startover": [] + } + }, + { + "name": "TMC +1", + "editoChannelId": "livetv_tmc_1", + "lcn": 144, + "idEPG": 2442, + "epgAvailable": true, + "epgTextSubstitution": "", + "displayOrder": 144, + "csaCode": 1, + "slogan": "Vos programmes de TMC décalés d’1h !", + "catchupChannelId": "", + "newChannel": false, + "roamingBlocked": false, + "allowedDeviceCategories": [ + "M_ANDROID", + "M_IOS", + "M_TABLET_ANDROID", + "M_TABLET_IOS", + "W_AIRPLAY", + "W_CHROMECAST", + "W_LACLETV2", + "W_SMARTTV", + "W_PC", + "S_STB" + ], + "packages": [ + "PA_bouquet_famille_disneyplus", + "PA_pack_intense", + "PA_bouquet_famille_max", + "PA_bouquet_divertissement_adsl", + "PI_WHITELIST" + ], + "hasRightIAccess": true, + "hasRightMAccess": false, + "logos": [ + { + "definitionType": "mobileAppli", + "listLogos": [ + { + "size": "183x183", + "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_tmc_1%2F20181002_112809%2FmobileAppli%2Flogo_183x183.png" + } + ] + }, + { + "definitionType": "mobileAppliDark", + "listLogos": [ + { + "size": "183x183", + "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_tmc_1%2F20181002_112809%2FmobileAppliDark%2Flogo_183x183.png" + } + ] + }, + { + "definitionType": "webTVLogo", + "listLogos": [ + { + "size": "180x96", + "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_tmc_1%2F20181002_112809%2FwebTVLogo%2Flogo_180x96.png" + } + ] + }, + { + "definitionType": "webTVSquare", + "listLogos": [ + { + "size": "150x150", + "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_tmc_1%2F20181002_112809%2FwebTVSquare%2Flogo_150x150.png" + } + ] + } + ], + "mobileData": { + "wifiForbidden": false, + "wifiSecuredOnly": false, + "everywhereChannel": true, + "nomadismAllowed": true, + "drmLevels": [ + { + "definition": "SD", + "securedTerminal": [ + "DRM-HW", + "DRM-SW" + ], + "unsecuredTerminal": [ + "DRM-HW", + "DRM-SW" + ] + }, + { + "definition": "HD", + "securedTerminal": [ + "DRM-HW", + "DRM-SW" + ], + "unsecuredTerminal": [ + "ND" + ] + } + ] + }, + "webdeviceData": { + "nomadismAllowed": true + }, + "technicalChannels": { + "live": [ + { + "techChannelId": "400169", + "type": "CLOUDTV", + "liveTargetURLRelativePath": "livetv_tmc_plus_1_ctv", + "usi": 400169, + "isDRMized": true, + "csa5Disabled": true + } + ], + "npvr": [ + { + "externalId": "livetv_tmc_plus_1_ctv", + "techChannelId": "400169", + "type": "CLOUDTV", + "usi": 400169, + "isDRMized": true, + "antiAdskipping": "DEACTIVATED", + "csa5Disabled": true + } + ], + "startover": [] + } + }, + { + "name": "MANGAS", + "editoChannelId": "livetv_mangas", + "lcn": 145, + "idEPG": 6, + "epgAvailable": true, + "epgTextSubstitution": "", + "displayOrder": 145, + "csaCode": 1, + "slogan": "La chaîne 100% japanime", + "catchupChannelId": "catchuptv_mangas", + "newChannel": false, + "roamingBlocked": true, + "allowedDeviceCategories": [ + "M_ANDROID", + "M_IOS", + "M_TABLET_ANDROID", + "M_TABLET_IOS", + "W_AIRPLAY", + "W_CHROMECAST", + "W_LACLETV2", + "W_PC", + "W_SMARTTV", + "S_STB" + ], + "packages": [ + "PA_BQ_PASSACCESTVPREMIUM_M", + "PA_pack_Divertissement", + "PA_BQ_RE_TVMAX_M", + "PA_bouquet_famille_disneyplus", + "PA_BQ_ACCESTVPREMIUM_M", + "PA_BQ_PAYG_M", + "PA_pack_intense", + "PA_bouquet_divertissement_fibre", + "PA_bouquet_famille_by_canal", + "PA_bouquet_famille_by_canal_nov2018", + "PA_bouquet_famille_max", + "PA_bouquet_divertissement_adsl", + "PI_WHITELIST" + ], + "hasRightIAccess": true, + "hasRightMAccess": true, + "logos": [ + { + "definitionType": "mobileAppli", + "listLogos": [ + { + "size": "183x183", + "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_mangas%2F20220801_115348%2FmobileAppli%2Flogo_183x183.png" + } + ] + }, + { + "definitionType": "mobileAppliDark", + "listLogos": [ + { + "size": "183x183", + "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_mangas%2F20220801_115348%2FmobileAppliDark%2Flogo_183x183.png" + } + ] + }, + { + "definitionType": "webTVLogo", + "listLogos": [ + { + "size": "180x96", + "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_mangas%2F20220801_115348%2FwebTVLogo%2Flogo_180x96.png" + } + ] + }, + { + "definitionType": "webTVSquare", + "listLogos": [ + { + "size": "150x150", + "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_mangas%2F20220801_115348%2FwebTVSquare%2Flogo_150x150.png" + } + ] + } + ], + "mobileData": { + "wifiForbidden": false, + "wifiSecuredOnly": false, + "everywhereChannel": true, + "nomadismAllowed": true, + "drmLevels": [ + { + "definition": "SD", + "securedTerminal": [ + "DRM-HW", + "DRM-SW" + ], + "unsecuredTerminal": [ + "DRM-HW", + "DRM-SW" + ] + }, + { + "definition": "HD", + "securedTerminal": [ + "ND" + ], + "unsecuredTerminal": [ + "ND" + ] + } + ] + }, + "webdeviceData": { + "nomadismAllowed": true + }, + "technicalChannels": { + "live": [ + { + "techChannelId": "400154", + "type": "CLOUDTV", + "liveTargetURLRelativePath": "livetv_mangas_ctv", + "usi": 400154, + "isDRMized": true, + "csa5Disabled": true + } + ], + "npvr": [ + { + "externalId": "livetv_mangas_ctv", + "techChannelId": "400154", + "type": "CLOUDTV", + "usi": 400154, + "isDRMized": true, + "antiAdskipping": "DEACTIVATED", + "csa5Disabled": true + } + ], + "startover": [] + } + }, + { + "name": "WARNER TV NEXT", + "editoChannelId": "livetv_Toonami", + "lcn": 146, + "idEPG": 2040, + "epgAvailable": true, + "epgTextSubstitution": "", + "displayOrder": 146, + "csaCode": 1, + "slogan": "WarnerTV Next, Prêts pour la Suite ?!", + "catchupChannelId": "catchuptv_Toonami_max", + "newChannel": false, + "roamingBlocked": true, + "allowedDeviceCategories": [ + "M_ANDROID", + "M_IOS", + "M_TABLET_ANDROID", + "M_TABLET_IOS", + "W_AIRPLAY", + "W_CHROMECAST", + "W_LACLETV2", + "W_PC", + "W_SMARTTV", + "S_STB" + ], + "packages": [ + "PA_bouquet_famille_disneyplus", + "PA_pack_intense", + "PA_bouquet_famille_max", + "PA_bouquet_divertissement_adsl", + "PI_WHITELIST" + ], + "hasRightIAccess": true, + "hasRightMAccess": false, + "logos": [ + { + "definitionType": "mobileAppli", + "listLogos": [ + { + "size": "183x183", + "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_Toonami%2F20230717_162813%2FmobileAppli%2Flogo_183x183.png" + } + ] + }, + { + "definitionType": "mobileAppliDark", + "listLogos": [ + { + "size": "183x183", + "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_Toonami%2F20230717_162813%2FmobileAppliDark%2Flogo_183x183.png" + } + ] + }, + { + "definitionType": "webTVLogo", + "listLogos": [ + { + "size": "180x96", + "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_Toonami%2F20230717_162813%2FwebTVLogo%2Flogo_180x96.png" + } + ] + }, + { + "definitionType": "webTVSquare", + "listLogos": [ + { + "size": "150x150", + "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_Toonami%2F20230717_162813%2FwebTVSquare%2Flogo_150x150.png" + } + ] + } + ], + "mobileData": { + "wifiForbidden": false, + "wifiSecuredOnly": false, + "everywhereChannel": true, + "nomadismAllowed": true, + "drmLevels": [ + { + "definition": "SD", + "securedTerminal": [ + "DRM-HW", + "DRM-SW" + ], + "unsecuredTerminal": [ + "DRM-HW", + "DRM-SW" + ] + }, + { + "definition": "HD", + "securedTerminal": [ + "DRM-HW", + "DRM-SW" + ], + "unsecuredTerminal": [ + "ND" + ] + } + ] + }, + "webdeviceData": { + "nomadismAllowed": true + }, + "technicalChannels": { + "live": [ + { + "techChannelId": "400046", + "type": "CLOUDTV", + "liveTargetURLRelativePath": "livetv_toonami_ctv", + "usi": 400046, + "isDRMized": true, + "csa5Disabled": true + } + ], + "npvr": [ + { + "externalId": "livetv_toonami_ctv", + "techChannelId": "400046", + "type": "CLOUDTV", + "usi": 400046, + "isDRMized": true, + "antiAdskipping": "DEACTIVATED", + "csa5Disabled": true + } + ], + "startover": [] + } + }, + { + "name": "J-ONE", + "editoChannelId": "livetv_j_one", + "lcn": 147, + "idEPG": 1585, + "epgAvailable": true, + "epgTextSubstitution": "", + "displayOrder": 147, + "csaCode": 1, + "slogan": "Pop Culture Manga à J+1", + "catchupChannelId": "catchuptv_JOne", + "newChannel": false, + "roamingBlocked": true, + "allowedDeviceCategories": [ + "M_ANDROID", + "M_IOS", + "M_TABLET_ANDROID", + "M_TABLET_IOS", + "W_AIRPLAY", + "W_CHROMECAST", + "W_LACLETV2", + "W_SMARTTV", + "W_PC", + "S_STB" + ], + "packages": [ + "PA_bouquet_famille_disneyplus", + "PA_pack_intense", + "PA_bouquet_divertissement_fibre", + "PA_bouquet_famille_by_canal", + "PA_bouquet_famille_by_canal_nov2018", + "PA_bouquet_famille_max", + "PA_bouquet_divertissement_adsl", + "PI_WHITELIST" + ], + "hasRightIAccess": true, + "hasRightMAccess": false, + "logos": [ + { + "definitionType": "mobileAppli", + "listLogos": [ + { + "size": "183x183", + "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_j_one%2F20200804_093352%2FmobileAppli%2Flogo_183x183.png" + } + ] + }, + { + "definitionType": "mobileAppliDark", + "listLogos": [ + { + "size": "183x183", + "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_j_one%2F20200804_093352%2FmobileAppliDark%2Flogo_183x183.png" + } + ] + }, + { + "definitionType": "webTVLogo", + "listLogos": [ + { + "size": "180x96", + "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_j_one%2F20200804_093352%2FwebTVLogo%2Flogo_180x96.png" + } + ] + }, + { + "definitionType": "webTVSquare", + "listLogos": [ + { + "size": "150x150", + "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_j_one%2F20200804_093352%2FwebTVSquare%2Flogo_150x150.png" + } + ] + } + ], + "mobileData": { + "wifiForbidden": false, + "wifiSecuredOnly": false, + "everywhereChannel": true, + "nomadismAllowed": true, + "drmLevels": [ + { + "definition": "SD", + "securedTerminal": [ + "DRM-HW", + "DRM-SW" + ], + "unsecuredTerminal": [ + "DRM-HW", + "DRM-SW" + ] + }, + { + "definition": "HD", + "securedTerminal": [ + "ND" + ], + "unsecuredTerminal": [ + "ND" + ] + } + ] + }, + "webdeviceData": { + "nomadismAllowed": true + }, + "technicalChannels": { + "live": [ + { + "techChannelId": "400237", + "type": "CLOUDTV", + "liveTargetURLRelativePath": "livetv_j_one_ctv", + "usi": 400237, + "isDRMized": true, + "csa5Disabled": true + } + ], + "npvr": [ + { + "externalId": "livetv_j_one_ctv", + "techChannelId": "400237", + "type": "CLOUDTV", + "usi": 400237, + "isDRMized": true, + "antiAdskipping": "DEACTIVATED", + "csa5Disabled": true + } + ], + "startover": [] + } + }, + { + "name": "TRACE URBAN", + "editoChannelId": "livetv_trace_urban", + "lcn": 150, + "idEPG": 90150, + "epgAvailable": false, + "epgTextSubstitution": "", + "displayOrder": 150, + "csaCode": 1, + "slogan": "We love Hip-Hop and R'n'B", + "catchupChannelId": "", + "newChannel": false, + "roamingBlocked": true, + "allowedDeviceCategories": [ + "M_ANDROID", + "M_IOS", + "M_TABLET_ANDROID", + "M_TABLET_IOS", + "W_AIRPLAY", + "W_CHROMECAST", + "W_LACLETV2", + "W_PC", + "W_SMARTTV", + "S_STB" + ], + "packages": [ + "PA_BQ_PASSACCESTVPREMIUM_M", + "PA_BQ_BASIC_M", + "PA_BQ_RE_TVMAX_M", + "PA_BQ_ACCESTVPREMIUM_M", + "PA_BQ_PAYG_M", + "PA_BQ_MUSIQUE_M", + "PA_BQ_TVDIGITALE_I", + "PA_BQ_BASIC_I", + "PA_BQ_BASICQUAD_I", + "PI_WHITELIST" + ], + "hasRightIAccess": true, + "hasRightMAccess": true, + "logos": [ + { + "definitionType": "mobileAppli", + "listLogos": [ + { + "size": "183x183", + "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_trace_urban%2F20230919_133903%2FmobileAppli%2Flogo_183x183.png" + } + ] + }, + { + "definitionType": "mobileAppliDark", + "listLogos": [ + { + "size": "183x183", + "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_trace_urban%2F20230919_133903%2FmobileAppliDark%2Flogo_183x183.png" + } + ] + }, + { + "definitionType": "webTVLogo", + "listLogos": [ + { + "size": "180x96", + "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_trace_urban%2F20230919_133903%2FwebTVLogo%2Flogo_180x96.png" + } + ] + }, + { + "definitionType": "webTVSquare", + "listLogos": [ + { + "size": "150x150", + "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_trace_urban%2F20230919_133903%2FwebTVSquare%2Flogo_150x150.png" + } + ] + } + ], + "mobileData": { + "wifiForbidden": false, + "wifiSecuredOnly": false, + "everywhereChannel": true, + "nomadismAllowed": true, + "drmLevels": [ + { + "definition": "SD", + "securedTerminal": [ + "DRM-HW", + "DRM-SW" + ], + "unsecuredTerminal": [ + "DRM-HW", + "DRM-SW" + ] + }, + { + "definition": "HD", + "securedTerminal": [ + "ND" + ], + "unsecuredTerminal": [ + "ND" + ] + } + ] + }, + "webdeviceData": { + "nomadismAllowed": true + }, + "technicalChannels": { + "live": [ + { + "techChannelId": "400001", + "type": "CLOUDTV", + "liveTargetURLRelativePath": "livetv_trace_urban_ctv", + "usi": 400001, + "isDRMized": true, + "csa5Disabled": true + } + ], + "npvr": [ + { + "externalId": "livetv_trace_urban_ctv", + "techChannelId": "400001", + "type": "CLOUDTV", + "usi": 400001, + "isDRMized": true, + "antiAdskipping": "DEACTIVATED", + "csa5Disabled": true + } + ], + "startover": [ + { + "externalId": "livetv_trace_urban_ctv", + "techChannelId": "400001", + "type": "CLOUDTV", + "usi": 400001, + "isDRMized": true, + "antiAdskipping": "DEACTIVATED", + "csa5Disabled": true + } + ] + } + }, + { + "name": "NRJ HITS", + "editoChannelId": "livetv_nrjhits", + "lcn": 151, + "idEPG": 605, + "epgAvailable": true, + "epgTextSubstitution": "", + "displayOrder": 151, + "csaCode": 1, + "slogan": "Hit music only", + "catchupChannelId": "", + "newChannel": false, + "roamingBlocked": true, + "allowedDeviceCategories": [ + "M_ANDROID", + "M_IOS", + "M_TABLET_ANDROID", + "M_TABLET_IOS", + "W_AIRPLAY", + "W_CHROMECAST", + "W_LACLETV2", + "W_SMARTTV", + "W_PC", + "S_STB" + ], + "packages": [ + "PA_BQ_PASSACCESTVPREMIUM_M", + "PA_BQ_BASIC_M", + "PA_BQ_RE_TVMAX_M", + "PA_BQ_ACCESTVPREMIUM_M", + "PA_BQ_PAYG_M", + "PA_BQ_TVDIGITALE_I", + "PA_BQ_BASIC_I", + "PA_BQ_BASICQUAD_I", + "PA_BQ_ACCESTV_M", + "PI_WHITELIST" + ], + "hasRightIAccess": true, + "hasRightMAccess": true, + "logos": [ + { + "definitionType": "mobileAppli", + "listLogos": [ + { + "size": "183x183", + "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_nrjhits%2F20200205_132914%2FmobileAppli%2Flogo_183x183.png" + } + ] + }, + { + "definitionType": "mobileAppliDark", + "listLogos": [ + { + "size": "183x183", + "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_nrjhits%2F20200205_132914%2FmobileAppliDark%2Flogo_183x183.png" + } + ] + }, + { + "definitionType": "webTVLogo", + "listLogos": [ + { + "size": "180x96", + "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_nrjhits%2F20200205_132914%2FwebTVLogo%2Flogo_180x96.png" + } + ] + }, + { + "definitionType": "webTVSquare", + "listLogos": [ + { + "size": "150x150", + "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_nrjhits%2F20200205_132914%2FwebTVSquare%2Flogo_150x150.png" + } + ] + } + ], + "mobileData": { + "wifiForbidden": false, + "wifiSecuredOnly": false, + "everywhereChannel": true, + "nomadismAllowed": true, + "drmLevels": [ + { + "definition": "SD", + "securedTerminal": [ + "DRM-HW", + "DRM-SW" + ], + "unsecuredTerminal": [ + "DRM-HW", + "DRM-SW" + ] + }, + { + "definition": "HD", + "securedTerminal": [ + "ND" + ], + "unsecuredTerminal": [ + "ND" + ] + } + ] + }, + "webdeviceData": { + "nomadismAllowed": true + }, + "technicalChannels": { + "live": [ + { + "techChannelId": "400161", + "type": "CLOUDTV", + "liveTargetURLRelativePath": "livetv_nrjhits_ctv", + "usi": 400161, + "isDRMized": true, + "csa5Disabled": true + } + ], + "npvr": [ + { + "externalId": "livetv_nrjhits_ctv", + "techChannelId": "400161", + "type": "CLOUDTV", + "usi": 400161, + "isDRMized": true, + "antiAdskipping": "DEACTIVATED", + "csa5Disabled": true + } + ], + "startover": [ + { + "externalId": "livetv_nrjhits_ctv", + "techChannelId": "400161", + "type": "CLOUDTV", + "usi": 400161, + "isDRMized": true, + "antiAdskipping": "DEACTIVATED", + "csa5Disabled": true + } + ] + } + }, + { + "name": "MTV HITS", + "editoChannelId": "livetv_mtv_hits", + "lcn": 152, + "idEPG": 2006, + "epgAvailable": true, + "epgTextSubstitution": "", + "displayOrder": 152, + "csaCode": 1, + "slogan": "100% exclu", + "catchupChannelId": "catchuptv_mtv_hits", + "newChannel": false, + "roamingBlocked": true, + "allowedDeviceCategories": [ + "M_ANDROID", + "M_IOS", + "M_TABLET_ANDROID", + "M_TABLET_IOS", + "W_AIRPLAY", + "W_CHROMECAST", + "W_LACLETV2", + "W_PC", + "W_SMARTTV", + "S_STB" + ], + "packages": [ + "PA_BQ_BASIC_M", + "PA_BQ_TVDIGITALE_I", + "PA_BQ_BASIC_I", + "PA_BQ_BASICQUAD_I", + "PI_WHITELIST" + ], + "hasRightIAccess": true, + "hasRightMAccess": true, + "logos": [ + { + "definitionType": "mobileAppli", + "listLogos": [ + { + "size": "183x183", + "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_mtv_hits%2F20220411_102238%2FmobileAppli%2Flogo_183x183.png" + } + ] + }, + { + "definitionType": "mobileAppliDark", + "listLogos": [ + { + "size": "183x183", + "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_mtv_hits%2F20220411_102238%2FmobileAppliDark%2Flogo_183x183.png" + } + ] + }, + { + "definitionType": "webTVLogo", + "listLogos": [ + { + "size": "180x96", + "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_mtv_hits%2F20220411_102238%2FwebTVLogo%2Flogo_180x96.png" + } + ] + }, + { + "definitionType": "webTVSquare", + "listLogos": [ + { + "size": "150x150", + "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_mtv_hits%2F20220411_102238%2FwebTVSquare%2Flogo_150x150.png" + } + ] + } + ], + "mobileData": { + "wifiForbidden": false, + "wifiSecuredOnly": false, + "everywhereChannel": true, + "nomadismAllowed": true, + "drmLevels": [ + { + "definition": "SD", + "securedTerminal": [ + "DRM-HW", + "DRM-SW" + ], + "unsecuredTerminal": [ + "DRM-HW", + "DRM-SW" + ] + }, + { + "definition": "HD", + "securedTerminal": [ + "ND" + ], + "unsecuredTerminal": [ + "ND" + ] + } + ] + }, + "webdeviceData": { + "nomadismAllowed": true + }, + "technicalChannels": { + "live": [ + { + "techChannelId": "400159", + "type": "CLOUDTV", + "liveTargetURLRelativePath": "livetv_mtv_hits_ctv", + "usi": 400159, + "isDRMized": true, + "csa5Disabled": true + } + ], + "npvr": [ + { + "externalId": "livetv_mtv_hits_ctv", + "techChannelId": "400159", + "type": "CLOUDTV", + "usi": 400159, + "isDRMized": true, + "antiAdskipping": "DEACTIVATED", + "csa5Disabled": true + } + ], + "startover": [] + } + }, + { + "name": "MELODY D'AFRIQUE", + "editoChannelId": "livetv_melodyafr", + "lcn": 153, + "idEPG": 2321, + "epgAvailable": true, + "epgTextSubstitution": "", + "displayOrder": 153, + "csaCode": 1, + "slogan": "La chaîne Afro Héritage", + "catchupChannelId": "", + "newChannel": false, + "roamingBlocked": true, + "allowedDeviceCategories": [ + "M_ANDROID", + "M_TABLET_ANDROID", + "M_IOS", + "M_TABLET_IOS", + "W_AIRPLAY", + "W_CHROMECAST", + "W_LACLETV2", + "W_PC", + "W_SMARTTV", + "S_STB" + ], + "packages": [ + "PA_BQ_BASIC_I", + "PI_WHITELIST" + ], + "hasRightIAccess": true, + "hasRightMAccess": false, + "logos": [ + { + "definitionType": "mobileAppli", + "listLogos": [ + { + "size": "183x183", + "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_melodyafr%2F20230217_121614%2FmobileAppli%2Flogo_183x183.png" + } + ] + }, + { + "definitionType": "mobileAppliDark", + "listLogos": [ + { + "size": "183x183", + "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_melodyafr%2F20230217_121614%2FmobileAppliDark%2Flogo_183x183.png" + } + ] + }, + { + "definitionType": "webTVLogo", + "listLogos": [ + { + "size": "180x96", + "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_melodyafr%2F20230217_121614%2FwebTVLogo%2Flogo_180x96.png" + } + ] + }, + { + "definitionType": "webTVSquare", + "listLogos": [ + { + "size": "150x150", + "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_melodyafr%2F20230217_121614%2FwebTVSquare%2Flogo_150x150.png" + } + ] + } + ], + "mobileData": { + "wifiForbidden": false, + "wifiSecuredOnly": false, + "everywhereChannel": true, + "nomadismAllowed": true, + "drmLevels": [ + { + "definition": "SD", + "securedTerminal": [ + "DRM-HW", + "DRM-SW" + ], + "unsecuredTerminal": [ + "DRM-HW", + "DRM-SW" + ] + }, + { + "definition": "HD", + "securedTerminal": [ + "DRM-HW", + "DRM-SW" + ], + "unsecuredTerminal": [ + "ND" + ] + } + ] + }, + "webdeviceData": { + "nomadismAllowed": true + }, + "technicalChannels": { + "live": [ + { + "techChannelId": "400417", + "type": "CLOUDTV", + "liveTargetURLRelativePath": "livetv_acces_limite_ctv", + "usi": 400417, + "isDRMized": true, + "csa5Disabled": true + } + ], + "npvr": [], + "startover": [] + } + }, + { + "name": "CLUBBING TV", + "editoChannelId": "livetv_clubbingtv", + "lcn": 155, + "idEPG": 1989, + "epgAvailable": true, + "epgTextSubstitution": "", + "displayOrder": 155, + "csaCode": 1, + "slogan": "La première chaîne des Dance Floors", + "catchupChannelId": "catchuptv_clubbingtv", + "newChannel": false, + "roamingBlocked": true, + "allowedDeviceCategories": [ + "M_ANDROID", + "M_IOS", + "M_TABLET_ANDROID", + "M_TABLET_IOS", + "W_AIRPLAY", + "W_CHROMECAST", + "W_LACLETV2", + "W_SMARTTV", + "W_PC", + "S_STB" + ], + "packages": [ + "PA_BQ_BASIC_M", + "PA_BQ_TVDIGITALE_I", + "PA_BQ_BASIC_I", + "PA_BQ_BASICQUAD_I", + "PI_WHITELIST" + ], + "hasRightIAccess": true, + "hasRightMAccess": true, + "logos": [ + { + "definitionType": "mobileAppli", + "listLogos": [ + { + "size": "183x183", + "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_clubbingtv%2F20151026_092415%2FmobileAppli%2Flogo_183x183.png" + } + ] + }, + { + "definitionType": "mobileAppliDark", + "listLogos": [ + { + "size": "183x183", + "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_clubbingtv%2F20151026_092415%2FmobileAppliDark%2Flogo_183x183.png" + } + ] + }, + { + "definitionType": "webTVLogo", + "listLogos": [ + { + "size": "180x96", + "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_clubbingtv%2F20151026_092415%2FwebTVLogo%2Flogo_180x96.png" + } + ] + }, + { + "definitionType": "webTVSquare", + "listLogos": [ + { + "size": "150x150", + "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_clubbingtv%2F20151026_092415%2FwebTVSquare%2Flogo_150x150.png" + } + ] + } + ], + "mobileData": { + "wifiForbidden": false, + "wifiSecuredOnly": false, + "everywhereChannel": true, + "nomadismAllowed": true, + "drmLevels": [ + { + "definition": "SD", + "securedTerminal": [ + "DRM-HW", + "DRM-SW" + ], + "unsecuredTerminal": [ + "DRM-HW", + "DRM-SW" + ] + }, + { + "definition": "HD", + "securedTerminal": [ + "DRM-HW", + "DRM-SW" + ], + "unsecuredTerminal": [ + "ND" + ] + } + ] + }, + "webdeviceData": { + "nomadismAllowed": true + }, + "technicalChannels": { + "live": [ + { + "techChannelId": "400139", + "type": "CLOUDTV", + "liveTargetURLRelativePath": "livetv_clubbing_tv_ctv", + "usi": 400139, + "isDRMized": true, + "csa5Disabled": true + } + ], + "npvr": [ + { + "externalId": "livetv_clubbing_tv_ctv", + "techChannelId": "400139", + "type": "CLOUDTV", + "usi": 400139, + "isDRMized": true, + "antiAdskipping": "DEACTIVATED", + "csa5Disabled": true + } + ], + "startover": [] + } + }, + { + "name": "STAR ACADEMY, LE LIVE", + "editoChannelId": "livetv_star_academy", + "lcn": 156, + "idEPG": 90156, + "epgAvailable": false, + "epgTextSubstitution": "", + "displayOrder": 156, + "csaCode": 1, + "slogan": "La vie des élèves en direct du Château", + "catchupChannelId": "", + "newChannel": true, + "roamingBlocked": true, + "allowedDeviceCategories": [ + "M_ANDROID", + "M_IOS", + "M_TABLET_ANDROID", + "M_TABLET_IOS", + "W_AIRPLAY", + "W_CHROMECAST", + "W_LACLETV2", + "W_PC", + "W_SMARTTV", + "S_STB" + ], + "packages": [ + "PA_replaymax", + "PI_WHITELIST" + ], + "hasRightIAccess": true, + "hasRightMAccess": false, + "logos": [ + { + "definitionType": "mobileAppli", + "listLogos": [ + { + "size": "183x183", + "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_star_academy%2F20230921_161027%2FmobileAppli%2Flogo_183x183.png" + } + ] + }, + { + "definitionType": "mobileAppliDark", + "listLogos": [ + { + "size": "183x183", + "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_star_academy%2F20230921_161027%2FmobileAppliDark%2Flogo_183x183.png" + } + ] + }, + { + "definitionType": "webTVLogo", + "listLogos": [ + { + "size": "180x96", + "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_star_academy%2F20230921_161027%2FwebTVLogo%2Flogo_180x96.png" + } + ] + }, + { + "definitionType": "webTVSquare", + "listLogos": [ + { + "size": "150x150", + "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_star_academy%2F20230921_161027%2FwebTVSquare%2Flogo_150x150.png" + } + ] + } + ], + "mobileData": { + "wifiForbidden": false, + "wifiSecuredOnly": false, + "everywhereChannel": true, + "nomadismAllowed": true, + "drmLevels": [ + { + "definition": "SD", + "securedTerminal": [ + "DRM-HW", + "DRM-SW" + ], + "unsecuredTerminal": [ + "DRM-HW", + "DRM-SW" + ] + }, + { + "definition": "HD", + "securedTerminal": [ + "DRM-HW", + "DRM-SW" + ], + "unsecuredTerminal": [ + "ND" + ] + } + ] + }, + "webdeviceData": { + "nomadismAllowed": true + }, + "technicalChannels": { + "live": [ + { + "techChannelId": "400360", + "type": "CLOUDTV", + "liveTargetURLRelativePath": "livetv_star_academy_le_live_ctv", + "usi": 400360, + "isDRMized": true, + "csa5Disabled": true + } + ], + "npvr": [ + { + "externalId": "livetv_star_academy_le_live_ctv", + "techChannelId": "400360", + "type": "CLOUDTV", + "usi": 400360, + "isDRMized": true, + "antiAdskipping": "DEACTIVATED", + "csa5Disabled": true + } + ], + "startover": [] + } + }, + { + "name": "M6MUSIC", + "editoChannelId": "livetv_m6_music", + "lcn": 157, + "idEPG": 453, + "epgAvailable": true, + "epgTextSubstitution": "", + "displayOrder": 157, + "csaCode": 1, + "slogan": "La chaîne 100% Hits", + "catchupChannelId": "catchuptv_m6music", + "newChannel": false, + "roamingBlocked": true, + "allowedDeviceCategories": [ + "M_ANDROID", + "M_IOS", + "M_TABLET_ANDROID", + "M_TABLET_IOS", + "W_AIRPLAY", + "W_CHROMECAST", + "W_LACLETV2", + "W_SMARTTV", + "W_PC", + "S_STB" + ], + "packages": [ + "PA_BQ_PASSACCESTVPREMIUM_M", + "PA_pack_Divertissement", + "PA_bouquet_famille_disneyplus", + "PA_BQ_ACCESTVPREMIUM_M", + "PA_pack_intense", + "PA_BQ_MUSIQUE_M", + "PA_bouquet_divertissement_fibre", + "PA_bouquet_famille_by_canal", + "PA_bouquet_famille_by_canal_nov2018", + "PA_bouquet_famille_max", + "PA_bouquet_divertissement_adsl", + "PI_WHITELIST" + ], + "hasRightIAccess": true, + "hasRightMAccess": true, + "logos": [ + { + "definitionType": "mobileAppli", + "listLogos": [ + { + "size": "183x183", + "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_m6_music%2F20200102_141654%2FmobileAppli%2Flogo_183x183.png" + } + ] + }, + { + "definitionType": "mobileAppliDark", + "listLogos": [ + { + "size": "183x183", + "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_m6_music%2F20200102_141654%2FmobileAppliDark%2Flogo_183x183.png" + } + ] + }, + { + "definitionType": "webTVLogo", + "listLogos": [ + { + "size": "180x96", + "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_m6_music%2F20200102_141654%2FwebTVLogo%2Flogo_180x96.png" + } + ] + }, + { + "definitionType": "webTVSquare", + "listLogos": [ + { + "size": "150x150", + "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_m6_music%2F20200102_141654%2FwebTVSquare%2Flogo_150x150.png" + } + ] + } + ], + "mobileData": { + "wifiForbidden": false, + "wifiSecuredOnly": false, + "everywhereChannel": true, + "nomadismAllowed": true, + "drmLevels": [ + { + "definition": "SD", + "securedTerminal": [ + "DRM-HW", + "DRM-SW" + ], + "unsecuredTerminal": [ + "DRM-HW", + "DRM-SW" + ] + }, + { + "definition": "HD", + "securedTerminal": [ + "ND" + ], + "unsecuredTerminal": [ + "ND" + ] + } + ] + }, + "webdeviceData": { + "nomadismAllowed": true + }, + "technicalChannels": { + "live": [ + { + "techChannelId": "400153", + "type": "CLOUDTV", + "liveTargetURLRelativePath": "livetv_m6music_ctv", + "usi": 400153, + "isDRMized": true, + "csa5Disabled": true + } + ], + "npvr": [ + { + "externalId": "livetv_m6music_ctv", + "techChannelId": "400153", + "type": "CLOUDTV", + "usi": 400153, + "isDRMized": true, + "antiAdskipping": "DEACTIVATED", + "csa5Disabled": true + } + ], + "startover": [] + } + }, + { + "name": "RFM TV", + "editoChannelId": "livetv_mcmpop", + "lcn": 159, + "idEPG": 90159, + "epgAvailable": false, + "epgTextSubstitution": "", + "displayOrder": 159, + "csaCode": 1, + "slogan": "Le meilleur de la Musique", + "catchupChannelId": "", + "newChannel": false, + "roamingBlocked": true, + "allowedDeviceCategories": [ + "M_ANDROID", + "M_IOS", + "M_TABLET_ANDROID", + "M_TABLET_IOS", + "W_AIRPLAY", + "W_CHROMECAST", + "W_LACLETV2", + "W_SMARTTV", + "W_PC", + "S_STB" + ], + "packages": [ + "PA_BQ_PASSACCESTVPREMIUM_M", + "PA_pack_Divertissement", + "PA_bouquet_famille_disneyplus", + "PA_BQ_ACCESTVPREMIUM_M", + "PA_pack_intense", + "PA_BQ_MUSIQUE_M", + "PA_bouquet_divertissement_fibre", + "PA_bouquet_famille_by_canal", + "PA_bouquet_famille_by_canal_nov2018", + "PA_bouquet_famille_max", + "PA_bouquet_divertissement_adsl", + "PI_WHITELIST" + ], + "hasRightIAccess": true, + "hasRightMAccess": true, + "logos": [ + { + "definitionType": "mobileAppli", + "listLogos": [ + { + "size": "183x183", + "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_mcmpop%2F20170405_200000%2FmobileAppli%2Flogo_183x183.png" + } + ] + }, + { + "definitionType": "mobileAppliDark", + "listLogos": [ + { + "size": "183x183", + "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_mcmpop%2F20170405_200000%2FmobileAppliDark%2Flogo_183x183.png" + } + ] + }, + { + "definitionType": "webTVLogo", + "listLogos": [ + { + "size": "180x96", + "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_mcmpop%2F20170405_200000%2FwebTVLogo%2Flogo_180x96.png" + } + ] + }, + { + "definitionType": "webTVSquare", + "listLogos": [ + { + "size": "150x150", + "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_mcmpop%2F20170405_200000%2FwebTVSquare%2Flogo_150x150.png" + } + ] + } + ], + "mobileData": { + "wifiForbidden": false, + "wifiSecuredOnly": false, + "everywhereChannel": true, + "nomadismAllowed": true, + "drmLevels": [ + { + "definition": "SD", + "securedTerminal": [ + "DRM-HW", + "DRM-SW" + ], + "unsecuredTerminal": [ + "DRM-HW", + "DRM-SW" + ] + }, + { + "definition": "HD", + "securedTerminal": [ + "ND" + ], + "unsecuredTerminal": [ + "ND" + ] + } + ] + }, + "webdeviceData": { + "nomadismAllowed": true + }, + "technicalChannels": { + "live": [ + { + "techChannelId": "400164", + "type": "CLOUDTV", + "liveTargetURLRelativePath": "livetv_rfm_ctv", + "usi": 400164, + "isDRMized": true, + "csa5Disabled": true + } + ], + "npvr": [ + { + "externalId": "livetv_rfm_ctv", + "techChannelId": "400164", + "type": "CLOUDTV", + "usi": 400164, + "isDRMized": true, + "antiAdskipping": "DEACTIVATED", + "csa5Disabled": true + } + ], + "startover": [] + } + }, + { + "name": "MELODY", + "editoChannelId": "livetv_melody", + "lcn": 160, + "idEPG": 265, + "epgAvailable": true, + "epgTextSubstitution": "", + "displayOrder": 160, + "csaCode": 1, + "slogan": "La chaîne Vintage Forever", + "catchupChannelId": "catchuptv_melody", + "newChannel": true, + "roamingBlocked": true, + "allowedDeviceCategories": [ + "M_ANDROID", + "M_IOS", + "M_TABLET_ANDROID", + "M_TABLET_IOS", + "W_AIRPLAY", + "W_CHROMECAST", + "W_LACLETV2", + "W_SMARTTV", + "W_PC", + "S_STB" + ], + "packages": [ + "PA_bouquet_famille_disneyplus", + "PA_pack_intense", + "PA_bouquet_famille_max", + "PA_bouquet_divertissement_adsl", + "PA_melody", + "PI_WHITELIST" + ], + "hasRightIAccess": true, + "hasRightMAccess": false, + "logos": [ + { + "definitionType": "mobileAppli", + "listLogos": [ + { + "size": "183x183", + "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_melody%2F20151026_092415%2FmobileAppli%2Flogo_183x183.png" + } + ] + }, + { + "definitionType": "mobileAppliDark", + "listLogos": [ + { + "size": "183x183", + "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_melody%2F20151026_092415%2FmobileAppliDark%2Flogo_183x183.png" + } + ] + }, + { + "definitionType": "webTVLogo", + "listLogos": [ + { + "size": "180x96", + "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_melody%2F20151026_092415%2FwebTVLogo%2Flogo_180x96.png" + } + ] + }, + { + "definitionType": "webTVSquare", + "listLogos": [ + { + "size": "150x150", + "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_melody%2F20151026_092415%2FwebTVSquare%2Flogo_150x150.png" + } + ] + } + ], + "mobileData": { + "wifiForbidden": false, + "wifiSecuredOnly": false, + "everywhereChannel": true, + "nomadismAllowed": true, + "drmLevels": [ + { + "definition": "SD", + "securedTerminal": [ + "DRM-HW", + "DRM-SW" + ], + "unsecuredTerminal": [ + "DRM-HW", + "DRM-SW" + ] + }, + { + "definition": "HD", + "securedTerminal": [ + "ND" + ], + "unsecuredTerminal": [ + "ND" + ] + } + ] + }, + "webdeviceData": { + "nomadismAllowed": true + }, + "technicalChannels": { + "live": [ + { + "techChannelId": "400155", + "type": "CLOUDTV", + "liveTargetURLRelativePath": "livetv_melody_ctv", + "usi": 400155, + "isDRMized": true, + "csa5Disabled": true + } + ], + "npvr": [ + { + "externalId": "livetv_melody_ctv", + "techChannelId": "400155", + "type": "CLOUDTV", + "usi": 400155, + "isDRMized": true, + "antiAdskipping": "DEACTIVATED", + "csa5Disabled": true + } + ], + "startover": [] + } + }, + { + "name": "TRACE CARIBBEAN", + "editoChannelId": "livetv_trace_tropical", + "lcn": 161, + "idEPG": 90161, + "epgAvailable": false, + "epgTextSubstitution": "", + "displayOrder": 161, + "csaCode": 1, + "slogan": "We are one Caribbean", + "catchupChannelId": "", + "newChannel": false, + "roamingBlocked": true, + "allowedDeviceCategories": [ + "M_ANDROID", + "M_IOS", + "M_TABLET_ANDROID", + "M_TABLET_IOS", + "W_AIRPLAY", + "W_CHROMECAST", + "W_LACLETV2", + "W_SMARTTV", + "W_PC", + "S_STB" + ], + "packages": [ + "PA_pack_Divertissement", + "PA_BQ_RE_TVMAX_M", + "PA_bouquet_famille_disneyplus", + "PA_BQ_ACCESTVPREMIUM_M", + "PA_BQ_PAYG_M", + "PA_pack_intense", + "PA_BQ_MUSIQUE_M", + "PA_BQ_SPORT_M", + "PA_bouquet_famille_max", + "PA_bouquet_divertissement_adsl", + "PI_WHITELIST" + ], + "hasRightIAccess": true, + "hasRightMAccess": true, + "logos": [ + { + "definitionType": "mobileAppli", + "listLogos": [ + { + "size": "183x183", + "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_trace_tropical%2F20230831_150807%2FmobileAppli%2Flogo_183x183.png" + } + ] + }, + { + "definitionType": "mobileAppliDark", + "listLogos": [ + { + "size": "183x183", + "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_trace_tropical%2F20230831_150807%2FmobileAppliDark%2Flogo_183x183.png" + } + ] + }, + { + "definitionType": "webTVLogo", + "listLogos": [ + { + "size": "180x96", + "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_trace_tropical%2F20230831_150807%2FwebTVLogo%2Flogo_180x96.png" + } + ] + }, + { + "definitionType": "webTVSquare", + "listLogos": [ + { + "size": "150x150", + "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_trace_tropical%2F20230831_150807%2FwebTVSquare%2Flogo_150x150.png" + } + ] + } + ], + "mobileData": { + "wifiForbidden": false, + "wifiSecuredOnly": false, + "everywhereChannel": true, + "nomadismAllowed": true, + "drmLevels": [ + { + "definition": "SD", + "securedTerminal": [ + "DRM-HW", + "DRM-SW" + ], + "unsecuredTerminal": [ + "DRM-HW", + "DRM-SW" + ] + }, + { + "definition": "HD", + "securedTerminal": [ + "ND" + ], + "unsecuredTerminal": [ + "ND" + ] + } + ] + }, + "webdeviceData": { + "nomadismAllowed": true + }, + "technicalChannels": { + "live": [ + { + "techChannelId": "400171", + "type": "CLOUDTV", + "liveTargetURLRelativePath": "livetv_trace_tropical_ctv", + "usi": 400171, + "isDRMized": true, + "csa5Disabled": true + } + ], + "npvr": [ + { + "externalId": "livetv_trace_tropical_ctv", + "techChannelId": "400171", + "type": "CLOUDTV", + "usi": 400171, + "isDRMized": true, + "antiAdskipping": "DEACTIVATED", + "csa5Disabled": true + } + ], + "startover": [] + } + }, + { + "name": "TRACE LATINA", + "editoChannelId": "livetv_trace_latina", + "lcn": 162, + "idEPG": 90162, + "epgAvailable": false, + "epgTextSubstitution": "", + "displayOrder": 162, + "csaCode": 1, + "slogan": "We are Latin Music", + "catchupChannelId": "", + "newChannel": true, + "roamingBlocked": true, + "allowedDeviceCategories": [ + "M_ANDROID", + "M_IOS", + "M_TABLET_ANDROID", + "M_TABLET_IOS", + "W_AIRPLAY", + "W_CHROMECAST", + "W_LACLETV2", + "W_SMARTTV", + "W_PC", + "S_STB" + ], + "packages": [ + "PA_bouquet_famille_disneyplus", + "PA_pack_intense", + "PA_bouquet_famille_max", + "PA_bouquet_divertissement_adsl", + "PI_WHITELIST" + ], + "hasRightIAccess": true, + "hasRightMAccess": false, + "logos": [ + { + "definitionType": "mobileAppli", + "listLogos": [ + { + "size": "183x183", + "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_trace_latina%2F20230831_150807%2FmobileAppli%2Flogo_183x183.png" + } + ] + }, + { + "definitionType": "mobileAppliDark", + "listLogos": [ + { + "size": "183x183", + "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_trace_latina%2F20230831_150807%2FmobileAppliDark%2Flogo_183x183.png" + } + ] + }, + { + "definitionType": "webTVLogo", + "listLogos": [ + { + "size": "180x96", + "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_trace_latina%2F20230831_150807%2FwebTVLogo%2Flogo_180x96.png" + } + ] + }, + { + "definitionType": "webTVSquare", + "listLogos": [ + { + "size": "150x150", + "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_trace_latina%2F20230831_150807%2FwebTVSquare%2Flogo_150x150.png" + } + ] + } + ], + "mobileData": { + "wifiForbidden": false, + "wifiSecuredOnly": false, + "everywhereChannel": true, + "nomadismAllowed": true, + "drmLevels": [ + { + "definition": "SD", + "securedTerminal": [ + "DRM-HW", + "DRM-SW" + ], + "unsecuredTerminal": [ + "DRM-HW", + "DRM-SW" + ] + }, + { + "definition": "HD", + "securedTerminal": [ + "DRM-HW", + "DRM-SW" + ], + "unsecuredTerminal": [ + "ND" + ] + } + ] + }, + "webdeviceData": { + "nomadismAllowed": true + }, + "technicalChannels": { + "live": [ + { + "techChannelId": "400170", + "type": "CLOUDTV", + "liveTargetURLRelativePath": "livetv_trace_latina_ctv", + "usi": 400170, + "isDRMized": true, + "csa5Disabled": true + } + ], + "npvr": [ + { + "externalId": "livetv_trace_latina_ctv", + "techChannelId": "400170", + "type": "CLOUDTV", + "usi": 400170, + "isDRMized": true, + "antiAdskipping": "DEACTIVATED", + "csa5Disabled": true + } + ], + "startover": [] + } + }, + { + "name": "TRACE VANILLA", + "editoChannelId": "livetv_trace_vanilla", + "lcn": 163, + "idEPG": 90163, + "epgAvailable": false, + "epgTextSubstitution": "", + "displayOrder": 163, + "csaCode": 1, + "slogan": "We Are Vanilla Music", + "catchupChannelId": "", + "newChannel": true, + "roamingBlocked": false, + "allowedDeviceCategories": [ + "M_ANDROID", + "M_IOS", + "M_TABLET_ANDROID", + "M_TABLET_IOS", + "W_AIRPLAY", + "W_CHROMECAST", + "W_LACLETV2", + "W_PC", + "W_SMARTTV", + "S_STB" + ], + "packages": [ + "PA_bouquet_famille_disneyplus", + "PA_pack_intense", + "PA_bouquet_famille_max", + "PA_bouquet_divertissement_adsl", + "PI_WHITELIST" + ], + "hasRightIAccess": true, + "hasRightMAccess": false, + "logos": [ + { + "definitionType": "mobileAppli", + "listLogos": [ + { + "size": "183x183", + "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_trace_vanilla%2F20230324_101810%2FmobileAppli%2Flogo_183x183.png" + } + ] + }, + { + "definitionType": "mobileAppliDark", + "listLogos": [ + { + "size": "183x183", + "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_trace_vanilla%2F20230324_101810%2FmobileAppliDark%2Flogo_183x183.png" + } + ] + }, + { + "definitionType": "webTVLogo", + "listLogos": [ + { + "size": "180x96", + "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_trace_vanilla%2F20230324_101810%2FwebTVLogo%2Flogo_180x96.png" + } + ] + }, + { + "definitionType": "webTVSquare", + "listLogos": [ + { + "size": "150x150", + "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_trace_vanilla%2F20230324_101810%2FwebTVSquare%2Flogo_150x150.png" + } + ] + } + ], + "mobileData": { + "wifiForbidden": false, + "wifiSecuredOnly": false, + "everywhereChannel": true, + "nomadismAllowed": true, + "drmLevels": [ + { + "definition": "SD", + "securedTerminal": [ + "DRM-HW", + "DRM-SW" + ], + "unsecuredTerminal": [ + "DRM-HW", + "DRM-SW" + ] + }, + { + "definition": "HD", + "securedTerminal": [ + "NO-DRM" + ], + "unsecuredTerminal": [ + "NO-DRM" + ] + } + ] + }, + "webdeviceData": { + "nomadismAllowed": true + }, + "technicalChannels": { + "live": [ + { + "techChannelId": "400277", + "type": "CLOUDTV", + "liveTargetURLRelativePath": "livetv_trace_vanilla_ctv", + "usi": 400277, + "isDRMized": true, + "csa5Disabled": true + } + ], + "npvr": [ + { + "externalId": "livetv_trace_vanilla_ctv", + "techChannelId": "400277", + "type": "CLOUDTV", + "usi": 400277, + "isDRMized": true, + "antiAdskipping": "DEACTIVATED", + "csa5Disabled": true + } + ], + "startover": [] + } + }, + { + "name": "CSTAR HITS FRANCE", + "editoChannelId": "livetv_cstarhits", + "lcn": 165, + "idEPG": 90165, + "epgAvailable": false, + "epgTextSubstitution": "", + "displayOrder": 165, + "csaCode": 1, + "slogan": "La chaîne 100% musique française", + "catchupChannelId": "", + "newChannel": true, + "roamingBlocked": true, + "allowedDeviceCategories": [ + "M_ANDROID", + "M_IOS", + "M_TABLET_ANDROID", + "M_TABLET_IOS", + "W_AIRPLAY", + "W_CHROMECAST", + "W_LACLETV2", + "W_SMARTTV", + "W_PC", + "S_STB" + ], + "packages": [ + "PA_bouquet_divertissement_fibre", + "PA_bouquet_famille_by_canal", + "PA_bouquet_famille_by_canal_nov2018", + "PI_WHITELIST" + ], + "hasRightIAccess": true, + "hasRightMAccess": false, + "logos": [ + { + "definitionType": "mobileAppli", + "listLogos": [ + { + "size": "183x183", + "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_cstarhits%2F20180328_104917%2FmobileAppli%2Flogo_183x183.png" + } + ] + }, + { + "definitionType": "mobileAppliDark", + "listLogos": [ + { + "size": "183x183", + "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_cstarhits%2F20180328_104917%2FmobileAppliDark%2Flogo_183x183.png" + } + ] + }, + { + "definitionType": "webTVLogo", + "listLogos": [ + { + "size": "180x96", + "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_cstarhits%2F20180328_104917%2FwebTVLogo%2Flogo_180x96.png" + } + ] + }, + { + "definitionType": "webTVSquare", + "listLogos": [ + { + "size": "150x150", + "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_cstarhits%2F20180328_104917%2FwebTVSquare%2Flogo_150x150.png" + } + ] + } + ], + "mobileData": { + "wifiForbidden": false, + "wifiSecuredOnly": false, + "everywhereChannel": true, + "nomadismAllowed": true, + "drmLevels": [ + { + "definition": "SD", + "securedTerminal": [ + "DRM-HW", + "DRM-SW" + ], + "unsecuredTerminal": [ + "DRM-HW", + "DRM-SW" + ] + }, + { + "definition": "HD", + "securedTerminal": [ + "ND" + ], + "unsecuredTerminal": [ + "ND" + ] + } + ] + }, + "webdeviceData": { + "nomadismAllowed": true + }, + "technicalChannels": { + "live": [ + { + "techChannelId": "400141", + "type": "CLOUDTV", + "liveTargetURLRelativePath": "livetv_cstar_hits_france_ctv", + "usi": 400141, + "isDRMized": true, + "csa5Disabled": true + } + ], + "npvr": [ + { + "externalId": "livetv_cstar_hits_france_ctv", + "techChannelId": "400141", + "type": "CLOUDTV", + "usi": 400141, + "isDRMized": true, + "antiAdskipping": "DEACTIVATED", + "csa5Disabled": true + } + ], + "startover": [] + } + }, + { + "name": "OLYMPIA TV", + "editoChannelId": "livetv_olympia_tv", + "lcn": 166, + "idEPG": 2958, + "epgAvailable": true, + "epgTextSubstitution": "", + "displayOrder": 166, + "csaCode": 1, + "slogan": "La chaîne de vos soirées spectacles", + "catchupChannelId": "catchuptv_olympiatv", + "newChannel": true, + "roamingBlocked": true, + "allowedDeviceCategories": [ + "M_ANDROID", + "M_IOS", + "M_TABLET_ANDROID", + "M_TABLET_IOS", + "W_AIRPLAY", + "W_CHROMECAST", + "W_LACLETV2", + "W_SMARTTV", + "W_PC", + "S_STB" + ], + "packages": [ + "PA_bouquet_divertissement_fibre", + "PA_bouquet_famille_by_canal", + "PA_bouquet_famille_by_canal_nov2018", + "PI_WHITELIST" + ], + "hasRightIAccess": true, + "hasRightMAccess": false, + "logos": [ + { + "definitionType": "mobileAppli", + "listLogos": [ + { + "size": "183x183", + "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_olympia_tv%2F20200130_100105%2FmobileAppli%2Flogo_183x183.png" + } + ] + }, + { + "definitionType": "mobileAppliDark", + "listLogos": [ + { + "size": "183x183", + "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_olympia_tv%2F20200130_100105%2FmobileAppliDark%2Flogo_183x183.png" + } + ] + }, + { + "definitionType": "webTVLogo", + "listLogos": [ + { + "size": "180x96", + "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_olympia_tv%2F20200130_100105%2FwebTVLogo%2Flogo_180x96.png" + } + ] + }, + { + "definitionType": "webTVSquare", + "listLogos": [ + { + "size": "150x150", + "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_olympia_tv%2F20200130_100105%2FwebTVSquare%2Flogo_150x150.png" + } + ] + } + ], + "mobileData": { + "wifiForbidden": false, + "wifiSecuredOnly": false, + "everywhereChannel": true, + "nomadismAllowed": true, + "drmLevels": [ + { + "definition": "SD", + "securedTerminal": [ + "DRM-HW", + "DRM-SW" + ], + "unsecuredTerminal": [ + "DRM-HW", + "DRM-SW" + ] + }, + { + "definition": "HD", + "securedTerminal": [ + "ND" + ], + "unsecuredTerminal": [ + "ND" + ] + } + ] + }, + "webdeviceData": { + "nomadismAllowed": true + }, + "technicalChannels": { + "live": [ + { + "techChannelId": "400218", + "type": "CLOUDTV", + "liveTargetURLRelativePath": "livetv_olympia_tv_ctv", + "usi": 400218, + "isDRMized": true, + "csa5Disabled": true + } + ], + "npvr": [ + { + "externalId": "livetv_olympia_tv_ctv", + "techChannelId": "400218", + "type": "CLOUDTV", + "usi": 400218, + "isDRMized": true, + "antiAdskipping": "DEACTIVATED", + "csa5Disabled": true + } + ], + "startover": [] + } + }, + { + "name": "MEZZO", + "editoChannelId": "livetv_mezzo", + "lcn": 167, + "idEPG": 125, + "epgAvailable": true, + "epgTextSubstitution": "", + "displayOrder": 167, + "csaCode": 1, + "slogan": "Musique Classique, Opéra, Jazz et Danse", + "catchupChannelId": "catchuptv_mezzo_CU", + "newChannel": true, + "roamingBlocked": true, + "allowedDeviceCategories": [ + "M_ANDROID", + "M_IOS", + "M_TABLET_ANDROID", + "M_TABLET_IOS", + "W_AIRPLAY", + "W_CHROMECAST", + "W_LACLETV2", + "W_PC", + "W_SMARTTV", + "S_STB" + ], + "packages": [ + "PA_pack_Divertissement", + "PA_bouquet_musique_classique", + "PA_bouquet_famille_disneyplus", + "PA_pack_intense", + "PA_bouquet_divertissement_fibre", + "PA_bouquet_famille_by_canal_nov2018", + "PA_bouquet_famille_max", + "PA_bouquet_divertissement_adsl", + "PI_WHITELIST" + ], + "hasRightIAccess": true, + "hasRightMAccess": false, + "logos": [ + { + "definitionType": "mobileAppli", + "listLogos": [ + { + "size": "183x183", + "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_mezzo%2F20230321_182925%2FmobileAppli%2Flogo_183x183.png" + } + ] + }, + { + "definitionType": "mobileAppliDark", + "listLogos": [ + { + "size": "183x183", + "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_mezzo%2F20230321_182925%2FmobileAppliDark%2Flogo_183x183.png" + } + ] + }, + { + "definitionType": "webTVLogo", + "listLogos": [ + { + "size": "180x96", + "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_mezzo%2F20230321_182925%2FwebTVLogo%2Flogo_180x96.png" + } + ] + }, + { + "definitionType": "webTVSquare", + "listLogos": [ + { + "size": "150x150", + "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_mezzo%2F20230321_182925%2FwebTVSquare%2Flogo_150x150.png" + } + ] + } + ], + "mobileData": { + "wifiForbidden": false, + "wifiSecuredOnly": false, + "everywhereChannel": true, + "nomadismAllowed": true, + "drmLevels": [ + { + "definition": "SD", + "securedTerminal": [ + "DRM-HW", + "DRM-SW" + ], + "unsecuredTerminal": [ + "DRM-HW", + "DRM-SW" + ] + }, + { + "definition": "HD", + "securedTerminal": [ + "ND" + ], + "unsecuredTerminal": [ + "ND" + ] + } + ] + }, + "webdeviceData": { + "nomadismAllowed": true + }, + "technicalChannels": { + "live": [ + { + "techChannelId": "400157", + "type": "CLOUDTV", + "liveTargetURLRelativePath": "livetv_mezzo_ctv", + "usi": 400157, + "isDRMized": true, + "csa5Disabled": true + } + ], + "npvr": [ + { + "externalId": "livetv_mezzo_ctv", + "techChannelId": "400157", + "type": "CLOUDTV", + "usi": 400157, + "isDRMized": true, + "antiAdskipping": "DEACTIVATED", + "csa5Disabled": true + } + ], + "startover": [] + } + }, + { + "name": "MEZZO LIVE", + "editoChannelId": "livetv_mezzolivehd", + "lcn": 168, + "idEPG": 907, + "epgAvailable": true, + "epgTextSubstitution": "", + "displayOrder": 168, + "csaCode": 1, + "slogan": "Musique Classique, Opéra, Jazz et Danse", + "catchupChannelId": "", + "newChannel": true, + "roamingBlocked": true, + "allowedDeviceCategories": [ + "M_ANDROID", + "M_IOS", + "M_TABLET_ANDROID", + "M_TABLET_IOS", + "W_AIRPLAY", + "W_CHROMECAST", + "W_LACLETV2", + "W_PC", + "W_SMARTTV", + "S_STB" + ], + "packages": [ + "PA_pack_Divertissement", + "PA_bouquet_musique_classique", + "PA_bouquet_famille_disneyplus", + "PA_pack_intense", + "PA_bouquet_divertissement_fibre", + "PA_bouquet_famille_by_canal_nov2018", + "PA_bouquet_famille_max", + "PA_bouquet_divertissement_adsl", + "PI_WHITELIST" + ], + "hasRightIAccess": true, + "hasRightMAccess": false, + "logos": [ + { + "definitionType": "mobileAppli", + "listLogos": [ + { + "size": "183x183", + "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_mezzolivehd%2F20230321_182925%2FmobileAppli%2Flogo_183x183.png" + } + ] + }, + { + "definitionType": "mobileAppliDark", + "listLogos": [ + { + "size": "183x183", + "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_mezzolivehd%2F20230321_182925%2FmobileAppliDark%2Flogo_183x183.png" + } + ] + }, + { + "definitionType": "webTVLogo", + "listLogos": [ + { + "size": "180x96", + "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_mezzolivehd%2F20230321_182925%2FwebTVLogo%2Flogo_180x96.png" + } + ] + }, + { + "definitionType": "webTVSquare", + "listLogos": [ + { + "size": "150x150", + "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_mezzolivehd%2F20230321_182925%2FwebTVSquare%2Flogo_150x150.png" + } + ] + } + ], + "mobileData": { + "wifiForbidden": false, + "wifiSecuredOnly": false, + "everywhereChannel": true, + "nomadismAllowed": true, + "drmLevels": [ + { + "definition": "SD", + "securedTerminal": [ + "DRM-HW", + "DRM-SW" + ], + "unsecuredTerminal": [ + "DRM-HW", + "DRM-SW" + ] + }, + { + "definition": "HD", + "securedTerminal": [ + "ND" + ], + "unsecuredTerminal": [ + "ND" + ] + } + ] + }, + "webdeviceData": { + "nomadismAllowed": true + }, + "technicalChannels": { + "live": [ + { + "techChannelId": "400158", + "type": "CLOUDTV", + "liveTargetURLRelativePath": "livetv_mezzo_live_hd_ctv", + "usi": 400158, + "isDRMized": true, + "csa5Disabled": true + } + ], + "npvr": [ + { + "externalId": "livetv_mezzo_live_hd_ctv", + "techChannelId": "400158", + "type": "CLOUDTV", + "usi": 400158, + "isDRMized": true, + "antiAdskipping": "DEACTIVATED", + "csa5Disabled": true + } + ], + "startover": [] + } + }, + { + "name": "STINGRAY CLASSICA", + "editoChannelId": "livetv_classica", + "lcn": 169, + "idEPG": 1353, + "epgAvailable": true, + "epgTextSubstitution": "", + "displayOrder": 169, + "csaCode": 1, + "slogan": "De la musique à regarder", + "catchupChannelId": "catchuptv_classica", + "newChannel": false, + "roamingBlocked": true, + "allowedDeviceCategories": [ + "M_ANDROID", + "M_IOS", + "M_TABLET_ANDROID", + "M_TABLET_IOS", + "W_AIRPLAY", + "W_CHROMECAST", + "W_LACLETV2", + "W_SMARTTV", + "W_PC", + "S_STB" + ], + "packages": [ + "PA_bouquet_musique_classique", + "PA_pack_intense", + "PI_WHITELIST" + ], + "hasRightIAccess": true, + "hasRightMAccess": false, + "logos": [ + { + "definitionType": "mobileAppli", + "listLogos": [ + { + "size": "183x183", + "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_classica%2F20180419_150729%2FmobileAppli%2Flogo_183x183.png" + } + ] + }, + { + "definitionType": "mobileAppliDark", + "listLogos": [ + { + "size": "183x183", + "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_classica%2F20180419_150729%2FmobileAppliDark%2Flogo_183x183.png" + } + ] + }, + { + "definitionType": "webTVLogo", + "listLogos": [ + { + "size": "180x96", + "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_classica%2F20180419_150729%2FwebTVLogo%2Flogo_180x96.png" + } + ] + }, + { + "definitionType": "webTVSquare", + "listLogos": [ + { + "size": "150x150", + "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_classica%2F20180419_150729%2FwebTVSquare%2Flogo_150x150.png" + } + ] + } + ], + "mobileData": { + "wifiForbidden": false, + "wifiSecuredOnly": false, + "everywhereChannel": true, + "nomadismAllowed": true, + "drmLevels": [ + { + "definition": "SD", + "securedTerminal": [ + "DRM-HW", + "DRM-SW" + ], + "unsecuredTerminal": [ + "DRM-HW", + "DRM-SW" + ] + }, + { + "definition": "HD", + "securedTerminal": [ + "ND" + ], + "unsecuredTerminal": [ + "ND" + ] + } + ] + }, + "webdeviceData": { + "nomadismAllowed": true + }, + "technicalChannels": { + "live": [ + { + "techChannelId": "400137", + "type": "CLOUDTV", + "liveTargetURLRelativePath": "livetv_classica_ctv", + "usi": 400137, + "isDRMized": true, + "csa5Disabled": true + } + ], + "npvr": [ + { + "externalId": "livetv_classica_ctv", + "techChannelId": "400137", + "type": "CLOUDTV", + "usi": 400137, + "isDRMized": true, + "antiAdskipping": "DEACTIVATED", + "csa5Disabled": true + } + ], + "startover": [] + } + }, + { + "name": "EQUIDIA", + "editoChannelId": "livetv_equidia", + "lcn": 173, + "idEPG": 64, + "epgAvailable": true, + "epgTextSubstitution": "", + "displayOrder": 173, + "csaCode": 1, + "slogan": "Vous êtes dans la course", + "catchupChannelId": "catchuptv_equidia", + "newChannel": false, + "roamingBlocked": true, + "allowedDeviceCategories": [ + "M_ANDROID", + "M_IOS", + "M_TABLET_ANDROID", + "M_TABLET_IOS", + "W_AIRPLAY", + "W_CHROMECAST", + "W_LACLETV2", + "W_PC", + "W_SMARTTV", + "S_STB" + ], + "packages": [ + "PA_BQ_PASSACCESTVPREMIUM_M", + "PA_BQ_BASIC_M", + "PA_BQ_RE_TVMAX_M", + "PA_BQ_ACCESTVPREMIUM_M", + "PA_BQ_PAYG_M", + "PA_BQ_TVDIGITALE_I", + "PA_BQ_SPORT_M", + "PA_BQ_BASIC_I", + "PA_BQ_BASICQUAD_I", + "PA_BQ_ACCESTV_M", + "PI_WHITELIST" + ], + "hasRightIAccess": true, + "hasRightMAccess": true, + "logos": [ + { + "definitionType": "mobileAppli", + "listLogos": [ + { + "size": "183x183", + "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_equidia%2F20220128_093134%2FmobileAppli%2Flogo_183x183.png" + } + ] + }, + { + "definitionType": "mobileAppliDark", + "listLogos": [ + { + "size": "183x183", + "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_equidia%2F20220128_093134%2FmobileAppliDark%2Flogo_183x183.png" + } + ] + }, + { + "definitionType": "webTVLogo", + "listLogos": [ + { + "size": "180x96", + "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_equidia%2F20220128_093134%2FwebTVLogo%2Flogo_180x96.png" + } + ] + }, + { + "definitionType": "webTVSquare", + "listLogos": [ + { + "size": "150x150", + "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_equidia%2F20220128_093134%2FwebTVSquare%2Flogo_150x150.png" + } + ] + } + ], + "mobileData": { + "wifiForbidden": false, + "wifiSecuredOnly": false, + "everywhereChannel": true, + "nomadismAllowed": true, + "drmLevels": [ + { + "definition": "SD", + "securedTerminal": [ + "DRM-HW", + "DRM-SW" + ], + "unsecuredTerminal": [ + "DRM-HW", + "DRM-SW" + ] + }, + { + "definition": "HD", + "securedTerminal": [ + "DRM-HW", + "DRM-SW" + ], + "unsecuredTerminal": [ + "ND" + ] + } + ] + }, + "webdeviceData": { + "nomadismAllowed": true + }, + "technicalChannels": { + "live": [ + { + "techChannelId": "400143", + "type": "CLOUDTV", + "liveTargetURLRelativePath": "livetv_equidia_live_ctv", + "usi": 400143, + "isDRMized": true, + "csa5Disabled": true + } + ], + "npvr": [ + { + "externalId": "livetv_equidia_live_ctv", + "techChannelId": "400143", + "type": "CLOUDTV", + "usi": 400143, + "isDRMized": true, + "antiAdskipping": "DEACTIVATED", + "csa5Disabled": true + } + ], + "startover": [ + { + "externalId": "livetv_equidia_live_ctv", + "techChannelId": "400143", + "type": "CLOUDTV", + "usi": 400143, + "isDRMized": true, + "antiAdskipping": "DEACTIVATED", + "csa5Disabled": true + } + ] + } + }, + { + "name": "SPORT EN FRANCE", + "editoChannelId": "livetv_sportenfrance", + "lcn": 174, + "idEPG": 2837, + "epgAvailable": true, + "epgTextSubstitution": "", + "displayOrder": 174, + "csaCode": 1, + "slogan": "La chaîne du mouvement sportif", + "catchupChannelId": "", + "newChannel": true, + "roamingBlocked": true, + "allowedDeviceCategories": [ + "M_ANDROID", + "M_IOS", + "M_TABLET_ANDROID", + "M_TABLET_IOS", + "W_AIRPLAY", + "W_CHROMECAST", + "W_LACLETV2", + "W_SMARTTV", + "W_PC", + "S_STB" + ], + "packages": [ + "PA_BQ_BASIC_M", + "PA_BQ_PAYG_M", + "PA_BQ_TVDIGITALE_I", + "PA_BQ_BASIC_I", + "PA_BQ_BASICQUAD_I", + "PI_WHITELIST" + ], + "hasRightIAccess": true, + "hasRightMAccess": true, + "logos": [ + { + "definitionType": "mobileAppli", + "listLogos": [ + { + "size": "183x183", + "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_sportenfrance%2F20190513_093153%2FmobileAppli%2Flogo_183x183.png" + } + ] + }, + { + "definitionType": "mobileAppliDark", + "listLogos": [ + { + "size": "183x183", + "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_sportenfrance%2F20190513_093153%2FmobileAppliDark%2Flogo_183x183.png" + } + ] + }, + { + "definitionType": "webTVLogo", + "listLogos": [ + { + "size": "180x96", + "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_sportenfrance%2F20190513_093153%2FwebTVLogo%2Flogo_180x96.png" + } + ] + }, + { + "definitionType": "webTVSquare", + "listLogos": [ + { + "size": "150x150", + "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_sportenfrance%2F20190513_093153%2FwebTVSquare%2Flogo_150x150.png" + } + ] + } + ], + "mobileData": { + "wifiForbidden": false, + "wifiSecuredOnly": false, + "everywhereChannel": true, + "nomadismAllowed": true, + "drmLevels": [ + { + "definition": "SD", + "securedTerminal": [ + "DRM-HW", + "DRM-SW" + ], + "unsecuredTerminal": [ + "DRM-HW", + "DRM-SW" + ] + }, + { + "definition": "HD", + "securedTerminal": [ + "DRM-HW", + "DRM-SW" + ], + "unsecuredTerminal": [ + "ND" + ] + } + ] + }, + "webdeviceData": { + "nomadismAllowed": true + }, + "technicalChannels": { + "live": [ + { + "techChannelId": "400168", + "type": "CLOUDTV", + "liveTargetURLRelativePath": "livetv_sport_en_france_ctv", + "usi": 400168, + "isDRMized": true, + "csa5Disabled": true + } + ], + "npvr": [ + { + "externalId": "livetv_sport_en_france_ctv", + "techChannelId": "400168", + "type": "CLOUDTV", + "usi": 400168, + "isDRMized": true, + "antiAdskipping": "DEACTIVATED", + "csa5Disabled": true + } + ], + "startover": [] + } + }, + { + "name": "BEIN SPORTS MAX 4", + "editoChannelId": "livetv_beinsportsmax4", + "lcn": 179, + "idEPG": 1336, + "epgAvailable": true, + "epgTextSubstitution": "", + "displayOrder": 179, + "csaCode": 1, + "slogan": "Le plus grand des spectacles", + "catchupChannelId": "catchuptv_BEINSPORTS", + "newChannel": false, + "roamingBlocked": true, + "allowedDeviceCategories": [ + "M_ANDROID", + "M_IOS", + "M_TABLET_ANDROID", + "M_TABLET_IOS", + "W_AIRPLAY", + "W_CHROMECAST", + "W_LACLETV2", + "W_SMARTTV", + "W_PC", + "S_STB" + ], + "packages": [ + "PA_Pack_Sport", + "PA_bouquet_bein_disneyplus", + "PA_pack_intense", + "PA_bouquet_divertissement_fibre", + "PA_beIN_SPORT", + "PA_bouquet_sport", + "PA_bouquet_divertissement_adsl", + "PI_WHITELIST" + ], + "hasRightIAccess": true, + "hasRightMAccess": false, + "logos": [ + { + "definitionType": "mobileAppli", + "listLogos": [ + { + "size": "183x183", + "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_beinsportsmax4%2F20170109_093315%2FmobileAppli%2Flogo_183x183.png" + } + ] + }, + { + "definitionType": "mobileAppliDark", + "listLogos": [ + { + "size": "183x183", + "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_beinsportsmax4%2F20170109_093315%2FmobileAppliDark%2Flogo_183x183.png" + } + ] + }, + { + "definitionType": "webTVLogo", + "listLogos": [ + { + "size": "180x96", + "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_beinsportsmax4%2F20170109_093315%2FwebTVLogo%2Flogo_180x96.png" + } + ] + }, + { + "definitionType": "webTVSquare", + "listLogos": [ + { + "size": "150x150", + "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_beinsportsmax4%2F20170109_093315%2FwebTVSquare%2Flogo_150x150.png" + } + ] + } + ], + "mobileData": { + "wifiForbidden": false, + "wifiSecuredOnly": false, + "everywhereChannel": true, + "nomadismAllowed": true, + "drmLevels": [ + { + "definition": "SD", + "securedTerminal": [ + "DRM-HW", + "DRM-SW" + ], + "unsecuredTerminal": [ + "DRM-HW", + "DRM-SW" + ] + }, + { + "definition": "HD", + "securedTerminal": [ + "ND" + ], + "unsecuredTerminal": [ + "ND" + ] + } + ] + }, + "webdeviceData": { + "nomadismAllowed": true + }, + "technicalChannels": { + "live": [ + { + "techChannelId": "400087", + "type": "CLOUDTV", + "liveTargetURLRelativePath": "livetv_beinsports_max4_ctv", + "usi": 400087, + "isDRMized": true, + "csa5Disabled": true + } + ], + "npvr": [ + { + "externalId": "livetv_beinsports_max4_ctv", + "techChannelId": "400087", + "type": "CLOUDTV", + "usi": 400087, + "isDRMized": true, + "antiAdskipping": "DEACTIVATED", + "csa5Disabled": true + } + ], + "startover": [] + } + }, + { + "name": "BEIN SPORTS MAX 5", + "editoChannelId": "livetv_beinsportsmax5", + "lcn": 180, + "idEPG": 1337, + "epgAvailable": true, + "epgTextSubstitution": "", + "displayOrder": 180, + "csaCode": 1, + "slogan": "Le plus grand des spectacles", + "catchupChannelId": "catchuptv_BEINSPORTS", + "newChannel": false, + "roamingBlocked": true, + "allowedDeviceCategories": [ + "M_ANDROID", + "M_IOS", + "M_TABLET_ANDROID", + "M_TABLET_IOS", + "W_AIRPLAY", + "W_CHROMECAST", + "W_LACLETV2", + "W_SMARTTV", + "W_PC", + "S_STB" + ], + "packages": [ + "PA_Pack_Sport", + "PA_bouquet_bein_disneyplus", + "PA_pack_intense", + "PA_bouquet_divertissement_fibre", + "PA_beIN_SPORT", + "PA_bouquet_sport", + "PA_bouquet_divertissement_adsl", + "PI_WHITELIST" + ], + "hasRightIAccess": true, + "hasRightMAccess": false, + "logos": [ + { + "definitionType": "mobileAppli", + "listLogos": [ + { + "size": "183x183", + "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_beinsportsmax5%2F20170109_093315%2FmobileAppli%2Flogo_183x183.png" + } + ] + }, + { + "definitionType": "mobileAppliDark", + "listLogos": [ + { + "size": "183x183", + "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_beinsportsmax5%2F20170109_093315%2FmobileAppliDark%2Flogo_183x183.png" + } + ] + }, + { + "definitionType": "webTVLogo", + "listLogos": [ + { + "size": "180x96", + "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_beinsportsmax5%2F20170109_093315%2FwebTVLogo%2Flogo_180x96.png" + } + ] + }, + { + "definitionType": "webTVSquare", + "listLogos": [ + { + "size": "150x150", + "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_beinsportsmax5%2F20170109_093315%2FwebTVSquare%2Flogo_150x150.png" + } + ] + } + ], + "mobileData": { + "wifiForbidden": false, + "wifiSecuredOnly": false, + "everywhereChannel": true, + "nomadismAllowed": true, + "drmLevels": [ + { + "definition": "SD", + "securedTerminal": [ + "DRM-HW", + "DRM-SW" + ], + "unsecuredTerminal": [ + "DRM-HW", + "DRM-SW" + ] + }, + { + "definition": "HD", + "securedTerminal": [ + "ND" + ], + "unsecuredTerminal": [ + "ND" + ] + } + ] + }, + "webdeviceData": { + "nomadismAllowed": true + }, + "technicalChannels": { + "live": [ + { + "techChannelId": "400088", + "type": "CLOUDTV", + "liveTargetURLRelativePath": "livetv_beinsports_max5_ctv", + "usi": 400088, + "isDRMized": true, + "csa5Disabled": true + } + ], + "npvr": [ + { + "externalId": "livetv_beinsports_max5_ctv", + "techChannelId": "400088", + "type": "CLOUDTV", + "usi": 400088, + "isDRMized": true, + "antiAdskipping": "DEACTIVATED", + "csa5Disabled": true + } + ], + "startover": [] + } + }, + { + "name": "BEIN SPORTS MAX 6", + "editoChannelId": "livetv_beinsportsmax6", + "lcn": 181, + "idEPG": 1338, + "epgAvailable": true, + "epgTextSubstitution": "", + "displayOrder": 181, + "csaCode": 1, + "slogan": "Le plus grand des spectacles", + "catchupChannelId": "catchuptv_BEINSPORTS", + "newChannel": false, + "roamingBlocked": true, + "allowedDeviceCategories": [ + "M_ANDROID", + "M_IOS", + "M_TABLET_ANDROID", + "M_TABLET_IOS", + "W_AIRPLAY", + "W_CHROMECAST", + "W_LACLETV2", + "W_SMARTTV", + "W_PC", + "S_STB" + ], + "packages": [ + "PA_Pack_Sport", + "PA_bouquet_bein_disneyplus", + "PA_pack_intense", + "PA_bouquet_divertissement_fibre", + "PA_beIN_SPORT", + "PA_bouquet_sport", + "PA_bouquet_divertissement_adsl", + "PI_WHITELIST" + ], + "hasRightIAccess": true, + "hasRightMAccess": false, + "logos": [ + { + "definitionType": "mobileAppli", + "listLogos": [ + { + "size": "183x183", + "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_beinsportsmax6%2F20170109_093315%2FmobileAppli%2Flogo_183x183.png" + } + ] + }, + { + "definitionType": "mobileAppliDark", + "listLogos": [ + { + "size": "183x183", + "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_beinsportsmax6%2F20170109_093315%2FmobileAppliDark%2Flogo_183x183.png" + } + ] + }, + { + "definitionType": "webTVLogo", + "listLogos": [ + { + "size": "180x96", + "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_beinsportsmax6%2F20170109_093315%2FwebTVLogo%2Flogo_180x96.png" + } + ] + }, + { + "definitionType": "webTVSquare", + "listLogos": [ + { + "size": "150x150", + "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_beinsportsmax6%2F20170109_093315%2FwebTVSquare%2Flogo_150x150.png" + } + ] + } + ], + "mobileData": { + "wifiForbidden": false, + "wifiSecuredOnly": false, + "everywhereChannel": true, + "nomadismAllowed": true, + "drmLevels": [ + { + "definition": "SD", + "securedTerminal": [ + "DRM-HW", + "DRM-SW" + ], + "unsecuredTerminal": [ + "DRM-HW", + "DRM-SW" + ] + }, + { + "definition": "HD", + "securedTerminal": [ + "ND" + ], + "unsecuredTerminal": [ + "ND" + ] + } + ] + }, + "webdeviceData": { + "nomadismAllowed": true + }, + "technicalChannels": { + "live": [ + { + "techChannelId": "400089", + "type": "CLOUDTV", + "liveTargetURLRelativePath": "livetv_beinsports_max6_ctv", + "usi": 400089, + "isDRMized": true, + "csa5Disabled": true + } + ], + "npvr": [ + { + "externalId": "livetv_beinsports_max6_ctv", + "techChannelId": "400089", + "type": "CLOUDTV", + "usi": 400089, + "isDRMized": true, + "antiAdskipping": "DEACTIVATED", + "csa5Disabled": true + } + ], + "startover": [] + } + }, + { + "name": "BEIN SPORTS MAX 7", + "editoChannelId": "livetv_beinsportsmax7", + "lcn": 182, + "idEPG": 1339, + "epgAvailable": true, + "epgTextSubstitution": "", + "displayOrder": 182, + "csaCode": 1, + "slogan": "Le plus grand des spectacles", + "catchupChannelId": "catchuptv_BEINSPORTS", + "newChannel": false, + "roamingBlocked": true, + "allowedDeviceCategories": [ + "M_ANDROID", + "M_IOS", + "M_TABLET_ANDROID", + "M_TABLET_IOS", + "W_AIRPLAY", + "W_CHROMECAST", + "W_LACLETV2", + "W_SMARTTV", + "W_PC", + "S_STB" + ], + "packages": [ + "PA_Pack_Sport", + "PA_bouquet_bein_disneyplus", + "PA_pack_intense", + "PA_bouquet_divertissement_fibre", + "PA_beIN_SPORT", + "PA_bouquet_sport", + "PA_bouquet_divertissement_adsl", + "PI_WHITELIST" + ], + "hasRightIAccess": true, + "hasRightMAccess": false, + "logos": [ + { + "definitionType": "mobileAppli", + "listLogos": [ + { + "size": "183x183", + "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_beinsportsmax7%2F20170109_093315%2FmobileAppli%2Flogo_183x183.png" + } + ] + }, + { + "definitionType": "mobileAppliDark", + "listLogos": [ + { + "size": "183x183", + "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_beinsportsmax7%2F20170109_093315%2FmobileAppliDark%2Flogo_183x183.png" + } + ] + }, + { + "definitionType": "webTVLogo", + "listLogos": [ + { + "size": "180x96", + "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_beinsportsmax7%2F20170109_093315%2FwebTVLogo%2Flogo_180x96.png" + } + ] + }, + { + "definitionType": "webTVSquare", + "listLogos": [ + { + "size": "150x150", + "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_beinsportsmax7%2F20170109_093315%2FwebTVSquare%2Flogo_150x150.png" + } + ] + } + ], + "mobileData": { + "wifiForbidden": false, + "wifiSecuredOnly": false, + "everywhereChannel": true, + "nomadismAllowed": true, + "drmLevels": [ + { + "definition": "SD", + "securedTerminal": [ + "DRM-HW", + "DRM-SW" + ], + "unsecuredTerminal": [ + "DRM-HW", + "DRM-SW" + ] + }, + { + "definition": "HD", + "securedTerminal": [ + "ND" + ], + "unsecuredTerminal": [ + "ND" + ] + } + ] + }, + "webdeviceData": { + "nomadismAllowed": true + }, + "technicalChannels": { + "live": [ + { + "techChannelId": "400090", + "type": "CLOUDTV", + "liveTargetURLRelativePath": "livetv_beinsports_max7_ctv", + "usi": 400090, + "isDRMized": true, + "csa5Disabled": true + } + ], + "npvr": [ + { + "externalId": "livetv_beinsports_max7_ctv", + "techChannelId": "400090", + "type": "CLOUDTV", + "usi": 400090, + "isDRMized": true, + "antiAdskipping": "DEACTIVATED", + "csa5Disabled": true + } + ], + "startover": [] + } + }, + { + "name": "BEIN SPORTS MAX 8", + "editoChannelId": "livetv_beinsportsmax8", + "lcn": 183, + "idEPG": 1340, + "epgAvailable": true, + "epgTextSubstitution": "", + "displayOrder": 183, + "csaCode": 1, + "slogan": "Le plus grand des spectacles", + "catchupChannelId": "catchuptv_BEINSPORTS", + "newChannel": false, + "roamingBlocked": true, + "allowedDeviceCategories": [ + "M_ANDROID", + "M_IOS", + "M_TABLET_ANDROID", + "M_TABLET_IOS", + "W_AIRPLAY", + "W_CHROMECAST", + "W_LACLETV2", + "W_SMARTTV", + "W_PC", + "S_STB" + ], + "packages": [ + "PA_Pack_Sport", + "PA_bouquet_bein_disneyplus", + "PA_pack_intense", + "PA_bouquet_divertissement_fibre", + "PA_beIN_SPORT", + "PA_bouquet_sport", + "PA_bouquet_divertissement_adsl", + "PI_WHITELIST" + ], + "hasRightIAccess": true, + "hasRightMAccess": false, + "logos": [ + { + "definitionType": "mobileAppli", + "listLogos": [ + { + "size": "183x183", + "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_beinsportsmax8%2F20170109_093315%2FmobileAppli%2Flogo_183x183.png" + } + ] + }, + { + "definitionType": "mobileAppliDark", + "listLogos": [ + { + "size": "183x183", + "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_beinsportsmax8%2F20170109_093315%2FmobileAppliDark%2Flogo_183x183.png" + } + ] + }, + { + "definitionType": "webTVLogo", + "listLogos": [ + { + "size": "180x96", + "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_beinsportsmax8%2F20170109_093315%2FwebTVLogo%2Flogo_180x96.png" + } + ] + }, + { + "definitionType": "webTVSquare", + "listLogos": [ + { + "size": "150x150", + "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_beinsportsmax8%2F20170109_093315%2FwebTVSquare%2Flogo_150x150.png" + } + ] + } + ], + "mobileData": { + "wifiForbidden": false, + "wifiSecuredOnly": false, + "everywhereChannel": true, + "nomadismAllowed": true, + "drmLevels": [ + { + "definition": "SD", + "securedTerminal": [ + "DRM-HW", + "DRM-SW" + ], + "unsecuredTerminal": [ + "DRM-HW", + "DRM-SW" + ] + }, + { + "definition": "HD", + "securedTerminal": [ + "ND" + ], + "unsecuredTerminal": [ + "ND" + ] + } + ] + }, + "webdeviceData": { + "nomadismAllowed": true + }, + "technicalChannels": { + "live": [ + { + "techChannelId": "400091", + "type": "CLOUDTV", + "liveTargetURLRelativePath": "livetv_beinsports_max8_ctv", + "usi": 400091, + "isDRMized": true, + "csa5Disabled": true + } + ], + "npvr": [ + { + "externalId": "livetv_beinsports_max8_ctv", + "techChannelId": "400091", + "type": "CLOUDTV", + "usi": 400091, + "isDRMized": true, + "antiAdskipping": "DEACTIVATED", + "csa5Disabled": true + } + ], + "startover": [] + } + }, + { + "name": "BEIN SPORTS MAX 9", + "editoChannelId": "livetv_beinsportsmax9", + "lcn": 184, + "idEPG": 1341, + "epgAvailable": true, + "epgTextSubstitution": "", + "displayOrder": 184, + "csaCode": 1, + "slogan": "Le plus grand des spectacles", + "catchupChannelId": "catchuptv_BEINSPORTS", + "newChannel": false, + "roamingBlocked": true, + "allowedDeviceCategories": [ + "M_ANDROID", + "M_IOS", + "M_TABLET_ANDROID", + "M_TABLET_IOS", + "W_AIRPLAY", + "W_CHROMECAST", + "W_LACLETV2", + "W_SMARTTV", + "W_PC", + "S_STB" + ], + "packages": [ + "PA_Pack_Sport", + "PA_bouquet_bein_disneyplus", + "PA_pack_intense", + "PA_bouquet_divertissement_fibre", + "PA_beIN_SPORT", + "PA_bouquet_sport", + "PA_bouquet_divertissement_adsl", + "PI_WHITELIST" + ], + "hasRightIAccess": true, + "hasRightMAccess": false, + "logos": [ + { + "definitionType": "mobileAppli", + "listLogos": [ + { + "size": "183x183", + "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_beinsportsmax9%2F20170109_093315%2FmobileAppli%2Flogo_183x183.png" + } + ] + }, + { + "definitionType": "mobileAppliDark", + "listLogos": [ + { + "size": "183x183", + "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_beinsportsmax9%2F20170109_093315%2FmobileAppliDark%2Flogo_183x183.png" + } + ] + }, + { + "definitionType": "webTVLogo", + "listLogos": [ + { + "size": "180x96", + "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_beinsportsmax9%2F20170109_093315%2FwebTVLogo%2Flogo_180x96.png" + } + ] + }, + { + "definitionType": "webTVSquare", + "listLogos": [ + { + "size": "150x150", + "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_beinsportsmax9%2F20170109_093315%2FwebTVSquare%2Flogo_150x150.png" + } + ] + } + ], + "mobileData": { + "wifiForbidden": false, + "wifiSecuredOnly": false, + "everywhereChannel": true, + "nomadismAllowed": true, + "drmLevels": [ + { + "definition": "SD", + "securedTerminal": [ + "DRM-HW", + "DRM-SW" + ], + "unsecuredTerminal": [ + "DRM-HW", + "DRM-SW" + ] + }, + { + "definition": "HD", + "securedTerminal": [ + "ND" + ], + "unsecuredTerminal": [ + "ND" + ] + } + ] + }, + "webdeviceData": { + "nomadismAllowed": true + }, + "technicalChannels": { + "live": [ + { + "techChannelId": "400092", + "type": "CLOUDTV", + "liveTargetURLRelativePath": "livetv_beinsports_max9_ctv", + "usi": 400092, + "isDRMized": true, + "csa5Disabled": true + } + ], + "npvr": [ + { + "externalId": "livetv_beinsports_max9_ctv", + "techChannelId": "400092", + "type": "CLOUDTV", + "usi": 400092, + "isDRMized": true, + "antiAdskipping": "DEACTIVATED", + "csa5Disabled": true + } + ], + "startover": [] + } + }, + { + "name": "BEIN SPORTS MAX 10", + "editoChannelId": "livetv_beinsportsmax10", + "lcn": 185, + "idEPG": 1342, + "epgAvailable": true, + "epgTextSubstitution": "", + "displayOrder": 185, + "csaCode": 1, + "slogan": "Le plus grand des spectacles", + "catchupChannelId": "catchuptv_BEINSPORTS", + "newChannel": false, + "roamingBlocked": true, + "allowedDeviceCategories": [ + "M_ANDROID", + "M_IOS", + "M_TABLET_ANDROID", + "M_TABLET_IOS", + "W_AIRPLAY", + "W_CHROMECAST", + "W_LACLETV2", + "W_SMARTTV", + "W_PC", + "S_STB" + ], + "packages": [ + "PA_Pack_Sport", + "PA_bouquet_bein_disneyplus", + "PA_pack_intense", + "PA_bouquet_divertissement_fibre", + "PA_beIN_SPORT", + "PA_bouquet_sport", + "PA_bouquet_divertissement_adsl", + "PI_WHITELIST" + ], + "hasRightIAccess": true, + "hasRightMAccess": false, + "logos": [ + { + "definitionType": "mobileAppli", + "listLogos": [ + { + "size": "183x183", + "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_beinsportsmax10%2F20170109_093315%2FmobileAppli%2Flogo_183x183.png" + } + ] + }, + { + "definitionType": "mobileAppliDark", + "listLogos": [ + { + "size": "183x183", + "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_beinsportsmax10%2F20170109_093315%2FmobileAppliDark%2Flogo_183x183.png" + } + ] + }, + { + "definitionType": "webTVLogo", + "listLogos": [ + { + "size": "180x96", + "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_beinsportsmax10%2F20170109_093315%2FwebTVLogo%2Flogo_180x96.png" + } + ] + }, + { + "definitionType": "webTVSquare", + "listLogos": [ + { + "size": "150x150", + "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_beinsportsmax10%2F20170109_093315%2FwebTVSquare%2Flogo_150x150.png" + } + ] + } + ], + "mobileData": { + "wifiForbidden": false, + "wifiSecuredOnly": false, + "everywhereChannel": true, + "nomadismAllowed": true, + "drmLevels": [ + { + "definition": "SD", + "securedTerminal": [ + "DRM-HW", + "DRM-SW" + ], + "unsecuredTerminal": [ + "DRM-HW", + "DRM-SW" + ] + }, + { + "definition": "HD", + "securedTerminal": [ + "ND" + ], + "unsecuredTerminal": [ + "ND" + ] + } + ] + }, + "webdeviceData": { + "nomadismAllowed": true + }, + "technicalChannels": { + "live": [ + { + "techChannelId": "400135", + "type": "CLOUDTV", + "liveTargetURLRelativePath": "livetv_beinsports_max_10_ctv", + "usi": 400135, + "isDRMized": true, + "csa5Disabled": true + } + ], + "npvr": [ + { + "externalId": "livetv_beinsports_max_10_ctv", + "techChannelId": "400135", + "type": "CLOUDTV", + "usi": 400135, + "isDRMized": true, + "antiAdskipping": "DEACTIVATED", + "csa5Disabled": true + } + ], + "startover": [] + } + }, + { + "name": "AUTOMOTO, la chaine", + "editoChannelId": "livetv_AB_motors", + "lcn": 196, + "idEPG": 15, + "epgAvailable": true, + "epgTextSubstitution": "", + "displayOrder": 196, + "csaCode": 1, + "slogan": "La chaîne de tous les passionnés", + "catchupChannelId": "catchuptv_automoto", + "newChannel": false, + "roamingBlocked": true, + "allowedDeviceCategories": [ + "M_ANDROID", + "M_IOS", + "M_TABLET_ANDROID", + "M_TABLET_IOS", + "W_AIRPLAY", + "W_CHROMECAST", + "W_LACLETV2", + "W_SMARTTV", + "W_PC", + "S_STB" + ], + "packages": [ + "PA_Pack_Sport", + "PA_bouquet_famille_disneyplus", + "PA_pack_intense", + "PA_bouquet_divertissement_fibre", + "PA_bouquet_sport", + "PA_bouquet_famille_max", + "PA_bouquet_divertissement_adsl", + "PI_WHITELIST" + ], + "hasRightIAccess": true, + "hasRightMAccess": false, + "logos": [ + { + "definitionType": "mobileAppli", + "listLogos": [ + { + "size": "183x183", + "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_AB_motors%2F20181115_095836%2FmobileAppli%2Flogo_183x183.png" + } + ] + }, + { + "definitionType": "mobileAppliDark", + "listLogos": [ + { + "size": "183x183", + "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_AB_motors%2F20181115_095836%2FmobileAppliDark%2Flogo_183x183.png" + } + ] + }, + { + "definitionType": "webTVLogo", + "listLogos": [ + { + "size": "180x96", + "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_AB_motors%2F20181115_095836%2FwebTVLogo%2Flogo_180x96.png" + } + ] + }, + { + "definitionType": "webTVSquare", + "listLogos": [ + { + "size": "150x150", + "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_AB_motors%2F20181115_095836%2FwebTVSquare%2Flogo_150x150.png" + } + ] + } + ], + "mobileData": { + "wifiForbidden": false, + "wifiSecuredOnly": false, + "everywhereChannel": true, + "nomadismAllowed": true, + "drmLevels": [ + { + "definition": "SD", + "securedTerminal": [ + "DRM-HW", + "DRM-SW" + ], + "unsecuredTerminal": [ + "DRM-HW", + "DRM-SW" + ] + }, + { + "definition": "HD", + "securedTerminal": [ + "ND" + ], + "unsecuredTerminal": [ + "ND" + ] + } + ] + }, + "webdeviceData": { + "nomadismAllowed": true + }, + "technicalChannels": { + "live": [ + { + "techChannelId": "400134", + "type": "CLOUDTV", + "liveTargetURLRelativePath": "livetv_abmoteurs_ctv", + "usi": 400134, + "isDRMized": true, + "csa5Disabled": true + } + ], + "npvr": [ + { + "externalId": "livetv_abmoteurs_ctv", + "techChannelId": "400134", + "type": "CLOUDTV", + "usi": 400134, + "isDRMized": true, + "antiAdskipping": "DEACTIVATED", + "csa5Disabled": true + } + ], + "startover": [] + } + }, + { + "name": "GOLF CHANNEL", + "editoChannelId": "livetv_golfchannel", + "lcn": 197, + "idEPG": 1166, + "epgAvailable": true, + "epgTextSubstitution": "", + "displayOrder": 197, + "csaCode": 1, + "slogan": "La chaîne 100% Golf", + "catchupChannelId": "", + "newChannel": false, + "roamingBlocked": true, + "allowedDeviceCategories": [ + "M_ANDROID", + "M_IOS", + "M_TABLET_ANDROID", + "M_TABLET_IOS", + "W_AIRPLAY", + "W_CHROMECAST", + "W_LACLETV2", + "W_SMARTTV", + "W_PC", + "S_STB" + ], + "packages": [ + "PA_BQ_PASSACCESTVPREMIUM_M", + "PA_pack_Divertissement", + "PA_Pack_Sport", + "PA_bouquet_famille_disneyplus", + "PA_BQ_ACCESTVPREMIUM_M", + "PA_pack_intense", + "PA_bouquet_divertissement_fibre", + "PA_BQ_SPORT_M", + "PA_bouquet_sport", + "PA_bouquet_famille_max", + "PA_bouquet_divertissement_adsl", + "PI_WHITELIST" + ], + "hasRightIAccess": true, + "hasRightMAccess": true, + "logos": [ + { + "definitionType": "mobileAppli", + "listLogos": [ + { + "size": "183x183", + "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_golfchannel%2F20151026_092415%2FmobileAppli%2Flogo_183x183.png" + } + ] + }, + { + "definitionType": "mobileAppliDark", + "listLogos": [ + { + "size": "183x183", + "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_golfchannel%2F20151026_092415%2FmobileAppliDark%2Flogo_183x183.png" + } + ] + }, + { + "definitionType": "webTVLogo", + "listLogos": [ + { + "size": "180x96", + "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_golfchannel%2F20151026_092415%2FwebTVLogo%2Flogo_180x96.png" + } + ] + }, + { + "definitionType": "webTVSquare", + "listLogos": [ + { + "size": "150x150", + "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_golfchannel%2F20151026_092415%2FwebTVSquare%2Flogo_150x150.png" + } + ] + } + ], + "mobileData": { + "wifiForbidden": false, + "wifiSecuredOnly": false, + "everywhereChannel": true, + "nomadismAllowed": true, + "drmLevels": [ + { + "definition": "SD", + "securedTerminal": [ + "DRM-HW", + "DRM-SW" + ], + "unsecuredTerminal": [ + "DRM-HW", + "DRM-SW" + ] + }, + { + "definition": "HD", + "securedTerminal": [ + "ND" + ], + "unsecuredTerminal": [ + "ND" + ] + } + ] + }, + "webdeviceData": { + "nomadismAllowed": true + }, + "technicalChannels": { + "live": [ + { + "techChannelId": "400147", + "type": "CLOUDTV", + "liveTargetURLRelativePath": "livetv_golf_channel_ctv", + "usi": 400147, + "isDRMized": true, + "csa5Disabled": true + } + ], + "npvr": [ + { + "externalId": "livetv_golf_channel_ctv", + "techChannelId": "400147", + "type": "CLOUDTV", + "usi": 400147, + "isDRMized": true, + "antiAdskipping": "DEACTIVATED", + "csa5Disabled": true + } + ], + "startover": [] + } + }, + { + "name": "LUCKY JACK", + "editoChannelId": "livetv_luckyjack", + "lcn": 211, + "idEPG": 1061, + "epgAvailable": true, + "epgTextSubstitution": "", + "displayOrder": 211, + "csaCode": 1, + "slogan": "Le jeu dans tous ses états", + "catchupChannelId": "", + "newChannel": false, + "roamingBlocked": true, + "allowedDeviceCategories": [ + "M_ANDROID", + "M_IOS", + "M_TABLET_ANDROID", + "M_TABLET_IOS", + "W_AIRPLAY", + "W_CHROMECAST", + "W_LACLETV2", + "W_SMARTTV", + "W_PC", + "S_STB" + ], + "packages": [ + "PA_BQ_PASSACCESTVPREMIUM_M", + "PA_BQ_BASIC_M", + "PA_BQ_RE_TVMAX_M", + "PA_BQ_ACCESTVPREMIUM_M", + "PA_BQ_PAYG_M", + "PA_BQ_TVDIGITALE_I", + "PA_BQ_BASIC_I", + "PA_BQ_BASICQUAD_I", + "PA_BQ_ACCESTV_M", + "PI_WHITELIST" + ], + "hasRightIAccess": true, + "hasRightMAccess": true, + "logos": [ + { + "definitionType": "mobileAppli", + "listLogos": [ + { + "size": "183x183", + "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_luckyjack%2F20151026_092415%2FmobileAppli%2Flogo_183x183.png" + } + ] + }, + { + "definitionType": "mobileAppliDark", + "listLogos": [ + { + "size": "183x183", + "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_luckyjack%2F20151026_092415%2FmobileAppliDark%2Flogo_183x183.png" + } + ] + }, + { + "definitionType": "webTVLogo", + "listLogos": [ + { + "size": "180x96", + "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_luckyjack%2F20151026_092415%2FwebTVLogo%2Flogo_180x96.png" + } + ] + }, + { + "definitionType": "webTVSquare", + "listLogos": [ + { + "size": "150x150", + "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_luckyjack%2F20151026_092415%2FwebTVSquare%2Flogo_150x150.png" + } + ] + } + ], + "mobileData": { + "wifiForbidden": false, + "wifiSecuredOnly": false, + "everywhereChannel": true, + "nomadismAllowed": true, + "drmLevels": [ + { + "definition": "SD", + "securedTerminal": [ + "DRM-HW", + "DRM-SW" + ], + "unsecuredTerminal": [ + "DRM-HW", + "DRM-SW" + ] + }, + { + "definition": "HD", + "securedTerminal": [ + "ND" + ], + "unsecuredTerminal": [ + "ND" + ] + } + ] + }, + "webdeviceData": { + "nomadismAllowed": true + }, + "technicalChannels": { + "live": [ + { + "techChannelId": "400002", + "type": "CLOUDTV", + "liveTargetURLRelativePath": "livetv_lucky_jack_ctv", + "usi": 400002, + "isDRMized": true, + "csa5Disabled": true + } + ], + "npvr": [], + "startover": [] + } + }, + { + "name": "FASHIONTV PARIS", + "editoChannelId": "livetv_fashiontv", + "lcn": 213, + "idEPG": 1996, + "epgAvailable": true, + "epgTextSubstitution": "", + "displayOrder": 213, + "csaCode": 1, + "slogan": "FashionTV - #1 Fashion & Lifestyle TV", + "catchupChannelId": "", + "newChannel": true, + "roamingBlocked": true, + "allowedDeviceCategories": [ + "M_ANDROID", + "M_IOS", + "M_TABLET_ANDROID", + "M_TABLET_IOS", + "W_AIRPLAY", + "W_CHROMECAST", + "W_LACLETV2", + "W_PC", + "W_SMARTTV", + "S_STB" + ], + "packages": [ + "PA_BQ_BASIC_M", + "PA_BQ_RE_TVMAX_M", + "PA_BQ_PAYG_M", + "PA_BQ_TVDIGITALE_I", + "PA_BQ_BASIC_I", + "PA_BQ_BASICQUAD_I", + "PI_WHITELIST" + ], + "hasRightIAccess": true, + "hasRightMAccess": true, + "logos": [ + { + "definitionType": "mobileAppli", + "listLogos": [ + { + "size": "183x183", + "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_fashiontv%2F20220128_093134%2FmobileAppli%2Flogo_183x183.png" + } + ] + }, + { + "definitionType": "mobileAppliDark", + "listLogos": [ + { + "size": "183x183", + "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_fashiontv%2F20220128_093134%2FmobileAppliDark%2Flogo_183x183.png" + } + ] + }, + { + "definitionType": "webTVLogo", + "listLogos": [ + { + "size": "180x96", + "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_fashiontv%2F20220128_093134%2FwebTVLogo%2Flogo_180x96.png" + } + ] + }, + { + "definitionType": "webTVSquare", + "listLogos": [ + { + "size": "150x150", + "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_fashiontv%2F20220128_093134%2FwebTVSquare%2Flogo_150x150.png" + } + ] + } + ], + "mobileData": { + "wifiForbidden": false, + "wifiSecuredOnly": false, + "everywhereChannel": true, + "nomadismAllowed": true, + "drmLevels": [ + { + "definition": "SD", + "securedTerminal": [ + "DRM-HW", + "DRM-SW" + ], + "unsecuredTerminal": [ + "DRM-HW", + "DRM-SW" + ] + }, + { + "definition": "HD", + "securedTerminal": [ + "ND" + ], + "unsecuredTerminal": [ + "ND" + ] + } + ] + }, + "webdeviceData": { + "nomadismAllowed": true + }, + "technicalChannels": { + "live": [ + { + "techChannelId": "400239", + "type": "CLOUDTV", + "liveTargetURLRelativePath": "livetv_fashiontv_ctv", + "usi": 400239, + "isDRMized": true, + "csa5Disabled": true + } + ], + "npvr": [ + { + "externalId": "livetv_fashiontv_ctv", + "techChannelId": "400239", + "type": "CLOUDTV", + "usi": 400239, + "isDRMized": true, + "antiAdskipping": "DEACTIVATED", + "csa5Disabled": true + } + ], + "startover": [] + } + }, + { + "name": "LUXE TV", + "editoChannelId": "livetv_luxe", + "lcn": 215, + "idEPG": 531, + "epgAvailable": true, + "epgTextSubstitution": "", + "displayOrder": 215, + "csaCode": 1, + "slogan": "Your Luxury Channel", + "catchupChannelId": "", + "newChannel": false, + "roamingBlocked": true, + "allowedDeviceCategories": [ + "M_ANDROID", + "M_IOS", + "M_TABLET_ANDROID", + "M_TABLET_IOS", + "W_AIRPLAY", + "W_CHROMECAST", + "W_LACLETV2", + "W_SMARTTV", + "W_PC", + "S_STB" + ], + "packages": [ + "PA_BQ_BASIC_M", + "PA_BQ_RE_TVMAX_M", + "PA_BQ_PAYG_M", + "PA_BQ_TVDIGITALE_I", + "PA_BQ_BASIC_I", + "PA_BQ_BASICQUAD_I", + "PA_BQ_ACCESTV_M", + "PI_WHITELIST" + ], + "hasRightIAccess": true, + "hasRightMAccess": true, + "logos": [ + { + "definitionType": "mobileAppli", + "listLogos": [ + { + "size": "183x183", + "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_luxe%2F20151026_092415%2FmobileAppli%2Flogo_183x183.png" + } + ] + }, + { + "definitionType": "mobileAppliDark", + "listLogos": [ + { + "size": "183x183", + "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_luxe%2F20151026_092415%2FmobileAppliDark%2Flogo_183x183.png" + } + ] + }, + { + "definitionType": "webTVLogo", + "listLogos": [ + { + "size": "180x96", + "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_luxe%2F20151026_092415%2FwebTVLogo%2Flogo_180x96.png" + } + ] + }, + { + "definitionType": "webTVSquare", + "listLogos": [ + { + "size": "150x150", + "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_luxe%2F20151026_092415%2FwebTVSquare%2Flogo_150x150.png" + } + ] + } + ], + "mobileData": { + "wifiForbidden": false, + "wifiSecuredOnly": false, + "everywhereChannel": true, + "nomadismAllowed": true, + "drmLevels": [ + { + "definition": "SD", + "securedTerminal": [ + "DRM-HW", + "DRM-SW" + ], + "unsecuredTerminal": [ + "DRM-HW", + "DRM-SW" + ] + }, + { + "definition": "HD", + "securedTerminal": [ + "ND" + ], + "unsecuredTerminal": [ + "ND" + ] + } + ] + }, + "webdeviceData": { + "nomadismAllowed": true + }, + "technicalChannels": { + "live": [ + { + "techChannelId": "400152", + "type": "CLOUDTV", + "liveTargetURLRelativePath": "livetv_luxe_tv_ctv", + "usi": 400152, + "isDRMized": true, + "csa5Disabled": true + } + ], + "npvr": [ + { + "externalId": "livetv_luxe_tv_ctv", + "techChannelId": "400152", + "type": "CLOUDTV", + "usi": 400152, + "isDRMized": true, + "antiAdskipping": "DEACTIVATED", + "csa5Disabled": true + } + ], + "startover": [] + } + }, + { + "name": "MEN'S UP TV", + "editoChannelId": "livetv_men_s_up", + "lcn": 216, + "idEPG": 90216, + "epgAvailable": false, + "epgTextSubstitution": "", + "displayOrder": 216, + "csaCode": 1, + "slogan": "L'homme au quotidien", + "catchupChannelId": "", + "newChannel": false, + "roamingBlocked": true, + "allowedDeviceCategories": [ + "M_ANDROID", + "M_IOS", + "M_TABLET_ANDROID", + "M_TABLET_IOS", + "W_AIRPLAY", + "W_CHROMECAST", + "W_LACLETV2", + "W_SMARTTV", + "W_PC", + "S_STB" + ], + "packages": [ + "PA_BQ_PASSACCESTVPREMIUM_M", + "PA_BQ_BASIC_M", + "PA_BQ_RE_TVMAX_M", + "PA_BQ_ACCESTVPREMIUM_M", + "PA_BQ_PAYG_M", + "PA_BQ_TVDIGITALE_I", + "PA_BQ_BASIC_I", + "PA_BQ_BASICQUAD_I", + "PA_BQ_ACCESTV_M", + "PI_WHITELIST" + ], + "hasRightIAccess": true, + "hasRightMAccess": true, + "logos": [ + { + "definitionType": "mobileAppli", + "listLogos": [ + { + "size": "183x183", + "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_men_s_up%2F20151026_092415%2FmobileAppli%2Flogo_183x183.png" + } + ] + }, + { + "definitionType": "mobileAppliDark", + "listLogos": [ + { + "size": "183x183", + "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_men_s_up%2F20151026_092415%2FmobileAppliDark%2Flogo_183x183.png" + } + ] + }, + { + "definitionType": "webTVLogo", + "listLogos": [ + { + "size": "180x96", + "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_men_s_up%2F20151026_092415%2FwebTVLogo%2Flogo_180x96.png" + } + ] + }, + { + "definitionType": "webTVSquare", + "listLogos": [ + { + "size": "150x150", + "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_men_s_up%2F20151026_092415%2FwebTVSquare%2Flogo_150x150.png" + } + ] + } + ], + "mobileData": { + "wifiForbidden": false, + "wifiSecuredOnly": false, + "everywhereChannel": true, + "nomadismAllowed": true, + "drmLevels": [ + { + "definition": "SD", + "securedTerminal": [ + "DRM-HW", + "DRM-SW" + ], + "unsecuredTerminal": [ + "DRM-HW", + "DRM-SW" + ] + }, + { + "definition": "HD", + "securedTerminal": [ + "ND" + ], + "unsecuredTerminal": [ + "ND" + ] + } + ] + }, + "webdeviceData": { + "nomadismAllowed": true + }, + "technicalChannels": { + "live": [ + { + "techChannelId": "400156", + "type": "CLOUDTV", + "liveTargetURLRelativePath": "livetv_mens_up_tv_ctv", + "usi": 400156, + "isDRMized": true, + "csa5Disabled": true + } + ], + "npvr": [ + { + "externalId": "livetv_mens_up_tv_ctv", + "techChannelId": "400156", + "type": "CLOUDTV", + "usi": 400156, + "isDRMized": true, + "antiAdskipping": "DEACTIVATED", + "csa5Disabled": true + } + ], + "startover": [] + } + }, + { + "name": "SQOOL TV", + "editoChannelId": "livetv_sqool_tv", + "lcn": 217, + "idEPG": 3767, + "epgAvailable": true, + "epgTextSubstitution": "", + "displayOrder": 217, + "csaCode": 1, + "slogan": "Imaginons ensemble l’école de demain", + "catchupChannelId": "", + "newChannel": true, + "roamingBlocked": false, + "allowedDeviceCategories": [ + "M_ANDROID", + "M_IOS", + "M_TABLET_ANDROID", + "M_TABLET_IOS", + "W_AIRPLAY", + "W_CHROMECAST", + "W_LACLETV2", + "W_PC", + "W_SMARTTV", + "S_STB" + ], + "packages": [ + "PA_BQ_BASIC_M", + "PA_BQ_TVDIGITALE_I", + "PA_BQ_BASIC_I", + "PA_BQ_BASICQUAD_I", + "PI_WHITELIST" + ], + "hasRightIAccess": true, + "hasRightMAccess": true, + "logos": [ + { + "definitionType": "mobileAppli", + "listLogos": [ + { + "size": "183x183", + "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_sqool_tv%2F20230517_112910%2FmobileAppli%2Flogo_183x183.png" + } + ] + }, + { + "definitionType": "mobileAppliDark", + "listLogos": [ + { + "size": "183x183", + "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_sqool_tv%2F20230517_112910%2FmobileAppliDark%2Flogo_183x183.png" + } + ] + }, + { + "definitionType": "webTVLogo", + "listLogos": [ + { + "size": "180x96", + "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_sqool_tv%2F20230517_112910%2FwebTVLogo%2Flogo_180x96.png" + } + ] + }, + { + "definitionType": "webTVSquare", + "listLogos": [ + { + "size": "150x150", + "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_sqool_tv%2F20230517_112910%2FwebTVSquare%2Flogo_150x150.png" + } + ] + } + ], + "mobileData": { + "wifiForbidden": false, + "wifiSecuredOnly": false, + "everywhereChannel": true, + "nomadismAllowed": true, + "drmLevels": [ + { + "definition": "SD", + "securedTerminal": [ + "DRM-HW", + "DRM-SW" + ], + "unsecuredTerminal": [ + "DRM-HW", + "DRM-SW" + ] + }, + { + "definition": "HD", + "securedTerminal": [ + "DRM-HW", + "DRM-SW" + ], + "unsecuredTerminal": [ + "ND" + ] + } + ] + }, + "webdeviceData": { + "nomadismAllowed": true + }, + "technicalChannels": { + "live": [ + { + "techChannelId": "400381", + "type": "CLOUDTV", + "liveTargetURLRelativePath": "livetv_sqool_tv_ctv", + "usi": 400381, + "isDRMized": true, + "csa5Disabled": true + } + ], + "npvr": [ + { + "externalId": "livetv_sqool_tv_ctv", + "techChannelId": "400381", + "type": "CLOUDTV", + "usi": 400381, + "isDRMized": true, + "antiAdskipping": "DEACTIVATED", + "csa5Disabled": true + } + ], + "startover": [] + } + }, + { + "name": "DEMAIN", + "editoChannelId": "livetv_demain", + "lcn": 219, + "idEPG": 57, + "epgAvailable": true, + "epgTextSubstitution": "", + "displayOrder": 219, + "csaCode": 1, + "slogan": "La télévision des initiatives", + "catchupChannelId": "", + "newChannel": false, + "roamingBlocked": true, + "allowedDeviceCategories": [ + "M_ANDROID", + "M_IOS", + "M_TABLET_ANDROID", + "M_TABLET_IOS", + "W_AIRPLAY", + "W_CHROMECAST", + "W_LACLETV2", + "W_SMARTTV", + "W_PC", + "S_STB" + ], + "packages": [ + "PA_BQ_PASSACCESTVPREMIUM_M", + "PA_BQ_BASIC_M", + "PA_BQ_RE_TVMAX_M", + "PA_BQ_ACCESTVPREMIUM_M", + "PA_BQ_PAYG_M", + "PA_BQ_TVDIGITALE_I", + "PA_BQ_BASIC_I", + "PA_BQ_BASICQUAD_I", + "PA_BQ_ACCESTV_M", + "PI_WHITELIST" + ], + "hasRightIAccess": true, + "hasRightMAccess": true, + "logos": [ + { + "definitionType": "mobileAppli", + "listLogos": [ + { + "size": "183x183", + "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_demain%2F20170314_120000%2FmobileAppli%2Flogo_183x183.png" + } + ] + }, + { + "definitionType": "mobileAppliDark", + "listLogos": [ + { + "size": "183x183", + "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_demain%2F20170314_120000%2FmobileAppliDark%2Flogo_183x183.png" + } + ] + }, + { + "definitionType": "webTVLogo", + "listLogos": [ + { + "size": "180x96", + "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_demain%2F20170314_120000%2FwebTVLogo%2Flogo_180x96.png" + } + ] + }, + { + "definitionType": "webTVSquare", + "listLogos": [ + { + "size": "150x150", + "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_demain%2F20170314_120000%2FwebTVSquare%2Flogo_150x150.png" + } + ] + } + ], + "mobileData": { + "wifiForbidden": false, + "wifiSecuredOnly": false, + "everywhereChannel": true, + "nomadismAllowed": true, + "drmLevels": [ + { + "definition": "SD", + "securedTerminal": [ + "DRM-HW", + "DRM-SW" + ], + "unsecuredTerminal": [ + "DRM-HW", + "DRM-SW" + ] + }, + { + "definition": "HD", + "securedTerminal": [ + "ND" + ], + "unsecuredTerminal": [ + "ND" + ] + } + ] + }, + "webdeviceData": { + "nomadismAllowed": true + }, + "technicalChannels": { + "live": [ + { + "techChannelId": "400142", + "type": "CLOUDTV", + "liveTargetURLRelativePath": "livetv_demain_ctv", + "usi": 400142, + "isDRMized": true, + "csa5Disabled": true + } + ], + "npvr": [ + { + "externalId": "livetv_demain_ctv", + "techChannelId": "400142", + "type": "CLOUDTV", + "usi": 400142, + "isDRMized": true, + "antiAdskipping": "DEACTIVATED", + "csa5Disabled": true + } + ], + "startover": [] + } + }, + { + "name": "KTO", + "editoChannelId": "livetv_kto", + "lcn": 220, + "idEPG": 110, + "epgAvailable": true, + "epgTextSubstitution": "", + "displayOrder": 220, + "csaCode": 1, + "slogan": "Télévision Catholique", + "catchupChannelId": "", + "newChannel": false, + "roamingBlocked": true, + "allowedDeviceCategories": [ + "M_ANDROID", + "M_IOS", + "M_TABLET_ANDROID", + "M_TABLET_IOS", + "W_AIRPLAY", + "W_CHROMECAST", + "W_LACLETV2", + "W_SMARTTV", + "W_PC", + "S_STB" + ], + "packages": [ + "PA_BQ_BASIC_M", + "PA_BQ_RE_TVMAX_M", + "PA_BQ_PAYG_M", + "PA_BQ_TVDIGITALE_I", + "PA_BQ_BASIC_I", + "PA_BQ_BASICQUAD_I", + "PA_BQ_ACCESTV_M", + "PI_WHITELIST" + ], + "hasRightIAccess": true, + "hasRightMAccess": true, + "logos": [ + { + "definitionType": "mobileAppli", + "listLogos": [ + { + "size": "183x183", + "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_kto%2F20151026_092415%2FmobileAppli%2Flogo_183x183.png" + } + ] + }, + { + "definitionType": "mobileAppliDark", + "listLogos": [ + { + "size": "183x183", + "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_kto%2F20151026_092415%2FmobileAppliDark%2Flogo_183x183.png" + } + ] + }, + { + "definitionType": "webTVLogo", + "listLogos": [ + { + "size": "180x96", + "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_kto%2F20151026_092415%2FwebTVLogo%2Flogo_180x96.png" + } + ] + }, + { + "definitionType": "webTVSquare", + "listLogos": [ + { + "size": "150x150", + "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_kto%2F20151026_092415%2FwebTVSquare%2Flogo_150x150.png" + } + ] + } + ], + "mobileData": { + "wifiForbidden": false, + "wifiSecuredOnly": false, + "everywhereChannel": true, + "nomadismAllowed": true, + "drmLevels": [ + { + "definition": "SD", + "securedTerminal": [ + "DRM-HW", + "DRM-SW" + ], + "unsecuredTerminal": [ + "DRM-HW", + "DRM-SW" + ] + }, + { + "definition": "HD", + "securedTerminal": [ + "ND" + ], + "unsecuredTerminal": [ + "ND" + ] + } + ] + }, + "webdeviceData": { + "nomadismAllowed": true + }, + "technicalChannels": { + "live": [ + { + "techChannelId": "400150", + "type": "CLOUDTV", + "liveTargetURLRelativePath": "livetv_kto_ctv", + "usi": 400150, + "isDRMized": true, + "csa5Disabled": true + } + ], + "npvr": [ + { + "externalId": "livetv_kto_ctv", + "techChannelId": "400150", + "type": "CLOUDTV", + "usi": 400150, + "isDRMized": true, + "antiAdskipping": "DEACTIVATED", + "csa5Disabled": true + } + ], + "startover": [] + } + }, + { + "name": "SOUVENIRS FROM EARTH", + "editoChannelId": "livetv_souvenirsfromearth", + "lcn": 221, + "idEPG": 90221, + "epgAvailable": false, + "epgTextSubstitution": "", + "displayOrder": 221, + "csaCode": 1, + "slogan": "et l'écran devient œuvre d'art", + "catchupChannelId": "", + "newChannel": false, + "roamingBlocked": true, + "allowedDeviceCategories": [ + "M_ANDROID", + "M_IOS", + "M_TABLET_ANDROID", + "M_TABLET_IOS", + "W_AIRPLAY", + "W_CHROMECAST", + "W_LACLETV2", + "W_SMARTTV", + "W_PC", + "S_STB" + ], + "packages": [ + "PA_BQ_BASIC_M", + "PA_BQ_RE_TVMAX_M", + "PA_BQ_PAYG_M", + "PA_BQ_TVDIGITALE_I", + "PA_BQ_BASIC_I", + "PA_BQ_BASICQUAD_I", + "PA_BQ_ACCESTV_M", + "PI_WHITELIST" + ], + "hasRightIAccess": true, + "hasRightMAccess": true, + "logos": [ + { + "definitionType": "mobileAppli", + "listLogos": [ + { + "size": "183x183", + "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_souvenirsfromearth%2F20151026_092415%2FmobileAppli%2Flogo_183x183.png" + } + ] + }, + { + "definitionType": "mobileAppliDark", + "listLogos": [ + { + "size": "183x183", + "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_souvenirsfromearth%2F20151026_092415%2FmobileAppliDark%2Flogo_183x183.png" + } + ] + }, + { + "definitionType": "webTVLogo", + "listLogos": [ + { + "size": "180x96", + "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_souvenirsfromearth%2F20151026_092415%2FwebTVLogo%2Flogo_180x96.png" + } + ] + }, + { + "definitionType": "webTVSquare", + "listLogos": [ + { + "size": "150x150", + "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_souvenirsfromearth%2F20151026_092415%2FwebTVSquare%2Flogo_150x150.png" + } + ] + } + ], + "mobileData": { + "wifiForbidden": false, + "wifiSecuredOnly": false, + "everywhereChannel": true, + "nomadismAllowed": true, + "drmLevels": [ + { + "definition": "SD", + "securedTerminal": [ + "DRM-HW", + "DRM-SW" + ], + "unsecuredTerminal": [ + "DRM-HW", + "DRM-SW" + ] + }, + { + "definition": "HD", + "securedTerminal": [ + "ND" + ], + "unsecuredTerminal": [ + "ND" + ] + } + ] + }, + "webdeviceData": { + "nomadismAllowed": true + }, + "technicalChannels": { + "live": [ + { + "techChannelId": "400167", + "type": "CLOUDTV", + "liveTargetURLRelativePath": "livetv_souvenirs_from_earth_ctv", + "usi": 400167, + "isDRMized": true, + "csa5Disabled": true + } + ], + "npvr": [ + { + "externalId": "livetv_souvenirs_from_earth_ctv", + "techChannelId": "400167", + "type": "CLOUDTV", + "usi": 400167, + "isDRMized": true, + "antiAdskipping": "DEACTIVATED", + "csa5Disabled": true + } + ], + "startover": [] + } + }, + { + "name": "LCP 100%", + "editoChannelId": "livetv_lcp_100_pourcent", + "lcn": 225, + "idEPG": 992, + "epgAvailable": true, + "epgTextSubstitution": "", + "displayOrder": 225, + "csaCode": 1, + "slogan": "Donnons du sens", + "catchupChannelId": "", + "newChannel": false, + "roamingBlocked": true, + "allowedDeviceCategories": [ + "M_ANDROID", + "M_IOS", + "M_TABLET_ANDROID", + "M_TABLET_IOS", + "W_AIRPLAY", + "W_CHROMECAST", + "W_LACLETV2", + "W_SMARTTV", + "W_PC", + "S_STB" + ], + "packages": [ + "PA_BQ_BASIC_M", + "PA_BQ_RE_TVMAX_M", + "PA_BQ_PAYG_M", + "PA_BQ_TVDIGITALE_I", + "PA_BQ_BASIC_I", + "PA_BQ_BASICQUAD_I", + "PI_WHITELIST" + ], + "hasRightIAccess": true, + "hasRightMAccess": true, + "logos": [ + { + "definitionType": "mobileAppli", + "listLogos": [ + { + "size": "183x183", + "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_lcp_100_pourcent%2F20191106_163032%2FmobileAppli%2Flogo_183x183.png" + } + ] + }, + { + "definitionType": "mobileAppliDark", + "listLogos": [ + { + "size": "183x183", + "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_lcp_100_pourcent%2F20191106_163032%2FmobileAppliDark%2Flogo_183x183.png" + } + ] + }, + { + "definitionType": "webTVLogo", + "listLogos": [ + { + "size": "180x96", + "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_lcp_100_pourcent%2F20191106_163032%2FwebTVLogo%2Flogo_180x96.png" + } + ] + }, + { + "definitionType": "webTVSquare", + "listLogos": [ + { + "size": "150x150", + "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_lcp_100_pourcent%2F20191106_163032%2FwebTVSquare%2Flogo_150x150.png" + } + ] + } + ], + "mobileData": { + "wifiForbidden": false, + "wifiSecuredOnly": false, + "everywhereChannel": true, + "nomadismAllowed": true, + "drmLevels": [ + { + "definition": "SD", + "securedTerminal": [ + "DRM-HW", + "DRM-SW" + ], + "unsecuredTerminal": [ + "DRM-HW", + "DRM-SW" + ] + }, + { + "definition": "HD", + "securedTerminal": [ + "ND" + ], + "unsecuredTerminal": [ + "ND" + ] + } + ] + }, + "webdeviceData": { + "nomadismAllowed": true + }, + "technicalChannels": { + "live": [ + { + "techChannelId": "400151", + "type": "CLOUDTV", + "liveTargetURLRelativePath": "livetv_lcp_100_pourcent_ctv", + "usi": 400151, + "isDRMized": true, + "csa5Disabled": true + } + ], + "npvr": [ + { + "externalId": "livetv_lcp_100_pourcent_ctv", + "techChannelId": "400151", + "type": "CLOUDTV", + "usi": 400151, + "isDRMized": true, + "antiAdskipping": "DEACTIVATED", + "csa5Disabled": true + } + ], + "startover": [] + } + }, + { + "name": "PUBLIC SENAT 24/24", + "editoChannelId": "livetv_public_senat_2424", + "lcn": 226, + "idEPG": 90226, + "epgAvailable": false, + "epgTextSubstitution": "", + "displayOrder": 226, + "csaCode": 1, + "slogan": "Des questions à toutes vos réponses.", + "catchupChannelId": "", + "newChannel": false, + "roamingBlocked": true, + "allowedDeviceCategories": [ + "M_ANDROID", + "M_IOS", + "M_TABLET_ANDROID", + "M_TABLET_IOS", + "W_AIRPLAY", + "W_CHROMECAST", + "W_LACLETV2", + "W_SMARTTV", + "W_PC", + "S_STB" + ], + "packages": [ + "PA_BQ_BASIC_M", + "PA_BQ_RE_TVMAX_M", + "PA_BQ_PAYG_M", + "PA_BQ_TVDIGITALE_I", + "PA_BQ_BASIC_I", + "PA_BQ_BASICQUAD_I", + "PI_WHITELIST" + ], + "hasRightIAccess": true, + "hasRightMAccess": true, + "logos": [ + { + "definitionType": "mobileAppli", + "listLogos": [ + { + "size": "183x183", + "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_public_senat_2424%2F20191114_110026%2FmobileAppli%2Flogo_183x183.png" + } + ] + }, + { + "definitionType": "mobileAppliDark", + "listLogos": [ + { + "size": "183x183", + "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_public_senat_2424%2F20191114_110026%2FmobileAppliDark%2Flogo_183x183.png" + } + ] + }, + { + "definitionType": "webTVLogo", + "listLogos": [ + { + "size": "180x96", + "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_public_senat_2424%2F20191114_110026%2FwebTVLogo%2Flogo_180x96.png" + } + ] + }, + { + "definitionType": "webTVSquare", + "listLogos": [ + { + "size": "150x150", + "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_public_senat_2424%2F20191114_110026%2FwebTVSquare%2Flogo_150x150.png" + } + ] + } + ], + "mobileData": { + "wifiForbidden": false, + "wifiSecuredOnly": false, + "everywhereChannel": true, + "nomadismAllowed": true, + "drmLevels": [ + { + "definition": "SD", + "securedTerminal": [ + "DRM-HW", + "DRM-SW" + ], + "unsecuredTerminal": [ + "DRM-HW", + "DRM-SW" + ] + }, + { + "definition": "HD", + "securedTerminal": [ + "ND" + ], + "unsecuredTerminal": [ + "ND" + ] + } + ] + }, + "webdeviceData": { + "nomadismAllowed": true + }, + "technicalChannels": { + "live": [ + { + "techChannelId": "400163", + "type": "CLOUDTV", + "liveTargetURLRelativePath": "livetv_public_senat_2424_ctv", + "usi": 400163, + "isDRMized": true, + "csa5Disabled": true + } + ], + "npvr": [ + { + "externalId": "livetv_public_senat_2424_ctv", + "techChannelId": "400163", + "type": "CLOUDTV", + "usi": 400163, + "isDRMized": true, + "antiAdskipping": "DEACTIVATED", + "csa5Disabled": true + } + ], + "startover": [] + } + }, + { + "name": "FRANCE 24 Français", + "editoChannelId": "livetv_france24_fr", + "lcn": 227, + "idEPG": 529, + "epgAvailable": true, + "epgTextSubstitution": "", + "displayOrder": 227, + "csaCode": 1, + "slogan": "L'actualité internationale 24H/24", + "catchupChannelId": "catchuptv_france24", + "newChannel": false, + "roamingBlocked": true, + "allowedDeviceCategories": [ + "M_ANDROID", + "M_IOS", + "M_TABLET_ANDROID", + "M_TABLET_IOS", + "W_AIRPLAY", + "W_CHROMECAST", + "W_LACLETV2", + "W_PC", + "W_SMARTTV", + "S_STB" + ], + "packages": [ + "PA_BQ_PASSACCESTVPREMIUM_M", + "PA_BQ_BASIC_M", + "PA_BQ_RE_TVMAX_M", + "PA_BQ_ACCESTVPREMIUM_M", + "PA_BQ_PAYG_M", + "PA_BQ_TVDIGITALE_I", + "PA_BQ_SPORT_M", + "PA_BQ_BASIC_I", + "PA_BQ_BASICQUAD_I", + "PA_BQ_ACCESTV_M", + "PI_WHITELIST" + ], + "hasRightIAccess": true, + "hasRightMAccess": true, + "logos": [ + { + "definitionType": "mobileAppli", + "listLogos": [ + { + "size": "183x183", + "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_france24_fr%2F20220922_114506%2FmobileAppli%2Flogo_183x183.png" + } + ] + }, + { + "definitionType": "mobileAppliDark", + "listLogos": [ + { + "size": "183x183", + "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_france24_fr%2F20220922_114506%2FmobileAppliDark%2Flogo_183x183.png" + } + ] + }, + { + "definitionType": "webTVLogo", + "listLogos": [ + { + "size": "180x96", + "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_france24_fr%2F20220922_114506%2FwebTVLogo%2Flogo_180x96.png" + } + ] + }, + { + "definitionType": "webTVSquare", + "listLogos": [ + { + "size": "150x150", + "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_france24_fr%2F20220922_114506%2FwebTVSquare%2Flogo_150x150.png" + } + ] + } + ], + "mobileData": { + "wifiForbidden": false, + "wifiSecuredOnly": false, + "everywhereChannel": true, + "nomadismAllowed": true, + "drmLevels": [ + { + "definition": "SD", + "securedTerminal": [ + "DRM-HW", + "DRM-SW" + ], + "unsecuredTerminal": [ + "DRM-HW", + "DRM-SW" + ] + }, + { + "definition": "HD", + "securedTerminal": [ + "ND" + ], + "unsecuredTerminal": [ + "ND" + ] + } + ] + }, + "webdeviceData": { + "nomadismAllowed": true + }, + "technicalChannels": { + "live": [ + { + "techChannelId": "400146", + "type": "CLOUDTV", + "liveTargetURLRelativePath": "livetv_france_24_francais_ctv", + "usi": 400146, + "isDRMized": true, + "csa5Disabled": true + } + ], + "npvr": [ + { + "externalId": "livetv_france_24_francais_ctv", + "techChannelId": "400146", + "type": "CLOUDTV", + "usi": 400146, + "isDRMized": true, + "antiAdskipping": "DEACTIVATED", + "csa5Disabled": true + } + ], + "startover": [] + } + }, + { + "name": "BFM BUSINESS", + "editoChannelId": "livetv_bfmbusiness", + "lcn": 228, + "idEPG": 1073, + "epgAvailable": true, + "epgTextSubstitution": "", + "displayOrder": 228, + "csaCode": 1, + "slogan": "Le N°1 sur l'économie", + "catchupChannelId": "catchuptv_bfmbusiness", + "newChannel": false, + "roamingBlocked": true, + "allowedDeviceCategories": [ + "M_ANDROID", + "M_IOS", + "M_TABLET_ANDROID", + "M_TABLET_IOS", + "W_AIRPLAY", + "W_CHROMECAST", + "W_LACLETV2", + "W_PC", + "W_SMARTTV", + "S_STB" + ], + "packages": [ + "PA_BQ_PASSACCESTVPREMIUM_M", + "PA_BQ_BASIC_M", + "PA_BQ_RE_TVMAX_M", + "PA_BQ_ACCESTVPREMIUM_M", + "PA_BQ_PAYG_M", + "PA_BQ_TVDIGITALE_I", + "PA_BQ_SPORT_M", + "PA_BQ_BASIC_I", + "PA_BQ_BASICQUAD_I", + "PA_BQ_ACCESTV_M", + "PI_WHITELIST" + ], + "hasRightIAccess": true, + "hasRightMAccess": true, + "logos": [ + { + "definitionType": "mobileAppli", + "listLogos": [ + { + "size": "183x183", + "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_bfmbusiness%2F20230321_182925%2FmobileAppli%2Flogo_183x183.png" + } + ] + }, + { + "definitionType": "mobileAppliDark", + "listLogos": [ + { + "size": "183x183", + "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_bfmbusiness%2F20230321_182925%2FmobileAppliDark%2Flogo_183x183.png" + } + ] + }, + { + "definitionType": "webTVLogo", + "listLogos": [ + { + "size": "180x96", + "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_bfmbusiness%2F20230321_182925%2FwebTVLogo%2Flogo_180x96.png" + } + ] + }, + { + "definitionType": "webTVSquare", + "listLogos": [ + { + "size": "150x150", + "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_bfmbusiness%2F20230321_182925%2FwebTVSquare%2Flogo_150x150.png" + } + ] + } + ], + "mobileData": { + "wifiForbidden": false, + "wifiSecuredOnly": false, + "everywhereChannel": true, + "nomadismAllowed": true, + "drmLevels": [ + { + "definition": "SD", + "securedTerminal": [ + "DRM-HW", + "DRM-SW" + ], + "unsecuredTerminal": [ + "DRM-HW", + "DRM-SW" + ] + }, + { + "definition": "HD", + "securedTerminal": [ + "ND" + ], + "unsecuredTerminal": [ + "ND" + ] + } + ] + }, + "webdeviceData": { + "nomadismAllowed": true + }, + "technicalChannels": { + "live": [ + { + "techChannelId": "400136", + "type": "CLOUDTV", + "liveTargetURLRelativePath": "livetv_bfm_business_ctv", + "usi": 400136, + "isDRMized": true, + "csa5Disabled": true + } + ], + "npvr": [ + { + "externalId": "livetv_bfm_business_ctv", + "techChannelId": "400136", + "type": "CLOUDTV", + "usi": 400136, + "isDRMized": true, + "antiAdskipping": "DEACTIVATED", + "csa5Disabled": true + } + ], + "startover": [] + } + }, + { + "name": "EURONEWS Français", + "editoChannelId": "livetv_euronews", + "lcn": 229, + "idEPG": 140, + "epgAvailable": true, + "epgTextSubstitution": "", + "displayOrder": 229, + "csaCode": 1, + "slogan": "All Views", + "catchupChannelId": "", + "newChannel": false, + "roamingBlocked": true, + "allowedDeviceCategories": [ + "M_ANDROID", + "M_IOS", + "M_TABLET_ANDROID", + "M_TABLET_IOS", + "W_AIRPLAY", + "W_CHROMECAST", + "W_LACLETV2", + "W_PC", + "W_SMARTTV", + "S_STB" + ], + "packages": [ + "PA_BQ_PASSACCESTVPREMIUM_M", + "PA_BQ_BASIC_M", + "PA_BQ_RE_TVMAX_M", + "PA_BQ_ACCESTVPREMIUM_M", + "PA_BQ_PAYG_M", + "PA_BQ_TVDIGITALE_I", + "PA_BQ_SPORT_M", + "PA_BQ_BASIC_I", + "PA_BQ_BASICQUAD_I", + "PA_BQ_ACCESTV_M", + "PI_WHITELIST" + ], + "hasRightIAccess": true, + "hasRightMAccess": true, + "logos": [ + { + "definitionType": "mobileAppli", + "listLogos": [ + { + "size": "183x183", + "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_euronews%2F20230321_182925%2FmobileAppli%2Flogo_183x183.png" + } + ] + }, + { + "definitionType": "mobileAppliDark", + "listLogos": [ + { + "size": "183x183", + "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_euronews%2F20230321_182925%2FmobileAppliDark%2Flogo_183x183.png" + } + ] + }, + { + "definitionType": "webTVLogo", + "listLogos": [ + { + "size": "180x96", + "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_euronews%2F20230321_182925%2FwebTVLogo%2Flogo_180x96.png" + } + ] + }, + { + "definitionType": "webTVSquare", + "listLogos": [ + { + "size": "150x150", + "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_euronews%2F20230321_182925%2FwebTVSquare%2Flogo_150x150.png" + } + ] + } + ], + "mobileData": { + "wifiForbidden": false, + "wifiSecuredOnly": false, + "everywhereChannel": true, + "nomadismAllowed": true, + "drmLevels": [ + { + "definition": "SD", + "securedTerminal": [ + "DRM-HW", + "DRM-SW" + ], + "unsecuredTerminal": [ + "DRM-HW", + "DRM-SW" + ] + }, + { + "definition": "HD", + "securedTerminal": [ + "ND" + ], + "unsecuredTerminal": [ + "ND" + ] + } + ] + }, + "webdeviceData": { + "nomadismAllowed": true + }, + "technicalChannels": { + "live": [ + { + "techChannelId": "400145", + "type": "CLOUDTV", + "liveTargetURLRelativePath": "livetv_euronews_ctv", + "usi": 400145, + "isDRMized": true, + "csa5Disabled": true + } + ], + "npvr": [ + { + "externalId": "livetv_euronews_ctv", + "techChannelId": "400145", + "type": "CLOUDTV", + "usi": 400145, + "isDRMized": true, + "antiAdskipping": "DEACTIVATED", + "csa5Disabled": true + } + ], + "startover": [] + } + }, + { + "name": "B SMART", + "editoChannelId": "livetv_bsmart_tv", + "lcn": 230, + "idEPG": 90230, + "epgAvailable": false, + "epgTextSubstitution": "", + "displayOrder": 230, + "csaCode": 1, + "slogan": "La chaîne des audacieux", + "catchupChannelId": "", + "newChannel": false, + "roamingBlocked": true, + "allowedDeviceCategories": [ + "M_ANDROID", + "M_IOS", + "M_TABLET_ANDROID", + "M_TABLET_IOS", + "W_AIRPLAY", + "W_CHROMECAST", + "W_LACLETV2", + "W_SMARTTV", + "W_PC", + "S_STB" + ], + "packages": [ + "PA_BQ_BASIC_M", + "PA_BQ_TVDIGITALE_I", + "PA_BQ_BASIC_I", + "PA_BQ_BASICQUAD_I", + "PI_WHITELIST" + ], + "hasRightIAccess": true, + "hasRightMAccess": true, + "logos": [ + { + "definitionType": "mobileAppli", + "listLogos": [ + { + "size": "183x183", + "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_bsmart_tv%2F20200617_151521%2FmobileAppli%2Flogo_183x183.png" + } + ] + }, + { + "definitionType": "mobileAppliDark", + "listLogos": [ + { + "size": "183x183", + "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_bsmart_tv%2F20200617_151521%2FmobileAppliDark%2Flogo_183x183.png" + } + ] + }, + { + "definitionType": "webTVLogo", + "listLogos": [ + { + "size": "180x96", + "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_bsmart_tv%2F20200617_151521%2FwebTVLogo%2Flogo_180x96.png" + } + ] + }, + { + "definitionType": "webTVSquare", + "listLogos": [ + { + "size": "150x150", + "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_bsmart_tv%2F20200617_151521%2FwebTVSquare%2Flogo_150x150.png" + } + ] + } + ], + "mobileData": { + "wifiForbidden": false, + "wifiSecuredOnly": false, + "everywhereChannel": true, + "nomadismAllowed": true, + "drmLevels": [ + { + "definition": "SD", + "securedTerminal": [ + "DRM-HW", + "DRM-SW" + ], + "unsecuredTerminal": [ + "DRM-HW", + "DRM-SW" + ] + }, + { + "definition": "HD", + "securedTerminal": [ + "DRM-HW", + "DRM-SW" + ], + "unsecuredTerminal": [ + "ND" + ] + } + ] + }, + "webdeviceData": { + "nomadismAllowed": true + }, + "technicalChannels": { + "live": [ + { + "techChannelId": "400263", + "type": "CLOUDTV", + "liveTargetURLRelativePath": "livetv_bsmarttv_ctv", + "usi": 400263, + "isDRMized": true, + "csa5Disabled": true + } + ], + "npvr": [ + { + "externalId": "livetv_bsmarttv_ctv", + "techChannelId": "400263", + "type": "CLOUDTV", + "usi": 400263, + "isDRMized": true, + "antiAdskipping": "DEACTIVATED", + "csa5Disabled": true + } + ], + "startover": [] + } + }, + { + "name": "LA CHAINE METEO", + "editoChannelId": "livetv_la_chaine_meteo", + "lcn": 231, + "idEPG": 90231, + "epgAvailable": false, + "epgTextSubstitution": "", + "displayOrder": 231, + "csaCode": 1, + "slogan": "Infos météo en continu", + "catchupChannelId": "", + "newChannel": false, + "roamingBlocked": true, + "allowedDeviceCategories": [ + "M_ANDROID", + "M_IOS", + "M_TABLET_ANDROID", + "M_TABLET_IOS", + "W_AIRPLAY", + "W_CHROMECAST", + "W_LACLETV2", + "W_SMARTTV", + "W_PC", + "S_STB" + ], + "packages": [ + "PA_bouquet_divertissement_fibre", + "PA_bouquet_famille_by_canal", + "PA_bouquet_famille_by_canal_nov2018", + "PI_WHITELIST" + ], + "hasRightIAccess": true, + "hasRightMAccess": false, + "logos": [ + { + "definitionType": "mobileAppli", + "listLogos": [ + { + "size": "183x183", + "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_la_chaine_meteo%2F20170405_200000%2FmobileAppli%2Flogo_183x183.png" + } + ] + }, + { + "definitionType": "mobileAppliDark", + "listLogos": [ + { + "size": "183x183", + "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_la_chaine_meteo%2F20170405_200000%2FmobileAppliDark%2Flogo_183x183.png" + } + ] + }, + { + "definitionType": "webTVLogo", + "listLogos": [ + { + "size": "180x96", + "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_la_chaine_meteo%2F20170405_200000%2FwebTVLogo%2Flogo_180x96.png" + } + ] + }, + { + "definitionType": "webTVSquare", + "listLogos": [ + { + "size": "150x150", + "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_la_chaine_meteo%2F20170405_200000%2FwebTVSquare%2Flogo_150x150.png" + } + ] + } + ], + "mobileData": { + "wifiForbidden": false, + "wifiSecuredOnly": false, + "everywhereChannel": true, + "nomadismAllowed": true, + "drmLevels": [ + { + "definition": "SD", + "securedTerminal": [ + "DRM-HW", + "DRM-SW" + ], + "unsecuredTerminal": [ + "DRM-HW", + "DRM-SW" + ] + }, + { + "definition": "HD", + "securedTerminal": [ + "ND" + ], + "unsecuredTerminal": [ + "ND" + ] + } + ] + }, + "webdeviceData": { + "nomadismAllowed": true + }, + "technicalChannels": { + "live": [ + { + "techChannelId": "400254", + "type": "CLOUDTV", + "liveTargetURLRelativePath": "livetv_lachainemeteo_ctv", + "usi": 400254, + "isDRMized": true, + "csa5Disabled": true + } + ], + "npvr": [], + "startover": [] + } + }, + { + "name": "FRANCE 24 Anglais", + "editoChannelId": "livetv_france24_eng", + "lcn": 232, + "idEPG": 671, + "epgAvailable": true, + "epgTextSubstitution": "", + "displayOrder": 232, + "csaCode": 1, + "slogan": "L'actualité internationale 24H/24", + "catchupChannelId": "", + "newChannel": false, + "roamingBlocked": true, + "allowedDeviceCategories": [ + "M_ANDROID", + "M_IOS", + "M_TABLET_ANDROID", + "M_TABLET_IOS", + "W_AIRPLAY", + "W_CHROMECAST", + "W_LACLETV2", + "W_PC", + "W_SMARTTV", + "S_STB" + ], + "packages": [ + "PA_BQ_PASSACCESTVPREMIUM_M", + "PA_BQ_BASIC_M", + "PA_BQ_RE_TVMAX_M", + "PA_BQ_ACCESTVPREMIUM_M", + "PA_BQ_PAYG_M", + "PA_BQ_TVDIGITALE_I", + "PA_BQ_SPORT_M", + "PA_BQ_BASIC_I", + "PA_BQ_BASICQUAD_I", + "PA_BQ_ACCESTV_M", + "PI_WHITELIST" + ], + "hasRightIAccess": true, + "hasRightMAccess": true, + "logos": [ + { + "definitionType": "mobileAppli", + "listLogos": [ + { + "size": "183x183", + "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_france24_eng%2F20220922_114506%2FmobileAppli%2Flogo_183x183.png" + } + ] + }, + { + "definitionType": "mobileAppliDark", + "listLogos": [ + { + "size": "183x183", + "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_france24_eng%2F20220922_114506%2FmobileAppliDark%2Flogo_183x183.png" + } + ] + }, + { + "definitionType": "webTVLogo", + "listLogos": [ + { + "size": "180x96", + "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_france24_eng%2F20220922_114506%2FwebTVLogo%2Flogo_180x96.png" + } + ] + }, + { + "definitionType": "webTVSquare", + "listLogos": [ + { + "size": "150x150", + "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_france24_eng%2F20220922_114506%2FwebTVSquare%2Flogo_150x150.png" + } + ] + } + ], + "mobileData": { + "wifiForbidden": false, + "wifiSecuredOnly": false, + "everywhereChannel": true, + "nomadismAllowed": true, + "drmLevels": [ + { + "definition": "SD", + "securedTerminal": [ + "DRM-HW", + "DRM-SW" + ], + "unsecuredTerminal": [ + "DRM-HW", + "DRM-SW" + ] + }, + { + "definition": "HD", + "securedTerminal": [ + "ND" + ], + "unsecuredTerminal": [ + "ND" + ] + } + ] + }, + "webdeviceData": { + "nomadismAllowed": true + }, + "technicalChannels": { + "live": [ + { + "techChannelId": "400252", + "type": "CLOUDTV", + "liveTargetURLRelativePath": "livetv_france24anglais_ctv", + "usi": 400252, + "isDRMized": true, + "csa5Disabled": true + } + ], + "npvr": [], + "startover": [] + } + }, + { + "name": "SKYNEWS", + "editoChannelId": "livetv_skynews", + "lcn": 233, + "idEPG": 90233, + "epgAvailable": false, + "epgTextSubstitution": "", + "displayOrder": 233, + "csaCode": 1, + "slogan": "First for breaking news", + "catchupChannelId": "", + "newChannel": false, + "roamingBlocked": true, + "allowedDeviceCategories": [ + "M_ANDROID", + "M_IOS", + "M_TABLET_ANDROID", + "M_TABLET_IOS", + "W_AIRPLAY", + "W_CHROMECAST", + "W_LACLETV2", + "W_SMARTTV", + "W_PC", + "S_STB" + ], + "packages": [ + "PA_BQ_BASIC_M", + "PA_BQ_ACCESTVPREMIUM_M", + "PA_BQ_TVDIGITALE_I", + "PA_BQ_BASIC_I", + "PA_BQ_BASICQUAD_I", + "PA_BQ_ACCESTV_M", + "PI_WHITELIST" + ], + "hasRightIAccess": true, + "hasRightMAccess": true, + "logos": [ + { + "definitionType": "mobileAppli", + "listLogos": [ + { + "size": "183x183", + "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_skynews%2F20151026_092415%2FmobileAppli%2Flogo_183x183.png" + } + ] + }, + { + "definitionType": "mobileAppliDark", + "listLogos": [ + { + "size": "183x183", + "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_skynews%2F20151026_092415%2FmobileAppliDark%2Flogo_183x183.png" + } + ] + }, + { + "definitionType": "webTVLogo", + "listLogos": [ + { + "size": "180x96", + "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_skynews%2F20151026_092415%2FwebTVLogo%2Flogo_180x96.png" + } + ] + }, + { + "definitionType": "webTVSquare", + "listLogos": [ + { + "size": "150x150", + "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_skynews%2F20151026_092415%2FwebTVSquare%2Flogo_150x150.png" + } + ] + } + ], + "mobileData": { + "wifiForbidden": false, + "wifiSecuredOnly": false, + "everywhereChannel": true, + "nomadismAllowed": true, + "drmLevels": [ + { + "definition": "SD", + "securedTerminal": [ + "DRM-HW", + "DRM-SW" + ], + "unsecuredTerminal": [ + "DRM-HW", + "DRM-SW" + ] + }, + { + "definition": "HD", + "securedTerminal": [ + "ND" + ], + "unsecuredTerminal": [ + "ND" + ] + } + ] + }, + "webdeviceData": { + "nomadismAllowed": true + }, + "technicalChannels": { + "live": [ + { + "techChannelId": "400259", + "type": "CLOUDTV", + "liveTargetURLRelativePath": "livetv_skynews_ctv", + "usi": 400259, + "isDRMized": true, + "csa5Disabled": true + } + ], + "npvr": [], + "startover": [] + } + }, + { + "name": "CNN INTERNATIONAL", + "editoChannelId": "livetv_cnn", + "lcn": 234, + "idEPG": 53, + "epgAvailable": true, + "epgTextSubstitution": "", + "displayOrder": 234, + "csaCode": 1, + "slogan": "Dépassez les frontières", + "catchupChannelId": "", + "newChannel": false, + "roamingBlocked": true, + "allowedDeviceCategories": [ + "M_ANDROID", + "M_IOS", + "M_TABLET_ANDROID", + "M_TABLET_IOS", + "W_AIRPLAY", + "W_CHROMECAST", + "W_LACLETV2", + "W_SMARTTV", + "W_PC", + "S_STB" + ], + "packages": [ + "PA_BQ_PASSACCESTVPREMIUM_M", + "PA_BQ_BASIC_M", + "PA_BQ_RE_TVMAX_M", + "PA_BQ_ACCESTVPREMIUM_M", + "PA_BQ_PAYG_M", + "PA_BQ_TVDIGITALE_I", + "PA_BQ_SPORT_M", + "PA_BQ_BASIC_I", + "PA_BQ_BASICQUAD_I", + "PA_BQ_ACCESTV_M", + "PI_WHITELIST" + ], + "hasRightIAccess": true, + "hasRightMAccess": true, + "logos": [ + { + "definitionType": "mobileAppli", + "listLogos": [ + { + "size": "183x183", + "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_cnn%2F20151026_092415%2FmobileAppli%2Flogo_183x183.png" + } + ] + }, + { + "definitionType": "mobileAppliDark", + "listLogos": [ + { + "size": "183x183", + "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_cnn%2F20151026_092415%2FmobileAppliDark%2Flogo_183x183.png" + } + ] + }, + { + "definitionType": "webTVLogo", + "listLogos": [ + { + "size": "180x96", + "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_cnn%2F20151026_092415%2FwebTVLogo%2Flogo_180x96.png" + } + ] + }, + { + "definitionType": "webTVSquare", + "listLogos": [ + { + "size": "150x150", + "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_cnn%2F20151026_092415%2FwebTVSquare%2Flogo_150x150.png" + } + ] + } + ], + "mobileData": { + "wifiForbidden": false, + "wifiSecuredOnly": false, + "everywhereChannel": true, + "nomadismAllowed": true, + "drmLevels": [ + { + "definition": "SD", + "securedTerminal": [ + "DRM-HW", + "DRM-SW" + ], + "unsecuredTerminal": [ + "DRM-HW", + "DRM-SW" + ] + }, + { + "definition": "HD", + "securedTerminal": [ + "ND" + ], + "unsecuredTerminal": [ + "ND" + ] + } + ] + }, + "webdeviceData": { + "nomadismAllowed": true + }, + "technicalChannels": { + "live": [ + { + "techChannelId": "400140", + "type": "CLOUDTV", + "liveTargetURLRelativePath": "livetv_cnn_ctv", + "usi": 400140, + "isDRMized": true, + "csa5Disabled": true + } + ], + "npvr": [ + { + "externalId": "livetv_cnn_ctv", + "techChannelId": "400140", + "type": "CLOUDTV", + "usi": 400140, + "isDRMized": true, + "antiAdskipping": "DEACTIVATED", + "csa5Disabled": true + } + ], + "startover": [] + } + }, + { + "name": "CNBC", + "editoChannelId": "livetv_cnbc", + "lcn": 235, + "idEPG": 51, + "epgAvailable": true, + "epgTextSubstitution": "", + "displayOrder": 235, + "csaCode": 1, + "slogan": "Leader de l information financière", + "catchupChannelId": "", + "newChannel": false, + "roamingBlocked": true, + "allowedDeviceCategories": [ + "M_ANDROID", + "M_IOS", + "M_TABLET_ANDROID", + "M_TABLET_IOS", + "W_AIRPLAY", + "W_CHROMECAST", + "W_LACLETV2", + "W_SMARTTV", + "W_PC", + "S_STB" + ], + "packages": [ + "PA_BQ_BASIC_M", + "PA_BQ_RE_TVMAX_M", + "PA_BQ_PAYG_M", + "PA_BQ_TVDIGITALE_I", + "PA_BQ_BASIC_I", + "PA_BQ_BASICQUAD_I", + "PA_BQ_ACCESTV_M", + "PI_WHITELIST" + ], + "hasRightIAccess": true, + "hasRightMAccess": true, + "logos": [ + { + "definitionType": "mobileAppli", + "listLogos": [ + { + "size": "183x183", + "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_cnbc%2F20151026_092415%2FmobileAppli%2Flogo_183x183.png" + } + ] + }, + { + "definitionType": "mobileAppliDark", + "listLogos": [ + { + "size": "183x183", + "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_cnbc%2F20151026_092415%2FmobileAppliDark%2Flogo_183x183.png" + } + ] + }, + { + "definitionType": "webTVLogo", + "listLogos": [ + { + "size": "180x96", + "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_cnbc%2F20151026_092415%2FwebTVLogo%2Flogo_180x96.png" + } + ] + }, + { + "definitionType": "webTVSquare", + "listLogos": [ + { + "size": "150x150", + "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_cnbc%2F20151026_092415%2FwebTVSquare%2Flogo_150x150.png" + } + ] + } + ], + "mobileData": { + "wifiForbidden": false, + "wifiSecuredOnly": false, + "everywhereChannel": true, + "nomadismAllowed": true, + "drmLevels": [ + { + "definition": "SD", + "securedTerminal": [ + "DRM-HW", + "DRM-SW" + ], + "unsecuredTerminal": [ + "DRM-HW", + "DRM-SW" + ] + }, + { + "definition": "HD", + "securedTerminal": [ + "ND" + ], + "unsecuredTerminal": [ + "ND" + ] + } + ] + }, + "webdeviceData": { + "nomadismAllowed": true + }, + "technicalChannels": { + "live": [ + { + "techChannelId": "400250", + "type": "CLOUDTV", + "liveTargetURLRelativePath": "livetv_cnbc_ctv", + "usi": 400250, + "isDRMized": true, + "csa5Disabled": true + } + ], + "npvr": [], + "startover": [] + } + }, + { + "name": "BLOOMBERG EUROPE", + "editoChannelId": "livetv_bloombergeurope", + "lcn": 236, + "idEPG": 410, + "epgAvailable": true, + "epgTextSubstitution": "", + "displayOrder": 236, + "csaCode": 1, + "slogan": ".", + "catchupChannelId": "", + "newChannel": false, + "roamingBlocked": true, + "allowedDeviceCategories": [ + "M_ANDROID", + "M_IOS", + "M_TABLET_ANDROID", + "M_TABLET_IOS", + "W_AIRPLAY", + "W_CHROMECAST", + "W_LACLETV2", + "W_SMARTTV", + "W_PC", + "S_STB" + ], + "packages": [ + "PA_BQ_BASIC_M", + "PA_BQ_RE_TVMAX_M", + "PA_BQ_PAYG_M", + "PA_BQ_TVDIGITALE_I", + "PA_BQ_BASIC_I", + "PA_BQ_BASICQUAD_I", + "PA_BQ_ACCESTV_M", + "PI_WHITELIST" + ], + "hasRightIAccess": true, + "hasRightMAccess": true, + "logos": [ + { + "definitionType": "mobileAppli", + "listLogos": [ + { + "size": "183x183", + "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_bloombergeurope%2F20151026_092415%2FmobileAppli%2Flogo_183x183.png" + } + ] + }, + { + "definitionType": "mobileAppliDark", + "listLogos": [ + { + "size": "183x183", + "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_bloombergeurope%2F20151026_092415%2FmobileAppliDark%2Flogo_183x183.png" + } + ] + }, + { + "definitionType": "webTVLogo", + "listLogos": [ + { + "size": "180x96", + "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_bloombergeurope%2F20151026_092415%2FwebTVLogo%2Flogo_180x96.png" + } + ] + }, + { + "definitionType": "webTVSquare", + "listLogos": [ + { + "size": "150x150", + "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_bloombergeurope%2F20151026_092415%2FwebTVSquare%2Flogo_150x150.png" + } + ] + } + ], + "mobileData": { + "wifiForbidden": false, + "wifiSecuredOnly": false, + "everywhereChannel": true, + "nomadismAllowed": true, + "drmLevels": [ + { + "definition": "SD", + "securedTerminal": [ + "DRM-HW", + "DRM-SW" + ], + "unsecuredTerminal": [ + "DRM-HW", + "DRM-SW" + ] + }, + { + "definition": "HD", + "securedTerminal": [ + "ND" + ], + "unsecuredTerminal": [ + "ND" + ] + } + ] + }, + "webdeviceData": { + "nomadismAllowed": true + }, + "technicalChannels": { + "live": [ + { + "techChannelId": "400249", + "type": "CLOUDTV", + "liveTargetURLRelativePath": "livetv_bloombergeurope_ctv", + "usi": 400249, + "isDRMized": true, + "csa5Disabled": true + } + ], + "npvr": [], + "startover": [] + } + }, + { + "name": "BBC NEWS", + "editoChannelId": "livetv_BBC_world_UMTS", + "lcn": 237, + "idEPG": 19, + "epgAvailable": true, + "epgTextSubstitution": "", + "displayOrder": 237, + "csaCode": 1, + "slogan": "Putting news first", + "catchupChannelId": "", + "newChannel": false, + "roamingBlocked": true, + "allowedDeviceCategories": [ + "M_ANDROID", + "M_IOS", + "M_TABLET_ANDROID", + "M_TABLET_IOS", + "W_AIRPLAY", + "W_CHROMECAST", + "W_LACLETV2", + "W_PC", + "W_SMARTTV", + "S_STB" + ], + "packages": [ + "PA_BQ_PASSACCESTVPREMIUM_M", + "PA_BQ_BASIC_M", + "PA_BQ_RE_TVMAX_M", + "PA_BQ_ACCESTVPREMIUM_M", + "PA_BQ_PAYG_M", + "PA_BQ_TVDIGITALE_I", + "PA_BQ_SPORT_M", + "PA_BQ_BASIC_I", + "PA_BQ_BASICQUAD_I", + "PA_BQ_ACCESTV_M", + "PI_WHITELIST" + ], + "hasRightIAccess": true, + "hasRightMAccess": true, + "logos": [ + { + "definitionType": "mobileAppli", + "listLogos": [ + { + "size": "183x183", + "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_BBC_world_UMTS%2F20230321_182925%2FmobileAppli%2Flogo_183x183.png" + } + ] + }, + { + "definitionType": "mobileAppliDark", + "listLogos": [ + { + "size": "183x183", + "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_BBC_world_UMTS%2F20230321_182925%2FmobileAppliDark%2Flogo_183x183.png" + } + ] + }, + { + "definitionType": "webTVLogo", + "listLogos": [ + { + "size": "180x96", + "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_BBC_world_UMTS%2F20230321_182925%2FwebTVLogo%2Flogo_180x96.png" + } + ] + }, + { + "definitionType": "webTVSquare", + "listLogos": [ + { + "size": "150x150", + "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_BBC_world_UMTS%2F20230321_182925%2FwebTVSquare%2Flogo_150x150.png" + } + ] + } + ], + "mobileData": { + "wifiForbidden": false, + "wifiSecuredOnly": false, + "everywhereChannel": true, + "nomadismAllowed": true, + "drmLevels": [ + { + "definition": "SD", + "securedTerminal": [ + "DRM-HW", + "DRM-SW" + ], + "unsecuredTerminal": [ + "DRM-HW", + "DRM-SW" + ] + }, + { + "definition": "HD", + "securedTerminal": [ + "ND" + ], + "unsecuredTerminal": [ + "ND" + ] + } + ] + }, + "webdeviceData": { + "nomadismAllowed": true + }, + "technicalChannels": { + "live": [ + { + "techChannelId": "400248", + "type": "CLOUDTV", + "liveTargetURLRelativePath": "livetv_bbcworldnews_ctv", + "usi": 400248, + "isDRMized": true, + "csa5Disabled": true + } + ], + "npvr": [], + "startover": [] + } + }, + { + "name": "AL JAZEERA Anglais", + "editoChannelId": "livetv_al_jazeera_anglais", + "lcn": 238, + "idEPG": 525, + "epgAvailable": true, + "epgTextSubstitution": "", + "displayOrder": 238, + "csaCode": 1, + "slogan": "Setting the news agenda", + "catchupChannelId": "", + "newChannel": false, + "roamingBlocked": true, + "allowedDeviceCategories": [ + "M_ANDROID", + "M_IOS", + "M_TABLET_ANDROID", + "M_TABLET_IOS", + "W_AIRPLAY", + "W_CHROMECAST", + "W_LACLETV2", + "W_SMARTTV", + "W_PC", + "S_STB" + ], + "packages": [ + "PA_BQ_PASSACCESTVPREMIUM_M", + "PA_BQ_BASIC_M", + "PA_BQ_RE_TVMAX_M", + "PA_BQ_ACCESTVPREMIUM_M", + "PA_BQ_PAYG_M", + "PA_BQ_TVDIGITALE_I", + "PA_BQ_SPORT_M", + "PA_BQ_BASIC_I", + "PA_BQ_BASICQUAD_I", + "PA_BQ_ACCESTV_M", + "PI_WHITELIST" + ], + "hasRightIAccess": true, + "hasRightMAccess": true, + "logos": [ + { + "definitionType": "mobileAppli", + "listLogos": [ + { + "size": "183x183", + "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_al_jazeera_anglais%2F20151026_092415%2FmobileAppli%2Flogo_183x183.png" + } + ] + }, + { + "definitionType": "mobileAppliDark", + "listLogos": [ + { + "size": "183x183", + "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_al_jazeera_anglais%2F20151026_092415%2FmobileAppliDark%2Flogo_183x183.png" + } + ] + }, + { + "definitionType": "webTVLogo", + "listLogos": [ + { + "size": "180x96", + "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_al_jazeera_anglais%2F20151026_092415%2FwebTVLogo%2Flogo_180x96.png" + } + ] + }, + { + "definitionType": "webTVSquare", + "listLogos": [ + { + "size": "150x150", + "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_al_jazeera_anglais%2F20151026_092415%2FwebTVSquare%2Flogo_150x150.png" + } + ] + } + ], + "mobileData": { + "wifiForbidden": false, + "wifiSecuredOnly": false, + "everywhereChannel": true, + "nomadismAllowed": true, + "drmLevels": [ + { + "definition": "SD", + "securedTerminal": [ + "DRM-HW", + "DRM-SW" + ], + "unsecuredTerminal": [ + "DRM-HW", + "DRM-SW" + ] + }, + { + "definition": "HD", + "securedTerminal": [ + "ND" + ], + "unsecuredTerminal": [ + "ND" + ] + } + ] + }, + "webdeviceData": { + "nomadismAllowed": true + }, + "technicalChannels": { + "live": [ + { + "techChannelId": "400246", + "type": "CLOUDTV", + "liveTargetURLRelativePath": "livetv_aljazeeraanglais_ctv", + "usi": 400246, + "isDRMized": true, + "csa5Disabled": true + } + ], + "npvr": [], + "startover": [] + } + }, + { + "name": "AFRICA 24", + "editoChannelId": "livetv_africa24", + "lcn": 239, + "idEPG": 90239, + "epgAvailable": false, + "epgTextSubstitution": "", + "displayOrder": 239, + "csaCode": 1, + "slogan": "1ère Chaîne Info sur l'Afrique", + "catchupChannelId": "", + "newChannel": false, + "roamingBlocked": true, + "allowedDeviceCategories": [ + "M_ANDROID", + "M_IOS", + "M_TABLET_ANDROID", + "M_TABLET_IOS", + "W_AIRPLAY", + "W_CHROMECAST", + "W_LACLETV2", + "W_SMARTTV", + "W_PC", + "S_STB" + ], + "packages": [ + "PA_BQ_BASIC_M", + "PA_BQ_RE_TVMAX_M", + "PA_BQ_PAYG_M", + "PA_BQ_TVDIGITALE_I", + "PA_BQ_BASIC_I", + "PA_BQ_BASICQUAD_I", + "PA_BQ_ACCESTV_M", + "PI_WHITELIST" + ], + "hasRightIAccess": true, + "hasRightMAccess": true, + "logos": [ + { + "definitionType": "mobileAppli", + "listLogos": [ + { + "size": "183x183", + "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_africa24%2F20151026_092415%2FmobileAppli%2Flogo_183x183.png" + } + ] + }, + { + "definitionType": "mobileAppliDark", + "listLogos": [ + { + "size": "183x183", + "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_africa24%2F20151026_092415%2FmobileAppliDark%2Flogo_183x183.png" + } + ] + }, + { + "definitionType": "webTVLogo", + "listLogos": [ + { + "size": "180x96", + "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_africa24%2F20151026_092415%2FwebTVLogo%2Flogo_180x96.png" + } + ] + }, + { + "definitionType": "webTVSquare", + "listLogos": [ + { + "size": "150x150", + "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_africa24%2F20151026_092415%2FwebTVSquare%2Flogo_150x150.png" + } + ] + } + ], + "mobileData": { + "wifiForbidden": false, + "wifiSecuredOnly": false, + "everywhereChannel": true, + "nomadismAllowed": true, + "drmLevels": [ + { + "definition": "SD", + "securedTerminal": [ + "DRM-HW", + "DRM-SW" + ], + "unsecuredTerminal": [ + "DRM-HW", + "DRM-SW" + ] + }, + { + "definition": "HD", + "securedTerminal": [ + "ND" + ], + "unsecuredTerminal": [ + "ND" + ] + } + ] + }, + "webdeviceData": { + "nomadismAllowed": true + }, + "technicalChannels": { + "live": [ + { + "techChannelId": "400244", + "type": "CLOUDTV", + "liveTargetURLRelativePath": "livetv_africa24_ctv", + "usi": 400244, + "isDRMized": true, + "csa5Disabled": true + } + ], + "npvr": [], + "startover": [] + } + }, + { + "name": "FRANCE 24 Arabe", + "editoChannelId": "livetv_france24_arabe", + "lcn": 240, + "idEPG": 3413, + "epgAvailable": true, + "epgTextSubstitution": "", + "displayOrder": 240, + "csaCode": 1, + "slogan": "L'actualité internationale 24H/24", + "catchupChannelId": "", + "newChannel": false, + "roamingBlocked": true, + "allowedDeviceCategories": [ + "M_ANDROID", + "M_IOS", + "M_TABLET_ANDROID", + "M_TABLET_IOS", + "W_AIRPLAY", + "W_CHROMECAST", + "W_LACLETV2", + "W_PC", + "W_SMARTTV", + "S_STB" + ], + "packages": [ + "PA_BQ_PASSACCESTVPREMIUM_M", + "PA_BQ_BASIC_M", + "PA_BQ_RE_TVMAX_M", + "PA_BQ_ACCESTVPREMIUM_M", + "PA_BQ_PAYG_M", + "PA_BQ_TVDIGITALE_I", + "PA_BQ_SPORT_M", + "PA_BQ_BASIC_I", + "PA_BQ_BASICQUAD_I", + "PA_BQ_ACCESTV_M", + "PI_WHITELIST" + ], + "hasRightIAccess": true, + "hasRightMAccess": true, + "logos": [ + { + "definitionType": "mobileAppli", + "listLogos": [ + { + "size": "183x183", + "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_france24_arabe%2F20220922_114506%2FmobileAppli%2Flogo_183x183.png" + } + ] + }, + { + "definitionType": "mobileAppliDark", + "listLogos": [ + { + "size": "183x183", + "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_france24_arabe%2F20220922_114506%2FmobileAppliDark%2Flogo_183x183.png" + } + ] + }, + { + "definitionType": "webTVLogo", + "listLogos": [ + { + "size": "180x96", + "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_france24_arabe%2F20220922_114506%2FwebTVLogo%2Flogo_180x96.png" + } + ] + }, + { + "definitionType": "webTVSquare", + "listLogos": [ + { + "size": "150x150", + "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_france24_arabe%2F20220922_114506%2FwebTVSquare%2Flogo_150x150.png" + } + ] + } + ], + "mobileData": { + "wifiForbidden": false, + "wifiSecuredOnly": false, + "everywhereChannel": true, + "nomadismAllowed": true, + "drmLevels": [ + { + "definition": "SD", + "securedTerminal": [ + "DRM-HW", + "DRM-SW" + ], + "unsecuredTerminal": [ + "DRM-HW", + "DRM-SW" + ] + }, + { + "definition": "HD", + "securedTerminal": [ + "ND" + ], + "unsecuredTerminal": [ + "ND" + ] + } + ] + }, + "webdeviceData": { + "nomadismAllowed": true + }, + "technicalChannels": { + "live": [ + { + "techChannelId": "400253", + "type": "CLOUDTV", + "liveTargetURLRelativePath": "livetv_france24arabe_ctv", + "usi": 400253, + "isDRMized": true, + "csa5Disabled": true + } + ], + "npvr": [], + "startover": [] + } + }, + { + "name": "AL JAZEERA Arabic", + "editoChannelId": "livetv_al_jazeera", + "lcn": 241, + "idEPG": 90241, + "epgAvailable": false, + "epgTextSubstitution": "", + "displayOrder": 241, + "csaCode": 1, + "slogan": "La chaîne d'information du Qatar", + "catchupChannelId": "", + "newChannel": false, + "roamingBlocked": true, + "allowedDeviceCategories": [ + "M_ANDROID", + "M_IOS", + "M_TABLET_ANDROID", + "M_TABLET_IOS", + "W_AIRPLAY", + "W_CHROMECAST", + "W_LACLETV2", + "W_SMARTTV", + "W_PC", + "S_STB" + ], + "packages": [ + "PA_BQ_PASSACCESTVPREMIUM_M", + "PA_BQ_BASIC_M", + "PA_BQ_RE_TVMAX_M", + "PA_BQ_ACCESTVPREMIUM_M", + "PA_BQ_PAYG_M", + "PA_BQ_TVDIGITALE_I", + "PA_BQ_SPORT_M", + "PA_BQ_BASIC_I", + "PA_BQ_BASICQUAD_I", + "PA_BQ_ACCESTV_M", + "PI_WHITELIST" + ], + "hasRightIAccess": true, + "hasRightMAccess": true, + "logos": [ + { + "definitionType": "mobileAppli", + "listLogos": [ + { + "size": "183x183", + "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_al_jazeera%2F20151026_092415%2FmobileAppli%2Flogo_183x183.png" + } + ] + }, + { + "definitionType": "mobileAppliDark", + "listLogos": [ + { + "size": "183x183", + "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_al_jazeera%2F20151026_092415%2FmobileAppliDark%2Flogo_183x183.png" + } + ] + }, + { + "definitionType": "webTVLogo", + "listLogos": [ + { + "size": "180x96", + "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_al_jazeera%2F20151026_092415%2FwebTVLogo%2Flogo_180x96.png" + } + ] + }, + { + "definitionType": "webTVSquare", + "listLogos": [ + { + "size": "150x150", + "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_al_jazeera%2F20151026_092415%2FwebTVSquare%2Flogo_150x150.png" + } + ] + } + ], + "mobileData": { + "wifiForbidden": false, + "wifiSecuredOnly": false, + "everywhereChannel": true, + "nomadismAllowed": true, + "drmLevels": [ + { + "definition": "SD", + "securedTerminal": [ + "DRM-HW", + "DRM-SW" + ], + "unsecuredTerminal": [ + "DRM-HW", + "DRM-SW" + ] + }, + { + "definition": "HD", + "securedTerminal": [ + "ND" + ], + "unsecuredTerminal": [ + "ND" + ] + } + ] + }, + "webdeviceData": { + "nomadismAllowed": true + }, + "technicalChannels": { + "live": [ + { + "techChannelId": "400247", + "type": "CLOUDTV", + "liveTargetURLRelativePath": "livetv_aljazeeraarabe_ctv", + "usi": 400247, + "isDRMized": true, + "csa5Disabled": true + } + ], + "npvr": [], + "startover": [] + } + }, + { + "name": "MEDI 1 TV", + "editoChannelId": "livetv_medi1tv", + "lcn": 242, + "idEPG": 90242, + "epgAvailable": false, + "epgTextSubstitution": "", + "displayOrder": 242, + "csaCode": 1, + "slogan": "Un nouveau regard sur l’information", + "catchupChannelId": "", + "newChannel": false, + "roamingBlocked": true, + "allowedDeviceCategories": [ + "M_ANDROID", + "M_IOS", + "M_TABLET_ANDROID", + "M_TABLET_IOS", + "W_AIRPLAY", + "W_CHROMECAST", + "W_LACLETV2", + "W_SMARTTV", + "W_PC", + "S_STB" + ], + "packages": [ + "PA_BQ_BASIC_M", + "PA_BQ_ACCESTVPREMIUM_M", + "PA_BQ_TVDIGITALE_I", + "PA_BQ_BASIC_I", + "PA_BQ_BASICQUAD_I", + "PA_BQ_ACCESTV_M", + "PI_WHITELIST" + ], + "hasRightIAccess": true, + "hasRightMAccess": true, + "logos": [ + { + "definitionType": "mobileAppli", + "listLogos": [ + { + "size": "183x183", + "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_medi1tv%2F20170314_120000%2FmobileAppli%2Flogo_183x183.png" + } + ] + }, + { + "definitionType": "mobileAppliDark", + "listLogos": [ + { + "size": "183x183", + "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_medi1tv%2F20170314_120000%2FmobileAppliDark%2Flogo_183x183.png" + } + ] + }, + { + "definitionType": "webTVLogo", + "listLogos": [ + { + "size": "180x96", + "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_medi1tv%2F20170314_120000%2FwebTVLogo%2Flogo_180x96.png" + } + ] + }, + { + "definitionType": "webTVSquare", + "listLogos": [ + { + "size": "150x150", + "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_medi1tv%2F20170314_120000%2FwebTVSquare%2Flogo_150x150.png" + } + ] + } + ], + "mobileData": { + "wifiForbidden": false, + "wifiSecuredOnly": false, + "everywhereChannel": true, + "nomadismAllowed": true, + "drmLevels": [ + { + "definition": "SD", + "securedTerminal": [ + "DRM-HW", + "DRM-SW" + ], + "unsecuredTerminal": [ + "DRM-HW", + "DRM-SW" + ] + }, + { + "definition": "HD", + "securedTerminal": [ + "ND" + ], + "unsecuredTerminal": [ + "ND" + ] + } + ] + }, + "webdeviceData": { + "nomadismAllowed": true + }, + "technicalChannels": { + "live": [ + { + "techChannelId": "400255", + "type": "CLOUDTV", + "liveTargetURLRelativePath": "livetv_medi1tv_ctv", + "usi": 400255, + "isDRMized": true, + "csa5Disabled": true + } + ], + "npvr": [], + "startover": [] + } + }, + { + "name": "I24NEWS", + "editoChannelId": "livetv_i24news", + "lcn": 243, + "idEPG": 781, + "epgAvailable": true, + "epgTextSubstitution": "", + "displayOrder": 243, + "csaCode": 1, + "slogan": "Voir plus loin", + "catchupChannelId": "", + "newChannel": false, + "roamingBlocked": true, + "allowedDeviceCategories": [ + "M_ANDROID", + "M_IOS", + "M_TABLET_ANDROID", + "M_TABLET_IOS", + "W_AIRPLAY", + "W_CHROMECAST", + "W_LACLETV2", + "W_SMARTTV", + "W_PC", + "S_STB" + ], + "packages": [ + "PA_BQ_BASIC_M", + "PA_BQ_RE_TVMAX_M", + "PA_BQ_PAYG_M", + "PA_BQ_TVDIGITALE_I", + "PA_BQ_BASIC_I", + "PA_BQ_BASICQUAD_I", + "PA_BQ_ACCESTV_M", + "PI_WHITELIST" + ], + "hasRightIAccess": true, + "hasRightMAccess": true, + "logos": [ + { + "definitionType": "mobileAppli", + "listLogos": [ + { + "size": "183x183", + "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_i24news%2F20151026_092415%2FmobileAppli%2Flogo_183x183.png" + } + ] + }, + { + "definitionType": "mobileAppliDark", + "listLogos": [ + { + "size": "183x183", + "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_i24news%2F20151026_092415%2FmobileAppliDark%2Flogo_183x183.png" + } + ] + }, + { + "definitionType": "webTVLogo", + "listLogos": [ + { + "size": "180x96", + "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_i24news%2F20151026_092415%2FwebTVLogo%2Flogo_180x96.png" + } + ] + }, + { + "definitionType": "webTVSquare", + "listLogos": [ + { + "size": "150x150", + "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_i24news%2F20151026_092415%2FwebTVSquare%2Flogo_150x150.png" + } + ] + } + ], + "mobileData": { + "wifiForbidden": false, + "wifiSecuredOnly": false, + "everywhereChannel": true, + "nomadismAllowed": true, + "drmLevels": [ + { + "definition": "SD", + "securedTerminal": [ + "DRM-HW", + "DRM-SW" + ], + "unsecuredTerminal": [ + "DRM-HW", + "DRM-SW" + ] + }, + { + "definition": "HD", + "securedTerminal": [ + "ND" + ], + "unsecuredTerminal": [ + "ND" + ] + } + ] + }, + "webdeviceData": { + "nomadismAllowed": true + }, + "technicalChannels": { + "live": [ + { + "techChannelId": "400148", + "type": "CLOUDTV", + "liveTargetURLRelativePath": "livetv_i24news_ctv", + "usi": 400148, + "isDRMized": true, + "csa5Disabled": true + } + ], + "npvr": [ + { + "externalId": "livetv_i24news_ctv", + "techChannelId": "400148", + "type": "CLOUDTV", + "usi": 400148, + "isDRMized": true, + "antiAdskipping": "DEACTIVATED", + "csa5Disabled": true + } + ], + "startover": [] + } + }, + { + "name": "NHK WORLD - JAPAN", + "editoChannelId": "livetv_nhkworld", + "lcn": 244, + "idEPG": 830, + "epgAvailable": true, + "epgTextSubstitution": "", + "displayOrder": 244, + "csaCode": 1, + "slogan": "Un regard sur l'Asie", + "catchupChannelId": "", + "newChannel": false, + "roamingBlocked": true, + "allowedDeviceCategories": [ + "M_ANDROID", + "M_IOS", + "M_TABLET_ANDROID", + "M_TABLET_IOS", + "W_AIRPLAY", + "W_CHROMECAST", + "W_LACLETV2", + "W_PC", + "W_SMARTTV", + "S_STB" + ], + "packages": [ + "PA_BQ_PASSACCESTVPREMIUM_M", + "PA_BQ_BASIC_M", + "PA_BQ_RE_TVMAX_M", + "PA_BQ_ACCESTVPREMIUM_M", + "PA_BQ_PAYG_M", + "PA_BQ_TVDIGITALE_I", + "PA_BQ_SPORT_M", + "PA_BQ_BASIC_I", + "PA_BQ_BASICQUAD_I", + "PA_BQ_ACCESTV_M", + "PI_WHITELIST" + ], + "hasRightIAccess": true, + "hasRightMAccess": true, + "logos": [ + { + "definitionType": "mobileAppli", + "listLogos": [ + { + "size": "183x183", + "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_nhkworld%2F20230109_175836%2FmobileAppli%2Flogo_183x183.png" + } + ] + }, + { + "definitionType": "mobileAppliDark", + "listLogos": [ + { + "size": "183x183", + "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_nhkworld%2F20230109_175836%2FmobileAppliDark%2Flogo_183x183.png" + } + ] + }, + { + "definitionType": "webTVLogo", + "listLogos": [ + { + "size": "180x96", + "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_nhkworld%2F20230109_175836%2FwebTVLogo%2Flogo_180x96.png" + } + ] + }, + { + "definitionType": "webTVSquare", + "listLogos": [ + { + "size": "150x150", + "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_nhkworld%2F20230109_175836%2FwebTVSquare%2Flogo_150x150.png" + } + ] + } + ], + "mobileData": { + "wifiForbidden": false, + "wifiSecuredOnly": false, + "everywhereChannel": true, + "nomadismAllowed": true, + "drmLevels": [ + { + "definition": "SD", + "securedTerminal": [ + "DRM-HW", + "DRM-SW" + ], + "unsecuredTerminal": [ + "DRM-HW", + "DRM-SW" + ] + }, + { + "definition": "HD", + "securedTerminal": [ + "ND" + ], + "unsecuredTerminal": [ + "ND" + ] + } + ] + }, + "webdeviceData": { + "nomadismAllowed": true + }, + "technicalChannels": { + "live": [ + { + "techChannelId": "400264", + "type": "CLOUDTV", + "liveTargetURLRelativePath": "livetv_nhkworld_ctv", + "usi": 400264, + "isDRMized": true, + "csa5Disabled": true + } + ], + "npvr": [], + "startover": [] + } + }, + { + "name": "DEUTSCHE WELLE", + "editoChannelId": "livetv_deutschewelle", + "lcn": 245, + "idEPG": 61, + "epgAvailable": true, + "epgTextSubstitution": "", + "displayOrder": 245, + "csaCode": 1, + "slogan": "Made for minds", + "catchupChannelId": "", + "newChannel": true, + "roamingBlocked": true, + "allowedDeviceCategories": [ + "M_ANDROID", + "M_IOS", + "M_TABLET_ANDROID", + "M_TABLET_IOS", + "W_AIRPLAY", + "W_CHROMECAST", + "W_LACLETV2", + "W_PC", + "W_SMARTTV", + "S_STB" + ], + "packages": [ + "PA_BQ_BASIC_M", + "PA_BQ_TVDIGITALE_I", + "PA_BQ_BASIC_I", + "PA_BQ_BASICQUAD_I", + "PI_WHITELIST" + ], + "hasRightIAccess": true, + "hasRightMAccess": true, + "logos": [ + { + "definitionType": "mobileAppli", + "listLogos": [ + { + "size": "183x183", + "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_deutschewelle%2F20220615_153218%2FmobileAppli%2Flogo_183x183.png" + } + ] + }, + { + "definitionType": "mobileAppliDark", + "listLogos": [ + { + "size": "183x183", + "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_deutschewelle%2F20220615_153218%2FmobileAppliDark%2Flogo_183x183.png" + } + ] + }, + { + "definitionType": "webTVLogo", + "listLogos": [ + { + "size": "180x96", + "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_deutschewelle%2F20220615_153218%2FwebTVLogo%2Flogo_180x96.png" + } + ] + }, + { + "definitionType": "webTVSquare", + "listLogos": [ + { + "size": "150x150", + "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_deutschewelle%2F20220615_153218%2FwebTVSquare%2Flogo_150x150.png" + } + ] + } + ], + "mobileData": { + "wifiForbidden": false, + "wifiSecuredOnly": false, + "everywhereChannel": true, + "nomadismAllowed": true, + "drmLevels": [ + { + "definition": "SD", + "securedTerminal": [ + "DRM-HW", + "DRM-SW" + ], + "unsecuredTerminal": [ + "DRM-HW", + "DRM-SW" + ] + }, + { + "definition": "HD", + "securedTerminal": [ + "DRM-HW", + "DRM-SW" + ], + "unsecuredTerminal": [ + "DRM-HW", + "DRM-SW" + ] + } + ] + }, + "webdeviceData": { + "nomadismAllowed": true + }, + "technicalChannels": { + "live": [ + { + "techChannelId": "400182", + "type": "CLOUDTV", + "liveTargetURLRelativePath": "livetv_deutsche_welle_english_ctv", + "usi": 400182, + "isDRMized": true, + "csa5Disabled": true + } + ], + "npvr": [ + { + "externalId": "livetv_deutsche_welle_english_ctv", + "techChannelId": "400182", + "type": "CLOUDTV", + "usi": 400182, + "isDRMized": true, + "antiAdskipping": "DEACTIVATED", + "csa5Disabled": true + } + ], + "startover": [] + } + }, + { + "name": "TRT WORLD", + "editoChannelId": "livetv_trtworld", + "lcn": 246, + "idEPG": 90246, + "epgAvailable": false, + "epgTextSubstitution": "", + "displayOrder": 246, + "csaCode": 1, + "slogan": "Where news inspires change", + "catchupChannelId": "", + "newChannel": true, + "roamingBlocked": true, + "allowedDeviceCategories": [ + "M_ANDROID", + "M_IOS", + "M_TABLET_ANDROID", + "M_TABLET_IOS", + "W_AIRPLAY", + "W_CHROMECAST", + "W_LACLETV2", + "W_SMARTTV", + "W_PC", + "S_STB" + ], + "packages": [ + "PA_BQ_PASSACCESTVPREMIUM_M", + "PA_BQ_BASIC_M", + "PA_BQ_RE_TVMAX_M", + "PA_BQ_ACCESTVPREMIUM_M", + "PA_BQ_TVDIGITALE_I", + "PA_BQ_SPORT_M", + "PA_BQ_BASIC_I", + "PA_BQ_BASICQUAD_I", + "PA_BQ_ACCESTV_M", + "PI_WHITELIST" + ], + "hasRightIAccess": true, + "hasRightMAccess": true, + "logos": [ + { + "definitionType": "mobileAppli", + "listLogos": [ + { + "size": "183x183", + "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_trtworld%2F20190701_094947%2FmobileAppli%2Flogo_183x183.png" + } + ] + }, + { + "definitionType": "mobileAppliDark", + "listLogos": [ + { + "size": "183x183", + "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_trtworld%2F20190701_094947%2FmobileAppliDark%2Flogo_183x183.png" + } + ] + }, + { + "definitionType": "webTVLogo", + "listLogos": [ + { + "size": "180x96", + "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_trtworld%2F20190701_094947%2FwebTVLogo%2Flogo_180x96.png" + } + ] + }, + { + "definitionType": "webTVSquare", + "listLogos": [ + { + "size": "150x150", + "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_trtworld%2F20190701_094947%2FwebTVSquare%2Flogo_150x150.png" + } + ] + } + ], + "mobileData": { + "wifiForbidden": false, + "wifiSecuredOnly": false, + "everywhereChannel": true, + "nomadismAllowed": true, + "drmLevels": [ + { + "definition": "SD", + "securedTerminal": [ + "DRM-HW", + "DRM-SW" + ], + "unsecuredTerminal": [ + "DRM-HW", + "DRM-SW" + ] + }, + { + "definition": "HD", + "securedTerminal": [ + "ND" + ], + "unsecuredTerminal": [ + "ND" + ] + } + ] + }, + "webdeviceData": { + "nomadismAllowed": true + }, + "technicalChannels": { + "live": [ + { + "techChannelId": "400262", + "type": "CLOUDTV", + "liveTargetURLRelativePath": "livetv_trtworld_ctv", + "usi": 400262, + "isDRMized": true, + "csa5Disabled": true + } + ], + "npvr": [], + "startover": [] + } + }, + { + "name": "FRANCE 24 Espagnol", + "editoChannelId": "livetv_france24_espagnol", + "lcn": 247, + "idEPG": 3562, + "epgAvailable": true, + "epgTextSubstitution": "", + "displayOrder": 247, + "csaCode": 1, + "slogan": "L'actualité internationale 24H/24", + "catchupChannelId": "", + "newChannel": true, + "roamingBlocked": false, + "allowedDeviceCategories": [ + "M_ANDROID", + "M_IOS", + "M_TABLET_ANDROID", + "M_TABLET_IOS", + "W_AIRPLAY", + "W_CHROMECAST", + "W_LACLETV2", + "W_PC", + "W_SMARTTV", + "S_STB" + ], + "packages": [ + "PA_BQ_BASIC_M", + "PA_BQ_TVDIGITALE_I", + "PA_BQ_BASIC_I", + "PA_BQ_BASICQUAD_I", + "PI_WHITELIST" + ], + "hasRightIAccess": true, + "hasRightMAccess": true, + "logos": [ + { + "definitionType": "mobileAppli", + "listLogos": [ + { + "size": "183x183", + "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_france24_espagnol%2F20220922_114506%2FmobileAppli%2Flogo_183x183.png" + } + ] + }, + { + "definitionType": "mobileAppliDark", + "listLogos": [ + { + "size": "183x183", + "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_france24_espagnol%2F20220922_114506%2FmobileAppliDark%2Flogo_183x183.png" + } + ] + }, + { + "definitionType": "webTVLogo", + "listLogos": [ + { + "size": "180x96", + "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_france24_espagnol%2F20220922_114506%2FwebTVLogo%2Flogo_180x96.png" + } + ] + }, + { + "definitionType": "webTVSquare", + "listLogos": [ + { + "size": "150x150", + "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_france24_espagnol%2F20220922_114506%2FwebTVSquare%2Flogo_150x150.png" + } + ] + } + ], + "mobileData": { + "wifiForbidden": false, + "wifiSecuredOnly": false, + "everywhereChannel": true, + "nomadismAllowed": true, + "drmLevels": [ + { + "definition": "SD", + "securedTerminal": [ + "DRM-HW", + "DRM-SW" + ], + "unsecuredTerminal": [ + "DRM-HW", + "DRM-SW" + ] + }, + { + "definition": "HD", + "securedTerminal": [ + "DRM-HW", + "DRM-SW" + ], + "unsecuredTerminal": [ + "NO-DRM" + ] + } + ] + }, + "webdeviceData": { + "nomadismAllowed": true + }, + "technicalChannels": { + "live": [ + { + "techChannelId": "400238", + "type": "CLOUDTV", + "liveTargetURLRelativePath": "livetv_france_24_espagnol_ctv", + "usi": 400238, + "isDRMized": true, + "csa5Disabled": true + } + ], + "npvr": [], + "startover": [] + } + }, + { + "name": "FRANCE 3 ALPES", + "editoChannelId": "livetv_france3alpes", + "lcn": 301, + "idEPG": 1921, + "epgAvailable": true, + "epgTextSubstitution": "", + "displayOrder": 301, + "csaCode": 1, + "slogan": "Nos régions nous inspirent, nos régions vou", + "catchupChannelId": "", + "newChannel": false, + "roamingBlocked": true, + "allowedDeviceCategories": [ + "M_ANDROID", + "M_IOS", + "M_TABLET_ANDROID", + "M_TABLET_IOS", + "W_AIRPLAY", + "W_CHROMECAST", + "W_LACLETV2", + "W_SMARTTV", + "W_PC", + "S_STB" + ], + "packages": [ + "PA_BQ_BASIC_M", + "PA_BQ_ACCESTVPREMIUM_M", + "PA_BQ_TVDIGITALE_I", + "PA_BQ_BASIC_I", + "PA_BQ_BASICQUAD_I", + "PI_WHITELIST" + ], + "hasRightIAccess": true, + "hasRightMAccess": true, + "logos": [ + { + "definitionType": "mobileAppli", + "listLogos": [ + { + "size": "183x183", + "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_france3alpes%2F20181002_122427%2FmobileAppli%2Flogo_183x183.png" + } + ] + }, + { + "definitionType": "mobileAppliDark", + "listLogos": [ + { + "size": "183x183", + "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_france3alpes%2F20181002_122427%2FmobileAppliDark%2Flogo_183x183.png" + } + ] + }, + { + "definitionType": "webTVLogo", + "listLogos": [ + { + "size": "180x96", + "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_france3alpes%2F20181002_122427%2FwebTVLogo%2Flogo_180x96.png" + } + ] + }, + { + "definitionType": "webTVSquare", + "listLogos": [ + { + "size": "150x150", + "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_france3alpes%2F20181002_122427%2FwebTVSquare%2Flogo_150x150.png" + } + ] + } + ], + "mobileData": { + "wifiForbidden": false, + "wifiSecuredOnly": false, + "everywhereChannel": true, + "nomadismAllowed": true, + "drmLevels": [ + { + "definition": "SD", + "securedTerminal": [ + "DRM-HW", + "DRM-SW" + ], + "unsecuredTerminal": [ + "DRM-HW", + "DRM-SW" + ] + }, + { + "definition": "HD", + "securedTerminal": [ + "ND" + ], + "unsecuredTerminal": [ + "ND" + ] + } + ] + }, + "webdeviceData": { + "nomadismAllowed": true + }, + "technicalChannels": { + "live": [ + { + "techChannelId": "400047", + "type": "CLOUDTV", + "liveTargetURLRelativePath": "livetv_f3_alpes_ctv", + "usi": 400047, + "isDRMized": true, + "csa5Disabled": true + } + ], + "npvr": [ + { + "externalId": "livetv_f3_alpes_ctv", + "techChannelId": "400047", + "type": "CLOUDTV", + "usi": 400047, + "isDRMized": true, + "antiAdskipping": "DEACTIVATED", + "csa5Disabled": true + } + ], + "startover": [] + } + }, + { + "name": "FRANCE 3 ALSACE", + "editoChannelId": "livetv_france3alsace", + "lcn": 302, + "idEPG": 1922, + "epgAvailable": true, + "epgTextSubstitution": "", + "displayOrder": 302, + "csaCode": 1, + "slogan": "Nos régions nous inspirent, nos régions vou", + "catchupChannelId": "", + "newChannel": false, + "roamingBlocked": true, + "allowedDeviceCategories": [ + "M_ANDROID", + "M_IOS", + "M_TABLET_ANDROID", + "M_TABLET_IOS", + "W_AIRPLAY", + "W_CHROMECAST", + "W_LACLETV2", + "W_SMARTTV", + "W_PC", + "S_STB" + ], + "packages": [ + "PA_BQ_BASIC_M", + "PA_BQ_ACCESTVPREMIUM_M", + "PA_BQ_TVDIGITALE_I", + "PA_BQ_BASIC_I", + "PA_BQ_BASICQUAD_I", + "PI_WHITELIST" + ], + "hasRightIAccess": true, + "hasRightMAccess": true, + "logos": [ + { + "definitionType": "mobileAppli", + "listLogos": [ + { + "size": "183x183", + "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_france3alsace%2F20181002_122933%2FmobileAppli%2Flogo_183x183.png" + } + ] + }, + { + "definitionType": "mobileAppliDark", + "listLogos": [ + { + "size": "183x183", + "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_france3alsace%2F20181002_122933%2FmobileAppliDark%2Flogo_183x183.png" + } + ] + }, + { + "definitionType": "webTVLogo", + "listLogos": [ + { + "size": "180x96", + "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_france3alsace%2F20181002_122933%2FwebTVLogo%2Flogo_180x96.png" + } + ] + }, + { + "definitionType": "webTVSquare", + "listLogos": [ + { + "size": "150x150", + "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_france3alsace%2F20181002_122933%2FwebTVSquare%2Flogo_150x150.png" + } + ] + } + ], + "mobileData": { + "wifiForbidden": false, + "wifiSecuredOnly": false, + "everywhereChannel": true, + "nomadismAllowed": true, + "drmLevels": [ + { + "definition": "SD", + "securedTerminal": [ + "DRM-HW", + "DRM-SW" + ], + "unsecuredTerminal": [ + "DRM-HW", + "DRM-SW" + ] + }, + { + "definition": "HD", + "securedTerminal": [ + "ND" + ], + "unsecuredTerminal": [ + "ND" + ] + } + ] + }, + "webdeviceData": { + "nomadismAllowed": true + }, + "technicalChannels": { + "live": [ + { + "techChannelId": "400048", + "type": "CLOUDTV", + "liveTargetURLRelativePath": "livetv_f3_alsace_ctv", + "usi": 400048, + "isDRMized": true, + "csa5Disabled": true + } + ], + "npvr": [ + { + "externalId": "livetv_f3_alsace_ctv", + "techChannelId": "400048", + "type": "CLOUDTV", + "usi": 400048, + "isDRMized": true, + "antiAdskipping": "DEACTIVATED", + "csa5Disabled": true + } + ], + "startover": [] + } + }, + { + "name": "FRANCE 3 AQUITAINE", + "editoChannelId": "livetv_france3aquitaine", + "lcn": 303, + "idEPG": 1923, + "epgAvailable": true, + "epgTextSubstitution": "", + "displayOrder": 303, + "csaCode": 1, + "slogan": "Nos régions nous inspirent, nos régions vou", + "catchupChannelId": "", + "newChannel": false, + "roamingBlocked": true, + "allowedDeviceCategories": [ + "M_ANDROID", + "M_IOS", + "M_TABLET_ANDROID", + "M_TABLET_IOS", + "W_AIRPLAY", + "W_CHROMECAST", + "W_LACLETV2", + "W_SMARTTV", + "W_PC", + "S_STB" + ], + "packages": [ + "PA_BQ_BASIC_M", + "PA_BQ_ACCESTVPREMIUM_M", + "PA_BQ_TVDIGITALE_I", + "PA_BQ_BASIC_I", + "PA_BQ_BASICQUAD_I", + "PI_WHITELIST" + ], + "hasRightIAccess": true, + "hasRightMAccess": true, + "logos": [ + { + "definitionType": "mobileAppli", + "listLogos": [ + { + "size": "183x183", + "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_france3aquitaine%2F20190730_095136%2FmobileAppli%2Flogo_183x183.png" + } + ] + }, + { + "definitionType": "mobileAppliDark", + "listLogos": [ + { + "size": "183x183", + "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_france3aquitaine%2F20190730_095136%2FmobileAppliDark%2Flogo_183x183.png" + } + ] + }, + { + "definitionType": "webTVLogo", + "listLogos": [ + { + "size": "180x96", + "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_france3aquitaine%2F20190730_095136%2FwebTVLogo%2Flogo_180x96.png" + } + ] + }, + { + "definitionType": "webTVSquare", + "listLogos": [ + { + "size": "150x150", + "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_france3aquitaine%2F20190730_095136%2FwebTVSquare%2Flogo_150x150.png" + } + ] + } + ], + "mobileData": { + "wifiForbidden": false, + "wifiSecuredOnly": false, + "everywhereChannel": true, + "nomadismAllowed": true, + "drmLevels": [ + { + "definition": "SD", + "securedTerminal": [ + "DRM-HW", + "DRM-SW" + ], + "unsecuredTerminal": [ + "DRM-HW", + "DRM-SW" + ] + }, + { + "definition": "HD", + "securedTerminal": [ + "ND" + ], + "unsecuredTerminal": [ + "ND" + ] + } + ] + }, + "webdeviceData": { + "nomadismAllowed": true + }, + "technicalChannels": { + "live": [ + { + "techChannelId": "400049", + "type": "CLOUDTV", + "liveTargetURLRelativePath": "livetv_f3_aquitaine_ctv", + "usi": 400049, + "isDRMized": true, + "csa5Disabled": true + } + ], + "npvr": [ + { + "externalId": "livetv_f3_aquitaine_ctv", + "techChannelId": "400049", + "type": "CLOUDTV", + "usi": 400049, + "isDRMized": true, + "antiAdskipping": "DEACTIVATED", + "csa5Disabled": true + } + ], + "startover": [] + } + }, + { + "name": "FRANCE 3 AUVERGNE", + "editoChannelId": "livetv_france3auvergne", + "lcn": 304, + "idEPG": 1924, + "epgAvailable": true, + "epgTextSubstitution": "", + "displayOrder": 304, + "csaCode": 1, + "slogan": "Nos régions nous inspirent, nos régions vou", + "catchupChannelId": "", + "newChannel": false, + "roamingBlocked": true, + "allowedDeviceCategories": [ + "M_ANDROID", + "M_IOS", + "M_TABLET_ANDROID", + "M_TABLET_IOS", + "W_AIRPLAY", + "W_CHROMECAST", + "W_LACLETV2", + "W_SMARTTV", + "W_PC", + "S_STB" + ], + "packages": [ + "PA_BQ_BASIC_M", + "PA_BQ_ACCESTVPREMIUM_M", + "PA_BQ_TVDIGITALE_I", + "PA_BQ_BASIC_I", + "PA_BQ_BASICQUAD_I", + "PI_WHITELIST" + ], + "hasRightIAccess": true, + "hasRightMAccess": true, + "logos": [ + { + "definitionType": "mobileAppli", + "listLogos": [ + { + "size": "183x183", + "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_france3auvergne%2F20181002_122951%2FmobileAppli%2Flogo_183x183.png" + } + ] + }, + { + "definitionType": "mobileAppliDark", + "listLogos": [ + { + "size": "183x183", + "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_france3auvergne%2F20181002_122951%2FmobileAppliDark%2Flogo_183x183.png" + } + ] + }, + { + "definitionType": "webTVLogo", + "listLogos": [ + { + "size": "180x96", + "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_france3auvergne%2F20181002_122951%2FwebTVLogo%2Flogo_180x96.png" + } + ] + }, + { + "definitionType": "webTVSquare", + "listLogos": [ + { + "size": "150x150", + "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_france3auvergne%2F20181002_122951%2FwebTVSquare%2Flogo_150x150.png" + } + ] + } + ], + "mobileData": { + "wifiForbidden": false, + "wifiSecuredOnly": false, + "everywhereChannel": true, + "nomadismAllowed": true, + "drmLevels": [ + { + "definition": "SD", + "securedTerminal": [ + "DRM-HW", + "DRM-SW" + ], + "unsecuredTerminal": [ + "DRM-HW", + "DRM-SW" + ] + }, + { + "definition": "HD", + "securedTerminal": [ + "ND" + ], + "unsecuredTerminal": [ + "ND" + ] + } + ] + }, + "webdeviceData": { + "nomadismAllowed": true + }, + "technicalChannels": { + "live": [ + { + "techChannelId": "400050", + "type": "CLOUDTV", + "liveTargetURLRelativePath": "livetv_f3_auvergne_ctv", + "usi": 400050, + "isDRMized": true, + "csa5Disabled": true + } + ], + "npvr": [ + { + "externalId": "livetv_f3_auvergne_ctv", + "techChannelId": "400050", + "type": "CLOUDTV", + "usi": 400050, + "isDRMized": true, + "antiAdskipping": "DEACTIVATED", + "csa5Disabled": true + } + ], + "startover": [] + } + }, + { + "name": "FRANCE 3 NORMANDIE CAEN", + "editoChannelId": "livetv_france3bnormandie", + "lcn": 305, + "idEPG": 1925, + "epgAvailable": true, + "epgTextSubstitution": "", + "displayOrder": 305, + "csaCode": 1, + "slogan": "Nos régions nous inspirent, nos régions vou", + "catchupChannelId": "", + "newChannel": false, + "roamingBlocked": true, + "allowedDeviceCategories": [ + "M_ANDROID", + "M_IOS", + "M_TABLET_ANDROID", + "M_TABLET_IOS", + "W_AIRPLAY", + "W_CHROMECAST", + "W_LACLETV2", + "W_SMARTTV", + "W_PC", + "S_STB" + ], + "packages": [ + "PA_BQ_BASIC_M", + "PA_BQ_ACCESTVPREMIUM_M", + "PA_BQ_TVDIGITALE_I", + "PA_BQ_BASIC_I", + "PA_BQ_BASICQUAD_I", + "PI_WHITELIST" + ], + "hasRightIAccess": true, + "hasRightMAccess": true, + "logos": [ + { + "definitionType": "mobileAppli", + "listLogos": [ + { + "size": "183x183", + "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_france3bnormandie%2F20200211_091906%2FmobileAppli%2Flogo_183x183.png" + } + ] + }, + { + "definitionType": "mobileAppliDark", + "listLogos": [ + { + "size": "183x183", + "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_france3bnormandie%2F20200211_091906%2FmobileAppliDark%2Flogo_183x183.png" + } + ] + }, + { + "definitionType": "webTVLogo", + "listLogos": [ + { + "size": "180x96", + "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_france3bnormandie%2F20200211_091906%2FwebTVLogo%2Flogo_180x96.png" + } + ] + }, + { + "definitionType": "webTVSquare", + "listLogos": [ + { + "size": "150x150", + "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_france3bnormandie%2F20200211_091906%2FwebTVSquare%2Flogo_150x150.png" + } + ] + } + ], + "mobileData": { + "wifiForbidden": false, + "wifiSecuredOnly": false, + "everywhereChannel": true, + "nomadismAllowed": true, + "drmLevels": [ + { + "definition": "SD", + "securedTerminal": [ + "DRM-HW", + "DRM-SW" + ], + "unsecuredTerminal": [ + "DRM-HW", + "DRM-SW" + ] + }, + { + "definition": "HD", + "securedTerminal": [ + "ND" + ], + "unsecuredTerminal": [ + "ND" + ] + } + ] + }, + "webdeviceData": { + "nomadismAllowed": true + }, + "technicalChannels": { + "live": [ + { + "techChannelId": "400051", + "type": "CLOUDTV", + "liveTargetURLRelativePath": "livetv_f3_basse_normandie_ctv", + "usi": 400051, + "isDRMized": true, + "csa5Disabled": true + } + ], + "npvr": [ + { + "externalId": "livetv_f3_basse_normandie_ctv", + "techChannelId": "400051", + "type": "CLOUDTV", + "usi": 400051, + "isDRMized": true, + "antiAdskipping": "DEACTIVATED", + "csa5Disabled": true + } + ], + "startover": [] + } + }, + { + "name": "FRANCE 3 BOURGOGNE", + "editoChannelId": "livetv_france3bourgogne", + "lcn": 306, + "idEPG": 1926, + "epgAvailable": true, + "epgTextSubstitution": "", + "displayOrder": 306, + "csaCode": 1, + "slogan": "Nos régions nous inspirent, nos régions vou", + "catchupChannelId": "", + "newChannel": false, + "roamingBlocked": true, + "allowedDeviceCategories": [ + "M_ANDROID", + "M_IOS", + "M_TABLET_ANDROID", + "M_TABLET_IOS", + "W_AIRPLAY", + "W_CHROMECAST", + "W_LACLETV2", + "W_SMARTTV", + "W_PC", + "S_STB" + ], + "packages": [ + "PA_BQ_BASIC_M", + "PA_BQ_ACCESTVPREMIUM_M", + "PA_BQ_TVDIGITALE_I", + "PA_BQ_BASIC_I", + "PA_BQ_BASICQUAD_I", + "PI_WHITELIST" + ], + "hasRightIAccess": true, + "hasRightMAccess": true, + "logos": [ + { + "definitionType": "mobileAppli", + "listLogos": [ + { + "size": "183x183", + "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_france3bourgogne%2F20190730_095136%2FmobileAppli%2Flogo_183x183.png" + } + ] + }, + { + "definitionType": "mobileAppliDark", + "listLogos": [ + { + "size": "183x183", + "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_france3bourgogne%2F20190730_095136%2FmobileAppliDark%2Flogo_183x183.png" + } + ] + }, + { + "definitionType": "webTVLogo", + "listLogos": [ + { + "size": "180x96", + "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_france3bourgogne%2F20190730_095136%2FwebTVLogo%2Flogo_180x96.png" + } + ] + }, + { + "definitionType": "webTVSquare", + "listLogos": [ + { + "size": "150x150", + "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_france3bourgogne%2F20190730_095136%2FwebTVSquare%2Flogo_150x150.png" + } + ] + } + ], + "mobileData": { + "wifiForbidden": false, + "wifiSecuredOnly": false, + "everywhereChannel": true, + "nomadismAllowed": true, + "drmLevels": [ + { + "definition": "SD", + "securedTerminal": [ + "DRM-HW", + "DRM-SW" + ], + "unsecuredTerminal": [ + "DRM-HW", + "DRM-SW" + ] + }, + { + "definition": "HD", + "securedTerminal": [ + "ND" + ], + "unsecuredTerminal": [ + "ND" + ] + } + ] + }, + "webdeviceData": { + "nomadismAllowed": true + }, + "technicalChannels": { + "live": [ + { + "techChannelId": "400052", + "type": "CLOUDTV", + "liveTargetURLRelativePath": "livetv_f3_bourgogne_ctv", + "usi": 400052, + "isDRMized": true, + "csa5Disabled": true + } + ], + "npvr": [ + { + "externalId": "livetv_f3_bourgogne_ctv", + "techChannelId": "400052", + "type": "CLOUDTV", + "usi": 400052, + "isDRMized": true, + "antiAdskipping": "DEACTIVATED", + "csa5Disabled": true + } + ], + "startover": [] + } + }, + { + "name": "FRANCE 3 BRETAGNE", + "editoChannelId": "livetv_france3bretagne", + "lcn": 307, + "idEPG": 1927, + "epgAvailable": true, + "epgTextSubstitution": "", + "displayOrder": 307, + "csaCode": 1, + "slogan": "Nos régions nous inspirent, nos régions vou", + "catchupChannelId": "", + "newChannel": false, + "roamingBlocked": true, + "allowedDeviceCategories": [ + "M_ANDROID", + "M_IOS", + "M_TABLET_ANDROID", + "M_TABLET_IOS", + "W_AIRPLAY", + "W_CHROMECAST", + "W_LACLETV2", + "W_SMARTTV", + "W_PC", + "S_STB" + ], + "packages": [ + "PA_BQ_BASIC_M", + "PA_BQ_ACCESTVPREMIUM_M", + "PA_BQ_TVDIGITALE_I", + "PA_BQ_BASIC_I", + "PA_BQ_BASICQUAD_I", + "PI_WHITELIST" + ], + "hasRightIAccess": true, + "hasRightMAccess": true, + "logos": [ + { + "definitionType": "mobileAppli", + "listLogos": [ + { + "size": "183x183", + "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_france3bretagne%2F20190730_095136%2FmobileAppli%2Flogo_183x183.png" + } + ] + }, + { + "definitionType": "mobileAppliDark", + "listLogos": [ + { + "size": "183x183", + "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_france3bretagne%2F20190730_095136%2FmobileAppliDark%2Flogo_183x183.png" + } + ] + }, + { + "definitionType": "webTVLogo", + "listLogos": [ + { + "size": "180x96", + "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_france3bretagne%2F20190730_095136%2FwebTVLogo%2Flogo_180x96.png" + } + ] + }, + { + "definitionType": "webTVSquare", + "listLogos": [ + { + "size": "150x150", + "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_france3bretagne%2F20190730_095136%2FwebTVSquare%2Flogo_150x150.png" + } + ] + } + ], + "mobileData": { + "wifiForbidden": false, + "wifiSecuredOnly": false, + "everywhereChannel": true, + "nomadismAllowed": true, + "drmLevels": [ + { + "definition": "SD", + "securedTerminal": [ + "DRM-HW", + "DRM-SW" + ], + "unsecuredTerminal": [ + "DRM-HW", + "DRM-SW" + ] + }, + { + "definition": "HD", + "securedTerminal": [ + "ND" + ], + "unsecuredTerminal": [ + "ND" + ] + } + ] + }, + "webdeviceData": { + "nomadismAllowed": true + }, + "technicalChannels": { + "live": [ + { + "techChannelId": "400053", + "type": "CLOUDTV", + "liveTargetURLRelativePath": "livetv_f3_bretagne_ctv", + "usi": 400053, + "isDRMized": true, + "csa5Disabled": true + } + ], + "npvr": [ + { + "externalId": "livetv_f3_bretagne_ctv", + "techChannelId": "400053", + "type": "CLOUDTV", + "usi": 400053, + "isDRMized": true, + "antiAdskipping": "DEACTIVATED", + "csa5Disabled": true + } + ], + "startover": [] + } + }, + { + "name": "FRANCE 3 CENTRE", + "editoChannelId": "livetv_france3centre", + "lcn": 308, + "idEPG": 1928, + "epgAvailable": true, + "epgTextSubstitution": "", + "displayOrder": 308, + "csaCode": 1, + "slogan": "Nos régions nous inspirent, nos régions vou", + "catchupChannelId": "", + "newChannel": false, + "roamingBlocked": true, + "allowedDeviceCategories": [ + "M_ANDROID", + "M_IOS", + "M_TABLET_ANDROID", + "M_TABLET_IOS", + "W_AIRPLAY", + "W_CHROMECAST", + "W_LACLETV2", + "W_SMARTTV", + "W_PC", + "S_STB" + ], + "packages": [ + "PA_BQ_BASIC_M", + "PA_BQ_ACCESTVPREMIUM_M", + "PA_BQ_TVDIGITALE_I", + "PA_BQ_BASIC_I", + "PA_BQ_BASICQUAD_I", + "PI_WHITELIST" + ], + "hasRightIAccess": true, + "hasRightMAccess": true, + "logos": [ + { + "definitionType": "mobileAppli", + "listLogos": [ + { + "size": "183x183", + "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_france3centre%2F20181002_123023%2FmobileAppli%2Flogo_183x183.png" + } + ] + }, + { + "definitionType": "mobileAppliDark", + "listLogos": [ + { + "size": "183x183", + "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_france3centre%2F20181002_123023%2FmobileAppliDark%2Flogo_183x183.png" + } + ] + }, + { + "definitionType": "webTVLogo", + "listLogos": [ + { + "size": "180x96", + "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_france3centre%2F20181002_123023%2FwebTVLogo%2Flogo_180x96.png" + } + ] + }, + { + "definitionType": "webTVSquare", + "listLogos": [ + { + "size": "150x150", + "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_france3centre%2F20181002_123023%2FwebTVSquare%2Flogo_150x150.png" + } + ] + } + ], + "mobileData": { + "wifiForbidden": false, + "wifiSecuredOnly": false, + "everywhereChannel": true, + "nomadismAllowed": true, + "drmLevels": [ + { + "definition": "SD", + "securedTerminal": [ + "DRM-HW", + "DRM-SW" + ], + "unsecuredTerminal": [ + "DRM-HW", + "DRM-SW" + ] + }, + { + "definition": "HD", + "securedTerminal": [ + "ND" + ], + "unsecuredTerminal": [ + "ND" + ] + } + ] + }, + "webdeviceData": { + "nomadismAllowed": true + }, + "technicalChannels": { + "live": [ + { + "techChannelId": "400054", + "type": "CLOUDTV", + "liveTargetURLRelativePath": "livetv_f3_centre_ctv", + "usi": 400054, + "isDRMized": true, + "csa5Disabled": true + } + ], + "npvr": [ + { + "externalId": "livetv_f3_centre_ctv", + "techChannelId": "400054", + "type": "CLOUDTV", + "usi": 400054, + "isDRMized": true, + "antiAdskipping": "DEACTIVATED", + "csa5Disabled": true + } + ], + "startover": [] + } + }, + { + "name": "FRANCE 3 CHAMPAGNE ARDENNE", + "editoChannelId": "livetv_france3champagne", + "lcn": 309, + "idEPG": 1929, + "epgAvailable": true, + "epgTextSubstitution": "", + "displayOrder": 309, + "csaCode": 1, + "slogan": "Nos régions nous inspirent, nos régions vou", + "catchupChannelId": "", + "newChannel": false, + "roamingBlocked": true, + "allowedDeviceCategories": [ + "M_ANDROID", + "M_IOS", + "M_TABLET_ANDROID", + "M_TABLET_IOS", + "W_AIRPLAY", + "W_CHROMECAST", + "W_LACLETV2", + "W_SMARTTV", + "W_PC", + "S_STB" + ], + "packages": [ + "PA_BQ_BASIC_M", + "PA_BQ_ACCESTVPREMIUM_M", + "PA_BQ_TVDIGITALE_I", + "PA_BQ_BASIC_I", + "PA_BQ_BASICQUAD_I", + "PI_WHITELIST" + ], + "hasRightIAccess": true, + "hasRightMAccess": true, + "logos": [ + { + "definitionType": "mobileAppli", + "listLogos": [ + { + "size": "183x183", + "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_france3champagne%2F20181002_123034%2FmobileAppli%2Flogo_183x183.png" + } + ] + }, + { + "definitionType": "mobileAppliDark", + "listLogos": [ + { + "size": "183x183", + "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_france3champagne%2F20181002_123034%2FmobileAppliDark%2Flogo_183x183.png" + } + ] + }, + { + "definitionType": "webTVLogo", + "listLogos": [ + { + "size": "180x96", + "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_france3champagne%2F20181002_123034%2FwebTVLogo%2Flogo_180x96.png" + } + ] + }, + { + "definitionType": "webTVSquare", + "listLogos": [ + { + "size": "150x150", + "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_france3champagne%2F20181002_123034%2FwebTVSquare%2Flogo_150x150.png" + } + ] + } + ], + "mobileData": { + "wifiForbidden": false, + "wifiSecuredOnly": false, + "everywhereChannel": true, + "nomadismAllowed": true, + "drmLevels": [ + { + "definition": "SD", + "securedTerminal": [ + "DRM-HW", + "DRM-SW" + ], + "unsecuredTerminal": [ + "DRM-HW", + "DRM-SW" + ] + }, + { + "definition": "HD", + "securedTerminal": [ + "ND" + ], + "unsecuredTerminal": [ + "ND" + ] + } + ] + }, + "webdeviceData": { + "nomadismAllowed": true + }, + "technicalChannels": { + "live": [ + { + "techChannelId": "400055", + "type": "CLOUDTV", + "liveTargetURLRelativePath": "livetv_f3_champagne_ardenne_ctv", + "usi": 400055, + "isDRMized": true, + "csa5Disabled": true + } + ], + "npvr": [ + { + "externalId": "livetv_f3_champagne_ardenne_ctv", + "techChannelId": "400055", + "type": "CLOUDTV", + "usi": 400055, + "isDRMized": true, + "antiAdskipping": "DEACTIVATED", + "csa5Disabled": true + } + ], + "startover": [] + } + }, + { + "name": "FRANCE 3 CORSE VIA STELLA", + "editoChannelId": "livetv_france3corsevs", + "lcn": 310, + "idEPG": 308, + "epgAvailable": true, + "epgTextSubstitution": "", + "displayOrder": 310, + "csaCode": 1, + "slogan": "Nos régions nous inspirent, nos régions vou", + "catchupChannelId": "", + "newChannel": false, + "roamingBlocked": true, + "allowedDeviceCategories": [ + "M_ANDROID", + "M_IOS", + "M_TABLET_ANDROID", + "M_TABLET_IOS", + "W_AIRPLAY", + "W_CHROMECAST", + "W_LACLETV2", + "W_SMARTTV", + "W_PC", + "S_STB" + ], + "packages": [ + "PA_BQ_BASIC_M", + "PA_BQ_ACCESTVPREMIUM_M", + "PA_BQ_TVDIGITALE_I", + "PA_BQ_BASIC_I", + "PA_BQ_BASICQUAD_I", + "PI_WHITELIST" + ], + "hasRightIAccess": true, + "hasRightMAccess": true, + "logos": [ + { + "definitionType": "mobileAppli", + "listLogos": [ + { + "size": "183x183", + "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_france3corsevs%2F20181002_123333%2FmobileAppli%2Flogo_183x183.png" + } + ] + }, + { + "definitionType": "mobileAppliDark", + "listLogos": [ + { + "size": "183x183", + "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_france3corsevs%2F20181002_123333%2FmobileAppliDark%2Flogo_183x183.png" + } + ] + }, + { + "definitionType": "webTVLogo", + "listLogos": [ + { + "size": "180x96", + "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_france3corsevs%2F20181002_123333%2FwebTVLogo%2Flogo_180x96.png" + } + ] + }, + { + "definitionType": "webTVSquare", + "listLogos": [ + { + "size": "150x150", + "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_france3corsevs%2F20181002_123333%2FwebTVSquare%2Flogo_150x150.png" + } + ] + } + ], + "mobileData": { + "wifiForbidden": false, + "wifiSecuredOnly": false, + "everywhereChannel": true, + "nomadismAllowed": true, + "drmLevels": [ + { + "definition": "SD", + "securedTerminal": [ + "DRM-HW", + "DRM-SW" + ], + "unsecuredTerminal": [ + "DRM-HW", + "DRM-SW" + ] + }, + { + "definition": "HD", + "securedTerminal": [ + "ND" + ], + "unsecuredTerminal": [ + "ND" + ] + } + ] + }, + "webdeviceData": { + "nomadismAllowed": true + }, + "technicalChannels": { + "live": [ + { + "techChannelId": "400056", + "type": "CLOUDTV", + "liveTargetURLRelativePath": "livetv_f3_corse_via_stella_ctv", + "usi": 400056, + "isDRMized": true, + "csa5Disabled": true + } + ], + "npvr": [ + { + "externalId": "livetv_f3_corse_via_stella_ctv", + "techChannelId": "400056", + "type": "CLOUDTV", + "usi": 400056, + "isDRMized": true, + "antiAdskipping": "DEACTIVATED", + "csa5Disabled": true + } + ], + "startover": [] + } + }, + { + "name": "FRANCE 3 COTE D'AZUR", + "editoChannelId": "livetv_france3cteazur", + "lcn": 311, + "idEPG": 1931, + "epgAvailable": true, + "epgTextSubstitution": "", + "displayOrder": 311, + "csaCode": 1, + "slogan": "Nos régions nous inspirent, nos régions vou", + "catchupChannelId": "", + "newChannel": false, + "roamingBlocked": true, + "allowedDeviceCategories": [ + "M_ANDROID", + "M_IOS", + "M_TABLET_ANDROID", + "M_TABLET_IOS", + "W_AIRPLAY", + "W_CHROMECAST", + "W_LACLETV2", + "W_SMARTTV", + "W_PC", + "S_STB" + ], + "packages": [ + "PA_BQ_BASIC_M", + "PA_BQ_ACCESTVPREMIUM_M", + "PA_BQ_TVDIGITALE_I", + "PA_BQ_BASIC_I", + "PA_BQ_BASICQUAD_I", + "PI_WHITELIST" + ], + "hasRightIAccess": true, + "hasRightMAccess": true, + "logos": [ + { + "definitionType": "mobileAppli", + "listLogos": [ + { + "size": "183x183", + "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_france3cteazur%2F20181002_123355%2FmobileAppli%2Flogo_183x183.png" + } + ] + }, + { + "definitionType": "mobileAppliDark", + "listLogos": [ + { + "size": "183x183", + "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_france3cteazur%2F20181002_123355%2FmobileAppliDark%2Flogo_183x183.png" + } + ] + }, + { + "definitionType": "webTVLogo", + "listLogos": [ + { + "size": "180x96", + "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_france3cteazur%2F20181002_123355%2FwebTVLogo%2Flogo_180x96.png" + } + ] + }, + { + "definitionType": "webTVSquare", + "listLogos": [ + { + "size": "150x150", + "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_france3cteazur%2F20181002_123355%2FwebTVSquare%2Flogo_150x150.png" + } + ] + } + ], + "mobileData": { + "wifiForbidden": false, + "wifiSecuredOnly": false, + "everywhereChannel": true, + "nomadismAllowed": true, + "drmLevels": [ + { + "definition": "SD", + "securedTerminal": [ + "DRM-HW", + "DRM-SW" + ], + "unsecuredTerminal": [ + "DRM-HW", + "DRM-SW" + ] + }, + { + "definition": "HD", + "securedTerminal": [ + "ND" + ], + "unsecuredTerminal": [ + "ND" + ] + } + ] + }, + "webdeviceData": { + "nomadismAllowed": true + }, + "technicalChannels": { + "live": [ + { + "techChannelId": "400057", + "type": "CLOUDTV", + "liveTargetURLRelativePath": "livetv_f3_cote_d_azur_ctv", + "usi": 400057, + "isDRMized": true, + "csa5Disabled": true + } + ], + "npvr": [ + { + "externalId": "livetv_f3_cote_d_azur_ctv", + "techChannelId": "400057", + "type": "CLOUDTV", + "usi": 400057, + "isDRMized": true, + "antiAdskipping": "DEACTIVATED", + "csa5Disabled": true + } + ], + "startover": [] + } + }, + { + "name": "FRANCE 3 FRANCHE COMTE", + "editoChannelId": "livetv_france3frcomte", + "lcn": 312, + "idEPG": 1932, + "epgAvailable": true, + "epgTextSubstitution": "", + "displayOrder": 312, + "csaCode": 1, + "slogan": "Nos régions nous inspirent, nos régions vou", + "catchupChannelId": "", + "newChannel": false, + "roamingBlocked": true, + "allowedDeviceCategories": [ + "M_ANDROID", + "M_IOS", + "M_TABLET_ANDROID", + "M_TABLET_IOS", + "W_AIRPLAY", + "W_CHROMECAST", + "W_LACLETV2", + "W_SMARTTV", + "W_PC", + "S_STB" + ], + "packages": [ + "PA_BQ_BASIC_M", + "PA_BQ_ACCESTVPREMIUM_M", + "PA_BQ_TVDIGITALE_I", + "PA_BQ_BASIC_I", + "PA_BQ_BASICQUAD_I", + "PI_WHITELIST" + ], + "hasRightIAccess": true, + "hasRightMAccess": true, + "logos": [ + { + "definitionType": "mobileAppli", + "listLogos": [ + { + "size": "183x183", + "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_france3frcomte%2F20181002_123404%2FmobileAppli%2Flogo_183x183.png" + } + ] + }, + { + "definitionType": "mobileAppliDark", + "listLogos": [ + { + "size": "183x183", + "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_france3frcomte%2F20181002_123404%2FmobileAppliDark%2Flogo_183x183.png" + } + ] + }, + { + "definitionType": "webTVLogo", + "listLogos": [ + { + "size": "180x96", + "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_france3frcomte%2F20181002_123404%2FwebTVLogo%2Flogo_180x96.png" + } + ] + }, + { + "definitionType": "webTVSquare", + "listLogos": [ + { + "size": "150x150", + "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_france3frcomte%2F20181002_123404%2FwebTVSquare%2Flogo_150x150.png" + } + ] + } + ], + "mobileData": { + "wifiForbidden": false, + "wifiSecuredOnly": false, + "everywhereChannel": true, + "nomadismAllowed": true, + "drmLevels": [ + { + "definition": "SD", + "securedTerminal": [ + "DRM-HW", + "DRM-SW" + ], + "unsecuredTerminal": [ + "DRM-HW", + "DRM-SW" + ] + }, + { + "definition": "HD", + "securedTerminal": [ + "ND" + ], + "unsecuredTerminal": [ + "ND" + ] + } + ] + }, + "webdeviceData": { + "nomadismAllowed": true + }, + "technicalChannels": { + "live": [ + { + "techChannelId": "400058", + "type": "CLOUDTV", + "liveTargetURLRelativePath": "livetv_f3_franche_comte_ctv", + "usi": 400058, + "isDRMized": true, + "csa5Disabled": true + } + ], + "npvr": [ + { + "externalId": "livetv_f3_franche_comte_ctv", + "techChannelId": "400058", + "type": "CLOUDTV", + "usi": 400058, + "isDRMized": true, + "antiAdskipping": "DEACTIVATED", + "csa5Disabled": true + } + ], + "startover": [] + } + }, + { + "name": "FRANCE 3 NORMANDIE ROUEN", + "editoChannelId": "livetv_france3hnormandie", + "lcn": 313, + "idEPG": 1933, + "epgAvailable": true, + "epgTextSubstitution": "", + "displayOrder": 313, + "csaCode": 1, + "slogan": "Nos régions nous inspirent, nos régions vou", + "catchupChannelId": "", + "newChannel": false, + "roamingBlocked": true, + "allowedDeviceCategories": [ + "M_ANDROID", + "M_IOS", + "M_TABLET_ANDROID", + "M_TABLET_IOS", + "W_AIRPLAY", + "W_CHROMECAST", + "W_LACLETV2", + "W_SMARTTV", + "W_PC", + "S_STB" + ], + "packages": [ + "PA_BQ_BASIC_M", + "PA_BQ_ACCESTVPREMIUM_M", + "PA_BQ_TVDIGITALE_I", + "PA_BQ_BASIC_I", + "PA_BQ_BASICQUAD_I", + "PI_WHITELIST" + ], + "hasRightIAccess": true, + "hasRightMAccess": true, + "logos": [ + { + "definitionType": "mobileAppli", + "listLogos": [ + { + "size": "183x183", + "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_france3hnormandie%2F20200211_091906%2FmobileAppli%2Flogo_183x183.png" + } + ] + }, + { + "definitionType": "mobileAppliDark", + "listLogos": [ + { + "size": "183x183", + "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_france3hnormandie%2F20200211_091906%2FmobileAppliDark%2Flogo_183x183.png" + } + ] + }, + { + "definitionType": "webTVLogo", + "listLogos": [ + { + "size": "180x96", + "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_france3hnormandie%2F20200211_091906%2FwebTVLogo%2Flogo_180x96.png" + } + ] + }, + { + "definitionType": "webTVSquare", + "listLogos": [ + { + "size": "150x150", + "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_france3hnormandie%2F20200211_091906%2FwebTVSquare%2Flogo_150x150.png" + } + ] + } + ], + "mobileData": { + "wifiForbidden": false, + "wifiSecuredOnly": false, + "everywhereChannel": true, + "nomadismAllowed": true, + "drmLevels": [ + { + "definition": "SD", + "securedTerminal": [ + "DRM-HW", + "DRM-SW" + ], + "unsecuredTerminal": [ + "DRM-HW", + "DRM-SW" + ] + }, + { + "definition": "HD", + "securedTerminal": [ + "ND" + ], + "unsecuredTerminal": [ + "ND" + ] + } + ] + }, + "webdeviceData": { + "nomadismAllowed": true + }, + "technicalChannels": { + "live": [ + { + "techChannelId": "400059", + "type": "CLOUDTV", + "liveTargetURLRelativePath": "livetv_f3_haute_normandie_ctv", + "usi": 400059, + "isDRMized": true, + "csa5Disabled": true + } + ], + "npvr": [ + { + "externalId": "livetv_f3_haute_normandie_ctv", + "techChannelId": "400059", + "type": "CLOUDTV", + "usi": 400059, + "isDRMized": true, + "antiAdskipping": "DEACTIVATED", + "csa5Disabled": true + } + ], + "startover": [] + } + }, + { + "name": "FRANCE 3 LANGUEDOC", + "editoChannelId": "livetv_france3languedoc", + "lcn": 314, + "idEPG": 1934, + "epgAvailable": true, + "epgTextSubstitution": "", + "displayOrder": 314, + "csaCode": 1, + "slogan": "Nos régions nous inspirent, nos régions vou", + "catchupChannelId": "", + "newChannel": false, + "roamingBlocked": true, + "allowedDeviceCategories": [ + "M_ANDROID", + "M_IOS", + "M_TABLET_ANDROID", + "M_TABLET_IOS", + "W_AIRPLAY", + "W_CHROMECAST", + "W_LACLETV2", + "W_SMARTTV", + "W_PC", + "S_STB" + ], + "packages": [ + "PA_BQ_BASIC_M", + "PA_BQ_ACCESTVPREMIUM_M", + "PA_BQ_TVDIGITALE_I", + "PA_BQ_BASIC_I", + "PA_BQ_BASICQUAD_I", + "PI_WHITELIST" + ], + "hasRightIAccess": true, + "hasRightMAccess": true, + "logos": [ + { + "definitionType": "mobileAppli", + "listLogos": [ + { + "size": "183x183", + "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_france3languedoc%2F20181002_123607%2FmobileAppli%2Flogo_183x183.png" + } + ] + }, + { + "definitionType": "mobileAppliDark", + "listLogos": [ + { + "size": "183x183", + "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_france3languedoc%2F20181002_123607%2FmobileAppliDark%2Flogo_183x183.png" + } + ] + }, + { + "definitionType": "webTVLogo", + "listLogos": [ + { + "size": "180x96", + "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_france3languedoc%2F20181002_123607%2FwebTVLogo%2Flogo_180x96.png" + } + ] + }, + { + "definitionType": "webTVSquare", + "listLogos": [ + { + "size": "150x150", + "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_france3languedoc%2F20181002_123607%2FwebTVSquare%2Flogo_150x150.png" + } + ] + } + ], + "mobileData": { + "wifiForbidden": false, + "wifiSecuredOnly": false, + "everywhereChannel": true, + "nomadismAllowed": true, + "drmLevels": [ + { + "definition": "SD", + "securedTerminal": [ + "DRM-HW", + "DRM-SW" + ], + "unsecuredTerminal": [ + "DRM-HW", + "DRM-SW" + ] + }, + { + "definition": "HD", + "securedTerminal": [ + "ND" + ], + "unsecuredTerminal": [ + "ND" + ] + } + ] + }, + "webdeviceData": { + "nomadismAllowed": true + }, + "technicalChannels": { + "live": [ + { + "techChannelId": "400060", + "type": "CLOUDTV", + "liveTargetURLRelativePath": "livetv_f3_languedoc_ctv", + "usi": 400060, + "isDRMized": true, + "csa5Disabled": true + } + ], + "npvr": [ + { + "externalId": "livetv_f3_languedoc_ctv", + "techChannelId": "400060", + "type": "CLOUDTV", + "usi": 400060, + "isDRMized": true, + "antiAdskipping": "DEACTIVATED", + "csa5Disabled": true + } + ], + "startover": [] + } + }, + { + "name": "FRANCE 3 LIMOUSIN", + "editoChannelId": "livetv_france3limousin", + "lcn": 315, + "idEPG": 1935, + "epgAvailable": true, + "epgTextSubstitution": "", + "displayOrder": 315, + "csaCode": 1, + "slogan": "Nos régions nous inspirent, nos régions vou", + "catchupChannelId": "", + "newChannel": false, + "roamingBlocked": true, + "allowedDeviceCategories": [ + "M_ANDROID", + "M_IOS", + "M_TABLET_ANDROID", + "M_TABLET_IOS", + "W_AIRPLAY", + "W_CHROMECAST", + "W_LACLETV2", + "W_SMARTTV", + "W_PC", + "S_STB" + ], + "packages": [ + "PA_BQ_BASIC_M", + "PA_BQ_ACCESTVPREMIUM_M", + "PA_BQ_TVDIGITALE_I", + "PA_BQ_BASIC_I", + "PA_BQ_BASICQUAD_I", + "PI_WHITELIST" + ], + "hasRightIAccess": true, + "hasRightMAccess": true, + "logos": [ + { + "definitionType": "mobileAppli", + "listLogos": [ + { + "size": "183x183", + "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_france3limousin%2F20190730_095136%2FmobileAppli%2Flogo_183x183.png" + } + ] + }, + { + "definitionType": "mobileAppliDark", + "listLogos": [ + { + "size": "183x183", + "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_france3limousin%2F20190730_095136%2FmobileAppliDark%2Flogo_183x183.png" + } + ] + }, + { + "definitionType": "webTVLogo", + "listLogos": [ + { + "size": "180x96", + "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_france3limousin%2F20190730_095136%2FwebTVLogo%2Flogo_180x96.png" + } + ] + }, + { + "definitionType": "webTVSquare", + "listLogos": [ + { + "size": "150x150", + "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_france3limousin%2F20190730_095136%2FwebTVSquare%2Flogo_150x150.png" + } + ] + } + ], + "mobileData": { + "wifiForbidden": false, + "wifiSecuredOnly": false, + "everywhereChannel": true, + "nomadismAllowed": true, + "drmLevels": [ + { + "definition": "SD", + "securedTerminal": [ + "DRM-HW", + "DRM-SW" + ], + "unsecuredTerminal": [ + "DRM-HW", + "DRM-SW" + ] + }, + { + "definition": "HD", + "securedTerminal": [ + "ND" + ], + "unsecuredTerminal": [ + "ND" + ] + } + ] + }, + "webdeviceData": { + "nomadismAllowed": true + }, + "technicalChannels": { + "live": [ + { + "techChannelId": "400061", + "type": "CLOUDTV", + "liveTargetURLRelativePath": "livetv_f3_limousin_ctv", + "usi": 400061, + "isDRMized": true, + "csa5Disabled": true + } + ], + "npvr": [ + { + "externalId": "livetv_f3_limousin_ctv", + "techChannelId": "400061", + "type": "CLOUDTV", + "usi": 400061, + "isDRMized": true, + "antiAdskipping": "DEACTIVATED", + "csa5Disabled": true + } + ], + "startover": [] + } + }, + { + "name": "FRANCE 3 LORRAINE", + "editoChannelId": "livetv_france3lorraine", + "lcn": 316, + "idEPG": 1936, + "epgAvailable": true, + "epgTextSubstitution": "", + "displayOrder": 316, + "csaCode": 1, + "slogan": "Nos régions nous inspirent, nos régions vou", + "catchupChannelId": "", + "newChannel": false, + "roamingBlocked": true, + "allowedDeviceCategories": [ + "M_ANDROID", + "M_IOS", + "M_TABLET_ANDROID", + "M_TABLET_IOS", + "W_AIRPLAY", + "W_CHROMECAST", + "W_LACLETV2", + "W_SMARTTV", + "W_PC", + "S_STB" + ], + "packages": [ + "PA_BQ_BASIC_M", + "PA_BQ_ACCESTVPREMIUM_M", + "PA_BQ_TVDIGITALE_I", + "PA_BQ_BASIC_I", + "PA_BQ_BASICQUAD_I", + "PI_WHITELIST" + ], + "hasRightIAccess": true, + "hasRightMAccess": true, + "logos": [ + { + "definitionType": "mobileAppli", + "listLogos": [ + { + "size": "183x183", + "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_france3lorraine%2F20190730_095136%2FmobileAppli%2Flogo_183x183.png" + } + ] + }, + { + "definitionType": "mobileAppliDark", + "listLogos": [ + { + "size": "183x183", + "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_france3lorraine%2F20190730_095136%2FmobileAppliDark%2Flogo_183x183.png" + } + ] + }, + { + "definitionType": "webTVLogo", + "listLogos": [ + { + "size": "180x96", + "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_france3lorraine%2F20190730_095136%2FwebTVLogo%2Flogo_180x96.png" + } + ] + }, + { + "definitionType": "webTVSquare", + "listLogos": [ + { + "size": "150x150", + "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_france3lorraine%2F20190730_095136%2FwebTVSquare%2Flogo_150x150.png" + } + ] + } + ], + "mobileData": { + "wifiForbidden": false, + "wifiSecuredOnly": false, + "everywhereChannel": true, + "nomadismAllowed": true, + "drmLevels": [ + { + "definition": "SD", + "securedTerminal": [ + "DRM-HW", + "DRM-SW" + ], + "unsecuredTerminal": [ + "DRM-HW", + "DRM-SW" + ] + }, + { + "definition": "HD", + "securedTerminal": [ + "ND" + ], + "unsecuredTerminal": [ + "ND" + ] + } + ] + }, + "webdeviceData": { + "nomadismAllowed": true + }, + "technicalChannels": { + "live": [ + { + "techChannelId": "400062", + "type": "CLOUDTV", + "liveTargetURLRelativePath": "livetv_f3_lorraine_ctv", + "usi": 400062, + "isDRMized": true, + "csa5Disabled": true + } + ], + "npvr": [ + { + "externalId": "livetv_f3_lorraine_ctv", + "techChannelId": "400062", + "type": "CLOUDTV", + "usi": 400062, + "isDRMized": true, + "antiAdskipping": "DEACTIVATED", + "csa5Disabled": true + } + ], + "startover": [] + } + }, + { + "name": "FRANCE 3 MIDI-PYRENEES", + "editoChannelId": "livetv_france3pyrenees", + "lcn": 317, + "idEPG": 1937, + "epgAvailable": true, + "epgTextSubstitution": "", + "displayOrder": 317, + "csaCode": 1, + "slogan": "Nos régions nous inspirent, nos régions vou", + "catchupChannelId": "", + "newChannel": false, + "roamingBlocked": true, + "allowedDeviceCategories": [ + "M_ANDROID", + "M_IOS", + "M_TABLET_ANDROID", + "M_TABLET_IOS", + "W_AIRPLAY", + "W_CHROMECAST", + "W_LACLETV2", + "W_SMARTTV", + "W_PC", + "S_STB" + ], + "packages": [ + "PA_BQ_BASIC_M", + "PA_BQ_ACCESTVPREMIUM_M", + "PA_BQ_TVDIGITALE_I", + "PA_BQ_BASIC_I", + "PA_BQ_BASICQUAD_I", + "PI_WHITELIST" + ], + "hasRightIAccess": true, + "hasRightMAccess": true, + "logos": [ + { + "definitionType": "mobileAppli", + "listLogos": [ + { + "size": "183x183", + "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_france3pyrenees%2F20181002_123755%2FmobileAppli%2Flogo_183x183.png" + } + ] + }, + { + "definitionType": "mobileAppliDark", + "listLogos": [ + { + "size": "183x183", + "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_france3pyrenees%2F20181002_123755%2FmobileAppliDark%2Flogo_183x183.png" + } + ] + }, + { + "definitionType": "webTVLogo", + "listLogos": [ + { + "size": "180x96", + "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_france3pyrenees%2F20181002_123755%2FwebTVLogo%2Flogo_180x96.png" + } + ] + }, + { + "definitionType": "webTVSquare", + "listLogos": [ + { + "size": "150x150", + "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_france3pyrenees%2F20181002_123755%2FwebTVSquare%2Flogo_150x150.png" + } + ] + } + ], + "mobileData": { + "wifiForbidden": false, + "wifiSecuredOnly": false, + "everywhereChannel": true, + "nomadismAllowed": true, + "drmLevels": [ + { + "definition": "SD", + "securedTerminal": [ + "DRM-HW", + "DRM-SW" + ], + "unsecuredTerminal": [ + "DRM-HW", + "DRM-SW" + ] + }, + { + "definition": "HD", + "securedTerminal": [ + "ND" + ], + "unsecuredTerminal": [ + "ND" + ] + } + ] + }, + "webdeviceData": { + "nomadismAllowed": true + }, + "technicalChannels": { + "live": [ + { + "techChannelId": "400063", + "type": "CLOUDTV", + "liveTargetURLRelativePath": "livetv_f3_midi_pyrenees_ctv", + "usi": 400063, + "isDRMized": true, + "csa5Disabled": true + } + ], + "npvr": [ + { + "externalId": "livetv_f3_midi_pyrenees_ctv", + "techChannelId": "400063", + "type": "CLOUDTV", + "usi": 400063, + "isDRMized": true, + "antiAdskipping": "DEACTIVATED", + "csa5Disabled": true + } + ], + "startover": [] + } + }, + { + "name": "FRANCE 3 NORD P. CALAIS", + "editoChannelId": "livetv_france3nordpdc", + "lcn": 318, + "idEPG": 1938, + "epgAvailable": true, + "epgTextSubstitution": "", + "displayOrder": 318, + "csaCode": 1, + "slogan": "Nos régions nous inspirent, nos régions vou", + "catchupChannelId": "", + "newChannel": false, + "roamingBlocked": true, + "allowedDeviceCategories": [ + "M_ANDROID", + "M_IOS", + "M_TABLET_ANDROID", + "M_TABLET_IOS", + "W_AIRPLAY", + "W_CHROMECAST", + "W_LACLETV2", + "W_SMARTTV", + "W_PC", + "S_STB" + ], + "packages": [ + "PA_BQ_BASIC_M", + "PA_BQ_ACCESTVPREMIUM_M", + "PA_BQ_TVDIGITALE_I", + "PA_BQ_BASIC_I", + "PA_BQ_BASICQUAD_I", + "PI_WHITELIST" + ], + "hasRightIAccess": true, + "hasRightMAccess": true, + "logos": [ + { + "definitionType": "mobileAppli", + "listLogos": [ + { + "size": "183x183", + "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_france3nordpdc%2F20181002_123720%2FmobileAppli%2Flogo_183x183.png" + } + ] + }, + { + "definitionType": "mobileAppliDark", + "listLogos": [ + { + "size": "183x183", + "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_france3nordpdc%2F20181002_123720%2FmobileAppliDark%2Flogo_183x183.png" + } + ] + }, + { + "definitionType": "webTVLogo", + "listLogos": [ + { + "size": "180x96", + "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_france3nordpdc%2F20181002_123720%2FwebTVLogo%2Flogo_180x96.png" + } + ] + }, + { + "definitionType": "webTVSquare", + "listLogos": [ + { + "size": "150x150", + "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_france3nordpdc%2F20181002_123720%2FwebTVSquare%2Flogo_150x150.png" + } + ] + } + ], + "mobileData": { + "wifiForbidden": false, + "wifiSecuredOnly": false, + "everywhereChannel": true, + "nomadismAllowed": true, + "drmLevels": [ + { + "definition": "SD", + "securedTerminal": [ + "DRM-HW", + "DRM-SW" + ], + "unsecuredTerminal": [ + "DRM-HW", + "DRM-SW" + ] + }, + { + "definition": "HD", + "securedTerminal": [ + "ND" + ], + "unsecuredTerminal": [ + "ND" + ] + } + ] + }, + "webdeviceData": { + "nomadismAllowed": true + }, + "technicalChannels": { + "live": [ + { + "techChannelId": "400064", + "type": "CLOUDTV", + "liveTargetURLRelativePath": "livetv_f3_nord_p_calais_ctv", + "usi": 400064, + "isDRMized": true, + "csa5Disabled": true + } + ], + "npvr": [ + { + "externalId": "livetv_f3_nord_p_calais_ctv", + "techChannelId": "400064", + "type": "CLOUDTV", + "usi": 400064, + "isDRMized": true, + "antiAdskipping": "DEACTIVATED", + "csa5Disabled": true + } + ], + "startover": [] + } + }, + { + "name": "FRANCE 3 PARIS IDF", + "editoChannelId": "livetv_france3parisidf", + "lcn": 319, + "idEPG": 1939, + "epgAvailable": true, + "epgTextSubstitution": "", + "displayOrder": 319, + "csaCode": 1, + "slogan": "Nos régions nous inspirent, nos régions vou", + "catchupChannelId": "", + "newChannel": false, + "roamingBlocked": true, + "allowedDeviceCategories": [ + "M_ANDROID", + "M_IOS", + "M_TABLET_ANDROID", + "M_TABLET_IOS", + "W_AIRPLAY", + "W_CHROMECAST", + "W_LACLETV2", + "W_SMARTTV", + "W_PC", + "S_STB" + ], + "packages": [ + "PA_BQ_BASIC_M", + "PA_BQ_ACCESTVPREMIUM_M", + "PA_BQ_TVDIGITALE_I", + "PA_BQ_BASIC_I", + "PA_BQ_BASICQUAD_I", + "PI_WHITELIST" + ], + "hasRightIAccess": true, + "hasRightMAccess": true, + "logos": [ + { + "definitionType": "mobileAppli", + "listLogos": [ + { + "size": "183x183", + "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_france3parisidf%2F20181002_123934%2FmobileAppli%2Flogo_183x183.png" + } + ] + }, + { + "definitionType": "mobileAppliDark", + "listLogos": [ + { + "size": "183x183", + "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_france3parisidf%2F20181002_123934%2FmobileAppliDark%2Flogo_183x183.png" + } + ] + }, + { + "definitionType": "webTVLogo", + "listLogos": [ + { + "size": "180x96", + "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_france3parisidf%2F20181002_123934%2FwebTVLogo%2Flogo_180x96.png" + } + ] + }, + { + "definitionType": "webTVSquare", + "listLogos": [ + { + "size": "150x150", + "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_france3parisidf%2F20181002_123934%2FwebTVSquare%2Flogo_150x150.png" + } + ] + } + ], + "mobileData": { + "wifiForbidden": false, + "wifiSecuredOnly": false, + "everywhereChannel": true, + "nomadismAllowed": true, + "drmLevels": [ + { + "definition": "SD", + "securedTerminal": [ + "DRM-HW", + "DRM-SW" + ], + "unsecuredTerminal": [ + "DRM-HW", + "DRM-SW" + ] + }, + { + "definition": "HD", + "securedTerminal": [ + "ND" + ], + "unsecuredTerminal": [ + "ND" + ] + } + ] + }, + "webdeviceData": { + "nomadismAllowed": true + }, + "technicalChannels": { + "live": [ + { + "techChannelId": "400065", + "type": "CLOUDTV", + "liveTargetURLRelativePath": "livetv_f3_paris_idf_ctv", + "usi": 400065, + "isDRMized": true, + "csa5Disabled": true + } + ], + "npvr": [ + { + "externalId": "livetv_f3_paris_idf_ctv", + "techChannelId": "400065", + "type": "CLOUDTV", + "usi": 400065, + "isDRMized": true, + "antiAdskipping": "DEACTIVATED", + "csa5Disabled": true + } + ], + "startover": [] + } + }, + { + "name": "FRANCE 3 PAYS DE LA LOIRE", + "editoChannelId": "livetv_france3loire", + "lcn": 320, + "idEPG": 1940, + "epgAvailable": true, + "epgTextSubstitution": "", + "displayOrder": 320, + "csaCode": 1, + "slogan": "Nos régions nous inspirent, nos régions vou", + "catchupChannelId": "", + "newChannel": false, + "roamingBlocked": true, + "allowedDeviceCategories": [ + "M_ANDROID", + "M_IOS", + "M_TABLET_ANDROID", + "M_TABLET_IOS", + "W_AIRPLAY", + "W_CHROMECAST", + "W_LACLETV2", + "W_SMARTTV", + "W_PC", + "S_STB" + ], + "packages": [ + "PA_BQ_BASIC_M", + "PA_BQ_ACCESTVPREMIUM_M", + "PA_BQ_TVDIGITALE_I", + "PA_BQ_BASIC_I", + "PA_BQ_BASICQUAD_I", + "PI_WHITELIST" + ], + "hasRightIAccess": true, + "hasRightMAccess": true, + "logos": [ + { + "definitionType": "mobileAppli", + "listLogos": [ + { + "size": "183x183", + "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_france3loire%2F20190730_095136%2FmobileAppli%2Flogo_183x183.png" + } + ] + }, + { + "definitionType": "mobileAppliDark", + "listLogos": [ + { + "size": "183x183", + "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_france3loire%2F20190730_095136%2FmobileAppliDark%2Flogo_183x183.png" + } + ] + }, + { + "definitionType": "webTVLogo", + "listLogos": [ + { + "size": "180x96", + "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_france3loire%2F20190730_095136%2FwebTVLogo%2Flogo_180x96.png" + } + ] + }, + { + "definitionType": "webTVSquare", + "listLogos": [ + { + "size": "150x150", + "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_france3loire%2F20190730_095136%2FwebTVSquare%2Flogo_150x150.png" + } + ] + } + ], + "mobileData": { + "wifiForbidden": false, + "wifiSecuredOnly": false, + "everywhereChannel": true, + "nomadismAllowed": true, + "drmLevels": [ + { + "definition": "SD", + "securedTerminal": [ + "DRM-HW", + "DRM-SW" + ], + "unsecuredTerminal": [ + "DRM-HW", + "DRM-SW" + ] + }, + { + "definition": "HD", + "securedTerminal": [ + "ND" + ], + "unsecuredTerminal": [ + "ND" + ] + } + ] + }, + "webdeviceData": { + "nomadismAllowed": true + }, + "technicalChannels": { + "live": [ + { + "techChannelId": "400066", + "type": "CLOUDTV", + "liveTargetURLRelativePath": "livetv_f3_pays_de_la_loire_ctv", + "usi": 400066, + "isDRMized": true, + "csa5Disabled": true + } + ], + "npvr": [ + { + "externalId": "livetv_f3_pays_de_la_loire_ctv", + "techChannelId": "400066", + "type": "CLOUDTV", + "usi": 400066, + "isDRMized": true, + "antiAdskipping": "DEACTIVATED", + "csa5Disabled": true + } + ], + "startover": [] + } + }, + { + "name": "FRANCE 3 PICARDIE", + "editoChannelId": "livetv_france3picardie", + "lcn": 321, + "idEPG": 1941, + "epgAvailable": true, + "epgTextSubstitution": "", + "displayOrder": 321, + "csaCode": 1, + "slogan": "Nos régions nous inspirent, nos régions vou", + "catchupChannelId": "", + "newChannel": false, + "roamingBlocked": true, + "allowedDeviceCategories": [ + "M_ANDROID", + "M_IOS", + "M_TABLET_ANDROID", + "M_TABLET_IOS", + "W_AIRPLAY", + "W_CHROMECAST", + "W_LACLETV2", + "W_SMARTTV", + "W_PC", + "S_STB" + ], + "packages": [ + "PA_BQ_BASIC_M", + "PA_BQ_ACCESTVPREMIUM_M", + "PA_BQ_TVDIGITALE_I", + "PA_BQ_BASIC_I", + "PA_BQ_BASICQUAD_I", + "PI_WHITELIST" + ], + "hasRightIAccess": true, + "hasRightMAccess": true, + "logos": [ + { + "definitionType": "mobileAppli", + "listLogos": [ + { + "size": "183x183", + "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_france3picardie%2F20181002_123952%2FmobileAppli%2Flogo_183x183.png" + } + ] + }, + { + "definitionType": "mobileAppliDark", + "listLogos": [ + { + "size": "183x183", + "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_france3picardie%2F20181002_123952%2FmobileAppliDark%2Flogo_183x183.png" + } + ] + }, + { + "definitionType": "webTVLogo", + "listLogos": [ + { + "size": "180x96", + "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_france3picardie%2F20181002_123952%2FwebTVLogo%2Flogo_180x96.png" + } + ] + }, + { + "definitionType": "webTVSquare", + "listLogos": [ + { + "size": "150x150", + "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_france3picardie%2F20181002_123952%2FwebTVSquare%2Flogo_150x150.png" + } + ] + } + ], + "mobileData": { + "wifiForbidden": false, + "wifiSecuredOnly": false, + "everywhereChannel": true, + "nomadismAllowed": true, + "drmLevels": [ + { + "definition": "SD", + "securedTerminal": [ + "DRM-HW", + "DRM-SW" + ], + "unsecuredTerminal": [ + "DRM-HW", + "DRM-SW" + ] + }, + { + "definition": "HD", + "securedTerminal": [ + "ND" + ], + "unsecuredTerminal": [ + "ND" + ] + } + ] + }, + "webdeviceData": { + "nomadismAllowed": true + }, + "technicalChannels": { + "live": [ + { + "techChannelId": "400067", + "type": "CLOUDTV", + "liveTargetURLRelativePath": "livetv_f3_picardie_ctv", + "usi": 400067, + "isDRMized": true, + "csa5Disabled": true + } + ], + "npvr": [ + { + "externalId": "livetv_f3_picardie_ctv", + "techChannelId": "400067", + "type": "CLOUDTV", + "usi": 400067, + "isDRMized": true, + "antiAdskipping": "DEACTIVATED", + "csa5Disabled": true + } + ], + "startover": [] + } + }, + { + "name": "FRANCE 3 POITOU CHARENTES", + "editoChannelId": "livetv_france3poitou", + "lcn": 322, + "idEPG": 1942, + "epgAvailable": true, + "epgTextSubstitution": "", + "displayOrder": 322, + "csaCode": 1, + "slogan": "Nos régions nous inspirent, nos régions vou", + "catchupChannelId": "", + "newChannel": false, + "roamingBlocked": true, + "allowedDeviceCategories": [ + "M_ANDROID", + "M_IOS", + "M_TABLET_ANDROID", + "M_TABLET_IOS", + "W_AIRPLAY", + "W_CHROMECAST", + "W_LACLETV2", + "W_SMARTTV", + "W_PC", + "S_STB" + ], + "packages": [ + "PA_BQ_BASIC_M", + "PA_BQ_ACCESTVPREMIUM_M", + "PA_BQ_TVDIGITALE_I", + "PA_BQ_BASIC_I", + "PA_BQ_BASICQUAD_I", + "PI_WHITELIST" + ], + "hasRightIAccess": true, + "hasRightMAccess": true, + "logos": [ + { + "definitionType": "mobileAppli", + "listLogos": [ + { + "size": "183x183", + "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_france3poitou%2F20181002_123959%2FmobileAppli%2Flogo_183x183.png" + } + ] + }, + { + "definitionType": "mobileAppliDark", + "listLogos": [ + { + "size": "183x183", + "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_france3poitou%2F20181002_123959%2FmobileAppliDark%2Flogo_183x183.png" + } + ] + }, + { + "definitionType": "webTVLogo", + "listLogos": [ + { + "size": "180x96", + "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_france3poitou%2F20181002_123959%2FwebTVLogo%2Flogo_180x96.png" + } + ] + }, + { + "definitionType": "webTVSquare", + "listLogos": [ + { + "size": "150x150", + "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_france3poitou%2F20181002_123959%2FwebTVSquare%2Flogo_150x150.png" + } + ] + } + ], + "mobileData": { + "wifiForbidden": false, + "wifiSecuredOnly": false, + "everywhereChannel": true, + "nomadismAllowed": true, + "drmLevels": [ + { + "definition": "SD", + "securedTerminal": [ + "DRM-HW", + "DRM-SW" + ], + "unsecuredTerminal": [ + "DRM-HW", + "DRM-SW" + ] + }, + { + "definition": "HD", + "securedTerminal": [ + "ND" + ], + "unsecuredTerminal": [ + "ND" + ] + } + ] + }, + "webdeviceData": { + "nomadismAllowed": true + }, + "technicalChannels": { + "live": [ + { + "techChannelId": "400068", + "type": "CLOUDTV", + "liveTargetURLRelativePath": "livetv_f3_poitou_charentes_ctv", + "usi": 400068, + "isDRMized": true, + "csa5Disabled": true + } + ], + "npvr": [ + { + "externalId": "livetv_f3_poitou_charentes_ctv", + "techChannelId": "400068", + "type": "CLOUDTV", + "usi": 400068, + "isDRMized": true, + "antiAdskipping": "DEACTIVATED", + "csa5Disabled": true + } + ], + "startover": [] + } + }, + { + "name": "FRANCE 3 PROVENCE ALPES", + "editoChannelId": "livetv_france3provence", + "lcn": 323, + "idEPG": 1943, + "epgAvailable": true, + "epgTextSubstitution": "", + "displayOrder": 323, + "csaCode": 1, + "slogan": "Nos régions nous inspirent, nos régions vou", + "catchupChannelId": "", + "newChannel": false, + "roamingBlocked": true, + "allowedDeviceCategories": [ + "M_ANDROID", + "M_IOS", + "M_TABLET_ANDROID", + "M_TABLET_IOS", + "W_AIRPLAY", + "W_CHROMECAST", + "W_LACLETV2", + "W_SMARTTV", + "W_PC", + "S_STB" + ], + "packages": [ + "PA_BQ_BASIC_M", + "PA_BQ_ACCESTVPREMIUM_M", + "PA_BQ_TVDIGITALE_I", + "PA_BQ_BASIC_I", + "PA_BQ_BASICQUAD_I", + "PI_WHITELIST" + ], + "hasRightIAccess": true, + "hasRightMAccess": true, + "logos": [ + { + "definitionType": "mobileAppli", + "listLogos": [ + { + "size": "183x183", + "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_france3provence%2F20190730_095136%2FmobileAppli%2Flogo_183x183.png" + } + ] + }, + { + "definitionType": "mobileAppliDark", + "listLogos": [ + { + "size": "183x183", + "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_france3provence%2F20190730_095136%2FmobileAppliDark%2Flogo_183x183.png" + } + ] + }, + { + "definitionType": "webTVLogo", + "listLogos": [ + { + "size": "180x96", + "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_france3provence%2F20190730_095136%2FwebTVLogo%2Flogo_180x96.png" + } + ] + }, + { + "definitionType": "webTVSquare", + "listLogos": [ + { + "size": "150x150", + "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_france3provence%2F20190730_095136%2FwebTVSquare%2Flogo_150x150.png" + } + ] + } + ], + "mobileData": { + "wifiForbidden": false, + "wifiSecuredOnly": false, + "everywhereChannel": true, + "nomadismAllowed": true, + "drmLevels": [ + { + "definition": "SD", + "securedTerminal": [ + "DRM-HW", + "DRM-SW" + ], + "unsecuredTerminal": [ + "DRM-HW", + "DRM-SW" + ] + }, + { + "definition": "HD", + "securedTerminal": [ + "ND" + ], + "unsecuredTerminal": [ + "ND" + ] + } + ] + }, + "webdeviceData": { + "nomadismAllowed": true + }, + "technicalChannels": { + "live": [ + { + "techChannelId": "400069", + "type": "CLOUDTV", + "liveTargetURLRelativePath": "livetv_f3_provence_alpes_ctv", + "usi": 400069, + "isDRMized": true, + "csa5Disabled": true + } + ], + "npvr": [ + { + "externalId": "livetv_f3_provence_alpes_ctv", + "techChannelId": "400069", + "type": "CLOUDTV", + "usi": 400069, + "isDRMized": true, + "antiAdskipping": "DEACTIVATED", + "csa5Disabled": true + } + ], + "startover": [] + } + }, + { + "name": "FRANCE 3 RHONE ALPES", + "editoChannelId": "livetv_france3rhalpes", + "lcn": 324, + "idEPG": 1944, + "epgAvailable": true, + "epgTextSubstitution": "", + "displayOrder": 324, + "csaCode": 1, + "slogan": "Nos régions nous inspirent, nos régions vou", + "catchupChannelId": "", + "newChannel": false, + "roamingBlocked": true, + "allowedDeviceCategories": [ + "M_ANDROID", + "M_IOS", + "M_TABLET_ANDROID", + "M_TABLET_IOS", + "W_AIRPLAY", + "W_CHROMECAST", + "W_LACLETV2", + "W_SMARTTV", + "W_PC", + "S_STB" + ], + "packages": [ + "PA_BQ_BASIC_M", + "PA_BQ_ACCESTVPREMIUM_M", + "PA_BQ_TVDIGITALE_I", + "PA_BQ_BASIC_I", + "PA_BQ_BASICQUAD_I", + "PI_WHITELIST" + ], + "hasRightIAccess": true, + "hasRightMAccess": true, + "logos": [ + { + "definitionType": "mobileAppli", + "listLogos": [ + { + "size": "183x183", + "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_france3rhalpes%2F20181002_123926%2FmobileAppli%2Flogo_183x183.png" + } + ] + }, + { + "definitionType": "mobileAppliDark", + "listLogos": [ + { + "size": "183x183", + "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_france3rhalpes%2F20181002_123926%2FmobileAppliDark%2Flogo_183x183.png" + } + ] + }, + { + "definitionType": "webTVLogo", + "listLogos": [ + { + "size": "180x96", + "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_france3rhalpes%2F20181002_123926%2FwebTVLogo%2Flogo_180x96.png" + } + ] + }, + { + "definitionType": "webTVSquare", + "listLogos": [ + { + "size": "150x150", + "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_france3rhalpes%2F20181002_123926%2FwebTVSquare%2Flogo_150x150.png" + } + ] + } + ], + "mobileData": { + "wifiForbidden": false, + "wifiSecuredOnly": false, + "everywhereChannel": true, + "nomadismAllowed": true, + "drmLevels": [ + { + "definition": "SD", + "securedTerminal": [ + "DRM-HW", + "DRM-SW" + ], + "unsecuredTerminal": [ + "DRM-HW", + "DRM-SW" + ] + }, + { + "definition": "HD", + "securedTerminal": [ + "ND" + ], + "unsecuredTerminal": [ + "ND" + ] + } + ] + }, + "webdeviceData": { + "nomadismAllowed": true + }, + "technicalChannels": { + "live": [ + { + "techChannelId": "400070", + "type": "CLOUDTV", + "liveTargetURLRelativePath": "livetv_f3_rhone_alpes_ctv", + "usi": 400070, + "isDRMized": true, + "csa5Disabled": true + } + ], + "npvr": [ + { + "externalId": "livetv_f3_rhone_alpes_ctv", + "techChannelId": "400070", + "type": "CLOUDTV", + "usi": 400070, + "isDRMized": true, + "antiAdskipping": "DEACTIVATED", + "csa5Disabled": true + } + ], + "startover": [] + } + }, + { + "name": "CANAL 10 Guadeloupe", + "editoChannelId": "livetv_canal_10_guadeloupe", + "lcn": 395, + "idEPG": 90395, + "epgAvailable": false, + "epgTextSubstitution": "", + "displayOrder": 395, + "csaCode": 1, + "slogan": "Sé Télé an Nou", + "catchupChannelId": "", + "newChannel": true, + "roamingBlocked": true, + "allowedDeviceCategories": [ + "M_ANDROID", + "M_IOS", + "M_TABLET_ANDROID", + "M_TABLET_IOS", + "W_AIRPLAY", + "W_CHROMECAST", + "W_LACLETV2", + "W_PC", + "W_SMARTTV", + "S_STB" + ], + "packages": [ + "PA_BQ_BASIC_M", + "PA_BQ_TVDIGITALE_I", + "PA_BQ_BASIC_I", + "PA_BQ_BASICQUAD_I", + "PI_WHITELIST" + ], + "hasRightIAccess": true, + "hasRightMAccess": true, + "logos": [ + { + "definitionType": "mobileAppli", + "listLogos": [ + { + "size": "183x183", + "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_canal_10_guadeloupe%2F20230707_152431%2FmobileAppli%2Flogo_183x183.png" + } + ] + }, + { + "definitionType": "mobileAppliDark", + "listLogos": [ + { + "size": "183x183", + "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_canal_10_guadeloupe%2F20230707_152431%2FmobileAppliDark%2Flogo_183x183.png" + } + ] + }, + { + "definitionType": "webTVLogo", + "listLogos": [ + { + "size": "180x96", + "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_canal_10_guadeloupe%2F20230707_152431%2FwebTVLogo%2Flogo_180x96.png" + } + ] + }, + { + "definitionType": "webTVSquare", + "listLogos": [ + { + "size": "150x150", + "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_canal_10_guadeloupe%2F20230707_152431%2FwebTVSquare%2Flogo_150x150.png" + } + ] + } + ], + "mobileData": { + "wifiForbidden": false, + "wifiSecuredOnly": false, + "everywhereChannel": true, + "nomadismAllowed": true, + "drmLevels": [ + { + "definition": "SD", + "securedTerminal": [ + "DRM-HW", + "DRM-SW" + ], + "unsecuredTerminal": [ + "DRM-HW", + "DRM-SW" + ] + }, + { + "definition": "HD", + "securedTerminal": [ + "ND" + ], + "unsecuredTerminal": [ + "ND" + ] + } + ] + }, + "webdeviceData": { + "nomadismAllowed": true + }, + "technicalChannels": { + "live": [ + { + "techChannelId": "400317", + "type": "CLOUDTV", + "liveTargetURLRelativePath": "livetv_canal_10_guadeloupe_ctv", + "usi": 400317, + "isDRMized": true, + "csa5Disabled": true + } + ], + "npvr": [], + "startover": [] + } + }, + { + "name": "TAHITI NUI TELEVISION", + "editoChannelId": "livetv_tn_tv", + "lcn": 397, + "idEPG": 90397, + "epgAvailable": false, + "epgTextSubstitution": "", + "displayOrder": 397, + "csaCode": 1, + "slogan": "Maeva et bienvenue en Polynésie", + "catchupChannelId": "", + "newChannel": true, + "roamingBlocked": true, + "allowedDeviceCategories": [ + "M_ANDROID", + "M_IOS", + "M_TABLET_ANDROID", + "M_TABLET_IOS", + "W_AIRPLAY", + "W_CHROMECAST", + "W_LACLETV2", + "W_SMARTTV", + "W_PC", + "S_STB" + ], + "packages": [ + "PA_BQ_BASIC_M", + "PA_BQ_TVDIGITALE_I", + "PA_BQ_BASIC_I", + "PA_BQ_BASICQUAD_I", + "PI_WHITELIST" + ], + "hasRightIAccess": true, + "hasRightMAccess": true, + "logos": [ + { + "definitionType": "mobileAppli", + "listLogos": [ + { + "size": "183x183", + "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_tn_tv%2F20180108_141727%2FmobileAppli%2Flogo_183x183.png" + } + ] + }, + { + "definitionType": "mobileAppliDark", + "listLogos": [ + { + "size": "183x183", + "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_tn_tv%2F20180108_141727%2FmobileAppliDark%2Flogo_183x183.png" + } + ] + }, + { + "definitionType": "webTVLogo", + "listLogos": [ + { + "size": "180x96", + "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_tn_tv%2F20180108_141727%2FwebTVLogo%2Flogo_180x96.png" + } + ] + }, + { + "definitionType": "webTVSquare", + "listLogos": [ + { + "size": "150x150", + "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_tn_tv%2F20180108_141727%2FwebTVSquare%2Flogo_150x150.png" + } + ] + } + ], + "mobileData": { + "wifiForbidden": false, + "wifiSecuredOnly": false, + "everywhereChannel": true, + "nomadismAllowed": true, + "drmLevels": [ + { + "definition": "SD", + "securedTerminal": [ + "DRM-HW", + "DRM-SW" + ], + "unsecuredTerminal": [ + "DRM-HW", + "DRM-SW" + ] + }, + { + "definition": "HD", + "securedTerminal": [ + "ND" + ], + "unsecuredTerminal": [ + "ND" + ] + } + ] + }, + "webdeviceData": { + "nomadismAllowed": true + }, + "technicalChannels": { + "live": [ + { + "techChannelId": "400260", + "type": "CLOUDTV", + "liveTargetURLRelativePath": "livetv_tahitinuitelevision_ctv", + "usi": 400260, + "isDRMized": true, + "csa5Disabled": true + } + ], + "npvr": [], + "startover": [] + } + }, + { + "name": "TELE ANTILLES", + "editoChannelId": "livetv_tele_antilles", + "lcn": 398, + "idEPG": 90398, + "epgAvailable": false, + "epgTextSubstitution": "", + "displayOrder": 398, + "csaCode": 1, + "slogan": "Le pays chez vous", + "catchupChannelId": "", + "newChannel": false, + "roamingBlocked": true, + "allowedDeviceCategories": [ + "M_ANDROID", + "M_IOS", + "M_TABLET_ANDROID", + "M_TABLET_IOS", + "W_AIRPLAY", + "W_CHROMECAST", + "W_LACLETV2", + "W_SMARTTV", + "W_PC", + "S_STB" + ], + "packages": [ + "PA_BQ_BASIC_M", + "PA_BQ_TVDIGITALE_I", + "PA_BQ_BASIC_I", + "PA_BQ_BASICQUAD_I", + "PI_WHITELIST" + ], + "hasRightIAccess": true, + "hasRightMAccess": true, + "logos": [ + { + "definitionType": "mobileAppli", + "listLogos": [ + { + "size": "183x183", + "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_tele_antilles%2F20180206_091500%2FmobileAppli%2Flogo_183x183.png" + } + ] + }, + { + "definitionType": "mobileAppliDark", + "listLogos": [ + { + "size": "183x183", + "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_tele_antilles%2F20180206_091500%2FmobileAppliDark%2Flogo_183x183.png" + } + ] + }, + { + "definitionType": "webTVLogo", + "listLogos": [ + { + "size": "180x96", + "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_tele_antilles%2F20180206_091500%2FwebTVLogo%2Flogo_180x96.png" + } + ] + }, + { + "definitionType": "webTVSquare", + "listLogos": [ + { + "size": "150x150", + "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_tele_antilles%2F20180206_091500%2FwebTVSquare%2Flogo_150x150.png" + } + ] + } + ], + "mobileData": { + "wifiForbidden": false, + "wifiSecuredOnly": false, + "everywhereChannel": true, + "nomadismAllowed": true, + "drmLevels": [ + { + "definition": "SD", + "securedTerminal": [ + "DRM-HW", + "DRM-SW" + ], + "unsecuredTerminal": [ + "DRM-HW", + "DRM-SW" + ] + }, + { + "definition": "HD", + "securedTerminal": [ + "ND" + ], + "unsecuredTerminal": [ + "ND" + ] + } + ] + }, + "webdeviceData": { + "nomadismAllowed": true + }, + "technicalChannels": { + "live": [ + { + "techChannelId": "400261", + "type": "CLOUDTV", + "liveTargetURLRelativePath": "livetv_teleantilles_ctv", + "usi": 400261, + "isDRMized": true, + "csa5Disabled": true + } + ], + "npvr": [], + "startover": [] + } + }, + { + "name": "MADRAS FM TV", + "editoChannelId": "livetv_mfm", + "lcn": 399, + "idEPG": 90399, + "epgAvailable": false, + "epgTextSubstitution": "", + "displayOrder": 399, + "csaCode": 1, + "slogan": "Clips & Divertissements", + "catchupChannelId": "", + "newChannel": false, + "roamingBlocked": true, + "allowedDeviceCategories": [ + "M_ANDROID", + "M_IOS", + "M_TABLET_ANDROID", + "M_TABLET_IOS", + "W_AIRPLAY", + "W_CHROMECAST", + "W_LACLETV2", + "W_PC", + "W_SMARTTV", + "S_STB" + ], + "packages": [ + "PA_BQ_BASIC_M", + "PA_BQ_TVDIGITALE_I", + "PA_BQ_BASIC_I", + "PA_BQ_BASICQUAD_I", + "PI_WHITELIST" + ], + "hasRightIAccess": true, + "hasRightMAccess": true, + "logos": [ + { + "definitionType": "mobileAppli", + "listLogos": [ + { + "size": "183x183", + "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_mfm%2F20230707_152431%2FmobileAppli%2Flogo_183x183.png" + } + ] + }, + { + "definitionType": "mobileAppliDark", + "listLogos": [ + { + "size": "183x183", + "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_mfm%2F20230707_152431%2FmobileAppliDark%2Flogo_183x183.png" + } + ] + }, + { + "definitionType": "webTVLogo", + "listLogos": [ + { + "size": "180x96", + "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_mfm%2F20230707_152431%2FwebTVLogo%2Flogo_180x96.png" + } + ] + }, + { + "definitionType": "webTVSquare", + "listLogos": [ + { + "size": "150x150", + "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_mfm%2F20230707_152431%2FwebTVSquare%2Flogo_150x150.png" + } + ] + } + ], + "mobileData": { + "wifiForbidden": false, + "wifiSecuredOnly": false, + "everywhereChannel": true, + "nomadismAllowed": true, + "drmLevels": [ + { + "definition": "SD", + "securedTerminal": [ + "DRM-HW", + "DRM-SW" + ], + "unsecuredTerminal": [ + "DRM-HW", + "DRM-SW" + ] + }, + { + "definition": "HD", + "securedTerminal": [ + "ND" + ], + "unsecuredTerminal": [ + "ND" + ] + } + ] + }, + "webdeviceData": { + "nomadismAllowed": true + }, + "technicalChannels": { + "live": [ + { + "techChannelId": "400256", + "type": "CLOUDTV", + "liveTargetURLRelativePath": "livetv_madrasfmtv_ctv", + "usi": 400256, + "isDRMized": true, + "csa5Disabled": true + } + ], + "npvr": [], + "startover": [] + } + }, + { + "name": "BBC ENTERTAINMENT", + "editoChannelId": "livetv_bbc_entertainment", + "lcn": 400, + "idEPG": 18, + "epgAvailable": true, + "epgTextSubstitution": "", + "displayOrder": 400, + "csaCode": 1, + "slogan": "The best of British television", + "catchupChannelId": "", + "newChannel": false, + "roamingBlocked": true, + "allowedDeviceCategories": [ + "M_ANDROID", + "M_IOS", + "M_TABLET_ANDROID", + "M_TABLET_IOS", + "W_AIRPLAY", + "W_CHROMECAST", + "W_LACLETV2", + "W_SMARTTV", + "W_PC", + "S_STB" + ], + "packages": [ + "PA_bouquet_anglophone", + "PI_WHITELIST" + ], + "hasRightIAccess": true, + "hasRightMAccess": false, + "logos": [ + { + "definitionType": "mobileAppli", + "listLogos": [ + { + "size": "183x183", + "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_bbc_entertainment%2F20210604_095258%2FmobileAppli%2Flogo_183x183.png" + } + ] + }, + { + "definitionType": "mobileAppliDark", + "listLogos": [ + { + "size": "183x183", + "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_bbc_entertainment%2F20210604_095258%2FmobileAppliDark%2Flogo_183x183.png" + } + ] + }, + { + "definitionType": "webTVLogo", + "listLogos": [ + { + "size": "180x96", + "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_bbc_entertainment%2F20210604_095258%2FwebTVLogo%2Flogo_180x96.png" + } + ] + }, + { + "definitionType": "webTVSquare", + "listLogos": [ + { + "size": "150x150", + "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_bbc_entertainment%2F20210604_095258%2FwebTVSquare%2Flogo_150x150.png" + } + ] + } + ], + "mobileData": { + "wifiForbidden": false, + "wifiSecuredOnly": false, + "everywhereChannel": true, + "nomadismAllowed": true, + "drmLevels": [ + { + "definition": "SD", + "securedTerminal": [ + "DRM-HW", + "DRM-SW" + ], + "unsecuredTerminal": [ + "DRM-HW", + "DRM-SW" + ] + }, + { + "definition": "HD", + "securedTerminal": [ + "NO-DRM" + ], + "unsecuredTerminal": [ + "NO-DRM" + ] + } + ] + }, + "webdeviceData": { + "nomadismAllowed": true + }, + "technicalChannels": { + "live": [ + { + "techChannelId": "400394", + "type": "CLOUDTV", + "liveTargetURLRelativePath": "livetv_bbc_entertainment_ctv", + "usi": 400394, + "isDRMized": true, + "csa5Disabled": true + } + ], + "npvr": [ + { + "externalId": "livetv_bbc_entertainment_ctv", + "techChannelId": "400394", + "type": "CLOUDTV", + "usi": 400394, + "isDRMized": true, + "antiAdskipping": "DEACTIVATED", + "csa5Disabled": true + } + ], + "startover": [] + } + }, + { + "name": "TCM CINEMA (VO)", + "editoChannelId": "livetv_tcm_vo", + "lcn": 403, + "idEPG": 2169, + "epgAvailable": true, + "epgTextSubstitution": "", + "displayOrder": 403, + "csaCode": 1, + "slogan": "Discovering Great Cinema", + "catchupChannelId": "", + "newChannel": true, + "roamingBlocked": false, + "allowedDeviceCategories": [ + "M_ANDROID", + "M_IOS", + "M_TABLET_ANDROID", + "M_TABLET_IOS", + "W_AIRPLAY", + "W_CHROMECAST", + "W_LACLETV2", + "W_SMARTTV", + "W_PC", + "S_STB" + ], + "packages": [ + "PA_bouquet_anglophone", + "PI_WHITELIST" + ], + "hasRightIAccess": true, + "hasRightMAccess": false, + "logos": [ + { + "definitionType": "mobileAppli", + "listLogos": [ + { + "size": "183x183", + "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_tcm_vo%2F20210604_095258%2FmobileAppli%2Flogo_183x183.png" + } + ] + }, + { + "definitionType": "mobileAppliDark", + "listLogos": [ + { + "size": "183x183", + "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_tcm_vo%2F20210604_095258%2FmobileAppliDark%2Flogo_183x183.png" + } + ] + }, + { + "definitionType": "webTVLogo", + "listLogos": [ + { + "size": "180x96", + "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_tcm_vo%2F20210604_095258%2FwebTVLogo%2Flogo_180x96.png" + } + ] + }, + { + "definitionType": "webTVSquare", + "listLogos": [ + { + "size": "150x150", + "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_tcm_vo%2F20210604_095258%2FwebTVSquare%2Flogo_150x150.png" + } + ] + } + ], + "mobileData": { + "wifiForbidden": false, + "wifiSecuredOnly": false, + "everywhereChannel": true, + "nomadismAllowed": true, + "drmLevels": [ + { + "definition": "SD", + "securedTerminal": [ + "DRM-HW", + "DRM-SW" + ], + "unsecuredTerminal": [ + "DRM-HW", + "DRM-SW" + ] + }, + { + "definition": "HD", + "securedTerminal": [ + "NO-DRM" + ], + "unsecuredTerminal": [ + "NO-DRM" + ] + } + ] + }, + "webdeviceData": { + "nomadismAllowed": true + }, + "technicalChannels": { + "live": [ + { + "techChannelId": "400396", + "type": "CLOUDTV", + "liveTargetURLRelativePath": "livetv_tcm_cinema_anglais_ctv", + "usi": 400396, + "isDRMized": true, + "csa5Disabled": true + } + ], + "npvr": [ + { + "externalId": "livetv_tcm_cinema_anglais_ctv", + "techChannelId": "400396", + "type": "CLOUDTV", + "usi": 400396, + "isDRMized": true, + "antiAdskipping": "DEACTIVATED", + "csa5Disabled": true + } + ], + "startover": [] + } + }, + { + "name": "TRAVEL CHANNEL", + "editoChannelId": "livetv_travel_channel", + "lcn": 404, + "idEPG": 90404, + "epgAvailable": false, + "epgTextSubstitution": "", + "displayOrder": 404, + "csaCode": 1, + "slogan": "Inspirational, Informative, Entertaining", + "catchupChannelId": "", + "newChannel": true, + "roamingBlocked": false, + "allowedDeviceCategories": [ + "M_ANDROID", + "M_IOS", + "M_TABLET_ANDROID", + "M_TABLET_IOS", + "W_AIRPLAY", + "W_CHROMECAST", + "W_LACLETV2", + "W_SMARTTV", + "W_PC", + "S_STB" + ], + "packages": [ + "PA_bouquet_anglophone", + "PI_WHITELIST" + ], + "hasRightIAccess": true, + "hasRightMAccess": false, + "logos": [ + { + "definitionType": "mobileAppli", + "listLogos": [ + { + "size": "183x183", + "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_travel_channel%2F20210604_095258%2FmobileAppli%2Flogo_183x183.png" + } + ] + }, + { + "definitionType": "mobileAppliDark", + "listLogos": [ + { + "size": "183x183", + "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_travel_channel%2F20210604_095258%2FmobileAppliDark%2Flogo_183x183.png" + } + ] + }, + { + "definitionType": "webTVLogo", + "listLogos": [ + { + "size": "180x96", + "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_travel_channel%2F20210604_095258%2FwebTVLogo%2Flogo_180x96.png" + } + ] + }, + { + "definitionType": "webTVSquare", + "listLogos": [ + { + "size": "150x150", + "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_travel_channel%2F20210604_095258%2FwebTVSquare%2Flogo_150x150.png" + } + ] + } + ], + "mobileData": { + "wifiForbidden": false, + "wifiSecuredOnly": false, + "everywhereChannel": true, + "nomadismAllowed": true, + "drmLevels": [ + { + "definition": "SD", + "securedTerminal": [ + "DRM-HW", + "DRM-SW" + ], + "unsecuredTerminal": [ + "DRM-HW", + "DRM-SW" + ] + }, + { + "definition": "HD", + "securedTerminal": [ + "NO-DRM" + ], + "unsecuredTerminal": [ + "NO-DRM" + ] + } + ] + }, + "webdeviceData": { + "nomadismAllowed": true + }, + "technicalChannels": { + "live": [ + { + "techChannelId": "400397", + "type": "CLOUDTV", + "liveTargetURLRelativePath": "livetv_travel_channel_ctv", + "usi": 400397, + "isDRMized": true, + "csa5Disabled": true + } + ], + "npvr": [ + { + "externalId": "livetv_travel_channel_ctv", + "techChannelId": "400397", + "type": "CLOUDTV", + "usi": 400397, + "isDRMized": true, + "antiAdskipping": "DEACTIVATED", + "csa5Disabled": true + } + ], + "startover": [] + } + }, + { + "name": "FOOD NETWORK", + "editoChannelId": "livetv_food_network", + "lcn": 406, + "idEPG": 90406, + "epgAvailable": false, + "epgTextSubstitution": "", + "displayOrder": 406, + "csaCode": 1, + "slogan": "The ultimate food destination", + "catchupChannelId": "", + "newChannel": true, + "roamingBlocked": false, + "allowedDeviceCategories": [ + "M_ANDROID", + "M_IOS", + "M_TABLET_ANDROID", + "M_TABLET_IOS", + "W_AIRPLAY", + "W_CHROMECAST", + "W_LACLETV2", + "W_SMARTTV", + "W_PC", + "S_STB" + ], + "packages": [ + "PA_bouquet_anglophone", + "PI_WHITELIST" + ], + "hasRightIAccess": true, + "hasRightMAccess": false, + "logos": [ + { + "definitionType": "mobileAppli", + "listLogos": [ + { + "size": "183x183", + "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_food_network%2F20210608_154814%2FmobileAppli%2Flogo_183x183.png" + } + ] + }, + { + "definitionType": "mobileAppliDark", + "listLogos": [ + { + "size": "183x183", + "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_food_network%2F20210608_154814%2FmobileAppliDark%2Flogo_183x183.png" + } + ] + }, + { + "definitionType": "webTVLogo", + "listLogos": [ + { + "size": "180x96", + "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_food_network%2F20210608_154814%2FwebTVLogo%2Flogo_180x96.png" + } + ] + }, + { + "definitionType": "webTVSquare", + "listLogos": [ + { + "size": "150x150", + "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_food_network%2F20210608_154814%2FwebTVSquare%2Flogo_150x150.png" + } + ] + } + ], + "mobileData": { + "wifiForbidden": false, + "wifiSecuredOnly": false, + "everywhereChannel": true, + "nomadismAllowed": true, + "drmLevels": [ + { + "definition": "SD", + "securedTerminal": [ + "DRM-HW", + "DRM-SW" + ], + "unsecuredTerminal": [ + "DRM-HW", + "DRM-SW" + ] + }, + { + "definition": "HD", + "securedTerminal": [ + "NO-DRM" + ], + "unsecuredTerminal": [ + "NO-DRM" + ] + } + ] + }, + "webdeviceData": { + "nomadismAllowed": true + }, + "technicalChannels": { + "live": [ + { + "techChannelId": "400398", + "type": "CLOUDTV", + "liveTargetURLRelativePath": "livetv_food_network_ctv", + "usi": 400398, + "isDRMized": true, + "csa5Disabled": true + } + ], + "npvr": [ + { + "externalId": "livetv_food_network_ctv", + "techChannelId": "400398", + "type": "CLOUDTV", + "usi": 400398, + "isDRMized": true, + "antiAdskipping": "DEACTIVATED", + "csa5Disabled": true + } + ], + "startover": [] + } + }, + { + "name": "BOOMERANG (VO)", + "editoChannelId": "livetv_boomerang_vo", + "lcn": 407, + "idEPG": 2168, + "epgAvailable": true, + "epgTextSubstitution": "", + "displayOrder": 407, + "csaCode": 1, + "slogan": "It's all coming back to you", + "catchupChannelId": "", + "newChannel": true, + "roamingBlocked": false, + "allowedDeviceCategories": [ + "M_ANDROID", + "M_IOS", + "M_TABLET_ANDROID", + "M_TABLET_IOS", + "W_AIRPLAY", + "W_CHROMECAST", + "W_LACLETV2", + "W_SMARTTV", + "W_PC", + "S_STB" + ], + "packages": [ + "PA_bouquet_anglophone", + "PI_WHITELIST" + ], + "hasRightIAccess": true, + "hasRightMAccess": false, + "logos": [ + { + "definitionType": "mobileAppli", + "listLogos": [ + { + "size": "183x183", + "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_boomerang_vo%2F20210604_095258%2FmobileAppli%2Flogo_183x183.png" + } + ] + }, + { + "definitionType": "mobileAppliDark", + "listLogos": [ + { + "size": "183x183", + "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_boomerang_vo%2F20210604_095258%2FmobileAppliDark%2Flogo_183x183.png" + } + ] + }, + { + "definitionType": "webTVLogo", + "listLogos": [ + { + "size": "180x96", + "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_boomerang_vo%2F20210604_095258%2FwebTVLogo%2Flogo_180x96.png" + } + ] + }, + { + "definitionType": "webTVSquare", + "listLogos": [ + { + "size": "150x150", + "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_boomerang_vo%2F20210604_095258%2FwebTVSquare%2Flogo_150x150.png" + } + ] + } + ], + "mobileData": { + "wifiForbidden": false, + "wifiSecuredOnly": false, + "everywhereChannel": true, + "nomadismAllowed": true, + "drmLevels": [ + { + "definition": "SD", + "securedTerminal": [ + "DRM-HW", + "DRM-SW" + ], + "unsecuredTerminal": [ + "DRM-HW", + "DRM-SW" + ] + }, + { + "definition": "HD", + "securedTerminal": [ + "NO-DRM" + ], + "unsecuredTerminal": [ + "NO-DRM" + ] + } + ] + }, + "webdeviceData": { + "nomadismAllowed": true + }, + "technicalChannels": { + "live": [ + { + "techChannelId": "400399", + "type": "CLOUDTV", + "liveTargetURLRelativePath": "livetv_boomerang_anglais_ctv", + "usi": 400399, + "isDRMized": true, + "csa5Disabled": true + } + ], + "npvr": [ + { + "externalId": "livetv_boomerang_anglais_ctv", + "techChannelId": "400399", + "type": "CLOUDTV", + "usi": 400399, + "isDRMized": true, + "antiAdskipping": "DEACTIVATED", + "csa5Disabled": true + } + ], + "startover": [] + } + }, + { + "name": "FOXNEWS", + "editoChannelId": "livetv_foxnews", + "lcn": 408, + "idEPG": 90408, + "epgAvailable": false, + "epgTextSubstitution": "", + "displayOrder": 408, + "csaCode": 1, + "slogan": "We report, You decide", + "catchupChannelId": "", + "newChannel": true, + "roamingBlocked": false, + "allowedDeviceCategories": [ + "M_ANDROID", + "M_IOS", + "M_TABLET_ANDROID", + "M_TABLET_IOS", + "W_AIRPLAY", + "W_CHROMECAST", + "W_LACLETV2", + "W_SMARTTV", + "W_PC", + "S_STB" + ], + "packages": [ + "PA_bouquet_anglophone", + "PI_WHITELIST" + ], + "hasRightIAccess": true, + "hasRightMAccess": false, + "logos": [ + { + "definitionType": "mobileAppli", + "listLogos": [ + { + "size": "183x183", + "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_foxnews%2F20210604_095258%2FmobileAppli%2Flogo_183x183.png" + } + ] + }, + { + "definitionType": "mobileAppliDark", + "listLogos": [ + { + "size": "183x183", + "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_foxnews%2F20210604_095258%2FmobileAppliDark%2Flogo_183x183.png" + } + ] + }, + { + "definitionType": "webTVLogo", + "listLogos": [ + { + "size": "180x96", + "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_foxnews%2F20210604_095258%2FwebTVLogo%2Flogo_180x96.png" + } + ] + }, + { + "definitionType": "webTVSquare", + "listLogos": [ + { + "size": "150x150", + "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_foxnews%2F20210604_095258%2FwebTVSquare%2Flogo_150x150.png" + } + ] + } + ], + "mobileData": { + "wifiForbidden": false, + "wifiSecuredOnly": false, + "everywhereChannel": true, + "nomadismAllowed": true, + "drmLevels": [ + { + "definition": "SD", + "securedTerminal": [ + "DRM-HW", + "DRM-SW" + ], + "unsecuredTerminal": [ + "DRM-HW", + "DRM-SW" + ] + }, + { + "definition": "HD", + "securedTerminal": [ + "NO-DRM" + ], + "unsecuredTerminal": [ + "NO-DRM" + ] + } + ] + }, + "webdeviceData": { + "nomadismAllowed": true + }, + "technicalChannels": { + "live": [ + { + "techChannelId": "400400", + "type": "CLOUDTV", + "liveTargetURLRelativePath": "livetv_fox_news_ctv", + "usi": 400400, + "isDRMized": true, + "csa5Disabled": true + } + ], + "npvr": [ + { + "externalId": "livetv_fox_news_ctv", + "techChannelId": "400400", + "type": "CLOUDTV", + "usi": 400400, + "isDRMized": true, + "antiAdskipping": "DEACTIVATED", + "csa5Disabled": true + } + ], + "startover": [] + } + }, + { + "name": "RTL TELEVISION", + "editoChannelId": "livetv_rtl_television", + "lcn": 419, + "idEPG": 166, + "epgAvailable": true, + "epgTextSubstitution": "", + "displayOrder": 419, + "csaCode": 1, + "slogan": "RTL – Wilkommen zuhause", + "catchupChannelId": "", + "newChannel": true, + "roamingBlocked": false, + "allowedDeviceCategories": [ + "M_ANDROID", + "M_IOS", + "M_TABLET_ANDROID", + "M_TABLET_IOS", + "W_AIRPLAY", + "W_CHROMECAST", + "W_LACLETV2", + "W_PC", + "W_SMARTTV", + "S_STB" + ], + "packages": [ + "PA_bouquet_allemand", + "PA_BQ_BASIC_I", + "PI_WHITELIST" + ], + "hasRightIAccess": true, + "hasRightMAccess": false, + "logos": [ + { + "definitionType": "mobileAppli", + "listLogos": [ + { + "size": "183x183", + "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_rtl_television%2F20230209_170925%2FmobileAppli%2Flogo_183x183.png" + } + ] + }, + { + "definitionType": "mobileAppliDark", + "listLogos": [ + { + "size": "183x183", + "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_rtl_television%2F20230209_170925%2FmobileAppliDark%2Flogo_183x183.png" + } + ] + }, + { + "definitionType": "webTVLogo", + "listLogos": [ + { + "size": "180x96", + "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_rtl_television%2F20230209_170925%2FwebTVLogo%2Flogo_180x96.png" + } + ] + }, + { + "definitionType": "webTVSquare", + "listLogos": [ + { + "size": "150x150", + "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_rtl_television%2F20230209_170925%2FwebTVSquare%2Flogo_150x150.png" + } + ] + } + ], + "mobileData": { + "wifiForbidden": false, + "wifiSecuredOnly": false, + "everywhereChannel": true, + "nomadismAllowed": true, + "drmLevels": [ + { + "definition": "SD", + "securedTerminal": [ + "DRM-HW", + "DRM-SW" + ], + "unsecuredTerminal": [ + "DRM-HW", + "DRM-SW" + ] + }, + { + "definition": "HD", + "securedTerminal": [ + "DRM-HW", + "DRM-SW" + ], + "unsecuredTerminal": [ + "ND" + ] + } + ] + }, + "webdeviceData": { + "nomadismAllowed": true + }, + "technicalChannels": { + "live": [ + { + "techChannelId": "400417", + "type": "CLOUDTV", + "liveTargetURLRelativePath": "livetv_acces_limite_ctv", + "usi": 400417, + "isDRMized": true, + "csa5Disabled": true + } + ], + "npvr": [], + "startover": [] + } + }, + { + "name": "RTL NITRO", + "editoChannelId": "livetv_rtlnitro", + "lcn": 420, + "idEPG": 2311, + "epgAvailable": true, + "epgTextSubstitution": "", + "displayOrder": 420, + "csaCode": 1, + "slogan": "The channel for the real heroes: Men !", + "catchupChannelId": "", + "newChannel": false, + "roamingBlocked": true, + "allowedDeviceCategories": [ + "M_ANDROID", + "M_IOS", + "M_TABLET_ANDROID", + "M_TABLET_IOS", + "W_AIRPLAY", + "W_CHROMECAST", + "W_LACLETV2", + "W_PC", + "W_SMARTTV", + "S_STB" + ], + "packages": [ + "PA_bouquet_allemand", + "PA_BQ_BASIC_I", + "PI_WHITELIST" + ], + "hasRightIAccess": true, + "hasRightMAccess": false, + "logos": [ + { + "definitionType": "mobileAppli", + "listLogos": [ + { + "size": "183x183", + "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_rtlnitro%2F20200206_144429%2FmobileAppli%2Flogo_183x183.png" + } + ] + }, + { + "definitionType": "mobileAppliDark", + "listLogos": [ + { + "size": "183x183", + "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_rtlnitro%2F20200206_144429%2FmobileAppliDark%2Flogo_183x183.png" + } + ] + }, + { + "definitionType": "webTVLogo", + "listLogos": [ + { + "size": "180x96", + "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_rtlnitro%2F20200206_144429%2FwebTVLogo%2Flogo_180x96.png" + } + ] + }, + { + "definitionType": "webTVSquare", + "listLogos": [ + { + "size": "150x150", + "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_rtlnitro%2F20200206_144429%2FwebTVSquare%2Flogo_150x150.png" + } + ] + } + ], + "mobileData": { + "wifiForbidden": false, + "wifiSecuredOnly": false, + "everywhereChannel": true, + "nomadismAllowed": true, + "drmLevels": [ + { + "definition": "SD", + "securedTerminal": [ + "DRM-HW", + "DRM-SW" + ], + "unsecuredTerminal": [ + "DRM-HW", + "DRM-SW" + ] + }, + { + "definition": "HD", + "securedTerminal": [ + "DRM-HW", + "DRM-SW" + ], + "unsecuredTerminal": [ + "ND" + ] + } + ] + }, + "webdeviceData": { + "nomadismAllowed": true + }, + "technicalChannels": { + "live": [ + { + "techChannelId": "400417", + "type": "CLOUDTV", + "liveTargetURLRelativePath": "livetv_acces_limite_ctv", + "usi": 400417, + "isDRMized": true, + "csa5Disabled": true + } + ], + "npvr": [], + "startover": [] + } + }, + { + "name": "DAS ERSTE", + "editoChannelId": "livetv_ard", + "lcn": 421, + "idEPG": 13, + "epgAvailable": true, + "epgTextSubstitution": "", + "displayOrder": 421, + "csaCode": 1, + "slogan": "Chaîne généraliste", + "catchupChannelId": "", + "newChannel": false, + "roamingBlocked": true, + "allowedDeviceCategories": [ + "M_ANDROID", + "M_IOS", + "M_TABLET_ANDROID", + "M_TABLET_IOS", + "W_AIRPLAY", + "W_CHROMECAST", + "W_LACLETV2", + "W_PC", + "W_SMARTTV", + "S_STB" + ], + "packages": [ + "PA_bouquet_allemand", + "PA_BQ_BASIC_I", + "PI_WHITELIST" + ], + "hasRightIAccess": true, + "hasRightMAccess": false, + "logos": [ + { + "definitionType": "mobileAppli", + "listLogos": [ + { + "size": "183x183", + "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_ard%2F20210125_184451%2FmobileAppli%2Flogo_183x183.png" + } + ] + }, + { + "definitionType": "mobileAppliDark", + "listLogos": [ + { + "size": "183x183", + "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_ard%2F20210125_184451%2FmobileAppliDark%2Flogo_183x183.png" + } + ] + }, + { + "definitionType": "webTVLogo", + "listLogos": [ + { + "size": "180x96", + "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_ard%2F20210125_184451%2FwebTVLogo%2Flogo_180x96.png" + } + ] + }, + { + "definitionType": "webTVSquare", + "listLogos": [ + { + "size": "150x150", + "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_ard%2F20210125_184451%2FwebTVSquare%2Flogo_150x150.png" + } + ] + } + ], + "mobileData": { + "wifiForbidden": false, + "wifiSecuredOnly": false, + "everywhereChannel": true, + "nomadismAllowed": true, + "drmLevels": [ + { + "definition": "SD", + "securedTerminal": [ + "DRM-HW", + "DRM-SW" + ], + "unsecuredTerminal": [ + "DRM-HW", + "DRM-SW" + ] + }, + { + "definition": "HD", + "securedTerminal": [ + "DRM-HW", + "DRM-SW" + ], + "unsecuredTerminal": [ + "ND" + ] + } + ] + }, + "webdeviceData": { + "nomadismAllowed": true + }, + "technicalChannels": { + "live": [ + { + "techChannelId": "400417", + "type": "CLOUDTV", + "liveTargetURLRelativePath": "livetv_acces_limite_ctv", + "usi": 400417, + "isDRMized": true, + "csa5Disabled": true + } + ], + "npvr": [], + "startover": [] + } + }, + { + "name": "ZDF", + "editoChannelId": "livetv_zdf", + "lcn": 422, + "idEPG": 219, + "epgAvailable": true, + "epgTextSubstitution": "", + "displayOrder": 422, + "csaCode": 1, + "slogan": "Chaîne généraliste", + "catchupChannelId": "", + "newChannel": false, + "roamingBlocked": true, + "allowedDeviceCategories": [ + "M_ANDROID", + "M_IOS", + "M_TABLET_ANDROID", + "M_TABLET_IOS", + "W_AIRPLAY", + "W_CHROMECAST", + "W_LACLETV2", + "W_PC", + "W_SMARTTV", + "S_STB" + ], + "packages": [ + "PA_bouquet_allemand", + "PA_BQ_BASIC_I", + "PI_WHITELIST" + ], + "hasRightIAccess": true, + "hasRightMAccess": false, + "logos": [ + { + "definitionType": "mobileAppli", + "listLogos": [ + { + "size": "183x183", + "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_zdf%2F20191209_150911%2FmobileAppli%2Flogo_183x183.png" + } + ] + }, + { + "definitionType": "mobileAppliDark", + "listLogos": [ + { + "size": "183x183", + "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_zdf%2F20191209_150911%2FmobileAppliDark%2Flogo_183x183.png" + } + ] + }, + { + "definitionType": "webTVLogo", + "listLogos": [ + { + "size": "180x96", + "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_zdf%2F20191209_150911%2FwebTVLogo%2Flogo_180x96.png" + } + ] + }, + { + "definitionType": "webTVSquare", + "listLogos": [ + { + "size": "150x150", + "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_zdf%2F20191209_150911%2FwebTVSquare%2Flogo_150x150.png" + } + ] + } + ], + "mobileData": { + "wifiForbidden": false, + "wifiSecuredOnly": false, + "everywhereChannel": true, + "nomadismAllowed": true, + "drmLevels": [ + { + "definition": "SD", + "securedTerminal": [ + "DRM-HW", + "DRM-SW" + ], + "unsecuredTerminal": [ + "DRM-HW", + "DRM-SW" + ] + }, + { + "definition": "HD", + "securedTerminal": [ + "DRM-HW", + "DRM-SW" + ], + "unsecuredTerminal": [ + "ND" + ] + } + ] + }, + "webdeviceData": { + "nomadismAllowed": true + }, + "technicalChannels": { + "live": [ + { + "techChannelId": "400417", + "type": "CLOUDTV", + "liveTargetURLRelativePath": "livetv_acces_limite_ctv", + "usi": 400417, + "isDRMized": true, + "csa5Disabled": true + } + ], + "npvr": [], + "startover": [] + } + }, + { + "name": "ZDF NEO", + "editoChannelId": "livetv_zdfnitro", + "lcn": 423, + "idEPG": 973, + "epgAvailable": true, + "epgTextSubstitution": "", + "displayOrder": 423, + "csaCode": 1, + "slogan": "Sieh's mal neo", + "catchupChannelId": "", + "newChannel": false, + "roamingBlocked": true, + "allowedDeviceCategories": [ + "M_ANDROID", + "M_IOS", + "M_TABLET_ANDROID", + "M_TABLET_IOS", + "W_AIRPLAY", + "W_CHROMECAST", + "W_LACLETV2", + "W_PC", + "W_SMARTTV", + "S_STB" + ], + "packages": [ + "PA_bouquet_allemand", + "PA_BQ_BASIC_I", + "PI_WHITELIST" + ], + "hasRightIAccess": true, + "hasRightMAccess": false, + "logos": [ + { + "definitionType": "mobileAppli", + "listLogos": [ + { + "size": "183x183", + "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_zdfnitro%2F20230216_164754%2FmobileAppli%2Flogo_183x183.png" + } + ] + }, + { + "definitionType": "mobileAppliDark", + "listLogos": [ + { + "size": "183x183", + "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_zdfnitro%2F20230216_164754%2FmobileAppliDark%2Flogo_183x183.png" + } + ] + }, + { + "definitionType": "webTVLogo", + "listLogos": [ + { + "size": "180x96", + "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_zdfnitro%2F20230216_164754%2FwebTVLogo%2Flogo_180x96.png" + } + ] + }, + { + "definitionType": "webTVSquare", + "listLogos": [ + { + "size": "150x150", + "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_zdfnitro%2F20230216_164754%2FwebTVSquare%2Flogo_150x150.png" + } + ] + } + ], + "mobileData": { + "wifiForbidden": false, + "wifiSecuredOnly": false, + "everywhereChannel": true, + "nomadismAllowed": true, + "drmLevels": [ + { + "definition": "SD", + "securedTerminal": [ + "DRM-HW", + "DRM-SW" + ], + "unsecuredTerminal": [ + "DRM-HW", + "DRM-SW" + ] + }, + { + "definition": "HD", + "securedTerminal": [ + "DRM-HW", + "DRM-SW" + ], + "unsecuredTerminal": [ + "ND" + ] + } + ] + }, + "webdeviceData": { + "nomadismAllowed": true + }, + "technicalChannels": { + "live": [ + { + "techChannelId": "400417", + "type": "CLOUDTV", + "liveTargetURLRelativePath": "livetv_acces_limite_ctv", + "usi": 400417, + "isDRMized": true, + "csa5Disabled": true + } + ], + "npvr": [], + "startover": [] + } + }, + { + "name": "RTL ZWEI", + "editoChannelId": "livetv_rtl_2", + "lcn": 424, + "idEPG": 966, + "epgAvailable": true, + "epgTextSubstitution": "", + "displayOrder": 424, + "csaCode": 1, + "slogan": "Zeig mir mehr", + "catchupChannelId": "", + "newChannel": false, + "roamingBlocked": true, + "allowedDeviceCategories": [ + "M_ANDROID", + "M_IOS", + "M_TABLET_ANDROID", + "M_TABLET_IOS", + "W_AIRPLAY", + "W_CHROMECAST", + "W_LACLETV2", + "W_PC", + "W_SMARTTV", + "S_STB" + ], + "packages": [ + "PA_bouquet_allemand", + "PA_BQ_BASIC_I", + "PI_WHITELIST" + ], + "hasRightIAccess": true, + "hasRightMAccess": false, + "logos": [ + { + "definitionType": "mobileAppli", + "listLogos": [ + { + "size": "183x183", + "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_rtl_2%2F20230216_164754%2FmobileAppli%2Flogo_183x183.png" + } + ] + }, + { + "definitionType": "mobileAppliDark", + "listLogos": [ + { + "size": "183x183", + "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_rtl_2%2F20230216_164754%2FmobileAppliDark%2Flogo_183x183.png" + } + ] + }, + { + "definitionType": "webTVLogo", + "listLogos": [ + { + "size": "180x96", + "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_rtl_2%2F20230216_164754%2FwebTVLogo%2Flogo_180x96.png" + } + ] + }, + { + "definitionType": "webTVSquare", + "listLogos": [ + { + "size": "150x150", + "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_rtl_2%2F20230216_164754%2FwebTVSquare%2Flogo_150x150.png" + } + ] + } + ], + "mobileData": { + "wifiForbidden": false, + "wifiSecuredOnly": false, + "everywhereChannel": true, + "nomadismAllowed": true, + "drmLevels": [ + { + "definition": "SD", + "securedTerminal": [ + "DRM-HW", + "DRM-SW" + ], + "unsecuredTerminal": [ + "DRM-HW", + "DRM-SW" + ] + }, + { + "definition": "HD", + "securedTerminal": [ + "DRM-HW", + "DRM-SW" + ], + "unsecuredTerminal": [ + "ND" + ] + } + ] + }, + "webdeviceData": { + "nomadismAllowed": true + }, + "technicalChannels": { + "live": [ + { + "techChannelId": "400417", + "type": "CLOUDTV", + "liveTargetURLRelativePath": "livetv_acces_limite_ctv", + "usi": 400417, + "isDRMized": true, + "csa5Disabled": true + } + ], + "npvr": [], + "startover": [] + } + }, + { + "name": "VOX", + "editoChannelId": "livetv_vox", + "lcn": 425, + "idEPG": 971, + "epgAvailable": true, + "epgTextSubstitution": "", + "displayOrder": 425, + "csaCode": 1, + "slogan": "Chaîne généraliste", + "catchupChannelId": "", + "newChannel": false, + "roamingBlocked": true, + "allowedDeviceCategories": [ + "M_ANDROID", + "M_IOS", + "M_TABLET_ANDROID", + "M_TABLET_IOS", + "W_AIRPLAY", + "W_CHROMECAST", + "W_LACLETV2", + "W_PC", + "W_SMARTTV", + "S_STB" + ], + "packages": [ + "PA_bouquet_allemand", + "PA_BQ_BASIC_I", + "PI_WHITELIST" + ], + "hasRightIAccess": true, + "hasRightMAccess": false, + "logos": [ + { + "definitionType": "mobileAppli", + "listLogos": [ + { + "size": "183x183", + "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_vox%2F20230216_164754%2FmobileAppli%2Flogo_183x183.png" + } + ] + }, + { + "definitionType": "mobileAppliDark", + "listLogos": [ + { + "size": "183x183", + "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_vox%2F20230216_164754%2FmobileAppliDark%2Flogo_183x183.png" + } + ] + }, + { + "definitionType": "webTVLogo", + "listLogos": [ + { + "size": "180x96", + "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_vox%2F20230216_164754%2FwebTVLogo%2Flogo_180x96.png" + } + ] + }, + { + "definitionType": "webTVSquare", + "listLogos": [ + { + "size": "150x150", + "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_vox%2F20230216_164754%2FwebTVSquare%2Flogo_150x150.png" + } + ] + } + ], + "mobileData": { + "wifiForbidden": false, + "wifiSecuredOnly": false, + "everywhereChannel": true, + "nomadismAllowed": true, + "drmLevels": [ + { + "definition": "SD", + "securedTerminal": [ + "DRM-HW", + "DRM-SW" + ], + "unsecuredTerminal": [ + "DRM-HW", + "DRM-SW" + ] + }, + { + "definition": "HD", + "securedTerminal": [ + "DRM-HW", + "DRM-SW" + ], + "unsecuredTerminal": [ + "ND" + ] + } + ] + }, + "webdeviceData": { + "nomadismAllowed": true + }, + "technicalChannels": { + "live": [ + { + "techChannelId": "400417", + "type": "CLOUDTV", + "liveTargetURLRelativePath": "livetv_acces_limite_ctv", + "usi": 400417, + "isDRMized": true, + "csa5Disabled": true + } + ], + "npvr": [], + "startover": [] + } + }, + { + "name": "PROSIEBEN", + "editoChannelId": "livetv_prosieben", + "lcn": 427, + "idEPG": 964, + "epgAvailable": true, + "epgTextSubstitution": "", + "displayOrder": 427, + "csaCode": 1, + "slogan": "We Love To Entertain You", + "catchupChannelId": "", + "newChannel": false, + "roamingBlocked": true, + "allowedDeviceCategories": [ + "M_ANDROID", + "M_IOS", + "M_TABLET_ANDROID", + "M_TABLET_IOS", + "W_AIRPLAY", + "W_CHROMECAST", + "W_LACLETV2", + "W_PC", + "W_SMARTTV", + "S_STB" + ], + "packages": [ + "PA_bouquet_allemand", + "PA_BQ_BASIC_I", + "PI_WHITELIST" + ], + "hasRightIAccess": true, + "hasRightMAccess": false, + "logos": [ + { + "definitionType": "mobileAppli", + "listLogos": [ + { + "size": "183x183", + "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_prosieben%2F20230216_164754%2FmobileAppli%2Flogo_183x183.png" + } + ] + }, + { + "definitionType": "mobileAppliDark", + "listLogos": [ + { + "size": "183x183", + "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_prosieben%2F20230216_164754%2FmobileAppliDark%2Flogo_183x183.png" + } + ] + }, + { + "definitionType": "webTVLogo", + "listLogos": [ + { + "size": "180x96", + "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_prosieben%2F20230216_164754%2FwebTVLogo%2Flogo_180x96.png" + } + ] + }, + { + "definitionType": "webTVSquare", + "listLogos": [ + { + "size": "150x150", + "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_prosieben%2F20230216_164754%2FwebTVSquare%2Flogo_150x150.png" + } + ] + } + ], + "mobileData": { + "wifiForbidden": false, + "wifiSecuredOnly": false, + "everywhereChannel": true, + "nomadismAllowed": true, + "drmLevels": [ + { + "definition": "SD", + "securedTerminal": [ + "DRM-HW", + "DRM-SW" + ], + "unsecuredTerminal": [ + "DRM-HW", + "DRM-SW" + ] + }, + { + "definition": "HD", + "securedTerminal": [ + "DRM-HW", + "DRM-SW" + ], + "unsecuredTerminal": [ + "ND" + ] + } + ] + }, + "webdeviceData": { + "nomadismAllowed": true + }, + "technicalChannels": { + "live": [ + { + "techChannelId": "400417", + "type": "CLOUDTV", + "liveTargetURLRelativePath": "livetv_acces_limite_ctv", + "usi": 400417, + "isDRMized": true, + "csa5Disabled": true + } + ], + "npvr": [], + "startover": [] + } + }, + { + "name": "SUPER RTL", + "editoChannelId": "livetv_super_rtl", + "lcn": 428, + "idEPG": 1854, + "epgAvailable": true, + "epgTextSubstitution": "", + "displayOrder": 428, + "csaCode": 1, + "slogan": "Kids Channel", + "catchupChannelId": "", + "newChannel": false, + "roamingBlocked": true, + "allowedDeviceCategories": [ + "M_ANDROID", + "M_IOS", + "M_TABLET_ANDROID", + "M_TABLET_IOS", + "W_AIRPLAY", + "W_CHROMECAST", + "W_LACLETV2", + "W_PC", + "W_SMARTTV", + "S_STB" + ], + "packages": [ + "PA_bouquet_allemand", + "PA_BQ_BASIC_I", + "PI_WHITELIST" + ], + "hasRightIAccess": true, + "hasRightMAccess": false, + "logos": [ + { + "definitionType": "mobileAppli", + "listLogos": [ + { + "size": "183x183", + "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_super_rtl%2F20230216_164754%2FmobileAppli%2Flogo_183x183.png" + } + ] + }, + { + "definitionType": "mobileAppliDark", + "listLogos": [ + { + "size": "183x183", + "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_super_rtl%2F20230216_164754%2FmobileAppliDark%2Flogo_183x183.png" + } + ] + }, + { + "definitionType": "webTVLogo", + "listLogos": [ + { + "size": "180x96", + "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_super_rtl%2F20230216_164754%2FwebTVLogo%2Flogo_180x96.png" + } + ] + }, + { + "definitionType": "webTVSquare", + "listLogos": [ + { + "size": "150x150", + "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_super_rtl%2F20230216_164754%2FwebTVSquare%2Flogo_150x150.png" + } + ] + } + ], + "mobileData": { + "wifiForbidden": false, + "wifiSecuredOnly": false, + "everywhereChannel": true, + "nomadismAllowed": true, + "drmLevels": [ + { + "definition": "SD", + "securedTerminal": [ + "DRM-HW", + "DRM-SW" + ], + "unsecuredTerminal": [ + "DRM-HW", + "DRM-SW" + ] + }, + { + "definition": "HD", + "securedTerminal": [ + "DRM-HW", + "DRM-SW" + ], + "unsecuredTerminal": [ + "ND" + ] + } + ] + }, + "webdeviceData": { + "nomadismAllowed": true + }, + "technicalChannels": { + "live": [ + { + "techChannelId": "400417", + "type": "CLOUDTV", + "liveTargetURLRelativePath": "livetv_acces_limite_ctv", + "usi": 400417, + "isDRMized": true, + "csa5Disabled": true + } + ], + "npvr": [], + "startover": [] + } + }, + { + "name": "3SAT", + "editoChannelId": "livetv_3sat", + "lcn": 431, + "idEPG": 960, + "epgAvailable": true, + "epgTextSubstitution": "", + "displayOrder": 431, + "csaCode": 1, + "slogan": "Anders fernsehen", + "catchupChannelId": "", + "newChannel": false, + "roamingBlocked": true, + "allowedDeviceCategories": [ + "M_ANDROID", + "M_IOS", + "M_TABLET_ANDROID", + "M_TABLET_IOS", + "W_AIRPLAY", + "W_CHROMECAST", + "W_LACLETV2", + "W_PC", + "W_SMARTTV", + "S_STB" + ], + "packages": [ + "PA_bouquet_allemand", + "PA_BQ_BASIC_I", + "PI_WHITELIST" + ], + "hasRightIAccess": true, + "hasRightMAccess": false, + "logos": [ + { + "definitionType": "mobileAppli", + "listLogos": [ + { + "size": "183x183", + "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_3sat%2F20230216_164754%2FmobileAppli%2Flogo_183x183.png" + } + ] + }, + { + "definitionType": "mobileAppliDark", + "listLogos": [ + { + "size": "183x183", + "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_3sat%2F20230216_164754%2FmobileAppliDark%2Flogo_183x183.png" + } + ] + }, + { + "definitionType": "webTVLogo", + "listLogos": [ + { + "size": "180x96", + "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_3sat%2F20230216_164754%2FwebTVLogo%2Flogo_180x96.png" + } + ] + }, + { + "definitionType": "webTVSquare", + "listLogos": [ + { + "size": "150x150", + "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_3sat%2F20230216_164754%2FwebTVSquare%2Flogo_150x150.png" + } + ] + } + ], + "mobileData": { + "wifiForbidden": false, + "wifiSecuredOnly": false, + "everywhereChannel": true, + "nomadismAllowed": true, + "drmLevels": [ + { + "definition": "SD", + "securedTerminal": [ + "DRM-HW", + "DRM-SW" + ], + "unsecuredTerminal": [ + "DRM-HW", + "DRM-SW" + ] + }, + { + "definition": "HD", + "securedTerminal": [ + "DRM-HW", + "DRM-SW" + ], + "unsecuredTerminal": [ + "ND" + ] + } + ] + }, + "webdeviceData": { + "nomadismAllowed": true + }, + "technicalChannels": { + "live": [ + { + "techChannelId": "400417", + "type": "CLOUDTV", + "liveTargetURLRelativePath": "livetv_acces_limite_ctv", + "usi": 400417, + "isDRMized": true, + "csa5Disabled": true + } + ], + "npvr": [], + "startover": [] + } + }, + { + "name": "ONE", + "editoChannelId": "livetv_one", + "lcn": 432, + "idEPG": 979, + "epgAvailable": true, + "epgTextSubstitution": "", + "displayOrder": 432, + "csaCode": 1, + "slogan": "Eins für euch", + "catchupChannelId": "", + "newChannel": false, + "roamingBlocked": true, + "allowedDeviceCategories": [ + "M_ANDROID", + "M_IOS", + "M_TABLET_ANDROID", + "M_TABLET_IOS", + "W_AIRPLAY", + "W_CHROMECAST", + "W_LACLETV2", + "W_PC", + "W_SMARTTV", + "S_STB" + ], + "packages": [ + "PA_bouquet_allemand", + "PA_BQ_BASIC_I", + "PI_WHITELIST" + ], + "hasRightIAccess": true, + "hasRightMAccess": false, + "logos": [ + { + "definitionType": "mobileAppli", + "listLogos": [ + { + "size": "183x183", + "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_one%2F20230216_164754%2FmobileAppli%2Flogo_183x183.png" + } + ] + }, + { + "definitionType": "mobileAppliDark", + "listLogos": [ + { + "size": "183x183", + "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_one%2F20230216_164754%2FmobileAppliDark%2Flogo_183x183.png" + } + ] + }, + { + "definitionType": "webTVLogo", + "listLogos": [ + { + "size": "180x96", + "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_one%2F20230216_164754%2FwebTVLogo%2Flogo_180x96.png" + } + ] + }, + { + "definitionType": "webTVSquare", + "listLogos": [ + { + "size": "150x150", + "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_one%2F20230216_164754%2FwebTVSquare%2Flogo_150x150.png" + } + ] + } + ], + "mobileData": { + "wifiForbidden": false, + "wifiSecuredOnly": false, + "everywhereChannel": true, + "nomadismAllowed": true, + "drmLevels": [ + { + "definition": "SD", + "securedTerminal": [ + "DRM-HW", + "DRM-SW" + ], + "unsecuredTerminal": [ + "DRM-HW", + "DRM-SW" + ] + }, + { + "definition": "HD", + "securedTerminal": [ + "DRM-HW", + "DRM-SW" + ], + "unsecuredTerminal": [ + "ND" + ] + } + ] + }, + "webdeviceData": { + "nomadismAllowed": true + }, + "technicalChannels": { + "live": [ + { + "techChannelId": "400417", + "type": "CLOUDTV", + "liveTargetURLRelativePath": "livetv_acces_limite_ctv", + "usi": 400417, + "isDRMized": true, + "csa5Disabled": true + } + ], + "npvr": [], + "startover": [] + } + }, + { + "name": "TVE INTERNACIONAL", + "editoChannelId": "livetv_tvei", + "lcn": 433, + "idEPG": 208, + "epgAvailable": true, + "epgTextSubstitution": "", + "displayOrder": 433, + "csaCode": 1, + "slogan": "La chaîne généraliste espagnole", + "catchupChannelId": "", + "newChannel": true, + "roamingBlocked": true, + "allowedDeviceCategories": [ + "M_ANDROID", + "M_IOS", + "M_TABLET_ANDROID", + "M_TABLET_IOS", + "W_AIRPLAY", + "W_CHROMECAST", + "W_LACLETV2", + "W_PC", + "W_SMARTTV", + "S_STB" + ], + "packages": [ + "PA_BQ_TVDIGITALE_I", + "PA_BQ_BASIC_I", + "PA_BQ_BASICQUAD_I", + "PI_WHITELIST" + ], + "hasRightIAccess": true, + "hasRightMAccess": false, + "logos": [ + { + "definitionType": "mobileAppli", + "listLogos": [ + { + "size": "183x183", + "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_tvei%2F20151026_092415%2FmobileAppli%2Flogo_183x183.png" + } + ] + }, + { + "definitionType": "mobileAppliDark", + "listLogos": [ + { + "size": "183x183", + "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_tvei%2F20151026_092415%2FmobileAppliDark%2Flogo_183x183.png" + } + ] + }, + { + "definitionType": "webTVLogo", + "listLogos": [ + { + "size": "180x96", + "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_tvei%2F20151026_092415%2FwebTVLogo%2Flogo_180x96.png" + } + ] + }, + { + "definitionType": "webTVSquare", + "listLogos": [ + { + "size": "150x150", + "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_tvei%2F20151026_092415%2FwebTVSquare%2Flogo_150x150.png" + } + ] + } + ], + "mobileData": { + "wifiForbidden": false, + "wifiSecuredOnly": false, + "everywhereChannel": true, + "nomadismAllowed": true, + "drmLevels": [ + { + "definition": "SD", + "securedTerminal": [ + "DRM-HW", + "DRM-SW" + ], + "unsecuredTerminal": [ + "DRM-HW", + "DRM-SW" + ] + }, + { + "definition": "HD", + "securedTerminal": [ + "ND" + ], + "unsecuredTerminal": [ + "ND" + ] + } + ] + }, + "webdeviceData": { + "nomadismAllowed": true + }, + "technicalChannels": { + "live": [ + { + "techChannelId": "400184", + "type": "CLOUDTV", + "liveTargetURLRelativePath": "livetv_tve_internacional_ctv", + "usi": 400184, + "isDRMized": true, + "csa5Disabled": true + } + ], + "npvr": [ + { + "externalId": "livetv_tve_internacional_ctv", + "techChannelId": "400184", + "type": "CLOUDTV", + "usi": 400184, + "isDRMized": true, + "antiAdskipping": "DEACTIVATED", + "csa5Disabled": true + } + ], + "startover": [] + } + }, + { + "name": "ANTENA 3", + "editoChannelId": "livetv_antena_3", + "lcn": 434, + "idEPG": 90434, + "epgAvailable": false, + "epgTextSubstitution": "", + "displayOrder": 434, + "csaCode": 1, + "slogan": "Chaîne généraliste espagnole", + "catchupChannelId": "", + "newChannel": true, + "roamingBlocked": false, + "allowedDeviceCategories": [ + "M_ANDROID", + "M_IOS", + "M_TABLET_ANDROID", + "M_TABLET_IOS", + "W_AIRPLAY", + "W_CHROMECAST", + "W_LACLETV2", + "W_PC", + "W_SMARTTV", + "S_STB" + ], + "packages": [ + "PA_bouquet_espagnol", + "PI_WHITELIST" + ], + "hasRightIAccess": true, + "hasRightMAccess": false, + "logos": [ + { + "definitionType": "mobileAppli", + "listLogos": [ + { + "size": "183x183", + "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_antena_3%2F20210910_084754%2FmobileAppli%2Flogo_183x183.png" + } + ] + }, + { + "definitionType": "mobileAppliDark", + "listLogos": [ + { + "size": "183x183", + "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_antena_3%2F20210910_084754%2FmobileAppliDark%2Flogo_183x183.png" + } + ] + }, + { + "definitionType": "webTVLogo", + "listLogos": [ + { + "size": "180x96", + "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_antena_3%2F20210910_084754%2FwebTVLogo%2Flogo_180x96.png" + } + ] + }, + { + "definitionType": "webTVSquare", + "listLogos": [ + { + "size": "150x150", + "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_antena_3%2F20210910_084754%2FwebTVSquare%2Flogo_150x150.png" + } + ] + } + ], + "mobileData": { + "wifiForbidden": false, + "wifiSecuredOnly": false, + "everywhereChannel": true, + "nomadismAllowed": true, + "drmLevels": [ + { + "definition": "SD", + "securedTerminal": [ + "DRM-HW", + "DRM-SW" + ], + "unsecuredTerminal": [ + "DRM-HW", + "DRM-SW" + ] + }, + { + "definition": "HD", + "securedTerminal": [ + "NO-DRM" + ], + "unsecuredTerminal": [ + "NO-DRM" + ] + } + ] + }, + "webdeviceData": { + "nomadismAllowed": true + }, + "technicalChannels": { + "live": [ + { + "techChannelId": "400416", + "type": "CLOUDTV", + "liveTargetURLRelativePath": "livetv_antena_3_ctv", + "usi": 400416, + "isDRMized": true, + "csa5Disabled": true + } + ], + "npvr": [ + { + "externalId": "livetv_antena_3_ctv", + "techChannelId": "400416", + "type": "CLOUDTV", + "usi": 400416, + "isDRMized": true, + "antiAdskipping": "DEACTIVATED", + "csa5Disabled": true + } + ], + "startover": [] + } + }, + { + "name": "STAR TVE", + "editoChannelId": "livetv_star_tve", + "lcn": 435, + "idEPG": 90435, + "epgAvailable": false, + "epgTextSubstitution": "", + "displayOrder": 435, + "csaCode": 1, + "slogan": "Fiction/Entertainment", + "catchupChannelId": "", + "newChannel": true, + "roamingBlocked": false, + "allowedDeviceCategories": [ + "M_ANDROID", + "M_IOS", + "M_TABLET_ANDROID", + "M_TABLET_IOS", + "W_AIRPLAY", + "W_CHROMECAST", + "W_LACLETV2", + "W_PC", + "W_SMARTTV", + "S_STB" + ], + "packages": [ + "PA_bouquet_espagnol", + "PI_WHITELIST" + ], + "hasRightIAccess": true, + "hasRightMAccess": false, + "logos": [ + { + "definitionType": "mobileAppli", + "listLogos": [ + { + "size": "183x183", + "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_star_tve%2F20210910_084754%2FmobileAppli%2Flogo_183x183.png" + } + ] + }, + { + "definitionType": "mobileAppliDark", + "listLogos": [ + { + "size": "183x183", + "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_star_tve%2F20210910_084754%2FmobileAppliDark%2Flogo_183x183.png" + } + ] + }, + { + "definitionType": "webTVLogo", + "listLogos": [ + { + "size": "180x96", + "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_star_tve%2F20210910_084754%2FwebTVLogo%2Flogo_180x96.png" + } + ] + }, + { + "definitionType": "webTVSquare", + "listLogos": [ + { + "size": "150x150", + "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_star_tve%2F20210910_084754%2FwebTVSquare%2Flogo_150x150.png" + } + ] + } + ], + "mobileData": { + "wifiForbidden": false, + "wifiSecuredOnly": false, + "everywhereChannel": true, + "nomadismAllowed": true, + "drmLevels": [ + { + "definition": "SD", + "securedTerminal": [ + "DRM-HW", + "DRM-SW" + ], + "unsecuredTerminal": [ + "DRM-HW", + "DRM-SW" + ] + }, + { + "definition": "HD", + "securedTerminal": [ + "NO-DRM" + ], + "unsecuredTerminal": [ + "NO-DRM" + ] + } + ] + }, + "webdeviceData": { + "nomadismAllowed": true + }, + "technicalChannels": { + "live": [ + { + "techChannelId": "400410", + "type": "CLOUDTV", + "liveTargetURLRelativePath": "livetv_star_tve_ctv", + "usi": 400410, + "isDRMized": true, + "csa5Disabled": true + } + ], + "npvr": [ + { + "externalId": "livetv_star_tve_ctv", + "techChannelId": "400410", + "type": "CLOUDTV", + "usi": 400410, + "isDRMized": true, + "antiAdskipping": "DEACTIVATED", + "csa5Disabled": true + } + ], + "startover": [] + } + }, + { + "name": "A3 SERIES", + "editoChannelId": "livetv_a3_series", + "lcn": 436, + "idEPG": 90436, + "epgAvailable": false, + "epgTextSubstitution": "", + "displayOrder": 436, + "csaCode": 1, + "slogan": "Les meilleures séries espagnoles", + "catchupChannelId": "", + "newChannel": true, + "roamingBlocked": false, + "allowedDeviceCategories": [ + "M_ANDROID", + "M_IOS", + "M_TABLET_ANDROID", + "M_TABLET_IOS", + "W_AIRPLAY", + "W_CHROMECAST", + "W_LACLETV2", + "W_PC", + "W_SMARTTV", + "S_STB" + ], + "packages": [ + "PA_bouquet_espagnol", + "PI_WHITELIST" + ], + "hasRightIAccess": true, + "hasRightMAccess": false, + "logos": [ + { + "definitionType": "mobileAppli", + "listLogos": [ + { + "size": "183x183", + "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_a3_series%2F20210910_084754%2FmobileAppli%2Flogo_183x183.png" + } + ] + }, + { + "definitionType": "mobileAppliDark", + "listLogos": [ + { + "size": "183x183", + "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_a3_series%2F20210910_084754%2FmobileAppliDark%2Flogo_183x183.png" + } + ] + }, + { + "definitionType": "webTVLogo", + "listLogos": [ + { + "size": "180x96", + "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_a3_series%2F20210910_084754%2FwebTVLogo%2Flogo_180x96.png" + } + ] + }, + { + "definitionType": "webTVSquare", + "listLogos": [ + { + "size": "150x150", + "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_a3_series%2F20210910_084754%2FwebTVSquare%2Flogo_150x150.png" + } + ] + } + ], + "mobileData": { + "wifiForbidden": false, + "wifiSecuredOnly": false, + "everywhereChannel": true, + "nomadismAllowed": true, + "drmLevels": [ + { + "definition": "SD", + "securedTerminal": [ + "DRM-HW", + "DRM-SW" + ], + "unsecuredTerminal": [ + "DRM-HW", + "DRM-SW" + ] + }, + { + "definition": "HD", + "securedTerminal": [ + "NO-DRM" + ], + "unsecuredTerminal": [ + "NO-DRM" + ] + } + ] + }, + "webdeviceData": { + "nomadismAllowed": true + }, + "technicalChannels": { + "live": [ + { + "techChannelId": "400411", + "type": "CLOUDTV", + "liveTargetURLRelativePath": "livetv_a3_series_ctv", + "usi": 400411, + "isDRMized": true, + "csa5Disabled": true + } + ], + "npvr": [ + { + "externalId": "livetv_a3_series_ctv", + "techChannelId": "400411", + "type": "CLOUDTV", + "usi": 400411, + "isDRMized": true, + "antiAdskipping": "DEACTIVATED", + "csa5Disabled": true + } + ], + "startover": [] + } + }, + { + "name": "CANAL 24 HORAS", + "editoChannelId": "livetv_canal_24_horas", + "lcn": 437, + "idEPG": 90437, + "epgAvailable": false, + "epgTextSubstitution": "", + "displayOrder": 437, + "csaCode": 1, + "slogan": "L'actualité 24/24 en espagnol", + "catchupChannelId": "", + "newChannel": true, + "roamingBlocked": false, + "allowedDeviceCategories": [ + "M_ANDROID", + "M_IOS", + "M_TABLET_ANDROID", + "M_TABLET_IOS", + "W_AIRPLAY", + "W_CHROMECAST", + "W_LACLETV2", + "W_PC", + "W_SMARTTV", + "S_STB" + ], + "packages": [ + "PA_bouquet_espagnol", + "PI_WHITELIST" + ], + "hasRightIAccess": true, + "hasRightMAccess": false, + "logos": [ + { + "definitionType": "mobileAppli", + "listLogos": [ + { + "size": "183x183", + "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_canal_24_horas%2F20210910_084754%2FmobileAppli%2Flogo_183x183.png" + } + ] + }, + { + "definitionType": "mobileAppliDark", + "listLogos": [ + { + "size": "183x183", + "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_canal_24_horas%2F20210910_084754%2FmobileAppliDark%2Flogo_183x183.png" + } + ] + }, + { + "definitionType": "webTVLogo", + "listLogos": [ + { + "size": "180x96", + "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_canal_24_horas%2F20210910_084754%2FwebTVLogo%2Flogo_180x96.png" + } + ] + }, + { + "definitionType": "webTVSquare", + "listLogos": [ + { + "size": "150x150", + "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_canal_24_horas%2F20210910_084754%2FwebTVSquare%2Flogo_150x150.png" + } + ] + } + ], + "mobileData": { + "wifiForbidden": false, + "wifiSecuredOnly": false, + "everywhereChannel": true, + "nomadismAllowed": true, + "drmLevels": [ + { + "definition": "SD", + "securedTerminal": [ + "DRM-HW", + "DRM-SW" + ], + "unsecuredTerminal": [ + "DRM-HW", + "DRM-SW" + ] + }, + { + "definition": "HD", + "securedTerminal": [ + "NO-DRM" + ], + "unsecuredTerminal": [ + "NO-DRM" + ] + } + ] + }, + "webdeviceData": { + "nomadismAllowed": true + }, + "technicalChannels": { + "live": [ + { + "techChannelId": "400413", + "type": "CLOUDTV", + "liveTargetURLRelativePath": "livetv_canal_24_horas_ctv", + "usi": 400413, + "isDRMized": true, + "csa5Disabled": true + } + ], + "npvr": [ + { + "externalId": "livetv_canal_24_horas_ctv", + "techChannelId": "400413", + "type": "CLOUDTV", + "usi": 400413, + "isDRMized": true, + "antiAdskipping": "DEACTIVATED", + "csa5Disabled": true + } + ], + "startover": [] + } + }, + { + "name": "ALL FLAMENCO", + "editoChannelId": "livetv_all_flamenco", + "lcn": 438, + "idEPG": 90438, + "epgAvailable": false, + "epgTextSubstitution": "", + "displayOrder": 438, + "csaCode": 1, + "slogan": "La chaîne des amoureux du Flamenco", + "catchupChannelId": "", + "newChannel": true, + "roamingBlocked": false, + "allowedDeviceCategories": [ + "M_ANDROID", + "M_IOS", + "M_TABLET_ANDROID", + "M_TABLET_IOS", + "W_AIRPLAY", + "W_CHROMECAST", + "W_LACLETV2", + "W_PC", + "W_SMARTTV", + "S_STB" + ], + "packages": [ + "PA_bouquet_espagnol", + "PI_WHITELIST" + ], + "hasRightIAccess": true, + "hasRightMAccess": false, + "logos": [ + { + "definitionType": "mobileAppli", + "listLogos": [ + { + "size": "183x183", + "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_all_flamenco%2F20210910_084754%2FmobileAppli%2Flogo_183x183.png" + } + ] + }, + { + "definitionType": "mobileAppliDark", + "listLogos": [ + { + "size": "183x183", + "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_all_flamenco%2F20210910_084754%2FmobileAppliDark%2Flogo_183x183.png" + } + ] + }, + { + "definitionType": "webTVLogo", + "listLogos": [ + { + "size": "180x96", + "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_all_flamenco%2F20210910_084754%2FwebTVLogo%2Flogo_180x96.png" + } + ] + }, + { + "definitionType": "webTVSquare", + "listLogos": [ + { + "size": "150x150", + "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_all_flamenco%2F20210910_084754%2FwebTVSquare%2Flogo_150x150.png" + } + ] + } + ], + "mobileData": { + "wifiForbidden": false, + "wifiSecuredOnly": false, + "everywhereChannel": true, + "nomadismAllowed": true, + "drmLevels": [ + { + "definition": "SD", + "securedTerminal": [ + "DRM-HW", + "DRM-SW" + ], + "unsecuredTerminal": [ + "DRM-HW", + "DRM-SW" + ] + }, + { + "definition": "HD", + "securedTerminal": [ + "NO-DRM" + ], + "unsecuredTerminal": [ + "NO-DRM" + ] + } + ] + }, + "webdeviceData": { + "nomadismAllowed": true + }, + "technicalChannels": { + "live": [ + { + "techChannelId": "400408", + "type": "CLOUDTV", + "liveTargetURLRelativePath": "livetv_all_flamenco_ctv", + "usi": 400408, + "isDRMized": true, + "csa5Disabled": true + } + ], + "npvr": [ + { + "externalId": "livetv_all_flamenco_ctv", + "techChannelId": "400408", + "type": "CLOUDTV", + "usi": 400408, + "isDRMized": true, + "antiAdskipping": "DEACTIVATED", + "csa5Disabled": true + } + ], + "startover": [] + } + }, + { + "name": "TV3 CATALUNYA", + "editoChannelId": "livetv_tv3_catalunya", + "lcn": 439, + "idEPG": 90439, + "epgAvailable": false, + "epgTextSubstitution": "", + "displayOrder": 439, + "csaCode": 1, + "slogan": "La chaîne de la Catalogne", + "catchupChannelId": "", + "newChannel": true, + "roamingBlocked": false, + "allowedDeviceCategories": [ + "M_ANDROID", + "M_IOS", + "M_TABLET_ANDROID", + "M_TABLET_IOS", + "W_AIRPLAY", + "W_CHROMECAST", + "W_LACLETV2", + "W_PC", + "W_SMARTTV", + "S_STB" + ], + "packages": [ + "PA_bouquet_espagnol", + "PI_WHITELIST" + ], + "hasRightIAccess": true, + "hasRightMAccess": false, + "logos": [ + { + "definitionType": "mobileAppli", + "listLogos": [ + { + "size": "183x183", + "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_tv3_catalunya%2F20210910_084754%2FmobileAppli%2Flogo_183x183.png" + } + ] + }, + { + "definitionType": "mobileAppliDark", + "listLogos": [ + { + "size": "183x183", + "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_tv3_catalunya%2F20210910_084754%2FmobileAppliDark%2Flogo_183x183.png" + } + ] + }, + { + "definitionType": "webTVLogo", + "listLogos": [ + { + "size": "180x96", + "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_tv3_catalunya%2F20210910_084754%2FwebTVLogo%2Flogo_180x96.png" + } + ] + }, + { + "definitionType": "webTVSquare", + "listLogos": [ + { + "size": "150x150", + "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_tv3_catalunya%2F20210910_084754%2FwebTVSquare%2Flogo_150x150.png" + } + ] + } + ], + "mobileData": { + "wifiForbidden": false, + "wifiSecuredOnly": false, + "everywhereChannel": true, + "nomadismAllowed": true, + "drmLevels": [ + { + "definition": "SD", + "securedTerminal": [ + "DRM-HW", + "DRM-SW" + ], + "unsecuredTerminal": [ + "DRM-HW", + "DRM-SW" + ] + }, + { + "definition": "HD", + "securedTerminal": [ + "NO-DRM" + ], + "unsecuredTerminal": [ + "NO-DRM" + ] + } + ] + }, + "webdeviceData": { + "nomadismAllowed": true + }, + "technicalChannels": { + "live": [ + { + "techChannelId": "400412", + "type": "CLOUDTV", + "liveTargetURLRelativePath": "livetv_tv3_catalunya_ctv", + "usi": 400412, + "isDRMized": true, + "csa5Disabled": true + } + ], + "npvr": [ + { + "externalId": "livetv_tv3_catalunya_ctv", + "techChannelId": "400412", + "type": "CLOUDTV", + "usi": 400412, + "isDRMized": true, + "antiAdskipping": "DEACTIVATED", + "csa5Disabled": true + } + ], + "startover": [] + } + }, + { + "name": "ETB BASQUE", + "editoChannelId": "livetv_etb_sat", + "lcn": 440, + "idEPG": 90440, + "epgAvailable": false, + "epgTextSubstitution": "", + "displayOrder": 440, + "csaCode": 1, + "slogan": "La chaîne du Pays basque", + "catchupChannelId": "", + "newChannel": true, + "roamingBlocked": false, + "allowedDeviceCategories": [ + "M_ANDROID", + "M_IOS", + "M_TABLET_ANDROID", + "M_TABLET_IOS", + "W_AIRPLAY", + "W_CHROMECAST", + "W_LACLETV2", + "W_PC", + "W_SMARTTV", + "S_STB" + ], + "packages": [ + "PA_bouquet_espagnol", + "PI_WHITELIST" + ], + "hasRightIAccess": true, + "hasRightMAccess": false, + "logos": [ + { + "definitionType": "mobileAppli", + "listLogos": [ + { + "size": "183x183", + "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_etb_sat%2F20230713_105554%2FmobileAppli%2Flogo_183x183.png" + } + ] + }, + { + "definitionType": "mobileAppliDark", + "listLogos": [ + { + "size": "183x183", + "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_etb_sat%2F20230713_105554%2FmobileAppliDark%2Flogo_183x183.png" + } + ] + }, + { + "definitionType": "webTVLogo", + "listLogos": [ + { + "size": "180x96", + "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_etb_sat%2F20230713_105554%2FwebTVLogo%2Flogo_180x96.png" + } + ] + }, + { + "definitionType": "webTVSquare", + "listLogos": [ + { + "size": "150x150", + "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_etb_sat%2F20230713_105554%2FwebTVSquare%2Flogo_150x150.png" + } + ] + } + ], + "mobileData": { + "wifiForbidden": false, + "wifiSecuredOnly": false, + "everywhereChannel": true, + "nomadismAllowed": true, + "drmLevels": [ + { + "definition": "SD", + "securedTerminal": [ + "DRM-HW", + "DRM-SW" + ], + "unsecuredTerminal": [ + "DRM-HW", + "DRM-SW" + ] + }, + { + "definition": "HD", + "securedTerminal": [ + "NO-DRM" + ], + "unsecuredTerminal": [ + "NO-DRM" + ] + } + ] + }, + "webdeviceData": { + "nomadismAllowed": true + }, + "technicalChannels": { + "live": [ + { + "techChannelId": "400414", + "type": "CLOUDTV", + "liveTargetURLRelativePath": "livetv_etb_sat_ctv", + "usi": 400414, + "isDRMized": true, + "csa5Disabled": true + } + ], + "npvr": [ + { + "externalId": "livetv_etb_sat_ctv", + "techChannelId": "400414", + "type": "CLOUDTV", + "usi": 400414, + "isDRMized": true, + "antiAdskipping": "DEACTIVATED", + "csa5Disabled": true + } + ], + "startover": [] + } + }, + { + "name": "TV DE GALICIA", + "editoChannelId": "livetv_tv_de_galicia", + "lcn": 441, + "idEPG": 90441, + "epgAvailable": false, + "epgTextSubstitution": "", + "displayOrder": 441, + "csaCode": 1, + "slogan": "La chaîne de la Galice", + "catchupChannelId": "", + "newChannel": true, + "roamingBlocked": false, + "allowedDeviceCategories": [ + "M_ANDROID", + "M_IOS", + "M_TABLET_ANDROID", + "M_TABLET_IOS", + "W_AIRPLAY", + "W_CHROMECAST", + "W_LACLETV2", + "W_PC", + "W_SMARTTV", + "S_STB" + ], + "packages": [ + "PA_bouquet_espagnol", + "PI_WHITELIST" + ], + "hasRightIAccess": true, + "hasRightMAccess": false, + "logos": [ + { + "definitionType": "mobileAppli", + "listLogos": [ + { + "size": "183x183", + "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_tv_de_galicia%2F20210910_084754%2FmobileAppli%2Flogo_183x183.png" + } + ] + }, + { + "definitionType": "mobileAppliDark", + "listLogos": [ + { + "size": "183x183", + "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_tv_de_galicia%2F20210910_084754%2FmobileAppliDark%2Flogo_183x183.png" + } + ] + }, + { + "definitionType": "webTVLogo", + "listLogos": [ + { + "size": "180x96", + "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_tv_de_galicia%2F20210910_084754%2FwebTVLogo%2Flogo_180x96.png" + } + ] + }, + { + "definitionType": "webTVSquare", + "listLogos": [ + { + "size": "150x150", + "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_tv_de_galicia%2F20210910_084754%2FwebTVSquare%2Flogo_150x150.png" + } + ] + } + ], + "mobileData": { + "wifiForbidden": false, + "wifiSecuredOnly": false, + "everywhereChannel": true, + "nomadismAllowed": true, + "drmLevels": [ + { + "definition": "SD", + "securedTerminal": [ + "DRM-HW", + "DRM-SW" + ], + "unsecuredTerminal": [ + "DRM-HW", + "DRM-SW" + ] + }, + { + "definition": "HD", + "securedTerminal": [ + "NO-DRM" + ], + "unsecuredTerminal": [ + "NO-DRM" + ] + } + ] + }, + "webdeviceData": { + "nomadismAllowed": true + }, + "technicalChannels": { + "live": [ + { + "techChannelId": "400415", + "type": "CLOUDTV", + "liveTargetURLRelativePath": "livetv_television_de_galicia_ctv", + "usi": 400415, + "isDRMized": true, + "csa5Disabled": true + } + ], + "npvr": [ + { + "externalId": "livetv_television_de_galicia_ctv", + "techChannelId": "400415", + "type": "CLOUDTV", + "usi": 400415, + "isDRMized": true, + "antiAdskipping": "DEACTIVATED", + "csa5Disabled": true + } + ], + "startover": [] + } + }, + { + "name": "REAL MADRID TV", + "editoChannelId": "livetv_real_madrid_tv_espagnol", + "lcn": 442, + "idEPG": 90442, + "epgAvailable": false, + "epgTextSubstitution": "", + "displayOrder": 442, + "csaCode": 1, + "slogan": "Le plus grand club de football du monde", + "catchupChannelId": "", + "newChannel": true, + "roamingBlocked": false, + "allowedDeviceCategories": [ + "M_ANDROID", + "M_IOS", + "M_TABLET_ANDROID", + "M_TABLET_IOS", + "W_AIRPLAY", + "W_CHROMECAST", + "W_LACLETV2", + "W_PC", + "W_SMARTTV", + "S_STB" + ], + "packages": [ + "PA_bouquet_espagnol", + "PI_WHITELIST" + ], + "hasRightIAccess": true, + "hasRightMAccess": false, + "logos": [ + { + "definitionType": "mobileAppli", + "listLogos": [ + { + "size": "183x183", + "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_real_madrid_tv_espagnol%2F20230324_101810%2FmobileAppli%2Flogo_183x183.png" + } + ] + }, + { + "definitionType": "mobileAppliDark", + "listLogos": [ + { + "size": "183x183", + "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_real_madrid_tv_espagnol%2F20230324_101810%2FmobileAppliDark%2Flogo_183x183.png" + } + ] + }, + { + "definitionType": "webTVLogo", + "listLogos": [ + { + "size": "180x96", + "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_real_madrid_tv_espagnol%2F20230324_101810%2FwebTVLogo%2Flogo_180x96.png" + } + ] + }, + { + "definitionType": "webTVSquare", + "listLogos": [ + { + "size": "150x150", + "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_real_madrid_tv_espagnol%2F20230324_101810%2FwebTVSquare%2Flogo_150x150.png" + } + ] + } + ], + "mobileData": { + "wifiForbidden": false, + "wifiSecuredOnly": false, + "everywhereChannel": true, + "nomadismAllowed": true, + "drmLevels": [ + { + "definition": "SD", + "securedTerminal": [ + "DRM-HW", + "DRM-SW" + ], + "unsecuredTerminal": [ + "DRM-HW", + "DRM-SW" + ] + }, + { + "definition": "HD", + "securedTerminal": [ + "NO-DRM" + ], + "unsecuredTerminal": [ + "NO-DRM" + ] + } + ] + }, + "webdeviceData": { + "nomadismAllowed": true + }, + "technicalChannels": { + "live": [ + { + "techChannelId": "400319", + "type": "CLOUDTV", + "liveTargetURLRelativePath": "livetv_real_madrid_tv_ctv", + "usi": 400319, + "isDRMized": true, + "csa5Disabled": true + } + ], + "npvr": [ + { + "externalId": "livetv_real_madrid_tv_ctv", + "techChannelId": "400319", + "type": "CLOUDTV", + "usi": 400319, + "isDRMized": true, + "antiAdskipping": "DEACTIVATED", + "csa5Disabled": true + } + ], + "startover": [] + } + }, + { + "name": "RTP 3", + "editoChannelId": "livetv_rtp3", + "lcn": 444, + "idEPG": 90444, + "epgAvailable": false, + "epgTextSubstitution": "", + "displayOrder": 444, + "csaCode": 1, + "slogan": "Informação. Informação. Informação.", + "catchupChannelId": "", + "newChannel": false, + "roamingBlocked": true, + "allowedDeviceCategories": [ + "M_ANDROID", + "M_IOS", + "M_TABLET_ANDROID", + "M_TABLET_IOS", + "W_AIRPLAY", + "W_CHROMECAST", + "W_LACLETV2", + "W_SMARTTV", + "W_PC", + "S_STB" + ], + "packages": [ + "PA_BQ_BASIC_M", + "PA_BQ_TVDIGITALE_I", + "PA_BQ_BASIC_I", + "PA_BQ_BASICQUAD_I", + "PI_WHITELIST" + ], + "hasRightIAccess": true, + "hasRightMAccess": true, + "logos": [ + { + "definitionType": "mobileAppli", + "listLogos": [ + { + "size": "183x183", + "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_rtp3%2F20170629_134322%2FmobileAppli%2Flogo_183x183.png" + } + ] + }, + { + "definitionType": "mobileAppliDark", + "listLogos": [ + { + "size": "183x183", + "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_rtp3%2F20170629_134322%2FmobileAppliDark%2Flogo_183x183.png" + } + ] + }, + { + "definitionType": "webTVLogo", + "listLogos": [ + { + "size": "180x96", + "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_rtp3%2F20170629_134322%2FwebTVLogo%2Flogo_180x96.png" + } + ] + }, + { + "definitionType": "webTVSquare", + "listLogos": [ + { + "size": "150x150", + "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_rtp3%2F20170629_134322%2FwebTVSquare%2Flogo_150x150.png" + } + ] + } + ], + "mobileData": { + "wifiForbidden": false, + "wifiSecuredOnly": false, + "everywhereChannel": true, + "nomadismAllowed": true, + "drmLevels": [ + { + "definition": "SD", + "securedTerminal": [ + "DRM-HW", + "DRM-SW" + ], + "unsecuredTerminal": [ + "DRM-HW", + "DRM-SW" + ] + }, + { + "definition": "HD", + "securedTerminal": [ + "ND" + ], + "unsecuredTerminal": [ + "ND" + ] + } + ] + }, + "webdeviceData": { + "nomadismAllowed": true + }, + "technicalChannels": { + "live": [ + { + "techChannelId": "400179", + "type": "CLOUDTV", + "liveTargetURLRelativePath": "livetv_rtp3_ctv", + "usi": 400179, + "isDRMized": true, + "csa5Disabled": true + } + ], + "npvr": [ + { + "externalId": "livetv_rtp3_ctv", + "techChannelId": "400179", + "type": "CLOUDTV", + "usi": 400179, + "isDRMized": true, + "antiAdskipping": "DEACTIVATED", + "csa5Disabled": true + } + ], + "startover": [] + } + }, + { + "name": "TVI INTERNACIONAL", + "editoChannelId": "livetv_tviinternacional", + "lcn": 447, + "idEPG": 90447, + "epgAvailable": false, + "epgTextSubstitution": "", + "displayOrder": 447, + "csaCode": 1, + "slogan": "A casa Portuguesa", + "catchupChannelId": "", + "newChannel": true, + "roamingBlocked": true, + "allowedDeviceCategories": [ + "M_ANDROID", + "M_IOS", + "M_TABLET_ANDROID", + "M_TABLET_IOS", + "W_AIRPLAY", + "W_CHROMECAST", + "W_LACLETV2", + "W_SMARTTV", + "W_PC", + "S_STB" + ], + "packages": [ + "PA_bouquet_lusophone", + "PI_WHITELIST" + ], + "hasRightIAccess": true, + "hasRightMAccess": false, + "logos": [ + { + "definitionType": "mobileAppli", + "listLogos": [ + { + "size": "183x183", + "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_tviinternacional%2F20160401_110530%2FmobileAppli%2Flogo_183x183.png" + } + ] + }, + { + "definitionType": "mobileAppliDark", + "listLogos": [ + { + "size": "183x183", + "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_tviinternacional%2F20160401_110530%2FmobileAppliDark%2Flogo_183x183.png" + } + ] + }, + { + "definitionType": "webTVLogo", + "listLogos": [ + { + "size": "180x96", + "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_tviinternacional%2F20160401_110530%2FwebTVLogo%2Flogo_180x96.png" + } + ] + }, + { + "definitionType": "webTVSquare", + "listLogos": [ + { + "size": "150x150", + "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_tviinternacional%2F20160401_110530%2FwebTVSquare%2Flogo_150x150.png" + } + ] + } + ], + "mobileData": { + "wifiForbidden": false, + "wifiSecuredOnly": false, + "everywhereChannel": true, + "nomadismAllowed": true, + "drmLevels": [ + { + "definition": "SD", + "securedTerminal": [ + "DRM-HW", + "DRM-SW" + ], + "unsecuredTerminal": [ + "DRM-HW", + "DRM-SW" + ] + }, + { + "definition": "HD", + "securedTerminal": [ + "ND" + ], + "unsecuredTerminal": [ + "ND" + ] + } + ] + }, + "webdeviceData": { + "nomadismAllowed": true + }, + "technicalChannels": { + "live": [ + { + "techChannelId": "400172", + "type": "CLOUDTV", + "liveTargetURLRelativePath": "livetv_tvi_internacional_ctv", + "usi": 400172, + "isDRMized": true, + "csa5Disabled": true + } + ], + "npvr": [ + { + "externalId": "livetv_tvi_internacional_ctv", + "techChannelId": "400172", + "type": "CLOUDTV", + "usi": 400172, + "isDRMized": true, + "antiAdskipping": "DEACTIVATED", + "csa5Disabled": true + } + ], + "startover": [] + } + }, + { + "name": "SIC NOTICIAS", + "editoChannelId": "livetv_sicnoticias", + "lcn": 448, + "idEPG": 90448, + "epgAvailable": false, + "epgTextSubstitution": "", + "displayOrder": 448, + "csaCode": 1, + "slogan": "Os seus olhos no Mundo", + "catchupChannelId": "", + "newChannel": true, + "roamingBlocked": true, + "allowedDeviceCategories": [ + "M_ANDROID", + "M_IOS", + "M_TABLET_ANDROID", + "M_TABLET_IOS", + "W_AIRPLAY", + "W_CHROMECAST", + "W_LACLETV2", + "W_SMARTTV", + "W_PC", + "S_STB" + ], + "packages": [ + "PA_bouquet_lusophone", + "PI_WHITELIST" + ], + "hasRightIAccess": true, + "hasRightMAccess": false, + "logos": [ + { + "definitionType": "mobileAppli", + "listLogos": [ + { + "size": "183x183", + "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_sicnoticias%2F20160401_110530%2FmobileAppli%2Flogo_183x183.png" + } + ] + }, + { + "definitionType": "mobileAppliDark", + "listLogos": [ + { + "size": "183x183", + "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_sicnoticias%2F20160401_110530%2FmobileAppliDark%2Flogo_183x183.png" + } + ] + }, + { + "definitionType": "webTVLogo", + "listLogos": [ + { + "size": "180x96", + "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_sicnoticias%2F20160401_110530%2FwebTVLogo%2Flogo_180x96.png" + } + ] + }, + { + "definitionType": "webTVSquare", + "listLogos": [ + { + "size": "150x150", + "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_sicnoticias%2F20160401_110530%2FwebTVSquare%2Flogo_150x150.png" + } + ] + } + ], + "mobileData": { + "wifiForbidden": false, + "wifiSecuredOnly": false, + "everywhereChannel": true, + "nomadismAllowed": true, + "drmLevels": [ + { + "definition": "SD", + "securedTerminal": [ + "DRM-HW", + "DRM-SW" + ], + "unsecuredTerminal": [ + "DRM-HW", + "DRM-SW" + ] + }, + { + "definition": "HD", + "securedTerminal": [ + "ND" + ], + "unsecuredTerminal": [ + "ND" + ] + } + ] + }, + "webdeviceData": { + "nomadismAllowed": true + }, + "technicalChannels": { + "live": [ + { + "techChannelId": "400166", + "type": "CLOUDTV", + "liveTargetURLRelativePath": "livetv_sic_noticias_ctv", + "usi": 400166, + "isDRMized": true, + "csa5Disabled": true + } + ], + "npvr": [ + { + "externalId": "livetv_sic_noticias_ctv", + "techChannelId": "400166", + "type": "CLOUDTV", + "usi": 400166, + "isDRMized": true, + "antiAdskipping": "DEACTIVATED", + "csa5Disabled": true + } + ], + "startover": [] + } + }, + { + "name": "SIC INTERNACIONAL", + "editoChannelId": "livetv_sicinternacional", + "lcn": 449, + "idEPG": 90449, + "epgAvailable": false, + "epgTextSubstitution": "", + "displayOrder": 449, + "csaCode": 1, + "slogan": "Portugal mais perto de si", + "catchupChannelId": "", + "newChannel": true, + "roamingBlocked": true, + "allowedDeviceCategories": [ + "M_ANDROID", + "M_IOS", + "M_TABLET_ANDROID", + "M_TABLET_IOS", + "W_AIRPLAY", + "W_CHROMECAST", + "W_LACLETV2", + "W_SMARTTV", + "W_PC", + "S_STB" + ], + "packages": [ + "PA_bouquet_lusophone", + "PI_WHITELIST" + ], + "hasRightIAccess": true, + "hasRightMAccess": false, + "logos": [ + { + "definitionType": "mobileAppli", + "listLogos": [ + { + "size": "183x183", + "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_sicinternacional%2F20160401_110530%2FmobileAppli%2Flogo_183x183.png" + } + ] + }, + { + "definitionType": "mobileAppliDark", + "listLogos": [ + { + "size": "183x183", + "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_sicinternacional%2F20160401_110530%2FmobileAppliDark%2Flogo_183x183.png" + } + ] + }, + { + "definitionType": "webTVLogo", + "listLogos": [ + { + "size": "180x96", + "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_sicinternacional%2F20160401_110530%2FwebTVLogo%2Flogo_180x96.png" + } + ] + }, + { + "definitionType": "webTVSquare", + "listLogos": [ + { + "size": "150x150", + "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_sicinternacional%2F20160401_110530%2FwebTVSquare%2Flogo_150x150.png" + } + ] + } + ], + "mobileData": { + "wifiForbidden": false, + "wifiSecuredOnly": false, + "everywhereChannel": true, + "nomadismAllowed": true, + "drmLevels": [ + { + "definition": "SD", + "securedTerminal": [ + "DRM-HW", + "DRM-SW" + ], + "unsecuredTerminal": [ + "DRM-HW", + "DRM-SW" + ] + }, + { + "definition": "HD", + "securedTerminal": [ + "ND" + ], + "unsecuredTerminal": [ + "ND" + ] + } + ] + }, + "webdeviceData": { + "nomadismAllowed": true + }, + "technicalChannels": { + "live": [ + { + "techChannelId": "400173", + "type": "CLOUDTV", + "liveTargetURLRelativePath": "livetv_sic_internacional_ctv", + "usi": 400173, + "isDRMized": true, + "csa5Disabled": true + } + ], + "npvr": [ + { + "externalId": "livetv_sic_internacional_ctv", + "techChannelId": "400173", + "type": "CLOUDTV", + "usi": 400173, + "isDRMized": true, + "antiAdskipping": "DEACTIVATED", + "csa5Disabled": true + } + ], + "startover": [] + } + }, + { + "name": "TV RECORD", + "editoChannelId": "livetv_tvrecord", + "lcn": 450, + "idEPG": 90450, + "epgAvailable": false, + "epgTextSubstitution": "", + "displayOrder": 450, + "csaCode": 1, + "slogan": "La chaine généraliste du brésil", + "catchupChannelId": "", + "newChannel": true, + "roamingBlocked": true, + "allowedDeviceCategories": [ + "M_ANDROID", + "M_IOS", + "M_TABLET_ANDROID", + "M_TABLET_IOS", + "W_AIRPLAY", + "W_CHROMECAST", + "W_LACLETV2", + "W_SMARTTV", + "W_PC", + "S_STB" + ], + "packages": [ + "PA_bouquet_lusophone", + "PI_WHITELIST" + ], + "hasRightIAccess": true, + "hasRightMAccess": false, + "logos": [ + { + "definitionType": "mobileAppli", + "listLogos": [ + { + "size": "183x183", + "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_tvrecord%2F20160401_110530%2FmobileAppli%2Flogo_183x183.png" + } + ] + }, + { + "definitionType": "mobileAppliDark", + "listLogos": [ + { + "size": "183x183", + "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_tvrecord%2F20160401_110530%2FmobileAppliDark%2Flogo_183x183.png" + } + ] + }, + { + "definitionType": "webTVLogo", + "listLogos": [ + { + "size": "180x96", + "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_tvrecord%2F20160401_110530%2FwebTVLogo%2Flogo_180x96.png" + } + ] + }, + { + "definitionType": "webTVSquare", + "listLogos": [ + { + "size": "150x150", + "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_tvrecord%2F20160401_110530%2FwebTVSquare%2Flogo_150x150.png" + } + ] + } + ], + "mobileData": { + "wifiForbidden": false, + "wifiSecuredOnly": false, + "everywhereChannel": true, + "nomadismAllowed": true, + "drmLevels": [ + { + "definition": "SD", + "securedTerminal": [ + "DRM-HW", + "DRM-SW" + ], + "unsecuredTerminal": [ + "DRM-HW", + "DRM-SW" + ] + }, + { + "definition": "HD", + "securedTerminal": [ + "ND" + ], + "unsecuredTerminal": [ + "ND" + ] + } + ] + }, + "webdeviceData": { + "nomadismAllowed": true + }, + "technicalChannels": { + "live": [ + { + "techChannelId": "400174", + "type": "CLOUDTV", + "liveTargetURLRelativePath": "livetv_tv_record_ctv", + "usi": 400174, + "isDRMized": true, + "csa5Disabled": true + } + ], + "npvr": [ + { + "externalId": "livetv_tv_record_ctv", + "techChannelId": "400174", + "type": "CLOUDTV", + "usi": 400174, + "isDRMized": true, + "antiAdskipping": "DEACTIVATED", + "csa5Disabled": true + } + ], + "startover": [] + } + }, + { + "name": "TVI FICCAO", + "editoChannelId": "livetv_tvificcao", + "lcn": 451, + "idEPG": 90451, + "epgAvailable": false, + "epgTextSubstitution": "", + "displayOrder": 451, + "csaCode": 1, + "slogan": "Juntos, vivemos histórias", + "catchupChannelId": "", + "newChannel": true, + "roamingBlocked": true, + "allowedDeviceCategories": [ + "M_ANDROID", + "M_IOS", + "M_TABLET_ANDROID", + "M_TABLET_IOS", + "W_AIRPLAY", + "W_CHROMECAST", + "W_LACLETV2", + "W_SMARTTV", + "W_PC", + "S_STB" + ], + "packages": [ + "PA_bouquet_lusophone", + "PI_WHITELIST" + ], + "hasRightIAccess": true, + "hasRightMAccess": false, + "logos": [ + { + "definitionType": "mobileAppli", + "listLogos": [ + { + "size": "183x183", + "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_tvificcao%2F20160401_110530%2FmobileAppli%2Flogo_183x183.png" + } + ] + }, + { + "definitionType": "mobileAppliDark", + "listLogos": [ + { + "size": "183x183", + "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_tvificcao%2F20160401_110530%2FmobileAppliDark%2Flogo_183x183.png" + } + ] + }, + { + "definitionType": "webTVLogo", + "listLogos": [ + { + "size": "180x96", + "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_tvificcao%2F20160401_110530%2FwebTVLogo%2Flogo_180x96.png" + } + ] + }, + { + "definitionType": "webTVSquare", + "listLogos": [ + { + "size": "150x150", + "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_tvificcao%2F20160401_110530%2FwebTVSquare%2Flogo_150x150.png" + } + ] + } + ], + "mobileData": { + "wifiForbidden": false, + "wifiSecuredOnly": false, + "everywhereChannel": true, + "nomadismAllowed": true, + "drmLevels": [ + { + "definition": "SD", + "securedTerminal": [ + "DRM-HW", + "DRM-SW" + ], + "unsecuredTerminal": [ + "DRM-HW", + "DRM-SW" + ] + }, + { + "definition": "HD", + "securedTerminal": [ + "ND" + ], + "unsecuredTerminal": [ + "ND" + ] + } + ] + }, + "webdeviceData": { + "nomadismAllowed": true + }, + "technicalChannels": { + "live": [ + { + "techChannelId": "400175", + "type": "CLOUDTV", + "liveTargetURLRelativePath": "livetv_tvi_ficcao_ctv", + "usi": 400175, + "isDRMized": true, + "csa5Disabled": true + } + ], + "npvr": [ + { + "externalId": "livetv_tvi_ficcao_ctv", + "techChannelId": "400175", + "type": "CLOUDTV", + "usi": 400175, + "isDRMized": true, + "antiAdskipping": "DEACTIVATED", + "csa5Disabled": true + } + ], + "startover": [] + } + }, + { + "name": "ALMA LUSA", + "editoChannelId": "livetv_alma_lusa", + "lcn": 453, + "idEPG": 90453, + "epgAvailable": false, + "epgTextSubstitution": "", + "displayOrder": 453, + "csaCode": 1, + "slogan": "A Música Portuguesa", + "catchupChannelId": "", + "newChannel": true, + "roamingBlocked": false, + "allowedDeviceCategories": [ + "M_ANDROID", + "M_IOS", + "M_TABLET_ANDROID", + "M_TABLET_IOS", + "W_AIRPLAY", + "W_CHROMECAST", + "W_LACLETV2", + "W_SMARTTV", + "W_PC", + "S_STB" + ], + "packages": [ + "PA_bouquet_lusophone", + "PI_WHITELIST" + ], + "hasRightIAccess": true, + "hasRightMAccess": false, + "logos": [ + { + "definitionType": "mobileAppli", + "listLogos": [ + { + "size": "183x183", + "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_alma_lusa%2F20191008_121050%2FmobileAppli%2Flogo_183x183.png" + } + ] + }, + { + "definitionType": "mobileAppliDark", + "listLogos": [ + { + "size": "183x183", + "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_alma_lusa%2F20191008_121050%2FmobileAppliDark%2Flogo_183x183.png" + } + ] + }, + { + "definitionType": "webTVLogo", + "listLogos": [ + { + "size": "180x96", + "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_alma_lusa%2F20191008_121050%2FwebTVLogo%2Flogo_180x96.png" + } + ] + }, + { + "definitionType": "webTVSquare", + "listLogos": [ + { + "size": "150x150", + "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_alma_lusa%2F20191008_121050%2FwebTVSquare%2Flogo_150x150.png" + } + ] + } + ], + "mobileData": { + "wifiForbidden": false, + "wifiSecuredOnly": false, + "everywhereChannel": true, + "nomadismAllowed": true, + "drmLevels": [ + { + "definition": "SD", + "securedTerminal": [ + "DRM-HW", + "DRM-SW" + ], + "unsecuredTerminal": [ + "DRM-HW", + "DRM-SW" + ] + }, + { + "definition": "HD", + "securedTerminal": [ + "ND" + ], + "unsecuredTerminal": [ + "ND" + ] + } + ] + }, + "webdeviceData": { + "nomadismAllowed": true + }, + "technicalChannels": { + "live": [ + { + "techChannelId": "400177", + "type": "CLOUDTV", + "liveTargetURLRelativePath": "livetv_alma_lusa_ctv", + "usi": 400177, + "isDRMized": true, + "csa5Disabled": true + } + ], + "npvr": [ + { + "externalId": "livetv_alma_lusa_ctv", + "techChannelId": "400177", + "type": "CLOUDTV", + "usi": 400177, + "isDRMized": true, + "antiAdskipping": "DEACTIVATED", + "csa5Disabled": true + } + ], + "startover": [] + } + }, + { + "name": "A BOLA TV", + "editoChannelId": "livetv_abolatv", + "lcn": 454, + "idEPG": 90454, + "epgAvailable": false, + "epgTextSubstitution": "", + "displayOrder": 454, + "csaCode": 1, + "slogan": "Sports Information Channel", + "catchupChannelId": "", + "newChannel": false, + "roamingBlocked": true, + "allowedDeviceCategories": [ + "M_ANDROID", + "M_IOS", + "M_TABLET_ANDROID", + "M_TABLET_IOS", + "W_AIRPLAY", + "W_CHROMECAST", + "W_LACLETV2", + "W_SMARTTV", + "W_PC", + "S_STB" + ], + "packages": [ + "PA_bouquet_lusophone", + "PI_WHITELIST" + ], + "hasRightIAccess": true, + "hasRightMAccess": false, + "logos": [ + { + "definitionType": "mobileAppli", + "listLogos": [ + { + "size": "183x183", + "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_abolatv%2F20170629_134322%2FmobileAppli%2Flogo_183x183.png" + } + ] + }, + { + "definitionType": "mobileAppliDark", + "listLogos": [ + { + "size": "183x183", + "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_abolatv%2F20170629_134322%2FmobileAppliDark%2Flogo_183x183.png" + } + ] + }, + { + "definitionType": "webTVLogo", + "listLogos": [ + { + "size": "180x96", + "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_abolatv%2F20170629_134322%2FwebTVLogo%2Flogo_180x96.png" + } + ] + }, + { + "definitionType": "webTVSquare", + "listLogos": [ + { + "size": "150x150", + "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_abolatv%2F20170629_134322%2FwebTVSquare%2Flogo_150x150.png" + } + ] + } + ], + "mobileData": { + "wifiForbidden": false, + "wifiSecuredOnly": false, + "everywhereChannel": true, + "nomadismAllowed": true, + "drmLevels": [ + { + "definition": "SD", + "securedTerminal": [ + "DRM-HW", + "DRM-SW" + ], + "unsecuredTerminal": [ + "DRM-HW", + "DRM-SW" + ] + }, + { + "definition": "HD", + "securedTerminal": [ + "ND" + ], + "unsecuredTerminal": [ + "ND" + ] + } + ] + }, + "webdeviceData": { + "nomadismAllowed": true + }, + "technicalChannels": { + "live": [ + { + "techChannelId": "400178", + "type": "CLOUDTV", + "liveTargetURLRelativePath": "livetv_abola_tv_ctv", + "usi": 400178, + "isDRMized": true, + "csa5Disabled": true + } + ], + "npvr": [ + { + "externalId": "livetv_abola_tv_ctv", + "techChannelId": "400178", + "type": "CLOUDTV", + "usi": 400178, + "isDRMized": true, + "antiAdskipping": "DEACTIVATED", + "csa5Disabled": true + } + ], + "startover": [] + } + }, + { + "name": "RTPI", + "editoChannelId": "livetv_rtpi", + "lcn": 455, + "idEPG": 169, + "epgAvailable": true, + "epgTextSubstitution": "", + "displayOrder": 455, + "csaCode": 1, + "slogan": "La chaîne généraliste portugaise", + "catchupChannelId": "", + "newChannel": false, + "roamingBlocked": true, + "allowedDeviceCategories": [ + "M_ANDROID", + "M_IOS", + "M_TABLET_ANDROID", + "M_TABLET_IOS", + "W_AIRPLAY", + "W_CHROMECAST", + "W_LACLETV2", + "W_PC", + "W_SMARTTV", + "S_STB" + ], + "packages": [ + "PA_bouquet_lusophone", + "PI_WHITELIST" + ], + "hasRightIAccess": true, + "hasRightMAccess": false, + "logos": [ + { + "definitionType": "mobileAppli", + "listLogos": [ + { + "size": "183x183", + "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_rtpi%2F20221121_105241%2FmobileAppli%2Flogo_183x183.png" + } + ] + }, + { + "definitionType": "mobileAppliDark", + "listLogos": [ + { + "size": "183x183", + "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_rtpi%2F20221121_105241%2FmobileAppliDark%2Flogo_183x183.png" + } + ] + }, + { + "definitionType": "webTVLogo", + "listLogos": [ + { + "size": "180x96", + "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_rtpi%2F20221121_105241%2FwebTVLogo%2Flogo_180x96.png" + } + ] + }, + { + "definitionType": "webTVSquare", + "listLogos": [ + { + "size": "150x150", + "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_rtpi%2F20221121_105241%2FwebTVSquare%2Flogo_150x150.png" + } + ] + } + ], + "mobileData": { + "wifiForbidden": false, + "wifiSecuredOnly": false, + "everywhereChannel": true, + "nomadismAllowed": true, + "drmLevels": [ + { + "definition": "SD", + "securedTerminal": [ + "DRM-HW", + "DRM-SW" + ], + "unsecuredTerminal": [ + "DRM-HW", + "DRM-SW" + ] + }, + { + "definition": "HD", + "securedTerminal": [ + "ND" + ], + "unsecuredTerminal": [ + "ND" + ] + } + ] + }, + "webdeviceData": { + "nomadismAllowed": true + }, + "technicalChannels": { + "live": [ + { + "techChannelId": "400165", + "type": "CLOUDTV", + "liveTargetURLRelativePath": "livetv_rtpi_ctv", + "usi": 400165, + "isDRMized": true, + "csa5Disabled": true + } + ], + "npvr": [ + { + "externalId": "livetv_rtpi_ctv", + "techChannelId": "400165", + "type": "CLOUDTV", + "usi": 400165, + "isDRMized": true, + "antiAdskipping": "DEACTIVATED", + "csa5Disabled": true + } + ], + "startover": [] + } + }, + { + "name": "CORREIO DA MANHA TV", + "editoChannelId": "livetv_correio", + "lcn": 456, + "idEPG": 90456, + "epgAvailable": false, + "epgTextSubstitution": "", + "displayOrder": 456, + "csaCode": 1, + "slogan": "Você está aqui!", + "catchupChannelId": "", + "newChannel": true, + "roamingBlocked": true, + "allowedDeviceCategories": [ + "M_ANDROID", + "M_IOS", + "M_TABLET_ANDROID", + "M_TABLET_IOS", + "W_AIRPLAY", + "W_CHROMECAST", + "W_LACLETV2", + "W_SMARTTV", + "W_PC", + "S_STB" + ], + "packages": [ + "PA_bouquet_lusophone", + "PI_WHITELIST" + ], + "hasRightIAccess": true, + "hasRightMAccess": false, + "logos": [ + { + "definitionType": "mobileAppli", + "listLogos": [ + { + "size": "183x183", + "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_correio%2F20170807_145546%2FmobileAppli%2Flogo_183x183.png" + } + ] + }, + { + "definitionType": "mobileAppliDark", + "listLogos": [ + { + "size": "183x183", + "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_correio%2F20170807_145546%2FmobileAppliDark%2Flogo_183x183.png" + } + ] + }, + { + "definitionType": "webTVLogo", + "listLogos": [ + { + "size": "180x96", + "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_correio%2F20170807_145546%2FwebTVLogo%2Flogo_180x96.png" + } + ] + }, + { + "definitionType": "webTVSquare", + "listLogos": [ + { + "size": "150x150", + "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_correio%2F20170807_145546%2FwebTVSquare%2Flogo_150x150.png" + } + ] + } + ], + "mobileData": { + "wifiForbidden": false, + "wifiSecuredOnly": false, + "everywhereChannel": true, + "nomadismAllowed": true, + "drmLevels": [ + { + "definition": "SD", + "securedTerminal": [ + "DRM-HW", + "DRM-SW" + ], + "unsecuredTerminal": [ + "DRM-HW", + "DRM-SW" + ] + }, + { + "definition": "HD", + "securedTerminal": [ + "ND" + ], + "unsecuredTerminal": [ + "ND" + ] + } + ] + }, + "webdeviceData": { + "nomadismAllowed": true + }, + "technicalChannels": { + "live": [ + { + "techChannelId": "400180", + "type": "CLOUDTV", + "liveTargetURLRelativePath": "livetv_correio_da_manha_tv_ctv", + "usi": 400180, + "isDRMized": true, + "csa5Disabled": true + } + ], + "npvr": [ + { + "externalId": "livetv_correio_da_manha_tv_ctv", + "techChannelId": "400180", + "type": "CLOUDTV", + "usi": 400180, + "isDRMized": true, + "antiAdskipping": "DEACTIVATED", + "csa5Disabled": true + } + ], + "startover": [] + } + }, + { + "name": "RAI UNO", + "editoChannelId": "livetv_rai_uno", + "lcn": 460, + "idEPG": 156, + "epgAvailable": true, + "epgTextSubstitution": "", + "displayOrder": 460, + "csaCode": 1, + "slogan": "Rai. Pour toi, pour tous", + "catchupChannelId": "", + "newChannel": true, + "roamingBlocked": false, + "allowedDeviceCategories": [ + "M_ANDROID", + "M_IOS", + "M_TABLET_ANDROID", + "M_TABLET_IOS", + "W_AIRPLAY", + "W_CHROMECAST", + "W_LACLETV2", + "W_SMARTTV", + "W_PC", + "S_STB" + ], + "packages": [ + "PA_bouquet_italien", + "PI_WHITELIST" + ], + "hasRightIAccess": true, + "hasRightMAccess": false, + "logos": [ + { + "definitionType": "mobileAppli", + "listLogos": [ + { + "size": "183x183", + "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_rai_uno%2F20210517_173924%2FmobileAppli%2Flogo_183x183.png" + } + ] + }, + { + "definitionType": "mobileAppliDark", + "listLogos": [ + { + "size": "183x183", + "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_rai_uno%2F20210517_173924%2FmobileAppliDark%2Flogo_183x183.png" + } + ] + }, + { + "definitionType": "webTVLogo", + "listLogos": [ + { + "size": "180x96", + "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_rai_uno%2F20210517_173924%2FwebTVLogo%2Flogo_180x96.png" + } + ] + }, + { + "definitionType": "webTVSquare", + "listLogos": [ + { + "size": "150x150", + "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_rai_uno%2F20210517_173924%2FwebTVSquare%2Flogo_150x150.png" + } + ] + } + ], + "mobileData": { + "wifiForbidden": false, + "wifiSecuredOnly": false, + "everywhereChannel": true, + "nomadismAllowed": true, + "drmLevels": [ + { + "definition": "SD", + "securedTerminal": [ + "DRM-HW", + "DRM-SW" + ], + "unsecuredTerminal": [ + "DRM-HW", + "DRM-SW" + ] + }, + { + "definition": "HD", + "securedTerminal": [ + "ND" + ], + "unsecuredTerminal": [ + "ND" + ] + } + ] + }, + "webdeviceData": { + "nomadismAllowed": true + }, + "technicalChannels": { + "live": [ + { + "techChannelId": "400383", + "type": "CLOUDTV", + "liveTargetURLRelativePath": "livetv_raiuno_ctv", + "usi": 400383, + "isDRMized": true, + "csa5Disabled": true + } + ], + "npvr": [ + { + "externalId": "livetv_raiuno_ctv", + "techChannelId": "400383", + "type": "CLOUDTV", + "usi": 400383, + "isDRMized": true, + "antiAdskipping": "DEACTIVATED", + "csa5Disabled": true + } + ], + "startover": [] + } + }, + { + "name": "RAI DUE", + "editoChannelId": "livetv_rai_due", + "lcn": 461, + "idEPG": 154, + "epgAvailable": true, + "epgTextSubstitution": "", + "displayOrder": 461, + "csaCode": 1, + "slogan": "Rai. Pour toi, pour tous", + "catchupChannelId": "", + "newChannel": true, + "roamingBlocked": false, + "allowedDeviceCategories": [ + "M_ANDROID", + "M_IOS", + "M_TABLET_ANDROID", + "M_TABLET_IOS", + "W_AIRPLAY", + "W_CHROMECAST", + "W_LACLETV2", + "W_SMARTTV", + "W_PC", + "S_STB" + ], + "packages": [ + "PA_bouquet_italien", + "PI_WHITELIST" + ], + "hasRightIAccess": true, + "hasRightMAccess": false, + "logos": [ + { + "definitionType": "mobileAppli", + "listLogos": [ + { + "size": "183x183", + "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_rai_due%2F20210517_173924%2FmobileAppli%2Flogo_183x183.png" + } + ] + }, + { + "definitionType": "mobileAppliDark", + "listLogos": [ + { + "size": "183x183", + "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_rai_due%2F20210517_173924%2FmobileAppliDark%2Flogo_183x183.png" + } + ] + }, + { + "definitionType": "webTVLogo", + "listLogos": [ + { + "size": "180x96", + "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_rai_due%2F20210517_173924%2FwebTVLogo%2Flogo_180x96.png" + } + ] + }, + { + "definitionType": "webTVSquare", + "listLogos": [ + { + "size": "150x150", + "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_rai_due%2F20210517_173924%2FwebTVSquare%2Flogo_150x150.png" + } + ] + } + ], + "mobileData": { + "wifiForbidden": false, + "wifiSecuredOnly": false, + "everywhereChannel": true, + "nomadismAllowed": true, + "drmLevels": [ + { + "definition": "SD", + "securedTerminal": [ + "DRM-HW", + "DRM-SW" + ], + "unsecuredTerminal": [ + "DRM-HW", + "DRM-SW" + ] + }, + { + "definition": "HD", + "securedTerminal": [ + "ND" + ], + "unsecuredTerminal": [ + "ND" + ] + } + ] + }, + "webdeviceData": { + "nomadismAllowed": true + }, + "technicalChannels": { + "live": [ + { + "techChannelId": "400384", + "type": "CLOUDTV", + "liveTargetURLRelativePath": "livetv_raidue_ctv", + "usi": 400384, + "isDRMized": true, + "csa5Disabled": true + } + ], + "npvr": [ + { + "externalId": "livetv_raidue_ctv", + "techChannelId": "400384", + "type": "CLOUDTV", + "usi": 400384, + "isDRMized": true, + "antiAdskipping": "DEACTIVATED", + "csa5Disabled": true + } + ], + "startover": [] + } + }, + { + "name": "RAI TRE", + "editoChannelId": "livetv_rai_tre", + "lcn": 462, + "idEPG": 155, + "epgAvailable": true, + "epgTextSubstitution": "", + "displayOrder": 462, + "csaCode": 1, + "slogan": "Rai. Pour toi, pour tous", + "catchupChannelId": "", + "newChannel": true, + "roamingBlocked": false, + "allowedDeviceCategories": [ + "M_ANDROID", + "M_IOS", + "M_TABLET_ANDROID", + "M_TABLET_IOS", + "W_AIRPLAY", + "W_CHROMECAST", + "W_LACLETV2", + "W_SMARTTV", + "W_PC", + "S_STB" + ], + "packages": [ + "PA_bouquet_italien", + "PI_WHITELIST" + ], + "hasRightIAccess": true, + "hasRightMAccess": false, + "logos": [ + { + "definitionType": "mobileAppli", + "listLogos": [ + { + "size": "183x183", + "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_rai_tre%2F20210517_173924%2FmobileAppli%2Flogo_183x183.png" + } + ] + }, + { + "definitionType": "mobileAppliDark", + "listLogos": [ + { + "size": "183x183", + "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_rai_tre%2F20210517_173924%2FmobileAppliDark%2Flogo_183x183.png" + } + ] + }, + { + "definitionType": "webTVLogo", + "listLogos": [ + { + "size": "180x96", + "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_rai_tre%2F20210517_173924%2FwebTVLogo%2Flogo_180x96.png" + } + ] + }, + { + "definitionType": "webTVSquare", + "listLogos": [ + { + "size": "150x150", + "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_rai_tre%2F20210517_173924%2FwebTVSquare%2Flogo_150x150.png" + } + ] + } + ], + "mobileData": { + "wifiForbidden": false, + "wifiSecuredOnly": false, + "everywhereChannel": true, + "nomadismAllowed": true, + "drmLevels": [ + { + "definition": "SD", + "securedTerminal": [ + "DRM-HW", + "DRM-SW" + ], + "unsecuredTerminal": [ + "DRM-HW", + "DRM-SW" + ] + }, + { + "definition": "HD", + "securedTerminal": [ + "ND" + ], + "unsecuredTerminal": [ + "ND" + ] + } + ] + }, + "webdeviceData": { + "nomadismAllowed": true + }, + "technicalChannels": { + "live": [ + { + "techChannelId": "400385", + "type": "CLOUDTV", + "liveTargetURLRelativePath": "livetv_raitre_ctv", + "usi": 400385, + "isDRMized": true, + "csa5Disabled": true + } + ], + "npvr": [ + { + "externalId": "livetv_raitre_ctv", + "techChannelId": "400385", + "type": "CLOUDTV", + "usi": 400385, + "isDRMized": true, + "antiAdskipping": "DEACTIVATED", + "csa5Disabled": true + } + ], + "startover": [] + } + }, + { + "name": "RAI STORIA", + "editoChannelId": "livetv_rai_storia", + "lcn": 463, + "idEPG": 90463, + "epgAvailable": false, + "epgTextSubstitution": "", + "displayOrder": 463, + "csaCode": 1, + "slogan": "Canale tematico di storia e cultura", + "catchupChannelId": "", + "newChannel": true, + "roamingBlocked": false, + "allowedDeviceCategories": [ + "M_ANDROID", + "M_IOS", + "M_TABLET_ANDROID", + "M_TABLET_IOS", + "W_AIRPLAY", + "W_CHROMECAST", + "W_LACLETV2", + "W_SMARTTV", + "W_PC", + "S_STB" + ], + "packages": [ + "PA_bouquet_italien", + "PI_WHITELIST" + ], + "hasRightIAccess": true, + "hasRightMAccess": false, + "logos": [ + { + "definitionType": "mobileAppli", + "listLogos": [ + { + "size": "183x183", + "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_rai_storia%2F20210517_173924%2FmobileAppli%2Flogo_183x183.png" + } + ] + }, + { + "definitionType": "mobileAppliDark", + "listLogos": [ + { + "size": "183x183", + "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_rai_storia%2F20210517_173924%2FmobileAppliDark%2Flogo_183x183.png" + } + ] + }, + { + "definitionType": "webTVLogo", + "listLogos": [ + { + "size": "180x96", + "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_rai_storia%2F20210517_173924%2FwebTVLogo%2Flogo_180x96.png" + } + ] + }, + { + "definitionType": "webTVSquare", + "listLogos": [ + { + "size": "150x150", + "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_rai_storia%2F20210517_173924%2FwebTVSquare%2Flogo_150x150.png" + } + ] + } + ], + "mobileData": { + "wifiForbidden": false, + "wifiSecuredOnly": false, + "everywhereChannel": true, + "nomadismAllowed": true, + "drmLevels": [ + { + "definition": "SD", + "securedTerminal": [ + "DRM-HW", + "DRM-SW" + ], + "unsecuredTerminal": [ + "DRM-HW", + "DRM-SW" + ] + }, + { + "definition": "HD", + "securedTerminal": [ + "ND" + ], + "unsecuredTerminal": [ + "ND" + ] + } + ] + }, + "webdeviceData": { + "nomadismAllowed": true + }, + "technicalChannels": { + "live": [ + { + "techChannelId": "400386", + "type": "CLOUDTV", + "liveTargetURLRelativePath": "livetv_raistoria_ctv", + "usi": 400386, + "isDRMized": true, + "csa5Disabled": true + } + ], + "npvr": [ + { + "externalId": "livetv_raistoria_ctv", + "techChannelId": "400386", + "type": "CLOUDTV", + "usi": 400386, + "isDRMized": true, + "antiAdskipping": "DEACTIVATED", + "csa5Disabled": true + } + ], + "startover": [] + } + }, + { + "name": "RAI SCUOLA", + "editoChannelId": "livetv_rai_scuola", + "lcn": 464, + "idEPG": 90464, + "epgAvailable": false, + "epgTextSubstitution": "", + "displayOrder": 464, + "csaCode": 1, + "slogan": "Il videoportale della scuola italiana", + "catchupChannelId": "", + "newChannel": true, + "roamingBlocked": false, + "allowedDeviceCategories": [ + "M_ANDROID", + "M_IOS", + "M_TABLET_ANDROID", + "M_TABLET_IOS", + "W_AIRPLAY", + "W_CHROMECAST", + "W_LACLETV2", + "W_SMARTTV", + "W_PC", + "S_STB" + ], + "packages": [ + "PA_bouquet_italien", + "PI_WHITELIST" + ], + "hasRightIAccess": true, + "hasRightMAccess": false, + "logos": [ + { + "definitionType": "mobileAppli", + "listLogos": [ + { + "size": "183x183", + "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_rai_scuola%2F20210517_173924%2FmobileAppli%2Flogo_183x183.png" + } + ] + }, + { + "definitionType": "mobileAppliDark", + "listLogos": [ + { + "size": "183x183", + "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_rai_scuola%2F20210517_173924%2FmobileAppliDark%2Flogo_183x183.png" + } + ] + }, + { + "definitionType": "webTVLogo", + "listLogos": [ + { + "size": "180x96", + "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_rai_scuola%2F20210517_173924%2FwebTVLogo%2Flogo_180x96.png" + } + ] + }, + { + "definitionType": "webTVSquare", + "listLogos": [ + { + "size": "150x150", + "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_rai_scuola%2F20210517_173924%2FwebTVSquare%2Flogo_150x150.png" + } + ] + } + ], + "mobileData": { + "wifiForbidden": false, + "wifiSecuredOnly": false, + "everywhereChannel": true, + "nomadismAllowed": true, + "drmLevels": [ + { + "definition": "SD", + "securedTerminal": [ + "DRM-HW", + "DRM-SW" + ], + "unsecuredTerminal": [ + "DRM-HW", + "DRM-SW" + ] + }, + { + "definition": "HD", + "securedTerminal": [ + "ND" + ], + "unsecuredTerminal": [ + "ND" + ] + } + ] + }, + "webdeviceData": { + "nomadismAllowed": true + }, + "technicalChannels": { + "live": [ + { + "techChannelId": "400387", + "type": "CLOUDTV", + "liveTargetURLRelativePath": "livetv_raiscuola_ctv", + "usi": 400387, + "isDRMized": true, + "csa5Disabled": true + } + ], + "npvr": [ + { + "externalId": "livetv_raiscuola_ctv", + "techChannelId": "400387", + "type": "CLOUDTV", + "usi": 400387, + "isDRMized": true, + "antiAdskipping": "DEACTIVATED", + "csa5Disabled": true + } + ], + "startover": [] + } + }, + { + "name": "RAI NEWS 24", + "editoChannelId": "livetv_rai_news_24", + "lcn": 465, + "idEPG": 1129, + "epgAvailable": true, + "epgTextSubstitution": "", + "displayOrder": 465, + "csaCode": 1, + "slogan": "Toute l'info en italien", + "catchupChannelId": "", + "newChannel": true, + "roamingBlocked": false, + "allowedDeviceCategories": [ + "M_ANDROID", + "M_IOS", + "M_TABLET_ANDROID", + "M_TABLET_IOS", + "W_AIRPLAY", + "W_CHROMECAST", + "W_LACLETV2", + "W_SMARTTV", + "W_PC", + "S_STB" + ], + "packages": [ + "PA_bouquet_italien", + "PI_WHITELIST" + ], + "hasRightIAccess": true, + "hasRightMAccess": false, + "logos": [ + { + "definitionType": "mobileAppli", + "listLogos": [ + { + "size": "183x183", + "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_rai_news_24%2F20210517_173924%2FmobileAppli%2Flogo_183x183.png" + } + ] + }, + { + "definitionType": "mobileAppliDark", + "listLogos": [ + { + "size": "183x183", + "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_rai_news_24%2F20210517_173924%2FmobileAppliDark%2Flogo_183x183.png" + } + ] + }, + { + "definitionType": "webTVLogo", + "listLogos": [ + { + "size": "180x96", + "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_rai_news_24%2F20210517_173924%2FwebTVLogo%2Flogo_180x96.png" + } + ] + }, + { + "definitionType": "webTVSquare", + "listLogos": [ + { + "size": "150x150", + "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_rai_news_24%2F20210517_173924%2FwebTVSquare%2Flogo_150x150.png" + } + ] + } + ], + "mobileData": { + "wifiForbidden": false, + "wifiSecuredOnly": false, + "everywhereChannel": true, + "nomadismAllowed": true, + "drmLevels": [ + { + "definition": "SD", + "securedTerminal": [ + "DRM-HW", + "DRM-SW" + ], + "unsecuredTerminal": [ + "DRM-HW", + "DRM-SW" + ] + }, + { + "definition": "HD", + "securedTerminal": [ + "ND" + ], + "unsecuredTerminal": [ + "ND" + ] + } + ] + }, + "webdeviceData": { + "nomadismAllowed": true + }, + "technicalChannels": { + "live": [ + { + "techChannelId": "400388", + "type": "CLOUDTV", + "liveTargetURLRelativePath": "livetv_rainews24_ctv", + "usi": 400388, + "isDRMized": true, + "csa5Disabled": true + } + ], + "npvr": [ + { + "externalId": "livetv_rainews24_ctv", + "techChannelId": "400388", + "type": "CLOUDTV", + "usi": 400388, + "isDRMized": true, + "antiAdskipping": "DEACTIVATED", + "csa5Disabled": true + } + ], + "startover": [] + } + }, + { + "name": "MEDIASET ITALIA", + "editoChannelId": "livetv_mediaset_italia", + "lcn": 466, + "idEPG": 90466, + "epgAvailable": false, + "epgTextSubstitution": "", + "displayOrder": 466, + "csaCode": 1, + "slogan": "La TV des Italiens à l'étranger", + "catchupChannelId": "", + "newChannel": true, + "roamingBlocked": false, + "allowedDeviceCategories": [ + "M_ANDROID", + "M_IOS", + "M_TABLET_ANDROID", + "M_TABLET_IOS", + "W_AIRPLAY", + "W_CHROMECAST", + "W_LACLETV2", + "W_SMARTTV", + "W_PC", + "S_STB" + ], + "packages": [ + "PA_bouquet_italien", + "PI_WHITELIST" + ], + "hasRightIAccess": true, + "hasRightMAccess": false, + "logos": [ + { + "definitionType": "mobileAppli", + "listLogos": [ + { + "size": "183x183", + "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_mediaset_italia%2F20210517_173924%2FmobileAppli%2Flogo_183x183.png" + } + ] + }, + { + "definitionType": "mobileAppliDark", + "listLogos": [ + { + "size": "183x183", + "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_mediaset_italia%2F20210517_173924%2FmobileAppliDark%2Flogo_183x183.png" + } + ] + }, + { + "definitionType": "webTVLogo", + "listLogos": [ + { + "size": "180x96", + "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_mediaset_italia%2F20210517_173924%2FwebTVLogo%2Flogo_180x96.png" + } + ] + }, + { + "definitionType": "webTVSquare", + "listLogos": [ + { + "size": "150x150", + "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_mediaset_italia%2F20210517_173924%2FwebTVSquare%2Flogo_150x150.png" + } + ] + } + ], + "mobileData": { + "wifiForbidden": false, + "wifiSecuredOnly": false, + "everywhereChannel": true, + "nomadismAllowed": true, + "drmLevels": [ + { + "definition": "SD", + "securedTerminal": [ + "DRM-HW", + "DRM-SW" + ], + "unsecuredTerminal": [ + "DRM-HW", + "DRM-SW" + ] + }, + { + "definition": "HD", + "securedTerminal": [ + "ND" + ], + "unsecuredTerminal": [ + "ND" + ] + } + ] + }, + "webdeviceData": { + "nomadismAllowed": true + }, + "technicalChannels": { + "live": [ + { + "techChannelId": "400389", + "type": "CLOUDTV", + "liveTargetURLRelativePath": "livetv_mediasetitalia_ctv", + "usi": 400389, + "isDRMized": true, + "csa5Disabled": true + } + ], + "npvr": [ + { + "externalId": "livetv_mediasetitalia_ctv", + "techChannelId": "400389", + "type": "CLOUDTV", + "usi": 400389, + "isDRMized": true, + "antiAdskipping": "DEACTIVATED", + "csa5Disabled": true + } + ], + "startover": [] + } + }, + { + "name": "THE ISRAELI NETWORK", + "editoChannelId": "livetv_the_israeli_network", + "lcn": 499, + "idEPG": 2000, + "epgAvailable": true, + "epgTextSubstitution": "", + "displayOrder": 499, + "csaCode": 1, + "slogan": "Greetings from Israel", + "catchupChannelId": "", + "newChannel": false, + "roamingBlocked": true, + "allowedDeviceCategories": [ + "W_AIRPLAY", + "W_CHROMECAST", + "W_LACLETV2", + "W_PC", + "W_SMARTTV", + "S_STB" + ], + "packages": [ + "PA_bouquet_israelien", + "PA_BQ_BASIC_I", + "PI_WHITELIST" + ], + "hasRightIAccess": true, + "hasRightMAccess": false, + "logos": [ + { + "definitionType": "mobileAppli", + "listLogos": [ + { + "size": "183x183", + "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_the_israeli_network%2F20230216_164754%2FmobileAppli%2Flogo_183x183.png" + } + ] + }, + { + "definitionType": "mobileAppliDark", + "listLogos": [ + { + "size": "183x183", + "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_the_israeli_network%2F20230216_164754%2FmobileAppliDark%2Flogo_183x183.png" + } + ] + }, + { + "definitionType": "webTVLogo", + "listLogos": [ + { + "size": "180x96", + "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_the_israeli_network%2F20230216_164754%2FwebTVLogo%2Flogo_180x96.png" + } + ] + }, + { + "definitionType": "webTVSquare", + "listLogos": [ + { + "size": "150x150", + "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_the_israeli_network%2F20230216_164754%2FwebTVSquare%2Flogo_150x150.png" + } + ] + } + ], + "webdeviceData": { + "nomadismAllowed": true + }, + "technicalChannels": { + "live": [ + { + "techChannelId": "400417", + "type": "CLOUDTV", + "liveTargetURLRelativePath": "livetv_acces_limite_ctv", + "usi": 400417, + "isDRMized": true, + "csa5Disabled": true + } + ], + "npvr": [], + "startover": [] + } + }, + { + "name": "AL ARABIYA", + "editoChannelId": "livetv_alarabiya", + "lcn": 501, + "idEPG": 90501, + "epgAvailable": false, + "epgTextSubstitution": "", + "displayOrder": 501, + "csaCode": 1, + "slogan": "Pour en savoir plus", + "catchupChannelId": "", + "newChannel": true, + "roamingBlocked": false, + "allowedDeviceCategories": [ + "M_ANDROID", + "M_IOS", + "M_TABLET_ANDROID", + "M_TABLET_IOS", + "W_AIRPLAY", + "W_CHROMECAST", + "W_LACLETV2", + "W_PC", + "W_SMARTTV", + "S_STB" + ], + "packages": [ + "PA_BQ_BASIC_M", + "PA_BQ_TVDIGITALE_I", + "PA_BQ_BASIC_I", + "PA_BQ_BASICQUAD_I", + "PI_WHITELIST" + ], + "hasRightIAccess": true, + "hasRightMAccess": true, + "logos": [ + { + "definitionType": "mobileAppli", + "listLogos": [ + { + "size": "183x183", + "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_alarabiya%2F20230515_122020%2FmobileAppli%2Flogo_183x183.png" + } + ] + }, + { + "definitionType": "mobileAppliDark", + "listLogos": [ + { + "size": "183x183", + "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_alarabiya%2F20230515_122020%2FmobileAppliDark%2Flogo_183x183.png" + } + ] + }, + { + "definitionType": "webTVLogo", + "listLogos": [ + { + "size": "180x96", + "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_alarabiya%2F20230515_122020%2FwebTVLogo%2Flogo_180x96.png" + } + ] + }, + { + "definitionType": "webTVSquare", + "listLogos": [ + { + "size": "150x150", + "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_alarabiya%2F20230515_122020%2FwebTVSquare%2Flogo_150x150.png" + } + ] + } + ], + "mobileData": { + "wifiForbidden": false, + "wifiSecuredOnly": false, + "everywhereChannel": true, + "nomadismAllowed": true, + "drmLevels": [ + { + "definition": "SD", + "securedTerminal": [ + "DRM-HW", + "DRM-SW" + ], + "unsecuredTerminal": [ + "DRM-HW", + "DRM-SW" + ] + }, + { + "definition": "HD", + "securedTerminal": [ + "DRM-HW", + "DRM-SW" + ], + "unsecuredTerminal": [ + "ND" + ] + } + ] + }, + "webdeviceData": { + "nomadismAllowed": true + }, + "technicalChannels": { + "live": [ + { + "techChannelId": "400362", + "type": "CLOUDTV", + "liveTargetURLRelativePath": "livetv_al_arabiya_ctv", + "usi": 400362, + "isDRMized": true, + "csa5Disabled": true + } + ], + "npvr": [], + "startover": [] + } + }, + { + "name": "ALARABY TELEVISION", + "editoChannelId": "livetv_alaraby2", + "lcn": 503, + "idEPG": 90503, + "epgAvailable": false, + "epgTextSubstitution": "", + "displayOrder": 503, + "csaCode": 1, + "slogan": "De A à Z", + "catchupChannelId": "", + "newChannel": true, + "roamingBlocked": true, + "allowedDeviceCategories": [ + "M_ANDROID", + "M_IOS", + "M_TABLET_ANDROID", + "M_TABLET_IOS", + "W_AIRPLAY", + "W_CHROMECAST", + "W_LACLETV2", + "W_SMARTTV", + "W_PC", + "S_STB" + ], + "packages": [ + "PA_BQ_BASIC_M", + "PA_BQ_BASIC_I", + "PA_BQ_BASICQUAD_I", + "PI_WHITELIST" + ], + "hasRightIAccess": true, + "hasRightMAccess": true, + "logos": [ + { + "definitionType": "mobileAppli", + "listLogos": [ + { + "size": "183x183", + "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_alaraby2%2F20200102_141654%2FmobileAppli%2Flogo_183x183.png" + } + ] + }, + { + "definitionType": "mobileAppliDark", + "listLogos": [ + { + "size": "183x183", + "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_alaraby2%2F20200102_141654%2FmobileAppliDark%2Flogo_183x183.png" + } + ] + }, + { + "definitionType": "webTVLogo", + "listLogos": [ + { + "size": "180x96", + "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_alaraby2%2F20200102_141654%2FwebTVLogo%2Flogo_180x96.png" + } + ] + }, + { + "definitionType": "webTVSquare", + "listLogos": [ + { + "size": "150x150", + "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_alaraby2%2F20200102_141654%2FwebTVSquare%2Flogo_150x150.png" + } + ] + } + ], + "mobileData": { + "wifiForbidden": false, + "wifiSecuredOnly": false, + "everywhereChannel": true, + "nomadismAllowed": true, + "drmLevels": [ + { + "definition": "SD", + "securedTerminal": [ + "DRM-HW", + "DRM-SW" + ], + "unsecuredTerminal": [ + "DRM-HW", + "DRM-SW" + ] + }, + { + "definition": "HD", + "securedTerminal": [ + "ND" + ], + "unsecuredTerminal": [ + "ND" + ] + } + ] + }, + "webdeviceData": { + "nomadismAllowed": true + }, + "technicalChannels": { + "live": [ + { + "techChannelId": "400245", + "type": "CLOUDTV", + "liveTargetURLRelativePath": "livetv_alarabiya_ctv", + "usi": 400245, + "isDRMized": true, + "csa5Disabled": true + } + ], + "npvr": [], + "startover": [] + } + }, + { + "name": "AL AOULA", + "editoChannelId": "livetv_alaoula", + "lcn": 504, + "idEPG": 90504, + "epgAvailable": false, + "epgTextSubstitution": "", + "displayOrder": 504, + "csaCode": 1, + "slogan": "Chaine nationale marocaine", + "catchupChannelId": "", + "newChannel": false, + "roamingBlocked": true, + "allowedDeviceCategories": [ + "M_ANDROID", + "M_IOS", + "M_TABLET_ANDROID", + "M_TABLET_IOS", + "W_AIRPLAY", + "W_CHROMECAST", + "W_LACLETV2", + "W_SMARTTV", + "W_PC", + "S_STB" + ], + "packages": [ + "PA_BQ_BASIC_M", + "PA_BQ_TVDIGITALE_I", + "PA_BQ_BASIC_I", + "PA_BQ_BASICQUAD_I", + "PI_WHITELIST" + ], + "hasRightIAccess": true, + "hasRightMAccess": true, + "logos": [ + { + "definitionType": "mobileAppli", + "listLogos": [ + { + "size": "183x183", + "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_alaoula%2F20220331_114124%2FmobileAppli%2Flogo_183x183.png" + } + ] + }, + { + "definitionType": "mobileAppliDark", + "listLogos": [ + { + "size": "183x183", + "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_alaoula%2F20220331_114124%2FmobileAppliDark%2Flogo_183x183.png" + } + ] + }, + { + "definitionType": "webTVLogo", + "listLogos": [ + { + "size": "180x96", + "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_alaoula%2F20220331_114124%2FwebTVLogo%2Flogo_180x96.png" + } + ] + }, + { + "definitionType": "webTVSquare", + "listLogos": [ + { + "size": "150x150", + "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_alaoula%2F20220331_114124%2FwebTVSquare%2Flogo_150x150.png" + } + ] + } + ], + "mobileData": { + "wifiForbidden": false, + "wifiSecuredOnly": false, + "everywhereChannel": true, + "nomadismAllowed": true, + "drmLevels": [ + { + "definition": "SD", + "securedTerminal": [ + "DRM-HW", + "DRM-SW" + ], + "unsecuredTerminal": [ + "DRM-HW", + "DRM-SW" + ] + }, + { + "definition": "HD", + "securedTerminal": [ + "ND" + ], + "unsecuredTerminal": [ + "ND" + ] + } + ] + }, + "webdeviceData": { + "nomadismAllowed": true + }, + "technicalChannels": { + "live": [ + { + "techChannelId": "400006", + "type": "CLOUDTV", + "liveTargetURLRelativePath": "livetv_al_aoula_ctv", + "usi": 400006, + "isDRMized": true, + "csa5Disabled": true + } + ], + "npvr": [ + { + "externalId": "livetv_al_aoula_ctv", + "techChannelId": "400006", + "type": "CLOUDTV", + "usi": 400006, + "isDRMized": true, + "antiAdskipping": "DEACTIVATED", + "csa5Disabled": true + } + ], + "startover": [] + } + }, + { + "name": "CANAL ALGERIE", + "editoChannelId": "livetv_canalalgerie", + "lcn": 505, + "idEPG": 90505, + "epgAvailable": false, + "epgTextSubstitution": "", + "displayOrder": 505, + "csaCode": 1, + "slogan": "La chaîne généraliste algérienne", + "catchupChannelId": "", + "newChannel": false, + "roamingBlocked": true, + "allowedDeviceCategories": [ + "M_ANDROID", + "M_IOS", + "M_TABLET_ANDROID", + "M_TABLET_IOS", + "W_AIRPLAY", + "W_CHROMECAST", + "W_LACLETV2", + "W_SMARTTV", + "W_PC", + "S_STB" + ], + "packages": [ + "PA_BQ_BASIC_M", + "PA_BQ_TVDIGITALE_I", + "PA_BQ_BASIC_I", + "PA_BQ_BASICQUAD_I", + "PI_WHITELIST" + ], + "hasRightIAccess": true, + "hasRightMAccess": true, + "logos": [ + { + "definitionType": "mobileAppli", + "listLogos": [ + { + "size": "183x183", + "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_canalalgerie%2F20151026_092415%2FmobileAppli%2Flogo_183x183.png" + } + ] + }, + { + "definitionType": "mobileAppliDark", + "listLogos": [ + { + "size": "183x183", + "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_canalalgerie%2F20151026_092415%2FmobileAppliDark%2Flogo_183x183.png" + } + ] + }, + { + "definitionType": "webTVLogo", + "listLogos": [ + { + "size": "180x96", + "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_canalalgerie%2F20151026_092415%2FwebTVLogo%2Flogo_180x96.png" + } + ] + }, + { + "definitionType": "webTVSquare", + "listLogos": [ + { + "size": "150x150", + "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_canalalgerie%2F20151026_092415%2FwebTVSquare%2Flogo_150x150.png" + } + ] + } + ], + "mobileData": { + "wifiForbidden": false, + "wifiSecuredOnly": false, + "everywhereChannel": true, + "nomadismAllowed": true, + "drmLevels": [ + { + "definition": "SD", + "securedTerminal": [ + "DRM-HW", + "DRM-SW" + ], + "unsecuredTerminal": [ + "DRM-HW", + "DRM-SW" + ] + }, + { + "definition": "HD", + "securedTerminal": [ + "ND" + ], + "unsecuredTerminal": [ + "ND" + ] + } + ] + }, + "webdeviceData": { + "nomadismAllowed": true + }, + "technicalChannels": { + "live": [ + { + "techChannelId": "400011", + "type": "CLOUDTV", + "liveTargetURLRelativePath": "livetv_canal_algerie_ctv", + "usi": 400011, + "isDRMized": true, + "csa5Disabled": true + } + ], + "npvr": [ + { + "externalId": "livetv_canal_algerie_ctv", + "techChannelId": "400011", + "type": "CLOUDTV", + "usi": 400011, + "isDRMized": true, + "antiAdskipping": "DEACTIVATED", + "csa5Disabled": true + } + ], + "startover": [] + } + }, + { + "name": "MBC", + "editoChannelId": "livetv_mbc", + "lcn": 507, + "idEPG": 90507, + "epgAvailable": false, + "epgTextSubstitution": "", + "displayOrder": 507, + "csaCode": 1, + "slogan": "la chaîne du monde arabe pour tous", + "catchupChannelId": "", + "newChannel": true, + "roamingBlocked": false, + "allowedDeviceCategories": [ + "M_ANDROID", + "M_IOS", + "M_TABLET_ANDROID", + "M_TABLET_IOS", + "W_AIRPLAY", + "W_CHROMECAST", + "W_LACLETV2", + "W_SMARTTV", + "W_PC", + "S_STB" + ], + "packages": [ + "PA_bouquet_arabe", + "PA_bouquet_arabe_max", + "PI_WHITELIST" + ], + "hasRightIAccess": true, + "hasRightMAccess": false, + "logos": [ + { + "definitionType": "mobileAppli", + "listLogos": [ + { + "size": "183x183", + "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_mbc%2F20191107_103814%2FmobileAppli%2Flogo_183x183.png" + } + ] + }, + { + "definitionType": "mobileAppliDark", + "listLogos": [ + { + "size": "183x183", + "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_mbc%2F20191107_103814%2FmobileAppliDark%2Flogo_183x183.png" + } + ] + }, + { + "definitionType": "webTVLogo", + "listLogos": [ + { + "size": "180x96", + "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_mbc%2F20191107_103814%2FwebTVLogo%2Flogo_180x96.png" + } + ] + }, + { + "definitionType": "webTVSquare", + "listLogos": [ + { + "size": "150x150", + "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_mbc%2F20191107_103814%2FwebTVSquare%2Flogo_150x150.png" + } + ] + } + ], + "mobileData": { + "wifiForbidden": false, + "wifiSecuredOnly": false, + "everywhereChannel": true, + "nomadismAllowed": true, + "drmLevels": [ + { + "definition": "SD", + "securedTerminal": [ + "DRM-HW", + "DRM-SW" + ], + "unsecuredTerminal": [ + "DRM-HW", + "DRM-SW" + ] + }, + { + "definition": "HD", + "securedTerminal": [ + "ND" + ], + "unsecuredTerminal": [ + "ND" + ] + } + ] + }, + "webdeviceData": { + "nomadismAllowed": true + }, + "technicalChannels": { + "live": [ + { + "techChannelId": "400187", + "type": "CLOUDTV", + "liveTargetURLRelativePath": "livetv_mbc_ctv", + "usi": 400187, + "isDRMized": true, + "csa5Disabled": true + } + ], + "npvr": [ + { + "externalId": "livetv_mbc_ctv", + "techChannelId": "400187", + "type": "CLOUDTV", + "usi": 400187, + "isDRMized": true, + "antiAdskipping": "DEACTIVATED", + "csa5Disabled": true + } + ], + "startover": [] + } + }, + { + "name": "ROTANA CLASSIC", + "editoChannelId": "livetv_rotana_classic", + "lcn": 508, + "idEPG": 90508, + "epgAvailable": false, + "epgTextSubstitution": "", + "displayOrder": 508, + "csaCode": 1, + "slogan": "Great classics, today", + "catchupChannelId": "", + "newChannel": true, + "roamingBlocked": false, + "allowedDeviceCategories": [ + "M_ANDROID", + "M_IOS", + "M_TABLET_ANDROID", + "M_TABLET_IOS", + "W_AIRPLAY", + "W_CHROMECAST", + "W_LACLETV2", + "W_SMARTTV", + "W_PC", + "S_STB" + ], + "packages": [ + "PA_bouquet_arabe", + "PA_bouquet_arabe_max", + "PI_WHITELIST" + ], + "hasRightIAccess": true, + "hasRightMAccess": false, + "logos": [ + { + "definitionType": "mobileAppli", + "listLogos": [ + { + "size": "183x183", + "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_rotana_classic%2F20191107_103814%2FmobileAppli%2Flogo_183x183.png" + } + ] + }, + { + "definitionType": "mobileAppliDark", + "listLogos": [ + { + "size": "183x183", + "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_rotana_classic%2F20191107_103814%2FmobileAppliDark%2Flogo_183x183.png" + } + ] + }, + { + "definitionType": "webTVLogo", + "listLogos": [ + { + "size": "180x96", + "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_rotana_classic%2F20191107_103814%2FwebTVLogo%2Flogo_180x96.png" + } + ] + }, + { + "definitionType": "webTVSquare", + "listLogos": [ + { + "size": "150x150", + "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_rotana_classic%2F20191107_103814%2FwebTVSquare%2Flogo_150x150.png" + } + ] + } + ], + "mobileData": { + "wifiForbidden": false, + "wifiSecuredOnly": false, + "everywhereChannel": true, + "nomadismAllowed": true, + "drmLevels": [ + { + "definition": "SD", + "securedTerminal": [ + "DRM-HW", + "DRM-SW" + ], + "unsecuredTerminal": [ + "DRM-HW", + "DRM-SW" + ] + }, + { + "definition": "HD", + "securedTerminal": [ + "ND" + ], + "unsecuredTerminal": [ + "ND" + ] + } + ] + }, + "webdeviceData": { + "nomadismAllowed": true + }, + "technicalChannels": { + "live": [ + { + "techChannelId": "400188", + "type": "CLOUDTV", + "liveTargetURLRelativePath": "livetv_rotana_classic_ctv", + "usi": 400188, + "isDRMized": true, + "csa5Disabled": true + } + ], + "npvr": [ + { + "externalId": "livetv_rotana_classic_ctv", + "techChannelId": "400188", + "type": "CLOUDTV", + "usi": 400188, + "isDRMized": true, + "antiAdskipping": "DEACTIVATED", + "csa5Disabled": true + } + ], + "startover": [] + } + }, + { + "name": "ROTANA CLIP", + "editoChannelId": "livetv_rotana_clip", + "lcn": 509, + "idEPG": 90509, + "epgAvailable": false, + "epgTextSubstitution": "", + "displayOrder": 509, + "csaCode": 1, + "slogan": "The best of arabic video clips", + "catchupChannelId": "", + "newChannel": true, + "roamingBlocked": false, + "allowedDeviceCategories": [ + "M_ANDROID", + "M_IOS", + "M_TABLET_ANDROID", + "M_TABLET_IOS", + "W_AIRPLAY", + "W_CHROMECAST", + "W_LACLETV2", + "W_SMARTTV", + "W_PC", + "S_STB" + ], + "packages": [ + "PA_bouquet_arabe", + "PA_bouquet_arabe_max", + "PI_WHITELIST" + ], + "hasRightIAccess": true, + "hasRightMAccess": false, + "logos": [ + { + "definitionType": "mobileAppli", + "listLogos": [ + { + "size": "183x183", + "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_rotana_clip%2F20191107_103814%2FmobileAppli%2Flogo_183x183.png" + } + ] + }, + { + "definitionType": "mobileAppliDark", + "listLogos": [ + { + "size": "183x183", + "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_rotana_clip%2F20191107_103814%2FmobileAppliDark%2Flogo_183x183.png" + } + ] + }, + { + "definitionType": "webTVLogo", + "listLogos": [ + { + "size": "180x96", + "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_rotana_clip%2F20191107_103814%2FwebTVLogo%2Flogo_180x96.png" + } + ] + }, + { + "definitionType": "webTVSquare", + "listLogos": [ + { + "size": "150x150", + "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_rotana_clip%2F20191107_103814%2FwebTVSquare%2Flogo_150x150.png" + } + ] + } + ], + "mobileData": { + "wifiForbidden": false, + "wifiSecuredOnly": false, + "everywhereChannel": true, + "nomadismAllowed": true, + "drmLevels": [ + { + "definition": "SD", + "securedTerminal": [ + "DRM-HW", + "DRM-SW" + ], + "unsecuredTerminal": [ + "DRM-HW", + "DRM-SW" + ] + }, + { + "definition": "HD", + "securedTerminal": [ + "ND" + ], + "unsecuredTerminal": [ + "ND" + ] + } + ] + }, + "webdeviceData": { + "nomadismAllowed": true + }, + "technicalChannels": { + "live": [ + { + "techChannelId": "400189", + "type": "CLOUDTV", + "liveTargetURLRelativePath": "livetv_rotana_clip_ctv", + "usi": 400189, + "isDRMized": true, + "csa5Disabled": true + } + ], + "npvr": [ + { + "externalId": "livetv_rotana_clip_ctv", + "techChannelId": "400189", + "type": "CLOUDTV", + "usi": 400189, + "isDRMized": true, + "antiAdskipping": "DEACTIVATED", + "csa5Disabled": true + } + ], + "startover": [] + } + }, + { + "name": "ENNAHAR TV", + "editoChannelId": "livetv_ennahar_tv", + "lcn": 510, + "idEPG": 90510, + "epgAvailable": false, + "epgTextSubstitution": "", + "displayOrder": 510, + "csaCode": 1, + "slogan": "Première chaîne d’information en Algérie", + "catchupChannelId": "", + "newChannel": true, + "roamingBlocked": false, + "allowedDeviceCategories": [ + "M_ANDROID", + "M_IOS", + "M_TABLET_ANDROID", + "M_TABLET_IOS", + "W_AIRPLAY", + "W_CHROMECAST", + "W_LACLETV2", + "W_SMARTTV", + "W_PC", + "S_STB" + ], + "packages": [ + "PA_bouquet_arabe", + "PA_bouquet_arabe_max", + "PI_WHITELIST" + ], + "hasRightIAccess": true, + "hasRightMAccess": false, + "logos": [ + { + "definitionType": "mobileAppli", + "listLogos": [ + { + "size": "183x183", + "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_ennahar_tv%2F20191107_103814%2FmobileAppli%2Flogo_183x183.png" + } + ] + }, + { + "definitionType": "mobileAppliDark", + "listLogos": [ + { + "size": "183x183", + "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_ennahar_tv%2F20191107_103814%2FmobileAppliDark%2Flogo_183x183.png" + } + ] + }, + { + "definitionType": "webTVLogo", + "listLogos": [ + { + "size": "180x96", + "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_ennahar_tv%2F20191107_103814%2FwebTVLogo%2Flogo_180x96.png" + } + ] + }, + { + "definitionType": "webTVSquare", + "listLogos": [ + { + "size": "150x150", + "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_ennahar_tv%2F20191107_103814%2FwebTVSquare%2Flogo_150x150.png" + } + ] + } + ], + "mobileData": { + "wifiForbidden": false, + "wifiSecuredOnly": false, + "everywhereChannel": true, + "nomadismAllowed": true, + "drmLevels": [ + { + "definition": "SD", + "securedTerminal": [ + "DRM-HW", + "DRM-SW" + ], + "unsecuredTerminal": [ + "DRM-HW", + "DRM-SW" + ] + }, + { + "definition": "HD", + "securedTerminal": [ + "ND" + ], + "unsecuredTerminal": [ + "ND" + ] + } + ] + }, + "webdeviceData": { + "nomadismAllowed": true + }, + "technicalChannels": { + "live": [ + { + "techChannelId": "400190", + "type": "CLOUDTV", + "liveTargetURLRelativePath": "livetv_ennahar_tv_ctv", + "usi": 400190, + "isDRMized": true, + "csa5Disabled": true + } + ], + "npvr": [ + { + "externalId": "livetv_ennahar_tv_ctv", + "techChannelId": "400190", + "type": "CLOUDTV", + "usi": 400190, + "isDRMized": true, + "antiAdskipping": "DEACTIVATED", + "csa5Disabled": true + } + ], + "startover": [] + } + }, + { + "name": "ECHOROUK TV", + "editoChannelId": "livetv_echorouk_tv", + "lcn": 511, + "idEPG": 90511, + "epgAvailable": false, + "epgTextSubstitution": "", + "displayOrder": 511, + "csaCode": 1, + "slogan": "La chaîne de toute la famille", + "catchupChannelId": "", + "newChannel": true, + "roamingBlocked": false, + "allowedDeviceCategories": [ + "M_ANDROID", + "M_IOS", + "M_TABLET_ANDROID", + "M_TABLET_IOS", + "W_AIRPLAY", + "W_CHROMECAST", + "W_LACLETV2", + "W_SMARTTV", + "W_PC", + "S_STB" + ], + "packages": [ + "PA_bouquet_arabe", + "PA_bouquet_arabe_max", + "PI_WHITELIST" + ], + "hasRightIAccess": true, + "hasRightMAccess": false, + "logos": [ + { + "definitionType": "mobileAppli", + "listLogos": [ + { + "size": "183x183", + "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_echorouk_tv%2F20191107_103814%2FmobileAppli%2Flogo_183x183.png" + } + ] + }, + { + "definitionType": "mobileAppliDark", + "listLogos": [ + { + "size": "183x183", + "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_echorouk_tv%2F20191107_103814%2FmobileAppliDark%2Flogo_183x183.png" + } + ] + }, + { + "definitionType": "webTVLogo", + "listLogos": [ + { + "size": "180x96", + "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_echorouk_tv%2F20191107_103814%2FwebTVLogo%2Flogo_180x96.png" + } + ] + }, + { + "definitionType": "webTVSquare", + "listLogos": [ + { + "size": "150x150", + "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_echorouk_tv%2F20191107_103814%2FwebTVSquare%2Flogo_150x150.png" + } + ] + } + ], + "mobileData": { + "wifiForbidden": false, + "wifiSecuredOnly": false, + "everywhereChannel": true, + "nomadismAllowed": true, + "drmLevels": [ + { + "definition": "SD", + "securedTerminal": [ + "DRM-HW", + "DRM-SW" + ], + "unsecuredTerminal": [ + "DRM-HW", + "DRM-SW" + ] + }, + { + "definition": "HD", + "securedTerminal": [ + "ND" + ], + "unsecuredTerminal": [ + "ND" + ] + } + ] + }, + "webdeviceData": { + "nomadismAllowed": true + }, + "technicalChannels": { + "live": [ + { + "techChannelId": "400191", + "type": "CLOUDTV", + "liveTargetURLRelativePath": "livetv_echorouk_tv_ctv", + "usi": 400191, + "isDRMized": true, + "csa5Disabled": true + } + ], + "npvr": [ + { + "externalId": "livetv_echorouk_tv_ctv", + "techChannelId": "400191", + "type": "CLOUDTV", + "usi": 400191, + "isDRMized": true, + "antiAdskipping": "DEACTIVATED", + "csa5Disabled": true + } + ], + "startover": [] + } + }, + { + "name": "NESSMA EU", + "editoChannelId": "livetv_nessma", + "lcn": 512, + "idEPG": 90512, + "epgAvailable": false, + "epgTextSubstitution": "", + "displayOrder": 512, + "csaCode": 1, + "slogan": "La télé du Grand Maghreb", + "catchupChannelId": "", + "newChannel": true, + "roamingBlocked": false, + "allowedDeviceCategories": [ + "M_ANDROID", + "M_IOS", + "M_TABLET_ANDROID", + "M_TABLET_IOS", + "W_AIRPLAY", + "W_CHROMECAST", + "W_LACLETV2", + "W_SMARTTV", + "W_PC", + "S_STB" + ], + "packages": [ + "PA_bouquet_arabe", + "PA_bouquet_arabe_max", + "PI_WHITELIST" + ], + "hasRightIAccess": true, + "hasRightMAccess": false, + "logos": [ + { + "definitionType": "mobileAppli", + "listLogos": [ + { + "size": "183x183", + "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_nessma%2F20191107_103814%2FmobileAppli%2Flogo_183x183.png" + } + ] + }, + { + "definitionType": "mobileAppliDark", + "listLogos": [ + { + "size": "183x183", + "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_nessma%2F20191107_103814%2FmobileAppliDark%2Flogo_183x183.png" + } + ] + }, + { + "definitionType": "webTVLogo", + "listLogos": [ + { + "size": "180x96", + "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_nessma%2F20191107_103814%2FwebTVLogo%2Flogo_180x96.png" + } + ] + }, + { + "definitionType": "webTVSquare", + "listLogos": [ + { + "size": "150x150", + "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_nessma%2F20191107_103814%2FwebTVSquare%2Flogo_150x150.png" + } + ] + } + ], + "mobileData": { + "wifiForbidden": false, + "wifiSecuredOnly": false, + "everywhereChannel": true, + "nomadismAllowed": true, + "drmLevels": [ + { + "definition": "SD", + "securedTerminal": [ + "DRM-HW", + "DRM-SW" + ], + "unsecuredTerminal": [ + "DRM-HW", + "DRM-SW" + ] + }, + { + "definition": "HD", + "securedTerminal": [ + "ND" + ], + "unsecuredTerminal": [ + "ND" + ] + } + ] + }, + "webdeviceData": { + "nomadismAllowed": true + }, + "technicalChannels": { + "live": [ + { + "techChannelId": "400193", + "type": "CLOUDTV", + "liveTargetURLRelativePath": "livetv_nessma_eu_ctv", + "usi": 400193, + "isDRMized": true, + "csa5Disabled": true + } + ], + "npvr": [ + { + "externalId": "livetv_nessma_eu_ctv", + "techChannelId": "400193", + "type": "CLOUDTV", + "usi": 400193, + "isDRMized": true, + "antiAdskipping": "DEACTIVATED", + "csa5Disabled": true + } + ], + "startover": [] + } + }, + { + "name": "EL HIWAR ETTOUNSI", + "editoChannelId": "livetv_el_hiwar_ettounsi", + "lcn": 513, + "idEPG": 90513, + "epgAvailable": false, + "epgTextSubstitution": "", + "displayOrder": 513, + "csaCode": 1, + "slogan": "La parole libre : pilier de la patrie", + "catchupChannelId": "", + "newChannel": true, + "roamingBlocked": false, + "allowedDeviceCategories": [ + "M_ANDROID", + "M_IOS", + "M_TABLET_ANDROID", + "M_TABLET_IOS", + "W_AIRPLAY", + "W_CHROMECAST", + "W_LACLETV2", + "W_SMARTTV", + "W_PC", + "S_STB" + ], + "packages": [ + "PA_bouquet_arabe", + "PA_bouquet_arabe_max", + "PI_WHITELIST" + ], + "hasRightIAccess": true, + "hasRightMAccess": false, + "logos": [ + { + "definitionType": "mobileAppli", + "listLogos": [ + { + "size": "183x183", + "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_el_hiwar_ettounsi%2F20191107_103814%2FmobileAppli%2Flogo_183x183.png" + } + ] + }, + { + "definitionType": "mobileAppliDark", + "listLogos": [ + { + "size": "183x183", + "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_el_hiwar_ettounsi%2F20191107_103814%2FmobileAppliDark%2Flogo_183x183.png" + } + ] + }, + { + "definitionType": "webTVLogo", + "listLogos": [ + { + "size": "180x96", + "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_el_hiwar_ettounsi%2F20191107_103814%2FwebTVLogo%2Flogo_180x96.png" + } + ] + }, + { + "definitionType": "webTVSquare", + "listLogos": [ + { + "size": "150x150", + "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_el_hiwar_ettounsi%2F20191107_103814%2FwebTVSquare%2Flogo_150x150.png" + } + ] + } + ], + "mobileData": { + "wifiForbidden": false, + "wifiSecuredOnly": false, + "everywhereChannel": true, + "nomadismAllowed": true, + "drmLevels": [ + { + "definition": "SD", + "securedTerminal": [ + "DRM-HW", + "DRM-SW" + ], + "unsecuredTerminal": [ + "DRM-HW", + "DRM-SW" + ] + }, + { + "definition": "HD", + "securedTerminal": [ + "ND" + ], + "unsecuredTerminal": [ + "ND" + ] + } + ] + }, + "webdeviceData": { + "nomadismAllowed": true + }, + "technicalChannels": { + "live": [ + { + "techChannelId": "400194", + "type": "CLOUDTV", + "liveTargetURLRelativePath": "livetv_el_hiwar_ettounsi_ctv", + "usi": 400194, + "isDRMized": true, + "csa5Disabled": true + } + ], + "npvr": [ + { + "externalId": "livetv_el_hiwar_ettounsi_ctv", + "techChannelId": "400194", + "type": "CLOUDTV", + "usi": 400194, + "isDRMized": true, + "antiAdskipping": "DEACTIVATED", + "csa5Disabled": true + } + ], + "startover": [] + } + }, + { + "name": "AL RESALAH", + "editoChannelId": "livetv_al_resalah", + "lcn": 514, + "idEPG": 90514, + "epgAvailable": false, + "epgTextSubstitution": "", + "displayOrder": 514, + "csaCode": 1, + "slogan": "Chaine culturelle coranique", + "catchupChannelId": "", + "newChannel": true, + "roamingBlocked": false, + "allowedDeviceCategories": [ + "M_ANDROID", + "M_IOS", + "M_TABLET_ANDROID", + "M_TABLET_IOS", + "W_AIRPLAY", + "W_CHROMECAST", + "W_LACLETV2", + "W_SMARTTV", + "W_PC", + "S_STB" + ], + "packages": [ + "PA_bouquet_arabe", + "PA_bouquet_arabe_max", + "PI_WHITELIST" + ], + "hasRightIAccess": true, + "hasRightMAccess": false, + "logos": [ + { + "definitionType": "mobileAppli", + "listLogos": [ + { + "size": "183x183", + "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_al_resalah%2F20191107_103814%2FmobileAppli%2Flogo_183x183.png" + } + ] + }, + { + "definitionType": "mobileAppliDark", + "listLogos": [ + { + "size": "183x183", + "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_al_resalah%2F20191107_103814%2FmobileAppliDark%2Flogo_183x183.png" + } + ] + }, + { + "definitionType": "webTVLogo", + "listLogos": [ + { + "size": "180x96", + "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_al_resalah%2F20191107_103814%2FwebTVLogo%2Flogo_180x96.png" + } + ] + }, + { + "definitionType": "webTVSquare", + "listLogos": [ + { + "size": "150x150", + "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_al_resalah%2F20191107_103814%2FwebTVSquare%2Flogo_150x150.png" + } + ] + } + ], + "mobileData": { + "wifiForbidden": false, + "wifiSecuredOnly": false, + "everywhereChannel": true, + "nomadismAllowed": true, + "drmLevels": [ + { + "definition": "SD", + "securedTerminal": [ + "DRM-HW", + "DRM-SW" + ], + "unsecuredTerminal": [ + "DRM-HW", + "DRM-SW" + ] + }, + { + "definition": "HD", + "securedTerminal": [ + "ND" + ], + "unsecuredTerminal": [ + "ND" + ] + } + ] + }, + "webdeviceData": { + "nomadismAllowed": true + }, + "technicalChannels": { + "live": [ + { + "techChannelId": "400195", + "type": "CLOUDTV", + "liveTargetURLRelativePath": "livetv_al_resalah_ctv", + "usi": 400195, + "isDRMized": true, + "csa5Disabled": true + } + ], + "npvr": [ + { + "externalId": "livetv_al_resalah_ctv", + "techChannelId": "400195", + "type": "CLOUDTV", + "usi": 400195, + "isDRMized": true, + "antiAdskipping": "DEACTIVATED", + "csa5Disabled": true + } + ], + "startover": [] + } + }, + { + "name": "IQRAA", + "editoChannelId": "livetv_iqraa", + "lcn": 515, + "idEPG": 90515, + "epgAvailable": false, + "epgTextSubstitution": "", + "displayOrder": 515, + "csaCode": 1, + "slogan": "Chaine culturelle islamique", + "catchupChannelId": "", + "newChannel": true, + "roamingBlocked": false, + "allowedDeviceCategories": [ + "M_ANDROID", + "M_IOS", + "M_TABLET_ANDROID", + "M_TABLET_IOS", + "W_AIRPLAY", + "W_CHROMECAST", + "W_LACLETV2", + "W_SMARTTV", + "W_PC", + "S_STB" + ], + "packages": [ + "PA_bouquet_arabe", + "PA_bouquet_arabe_max", + "PI_WHITELIST" + ], + "hasRightIAccess": true, + "hasRightMAccess": false, + "logos": [ + { + "definitionType": "mobileAppli", + "listLogos": [ + { + "size": "183x183", + "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_iqraa%2F20191107_103814%2FmobileAppli%2Flogo_183x183.png" + } + ] + }, + { + "definitionType": "mobileAppliDark", + "listLogos": [ + { + "size": "183x183", + "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_iqraa%2F20191107_103814%2FmobileAppliDark%2Flogo_183x183.png" + } + ] + }, + { + "definitionType": "webTVLogo", + "listLogos": [ + { + "size": "180x96", + "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_iqraa%2F20191107_103814%2FwebTVLogo%2Flogo_180x96.png" + } + ] + }, + { + "definitionType": "webTVSquare", + "listLogos": [ + { + "size": "150x150", + "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_iqraa%2F20191107_103814%2FwebTVSquare%2Flogo_150x150.png" + } + ] + } + ], + "mobileData": { + "wifiForbidden": false, + "wifiSecuredOnly": false, + "everywhereChannel": true, + "nomadismAllowed": true, + "drmLevels": [ + { + "definition": "SD", + "securedTerminal": [ + "DRM-HW", + "DRM-SW" + ], + "unsecuredTerminal": [ + "DRM-HW", + "DRM-SW" + ] + }, + { + "definition": "HD", + "securedTerminal": [ + "ND" + ], + "unsecuredTerminal": [ + "ND" + ] + } + ] + }, + "webdeviceData": { + "nomadismAllowed": true + }, + "technicalChannels": { + "live": [ + { + "techChannelId": "400196", + "type": "CLOUDTV", + "liveTargetURLRelativePath": "livetv_iqraa_ctv", + "usi": 400196, + "isDRMized": true, + "csa5Disabled": true + } + ], + "npvr": [ + { + "externalId": "livetv_iqraa_ctv", + "techChannelId": "400196", + "type": "CLOUDTV", + "usi": 400196, + "isDRMized": true, + "antiAdskipping": "DEACTIVATED", + "csa5Disabled": true + } + ], + "startover": [] + } + }, + { + "name": "IQRAA INTERNATIONAL", + "editoChannelId": "livetv_iqraa_international", + "lcn": 516, + "idEPG": 90516, + "epgAvailable": false, + "epgTextSubstitution": "", + "displayOrder": 516, + "csaCode": 1, + "slogan": "Accrois ta foi", + "catchupChannelId": "", + "newChannel": true, + "roamingBlocked": false, + "allowedDeviceCategories": [ + "M_ANDROID", + "M_IOS", + "M_TABLET_ANDROID", + "M_TABLET_IOS", + "W_AIRPLAY", + "W_CHROMECAST", + "W_LACLETV2", + "W_SMARTTV", + "W_PC", + "S_STB" + ], + "packages": [ + "PA_bouquet_arabe", + "PA_bouquet_arabe_max", + "PI_WHITELIST" + ], + "hasRightIAccess": true, + "hasRightMAccess": false, + "logos": [ + { + "definitionType": "mobileAppli", + "listLogos": [ + { + "size": "183x183", + "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_iqraa_international%2F20191107_103814%2FmobileAppli%2Flogo_183x183.png" + } + ] + }, + { + "definitionType": "mobileAppliDark", + "listLogos": [ + { + "size": "183x183", + "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_iqraa_international%2F20191107_103814%2FmobileAppliDark%2Flogo_183x183.png" + } + ] + }, + { + "definitionType": "webTVLogo", + "listLogos": [ + { + "size": "180x96", + "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_iqraa_international%2F20191107_103814%2FwebTVLogo%2Flogo_180x96.png" + } + ] + }, + { + "definitionType": "webTVSquare", + "listLogos": [ + { + "size": "150x150", + "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_iqraa_international%2F20191107_103814%2FwebTVSquare%2Flogo_150x150.png" + } + ] + } + ], + "mobileData": { + "wifiForbidden": false, + "wifiSecuredOnly": false, + "everywhereChannel": true, + "nomadismAllowed": true, + "drmLevels": [ + { + "definition": "SD", + "securedTerminal": [ + "DRM-HW", + "DRM-SW" + ], + "unsecuredTerminal": [ + "DRM-HW", + "DRM-SW" + ] + }, + { + "definition": "HD", + "securedTerminal": [ + "ND" + ], + "unsecuredTerminal": [ + "ND" + ] + } + ] + }, + "webdeviceData": { + "nomadismAllowed": true + }, + "technicalChannels": { + "live": [ + { + "techChannelId": "400197", + "type": "CLOUDTV", + "liveTargetURLRelativePath": "livetv_iqraa_international_ctv", + "usi": 400197, + "isDRMized": true, + "csa5Disabled": true + } + ], + "npvr": [ + { + "externalId": "livetv_iqraa_international_ctv", + "techChannelId": "400197", + "type": "CLOUDTV", + "usi": 400197, + "isDRMized": true, + "antiAdskipping": "DEACTIVATED", + "csa5Disabled": true + } + ], + "startover": [] + } + }, + { + "name": "SAMIRA TV", + "editoChannelId": "livetv_samira_tv", + "lcn": 517, + "idEPG": 90517, + "epgAvailable": false, + "epgTextSubstitution": "", + "displayOrder": 517, + "csaCode": 1, + "slogan": "Samira TV, ça m'ira bien", + "catchupChannelId": "", + "newChannel": true, + "roamingBlocked": false, + "allowedDeviceCategories": [ + "M_ANDROID", + "M_IOS", + "M_TABLET_ANDROID", + "M_TABLET_IOS", + "W_AIRPLAY", + "W_CHROMECAST", + "W_LACLETV2", + "W_SMARTTV", + "W_PC", + "S_STB" + ], + "packages": [ + "PA_bouquet_arabe", + "PA_bouquet_arabe_max", + "PI_WHITELIST" + ], + "hasRightIAccess": true, + "hasRightMAccess": false, + "logos": [ + { + "definitionType": "mobileAppli", + "listLogos": [ + { + "size": "183x183", + "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_samira_tv%2F20191107_103814%2FmobileAppli%2Flogo_183x183.png" + } + ] + }, + { + "definitionType": "mobileAppliDark", + "listLogos": [ + { + "size": "183x183", + "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_samira_tv%2F20191107_103814%2FmobileAppliDark%2Flogo_183x183.png" + } + ] + }, + { + "definitionType": "webTVLogo", + "listLogos": [ + { + "size": "180x96", + "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_samira_tv%2F20191107_103814%2FwebTVLogo%2Flogo_180x96.png" + } + ] + }, + { + "definitionType": "webTVSquare", + "listLogos": [ + { + "size": "150x150", + "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_samira_tv%2F20191107_103814%2FwebTVSquare%2Flogo_150x150.png" + } + ] + } + ], + "mobileData": { + "wifiForbidden": false, + "wifiSecuredOnly": false, + "everywhereChannel": true, + "nomadismAllowed": true, + "drmLevels": [ + { + "definition": "SD", + "securedTerminal": [ + "DRM-HW", + "DRM-SW" + ], + "unsecuredTerminal": [ + "DRM-HW", + "DRM-SW" + ] + }, + { + "definition": "HD", + "securedTerminal": [ + "ND" + ], + "unsecuredTerminal": [ + "ND" + ] + } + ] + }, + "webdeviceData": { + "nomadismAllowed": true + }, + "technicalChannels": { + "live": [ + { + "techChannelId": "400198", + "type": "CLOUDTV", + "liveTargetURLRelativePath": "livetv_samira_tv_ctv", + "usi": 400198, + "isDRMized": true, + "csa5Disabled": true + } + ], + "npvr": [ + { + "externalId": "livetv_samira_tv_ctv", + "techChannelId": "400198", + "type": "CLOUDTV", + "usi": 400198, + "isDRMized": true, + "antiAdskipping": "DEACTIVATED", + "csa5Disabled": true + } + ], + "startover": [] + } + }, + { + "name": "ROTANA MUSICA", + "editoChannelId": "livetv_rotana_musica", + "lcn": 519, + "idEPG": 90519, + "epgAvailable": false, + "epgTextSubstitution": "", + "displayOrder": 519, + "csaCode": 1, + "slogan": "La chaîne de musique arabe", + "catchupChannelId": "", + "newChannel": true, + "roamingBlocked": false, + "allowedDeviceCategories": [ + "M_ANDROID", + "M_IOS", + "M_TABLET_ANDROID", + "M_TABLET_IOS", + "W_AIRPLAY", + "W_CHROMECAST", + "W_LACLETV2", + "W_SMARTTV", + "W_PC", + "S_STB" + ], + "packages": [ + "PA_bouquet_arabe", + "PA_bouquet_arabe_max", + "PI_WHITELIST" + ], + "hasRightIAccess": true, + "hasRightMAccess": false, + "logos": [ + { + "definitionType": "mobileAppli", + "listLogos": [ + { + "size": "183x183", + "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_rotana_musica%2F20200804_093352%2FmobileAppli%2Flogo_183x183.png" + } + ] + }, + { + "definitionType": "mobileAppliDark", + "listLogos": [ + { + "size": "183x183", + "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_rotana_musica%2F20200804_093352%2FmobileAppliDark%2Flogo_183x183.png" + } + ] + }, + { + "definitionType": "webTVLogo", + "listLogos": [ + { + "size": "180x96", + "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_rotana_musica%2F20200804_093352%2FwebTVLogo%2Flogo_180x96.png" + } + ] + }, + { + "definitionType": "webTVSquare", + "listLogos": [ + { + "size": "150x150", + "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_rotana_musica%2F20200804_093352%2FwebTVSquare%2Flogo_150x150.png" + } + ] + } + ], + "mobileData": { + "wifiForbidden": false, + "wifiSecuredOnly": false, + "everywhereChannel": true, + "nomadismAllowed": true, + "drmLevels": [ + { + "definition": "SD", + "securedTerminal": [ + "DRM-HW", + "DRM-SW" + ], + "unsecuredTerminal": [ + "DRM-HW", + "DRM-SW" + ] + }, + { + "definition": "HD", + "securedTerminal": [ + "ND" + ], + "unsecuredTerminal": [ + "ND" + ] + } + ] + }, + "webdeviceData": { + "nomadismAllowed": true + }, + "technicalChannels": { + "live": [ + { + "techChannelId": "400265", + "type": "CLOUDTV", + "liveTargetURLRelativePath": "livetv_rotana_musica_ctv", + "usi": 400265, + "isDRMized": true, + "csa5Disabled": true + } + ], + "npvr": [ + { + "externalId": "livetv_rotana_musica_ctv", + "techChannelId": "400265", + "type": "CLOUDTV", + "usi": 400265, + "isDRMized": true, + "antiAdskipping": "DEACTIVATED", + "csa5Disabled": true + } + ], + "startover": [] + } + }, + { + "name": "ECHOROUK NEWS", + "editoChannelId": "livetv_Echorouk_News", + "lcn": 520, + "idEPG": 90520, + "epgAvailable": false, + "epgTextSubstitution": "", + "displayOrder": 520, + "csaCode": 1, + "slogan": "Information en continu", + "catchupChannelId": "", + "newChannel": true, + "roamingBlocked": false, + "allowedDeviceCategories": [ + "M_ANDROID", + "M_IOS", + "M_TABLET_ANDROID", + "M_TABLET_IOS", + "W_AIRPLAY", + "W_CHROMECAST", + "W_LACLETV2", + "W_SMARTTV", + "W_PC", + "S_STB" + ], + "packages": [ + "PA_bouquet_arabe", + "PA_bouquet_arabe_max", + "PI_WHITELIST" + ], + "hasRightIAccess": true, + "hasRightMAccess": false, + "logos": [ + { + "definitionType": "mobileAppli", + "listLogos": [ + { + "size": "183x183", + "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_Echorouk_News%2F20191107_103814%2FmobileAppli%2Flogo_183x183.png" + } + ] + }, + { + "definitionType": "mobileAppliDark", + "listLogos": [ + { + "size": "183x183", + "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_Echorouk_News%2F20191107_103814%2FmobileAppliDark%2Flogo_183x183.png" + } + ] + }, + { + "definitionType": "webTVLogo", + "listLogos": [ + { + "size": "180x96", + "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_Echorouk_News%2F20191107_103814%2FwebTVLogo%2Flogo_180x96.png" + } + ] + }, + { + "definitionType": "webTVSquare", + "listLogos": [ + { + "size": "150x150", + "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_Echorouk_News%2F20191107_103814%2FwebTVSquare%2Flogo_150x150.png" + } + ] + } + ], + "mobileData": { + "wifiForbidden": false, + "wifiSecuredOnly": false, + "everywhereChannel": true, + "nomadismAllowed": true, + "drmLevels": [ + { + "definition": "SD", + "securedTerminal": [ + "DRM-HW", + "DRM-SW" + ], + "unsecuredTerminal": [ + "DRM-HW", + "DRM-SW" + ] + }, + { + "definition": "HD", + "securedTerminal": [ + "ND" + ], + "unsecuredTerminal": [ + "ND" + ] + } + ] + }, + "webdeviceData": { + "nomadismAllowed": true + }, + "technicalChannels": { + "live": [ + { + "techChannelId": "400201", + "type": "CLOUDTV", + "liveTargetURLRelativePath": "livetv_echorouk_news_ctv", + "usi": 400201, + "isDRMized": true, + "csa5Disabled": true + } + ], + "npvr": [ + { + "externalId": "livetv_echorouk_news_ctv", + "techChannelId": "400201", + "type": "CLOUDTV", + "usi": 400201, + "isDRMized": true, + "antiAdskipping": "DEACTIVATED", + "csa5Disabled": true + } + ], + "startover": [] + } + }, + { + "name": "2M MONDE", + "editoChannelId": "livetv_2mmonde", + "lcn": 521, + "idEPG": 340, + "epgAvailable": true, + "epgTextSubstitution": "", + "displayOrder": 521, + "csaCode": 1, + "slogan": "2M nous rassemble", + "catchupChannelId": "", + "newChannel": false, + "roamingBlocked": true, + "allowedDeviceCategories": [ + "M_ANDROID", + "M_IOS", + "M_TABLET_ANDROID", + "M_TABLET_IOS", + "W_AIRPLAY", + "W_CHROMECAST", + "W_LACLETV2", + "W_SMARTTV", + "W_PC", + "S_STB" + ], + "packages": [ + "PA_bouquet_arabe", + "PA_bouquet_arabe_max", + "PI_WHITELIST" + ], + "hasRightIAccess": true, + "hasRightMAccess": false, + "logos": [ + { + "definitionType": "mobileAppli", + "listLogos": [ + { + "size": "183x183", + "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_2mmonde%2F20151026_092415%2FmobileAppli%2Flogo_183x183.png" + } + ] + }, + { + "definitionType": "mobileAppliDark", + "listLogos": [ + { + "size": "183x183", + "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_2mmonde%2F20151026_092415%2FmobileAppliDark%2Flogo_183x183.png" + } + ] + }, + { + "definitionType": "webTVLogo", + "listLogos": [ + { + "size": "180x96", + "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_2mmonde%2F20151026_092415%2FwebTVLogo%2Flogo_180x96.png" + } + ] + }, + { + "definitionType": "webTVSquare", + "listLogos": [ + { + "size": "150x150", + "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_2mmonde%2F20151026_092415%2FwebTVSquare%2Flogo_150x150.png" + } + ] + } + ], + "mobileData": { + "wifiForbidden": false, + "wifiSecuredOnly": false, + "everywhereChannel": true, + "nomadismAllowed": true, + "drmLevels": [ + { + "definition": "SD", + "securedTerminal": [ + "DRM-HW", + "DRM-SW" + ], + "unsecuredTerminal": [ + "DRM-HW", + "DRM-SW" + ] + }, + { + "definition": "HD", + "securedTerminal": [ + "ND" + ], + "unsecuredTerminal": [ + "ND" + ] + } + ] + }, + "webdeviceData": { + "nomadismAllowed": true + }, + "technicalChannels": { + "live": [ + { + "techChannelId": "400003", + "type": "CLOUDTV", + "liveTargetURLRelativePath": "livetv_2m_monde_ctv", + "usi": 400003, + "isDRMized": true, + "csa5Disabled": true + } + ], + "npvr": [ + { + "externalId": "livetv_2m_monde_ctv", + "techChannelId": "400003", + "type": "CLOUDTV", + "usi": 400003, + "isDRMized": true, + "antiAdskipping": "DEACTIVATED", + "csa5Disabled": true + } + ], + "startover": [] + } + }, + { + "name": "ROTANA KHALIJIA", + "editoChannelId": "livetv_rotana_khalijia", + "lcn": 522, + "idEPG": 90522, + "epgAvailable": false, + "epgTextSubstitution": "", + "displayOrder": 522, + "csaCode": 1, + "slogan": "Le golfe dans le monde", + "catchupChannelId": "", + "newChannel": true, + "roamingBlocked": true, + "allowedDeviceCategories": [ + "M_ANDROID", + "M_IOS", + "M_TABLET_ANDROID", + "M_TABLET_IOS", + "W_AIRPLAY", + "W_CHROMECAST", + "W_LACLETV2", + "W_SMARTTV", + "W_PC", + "S_STB" + ], + "packages": [ + "PA_bouquet_arabe", + "PA_bouquet_arabe_max", + "PI_WHITELIST" + ], + "hasRightIAccess": true, + "hasRightMAccess": false, + "logos": [ + { + "definitionType": "mobileAppli", + "listLogos": [ + { + "size": "183x183", + "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_rotana_khalijia%2F20200130_100105%2FmobileAppli%2Flogo_183x183.png" + } + ] + }, + { + "definitionType": "mobileAppliDark", + "listLogos": [ + { + "size": "183x183", + "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_rotana_khalijia%2F20200130_100105%2FmobileAppliDark%2Flogo_183x183.png" + } + ] + }, + { + "definitionType": "webTVLogo", + "listLogos": [ + { + "size": "180x96", + "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_rotana_khalijia%2F20200130_100105%2FwebTVLogo%2Flogo_180x96.png" + } + ] + }, + { + "definitionType": "webTVSquare", + "listLogos": [ + { + "size": "150x150", + "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_rotana_khalijia%2F20200130_100105%2FwebTVSquare%2Flogo_150x150.png" + } + ] + } + ], + "mobileData": { + "wifiForbidden": false, + "wifiSecuredOnly": false, + "everywhereChannel": true, + "nomadismAllowed": true, + "drmLevels": [ + { + "definition": "SD", + "securedTerminal": [ + "DRM-HW", + "DRM-SW" + ], + "unsecuredTerminal": [ + "DRM-HW", + "DRM-SW" + ] + }, + { + "definition": "HD", + "securedTerminal": [ + "ND" + ], + "unsecuredTerminal": [ + "ND" + ] + } + ] + }, + "webdeviceData": { + "nomadismAllowed": true + }, + "technicalChannels": { + "live": [ + { + "techChannelId": "400205", + "type": "CLOUDTV", + "liveTargetURLRelativePath": "livetv_rotana_khalijiah_ctv", + "usi": 400205, + "isDRMized": true, + "csa5Disabled": true + } + ], + "npvr": [ + { + "externalId": "livetv_rotana_khalijiah_ctv", + "techChannelId": "400205", + "type": "CLOUDTV", + "usi": 400205, + "isDRMized": true, + "antiAdskipping": "DEACTIVATED", + "csa5Disabled": true + } + ], + "startover": [] + } + }, + { + "name": "ROTANA CINEMA", + "editoChannelId": "livetv_rotana_cinema", + "lcn": 523, + "idEPG": 90523, + "epgAvailable": false, + "epgTextSubstitution": "", + "displayOrder": 523, + "csaCode": 1, + "slogan": "The latest blockbusters", + "catchupChannelId": "", + "newChannel": true, + "roamingBlocked": false, + "allowedDeviceCategories": [ + "M_ANDROID", + "M_IOS", + "M_TABLET_ANDROID", + "M_TABLET_IOS", + "W_AIRPLAY", + "W_CHROMECAST", + "W_LACLETV2", + "W_SMARTTV", + "W_PC", + "S_STB" + ], + "packages": [ + "PA_bouquet_arabe_max", + "PI_WHITELIST" + ], + "hasRightIAccess": true, + "hasRightMAccess": false, + "logos": [ + { + "definitionType": "mobileAppli", + "listLogos": [ + { + "size": "183x183", + "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_rotana_cinema%2F20191107_103814%2FmobileAppli%2Flogo_183x183.png" + } + ] + }, + { + "definitionType": "mobileAppliDark", + "listLogos": [ + { + "size": "183x183", + "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_rotana_cinema%2F20191107_103814%2FmobileAppliDark%2Flogo_183x183.png" + } + ] + }, + { + "definitionType": "webTVLogo", + "listLogos": [ + { + "size": "180x96", + "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_rotana_cinema%2F20191107_103814%2FwebTVLogo%2Flogo_180x96.png" + } + ] + }, + { + "definitionType": "webTVSquare", + "listLogos": [ + { + "size": "150x150", + "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_rotana_cinema%2F20191107_103814%2FwebTVSquare%2Flogo_150x150.png" + } + ] + } + ], + "mobileData": { + "wifiForbidden": false, + "wifiSecuredOnly": false, + "everywhereChannel": true, + "nomadismAllowed": true, + "drmLevels": [ + { + "definition": "SD", + "securedTerminal": [ + "DRM-HW", + "DRM-SW" + ], + "unsecuredTerminal": [ + "DRM-HW", + "DRM-SW" + ] + }, + { + "definition": "HD", + "securedTerminal": [ + "ND" + ], + "unsecuredTerminal": [ + "ND" + ] + } + ] + }, + "webdeviceData": { + "nomadismAllowed": true + }, + "technicalChannels": { + "live": [ + { + "techChannelId": "400202", + "type": "CLOUDTV", + "liveTargetURLRelativePath": "livetv_rotana_cinema_ctv", + "usi": 400202, + "isDRMized": true, + "csa5Disabled": true + } + ], + "npvr": [ + { + "externalId": "livetv_rotana_cinema_ctv", + "techChannelId": "400202", + "type": "CLOUDTV", + "usi": 400202, + "isDRMized": true, + "antiAdskipping": "DEACTIVATED", + "csa5Disabled": true + } + ], + "startover": [] + } + }, + { + "name": "ROTANA COMEDY", + "editoChannelId": "livetv_rotana_aflam", + "lcn": 524, + "idEPG": 90524, + "epgAvailable": false, + "epgTextSubstitution": "", + "displayOrder": 524, + "csaCode": 1, + "slogan": "La chaine d’humour pan-arabe !", + "catchupChannelId": "", + "newChannel": true, + "roamingBlocked": false, + "allowedDeviceCategories": [ + "M_ANDROID", + "M_IOS", + "M_TABLET_ANDROID", + "M_TABLET_IOS", + "W_AIRPLAY", + "W_CHROMECAST", + "W_LACLETV2", + "W_SMARTTV", + "W_PC", + "S_STB" + ], + "packages": [ + "PA_bouquet_arabe_max", + "PI_WHITELIST" + ], + "hasRightIAccess": true, + "hasRightMAccess": false, + "logos": [ + { + "definitionType": "mobileAppli", + "listLogos": [ + { + "size": "183x183", + "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_rotana_aflam%2F20220316_114604%2FmobileAppli%2Flogo_183x183.png" + } + ] + }, + { + "definitionType": "mobileAppliDark", + "listLogos": [ + { + "size": "183x183", + "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_rotana_aflam%2F20220316_114604%2FmobileAppliDark%2Flogo_183x183.png" + } + ] + }, + { + "definitionType": "webTVLogo", + "listLogos": [ + { + "size": "180x96", + "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_rotana_aflam%2F20220316_114604%2FwebTVLogo%2Flogo_180x96.png" + } + ] + }, + { + "definitionType": "webTVSquare", + "listLogos": [ + { + "size": "150x150", + "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_rotana_aflam%2F20220316_114604%2FwebTVSquare%2Flogo_150x150.png" + } + ] + } + ], + "mobileData": { + "wifiForbidden": false, + "wifiSecuredOnly": false, + "everywhereChannel": true, + "nomadismAllowed": true, + "drmLevels": [ + { + "definition": "SD", + "securedTerminal": [ + "DRM-HW", + "DRM-SW" + ], + "unsecuredTerminal": [ + "DRM-HW", + "DRM-SW" + ] + }, + { + "definition": "HD", + "securedTerminal": [ + "ND" + ], + "unsecuredTerminal": [ + "ND" + ] + } + ] + }, + "webdeviceData": { + "nomadismAllowed": true + }, + "technicalChannels": { + "live": [ + { + "techChannelId": "400203", + "type": "CLOUDTV", + "liveTargetURLRelativePath": "livetv_rotana_aflam_ctv", + "usi": 400203, + "isDRMized": true, + "csa5Disabled": true + } + ], + "npvr": [ + { + "externalId": "livetv_rotana_aflam_ctv", + "techChannelId": "400203", + "type": "CLOUDTV", + "usi": 400203, + "isDRMized": true, + "antiAdskipping": "DEACTIVATED", + "csa5Disabled": true + } + ], + "startover": [] + } + }, + { + "name": "ROTANA DRAMA", + "editoChannelId": "livetv_rotana_drama", + "lcn": 525, + "idEPG": 90525, + "epgAvailable": false, + "epgTextSubstitution": "", + "displayOrder": 525, + "csaCode": 1, + "slogan": "Les séries du golfe", + "catchupChannelId": "", + "newChannel": true, + "roamingBlocked": true, + "allowedDeviceCategories": [ + "M_ANDROID", + "M_IOS", + "M_TABLET_ANDROID", + "M_TABLET_IOS", + "W_AIRPLAY", + "W_CHROMECAST", + "W_LACLETV2", + "W_SMARTTV", + "W_PC", + "S_STB" + ], + "packages": [ + "PA_bouquet_arabe_max", + "PI_WHITELIST" + ], + "hasRightIAccess": true, + "hasRightMAccess": false, + "logos": [ + { + "definitionType": "mobileAppli", + "listLogos": [ + { + "size": "183x183", + "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_rotana_drama%2F20200130_100105%2FmobileAppli%2Flogo_183x183.png" + } + ] + }, + { + "definitionType": "mobileAppliDark", + "listLogos": [ + { + "size": "183x183", + "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_rotana_drama%2F20200130_100105%2FmobileAppliDark%2Flogo_183x183.png" + } + ] + }, + { + "definitionType": "webTVLogo", + "listLogos": [ + { + "size": "180x96", + "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_rotana_drama%2F20200130_100105%2FwebTVLogo%2Flogo_180x96.png" + } + ] + }, + { + "definitionType": "webTVSquare", + "listLogos": [ + { + "size": "150x150", + "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_rotana_drama%2F20200130_100105%2FwebTVSquare%2Flogo_150x150.png" + } + ] + } + ], + "mobileData": { + "wifiForbidden": false, + "wifiSecuredOnly": false, + "everywhereChannel": true, + "nomadismAllowed": true, + "drmLevels": [ + { + "definition": "SD", + "securedTerminal": [ + "DRM-HW", + "DRM-SW" + ], + "unsecuredTerminal": [ + "DRM-HW", + "DRM-SW" + ] + }, + { + "definition": "HD", + "securedTerminal": [ + "ND" + ], + "unsecuredTerminal": [ + "ND" + ] + } + ] + }, + "webdeviceData": { + "nomadismAllowed": true + }, + "technicalChannels": { + "live": [ + { + "techChannelId": "400204", + "type": "CLOUDTV", + "liveTargetURLRelativePath": "livetv_rotana_drama_ctv", + "usi": 400204, + "isDRMized": true, + "csa5Disabled": true + } + ], + "npvr": [ + { + "externalId": "livetv_rotana_drama_ctv", + "techChannelId": "400204", + "type": "CLOUDTV", + "usi": 400204, + "isDRMized": true, + "antiAdskipping": "DEACTIVATED", + "csa5Disabled": true + } + ], + "startover": [] + } + }, + { + "name": "EL BILAD TV", + "editoChannelId": "livetv_el_bilad", + "lcn": 527, + "idEPG": 90527, + "epgAvailable": false, + "epgTextSubstitution": "", + "displayOrder": 527, + "csaCode": 1, + "slogan": "Un autre regard sur l’Algérie", + "catchupChannelId": "", + "newChannel": true, + "roamingBlocked": true, + "allowedDeviceCategories": [ + "M_ANDROID", + "M_IOS", + "M_TABLET_ANDROID", + "M_TABLET_IOS", + "W_AIRPLAY", + "W_CHROMECAST", + "W_LACLETV2", + "W_SMARTTV", + "W_PC", + "S_STB" + ], + "packages": [ + "PA_bouquet_arabe_max", + "PI_WHITELIST" + ], + "hasRightIAccess": true, + "hasRightMAccess": false, + "logos": [ + { + "definitionType": "mobileAppli", + "listLogos": [ + { + "size": "183x183", + "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_el_bilad%2F20200130_100121%2FmobileAppli%2Flogo_183x183.png" + } + ] + }, + { + "definitionType": "mobileAppliDark", + "listLogos": [ + { + "size": "183x183", + "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_el_bilad%2F20200130_100121%2FmobileAppliDark%2Flogo_183x183.png" + } + ] + }, + { + "definitionType": "webTVLogo", + "listLogos": [ + { + "size": "180x96", + "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_el_bilad%2F20200130_100121%2FwebTVLogo%2Flogo_180x96.png" + } + ] + }, + { + "definitionType": "webTVSquare", + "listLogos": [ + { + "size": "150x150", + "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_el_bilad%2F20200130_100121%2FwebTVSquare%2Flogo_150x150.png" + } + ] + } + ], + "mobileData": { + "wifiForbidden": false, + "wifiSecuredOnly": false, + "everywhereChannel": true, + "nomadismAllowed": true, + "drmLevels": [ + { + "definition": "SD", + "securedTerminal": [ + "DRM-HW", + "DRM-SW" + ], + "unsecuredTerminal": [ + "DRM-HW", + "DRM-SW" + ] + }, + { + "definition": "HD", + "securedTerminal": [ + "ND" + ], + "unsecuredTerminal": [ + "ND" + ] + } + ] + }, + "webdeviceData": { + "nomadismAllowed": true + }, + "technicalChannels": { + "live": [ + { + "techChannelId": "400192", + "type": "CLOUDTV", + "liveTargetURLRelativePath": "livetv_el_bilad_tv_ctv", + "usi": 400192, + "isDRMized": true, + "csa5Disabled": true + } + ], + "npvr": [ + { + "externalId": "livetv_el_bilad_tv_ctv", + "techChannelId": "400192", + "type": "CLOUDTV", + "usi": 400192, + "isDRMized": true, + "antiAdskipping": "DEACTIVATED", + "csa5Disabled": true + } + ], + "startover": [] + } + }, + { + "name": "PANORAMA DRAMA", + "editoChannelId": "livetv_panorama_drama", + "lcn": 528, + "idEPG": 90528, + "epgAvailable": false, + "epgTextSubstitution": "", + "displayOrder": 528, + "csaCode": 1, + "slogan": "Les séries au cœur du divertissement", + "catchupChannelId": "", + "newChannel": true, + "roamingBlocked": false, + "allowedDeviceCategories": [ + "M_ANDROID", + "M_IOS", + "M_TABLET_ANDROID", + "M_TABLET_IOS", + "W_AIRPLAY", + "W_CHROMECAST", + "W_LACLETV2", + "W_SMARTTV", + "W_PC", + "S_STB" + ], + "packages": [ + "PA_bouquet_arabe_max", + "PI_WHITELIST" + ], + "hasRightIAccess": true, + "hasRightMAccess": false, + "logos": [ + { + "definitionType": "mobileAppli", + "listLogos": [ + { + "size": "183x183", + "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_panorama_drama%2F20191107_103814%2FmobileAppli%2Flogo_183x183.png" + } + ] + }, + { + "definitionType": "mobileAppliDark", + "listLogos": [ + { + "size": "183x183", + "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_panorama_drama%2F20191107_103814%2FmobileAppliDark%2Flogo_183x183.png" + } + ] + }, + { + "definitionType": "webTVLogo", + "listLogos": [ + { + "size": "180x96", + "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_panorama_drama%2F20191107_103814%2FwebTVLogo%2Flogo_180x96.png" + } + ] + }, + { + "definitionType": "webTVSquare", + "listLogos": [ + { + "size": "150x150", + "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_panorama_drama%2F20191107_103814%2FwebTVSquare%2Flogo_150x150.png" + } + ] + } + ], + "mobileData": { + "wifiForbidden": false, + "wifiSecuredOnly": false, + "everywhereChannel": true, + "nomadismAllowed": true, + "drmLevels": [ + { + "definition": "SD", + "securedTerminal": [ + "DRM-HW", + "DRM-SW" + ], + "unsecuredTerminal": [ + "DRM-HW", + "DRM-SW" + ] + }, + { + "definition": "HD", + "securedTerminal": [ + "ND" + ], + "unsecuredTerminal": [ + "ND" + ] + } + ] + }, + "webdeviceData": { + "nomadismAllowed": true + }, + "technicalChannels": { + "live": [ + { + "techChannelId": "400207", + "type": "CLOUDTV", + "liveTargetURLRelativePath": "livetv_panorama_drama_ctv", + "usi": 400207, + "isDRMized": true, + "csa5Disabled": true + } + ], + "npvr": [ + { + "externalId": "livetv_panorama_drama_ctv", + "techChannelId": "400207", + "type": "CLOUDTV", + "usi": 400207, + "isDRMized": true, + "antiAdskipping": "DEACTIVATED", + "csa5Disabled": true + } + ], + "startover": [] + } + }, + { + "name": "MBC DRAMA", + "editoChannelId": "livetv_mbc_drama", + "lcn": 529, + "idEPG": 90529, + "epgAvailable": false, + "epgTextSubstitution": "", + "displayOrder": 529, + "csaCode": 1, + "slogan": "L'espoir est visible tout autour de nous", + "catchupChannelId": "", + "newChannel": true, + "roamingBlocked": false, + "allowedDeviceCategories": [ + "M_ANDROID", + "M_IOS", + "M_TABLET_ANDROID", + "M_TABLET_IOS", + "W_AIRPLAY", + "W_CHROMECAST", + "W_LACLETV2", + "W_SMARTTV", + "W_PC", + "S_STB" + ], + "packages": [ + "PA_bouquet_arabe_max", + "PI_WHITELIST" + ], + "hasRightIAccess": true, + "hasRightMAccess": false, + "logos": [ + { + "definitionType": "mobileAppli", + "listLogos": [ + { + "size": "183x183", + "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_mbc_drama%2F20191107_103814%2FmobileAppli%2Flogo_183x183.png" + } + ] + }, + { + "definitionType": "mobileAppliDark", + "listLogos": [ + { + "size": "183x183", + "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_mbc_drama%2F20191107_103814%2FmobileAppliDark%2Flogo_183x183.png" + } + ] + }, + { + "definitionType": "webTVLogo", + "listLogos": [ + { + "size": "180x96", + "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_mbc_drama%2F20191107_103814%2FwebTVLogo%2Flogo_180x96.png" + } + ] + }, + { + "definitionType": "webTVSquare", + "listLogos": [ + { + "size": "150x150", + "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_mbc_drama%2F20191107_103814%2FwebTVSquare%2Flogo_150x150.png" + } + ] + } + ], + "mobileData": { + "wifiForbidden": false, + "wifiSecuredOnly": false, + "everywhereChannel": true, + "nomadismAllowed": true, + "drmLevels": [ + { + "definition": "SD", + "securedTerminal": [ + "DRM-HW", + "DRM-SW" + ], + "unsecuredTerminal": [ + "DRM-HW", + "DRM-SW" + ] + }, + { + "definition": "HD", + "securedTerminal": [ + "ND" + ], + "unsecuredTerminal": [ + "ND" + ] + } + ] + }, + "webdeviceData": { + "nomadismAllowed": true + }, + "technicalChannels": { + "live": [ + { + "techChannelId": "400208", + "type": "CLOUDTV", + "liveTargetURLRelativePath": "livetv_mbc_drama_ctv", + "usi": 400208, + "isDRMized": true, + "csa5Disabled": true + } + ], + "npvr": [ + { + "externalId": "livetv_mbc_drama_ctv", + "techChannelId": "400208", + "type": "CLOUDTV", + "usi": 400208, + "isDRMized": true, + "antiAdskipping": "DEACTIVATED", + "csa5Disabled": true + } + ], + "startover": [] + } + }, + { + "name": "MBC MASR", + "editoChannelId": "livetv_mbc_masr", + "lcn": 530, + "idEPG": 90530, + "epgAvailable": false, + "epgTextSubstitution": "", + "displayOrder": 530, + "csaCode": 1, + "slogan": "Les meilleures séries égyptiennes", + "catchupChannelId": "", + "newChannel": true, + "roamingBlocked": false, + "allowedDeviceCategories": [ + "M_ANDROID", + "M_IOS", + "M_TABLET_ANDROID", + "M_TABLET_IOS", + "W_AIRPLAY", + "W_CHROMECAST", + "W_LACLETV2", + "W_SMARTTV", + "W_PC", + "S_STB" + ], + "packages": [ + "PA_bouquet_arabe_max", + "PI_WHITELIST" + ], + "hasRightIAccess": true, + "hasRightMAccess": false, + "logos": [ + { + "definitionType": "mobileAppli", + "listLogos": [ + { + "size": "183x183", + "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_mbc_masr%2F20191107_103814%2FmobileAppli%2Flogo_183x183.png" + } + ] + }, + { + "definitionType": "mobileAppliDark", + "listLogos": [ + { + "size": "183x183", + "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_mbc_masr%2F20191107_103814%2FmobileAppliDark%2Flogo_183x183.png" + } + ] + }, + { + "definitionType": "webTVLogo", + "listLogos": [ + { + "size": "180x96", + "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_mbc_masr%2F20191107_103814%2FwebTVLogo%2Flogo_180x96.png" + } + ] + }, + { + "definitionType": "webTVSquare", + "listLogos": [ + { + "size": "150x150", + "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_mbc_masr%2F20191107_103814%2FwebTVSquare%2Flogo_150x150.png" + } + ] + } + ], + "mobileData": { + "wifiForbidden": false, + "wifiSecuredOnly": false, + "everywhereChannel": true, + "nomadismAllowed": true, + "drmLevels": [ + { + "definition": "SD", + "securedTerminal": [ + "DRM-HW", + "DRM-SW" + ], + "unsecuredTerminal": [ + "DRM-HW", + "DRM-SW" + ] + }, + { + "definition": "HD", + "securedTerminal": [ + "ND" + ], + "unsecuredTerminal": [ + "ND" + ] + } + ] + }, + "webdeviceData": { + "nomadismAllowed": true + }, + "technicalChannels": { + "live": [ + { + "techChannelId": "400209", + "type": "CLOUDTV", + "liveTargetURLRelativePath": "livetv_mbc_masr_ctv", + "usi": 400209, + "isDRMized": true, + "csa5Disabled": true + } + ], + "npvr": [ + { + "externalId": "livetv_mbc_masr_ctv", + "techChannelId": "400209", + "type": "CLOUDTV", + "usi": 400209, + "isDRMized": true, + "antiAdskipping": "DEACTIVATED", + "csa5Disabled": true + } + ], + "startover": [] + } + }, + { + "name": "AL RAWDA", + "editoChannelId": "livetv_al_rawda", + "lcn": 531, + "idEPG": 90531, + "epgAvailable": false, + "epgTextSubstitution": "", + "displayOrder": 531, + "csaCode": 1, + "slogan": "La chaîne fun pour les 4-6 ans", + "catchupChannelId": "", + "newChannel": true, + "roamingBlocked": false, + "allowedDeviceCategories": [ + "M_ANDROID", + "M_IOS", + "M_TABLET_ANDROID", + "M_TABLET_IOS", + "W_AIRPLAY", + "W_CHROMECAST", + "W_LACLETV2", + "W_SMARTTV", + "W_PC", + "S_STB" + ], + "packages": [ + "PA_bouquet_arabe_max", + "PI_WHITELIST" + ], + "hasRightIAccess": true, + "hasRightMAccess": false, + "logos": [ + { + "definitionType": "mobileAppli", + "listLogos": [ + { + "size": "183x183", + "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_al_rawda%2F20200929_084606%2FmobileAppli%2Flogo_183x183.png" + } + ] + }, + { + "definitionType": "mobileAppliDark", + "listLogos": [ + { + "size": "183x183", + "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_al_rawda%2F20200929_084606%2FmobileAppliDark%2Flogo_183x183.png" + } + ] + }, + { + "definitionType": "webTVLogo", + "listLogos": [ + { + "size": "180x96", + "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_al_rawda%2F20200929_084606%2FwebTVLogo%2Flogo_180x96.png" + } + ] + }, + { + "definitionType": "webTVSquare", + "listLogos": [ + { + "size": "150x150", + "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_al_rawda%2F20200929_084606%2FwebTVSquare%2Flogo_150x150.png" + } + ] + } + ], + "mobileData": { + "wifiForbidden": false, + "wifiSecuredOnly": false, + "everywhereChannel": true, + "nomadismAllowed": true, + "drmLevels": [ + { + "definition": "SD", + "securedTerminal": [ + "DRM-HW", + "DRM-SW" + ], + "unsecuredTerminal": [ + "DRM-HW", + "DRM-SW" + ] + }, + { + "definition": "HD", + "securedTerminal": [ + "ND" + ], + "unsecuredTerminal": [ + "ND" + ] + } + ] + }, + "webdeviceData": { + "nomadismAllowed": true + }, + "technicalChannels": { + "live": [ + { + "techChannelId": "400276", + "type": "CLOUDTV", + "liveTargetURLRelativePath": "livetv_alrawda_ctv", + "usi": 400276, + "isDRMized": true, + "csa5Disabled": true + } + ], + "npvr": [ + { + "externalId": "livetv_alrawda_ctv", + "techChannelId": "400276", + "type": "CLOUDTV", + "usi": 400276, + "isDRMized": true, + "antiAdskipping": "DEACTIVATED", + "csa5Disabled": true + } + ], + "startover": [] + } + }, + { + "name": "NTD TV", + "editoChannelId": "livetv_ntdtv", + "lcn": 548, + "idEPG": 90548, + "epgAvailable": false, + "epgTextSubstitution": "", + "displayOrder": 548, + "csaCode": 1, + "slogan": "La renaissance de la Chine arrive", + "catchupChannelId": "", + "newChannel": false, + "roamingBlocked": false, + "allowedDeviceCategories": [ + "M_ANDROID", + "M_IOS", + "M_TABLET_ANDROID", + "M_TABLET_IOS", + "W_AIRPLAY", + "W_CHROMECAST", + "W_LACLETV2", + "W_SMARTTV", + "W_PC", + "S_STB" + ], + "packages": [ + "PA_BQ_BASIC_M", + "PA_BQ_TVDIGITALE_I", + "PA_BQ_BASIC_I", + "PA_BQ_BASICQUAD_I", + "PI_WHITELIST" + ], + "hasRightIAccess": true, + "hasRightMAccess": true, + "logos": [ + { + "definitionType": "mobileAppli", + "listLogos": [ + { + "size": "183x183", + "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_ntdtv%2F20180821_115653%2FmobileAppli%2Flogo_183x183.png" + } + ] + }, + { + "definitionType": "mobileAppliDark", + "listLogos": [ + { + "size": "183x183", + "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_ntdtv%2F20180821_115653%2FmobileAppliDark%2Flogo_183x183.png" + } + ] + }, + { + "definitionType": "webTVLogo", + "listLogos": [ + { + "size": "180x96", + "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_ntdtv%2F20180821_115653%2FwebTVLogo%2Flogo_180x96.png" + } + ] + }, + { + "definitionType": "webTVSquare", + "listLogos": [ + { + "size": "150x150", + "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_ntdtv%2F20180821_115653%2FwebTVSquare%2Flogo_150x150.png" + } + ] + } + ], + "mobileData": { + "wifiForbidden": false, + "wifiSecuredOnly": false, + "everywhereChannel": true, + "nomadismAllowed": true, + "drmLevels": [ + { + "definition": "SD", + "securedTerminal": [ + "DRM-HW", + "DRM-SW" + ], + "unsecuredTerminal": [ + "DRM-HW", + "DRM-SW" + ] + }, + { + "definition": "HD", + "securedTerminal": [ + "ND" + ], + "unsecuredTerminal": [ + "ND" + ] + } + ] + }, + "webdeviceData": { + "nomadismAllowed": true + }, + "technicalChannels": { + "live": [ + { + "techChannelId": "400258", + "type": "CLOUDTV", + "liveTargetURLRelativePath": "livetv_ntdtv_ctv", + "usi": 400258, + "isDRMized": true, + "csa5Disabled": true + } + ], + "npvr": [], + "startover": [] + } + }, + { + "name": "CCTV 4", + "editoChannelId": "livetv_cctv_4", + "lcn": 551, + "idEPG": 90551, + "epgAvailable": false, + "epgTextSubstitution": "", + "displayOrder": 551, + "csaCode": 1, + "slogan": "La chaîne d'information chinoise", + "catchupChannelId": "", + "newChannel": true, + "roamingBlocked": false, + "allowedDeviceCategories": [ + "M_ANDROID", + "M_IOS", + "M_TABLET_ANDROID", + "M_TABLET_IOS", + "W_AIRPLAY", + "W_CHROMECAST", + "W_LACLETV2", + "W_PC", + "W_SMARTTV", + "S_STB" + ], + "packages": [ + "PA_bouquet_chinois", + "PI_WHITELIST" + ], + "hasRightIAccess": true, + "hasRightMAccess": false, + "logos": [ + { + "definitionType": "mobileAppli", + "listLogos": [ + { + "size": "183x183", + "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_cctv_4%2F20221212_170133%2FmobileAppli%2Flogo_183x183.png" + } + ] + }, + { + "definitionType": "mobileAppliDark", + "listLogos": [ + { + "size": "183x183", + "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_cctv_4%2F20221212_170133%2FmobileAppliDark%2Flogo_183x183.png" + } + ] + }, + { + "definitionType": "webTVLogo", + "listLogos": [ + { + "size": "180x96", + "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_cctv_4%2F20221212_170133%2FwebTVLogo%2Flogo_180x96.png" + } + ] + }, + { + "definitionType": "webTVSquare", + "listLogos": [ + { + "size": "150x150", + "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_cctv_4%2F20221212_170133%2FwebTVSquare%2Flogo_150x150.png" + } + ] + } + ], + "mobileData": { + "wifiForbidden": false, + "wifiSecuredOnly": false, + "everywhereChannel": true, + "nomadismAllowed": true, + "drmLevels": [ + { + "definition": "SD", + "securedTerminal": [ + "DRM-HW", + "DRM-SW" + ], + "unsecuredTerminal": [ + "DRM-HW", + "DRM-SW" + ] + }, + { + "definition": "HD", + "securedTerminal": [ + "ND" + ], + "unsecuredTerminal": [ + "ND" + ] + } + ] + }, + "webdeviceData": { + "nomadismAllowed": true + }, + "technicalChannels": { + "live": [ + { + "techChannelId": "400100", + "type": "CLOUDTV", + "liveTargetURLRelativePath": "livetv_cctv4_ctv", + "usi": 400100, + "isDRMized": true, + "csa5Disabled": true + } + ], + "npvr": [ + { + "externalId": "livetv_cctv4_ctv", + "techChannelId": "400100", + "type": "CLOUDTV", + "usi": 400100, + "isDRMized": true, + "antiAdskipping": "DEACTIVATED", + "csa5Disabled": true + } + ], + "startover": [] + } + }, + { + "name": "PHOENIX CNE", + "editoChannelId": "livetv_phoenix_cne", + "lcn": 552, + "idEPG": 90552, + "epgAvailable": false, + "epgTextSubstitution": "", + "displayOrder": 552, + "csaCode": 1, + "slogan": "Chinese News Entertainment", + "catchupChannelId": "", + "newChannel": true, + "roamingBlocked": false, + "allowedDeviceCategories": [ + "M_ANDROID", + "M_IOS", + "M_TABLET_ANDROID", + "M_TABLET_IOS", + "W_AIRPLAY", + "W_CHROMECAST", + "W_LACLETV2", + "W_PC", + "W_SMARTTV", + "S_STB" + ], + "packages": [ + "PA_bouquet_chinois", + "PI_WHITELIST" + ], + "hasRightIAccess": true, + "hasRightMAccess": false, + "logos": [ + { + "definitionType": "mobileAppli", + "listLogos": [ + { + "size": "183x183", + "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_phoenix_cne%2F20221212_170133%2FmobileAppli%2Flogo_183x183.png" + } + ] + }, + { + "definitionType": "mobileAppliDark", + "listLogos": [ + { + "size": "183x183", + "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_phoenix_cne%2F20221212_170133%2FmobileAppliDark%2Flogo_183x183.png" + } + ] + }, + { + "definitionType": "webTVLogo", + "listLogos": [ + { + "size": "180x96", + "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_phoenix_cne%2F20221212_170133%2FwebTVLogo%2Flogo_180x96.png" + } + ] + }, + { + "definitionType": "webTVSquare", + "listLogos": [ + { + "size": "150x150", + "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_phoenix_cne%2F20221212_170133%2FwebTVSquare%2Flogo_150x150.png" + } + ] + } + ], + "mobileData": { + "wifiForbidden": false, + "wifiSecuredOnly": false, + "everywhereChannel": true, + "nomadismAllowed": true, + "drmLevels": [ + { + "definition": "SD", + "securedTerminal": [ + "DRM-HW", + "DRM-SW" + ], + "unsecuredTerminal": [ + "DRM-HW", + "DRM-SW" + ] + }, + { + "definition": "HD", + "securedTerminal": [ + "ND" + ], + "unsecuredTerminal": [ + "ND" + ] + } + ] + }, + "webdeviceData": { + "nomadismAllowed": true + }, + "technicalChannels": { + "live": [ + { + "techChannelId": "400274", + "type": "CLOUDTV", + "liveTargetURLRelativePath": "livetv_phoenix_cne_ctv", + "usi": 400274, + "isDRMized": true, + "csa5Disabled": true + } + ], + "npvr": [ + { + "externalId": "livetv_phoenix_cne_ctv", + "techChannelId": "400274", + "type": "CLOUDTV", + "usi": 400274, + "isDRMized": true, + "antiAdskipping": "DEACTIVATED", + "csa5Disabled": true + } + ], + "startover": [] + } + }, + { + "name": "PHOENIX INFONEWS", + "editoChannelId": "livetv_phoenix_infonews", + "lcn": 553, + "idEPG": 90553, + "epgAvailable": false, + "epgTextSubstitution": "", + "displayOrder": 553, + "csaCode": 1, + "slogan": "Chaîne d'information de Hongkong", + "catchupChannelId": "", + "newChannel": true, + "roamingBlocked": false, + "allowedDeviceCategories": [ + "M_ANDROID", + "M_IOS", + "M_TABLET_ANDROID", + "M_TABLET_IOS", + "W_AIRPLAY", + "W_CHROMECAST", + "W_LACLETV2", + "W_PC", + "W_SMARTTV", + "S_STB" + ], + "packages": [ + "PA_bouquet_chinois", + "PI_WHITELIST" + ], + "hasRightIAccess": true, + "hasRightMAccess": false, + "logos": [ + { + "definitionType": "mobileAppli", + "listLogos": [ + { + "size": "183x183", + "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_phoenix_infonews%2F20221212_170133%2FmobileAppli%2Flogo_183x183.png" + } + ] + }, + { + "definitionType": "mobileAppliDark", + "listLogos": [ + { + "size": "183x183", + "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_phoenix_infonews%2F20221212_170133%2FmobileAppliDark%2Flogo_183x183.png" + } + ] + }, + { + "definitionType": "webTVLogo", + "listLogos": [ + { + "size": "180x96", + "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_phoenix_infonews%2F20221212_170133%2FwebTVLogo%2Flogo_180x96.png" + } + ] + }, + { + "definitionType": "webTVSquare", + "listLogos": [ + { + "size": "150x150", + "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_phoenix_infonews%2F20221212_170133%2FwebTVSquare%2Flogo_150x150.png" + } + ] + } + ], + "mobileData": { + "wifiForbidden": false, + "wifiSecuredOnly": false, + "everywhereChannel": true, + "nomadismAllowed": true, + "drmLevels": [ + { + "definition": "SD", + "securedTerminal": [ + "DRM-HW", + "DRM-SW" + ], + "unsecuredTerminal": [ + "DRM-HW", + "DRM-SW" + ] + }, + { + "definition": "HD", + "securedTerminal": [ + "ND" + ], + "unsecuredTerminal": [ + "ND" + ] + } + ] + }, + "webdeviceData": { + "nomadismAllowed": true + }, + "technicalChannels": { + "live": [ + { + "techChannelId": "400275", + "type": "CLOUDTV", + "liveTargetURLRelativePath": "livetv_phoenix_infonews_ctv", + "usi": 400275, + "isDRMized": true, + "csa5Disabled": true + } + ], + "npvr": [ + { + "externalId": "livetv_phoenix_infonews_ctv", + "techChannelId": "400275", + "type": "CLOUDTV", + "usi": 400275, + "isDRMized": true, + "antiAdskipping": "DEACTIVATED", + "csa5Disabled": true + } + ], + "startover": [] + } + }, + { + "name": "CHINA MOVIE CHANNEL", + "editoChannelId": "livetv_china_movie_channel", + "lcn": 554, + "idEPG": 90554, + "epgAvailable": false, + "epgTextSubstitution": "", + "displayOrder": 554, + "csaCode": 1, + "slogan": "La chaîne du cinéma chinois", + "catchupChannelId": "", + "newChannel": true, + "roamingBlocked": false, + "allowedDeviceCategories": [ + "M_ANDROID", + "M_IOS", + "M_TABLET_ANDROID", + "M_TABLET_IOS", + "W_AIRPLAY", + "W_CHROMECAST", + "W_LACLETV2", + "W_PC", + "W_SMARTTV", + "S_STB" + ], + "packages": [ + "PA_bouquet_chinois", + "PI_WHITELIST" + ], + "hasRightIAccess": true, + "hasRightMAccess": false, + "logos": [ + { + "definitionType": "mobileAppli", + "listLogos": [ + { + "size": "183x183", + "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_china_movie_channel%2F20221212_170133%2FmobileAppli%2Flogo_183x183.png" + } + ] + }, + { + "definitionType": "mobileAppliDark", + "listLogos": [ + { + "size": "183x183", + "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_china_movie_channel%2F20221212_170133%2FmobileAppliDark%2Flogo_183x183.png" + } + ] + }, + { + "definitionType": "webTVLogo", + "listLogos": [ + { + "size": "180x96", + "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_china_movie_channel%2F20221212_170133%2FwebTVLogo%2Flogo_180x96.png" + } + ] + }, + { + "definitionType": "webTVSquare", + "listLogos": [ + { + "size": "150x150", + "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_china_movie_channel%2F20221212_170133%2FwebTVSquare%2Flogo_150x150.png" + } + ] + } + ], + "mobileData": { + "wifiForbidden": false, + "wifiSecuredOnly": false, + "everywhereChannel": true, + "nomadismAllowed": true, + "drmLevels": [ + { + "definition": "SD", + "securedTerminal": [ + "DRM-HW", + "DRM-SW" + ], + "unsecuredTerminal": [ + "DRM-HW", + "DRM-SW" + ] + }, + { + "definition": "HD", + "securedTerminal": [ + "ND" + ], + "unsecuredTerminal": [ + "ND" + ] + } + ] + }, + "webdeviceData": { + "nomadismAllowed": true + }, + "technicalChannels": { + "live": [ + { + "techChannelId": "400185", + "type": "CLOUDTV", + "liveTargetURLRelativePath": "livetv_china_movie_channel_ctv", + "usi": 400185, + "isDRMized": true, + "csa5Disabled": true + } + ], + "npvr": [ + { + "externalId": "livetv_china_movie_channel_ctv", + "techChannelId": "400185", + "type": "CLOUDTV", + "usi": 400185, + "isDRMized": true, + "antiAdskipping": "DEACTIVATED", + "csa5Disabled": true + } + ], + "startover": [] + } + }, + { + "name": "CCTV DIVERTISSEMENT", + "editoChannelId": "livetv_cctv_divertissement", + "lcn": 555, + "idEPG": 90555, + "epgAvailable": false, + "epgTextSubstitution": "", + "displayOrder": 555, + "csaCode": 1, + "slogan": "Chaîne de divertissement", + "catchupChannelId": "", + "newChannel": true, + "roamingBlocked": false, + "allowedDeviceCategories": [ + "M_ANDROID", + "M_IOS", + "M_TABLET_ANDROID", + "M_TABLET_IOS", + "W_AIRPLAY", + "W_CHROMECAST", + "W_LACLETV2", + "W_PC", + "W_SMARTTV", + "S_STB" + ], + "packages": [ + "PA_bouquet_chinois", + "PI_WHITELIST" + ], + "hasRightIAccess": true, + "hasRightMAccess": false, + "logos": [ + { + "definitionType": "mobileAppli", + "listLogos": [ + { + "size": "183x183", + "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_cctv_divertissement%2F20221212_170133%2FmobileAppli%2Flogo_183x183.png" + } + ] + }, + { + "definitionType": "mobileAppliDark", + "listLogos": [ + { + "size": "183x183", + "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_cctv_divertissement%2F20221212_170133%2FmobileAppliDark%2Flogo_183x183.png" + } + ] + }, + { + "definitionType": "webTVLogo", + "listLogos": [ + { + "size": "180x96", + "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_cctv_divertissement%2F20221212_170133%2FwebTVLogo%2Flogo_180x96.png" + } + ] + }, + { + "definitionType": "webTVSquare", + "listLogos": [ + { + "size": "150x150", + "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_cctv_divertissement%2F20221212_170133%2FwebTVSquare%2Flogo_150x150.png" + } + ] + } + ], + "mobileData": { + "wifiForbidden": false, + "wifiSecuredOnly": false, + "everywhereChannel": true, + "nomadismAllowed": true, + "drmLevels": [ + { + "definition": "SD", + "securedTerminal": [ + "DRM-HW", + "DRM-SW" + ], + "unsecuredTerminal": [ + "DRM-HW", + "DRM-SW" + ] + }, + { + "definition": "HD", + "securedTerminal": [ + "ND" + ], + "unsecuredTerminal": [ + "ND" + ] + } + ] + }, + "webdeviceData": { + "nomadismAllowed": true + }, + "technicalChannels": { + "live": [ + { + "techChannelId": "400114", + "type": "CLOUDTV", + "liveTargetURLRelativePath": "livetv_cctv_divertissement_ctv", + "usi": 400114, + "isDRMized": true, + "csa5Disabled": true + } + ], + "npvr": [ + { + "externalId": "livetv_cctv_divertissement_ctv", + "techChannelId": "400114", + "type": "CLOUDTV", + "usi": 400114, + "isDRMized": true, + "antiAdskipping": "DEACTIVATED", + "csa5Disabled": true + } + ], + "startover": [] + } + }, + { + "name": "ZHEJIANG INTERNATIONAL TV", + "editoChannelId": "livetv_zhejiang_international_tv", + "lcn": 556, + "idEPG": 90556, + "epgAvailable": false, + "epgTextSubstitution": "", + "displayOrder": 556, + "csaCode": 1, + "slogan": "Chaîne locale de Zhejiang", + "catchupChannelId": "", + "newChannel": true, + "roamingBlocked": false, + "allowedDeviceCategories": [ + "M_ANDROID", + "M_IOS", + "M_TABLET_ANDROID", + "M_TABLET_IOS", + "W_AIRPLAY", + "W_CHROMECAST", + "W_LACLETV2", + "W_PC", + "W_SMARTTV", + "S_STB" + ], + "packages": [ + "PA_bouquet_chinois", + "PI_WHITELIST" + ], + "hasRightIAccess": true, + "hasRightMAccess": false, + "logos": [ + { + "definitionType": "mobileAppli", + "listLogos": [ + { + "size": "183x183", + "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_zhejiang_international_tv%2F20221212_170133%2FmobileAppli%2Flogo_183x183.png" + } + ] + }, + { + "definitionType": "mobileAppliDark", + "listLogos": [ + { + "size": "183x183", + "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_zhejiang_international_tv%2F20221212_170133%2FmobileAppliDark%2Flogo_183x183.png" + } + ] + }, + { + "definitionType": "webTVLogo", + "listLogos": [ + { + "size": "180x96", + "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_zhejiang_international_tv%2F20221212_170133%2FwebTVLogo%2Flogo_180x96.png" + } + ] + }, + { + "definitionType": "webTVSquare", + "listLogos": [ + { + "size": "150x150", + "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_zhejiang_international_tv%2F20221212_170133%2FwebTVSquare%2Flogo_150x150.png" + } + ] + } + ], + "mobileData": { + "wifiForbidden": false, + "wifiSecuredOnly": false, + "everywhereChannel": true, + "nomadismAllowed": true, + "drmLevels": [ + { + "definition": "SD", + "securedTerminal": [ + "DRM-HW", + "DRM-SW" + ], + "unsecuredTerminal": [ + "DRM-HW", + "DRM-SW" + ] + }, + { + "definition": "HD", + "securedTerminal": [ + "ND" + ], + "unsecuredTerminal": [ + "ND" + ] + } + ] + }, + "webdeviceData": { + "nomadismAllowed": true + }, + "technicalChannels": { + "live": [ + { + "techChannelId": "400273", + "type": "CLOUDTV", + "liveTargetURLRelativePath": "livetv_zhejiang_international_tv_ctv", + "usi": 400273, + "isDRMized": true, + "csa5Disabled": true + } + ], + "npvr": [ + { + "externalId": "livetv_zhejiang_international_tv_ctv", + "techChannelId": "400273", + "type": "CLOUDTV", + "usi": 400273, + "isDRMized": true, + "antiAdskipping": "DEACTIVATED", + "csa5Disabled": true + } + ], + "startover": [] + } + }, + { + "name": "SHANGHAI DRAGON TV", + "editoChannelId": "livetv_shanghai_dragon_tv", + "lcn": 557, + "idEPG": 90557, + "epgAvailable": false, + "epgTextSubstitution": "", + "displayOrder": 557, + "csaCode": 1, + "slogan": "La chaîne généraliste de Shanghai", + "catchupChannelId": "", + "newChannel": true, + "roamingBlocked": false, + "allowedDeviceCategories": [ + "M_ANDROID", + "M_IOS", + "M_TABLET_ANDROID", + "M_TABLET_IOS", + "W_AIRPLAY", + "W_CHROMECAST", + "W_LACLETV2", + "W_PC", + "W_SMARTTV", + "S_STB" + ], + "packages": [ + "PA_bouquet_chinois", + "PI_WHITELIST" + ], + "hasRightIAccess": true, + "hasRightMAccess": false, + "logos": [ + { + "definitionType": "mobileAppli", + "listLogos": [ + { + "size": "183x183", + "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_shanghai_dragon_tv%2F20221212_170133%2FmobileAppli%2Flogo_183x183.png" + } + ] + }, + { + "definitionType": "mobileAppliDark", + "listLogos": [ + { + "size": "183x183", + "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_shanghai_dragon_tv%2F20221212_170133%2FmobileAppliDark%2Flogo_183x183.png" + } + ] + }, + { + "definitionType": "webTVLogo", + "listLogos": [ + { + "size": "180x96", + "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_shanghai_dragon_tv%2F20221212_170133%2FwebTVLogo%2Flogo_180x96.png" + } + ] + }, + { + "definitionType": "webTVSquare", + "listLogos": [ + { + "size": "150x150", + "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_shanghai_dragon_tv%2F20221212_170133%2FwebTVSquare%2Flogo_150x150.png" + } + ] + } + ], + "mobileData": { + "wifiForbidden": false, + "wifiSecuredOnly": false, + "everywhereChannel": true, + "nomadismAllowed": true, + "drmLevels": [ + { + "definition": "SD", + "securedTerminal": [ + "DRM-HW", + "DRM-SW" + ], + "unsecuredTerminal": [ + "DRM-HW", + "DRM-SW" + ] + }, + { + "definition": "HD", + "securedTerminal": [ + "ND" + ], + "unsecuredTerminal": [ + "ND" + ] + } + ] + }, + "webdeviceData": { + "nomadismAllowed": true + }, + "technicalChannels": { + "live": [ + { + "techChannelId": "400272", + "type": "CLOUDTV", + "liveTargetURLRelativePath": "livetv_shangai_dragon_tv_ctv", + "usi": 400272, + "isDRMized": true, + "csa5Disabled": true + } + ], + "npvr": [ + { + "externalId": "livetv_shangai_dragon_tv_ctv", + "techChannelId": "400272", + "type": "CLOUDTV", + "usi": 400272, + "isDRMized": true, + "antiAdskipping": "DEACTIVATED", + "csa5Disabled": true + } + ], + "startover": [] + } + }, + { + "name": "BEIJING TV", + "editoChannelId": "livetv_beijing_tv", + "lcn": 558, + "idEPG": 90558, + "epgAvailable": false, + "epgTextSubstitution": "", + "displayOrder": 558, + "csaCode": 1, + "slogan": "La chaîne locale de Beijing", + "catchupChannelId": "", + "newChannel": true, + "roamingBlocked": false, + "allowedDeviceCategories": [ + "M_ANDROID", + "M_IOS", + "M_TABLET_ANDROID", + "M_TABLET_IOS", + "W_AIRPLAY", + "W_CHROMECAST", + "W_LACLETV2", + "W_PC", + "W_SMARTTV", + "S_STB" + ], + "packages": [ + "PA_bouquet_chinois", + "PI_WHITELIST" + ], + "hasRightIAccess": true, + "hasRightMAccess": false, + "logos": [ + { + "definitionType": "mobileAppli", + "listLogos": [ + { + "size": "183x183", + "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_beijing_tv%2F20221212_170133%2FmobileAppli%2Flogo_183x183.png" + } + ] + }, + { + "definitionType": "mobileAppliDark", + "listLogos": [ + { + "size": "183x183", + "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_beijing_tv%2F20221212_170133%2FmobileAppliDark%2Flogo_183x183.png" + } + ] + }, + { + "definitionType": "webTVLogo", + "listLogos": [ + { + "size": "180x96", + "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_beijing_tv%2F20221212_170133%2FwebTVLogo%2Flogo_180x96.png" + } + ] + }, + { + "definitionType": "webTVSquare", + "listLogos": [ + { + "size": "150x150", + "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_beijing_tv%2F20221212_170133%2FwebTVSquare%2Flogo_150x150.png" + } + ] + } + ], + "mobileData": { + "wifiForbidden": false, + "wifiSecuredOnly": false, + "everywhereChannel": true, + "nomadismAllowed": true, + "drmLevels": [ + { + "definition": "SD", + "securedTerminal": [ + "DRM-HW", + "DRM-SW" + ], + "unsecuredTerminal": [ + "DRM-HW", + "DRM-SW" + ] + }, + { + "definition": "HD", + "securedTerminal": [ + "ND" + ], + "unsecuredTerminal": [ + "ND" + ] + } + ] + }, + "webdeviceData": { + "nomadismAllowed": true + }, + "technicalChannels": { + "live": [ + { + "techChannelId": "400039", + "type": "CLOUDTV", + "liveTargetURLRelativePath": "livetv_beijing_tv_ctv", + "usi": 400039, + "isDRMized": true, + "csa5Disabled": true + } + ], + "npvr": [ + { + "externalId": "livetv_beijing_tv_ctv", + "techChannelId": "400039", + "type": "CLOUDTV", + "usi": 400039, + "isDRMized": true, + "antiAdskipping": "DEACTIVATED", + "csa5Disabled": true + } + ], + "startover": [] + } + }, + { + "name": "HUNAN WORLD TV", + "editoChannelId": "livetv_hunan_world_tv", + "lcn": 559, + "idEPG": 90559, + "epgAvailable": false, + "epgTextSubstitution": "", + "displayOrder": 559, + "csaCode": 1, + "slogan": "Chaîne de divertissement", + "catchupChannelId": "", + "newChannel": true, + "roamingBlocked": false, + "allowedDeviceCategories": [ + "M_ANDROID", + "M_IOS", + "M_TABLET_ANDROID", + "M_TABLET_IOS", + "W_AIRPLAY", + "W_CHROMECAST", + "W_LACLETV2", + "W_PC", + "W_SMARTTV", + "S_STB" + ], + "packages": [ + "PA_bouquet_chinois", + "PI_WHITELIST" + ], + "hasRightIAccess": true, + "hasRightMAccess": false, + "logos": [ + { + "definitionType": "mobileAppli", + "listLogos": [ + { + "size": "183x183", + "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_hunan_world_tv%2F20221212_170133%2FmobileAppli%2Flogo_183x183.png" + } + ] + }, + { + "definitionType": "mobileAppliDark", + "listLogos": [ + { + "size": "183x183", + "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_hunan_world_tv%2F20221212_170133%2FmobileAppliDark%2Flogo_183x183.png" + } + ] + }, + { + "definitionType": "webTVLogo", + "listLogos": [ + { + "size": "180x96", + "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_hunan_world_tv%2F20221212_170133%2FwebTVLogo%2Flogo_180x96.png" + } + ] + }, + { + "definitionType": "webTVSquare", + "listLogos": [ + { + "size": "150x150", + "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_hunan_world_tv%2F20221212_170133%2FwebTVSquare%2Flogo_150x150.png" + } + ] + } + ], + "mobileData": { + "wifiForbidden": false, + "wifiSecuredOnly": false, + "everywhereChannel": true, + "nomadismAllowed": true, + "drmLevels": [ + { + "definition": "SD", + "securedTerminal": [ + "DRM-HW", + "DRM-SW" + ], + "unsecuredTerminal": [ + "DRM-HW", + "DRM-SW" + ] + }, + { + "definition": "HD", + "securedTerminal": [ + "ND" + ], + "unsecuredTerminal": [ + "ND" + ] + } + ] + }, + "webdeviceData": { + "nomadismAllowed": true + }, + "technicalChannels": { + "live": [ + { + "techChannelId": "400270", + "type": "CLOUDTV", + "liveTargetURLRelativePath": "livetv_hunan_world_tv_ctv", + "usi": 400270, + "isDRMized": true, + "csa5Disabled": true + } + ], + "npvr": [ + { + "externalId": "livetv_hunan_world_tv_ctv", + "techChannelId": "400270", + "type": "CLOUDTV", + "usi": 400270, + "isDRMized": true, + "antiAdskipping": "DEACTIVATED", + "csa5Disabled": true + } + ], + "startover": [] + } + }, + { + "name": "JIANGSU INTERNATIONAL TV", + "editoChannelId": "livetv_jiangsu_international_tv", + "lcn": 560, + "idEPG": 90560, + "epgAvailable": false, + "epgTextSubstitution": "", + "displayOrder": 560, + "csaCode": 1, + "slogan": "Chaîne locale de Jiangsu", + "catchupChannelId": "", + "newChannel": true, + "roamingBlocked": false, + "allowedDeviceCategories": [ + "M_ANDROID", + "M_IOS", + "M_TABLET_ANDROID", + "M_TABLET_IOS", + "W_AIRPLAY", + "W_CHROMECAST", + "W_LACLETV2", + "W_PC", + "W_SMARTTV", + "S_STB" + ], + "packages": [ + "PA_bouquet_chinois", + "PI_WHITELIST" + ], + "hasRightIAccess": true, + "hasRightMAccess": false, + "logos": [ + { + "definitionType": "mobileAppli", + "listLogos": [ + { + "size": "183x183", + "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_jiangsu_international_tv%2F20221212_170133%2FmobileAppli%2Flogo_183x183.png" + } + ] + }, + { + "definitionType": "mobileAppliDark", + "listLogos": [ + { + "size": "183x183", + "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_jiangsu_international_tv%2F20221212_170133%2FmobileAppliDark%2Flogo_183x183.png" + } + ] + }, + { + "definitionType": "webTVLogo", + "listLogos": [ + { + "size": "180x96", + "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_jiangsu_international_tv%2F20221212_170133%2FwebTVLogo%2Flogo_180x96.png" + } + ] + }, + { + "definitionType": "webTVSquare", + "listLogos": [ + { + "size": "150x150", + "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_jiangsu_international_tv%2F20221212_170133%2FwebTVSquare%2Flogo_150x150.png" + } + ] + } + ], + "mobileData": { + "wifiForbidden": false, + "wifiSecuredOnly": false, + "everywhereChannel": true, + "nomadismAllowed": true, + "drmLevels": [ + { + "definition": "SD", + "securedTerminal": [ + "DRM-HW", + "DRM-SW" + ], + "unsecuredTerminal": [ + "DRM-HW", + "DRM-SW" + ] + }, + { + "definition": "HD", + "securedTerminal": [ + "ND" + ], + "unsecuredTerminal": [ + "ND" + ] + } + ] + }, + "webdeviceData": { + "nomadismAllowed": true + }, + "technicalChannels": { + "live": [ + { + "techChannelId": "400271", + "type": "CLOUDTV", + "liveTargetURLRelativePath": "livetv_jiangsu_international_tv_ctv", + "usi": 400271, + "isDRMized": true, + "csa5Disabled": true + } + ], + "npvr": [ + { + "externalId": "livetv_jiangsu_international_tv_ctv", + "techChannelId": "400271", + "type": "CLOUDTV", + "usi": 400271, + "isDRMized": true, + "antiAdskipping": "DEACTIVATED", + "csa5Disabled": true + } + ], + "startover": [] + } + }, + { + "name": "GRT GBA Satellite TV", + "editoChannelId": "livetv_guangdong_south_tv", + "lcn": 561, + "idEPG": 90561, + "epgAvailable": false, + "epgTextSubstitution": "", + "displayOrder": 561, + "csaCode": 1, + "slogan": "La chaîne chinoise de fiction", + "catchupChannelId": "", + "newChannel": true, + "roamingBlocked": false, + "allowedDeviceCategories": [ + "M_ANDROID", + "M_IOS", + "M_TABLET_ANDROID", + "M_TABLET_IOS", + "W_AIRPLAY", + "W_CHROMECAST", + "W_LACLETV2", + "W_PC", + "W_SMARTTV", + "S_STB" + ], + "packages": [ + "PA_bouquet_chinois", + "PI_WHITELIST" + ], + "hasRightIAccess": true, + "hasRightMAccess": false, + "logos": [ + { + "definitionType": "mobileAppli", + "listLogos": [ + { + "size": "183x183", + "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_guangdong_south_tv%2F20221212_170133%2FmobileAppli%2Flogo_183x183.png" + } + ] + }, + { + "definitionType": "mobileAppliDark", + "listLogos": [ + { + "size": "183x183", + "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_guangdong_south_tv%2F20221212_170133%2FmobileAppliDark%2Flogo_183x183.png" + } + ] + }, + { + "definitionType": "webTVLogo", + "listLogos": [ + { + "size": "180x96", + "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_guangdong_south_tv%2F20221212_170133%2FwebTVLogo%2Flogo_180x96.png" + } + ] + }, + { + "definitionType": "webTVSquare", + "listLogos": [ + { + "size": "150x150", + "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_guangdong_south_tv%2F20221212_170133%2FwebTVSquare%2Flogo_150x150.png" + } + ] + } + ], + "mobileData": { + "wifiForbidden": false, + "wifiSecuredOnly": false, + "everywhereChannel": true, + "nomadismAllowed": true, + "drmLevels": [ + { + "definition": "SD", + "securedTerminal": [ + "DRM-HW", + "DRM-SW" + ], + "unsecuredTerminal": [ + "DRM-HW", + "DRM-SW" + ] + }, + { + "definition": "HD", + "securedTerminal": [ + "ND" + ], + "unsecuredTerminal": [ + "ND" + ] + } + ] + }, + "webdeviceData": { + "nomadismAllowed": true + }, + "technicalChannels": { + "live": [ + { + "techChannelId": "400269", + "type": "CLOUDTV", + "liveTargetURLRelativePath": "livetv_grt_gba_satellite_tv_ctv", + "usi": 400269, + "isDRMized": true, + "csa5Disabled": true + } + ], + "npvr": [ + { + "externalId": "livetv_grt_gba_satellite_tv_ctv", + "techChannelId": "400269", + "type": "CLOUDTV", + "usi": 400269, + "isDRMized": true, + "antiAdskipping": "DEACTIVATED", + "csa5Disabled": true + } + ], + "startover": [] + } + }, + { + "name": "GREAT WALL ELITE", + "editoChannelId": "livetv_GreatWallElite", + "lcn": 562, + "idEPG": 90562, + "epgAvailable": false, + "epgTextSubstitution": "", + "displayOrder": 562, + "csaCode": 1, + "slogan": "Divertir et Redécouvrir la Chine", + "catchupChannelId": "", + "newChannel": true, + "roamingBlocked": false, + "allowedDeviceCategories": [ + "M_ANDROID", + "M_IOS", + "M_TABLET_ANDROID", + "M_TABLET_IOS", + "W_AIRPLAY", + "W_CHROMECAST", + "W_LACLETV2", + "W_PC", + "W_SMARTTV", + "S_STB" + ], + "packages": [ + "PA_bouquet_chinois", + "PI_WHITELIST" + ], + "hasRightIAccess": true, + "hasRightMAccess": false, + "logos": [ + { + "definitionType": "mobileAppli", + "listLogos": [ + { + "size": "183x183", + "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_GreatWallElite%2F20221212_170133%2FmobileAppli%2Flogo_183x183.png" + } + ] + }, + { + "definitionType": "mobileAppliDark", + "listLogos": [ + { + "size": "183x183", + "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_GreatWallElite%2F20221212_170133%2FmobileAppliDark%2Flogo_183x183.png" + } + ] + }, + { + "definitionType": "webTVLogo", + "listLogos": [ + { + "size": "180x96", + "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_GreatWallElite%2F20221212_170133%2FwebTVLogo%2Flogo_180x96.png" + } + ] + }, + { + "definitionType": "webTVSquare", + "listLogos": [ + { + "size": "150x150", + "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_GreatWallElite%2F20221212_170133%2FwebTVSquare%2Flogo_150x150.png" + } + ] + } + ], + "mobileData": { + "wifiForbidden": false, + "wifiSecuredOnly": false, + "everywhereChannel": true, + "nomadismAllowed": true, + "drmLevels": [ + { + "definition": "SD", + "securedTerminal": [ + "DRM-HW", + "DRM-SW" + ], + "unsecuredTerminal": [ + "DRM-HW", + "DRM-SW" + ] + }, + { + "definition": "HD", + "securedTerminal": [ + "ND" + ], + "unsecuredTerminal": [ + "ND" + ] + } + ] + }, + "webdeviceData": { + "nomadismAllowed": true + }, + "technicalChannels": { + "live": [ + { + "techChannelId": "400268", + "type": "CLOUDTV", + "liveTargetURLRelativePath": "livetv_great_wall_elite_ctv", + "usi": 400268, + "isDRMized": true, + "csa5Disabled": true + } + ], + "npvr": [ + { + "externalId": "livetv_great_wall_elite_ctv", + "techChannelId": "400268", + "type": "CLOUDTV", + "usi": 400268, + "isDRMized": true, + "antiAdskipping": "DEACTIVATED", + "csa5Disabled": true + } + ], + "startover": [] + } + }, + { + "name": "VOXAFRICA", + "editoChannelId": "livetv_voxafrica", + "lcn": 589, + "idEPG": 1133, + "epgAvailable": true, + "epgTextSubstitution": "", + "displayOrder": 589, + "csaCode": 1, + "slogan": "La télévision panafricaine par excellence", + "catchupChannelId": "", + "newChannel": false, + "roamingBlocked": true, + "allowedDeviceCategories": [ + "M_ANDROID", + "M_IOS", + "M_TABLET_ANDROID", + "M_TABLET_IOS", + "W_AIRPLAY", + "W_CHROMECAST", + "W_LACLETV2", + "W_PC", + "W_SMARTTV", + "S_STB" + ], + "packages": [ + "PA_BQ_TVDIGITALE_I", + "PA_BQ_BASIC_I", + "PA_BQ_BASICQUAD_I", + "PI_WHITELIST" + ], + "hasRightIAccess": true, + "hasRightMAccess": false, + "logos": [ + { + "definitionType": "mobileAppli", + "listLogos": [ + { + "size": "183x183", + "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_voxafrica%2F20230217_121614%2FmobileAppli%2Flogo_183x183.png" + } + ] + }, + { + "definitionType": "mobileAppliDark", + "listLogos": [ + { + "size": "183x183", + "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_voxafrica%2F20230217_121614%2FmobileAppliDark%2Flogo_183x183.png" + } + ] + }, + { + "definitionType": "webTVLogo", + "listLogos": [ + { + "size": "180x96", + "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_voxafrica%2F20230217_121614%2FwebTVLogo%2Flogo_180x96.png" + } + ] + }, + { + "definitionType": "webTVSquare", + "listLogos": [ + { + "size": "150x150", + "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_voxafrica%2F20230217_121614%2FwebTVSquare%2Flogo_150x150.png" + } + ] + } + ], + "mobileData": { + "wifiForbidden": false, + "wifiSecuredOnly": false, + "everywhereChannel": true, + "nomadismAllowed": true, + "drmLevels": [ + { + "definition": "SD", + "securedTerminal": [ + "DRM-HW", + "DRM-SW" + ], + "unsecuredTerminal": [ + "DRM-HW", + "DRM-SW" + ] + }, + { + "definition": "HD", + "securedTerminal": [ + "DRM-HW", + "DRM-SW" + ], + "unsecuredTerminal": [ + "ND" + ] + } + ] + }, + "webdeviceData": { + "nomadismAllowed": true + }, + "technicalChannels": { + "live": [ + { + "techChannelId": "400417", + "type": "CLOUDTV", + "liveTargetURLRelativePath": "livetv_acces_limite_ctv", + "usi": 400417, + "isDRMized": true, + "csa5Disabled": true + } + ], + "npvr": [], + "startover": [] + } + }, + { + "name": "RTS", + "editoChannelId": "livetv_rts", + "lcn": 590, + "idEPG": 90590, + "epgAvailable": false, + "epgTextSubstitution": "", + "displayOrder": 590, + "csaCode": 1, + "slogan": "Informer, éduquer, divertir", + "catchupChannelId": "", + "newChannel": true, + "roamingBlocked": false, + "allowedDeviceCategories": [ + "M_ANDROID", + "M_IOS", + "M_TABLET_ANDROID", + "M_TABLET_IOS", + "W_AIRPLAY", + "W_CHROMECAST", + "W_LACLETV2", + "W_PC", + "W_SMARTTV", + "S_STB" + ], + "packages": [ + "PA_bouquet_africain", + "PA_bouquet_africain_max", + "PI_WHITELIST" + ], + "hasRightIAccess": true, + "hasRightMAccess": false, + "logos": [ + { + "definitionType": "mobileAppli", + "listLogos": [ + { + "size": "183x183", + "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_rts%2F20230515_122020%2FmobileAppli%2Flogo_183x183.png" + } + ] + }, + { + "definitionType": "mobileAppliDark", + "listLogos": [ + { + "size": "183x183", + "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_rts%2F20230515_122020%2FmobileAppliDark%2Flogo_183x183.png" + } + ] + }, + { + "definitionType": "webTVLogo", + "listLogos": [ + { + "size": "180x96", + "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_rts%2F20230515_122020%2FwebTVLogo%2Flogo_180x96.png" + } + ] + }, + { + "definitionType": "webTVSquare", + "listLogos": [ + { + "size": "150x150", + "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_rts%2F20230515_122020%2FwebTVSquare%2Flogo_150x150.png" + } + ] + } + ], + "mobileData": { + "wifiForbidden": false, + "wifiSecuredOnly": false, + "everywhereChannel": true, + "nomadismAllowed": true, + "drmLevels": [ + { + "definition": "SD", + "securedTerminal": [ + "DRM-HW", + "DRM-SW" + ], + "unsecuredTerminal": [ + "DRM-HW", + "DRM-SW" + ] + }, + { + "definition": "HD", + "securedTerminal": [ + "ND" + ], + "unsecuredTerminal": [ + "ND" + ] + } + ] + }, + "webdeviceData": { + "nomadismAllowed": true + }, + "technicalChannels": { + "live": [ + { + "techChannelId": "400363", + "type": "CLOUDTV", + "liveTargetURLRelativePath": "livetv_rts_ctv", + "usi": 400363, + "isDRMized": true, + "csa5Disabled": true + } + ], + "npvr": [ + { + "externalId": "livetv_rts_ctv", + "techChannelId": "400363", + "type": "CLOUDTV", + "usi": 400363, + "isDRMized": true, + "antiAdskipping": "DEACTIVATED", + "csa5Disabled": true + } + ], + "startover": [] + } + }, + { + "name": "2STV", + "editoChannelId": "livetv_2stv", + "lcn": 591, + "idEPG": 90591, + "epgAvailable": false, + "epgTextSubstitution": "", + "displayOrder": 591, + "csaCode": 1, + "slogan": "La télévision…autrement", + "catchupChannelId": "", + "newChannel": true, + "roamingBlocked": false, + "allowedDeviceCategories": [ + "M_ANDROID", + "M_IOS", + "M_TABLET_ANDROID", + "M_TABLET_IOS", + "W_AIRPLAY", + "W_CHROMECAST", + "W_LACLETV2", + "W_SMARTTV", + "W_PC", + "S_STB" + ], + "packages": [ + "PA_bouquet_africain", + "PA_bouquet_africain_max", + "PI_WHITELIST" + ], + "hasRightIAccess": true, + "hasRightMAccess": false, + "logos": [ + { + "definitionType": "mobileAppli", + "listLogos": [ + { + "size": "183x183", + "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_2stv%2F20210506_104734%2FmobileAppli%2Flogo_183x183.png" + } + ] + }, + { + "definitionType": "mobileAppliDark", + "listLogos": [ + { + "size": "183x183", + "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_2stv%2F20210506_104734%2FmobileAppliDark%2Flogo_183x183.png" + } + ] + }, + { + "definitionType": "webTVLogo", + "listLogos": [ + { + "size": "180x96", + "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_2stv%2F20210506_104734%2FwebTVLogo%2Flogo_180x96.png" + } + ] + }, + { + "definitionType": "webTVSquare", + "listLogos": [ + { + "size": "150x150", + "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_2stv%2F20210506_104734%2FwebTVSquare%2Flogo_150x150.png" + } + ] + } + ], + "mobileData": { + "wifiForbidden": false, + "wifiSecuredOnly": false, + "everywhereChannel": true, + "nomadismAllowed": true, + "drmLevels": [ + { + "definition": "SD", + "securedTerminal": [ + "DRM-HW", + "DRM-SW" + ], + "unsecuredTerminal": [ + "DRM-HW", + "DRM-SW" + ] + }, + { + "definition": "HD", + "securedTerminal": [ + "ND" + ], + "unsecuredTerminal": [ + "ND" + ] + } + ] + }, + "webdeviceData": { + "nomadismAllowed": true + }, + "technicalChannels": { + "live": [ + { + "techChannelId": "400364", + "type": "CLOUDTV", + "liveTargetURLRelativePath": "livetv_2stv_ctv", + "usi": 400364, + "isDRMized": true, + "csa5Disabled": true + } + ], + "npvr": [ + { + "externalId": "livetv_2stv_ctv", + "techChannelId": "400364", + "type": "CLOUDTV", + "usi": 400364, + "isDRMized": true, + "antiAdskipping": "DEACTIVATED", + "csa5Disabled": true + } + ], + "startover": [] + } + }, + { + "name": "ORTM", + "editoChannelId": "livetv_ortm", + "lcn": 592, + "idEPG": 90592, + "epgAvailable": false, + "epgTextSubstitution": "", + "displayOrder": 592, + "csaCode": 1, + "slogan": "La passion du service public", + "catchupChannelId": "", + "newChannel": true, + "roamingBlocked": false, + "allowedDeviceCategories": [ + "M_ANDROID", + "M_IOS", + "M_TABLET_ANDROID", + "M_TABLET_IOS", + "W_AIRPLAY", + "W_CHROMECAST", + "W_LACLETV2", + "W_SMARTTV", + "W_PC", + "S_STB" + ], + "packages": [ + "PA_bouquet_africain", + "PA_bouquet_africain_max", + "PI_WHITELIST" + ], + "hasRightIAccess": true, + "hasRightMAccess": false, + "logos": [ + { + "definitionType": "mobileAppli", + "listLogos": [ + { + "size": "183x183", + "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_ortm%2F20210506_104734%2FmobileAppli%2Flogo_183x183.png" + } + ] + }, + { + "definitionType": "mobileAppliDark", + "listLogos": [ + { + "size": "183x183", + "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_ortm%2F20210506_104734%2FmobileAppliDark%2Flogo_183x183.png" + } + ] + }, + { + "definitionType": "webTVLogo", + "listLogos": [ + { + "size": "180x96", + "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_ortm%2F20210506_104734%2FwebTVLogo%2Flogo_180x96.png" + } + ] + }, + { + "definitionType": "webTVSquare", + "listLogos": [ + { + "size": "150x150", + "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_ortm%2F20210506_104734%2FwebTVSquare%2Flogo_150x150.png" + } + ] + } + ], + "mobileData": { + "wifiForbidden": false, + "wifiSecuredOnly": false, + "everywhereChannel": true, + "nomadismAllowed": true, + "drmLevels": [ + { + "definition": "SD", + "securedTerminal": [ + "DRM-HW", + "DRM-SW" + ], + "unsecuredTerminal": [ + "DRM-HW", + "DRM-SW" + ] + }, + { + "definition": "HD", + "securedTerminal": [ + "ND" + ], + "unsecuredTerminal": [ + "ND" + ] + } + ] + }, + "webdeviceData": { + "nomadismAllowed": true + }, + "technicalChannels": { + "live": [ + { + "techChannelId": "400365", + "type": "CLOUDTV", + "liveTargetURLRelativePath": "livetv_ortm_ctv", + "usi": 400365, + "isDRMized": true, + "csa5Disabled": true + } + ], + "npvr": [ + { + "externalId": "livetv_ortm_ctv", + "techChannelId": "400365", + "type": "CLOUDTV", + "usi": 400365, + "isDRMized": true, + "antiAdskipping": "DEACTIVATED", + "csa5Disabled": true + } + ], + "startover": [] + } + }, + { + "name": "RTI1", + "editoChannelId": "livetv_rti1", + "lcn": 593, + "idEPG": 90593, + "epgAvailable": false, + "epgTextSubstitution": "", + "displayOrder": 593, + "csaCode": 1, + "slogan": "La chaîne qui rassemble", + "catchupChannelId": "", + "newChannel": true, + "roamingBlocked": false, + "allowedDeviceCategories": [ + "M_ANDROID", + "M_IOS", + "M_TABLET_ANDROID", + "M_TABLET_IOS", + "W_AIRPLAY", + "W_CHROMECAST", + "W_LACLETV2", + "W_SMARTTV", + "W_PC", + "S_STB" + ], + "packages": [ + "PA_bouquet_africain", + "PA_bouquet_africain_max", + "PI_WHITELIST" + ], + "hasRightIAccess": true, + "hasRightMAccess": false, + "logos": [ + { + "definitionType": "mobileAppli", + "listLogos": [ + { + "size": "183x183", + "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_rti1%2F20210506_104734%2FmobileAppli%2Flogo_183x183.png" + } + ] + }, + { + "definitionType": "mobileAppliDark", + "listLogos": [ + { + "size": "183x183", + "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_rti1%2F20210506_104734%2FmobileAppliDark%2Flogo_183x183.png" + } + ] + }, + { + "definitionType": "webTVLogo", + "listLogos": [ + { + "size": "180x96", + "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_rti1%2F20210506_104734%2FwebTVLogo%2Flogo_180x96.png" + } + ] + }, + { + "definitionType": "webTVSquare", + "listLogos": [ + { + "size": "150x150", + "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_rti1%2F20210506_104734%2FwebTVSquare%2Flogo_150x150.png" + } + ] + } + ], + "mobileData": { + "wifiForbidden": false, + "wifiSecuredOnly": false, + "everywhereChannel": true, + "nomadismAllowed": true, + "drmLevels": [ + { + "definition": "SD", + "securedTerminal": [ + "DRM-HW", + "DRM-SW" + ], + "unsecuredTerminal": [ + "DRM-HW", + "DRM-SW" + ] + }, + { + "definition": "HD", + "securedTerminal": [ + "ND" + ], + "unsecuredTerminal": [ + "ND" + ] + } + ] + }, + "webdeviceData": { + "nomadismAllowed": true + }, + "technicalChannels": { + "live": [ + { + "techChannelId": "400366", + "type": "CLOUDTV", + "liveTargetURLRelativePath": "livetv_rti1_ctv", + "usi": 400366, + "isDRMized": true, + "csa5Disabled": true + } + ], + "npvr": [ + { + "externalId": "livetv_rti1_ctv", + "techChannelId": "400366", + "type": "CLOUDTV", + "usi": 400366, + "isDRMized": true, + "antiAdskipping": "DEACTIVATED", + "csa5Disabled": true + } + ], + "startover": [] + } + }, + { + "name": "CRTV", + "editoChannelId": "livetv_crtv", + "lcn": 594, + "idEPG": 90594, + "epgAvailable": false, + "epgTextSubstitution": "", + "displayOrder": 594, + "csaCode": 1, + "slogan": "La chaîne publique camerounaise", + "catchupChannelId": "", + "newChannel": true, + "roamingBlocked": false, + "allowedDeviceCategories": [ + "M_ANDROID", + "M_IOS", + "M_TABLET_ANDROID", + "M_TABLET_IOS", + "W_AIRPLAY", + "W_CHROMECAST", + "W_LACLETV2", + "W_SMARTTV", + "W_PC", + "S_STB" + ], + "packages": [ + "PA_bouquet_africain", + "PA_bouquet_africain_max", + "PI_WHITELIST" + ], + "hasRightIAccess": true, + "hasRightMAccess": false, + "logos": [ + { + "definitionType": "mobileAppli", + "listLogos": [ + { + "size": "183x183", + "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_crtv%2F20210506_104734%2FmobileAppli%2Flogo_183x183.png" + } + ] + }, + { + "definitionType": "mobileAppliDark", + "listLogos": [ + { + "size": "183x183", + "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_crtv%2F20210506_104734%2FmobileAppliDark%2Flogo_183x183.png" + } + ] + }, + { + "definitionType": "webTVLogo", + "listLogos": [ + { + "size": "180x96", + "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_crtv%2F20210506_104734%2FwebTVLogo%2Flogo_180x96.png" + } + ] + }, + { + "definitionType": "webTVSquare", + "listLogos": [ + { + "size": "150x150", + "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_crtv%2F20210506_104734%2FwebTVSquare%2Flogo_150x150.png" + } + ] + } + ], + "mobileData": { + "wifiForbidden": false, + "wifiSecuredOnly": false, + "everywhereChannel": true, + "nomadismAllowed": true, + "drmLevels": [ + { + "definition": "SD", + "securedTerminal": [ + "DRM-HW", + "DRM-SW" + ], + "unsecuredTerminal": [ + "DRM-HW", + "DRM-SW" + ] + }, + { + "definition": "HD", + "securedTerminal": [ + "ND" + ], + "unsecuredTerminal": [ + "ND" + ] + } + ] + }, + "webdeviceData": { + "nomadismAllowed": true + }, + "technicalChannels": { + "live": [ + { + "techChannelId": "400367", + "type": "CLOUDTV", + "liveTargetURLRelativePath": "livetv_crtv_ctv", + "usi": 400367, + "isDRMized": true, + "csa5Disabled": true + } + ], + "npvr": [ + { + "externalId": "livetv_crtv_ctv", + "techChannelId": "400367", + "type": "CLOUDTV", + "usi": 400367, + "isDRMized": true, + "antiAdskipping": "DEACTIVATED", + "csa5Disabled": true + } + ], + "startover": [] + } + }, + { + "name": "RTNC", + "editoChannelId": "livetv_rtnc", + "lcn": 595, + "idEPG": 90595, + "epgAvailable": false, + "epgTextSubstitution": "", + "displayOrder": 595, + "csaCode": 1, + "slogan": "Chaîne publique congolaise", + "catchupChannelId": "", + "newChannel": true, + "roamingBlocked": false, + "allowedDeviceCategories": [ + "M_ANDROID", + "M_IOS", + "M_TABLET_ANDROID", + "M_TABLET_IOS", + "W_AIRPLAY", + "W_CHROMECAST", + "W_LACLETV2", + "W_SMARTTV", + "W_PC", + "S_STB" + ], + "packages": [ + "PA_bouquet_africain", + "PA_bouquet_africain_max", + "PI_WHITELIST" + ], + "hasRightIAccess": true, + "hasRightMAccess": false, + "logos": [ + { + "definitionType": "mobileAppli", + "listLogos": [ + { + "size": "183x183", + "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_rtnc%2F20210506_104734%2FmobileAppli%2Flogo_183x183.png" + } + ] + }, + { + "definitionType": "mobileAppliDark", + "listLogos": [ + { + "size": "183x183", + "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_rtnc%2F20210506_104734%2FmobileAppliDark%2Flogo_183x183.png" + } + ] + }, + { + "definitionType": "webTVLogo", + "listLogos": [ + { + "size": "180x96", + "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_rtnc%2F20210506_104734%2FwebTVLogo%2Flogo_180x96.png" + } + ] + }, + { + "definitionType": "webTVSquare", + "listLogos": [ + { + "size": "150x150", + "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_rtnc%2F20210506_104734%2FwebTVSquare%2Flogo_150x150.png" + } + ] + } + ], + "mobileData": { + "wifiForbidden": false, + "wifiSecuredOnly": false, + "everywhereChannel": true, + "nomadismAllowed": true, + "drmLevels": [ + { + "definition": "SD", + "securedTerminal": [ + "DRM-HW", + "DRM-SW" + ], + "unsecuredTerminal": [ + "DRM-HW", + "DRM-SW" + ] + }, + { + "definition": "HD", + "securedTerminal": [ + "ND" + ], + "unsecuredTerminal": [ + "ND" + ] + } + ] + }, + "webdeviceData": { + "nomadismAllowed": true + }, + "technicalChannels": { + "live": [ + { + "techChannelId": "400368", + "type": "CLOUDTV", + "liveTargetURLRelativePath": "livetv_rtnc_ctv", + "usi": 400368, + "isDRMized": true, + "csa5Disabled": true + } + ], + "npvr": [ + { + "externalId": "livetv_rtnc_ctv", + "techChannelId": "400368", + "type": "CLOUDTV", + "usi": 400368, + "isDRMized": true, + "antiAdskipping": "DEACTIVATED", + "csa5Disabled": true + } + ], + "startover": [] + } + }, + { + "name": "TELE CONGO", + "editoChannelId": "livetv_tele_congo", + "lcn": 596, + "idEPG": 90596, + "epgAvailable": false, + "epgTextSubstitution": "", + "displayOrder": 596, + "csaCode": 1, + "slogan": "Plus jamais sans vous", + "catchupChannelId": "", + "newChannel": true, + "roamingBlocked": false, + "allowedDeviceCategories": [ + "M_ANDROID", + "M_IOS", + "M_TABLET_ANDROID", + "M_TABLET_IOS", + "W_AIRPLAY", + "W_CHROMECAST", + "W_LACLETV2", + "W_SMARTTV", + "W_PC", + "S_STB" + ], + "packages": [ + "PA_bouquet_africain", + "PA_bouquet_africain_max", + "PI_WHITELIST" + ], + "hasRightIAccess": true, + "hasRightMAccess": false, + "logos": [ + { + "definitionType": "mobileAppli", + "listLogos": [ + { + "size": "183x183", + "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_tele_congo%2F20210506_104734%2FmobileAppli%2Flogo_183x183.png" + } + ] + }, + { + "definitionType": "mobileAppliDark", + "listLogos": [ + { + "size": "183x183", + "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_tele_congo%2F20210506_104734%2FmobileAppliDark%2Flogo_183x183.png" + } + ] + }, + { + "definitionType": "webTVLogo", + "listLogos": [ + { + "size": "180x96", + "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_tele_congo%2F20210506_104734%2FwebTVLogo%2Flogo_180x96.png" + } + ] + }, + { + "definitionType": "webTVSquare", + "listLogos": [ + { + "size": "150x150", + "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_tele_congo%2F20210506_104734%2FwebTVSquare%2Flogo_150x150.png" + } + ] + } + ], + "mobileData": { + "wifiForbidden": false, + "wifiSecuredOnly": false, + "everywhereChannel": true, + "nomadismAllowed": true, + "drmLevels": [ + { + "definition": "SD", + "securedTerminal": [ + "DRM-HW", + "DRM-SW" + ], + "unsecuredTerminal": [ + "DRM-HW", + "DRM-SW" + ] + }, + { + "definition": "HD", + "securedTerminal": [ + "ND" + ], + "unsecuredTerminal": [ + "ND" + ] + } + ] + }, + "webdeviceData": { + "nomadismAllowed": true + }, + "technicalChannels": { + "live": [ + { + "techChannelId": "400369", + "type": "CLOUDTV", + "liveTargetURLRelativePath": "livetv_tvcongo_ctv", + "usi": 400369, + "isDRMized": true, + "csa5Disabled": true + } + ], + "npvr": [ + { + "externalId": "livetv_tvcongo_ctv", + "techChannelId": "400369", + "type": "CLOUDTV", + "usi": 400369, + "isDRMized": true, + "antiAdskipping": "DEACTIVATED", + "csa5Disabled": true + } + ], + "startover": [] + } + }, + { + "name": "ORTB", + "editoChannelId": "livetv_ortb", + "lcn": 597, + "idEPG": 90597, + "epgAvailable": false, + "epgTextSubstitution": "", + "displayOrder": 597, + "csaCode": 1, + "slogan": "Votre partenaire des grands événements", + "catchupChannelId": "", + "newChannel": true, + "roamingBlocked": false, + "allowedDeviceCategories": [ + "M_ANDROID", + "M_IOS", + "M_TABLET_ANDROID", + "M_TABLET_IOS", + "W_AIRPLAY", + "W_CHROMECAST", + "W_LACLETV2", + "W_SMARTTV", + "W_PC", + "S_STB" + ], + "packages": [ + "PA_bouquet_africain", + "PA_bouquet_africain_max", + "PI_WHITELIST" + ], + "hasRightIAccess": true, + "hasRightMAccess": false, + "logos": [ + { + "definitionType": "mobileAppli", + "listLogos": [ + { + "size": "183x183", + "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_ortb%2F20210506_104734%2FmobileAppli%2Flogo_183x183.png" + } + ] + }, + { + "definitionType": "mobileAppliDark", + "listLogos": [ + { + "size": "183x183", + "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_ortb%2F20210506_104734%2FmobileAppliDark%2Flogo_183x183.png" + } + ] + }, + { + "definitionType": "webTVLogo", + "listLogos": [ + { + "size": "180x96", + "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_ortb%2F20210506_104734%2FwebTVLogo%2Flogo_180x96.png" + } + ] + }, + { + "definitionType": "webTVSquare", + "listLogos": [ + { + "size": "150x150", + "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_ortb%2F20210506_104734%2FwebTVSquare%2Flogo_150x150.png" + } + ] + } + ], + "mobileData": { + "wifiForbidden": false, + "wifiSecuredOnly": false, + "everywhereChannel": true, + "nomadismAllowed": true, + "drmLevels": [ + { + "definition": "SD", + "securedTerminal": [ + "DRM-HW", + "DRM-SW" + ], + "unsecuredTerminal": [ + "DRM-HW", + "DRM-SW" + ] + }, + { + "definition": "HD", + "securedTerminal": [ + "ND" + ], + "unsecuredTerminal": [ + "ND" + ] + } + ] + }, + "webdeviceData": { + "nomadismAllowed": true + }, + "technicalChannels": { + "live": [ + { + "techChannelId": "400370", + "type": "CLOUDTV", + "liveTargetURLRelativePath": "livetv_ortb_ctv", + "usi": 400370, + "isDRMized": true, + "csa5Disabled": true + } + ], + "npvr": [ + { + "externalId": "livetv_ortb_ctv", + "techChannelId": "400370", + "type": "CLOUDTV", + "usi": 400370, + "isDRMized": true, + "antiAdskipping": "DEACTIVATED", + "csa5Disabled": true + } + ], + "startover": [] + } + }, + { + "name": "A+", + "editoChannelId": "livetv_aplus", + "lcn": 598, + "idEPG": 90598, + "epgAvailable": false, + "epgTextSubstitution": "", + "displayOrder": 598, + "csaCode": 1, + "slogan": "La chaîne des séries africaines", + "catchupChannelId": "", + "newChannel": true, + "roamingBlocked": false, + "allowedDeviceCategories": [ + "M_ANDROID", + "M_IOS", + "M_TABLET_ANDROID", + "M_TABLET_IOS", + "W_AIRPLAY", + "W_CHROMECAST", + "W_LACLETV2", + "W_SMARTTV", + "W_PC", + "S_STB" + ], + "packages": [ + "PA_bouquet_africain", + "PA_bouquet_africain_max", + "PI_WHITELIST" + ], + "hasRightIAccess": true, + "hasRightMAccess": false, + "logos": [ + { + "definitionType": "mobileAppli", + "listLogos": [ + { + "size": "183x183", + "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_aplus%2F20210526_153310%2FmobileAppli%2Flogo_183x183.png" + } + ] + }, + { + "definitionType": "mobileAppliDark", + "listLogos": [ + { + "size": "183x183", + "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_aplus%2F20210526_153310%2FmobileAppliDark%2Flogo_183x183.png" + } + ] + }, + { + "definitionType": "webTVLogo", + "listLogos": [ + { + "size": "180x96", + "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_aplus%2F20210526_153310%2FwebTVLogo%2Flogo_180x96.png" + } + ] + }, + { + "definitionType": "webTVSquare", + "listLogos": [ + { + "size": "150x150", + "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_aplus%2F20210526_153310%2FwebTVSquare%2Flogo_150x150.png" + } + ] + } + ], + "mobileData": { + "wifiForbidden": false, + "wifiSecuredOnly": false, + "everywhereChannel": true, + "nomadismAllowed": true, + "drmLevels": [ + { + "definition": "SD", + "securedTerminal": [ + "DRM-HW", + "DRM-SW" + ], + "unsecuredTerminal": [ + "DRM-HW", + "DRM-SW" + ] + }, + { + "definition": "HD", + "securedTerminal": [ + "ND" + ], + "unsecuredTerminal": [ + "ND" + ] + } + ] + }, + "webdeviceData": { + "nomadismAllowed": true + }, + "technicalChannels": { + "live": [ + { + "techChannelId": "400390", + "type": "CLOUDTV", + "liveTargetURLRelativePath": "livetv_a_plus_ctv", + "usi": 400390, + "isDRMized": true, + "csa5Disabled": true + } + ], + "npvr": [ + { + "externalId": "livetv_a_plus_ctv", + "techChannelId": "400390", + "type": "CLOUDTV", + "usi": 400390, + "isDRMized": true, + "antiAdskipping": "DEACTIVATED", + "csa5Disabled": true + } + ], + "startover": [] + } + }, + { + "name": "NCI", + "editoChannelId": "livetv_nci", + "lcn": 599, + "idEPG": 2913, + "epgAvailable": true, + "epgTextSubstitution": "", + "displayOrder": 599, + "csaCode": 1, + "slogan": "La Nouvelle chaine ivoirienne", + "catchupChannelId": "", + "newChannel": true, + "roamingBlocked": false, + "allowedDeviceCategories": [ + "M_ANDROID", + "M_IOS", + "M_TABLET_ANDROID", + "M_TABLET_IOS", + "W_AIRPLAY", + "W_CHROMECAST", + "W_LACLETV2", + "W_PC", + "W_SMARTTV", + "S_STB" + ], + "packages": [ + "PA_bouquet_africain", + "PA_bouquet_africain_max", + "PI_WHITELIST" + ], + "hasRightIAccess": true, + "hasRightMAccess": false, + "logos": [ + { + "definitionType": "mobileAppli", + "listLogos": [ + { + "size": "183x183", + "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_nci%2F20220128_093134%2FmobileAppli%2Flogo_183x183.png" + } + ] + }, + { + "definitionType": "mobileAppliDark", + "listLogos": [ + { + "size": "183x183", + "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_nci%2F20220128_093134%2FmobileAppliDark%2Flogo_183x183.png" + } + ] + }, + { + "definitionType": "webTVLogo", + "listLogos": [ + { + "size": "180x96", + "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_nci%2F20220128_093134%2FwebTVLogo%2Flogo_180x96.png" + } + ] + }, + { + "definitionType": "webTVSquare", + "listLogos": [ + { + "size": "150x150", + "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_nci%2F20220128_093134%2FwebTVSquare%2Flogo_150x150.png" + } + ] + } + ], + "mobileData": { + "wifiForbidden": false, + "wifiSecuredOnly": false, + "everywhereChannel": true, + "nomadismAllowed": true, + "drmLevels": [ + { + "definition": "SD", + "securedTerminal": [ + "DRM-HW", + "DRM-SW" + ], + "unsecuredTerminal": [ + "DRM-HW", + "DRM-SW" + ] + }, + { + "definition": "HD", + "securedTerminal": [ + "NO-DRM" + ], + "unsecuredTerminal": [ + "NO-DRM" + ] + } + ] + }, + "webdeviceData": { + "nomadismAllowed": true + }, + "technicalChannels": { + "live": [ + { + "techChannelId": "400122", + "type": "CLOUDTV", + "liveTargetURLRelativePath": "livetv_nci_ctv", + "usi": 400122, + "isDRMized": true, + "csa5Disabled": true + } + ], + "npvr": [ + { + "externalId": "livetv_nci_ctv", + "techChannelId": "400122", + "type": "CLOUDTV", + "usi": 400122, + "isDRMized": true, + "antiAdskipping": "DEACTIVATED", + "csa5Disabled": true + } + ], + "startover": [] + } + }, + { + "name": "AFRICABLE", + "editoChannelId": "livetv_africable", + "lcn": 600, + "idEPG": 90600, + "epgAvailable": false, + "epgTextSubstitution": "", + "displayOrder": 600, + "csaCode": 1, + "slogan": "La chaîne du continent", + "catchupChannelId": "", + "newChannel": true, + "roamingBlocked": false, + "allowedDeviceCategories": [ + "M_ANDROID", + "M_IOS", + "M_TABLET_ANDROID", + "M_TABLET_IOS", + "W_AIRPLAY", + "W_CHROMECAST", + "W_LACLETV2", + "W_SMARTTV", + "W_PC", + "S_STB" + ], + "packages": [ + "PA_bouquet_africain_max", + "PI_WHITELIST" + ], + "hasRightIAccess": true, + "hasRightMAccess": false, + "logos": [ + { + "definitionType": "mobileAppli", + "listLogos": [ + { + "size": "183x183", + "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_africable%2F20210506_104734%2FmobileAppli%2Flogo_183x183.png" + } + ] + }, + { + "definitionType": "mobileAppliDark", + "listLogos": [ + { + "size": "183x183", + "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_africable%2F20210506_104734%2FmobileAppliDark%2Flogo_183x183.png" + } + ] + }, + { + "definitionType": "webTVLogo", + "listLogos": [ + { + "size": "180x96", + "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_africable%2F20210506_104734%2FwebTVLogo%2Flogo_180x96.png" + } + ] + }, + { + "definitionType": "webTVSquare", + "listLogos": [ + { + "size": "150x150", + "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_africable%2F20210506_104734%2FwebTVSquare%2Flogo_150x150.png" + } + ] + } + ], + "mobileData": { + "wifiForbidden": false, + "wifiSecuredOnly": false, + "everywhereChannel": true, + "nomadismAllowed": true, + "drmLevels": [ + { + "definition": "SD", + "securedTerminal": [ + "DRM-HW", + "DRM-SW" + ], + "unsecuredTerminal": [ + "DRM-HW", + "DRM-SW" + ] + }, + { + "definition": "HD", + "securedTerminal": [ + "ND" + ], + "unsecuredTerminal": [ + "ND" + ] + } + ] + }, + "webdeviceData": { + "nomadismAllowed": true + }, + "technicalChannels": { + "live": [ + { + "techChannelId": "400372", + "type": "CLOUDTV", + "liveTargetURLRelativePath": "livetv_africable_ctv", + "usi": 400372, + "isDRMized": true, + "csa5Disabled": true + } + ], + "npvr": [ + { + "externalId": "livetv_africable_ctv", + "techChannelId": "400372", + "type": "CLOUDTV", + "usi": 400372, + "isDRMized": true, + "antiAdskipping": "DEACTIVATED", + "csa5Disabled": true + } + ], + "startover": [] + } + }, + { + "name": "CANAL 2 INT.", + "editoChannelId": "livetv_canal_2_int", + "lcn": 601, + "idEPG": 90601, + "epgAvailable": false, + "epgTextSubstitution": "", + "displayOrder": 601, + "csaCode": 1, + "slogan": "Toujours plus près de vous", + "catchupChannelId": "", + "newChannel": true, + "roamingBlocked": false, + "allowedDeviceCategories": [ + "M_ANDROID", + "M_IOS", + "M_TABLET_ANDROID", + "M_TABLET_IOS", + "W_AIRPLAY", + "W_CHROMECAST", + "W_LACLETV2", + "W_SMARTTV", + "W_PC", + "S_STB" + ], + "packages": [ + "PA_bouquet_africain_max", + "PI_WHITELIST" + ], + "hasRightIAccess": true, + "hasRightMAccess": false, + "logos": [ + { + "definitionType": "mobileAppli", + "listLogos": [ + { + "size": "183x183", + "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_canal_2_int%2F20210506_104734%2FmobileAppli%2Flogo_183x183.png" + } + ] + }, + { + "definitionType": "mobileAppliDark", + "listLogos": [ + { + "size": "183x183", + "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_canal_2_int%2F20210506_104734%2FmobileAppliDark%2Flogo_183x183.png" + } + ] + }, + { + "definitionType": "webTVLogo", + "listLogos": [ + { + "size": "180x96", + "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_canal_2_int%2F20210506_104734%2FwebTVLogo%2Flogo_180x96.png" + } + ] + }, + { + "definitionType": "webTVSquare", + "listLogos": [ + { + "size": "150x150", + "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_canal_2_int%2F20210506_104734%2FwebTVSquare%2Flogo_150x150.png" + } + ] + } + ], + "mobileData": { + "wifiForbidden": false, + "wifiSecuredOnly": false, + "everywhereChannel": true, + "nomadismAllowed": true, + "drmLevels": [ + { + "definition": "SD", + "securedTerminal": [ + "DRM-HW", + "DRM-SW" + ], + "unsecuredTerminal": [ + "DRM-HW", + "DRM-SW" + ] + }, + { + "definition": "HD", + "securedTerminal": [ + "ND" + ], + "unsecuredTerminal": [ + "ND" + ] + } + ] + }, + "webdeviceData": { + "nomadismAllowed": true + }, + "technicalChannels": { + "live": [ + { + "techChannelId": "400373", + "type": "CLOUDTV", + "liveTargetURLRelativePath": "livetv_canal2international_ctv", + "usi": 400373, + "isDRMized": true, + "csa5Disabled": true + } + ], + "npvr": [ + { + "externalId": "livetv_canal2international_ctv", + "techChannelId": "400373", + "type": "CLOUDTV", + "usi": 400373, + "isDRMized": true, + "antiAdskipping": "DEACTIVATED", + "csa5Disabled": true + } + ], + "startover": [] + } + }, + { + "name": "TVT", + "editoChannelId": "livetv_tvt", + "lcn": 602, + "idEPG": 90602, + "epgAvailable": false, + "epgTextSubstitution": "", + "displayOrder": 602, + "csaCode": 1, + "slogan": "Télévision Togolaise", + "catchupChannelId": "", + "newChannel": true, + "roamingBlocked": false, + "allowedDeviceCategories": [ + "M_ANDROID", + "M_IOS", + "M_TABLET_ANDROID", + "M_TABLET_IOS", + "W_AIRPLAY", + "W_CHROMECAST", + "W_LACLETV2", + "W_PC", + "W_SMARTTV", + "S_STB" + ], + "packages": [ + "PA_bouquet_africain_max", + "PI_WHITELIST" + ], + "hasRightIAccess": true, + "hasRightMAccess": false, + "logos": [ + { + "definitionType": "mobileAppli", + "listLogos": [ + { + "size": "183x183", + "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_tvt%2F20230713_104030%2FmobileAppli%2Flogo_183x183.png" + } + ] + }, + { + "definitionType": "mobileAppliDark", + "listLogos": [ + { + "size": "183x183", + "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_tvt%2F20230713_104030%2FmobileAppliDark%2Flogo_183x183.png" + } + ] + }, + { + "definitionType": "webTVLogo", + "listLogos": [ + { + "size": "180x96", + "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_tvt%2F20230713_104030%2FwebTVLogo%2Flogo_180x96.png" + } + ] + }, + { + "definitionType": "webTVSquare", + "listLogos": [ + { + "size": "150x150", + "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_tvt%2F20230713_104030%2FwebTVSquare%2Flogo_150x150.png" + } + ] + } + ], + "mobileData": { + "wifiForbidden": false, + "wifiSecuredOnly": false, + "everywhereChannel": true, + "nomadismAllowed": true, + "drmLevels": [ + { + "definition": "SD", + "securedTerminal": [ + "DRM-HW", + "DRM-SW" + ], + "unsecuredTerminal": [ + "DRM-HW", + "DRM-SW" + ] + }, + { + "definition": "HD", + "securedTerminal": [ + "ND" + ], + "unsecuredTerminal": [ + "ND" + ] + } + ] + }, + "webdeviceData": { + "nomadismAllowed": true + }, + "technicalChannels": { + "live": [ + { + "techChannelId": "400374", + "type": "CLOUDTV", + "liveTargetURLRelativePath": "livetv_tvt_ctv", + "usi": 400374, + "isDRMized": true, + "csa5Disabled": true + } + ], + "npvr": [ + { + "externalId": "livetv_tvt_ctv", + "techChannelId": "400374", + "type": "CLOUDTV", + "usi": 400374, + "isDRMized": true, + "antiAdskipping": "DEACTIVATED", + "csa5Disabled": true + } + ], + "startover": [] + } + }, + { + "name": "RTG", + "editoChannelId": "livetv_rtg", + "lcn": 603, + "idEPG": 90603, + "epgAvailable": false, + "epgTextSubstitution": "", + "displayOrder": 603, + "csaCode": 1, + "slogan": "La radio-télévision guinéenne", + "catchupChannelId": "", + "newChannel": true, + "roamingBlocked": false, + "allowedDeviceCategories": [ + "M_ANDROID", + "M_IOS", + "M_TABLET_ANDROID", + "M_TABLET_IOS", + "W_AIRPLAY", + "W_CHROMECAST", + "W_LACLETV2", + "W_SMARTTV", + "W_PC", + "S_STB" + ], + "packages": [ + "PA_bouquet_africain_max", + "PI_WHITELIST" + ], + "hasRightIAccess": true, + "hasRightMAccess": false, + "logos": [ + { + "definitionType": "mobileAppli", + "listLogos": [ + { + "size": "183x183", + "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_rtg%2F20210506_104734%2FmobileAppli%2Flogo_183x183.png" + } + ] + }, + { + "definitionType": "mobileAppliDark", + "listLogos": [ + { + "size": "183x183", + "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_rtg%2F20210506_104734%2FmobileAppliDark%2Flogo_183x183.png" + } + ] + }, + { + "definitionType": "webTVLogo", + "listLogos": [ + { + "size": "180x96", + "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_rtg%2F20210506_104734%2FwebTVLogo%2Flogo_180x96.png" + } + ] + }, + { + "definitionType": "webTVSquare", + "listLogos": [ + { + "size": "150x150", + "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_rtg%2F20210506_104734%2FwebTVSquare%2Flogo_150x150.png" + } + ] + } + ], + "mobileData": { + "wifiForbidden": false, + "wifiSecuredOnly": false, + "everywhereChannel": true, + "nomadismAllowed": true, + "drmLevels": [ + { + "definition": "SD", + "securedTerminal": [ + "DRM-HW", + "DRM-SW" + ], + "unsecuredTerminal": [ + "DRM-HW", + "DRM-SW" + ] + }, + { + "definition": "HD", + "securedTerminal": [ + "ND" + ], + "unsecuredTerminal": [ + "ND" + ] + } + ] + }, + "webdeviceData": { + "nomadismAllowed": true + }, + "technicalChannels": { + "live": [ + { + "techChannelId": "400375", + "type": "CLOUDTV", + "liveTargetURLRelativePath": "livetv_rtg_ctv", + "usi": 400375, + "isDRMized": true, + "csa5Disabled": true + } + ], + "npvr": [ + { + "externalId": "livetv_rtg_ctv", + "techChannelId": "400375", + "type": "CLOUDTV", + "usi": 400375, + "isDRMized": true, + "antiAdskipping": "DEACTIVATED", + "csa5Disabled": true + } + ], + "startover": [] + } + }, + { + "name": "TFM", + "editoChannelId": "livetv_tfm", + "lcn": 604, + "idEPG": 90604, + "epgAvailable": false, + "epgTextSubstitution": "", + "displayOrder": 604, + "csaCode": 1, + "slogan": "Le Miroir du Sénégal", + "catchupChannelId": "", + "newChannel": true, + "roamingBlocked": false, + "allowedDeviceCategories": [ + "M_ANDROID", + "M_IOS", + "M_TABLET_ANDROID", + "M_TABLET_IOS", + "W_AIRPLAY", + "W_CHROMECAST", + "W_LACLETV2", + "W_SMARTTV", + "W_PC", + "S_STB" + ], + "packages": [ + "PA_bouquet_africain_max", + "PI_WHITELIST" + ], + "hasRightIAccess": true, + "hasRightMAccess": false, + "logos": [ + { + "definitionType": "mobileAppli", + "listLogos": [ + { + "size": "183x183", + "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_tfm%2F20210506_104734%2FmobileAppli%2Flogo_183x183.png" + } + ] + }, + { + "definitionType": "mobileAppliDark", + "listLogos": [ + { + "size": "183x183", + "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_tfm%2F20210506_104734%2FmobileAppliDark%2Flogo_183x183.png" + } + ] + }, + { + "definitionType": "webTVLogo", + "listLogos": [ + { + "size": "180x96", + "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_tfm%2F20210506_104734%2FwebTVLogo%2Flogo_180x96.png" + } + ] + }, + { + "definitionType": "webTVSquare", + "listLogos": [ + { + "size": "150x150", + "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_tfm%2F20210506_104734%2FwebTVSquare%2Flogo_150x150.png" + } + ] + } + ], + "mobileData": { + "wifiForbidden": false, + "wifiSecuredOnly": false, + "everywhereChannel": true, + "nomadismAllowed": true, + "drmLevels": [ + { + "definition": "SD", + "securedTerminal": [ + "DRM-HW", + "DRM-SW" + ], + "unsecuredTerminal": [ + "DRM-HW", + "DRM-SW" + ] + }, + { + "definition": "HD", + "securedTerminal": [ + "ND" + ], + "unsecuredTerminal": [ + "ND" + ] + } + ] + }, + "webdeviceData": { + "nomadismAllowed": true + }, + "technicalChannels": { + "live": [ + { + "techChannelId": "400376", + "type": "CLOUDTV", + "liveTargetURLRelativePath": "livetv_tfm_ctv", + "usi": 400376, + "isDRMized": true, + "csa5Disabled": true + } + ], + "npvr": [ + { + "externalId": "livetv_tfm_ctv", + "techChannelId": "400376", + "type": "CLOUDTV", + "usi": 400376, + "isDRMized": true, + "antiAdskipping": "DEACTIVATED", + "csa5Disabled": true + } + ], + "startover": [] + } + }, + { + "name": "TRACE AFRICA", + "editoChannelId": "livetv_trace_africa", + "lcn": 605, + "idEPG": 90605, + "epgAvailable": false, + "epgTextSubstitution": "", + "displayOrder": 605, + "csaCode": 1, + "slogan": "We Love African Music !", + "catchupChannelId": "", + "newChannel": true, + "roamingBlocked": false, + "allowedDeviceCategories": [ + "M_ANDROID", + "M_IOS", + "M_TABLET_ANDROID", + "M_TABLET_IOS", + "W_AIRPLAY", + "W_CHROMECAST", + "W_LACLETV2", + "W_SMARTTV", + "W_PC", + "S_STB" + ], + "packages": [ + "PA_bouquet_africain_max", + "PI_WHITELIST" + ], + "hasRightIAccess": true, + "hasRightMAccess": false, + "logos": [ + { + "definitionType": "mobileAppli", + "listLogos": [ + { + "size": "183x183", + "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_trace_africa%2F20230831_150807%2FmobileAppli%2Flogo_183x183.png" + } + ] + }, + { + "definitionType": "mobileAppliDark", + "listLogos": [ + { + "size": "183x183", + "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_trace_africa%2F20230831_150807%2FmobileAppliDark%2Flogo_183x183.png" + } + ] + }, + { + "definitionType": "webTVLogo", + "listLogos": [ + { + "size": "180x96", + "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_trace_africa%2F20230831_150807%2FwebTVLogo%2Flogo_180x96.png" + } + ] + }, + { + "definitionType": "webTVSquare", + "listLogos": [ + { + "size": "150x150", + "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_trace_africa%2F20230831_150807%2FwebTVSquare%2Flogo_150x150.png" + } + ] + } + ], + "mobileData": { + "wifiForbidden": false, + "wifiSecuredOnly": false, + "everywhereChannel": true, + "nomadismAllowed": true, + "drmLevels": [ + { + "definition": "SD", + "securedTerminal": [ + "DRM-HW", + "DRM-SW" + ], + "unsecuredTerminal": [ + "DRM-HW", + "DRM-SW" + ] + }, + { + "definition": "HD", + "securedTerminal": [ + "ND" + ], + "unsecuredTerminal": [ + "ND" + ] + } + ] + }, + "webdeviceData": { + "nomadismAllowed": true + }, + "technicalChannels": { + "live": [ + { + "techChannelId": "400377", + "type": "CLOUDTV", + "liveTargetURLRelativePath": "livetv_traceafrica_ctv", + "usi": 400377, + "isDRMized": true, + "csa5Disabled": true + } + ], + "npvr": [ + { + "externalId": "livetv_traceafrica_ctv", + "techChannelId": "400377", + "type": "CLOUDTV", + "usi": 400377, + "isDRMized": true, + "antiAdskipping": "DEACTIVATED", + "csa5Disabled": true + } + ], + "startover": [] + } + }, + { + "name": "TRACE GOSPEL", + "editoChannelId": "livetv_trace_gospel", + "lcn": 606, + "idEPG": 90606, + "epgAvailable": false, + "epgTextSubstitution": "", + "displayOrder": 606, + "csaCode": 1, + "slogan": "We Love Gospel Music", + "catchupChannelId": "", + "newChannel": true, + "roamingBlocked": false, + "allowedDeviceCategories": [ + "M_ANDROID", + "M_IOS", + "M_TABLET_ANDROID", + "M_TABLET_IOS", + "W_AIRPLAY", + "W_CHROMECAST", + "W_LACLETV2", + "W_SMARTTV", + "W_PC", + "S_STB" + ], + "packages": [ + "PA_bouquet_africain_max", + "PI_WHITELIST" + ], + "hasRightIAccess": true, + "hasRightMAccess": false, + "logos": [ + { + "definitionType": "mobileAppli", + "listLogos": [ + { + "size": "183x183", + "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_trace_gospel%2F20230831_150807%2FmobileAppli%2Flogo_183x183.png" + } + ] + }, + { + "definitionType": "mobileAppliDark", + "listLogos": [ + { + "size": "183x183", + "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_trace_gospel%2F20230831_150807%2FmobileAppliDark%2Flogo_183x183.png" + } + ] + }, + { + "definitionType": "webTVLogo", + "listLogos": [ + { + "size": "180x96", + "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_trace_gospel%2F20230831_150807%2FwebTVLogo%2Flogo_180x96.png" + } + ] + }, + { + "definitionType": "webTVSquare", + "listLogos": [ + { + "size": "150x150", + "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_trace_gospel%2F20230831_150807%2FwebTVSquare%2Flogo_150x150.png" + } + ] + } + ], + "mobileData": { + "wifiForbidden": false, + "wifiSecuredOnly": false, + "everywhereChannel": true, + "nomadismAllowed": true, + "drmLevels": [ + { + "definition": "SD", + "securedTerminal": [ + "DRM-HW", + "DRM-SW" + ], + "unsecuredTerminal": [ + "DRM-HW", + "DRM-SW" + ] + }, + { + "definition": "HD", + "securedTerminal": [ + "ND" + ], + "unsecuredTerminal": [ + "ND" + ] + } + ] + }, + "webdeviceData": { + "nomadismAllowed": true + }, + "technicalChannels": { + "live": [ + { + "techChannelId": "400378", + "type": "CLOUDTV", + "liveTargetURLRelativePath": "livetv_tracegospel_ctv", + "usi": 400378, + "isDRMized": true, + "csa5Disabled": true + } + ], + "npvr": [ + { + "externalId": "livetv_tracegospel_ctv", + "techChannelId": "400378", + "type": "CLOUDTV", + "usi": 400378, + "isDRMized": true, + "antiAdskipping": "DEACTIVATED", + "csa5Disabled": true + } + ], + "startover": [] + } + }, + { + "name": "NOVELAS TV", + "editoChannelId": "livetv_novelas", + "lcn": 607, + "idEPG": 1832, + "epgAvailable": true, + "epgTextSubstitution": "", + "displayOrder": 607, + "csaCode": 1, + "slogan": "Votre cœur bat plus fort", + "catchupChannelId": "catchuptv_novelastv", + "newChannel": true, + "roamingBlocked": true, + "allowedDeviceCategories": [ + "M_ANDROID", + "M_IOS", + "M_TABLET_ANDROID", + "M_TABLET_IOS", + "W_AIRPLAY", + "W_CHROMECAST", + "W_LACLETV2", + "W_PC", + "W_SMARTTV", + "S_STB" + ], + "packages": [ + "PA_bouquet_divertissement_fibre", + "PA_bouquet_famille_by_canal", + "PA_bouquet_famille_by_canal_nov2018", + "PA_bouquet_africain_max", + "PI_WHITELIST" + ], + "hasRightIAccess": true, + "hasRightMAccess": false, + "logos": [ + { + "definitionType": "mobileAppli", + "listLogos": [ + { + "size": "183x183", + "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_novelas%2F20211001_090736%2FmobileAppli%2Flogo_183x183.png" + } + ] + }, + { + "definitionType": "mobileAppliDark", + "listLogos": [ + { + "size": "183x183", + "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_novelas%2F20211001_090736%2FmobileAppliDark%2Flogo_183x183.png" + } + ] + }, + { + "definitionType": "webTVLogo", + "listLogos": [ + { + "size": "180x96", + "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_novelas%2F20211001_090736%2FwebTVLogo%2Flogo_180x96.png" + } + ] + }, + { + "definitionType": "webTVSquare", + "listLogos": [ + { + "size": "150x150", + "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_novelas%2F20211001_090736%2FwebTVSquare%2Flogo_150x150.png" + } + ] + } + ], + "mobileData": { + "wifiForbidden": false, + "wifiSecuredOnly": false, + "everywhereChannel": true, + "nomadismAllowed": true, + "drmLevels": [ + { + "definition": "SD", + "securedTerminal": [ + "DRM-HW", + "DRM-SW" + ], + "unsecuredTerminal": [ + "DRM-HW", + "DRM-SW" + ] + }, + { + "definition": "HD", + "securedTerminal": [ + "ND" + ], + "unsecuredTerminal": [ + "ND" + ] + } + ] + }, + "webdeviceData": { + "nomadismAllowed": true + }, + "technicalChannels": { + "live": [ + { + "techChannelId": "400104", + "type": "CLOUDTV", + "liveTargetURLRelativePath": "livetv_novelas_tv_ctv", + "usi": 400104, + "isDRMized": true, + "csa5Disabled": true + } + ], + "npvr": [ + { + "externalId": "livetv_novelas_tv_ctv", + "techChannelId": "400104", + "type": "CLOUDTV", + "usi": 400104, + "isDRMized": true, + "antiAdskipping": "DEACTIVATED", + "csa5Disabled": true + } + ], + "startover": [] + } + }, + { + "name": "NOLLYWOOD TV", + "editoChannelId": "livetv_nollywood_tv", + "lcn": 608, + "idEPG": 1461, + "epgAvailable": true, + "epgTextSubstitution": "", + "displayOrder": 608, + "csaCode": 1, + "slogan": "La chaîne de fiction africaine", + "catchupChannelId": "", + "newChannel": true, + "roamingBlocked": false, + "allowedDeviceCategories": [ + "M_ANDROID", + "M_IOS", + "M_TABLET_ANDROID", + "M_TABLET_IOS", + "W_AIRPLAY", + "W_CHROMECAST", + "W_LACLETV2", + "W_SMARTTV", + "W_PC", + "S_STB" + ], + "packages": [ + "PA_bouquet_africain_max", + "PI_WHITELIST" + ], + "hasRightIAccess": true, + "hasRightMAccess": false, + "logos": [ + { + "definitionType": "mobileAppli", + "listLogos": [ + { + "size": "183x183", + "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_nollywood_tv%2F20210506_104734%2FmobileAppli%2Flogo_183x183.png" + } + ] + }, + { + "definitionType": "mobileAppliDark", + "listLogos": [ + { + "size": "183x183", + "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_nollywood_tv%2F20210506_104734%2FmobileAppliDark%2Flogo_183x183.png" + } + ] + }, + { + "definitionType": "webTVLogo", + "listLogos": [ + { + "size": "180x96", + "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_nollywood_tv%2F20210506_104734%2FwebTVLogo%2Flogo_180x96.png" + } + ] + }, + { + "definitionType": "webTVSquare", + "listLogos": [ + { + "size": "150x150", + "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_nollywood_tv%2F20210506_104734%2FwebTVSquare%2Flogo_150x150.png" + } + ] + } + ], + "mobileData": { + "wifiForbidden": false, + "wifiSecuredOnly": false, + "everywhereChannel": true, + "nomadismAllowed": true, + "drmLevels": [ + { + "definition": "SD", + "securedTerminal": [ + "DRM-HW", + "DRM-SW" + ], + "unsecuredTerminal": [ + "DRM-HW", + "DRM-SW" + ] + }, + { + "definition": "HD", + "securedTerminal": [ + "ND" + ], + "unsecuredTerminal": [ + "ND" + ] + } + ] + }, + "webdeviceData": { + "nomadismAllowed": true + }, + "technicalChannels": { + "live": [ + { + "techChannelId": "400379", + "type": "CLOUDTV", + "liveTargetURLRelativePath": "livetv_nollywood_ctv", + "usi": 400379, + "isDRMized": true, + "csa5Disabled": true + } + ], + "npvr": [ + { + "externalId": "livetv_nollywood_ctv", + "techChannelId": "400379", + "type": "CLOUDTV", + "usi": 400379, + "isDRMized": true, + "antiAdskipping": "DEACTIVATED", + "csa5Disabled": true + } + ], + "startover": [] + } + }, + { + "name": "SUNU YEUF", + "editoChannelId": "livetv_sunu_yeuf", + "lcn": 609, + "idEPG": 2908, + "epgAvailable": true, + "epgTextSubstitution": "", + "displayOrder": 609, + "csaCode": 1, + "slogan": "Tele Bi Niou Mom", + "catchupChannelId": "", + "newChannel": true, + "roamingBlocked": false, + "allowedDeviceCategories": [ + "M_ANDROID", + "M_IOS", + "M_TABLET_ANDROID", + "M_TABLET_IOS", + "W_AIRPLAY", + "W_CHROMECAST", + "W_LACLETV2", + "W_PC", + "W_SMARTTV", + "S_STB" + ], + "packages": [ + "PA_bouquet_africain_max", + "PI_WHITELIST" + ], + "hasRightIAccess": true, + "hasRightMAccess": false, + "logos": [ + { + "definitionType": "mobileAppli", + "listLogos": [ + { + "size": "183x183", + "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_sunu_yeuf%2F20210930_141331%2FmobileAppli%2Flogo_183x183.png" + } + ] + }, + { + "definitionType": "mobileAppliDark", + "listLogos": [ + { + "size": "183x183", + "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_sunu_yeuf%2F20210930_141331%2FmobileAppliDark%2Flogo_183x183.png" + } + ] + }, + { + "definitionType": "webTVLogo", + "listLogos": [ + { + "size": "180x96", + "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_sunu_yeuf%2F20210930_141331%2FwebTVLogo%2Flogo_180x96.png" + } + ] + }, + { + "definitionType": "webTVSquare", + "listLogos": [ + { + "size": "150x150", + "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_sunu_yeuf%2F20210930_141331%2FwebTVSquare%2Flogo_150x150.png" + } + ] + } + ], + "mobileData": { + "wifiForbidden": false, + "wifiSecuredOnly": false, + "everywhereChannel": true, + "nomadismAllowed": true, + "drmLevels": [ + { + "definition": "SD", + "securedTerminal": [ + "DRM-HW", + "DRM-SW" + ], + "unsecuredTerminal": [ + "DRM-HW", + "DRM-SW" + ] + }, + { + "definition": "HD", + "securedTerminal": [ + "NO-DRM" + ], + "unsecuredTerminal": [ + "NO-DRM" + ] + } + ] + }, + "webdeviceData": { + "nomadismAllowed": true + }, + "technicalChannels": { + "live": [ + { + "techChannelId": "400405", + "type": "CLOUDTV", + "liveTargetURLRelativePath": "livetv_sunu_yeuf_ctv", + "usi": 400405, + "isDRMized": true, + "csa5Disabled": true + } + ], + "npvr": [ + { + "externalId": "livetv_sunu_yeuf_ctv", + "techChannelId": "400405", + "type": "CLOUDTV", + "usi": 400405, + "isDRMized": true, + "antiAdskipping": "DEACTIVATED", + "csa5Disabled": true + } + ], + "startover": [] + } + }, + { + "name": "SEN TV", + "editoChannelId": "livetv_sen_tv", + "lcn": 610, + "idEPG": 90610, + "epgAvailable": false, + "epgTextSubstitution": "", + "displayOrder": 610, + "csaCode": 1, + "slogan": "La TV urbaine du Sénégal", + "catchupChannelId": "", + "newChannel": true, + "roamingBlocked": false, + "allowedDeviceCategories": [ + "M_ANDROID", + "M_IOS", + "M_TABLET_ANDROID", + "M_TABLET_IOS", + "W_AIRPLAY", + "W_CHROMECAST", + "W_LACLETV2", + "W_SMARTTV", + "W_PC", + "S_STB" + ], + "packages": [ + "PA_bouquet_africain_max", + "PI_WHITELIST" + ], + "hasRightIAccess": true, + "hasRightMAccess": false, + "logos": [ + { + "definitionType": "mobileAppli", + "listLogos": [ + { + "size": "183x183", + "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_sen_tv%2F20210506_104734%2FmobileAppli%2Flogo_183x183.png" + } + ] + }, + { + "definitionType": "mobileAppliDark", + "listLogos": [ + { + "size": "183x183", + "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_sen_tv%2F20210506_104734%2FmobileAppliDark%2Flogo_183x183.png" + } + ] + }, + { + "definitionType": "webTVLogo", + "listLogos": [ + { + "size": "180x96", + "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_sen_tv%2F20210506_104734%2FwebTVLogo%2Flogo_180x96.png" + } + ] + }, + { + "definitionType": "webTVSquare", + "listLogos": [ + { + "size": "150x150", + "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_sen_tv%2F20210506_104734%2FwebTVSquare%2Flogo_150x150.png" + } + ] + } + ], + "mobileData": { + "wifiForbidden": false, + "wifiSecuredOnly": false, + "everywhereChannel": true, + "nomadismAllowed": true, + "drmLevels": [ + { + "definition": "SD", + "securedTerminal": [ + "DRM-HW", + "DRM-SW" + ], + "unsecuredTerminal": [ + "DRM-HW", + "DRM-SW" + ] + }, + { + "definition": "HD", + "securedTerminal": [ + "ND" + ], + "unsecuredTerminal": [ + "ND" + ] + } + ] + }, + "webdeviceData": { + "nomadismAllowed": true + }, + "technicalChannels": { + "live": [ + { + "techChannelId": "400380", + "type": "CLOUDTV", + "liveTargetURLRelativePath": "livetv_sentv_ctv", + "usi": 400380, + "isDRMized": true, + "csa5Disabled": true + } + ], + "npvr": [ + { + "externalId": "livetv_sentv_ctv", + "techChannelId": "400380", + "type": "CLOUDTV", + "usi": 400380, + "isDRMized": true, + "antiAdskipping": "DEACTIVATED", + "csa5Disabled": true + } + ], + "startover": [] + } + }, + { + "name": "TRACE TERANGA", + "editoChannelId": "livetv_trace_afrikora", + "lcn": 614, + "idEPG": 90614, + "epgAvailable": false, + "epgTextSubstitution": "", + "displayOrder": 614, + "csaCode": 1, + "slogan": "We are Teranga Music", + "catchupChannelId": "", + "newChannel": true, + "roamingBlocked": false, + "allowedDeviceCategories": [ + "M_ANDROID", + "M_IOS", + "M_TABLET_ANDROID", + "M_TABLET_IOS", + "W_AIRPLAY", + "W_CHROMECAST", + "W_LACLETV2", + "W_PC", + "W_SMARTTV", + "S_STB" + ], + "packages": [ + "PA_bouquet_africain_max", + "PI_WHITELIST" + ], + "hasRightIAccess": true, + "hasRightMAccess": false, + "logos": [ + { + "definitionType": "mobileAppli", + "listLogos": [ + { + "size": "183x183", + "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_trace_afrikora%2F20221110_095624%2FmobileAppli%2Flogo_183x183.png" + } + ] + }, + { + "definitionType": "mobileAppliDark", + "listLogos": [ + { + "size": "183x183", + "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_trace_afrikora%2F20221110_095624%2FmobileAppliDark%2Flogo_183x183.png" + } + ] + }, + { + "definitionType": "webTVLogo", + "listLogos": [ + { + "size": "180x96", + "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_trace_afrikora%2F20221110_095624%2FwebTVLogo%2Flogo_180x96.png" + } + ] + }, + { + "definitionType": "webTVSquare", + "listLogos": [ + { + "size": "150x150", + "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_trace_afrikora%2F20221110_095624%2FwebTVSquare%2Flogo_150x150.png" + } + ] + } + ], + "mobileData": { + "wifiForbidden": false, + "wifiSecuredOnly": false, + "everywhereChannel": true, + "nomadismAllowed": true, + "drmLevels": [ + { + "definition": "SD", + "securedTerminal": [ + "DRM-HW", + "DRM-SW" + ], + "unsecuredTerminal": [ + "DRM-HW", + "DRM-SW" + ] + }, + { + "definition": "HD", + "securedTerminal": [ + "ND" + ], + "unsecuredTerminal": [ + "ND" + ] + } + ] + }, + "webdeviceData": { + "nomadismAllowed": true + }, + "technicalChannels": { + "live": [ + { + "techChannelId": "400382", + "type": "CLOUDTV", + "liveTargetURLRelativePath": "livetv_traceafrikora_ctv", + "usi": 400382, + "isDRMized": true, + "csa5Disabled": true + } + ], + "npvr": [ + { + "externalId": "livetv_traceafrikora_ctv", + "techChannelId": "400382", + "type": "CLOUDTV", + "usi": 400382, + "isDRMized": true, + "antiAdskipping": "DEACTIVATED", + "csa5Disabled": true + } + ], + "startover": [] + } + }, + { + "name": "TF1 4K", + "editoChannelId": "livetv_TF1_4K", + "lcn": 990, + "idEPG": 2527, + "epgAvailable": true, + "epgTextSubstitution": "", + "displayOrder": 990, + "csaCode": 1, + "slogan": "Vivez le meilleur de TF1 en 4K", + "catchupChannelId": "", + "newChannel": true, + "roamingBlocked": false, + "allowedDeviceCategories": [ + "M_ANDROID", + "M_IOS", + "M_TABLET_ANDROID", + "M_TABLET_IOS", + "W_AIRPLAY", + "W_CHROMECAST", + "W_LACLETV2", + "W_PC", + "W_SMARTTV", + "S_STB" + ], + "packages": [ + "PA_BQ_PASSACCESTVPREMIUM_M", + "PA_BQ_BASIC_M", + "PA_BQ_RE_TVMAX_M", + "PA_BQ_ACCESTVPREMIUM_M", + "PA_BQ_PAYG_M", + "PA_BQ_TVDIGITALE_I", + "PA_BQ_SPORT_M", + "PA_BQ_BASIC_I", + "PA_BQ_BASICQUAD_I", + "PA_BQ_ACCESTV_M", + "PI_WHITELIST" + ], + "hasRightIAccess": true, + "hasRightMAccess": true, + "logos": [ + { + "definitionType": "mobileAppli", + "listLogos": [ + { + "size": "183x183", + "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_TF1_4K%2F20211210_114522%2FmobileAppli%2Flogo_183x183.png" + } + ] + }, + { + "definitionType": "mobileAppliDark", + "listLogos": [ + { + "size": "183x183", + "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_TF1_4K%2F20211210_114522%2FmobileAppliDark%2Flogo_183x183.png" + } + ] + }, + { + "definitionType": "webTVLogo", + "listLogos": [ + { + "size": "180x96", + "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_TF1_4K%2F20211210_114522%2FwebTVLogo%2Flogo_180x96.png" + } + ] + }, + { + "definitionType": "webTVSquare", + "listLogos": [ + { + "size": "150x150", + "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_TF1_4K%2F20211210_114522%2FwebTVSquare%2Flogo_150x150.png" + } + ] + } + ], + "mobileData": { + "wifiForbidden": false, + "wifiSecuredOnly": false, + "everywhereChannel": true, + "nomadismAllowed": true, + "drmLevels": [ + { + "definition": "SD", + "securedTerminal": [ + "DRM-HW", + "DRM-SW" + ], + "unsecuredTerminal": [ + "DRM-HW", + "DRM-SW" + ] + }, + { + "definition": "HD", + "securedTerminal": [ + "DRM-HW", + "DRM-SW" + ], + "unsecuredTerminal": [ + "ND" + ] + } + ] + }, + "webdeviceData": { + "nomadismAllowed": false + }, + "technicalChannels": { + "live": [ + { + "techChannelId": "400417", + "type": "CLOUDTV", + "liveTargetURLRelativePath": "livetv_acces_limite_ctv", + "usi": 400417, + "isDRMized": true, + "csa5Disabled": true + } + ], + "npvr": [], + "startover": [] + } + }, + { + "name": "M6 4K", + "editoChannelId": "livetv_m6_4k", + "lcn": 992, + "idEPG": 3301, + "epgAvailable": true, + "epgTextSubstitution": "", + "displayOrder": 992, + "csaCode": 1, + "slogan": "Le foot de M6 en 4K", + "catchupChannelId": "", + "newChannel": true, + "roamingBlocked": false, + "allowedDeviceCategories": [ + "M_ANDROID", + "M_IOS", + "M_TABLET_ANDROID", + "M_TABLET_IOS", + "W_AIRPLAY", + "W_CHROMECAST", + "W_LACLETV2", + "W_SMARTTV", + "W_PC", + "S_STB" + ], + "packages": [ + "PA_BQ_PASSACCESTVPREMIUM_M", + "PA_BQ_BASIC_M", + "PA_BQ_RE_TVMAX_M", + "PA_BQ_ACCESTVPREMIUM_M", + "PA_BQ_PAYG_M", + "PA_BQ_TVDIGITALE_I", + "PA_BQ_SPORT_M", + "PA_BQ_BASIC_I", + "PA_BQ_BASICQUAD_I", + "PA_BQ_ACCESTV_M", + "PI_WHITELIST" + ], + "hasRightIAccess": true, + "hasRightMAccess": true, + "logos": [ + { + "definitionType": "mobileAppli", + "listLogos": [ + { + "size": "183x183", + "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_m6_4k%2F20211210_114522%2FmobileAppli%2Flogo_183x183.png" + } + ] + }, + { + "definitionType": "mobileAppliDark", + "listLogos": [ + { + "size": "183x183", + "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_m6_4k%2F20211210_114522%2FmobileAppliDark%2Flogo_183x183.png" + } + ] + }, + { + "definitionType": "webTVLogo", + "listLogos": [ + { + "size": "180x96", + "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_m6_4k%2F20211210_114522%2FwebTVLogo%2Flogo_180x96.png" + } + ] + }, + { + "definitionType": "webTVSquare", + "listLogos": [ + { + "size": "150x150", + "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_m6_4k%2F20211210_114522%2FwebTVSquare%2Flogo_150x150.png" + } + ] + } + ], + "mobileData": { + "wifiForbidden": false, + "wifiSecuredOnly": false, + "everywhereChannel": true, + "nomadismAllowed": true, + "drmLevels": [ + { + "definition": "SD", + "securedTerminal": [ + "DRM-HW", + "DRM-SW" + ], + "unsecuredTerminal": [ + "DRM-HW", + "DRM-SW" + ] + }, + { + "definition": "HD", + "securedTerminal": [ + "DRM-HW", + "DRM-SW" + ], + "unsecuredTerminal": [ + "ND" + ] + } + ] + }, + "webdeviceData": { + "nomadismAllowed": false + }, + "technicalChannels": { + "live": [ + { + "techChannelId": "400417", + "type": "CLOUDTV", + "liveTargetURLRelativePath": "livetv_acces_limite_ctv", + "usi": 400417, + "isDRMized": true, + "csa5Disabled": true + } + ], + "npvr": [], + "startover": [] + } + } +] \ No newline at end of file From 7f904530f54dab7db0d7de68382fa5db927ca6b2 Mon Sep 17 00:00:00 2001 From: remzouille Date: Sun, 5 Nov 2023 09:30:05 +0100 Subject: [PATCH 5/9] Meilleure gestion des erreurs --- resources/lib/provider_templates/orange.py | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) diff --git a/resources/lib/provider_templates/orange.py b/resources/lib/provider_templates/orange.py index 5b20880..0f4c56f 100644 --- a/resources/lib/provider_templates/orange.py +++ b/resources/lib/provider_templates/orange.py @@ -74,15 +74,18 @@ def _auth_urlopen(self, url: str, headers: dict = None) -> tuple: if res.code == 200: return res.read(), auth['cookie'], auth['tv_token'] except HTTPError as error: - if error.code in (401, 403): + if error.code == 401: log(f"cookie/token invalide, âge = {int(timestamp - auth['timestamp'])}", LogLevel.INFO) + if error.code == 403: + log(f"cette chaine ne fait pas partie de votre offre.", LogLevel.INFO) + break else: log(f"erreur {error}", LogLevel.INFO) raise _, auth['cookie'], auth['tv_token'] = self._get_auth() - return None + return None, None, None def get_stream_info(self, channel_id: int) -> dict: res, cookie, tv_token = self._auth_urlopen(self.endpoint_stream_info.format(channel_id=channel_id), headers={ @@ -90,6 +93,9 @@ def get_stream_info(self, channel_id: int) -> dict: 'Host': urlparse(self.endpoint_stream_info).netloc }) + if res is None: + return False + stream_info = json.loads(res) drm = get_drm() From c1c2797cb37f024fa65ff2f8a28a5c074925b1ff Mon Sep 17 00:00:00 2001 From: remzouille Date: Sun, 5 Nov 2023 09:32:40 +0100 Subject: [PATCH 6/9] =?UTF-8?q?Pour=20faire=20plaisir=20=C3=A0=20pylint?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- resources/lib/provider_templates/orange.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/resources/lib/provider_templates/orange.py b/resources/lib/provider_templates/orange.py index 0f4c56f..8c5b732 100644 --- a/resources/lib/provider_templates/orange.py +++ b/resources/lib/provider_templates/orange.py @@ -77,7 +77,7 @@ def _auth_urlopen(self, url: str, headers: dict = None) -> tuple: if error.code == 401: log(f"cookie/token invalide, âge = {int(timestamp - auth['timestamp'])}", LogLevel.INFO) if error.code == 403: - log(f"cette chaine ne fait pas partie de votre offre.", LogLevel.INFO) + log("cette chaine ne fait pas partie de votre offre.", LogLevel.INFO) break else: log(f"erreur {error}", LogLevel.INFO) From ceb31998f29342fe59fce77231642dd060b76e51 Mon Sep 17 00:00:00 2001 From: remzouille Date: Sun, 5 Nov 2023 09:38:37 +0100 Subject: [PATCH 7/9] =?UTF-8?q?Probl=C3=A8me=20corrig=C3=A9=20dans=20la=20?= =?UTF-8?q?gestion=20des=20erreurs?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- resources/lib/provider_templates/orange.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/resources/lib/provider_templates/orange.py b/resources/lib/provider_templates/orange.py index 8c5b732..d29fe16 100644 --- a/resources/lib/provider_templates/orange.py +++ b/resources/lib/provider_templates/orange.py @@ -74,11 +74,11 @@ def _auth_urlopen(self, url: str, headers: dict = None) -> tuple: if res.code == 200: return res.read(), auth['cookie'], auth['tv_token'] except HTTPError as error: - if error.code == 401: - log(f"cookie/token invalide, âge = {int(timestamp - auth['timestamp'])}", LogLevel.INFO) if error.code == 403: log("cette chaine ne fait pas partie de votre offre.", LogLevel.INFO) break + if error.code == 401: + log(f"cookie/token invalide, âge = {int(timestamp - auth['timestamp'])}", LogLevel.INFO) else: log(f"erreur {error}", LogLevel.INFO) raise From 49d94eaef7925921024d0b9a3d9c2d9a39a318f0 Mon Sep 17 00:00:00 2001 From: remzouille Date: Thu, 9 Nov 2023 10:17:36 +0100 Subject: [PATCH 8/9] =?UTF-8?q?R=C3=A9cup=C3=A9ration=20des=20cha=C3=AEnes?= =?UTF-8?q?=20dans=20la=20page=20d'accueil?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- channels.json | 39097 ------------------- resources/addon.py | 1 + resources/lib/provider_templates/orange.py | 159 +- 3 files changed, 88 insertions(+), 39169 deletions(-) delete mode 100644 channels.json diff --git a/channels.json b/channels.json deleted file mode 100644 index fdbd28e..0000000 --- a/channels.json +++ /dev/null @@ -1,39097 +0,0 @@ -[ - { - "name": "TF1", - "editoChannelId": "livetv_tf1", - "lcn": 1, - "idEPG": 192, - "epgAvailable": true, - "epgTextSubstitution": "", - "displayOrder": 1, - "csaCode": 1, - "slogan": "Partageons des ondes positives", - "catchupChannelId": "catchuptv_tf1", - "newChannel": false, - "roamingBlocked": true, - "allowedDeviceCategories": [ - "M_ANDROID", - "M_IOS", - "M_TABLET_ANDROID", - "M_TABLET_IOS", - "W_AIRPLAY", - "W_CHROMECAST", - "W_LACLETV2", - "W_SMARTTV", - "W_PC", - "S_STB" - ], - "packages": [ - "PA_BQ_PASSACCESTVPREMIUM_M", - "PA_BQ_BASIC_M", - "PA_BQ_RE_TVMAX_M", - "PA_BQ_ACCESTVPREMIUM_M", - "PA_BQ_PAYG_M", - "PA_BQ_TVDIGITALE_I", - "PA_BQ_SPORT_M", - "PA_BQ_BASIC_I", - "PA_BQ_BASICQUAD_I", - "PA_BQ_ACCESTV_M", - "PI_WHITELIST" - ], - "hasRightIAccess": true, - "hasRightMAccess": true, - "logos": [ - { - "definitionType": "mobileAppli", - "listLogos": [ - { - "size": "183x183", - "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_tf1%2F20180417_164011%2FmobileAppli%2Flogo_183x183.png" - } - ] - }, - { - "definitionType": "mobileAppliDark", - "listLogos": [ - { - "size": "183x183", - "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_tf1%2F20180417_164011%2FmobileAppliDark%2Flogo_183x183.png" - } - ] - }, - { - "definitionType": "webTVLogo", - "listLogos": [ - { - "size": "180x96", - "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_tf1%2F20180417_164011%2FwebTVLogo%2Flogo_180x96.png" - } - ] - }, - { - "definitionType": "webTVSquare", - "listLogos": [ - { - "size": "150x150", - "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_tf1%2F20180417_164011%2FwebTVSquare%2Flogo_150x150.png" - } - ] - } - ], - "mobileData": { - "wifiForbidden": false, - "wifiSecuredOnly": false, - "everywhereChannel": true, - "nomadismAllowed": true, - "drmLevels": [ - { - "definition": "SD", - "securedTerminal": [ - "DRM-HW", - "DRM-SW" - ], - "unsecuredTerminal": [ - "DRM-HW", - "DRM-SW" - ] - }, - { - "definition": "HD", - "securedTerminal": [ - "DRM-HW", - "DRM-SW" - ], - "unsecuredTerminal": [ - "ND" - ] - } - ] - }, - "webdeviceData": { - "nomadismAllowed": true - }, - "technicalChannels": { - "live": [ - { - "techChannelId": "400013", - "type": "CLOUDTV", - "liveTargetURLRelativePath": "livetv_tf1_ctv", - "usi": 400013, - "isDRMized": true, - "csa5Disabled": true - } - ], - "npvr": [ - { - "externalId": "livetv_tf1_ctv", - "techChannelId": "400013", - "type": "CLOUDTV", - "usi": 400013, - "isDRMized": true, - "antiAdskipping": "DEACTIVATED", - "csa5Disabled": true - } - ], - "startover": [ - { - "externalId": "livetv_tf1_ctv", - "techChannelId": "400013", - "type": "CLOUDTV", - "usi": 400013, - "isDRMized": true, - "antiAdskipping": "DEACTIVATED", - "csa5Disabled": true - } - ] - } - }, - { - "name": "FRANCE 2", - "editoChannelId": "livetv_france2", - "lcn": 2, - "idEPG": 4, - "epgAvailable": true, - "epgTextSubstitution": "", - "displayOrder": 2, - "csaCode": 1, - "slogan": "France 2, Plus 2 passion", - "catchupChannelId": "catchuptv_france2", - "newChannel": false, - "roamingBlocked": true, - "allowedDeviceCategories": [ - "M_ANDROID", - "M_IOS", - "M_TABLET_ANDROID", - "M_TABLET_IOS", - "W_AIRPLAY", - "W_CHROMECAST", - "W_LACLETV2", - "W_SMARTTV", - "W_PC", - "S_STB" - ], - "packages": [ - "PA_BQ_PASSACCESTVPREMIUM_M", - "PA_BQ_BASIC_M", - "PA_BQ_RE_TVMAX_M", - "PA_BQ_ACCESTVPREMIUM_M", - "PA_BQ_PAYG_M", - "PA_BQ_MUSIQUE_M", - "PA_BQ_TVDIGITALE_I", - "PA_BQ_SPORT_M", - "PA_BQ_BASIC_I", - "PA_BQ_BASICQUAD_I", - "PA_BQ_ACCESTV_M", - "PI_WHITELIST" - ], - "hasRightIAccess": true, - "hasRightMAccess": true, - "logos": [ - { - "definitionType": "mobileAppli", - "listLogos": [ - { - "size": "183x183", - "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_france2%2F20180417_153001%2FmobileAppli%2Flogo_183x183.png" - } - ] - }, - { - "definitionType": "mobileAppliDark", - "listLogos": [ - { - "size": "183x183", - "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_france2%2F20180417_153001%2FmobileAppliDark%2Flogo_183x183.png" - } - ] - }, - { - "definitionType": "webTVLogo", - "listLogos": [ - { - "size": "180x96", - "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_france2%2F20180417_153001%2FwebTVLogo%2Flogo_180x96.png" - } - ] - }, - { - "definitionType": "webTVSquare", - "listLogos": [ - { - "size": "150x150", - "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_france2%2F20180417_153001%2FwebTVSquare%2Flogo_150x150.png" - } - ] - } - ], - "mobileData": { - "wifiForbidden": false, - "wifiSecuredOnly": false, - "everywhereChannel": true, - "nomadismAllowed": true, - "drmLevels": [ - { - "definition": "SD", - "securedTerminal": [ - "DRM-HW", - "DRM-SW" - ], - "unsecuredTerminal": [ - "DRM-HW", - "DRM-SW" - ] - }, - { - "definition": "HD", - "securedTerminal": [ - "DRM-HW", - "DRM-SW" - ], - "unsecuredTerminal": [ - "ND" - ] - } - ] - }, - "webdeviceData": { - "nomadismAllowed": true - }, - "technicalChannels": { - "live": [ - { - "techChannelId": "400014", - "type": "CLOUDTV", - "liveTargetURLRelativePath": "livetv_france2_ctv", - "usi": 400014, - "isDRMized": true, - "csa5Disabled": true - } - ], - "npvr": [ - { - "externalId": "livetv_france2_ctv", - "techChannelId": "400014", - "type": "CLOUDTV", - "usi": 400014, - "isDRMized": true, - "antiAdskipping": "DEACTIVATED", - "csa5Disabled": true - } - ], - "startover": [ - { - "externalId": "livetv_france2_ctv", - "techChannelId": "400014", - "type": "CLOUDTV", - "usi": 400014, - "isDRMized": true, - "antiAdskipping": "DEACTIVATED", - "csa5Disabled": true - } - ] - } - }, - { - "name": "FRANCE 3", - "editoChannelId": "livetv_france3", - "lcn": 3, - "idEPG": 80, - "epgAvailable": true, - "epgTextSubstitution": "", - "displayOrder": 3, - "csaCode": 1, - "slogan": "Nos régions nous inspirent, nos régions vou", - "catchupChannelId": "catchuptv_france3", - "newChannel": false, - "roamingBlocked": true, - "allowedDeviceCategories": [ - "M_ANDROID", - "M_IOS", - "M_TABLET_ANDROID", - "M_TABLET_IOS", - "W_AIRPLAY", - "W_CHROMECAST", - "W_LACLETV2", - "W_SMARTTV", - "W_PC", - "S_STB" - ], - "packages": [ - "PA_BQ_PASSACCESTVPREMIUM_M", - "PA_BQ_BASIC_M", - "PA_BQ_RE_TVMAX_M", - "PA_BQ_ACCESTVPREMIUM_M", - "PA_BQ_PAYG_M", - "PA_BQ_MUSIQUE_M", - "PA_BQ_TVDIGITALE_I", - "PA_BQ_SPORT_M", - "PA_BQ_BASIC_I", - "PA_BQ_BASICQUAD_I", - "PA_BQ_ACCESTV_M", - "PI_WHITELIST" - ], - "hasRightIAccess": true, - "hasRightMAccess": true, - "logos": [ - { - "definitionType": "mobileAppli", - "listLogos": [ - { - "size": "183x183", - "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_france3%2F20180131_171239%2FmobileAppli%2Flogo_183x183.png" - } - ] - }, - { - "definitionType": "mobileAppliDark", - "listLogos": [ - { - "size": "183x183", - "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_france3%2F20180131_171239%2FmobileAppliDark%2Flogo_183x183.png" - } - ] - }, - { - "definitionType": "webTVLogo", - "listLogos": [ - { - "size": "180x96", - "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_france3%2F20180131_171239%2FwebTVLogo%2Flogo_180x96.png" - } - ] - }, - { - "definitionType": "webTVSquare", - "listLogos": [ - { - "size": "150x150", - "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_france3%2F20180131_171239%2FwebTVSquare%2Flogo_150x150.png" - } - ] - } - ], - "mobileData": { - "wifiForbidden": false, - "wifiSecuredOnly": false, - "everywhereChannel": true, - "nomadismAllowed": true, - "drmLevels": [ - { - "definition": "SD", - "securedTerminal": [ - "DRM-HW", - "DRM-SW" - ], - "unsecuredTerminal": [ - "DRM-HW", - "DRM-SW" - ] - }, - { - "definition": "HD", - "securedTerminal": [ - "DRM-HW", - "DRM-SW" - ], - "unsecuredTerminal": [ - "ND" - ] - } - ] - }, - "webdeviceData": { - "nomadismAllowed": true - }, - "technicalChannels": { - "live": [ - { - "techChannelId": "400015", - "type": "CLOUDTV", - "liveTargetURLRelativePath": "livetv_france3_ctv", - "usi": 400015, - "isDRMized": true, - "csa5Disabled": true - } - ], - "npvr": [ - { - "externalId": "livetv_france3_ctv", - "techChannelId": "400015", - "type": "CLOUDTV", - "usi": 400015, - "isDRMized": true, - "antiAdskipping": "DEACTIVATED", - "csa5Disabled": true - } - ], - "startover": [ - { - "externalId": "livetv_france3_ctv", - "techChannelId": "400015", - "type": "CLOUDTV", - "usi": 400015, - "isDRMized": true, - "antiAdskipping": "DEACTIVATED", - "csa5Disabled": true - } - ] - } - }, - { - "name": "CANAL+", - "editoChannelId": "livetv_canalplus", - "lcn": 4, - "idEPG": 34, - "epgAvailable": true, - "epgTextSubstitution": "", - "displayOrder": 4, - "csaCode": 1, - "slogan": "La chaîne des rendez-vous incontournables", - "catchupChannelId": "catchuptv_canalplus", - "newChannel": false, - "roamingBlocked": true, - "allowedDeviceCategories": [ - "M_ANDROID", - "M_IOS", - "M_TABLET_ANDROID", - "M_TABLET_IOS", - "W_AIRPLAY", - "W_CHROMECAST", - "W_LACLETV2", - "W_PC", - "W_SMARTTV", - "S_STB" - ], - "packages": [ - "PA_BQ_BASIC_I", - "PI_WHITELIST" - ], - "hasRightIAccess": true, - "hasRightMAccess": false, - "logos": [ - { - "definitionType": "mobileAppli", - "listLogos": [ - { - "size": "183x183", - "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_canalplus%2F20230919_140016%2FmobileAppli%2Flogo_183x183.png" - } - ] - }, - { - "definitionType": "mobileAppliDark", - "listLogos": [ - { - "size": "183x183", - "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_canalplus%2F20230919_140016%2FmobileAppliDark%2Flogo_183x183.png" - } - ] - }, - { - "definitionType": "webTVLogo", - "listLogos": [ - { - "size": "180x96", - "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_canalplus%2F20230919_140016%2FwebTVLogo%2Flogo_180x96.png" - } - ] - }, - { - "definitionType": "webTVSquare", - "listLogos": [ - { - "size": "150x150", - "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_canalplus%2F20230919_140016%2FwebTVSquare%2Flogo_150x150.png" - } - ] - } - ], - "mobileData": { - "wifiForbidden": false, - "wifiSecuredOnly": false, - "everywhereChannel": true, - "nomadismAllowed": true, - "drmLevels": [ - { - "definition": "SD", - "securedTerminal": [ - "DRM-HW", - "DRM-SW" - ], - "unsecuredTerminal": [ - "DRM-HW", - "DRM-SW" - ] - }, - { - "definition": "HD", - "securedTerminal": [ - "ND" - ], - "unsecuredTerminal": [ - "ND" - ] - } - ] - }, - "webdeviceData": { - "nomadismAllowed": true - }, - "technicalChannels": { - "live": [ - { - "techChannelId": "400183", - "type": "CLOUDTV", - "liveTargetURLRelativePath": "livetv_canal_plus_ctv", - "usi": 400183, - "isDRMized": true, - "csa5Disabled": true - } - ], - "npvr": [ - { - "externalId": "livetv_canal_plus_ctv", - "techChannelId": "400183", - "type": "CLOUDTV", - "usi": 400183, - "isDRMized": true, - "antiAdskipping": "DEACTIVATED", - "csa5Disabled": true - } - ], - "startover": [] - } - }, - { - "name": "FRANCE 5", - "editoChannelId": "livetv_france5", - "lcn": 5, - "idEPG": 47, - "epgAvailable": true, - "epgTextSubstitution": "", - "displayOrder": 5, - "csaCode": 1, - "slogan": "France 5, d'intérêt public", - "catchupChannelId": "catchuptv_france5", - "newChannel": false, - "roamingBlocked": true, - "allowedDeviceCategories": [ - "M_ANDROID", - "M_IOS", - "M_TABLET_ANDROID", - "M_TABLET_IOS", - "W_AIRPLAY", - "W_CHROMECAST", - "W_LACLETV2", - "W_SMARTTV", - "W_PC", - "S_STB" - ], - "packages": [ - "PA_BQ_PASSACCESTVPREMIUM_M", - "PA_BQ_BASIC_M", - "PA_BQ_RE_TVMAX_M", - "PA_BQ_ACCESTVPREMIUM_M", - "PA_BQ_PAYG_M", - "PA_BQ_MUSIQUE_M", - "PA_BQ_TVDIGITALE_I", - "PA_BQ_SPORT_M", - "PA_BQ_BASIC_I", - "PA_BQ_BASICQUAD_I", - "PA_BQ_ACCESTV_M", - "PI_WHITELIST" - ], - "hasRightIAccess": true, - "hasRightMAccess": true, - "logos": [ - { - "definitionType": "mobileAppli", - "listLogos": [ - { - "size": "183x183", - "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_france5%2F20180131_171239%2FmobileAppli%2Flogo_183x183.png" - } - ] - }, - { - "definitionType": "mobileAppliDark", - "listLogos": [ - { - "size": "183x183", - "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_france5%2F20180131_171239%2FmobileAppliDark%2Flogo_183x183.png" - } - ] - }, - { - "definitionType": "webTVLogo", - "listLogos": [ - { - "size": "180x96", - "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_france5%2F20180131_171239%2FwebTVLogo%2Flogo_180x96.png" - } - ] - }, - { - "definitionType": "webTVSquare", - "listLogos": [ - { - "size": "150x150", - "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_france5%2F20180131_171239%2FwebTVSquare%2Flogo_150x150.png" - } - ] - } - ], - "mobileData": { - "wifiForbidden": false, - "wifiSecuredOnly": false, - "everywhereChannel": true, - "nomadismAllowed": true, - "drmLevels": [ - { - "definition": "SD", - "securedTerminal": [ - "DRM-HW", - "DRM-SW" - ], - "unsecuredTerminal": [ - "DRM-HW", - "DRM-SW" - ] - }, - { - "definition": "HD", - "securedTerminal": [ - "DRM-HW", - "DRM-SW" - ], - "unsecuredTerminal": [ - "ND" - ] - } - ] - }, - "webdeviceData": { - "nomadismAllowed": true - }, - "technicalChannels": { - "live": [ - { - "techChannelId": "400016", - "type": "CLOUDTV", - "liveTargetURLRelativePath": "livetv_france5_ctv", - "usi": 400016, - "isDRMized": true, - "csa5Disabled": true - } - ], - "npvr": [ - { - "externalId": "livetv_france5_ctv", - "techChannelId": "400016", - "type": "CLOUDTV", - "usi": 400016, - "isDRMized": true, - "antiAdskipping": "DEACTIVATED", - "csa5Disabled": true - } - ], - "startover": [ - { - "externalId": "livetv_france5_ctv", - "techChannelId": "400016", - "type": "CLOUDTV", - "usi": 400016, - "isDRMized": true, - "antiAdskipping": "DEACTIVATED", - "csa5Disabled": true - } - ] - } - }, - { - "name": "M6", - "editoChannelId": "livetv_m6_umts", - "lcn": 6, - "idEPG": 118, - "epgAvailable": true, - "epgTextSubstitution": "", - "displayOrder": 6, - "csaCode": 1, - "slogan": "Continuons de grandir ensemble", - "catchupChannelId": "catchuptv_m6_umts", - "newChannel": false, - "roamingBlocked": true, - "allowedDeviceCategories": [ - "M_ANDROID", - "M_IOS", - "M_TABLET_ANDROID", - "M_TABLET_IOS", - "W_AIRPLAY", - "W_CHROMECAST", - "W_LACLETV2", - "W_SMARTTV", - "W_PC", - "S_STB" - ], - "packages": [ - "PA_BQ_PASSACCESTVPREMIUM_M", - "PA_BQ_BASIC_M", - "PA_BQ_RE_TVMAX_M", - "PA_BQ_ACCESTVPREMIUM_M", - "PA_BQ_PAYG_M", - "PA_BQ_TVDIGITALE_I", - "PA_BQ_SPORT_M", - "PA_BQ_BASIC_I", - "PA_BQ_BASICQUAD_I", - "PA_BQ_ACCESTV_M", - "PI_WHITELIST" - ], - "hasRightIAccess": true, - "hasRightMAccess": true, - "logos": [ - { - "definitionType": "mobileAppli", - "listLogos": [ - { - "size": "183x183", - "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_m6_umts%2F20151026_092415%2FmobileAppli%2Flogo_183x183.png" - } - ] - }, - { - "definitionType": "mobileAppliDark", - "listLogos": [ - { - "size": "183x183", - "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_m6_umts%2F20151026_092415%2FmobileAppliDark%2Flogo_183x183.png" - } - ] - }, - { - "definitionType": "webTVLogo", - "listLogos": [ - { - "size": "180x96", - "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_m6_umts%2F20151026_092415%2FwebTVLogo%2Flogo_180x96.png" - } - ] - }, - { - "definitionType": "webTVSquare", - "listLogos": [ - { - "size": "150x150", - "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_m6_umts%2F20151026_092415%2FwebTVSquare%2Flogo_150x150.png" - } - ] - } - ], - "mobileData": { - "wifiForbidden": false, - "wifiSecuredOnly": false, - "everywhereChannel": true, - "nomadismAllowed": true, - "drmLevels": [ - { - "definition": "SD", - "securedTerminal": [ - "DRM-HW", - "DRM-SW" - ], - "unsecuredTerminal": [ - "DRM-HW", - "DRM-SW" - ] - }, - { - "definition": "HD", - "securedTerminal": [ - "DRM-HW", - "DRM-SW" - ], - "unsecuredTerminal": [ - "ND" - ] - } - ] - }, - "webdeviceData": { - "nomadismAllowed": true - }, - "technicalChannels": { - "live": [ - { - "techChannelId": "400017", - "type": "CLOUDTV", - "liveTargetURLRelativePath": "livetv_m6_ctv", - "usi": 400017, - "isDRMized": true, - "csa5Disabled": true - } - ], - "npvr": [ - { - "externalId": "livetv_m6_ctv", - "techChannelId": "400017", - "type": "CLOUDTV", - "usi": 400017, - "isDRMized": true, - "antiAdskipping": "DEACTIVATED", - "csa5Disabled": true - } - ], - "startover": [ - { - "externalId": "livetv_m6_ctv", - "techChannelId": "400017", - "type": "CLOUDTV", - "usi": 400017, - "isDRMized": true, - "antiAdskipping": "DEACTIVATED", - "csa5Disabled": true - } - ] - } - }, - { - "name": "ARTE", - "editoChannelId": "livetv_arte", - "lcn": 7, - "idEPG": 111, - "epgAvailable": true, - "epgTextSubstitution": "", - "displayOrder": 7, - "csaCode": 1, - "slogan": "La télé qui vous allume", - "catchupChannelId": "catchuptv_arte", - "newChannel": false, - "roamingBlocked": true, - "allowedDeviceCategories": [ - "M_ANDROID", - "M_IOS", - "M_TABLET_ANDROID", - "M_TABLET_IOS", - "W_AIRPLAY", - "W_CHROMECAST", - "W_LACLETV2", - "W_SMARTTV", - "W_PC", - "S_STB" - ], - "packages": [ - "PA_BQ_PASSACCESTVPREMIUM_M", - "PA_BQ_BASIC_M", - "PA_BQ_RE_TVMAX_M", - "PA_BQ_ACCESTVPREMIUM_M", - "PA_BQ_PAYG_M", - "PA_BQ_MUSIQUE_M", - "PA_BQ_TVDIGITALE_I", - "PA_BQ_SPORT_M", - "PA_BQ_BASIC_I", - "PA_BQ_BASICQUAD_I", - "PA_BQ_ACCESTV_M", - "PI_WHITELIST" - ], - "hasRightIAccess": true, - "hasRightMAccess": true, - "logos": [ - { - "definitionType": "mobileAppli", - "listLogos": [ - { - "size": "183x183", - "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_arte%2F20151026_092415%2FmobileAppli%2Flogo_183x183.png" - } - ] - }, - { - "definitionType": "mobileAppliDark", - "listLogos": [ - { - "size": "183x183", - "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_arte%2F20151026_092415%2FmobileAppliDark%2Flogo_183x183.png" - } - ] - }, - { - "definitionType": "webTVLogo", - "listLogos": [ - { - "size": "180x96", - "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_arte%2F20151026_092415%2FwebTVLogo%2Flogo_180x96.png" - } - ] - }, - { - "definitionType": "webTVSquare", - "listLogos": [ - { - "size": "150x150", - "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_arte%2F20151026_092415%2FwebTVSquare%2Flogo_150x150.png" - } - ] - } - ], - "mobileData": { - "wifiForbidden": false, - "wifiSecuredOnly": false, - "everywhereChannel": true, - "nomadismAllowed": true, - "drmLevels": [ - { - "definition": "SD", - "securedTerminal": [ - "DRM-HW", - "DRM-SW" - ], - "unsecuredTerminal": [ - "DRM-HW", - "DRM-SW" - ] - }, - { - "definition": "HD", - "securedTerminal": [ - "DRM-HW", - "DRM-SW" - ], - "unsecuredTerminal": [ - "ND" - ] - } - ] - }, - "webdeviceData": { - "nomadismAllowed": true - }, - "technicalChannels": { - "live": [ - { - "techChannelId": "400018", - "type": "CLOUDTV", - "liveTargetURLRelativePath": "livetv_arte_ctv", - "usi": 400018, - "isDRMized": true, - "csa5Disabled": true - } - ], - "npvr": [ - { - "externalId": "livetv_arte_ctv", - "techChannelId": "400018", - "type": "CLOUDTV", - "usi": 400018, - "isDRMized": true, - "antiAdskipping": "DEACTIVATED", - "csa5Disabled": true - } - ], - "startover": [ - { - "externalId": "livetv_arte_ctv", - "techChannelId": "400018", - "type": "CLOUDTV", - "usi": 400018, - "isDRMized": true, - "antiAdskipping": "DEACTIVATED", - "csa5Disabled": true - } - ] - } - }, - { - "name": "C8", - "editoChannelId": "livetv_direct8", - "lcn": 8, - "idEPG": 445, - "epgAvailable": true, - "epgTextSubstitution": "", - "displayOrder": 8, - "csaCode": 1, - "slogan": ".", - "catchupChannelId": "catchuptv_c8", - "newChannel": false, - "roamingBlocked": true, - "allowedDeviceCategories": [ - "M_ANDROID", - "M_IOS", - "M_TABLET_ANDROID", - "M_TABLET_IOS", - "W_AIRPLAY", - "W_CHROMECAST", - "W_LACLETV2", - "W_SMARTTV", - "W_PC", - "S_STB" - ], - "packages": [ - "PA_BQ_PASSACCESTVPREMIUM_M", - "PA_BQ_BASIC_M", - "PA_BQ_RE_TVMAX_M", - "PA_BQ_ACCESTVPREMIUM_M", - "PA_BQ_PAYG_M", - "PA_BQ_TVDIGITALE_I", - "PA_BQ_SPORT_M", - "PA_BQ_BASIC_I", - "PA_BQ_BASICQUAD_I", - "PA_BQ_ACCESTV_M", - "PI_WHITELIST" - ], - "hasRightIAccess": true, - "hasRightMAccess": true, - "logos": [ - { - "definitionType": "mobileAppli", - "listLogos": [ - { - "size": "183x183", - "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_direct8%2F20180417_143126%2FmobileAppli%2Flogo_183x183.png" - } - ] - }, - { - "definitionType": "mobileAppliDark", - "listLogos": [ - { - "size": "183x183", - "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_direct8%2F20180417_143126%2FmobileAppliDark%2Flogo_183x183.png" - } - ] - }, - { - "definitionType": "webTVLogo", - "listLogos": [ - { - "size": "180x96", - "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_direct8%2F20180417_143126%2FwebTVLogo%2Flogo_180x96.png" - } - ] - }, - { - "definitionType": "webTVSquare", - "listLogos": [ - { - "size": "150x150", - "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_direct8%2F20180417_143126%2FwebTVSquare%2Flogo_150x150.png" - } - ] - } - ], - "mobileData": { - "wifiForbidden": false, - "wifiSecuredOnly": false, - "everywhereChannel": true, - "nomadismAllowed": true, - "drmLevels": [ - { - "definition": "SD", - "securedTerminal": [ - "DRM-HW", - "DRM-SW" - ], - "unsecuredTerminal": [ - "DRM-HW", - "DRM-SW" - ] - }, - { - "definition": "HD", - "securedTerminal": [ - "DRM-HW", - "DRM-SW" - ], - "unsecuredTerminal": [ - "ND" - ] - } - ] - }, - "webdeviceData": { - "nomadismAllowed": true - }, - "technicalChannels": { - "live": [ - { - "techChannelId": "400019", - "type": "CLOUDTV", - "liveTargetURLRelativePath": "livetv_c8_ctv", - "usi": 400019, - "isDRMized": true, - "csa5Disabled": true - } - ], - "npvr": [ - { - "externalId": "livetv_c8_ctv", - "techChannelId": "400019", - "type": "CLOUDTV", - "usi": 400019, - "isDRMized": true, - "antiAdskipping": "DEACTIVATED", - "csa5Disabled": true - } - ], - "startover": [ - { - "externalId": "livetv_c8_ctv", - "techChannelId": "400019", - "type": "CLOUDTV", - "usi": 400019, - "isDRMized": true, - "antiAdskipping": "DEACTIVATED", - "csa5Disabled": true - } - ] - } - }, - { - "name": "W9", - "editoChannelId": "livetv_w9", - "lcn": 9, - "idEPG": 119, - "epgAvailable": true, - "epgTextSubstitution": "", - "displayOrder": 9, - "csaCode": 1, - "slogan": ".", - "catchupChannelId": "catchuptv_w9", - "newChannel": false, - "roamingBlocked": true, - "allowedDeviceCategories": [ - "M_ANDROID", - "M_IOS", - "M_TABLET_ANDROID", - "M_TABLET_IOS", - "W_AIRPLAY", - "W_CHROMECAST", - "W_LACLETV2", - "W_SMARTTV", - "W_PC", - "S_STB" - ], - "packages": [ - "PA_BQ_PASSACCESTVPREMIUM_M", - "PA_BQ_BASIC_M", - "PA_BQ_RE_TVMAX_M", - "PA_BQ_ACCESTVPREMIUM_M", - "PA_BQ_PAYG_M", - "PA_BQ_TVDIGITALE_I", - "PA_BQ_SPORT_M", - "PA_BQ_BASIC_I", - "PA_BQ_BASICQUAD_I", - "PA_BQ_ACCESTV_M", - "PI_WHITELIST" - ], - "hasRightIAccess": true, - "hasRightMAccess": true, - "logos": [ - { - "definitionType": "mobileAppli", - "listLogos": [ - { - "size": "183x183", - "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_w9%2F20151026_092415%2FmobileAppli%2Flogo_183x183.png" - } - ] - }, - { - "definitionType": "mobileAppliDark", - "listLogos": [ - { - "size": "183x183", - "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_w9%2F20151026_092415%2FmobileAppliDark%2Flogo_183x183.png" - } - ] - }, - { - "definitionType": "webTVLogo", - "listLogos": [ - { - "size": "180x96", - "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_w9%2F20151026_092415%2FwebTVLogo%2Flogo_180x96.png" - } - ] - }, - { - "definitionType": "webTVSquare", - "listLogos": [ - { - "size": "150x150", - "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_w9%2F20151026_092415%2FwebTVSquare%2Flogo_150x150.png" - } - ] - } - ], - "mobileData": { - "wifiForbidden": false, - "wifiSecuredOnly": false, - "everywhereChannel": true, - "nomadismAllowed": true, - "drmLevels": [ - { - "definition": "SD", - "securedTerminal": [ - "DRM-HW", - "DRM-SW" - ], - "unsecuredTerminal": [ - "DRM-HW", - "DRM-SW" - ] - }, - { - "definition": "HD", - "securedTerminal": [ - "DRM-HW", - "DRM-SW" - ], - "unsecuredTerminal": [ - "ND" - ] - } - ] - }, - "webdeviceData": { - "nomadismAllowed": true - }, - "technicalChannels": { - "live": [ - { - "techChannelId": "400020", - "type": "CLOUDTV", - "liveTargetURLRelativePath": "livetv_w9_ctv", - "usi": 400020, - "isDRMized": true, - "csa5Disabled": true - } - ], - "npvr": [ - { - "externalId": "livetv_w9_ctv", - "techChannelId": "400020", - "type": "CLOUDTV", - "usi": 400020, - "isDRMized": true, - "antiAdskipping": "DEACTIVATED", - "csa5Disabled": true - } - ], - "startover": [ - { - "externalId": "livetv_w9_ctv", - "techChannelId": "400020", - "type": "CLOUDTV", - "usi": 400020, - "isDRMized": true, - "antiAdskipping": "DEACTIVATED", - "csa5Disabled": true - } - ] - } - }, - { - "name": "TMC", - "editoChannelId": "livetv_tmc", - "lcn": 10, - "idEPG": 195, - "epgAvailable": true, - "epgTextSubstitution": "", - "displayOrder": 10, - "csaCode": 1, - "slogan": "Toujours plus proche de vous", - "catchupChannelId": "catchuptv_tmc", - "newChannel": false, - "roamingBlocked": true, - "allowedDeviceCategories": [ - "M_ANDROID", - "M_IOS", - "M_TABLET_ANDROID", - "M_TABLET_IOS", - "W_AIRPLAY", - "W_CHROMECAST", - "W_LACLETV2", - "W_SMARTTV", - "W_PC", - "S_STB" - ], - "packages": [ - "PA_BQ_PASSACCESTVPREMIUM_M", - "PA_BQ_BASIC_M", - "PA_BQ_RE_TVMAX_M", - "PA_BQ_ACCESTVPREMIUM_M", - "PA_BQ_PAYG_M", - "PA_BQ_TVDIGITALE_I", - "PA_BQ_SPORT_M", - "PA_BQ_BASIC_I", - "PA_BQ_BASICQUAD_I", - "PA_BQ_ACCESTV_M", - "PI_WHITELIST" - ], - "hasRightIAccess": true, - "hasRightMAccess": true, - "logos": [ - { - "definitionType": "mobileAppli", - "listLogos": [ - { - "size": "183x183", - "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_tmc%2F20180417_113022%2FmobileAppli%2Flogo_183x183.png" - } - ] - }, - { - "definitionType": "mobileAppliDark", - "listLogos": [ - { - "size": "183x183", - "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_tmc%2F20180417_113022%2FmobileAppliDark%2Flogo_183x183.png" - } - ] - }, - { - "definitionType": "webTVLogo", - "listLogos": [ - { - "size": "180x96", - "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_tmc%2F20180417_113022%2FwebTVLogo%2Flogo_180x96.png" - } - ] - }, - { - "definitionType": "webTVSquare", - "listLogos": [ - { - "size": "150x150", - "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_tmc%2F20180417_113022%2FwebTVSquare%2Flogo_150x150.png" - } - ] - } - ], - "mobileData": { - "wifiForbidden": false, - "wifiSecuredOnly": false, - "everywhereChannel": true, - "nomadismAllowed": true, - "drmLevels": [ - { - "definition": "SD", - "securedTerminal": [ - "DRM-HW", - "DRM-SW" - ], - "unsecuredTerminal": [ - "DRM-HW", - "DRM-SW" - ] - }, - { - "definition": "HD", - "securedTerminal": [ - "DRM-HW", - "DRM-SW" - ], - "unsecuredTerminal": [ - "ND" - ] - } - ] - }, - "webdeviceData": { - "nomadismAllowed": true - }, - "technicalChannels": { - "live": [ - { - "techChannelId": "400021", - "type": "CLOUDTV", - "liveTargetURLRelativePath": "livetv_tmc_ctv", - "usi": 400021, - "isDRMized": true, - "csa5Disabled": true - } - ], - "npvr": [ - { - "externalId": "livetv_tmc_ctv", - "techChannelId": "400021", - "type": "CLOUDTV", - "usi": 400021, - "isDRMized": true, - "antiAdskipping": "DEACTIVATED", - "csa5Disabled": true - } - ], - "startover": [ - { - "externalId": "livetv_tmc_ctv", - "techChannelId": "400021", - "type": "CLOUDTV", - "usi": 400021, - "isDRMized": true, - "antiAdskipping": "DEACTIVATED", - "csa5Disabled": true - } - ] - } - }, - { - "name": "TFX", - "editoChannelId": "livetv_nt1_umts", - "lcn": 11, - "idEPG": 446, - "epgAvailable": true, - "epgTextSubstitution": "", - "displayOrder": 11, - "csaCode": 1, - "slogan": "Chaîne addictive", - "catchupChannelId": "catchuptv_nt1", - "newChannel": false, - "roamingBlocked": true, - "allowedDeviceCategories": [ - "M_ANDROID", - "M_IOS", - "M_TABLET_ANDROID", - "M_TABLET_IOS", - "W_AIRPLAY", - "W_CHROMECAST", - "W_LACLETV2", - "W_SMARTTV", - "W_PC", - "S_STB" - ], - "packages": [ - "PA_BQ_PASSACCESTVPREMIUM_M", - "PA_BQ_BASIC_M", - "PA_BQ_RE_TVMAX_M", - "PA_BQ_ACCESTVPREMIUM_M", - "PA_BQ_PAYG_M", - "PA_BQ_TVDIGITALE_I", - "PA_BQ_SPORT_M", - "PA_BQ_BASIC_I", - "PA_BQ_BASICQUAD_I", - "PA_BQ_ACCESTV_M", - "PI_WHITELIST" - ], - "hasRightIAccess": true, - "hasRightMAccess": true, - "logos": [ - { - "definitionType": "mobileAppli", - "listLogos": [ - { - "size": "183x183", - "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_nt1_umts%2F20180129_113538%2FmobileAppli%2Flogo_183x183.png" - } - ] - }, - { - "definitionType": "mobileAppliDark", - "listLogos": [ - { - "size": "183x183", - "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_nt1_umts%2F20180129_113538%2FmobileAppliDark%2Flogo_183x183.png" - } - ] - }, - { - "definitionType": "webTVLogo", - "listLogos": [ - { - "size": "180x96", - "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_nt1_umts%2F20180129_113538%2FwebTVLogo%2Flogo_180x96.png" - } - ] - }, - { - "definitionType": "webTVSquare", - "listLogos": [ - { - "size": "150x150", - "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_nt1_umts%2F20180129_113538%2FwebTVSquare%2Flogo_150x150.png" - } - ] - } - ], - "mobileData": { - "wifiForbidden": false, - "wifiSecuredOnly": false, - "everywhereChannel": true, - "nomadismAllowed": true, - "drmLevels": [ - { - "definition": "SD", - "securedTerminal": [ - "DRM-HW", - "DRM-SW" - ], - "unsecuredTerminal": [ - "DRM-HW", - "DRM-SW" - ] - }, - { - "definition": "HD", - "securedTerminal": [ - "DRM-HW", - "DRM-SW" - ], - "unsecuredTerminal": [ - "ND" - ] - } - ] - }, - "webdeviceData": { - "nomadismAllowed": true - }, - "technicalChannels": { - "live": [ - { - "techChannelId": "400030", - "type": "CLOUDTV", - "liveTargetURLRelativePath": "livetv_tfx_ctv", - "usi": 400030, - "isDRMized": true, - "csa5Disabled": true - } - ], - "npvr": [ - { - "externalId": "livetv_tfx_ctv", - "techChannelId": "400030", - "type": "CLOUDTV", - "usi": 400030, - "isDRMized": true, - "antiAdskipping": "DEACTIVATED", - "csa5Disabled": true - } - ], - "startover": [ - { - "externalId": "livetv_tfx_ctv", - "techChannelId": "400030", - "type": "CLOUDTV", - "usi": 400030, - "isDRMized": true, - "antiAdskipping": "DEACTIVATED", - "csa5Disabled": true - } - ] - } - }, - { - "name": "NRJ12", - "editoChannelId": "livetv_nrj12", - "lcn": 12, - "idEPG": 444, - "epgAvailable": true, - "epgTextSubstitution": "", - "displayOrder": 12, - "csaCode": 1, - "slogan": "Tout l'esprit NRJ dans une télé", - "catchupChannelId": "catchuptv_nrj12", - "newChannel": false, - "roamingBlocked": true, - "allowedDeviceCategories": [ - "M_ANDROID", - "M_IOS", - "M_TABLET_ANDROID", - "M_TABLET_IOS", - "W_AIRPLAY", - "W_CHROMECAST", - "W_LACLETV2", - "W_SMARTTV", - "W_PC", - "S_STB" - ], - "packages": [ - "PA_BQ_PASSACCESTVPREMIUM_M", - "PA_BQ_BASIC_M", - "PA_BQ_RE_TVMAX_M", - "PA_BQ_ACCESTVPREMIUM_M", - "PA_BQ_TVDIGITALE_I", - "PA_BQ_SPORT_M", - "PA_BQ_BASIC_I", - "PA_BQ_BASICQUAD_I", - "PA_BQ_ACCESTV_M", - "PI_WHITELIST" - ], - "hasRightIAccess": true, - "hasRightMAccess": true, - "logos": [ - { - "definitionType": "mobileAppli", - "listLogos": [ - { - "size": "183x183", - "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_nrj12%2F20151026_092415%2FmobileAppli%2Flogo_183x183.png" - } - ] - }, - { - "definitionType": "mobileAppliDark", - "listLogos": [ - { - "size": "183x183", - "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_nrj12%2F20151026_092415%2FmobileAppliDark%2Flogo_183x183.png" - } - ] - }, - { - "definitionType": "webTVLogo", - "listLogos": [ - { - "size": "180x96", - "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_nrj12%2F20151026_092415%2FwebTVLogo%2Flogo_180x96.png" - } - ] - }, - { - "definitionType": "webTVSquare", - "listLogos": [ - { - "size": "150x150", - "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_nrj12%2F20151026_092415%2FwebTVSquare%2Flogo_150x150.png" - } - ] - } - ], - "mobileData": { - "wifiForbidden": false, - "wifiSecuredOnly": false, - "everywhereChannel": true, - "nomadismAllowed": true, - "drmLevels": [ - { - "definition": "SD", - "securedTerminal": [ - "DRM-HW", - "DRM-SW" - ], - "unsecuredTerminal": [ - "DRM-HW", - "DRM-SW" - ] - }, - { - "definition": "HD", - "securedTerminal": [ - "DRM-HW", - "DRM-SW" - ], - "unsecuredTerminal": [ - "ND" - ] - } - ] - }, - "webdeviceData": { - "nomadismAllowed": true - }, - "technicalChannels": { - "live": [ - { - "techChannelId": "400031", - "type": "CLOUDTV", - "liveTargetURLRelativePath": "livetv_nrj12_ctv", - "usi": 400031, - "isDRMized": true, - "csa5Disabled": true - } - ], - "npvr": [ - { - "externalId": "livetv_nrj12_ctv", - "techChannelId": "400031", - "type": "CLOUDTV", - "usi": 400031, - "isDRMized": true, - "antiAdskipping": "DEACTIVATED", - "csa5Disabled": true - } - ], - "startover": [ - { - "externalId": "livetv_nrj12_ctv", - "techChannelId": "400031", - "type": "CLOUDTV", - "usi": 400031, - "isDRMized": true, - "antiAdskipping": "DEACTIVATED", - "csa5Disabled": true - } - ] - } - }, - { - "name": "LCP/PS", - "editoChannelId": "livetv_lcp_umts", - "lcn": 13, - "idEPG": 234, - "epgAvailable": true, - "epgTextSubstitution": "", - "displayOrder": 13, - "csaCode": 1, - "slogan": "La chaîne parlementaire", - "catchupChannelId": "catchuptv_lcp_ps", - "newChannel": false, - "roamingBlocked": true, - "allowedDeviceCategories": [ - "M_ANDROID", - "M_IOS", - "M_TABLET_ANDROID", - "M_TABLET_IOS", - "W_AIRPLAY", - "W_CHROMECAST", - "W_LACLETV2", - "W_SMARTTV", - "W_PC", - "S_STB" - ], - "packages": [ - "PA_BQ_PASSACCESTVPREMIUM_M", - "PA_BQ_BASIC_M", - "PA_BQ_RE_TVMAX_M", - "PA_BQ_ACCESTVPREMIUM_M", - "PA_BQ_PAYG_M", - "PA_BQ_MUSIQUE_M", - "PA_BQ_TVDIGITALE_I", - "PA_BQ_SPORT_M", - "PA_BQ_BASIC_I", - "PA_BQ_BASICQUAD_I", - "PA_BQ_ACCESTV_M", - "PI_WHITELIST" - ], - "hasRightIAccess": true, - "hasRightMAccess": true, - "logos": [ - { - "definitionType": "mobileAppli", - "listLogos": [ - { - "size": "183x183", - "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_lcp_umts%2F20191106_163032%2FmobileAppli%2Flogo_183x183.png" - } - ] - }, - { - "definitionType": "mobileAppliDark", - "listLogos": [ - { - "size": "183x183", - "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_lcp_umts%2F20191106_163032%2FmobileAppliDark%2Flogo_183x183.png" - } - ] - }, - { - "definitionType": "webTVLogo", - "listLogos": [ - { - "size": "180x96", - "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_lcp_umts%2F20191106_163032%2FwebTVLogo%2Flogo_180x96.png" - } - ] - }, - { - "definitionType": "webTVSquare", - "listLogos": [ - { - "size": "150x150", - "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_lcp_umts%2F20191106_163032%2FwebTVSquare%2Flogo_150x150.png" - } - ] - } - ], - "mobileData": { - "wifiForbidden": false, - "wifiSecuredOnly": false, - "everywhereChannel": true, - "nomadismAllowed": true, - "drmLevels": [ - { - "definition": "SD", - "securedTerminal": [ - "DRM-HW", - "DRM-SW" - ], - "unsecuredTerminal": [ - "DRM-HW", - "DRM-SW" - ] - }, - { - "definition": "HD", - "securedTerminal": [ - "DRM-HW", - "DRM-SW" - ], - "unsecuredTerminal": [ - "ND" - ] - } - ] - }, - "webdeviceData": { - "nomadismAllowed": true - }, - "technicalChannels": { - "live": [ - { - "techChannelId": "400071", - "type": "CLOUDTV", - "liveTargetURLRelativePath": "livetv_lcp_ps_ctv", - "usi": 400071, - "isDRMized": true, - "csa5Disabled": true - } - ], - "npvr": [ - { - "externalId": "livetv_lcp_ps_ctv", - "techChannelId": "400071", - "type": "CLOUDTV", - "usi": 400071, - "isDRMized": true, - "antiAdskipping": "DEACTIVATED", - "csa5Disabled": true - } - ], - "startover": [ - { - "externalId": "livetv_lcp_ps_ctv", - "techChannelId": "400071", - "type": "CLOUDTV", - "usi": 400071, - "isDRMized": true, - "antiAdskipping": "DEACTIVATED", - "csa5Disabled": true - } - ] - } - }, - { - "name": "FRANCE 4", - "editoChannelId": "livetv_france4", - "lcn": 14, - "idEPG": 78, - "epgAvailable": true, - "epgTextSubstitution": "", - "displayOrder": 14, - "csaCode": 1, - "slogan": "L'esprit positif", - "catchupChannelId": "catchuptv_france4", - "newChannel": false, - "roamingBlocked": true, - "allowedDeviceCategories": [ - "M_ANDROID", - "M_IOS", - "M_TABLET_ANDROID", - "M_TABLET_IOS", - "W_AIRPLAY", - "W_CHROMECAST", - "W_LACLETV2", - "W_SMARTTV", - "W_PC", - "S_STB" - ], - "packages": [ - "PA_BQ_PASSACCESTVPREMIUM_M", - "PA_BQ_BASIC_M", - "PA_BQ_RE_TVMAX_M", - "PA_BQ_ACCESTVPREMIUM_M", - "PA_BQ_PAYG_M", - "PA_BQ_MUSIQUE_M", - "PA_BQ_TVDIGITALE_I", - "PA_BQ_SPORT_M", - "PA_BQ_BASIC_I", - "PA_BQ_BASICQUAD_I", - "PA_BQ_ACCESTV_M", - "PI_WHITELIST" - ], - "hasRightIAccess": true, - "hasRightMAccess": true, - "logos": [ - { - "definitionType": "mobileAppli", - "listLogos": [ - { - "size": "183x183", - "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_france4%2F20180131_171239%2FmobileAppli%2Flogo_183x183.png" - } - ] - }, - { - "definitionType": "mobileAppliDark", - "listLogos": [ - { - "size": "183x183", - "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_france4%2F20180131_171239%2FmobileAppliDark%2Flogo_183x183.png" - } - ] - }, - { - "definitionType": "webTVLogo", - "listLogos": [ - { - "size": "180x96", - "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_france4%2F20180131_171239%2FwebTVLogo%2Flogo_180x96.png" - } - ] - }, - { - "definitionType": "webTVSquare", - "listLogos": [ - { - "size": "150x150", - "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_france4%2F20180131_171239%2FwebTVSquare%2Flogo_150x150.png" - } - ] - } - ], - "mobileData": { - "wifiForbidden": false, - "wifiSecuredOnly": false, - "everywhereChannel": true, - "nomadismAllowed": true, - "drmLevels": [ - { - "definition": "SD", - "securedTerminal": [ - "DRM-HW", - "DRM-SW" - ], - "unsecuredTerminal": [ - "DRM-HW", - "DRM-SW" - ] - }, - { - "definition": "HD", - "securedTerminal": [ - "DRM-HW", - "DRM-SW" - ], - "unsecuredTerminal": [ - "ND" - ] - } - ] - }, - "webdeviceData": { - "nomadismAllowed": true - }, - "technicalChannels": { - "live": [ - { - "techChannelId": "400032", - "type": "CLOUDTV", - "liveTargetURLRelativePath": "livetv_france_4_ctv", - "usi": 400032, - "isDRMized": true, - "csa5Disabled": true - } - ], - "npvr": [ - { - "externalId": "livetv_france_4_ctv", - "techChannelId": "400032", - "type": "CLOUDTV", - "usi": 400032, - "isDRMized": true, - "antiAdskipping": "DEACTIVATED", - "csa5Disabled": true - } - ], - "startover": [ - { - "externalId": "livetv_france_4_ctv", - "techChannelId": "400032", - "type": "CLOUDTV", - "usi": 400032, - "isDRMized": true, - "antiAdskipping": "DEACTIVATED", - "csa5Disabled": true - } - ] - } - }, - { - "name": "BFM TV", - "editoChannelId": "livetv_bfmtv", - "lcn": 15, - "idEPG": 481, - "epgAvailable": true, - "epgTextSubstitution": "", - "displayOrder": 15, - "csaCode": 1, - "slogan": "Première chaîne d'info de France", - "catchupChannelId": "catchuptv_bfmtv", - "newChannel": false, - "roamingBlocked": true, - "allowedDeviceCategories": [ - "M_ANDROID", - "M_IOS", - "M_TABLET_ANDROID", - "M_TABLET_IOS", - "W_AIRPLAY", - "W_CHROMECAST", - "W_LACLETV2", - "W_SMARTTV", - "W_PC", - "S_STB" - ], - "packages": [ - "PA_BQ_PASSACCESTVPREMIUM_M", - "PA_BQ_BASIC_M", - "PA_BQ_RE_TVMAX_M", - "PA_BQ_ACCESTVPREMIUM_M", - "PA_BQ_PAYG_M", - "PA_BQ_TVDIGITALE_I", - "PA_BQ_SPORT_M", - "PA_BQ_BASIC_I", - "PA_BQ_BASICQUAD_I", - "PA_BQ_ACCESTV_M", - "PI_WHITELIST" - ], - "hasRightIAccess": true, - "hasRightMAccess": true, - "logos": [ - { - "definitionType": "mobileAppli", - "listLogos": [ - { - "size": "183x183", - "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_bfmtv%2F20180417_144733%2FmobileAppli%2Flogo_183x183.png" - } - ] - }, - { - "definitionType": "mobileAppliDark", - "listLogos": [ - { - "size": "183x183", - "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_bfmtv%2F20180417_144733%2FmobileAppliDark%2Flogo_183x183.png" - } - ] - }, - { - "definitionType": "webTVLogo", - "listLogos": [ - { - "size": "180x96", - "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_bfmtv%2F20180417_144733%2FwebTVLogo%2Flogo_180x96.png" - } - ] - }, - { - "definitionType": "webTVSquare", - "listLogos": [ - { - "size": "150x150", - "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_bfmtv%2F20180417_144733%2FwebTVSquare%2Flogo_150x150.png" - } - ] - } - ], - "mobileData": { - "wifiForbidden": false, - "wifiSecuredOnly": false, - "everywhereChannel": true, - "nomadismAllowed": true, - "drmLevels": [ - { - "definition": "SD", - "securedTerminal": [ - "DRM-HW", - "DRM-SW" - ], - "unsecuredTerminal": [ - "DRM-HW", - "DRM-SW" - ] - }, - { - "definition": "HD", - "securedTerminal": [ - "DRM-HW", - "DRM-SW" - ], - "unsecuredTerminal": [ - "ND" - ] - } - ] - }, - "webdeviceData": { - "nomadismAllowed": true - }, - "technicalChannels": { - "live": [ - { - "techChannelId": "400072", - "type": "CLOUDTV", - "liveTargetURLRelativePath": "livetv_bfm_tv_ctv", - "usi": 400072, - "isDRMized": true, - "csa5Disabled": true - } - ], - "npvr": [ - { - "externalId": "livetv_bfm_tv_ctv", - "techChannelId": "400072", - "type": "CLOUDTV", - "usi": 400072, - "isDRMized": true, - "antiAdskipping": "DEACTIVATED", - "csa5Disabled": true - } - ], - "startover": [ - { - "externalId": "livetv_bfm_tv_ctv", - "techChannelId": "400072", - "type": "CLOUDTV", - "usi": 400072, - "isDRMized": true, - "antiAdskipping": "DEACTIVATED", - "csa5Disabled": true - } - ] - } - }, - { - "name": "CNEWS", - "editoChannelId": "livetv_itelevision", - "lcn": 16, - "idEPG": 226, - "epgAvailable": true, - "epgTextSubstitution": "", - "displayOrder": 16, - "csaCode": 1, - "slogan": ".", - "catchupChannelId": "", - "newChannel": true, - "roamingBlocked": true, - "allowedDeviceCategories": [ - "M_ANDROID", - "M_IOS", - "M_TABLET_ANDROID", - "M_TABLET_IOS", - "W_AIRPLAY", - "W_CHROMECAST", - "W_LACLETV2", - "W_SMARTTV", - "W_PC", - "S_STB" - ], - "packages": [ - "PA_BQ_PASSACCESTVPREMIUM_M", - "PA_BQ_BASIC_M", - "PA_BQ_RE_TVMAX_M", - "PA_BQ_ACCESTVPREMIUM_M", - "PA_BQ_PAYG_M", - "PA_BQ_TVDIGITALE_I", - "PA_BQ_SPORT_M", - "PA_BQ_BASIC_I", - "PA_BQ_BASICQUAD_I", - "PA_BQ_ACCESTV_M", - "PI_WHITELIST" - ], - "hasRightIAccess": true, - "hasRightMAccess": true, - "logos": [ - { - "definitionType": "mobileAppli", - "listLogos": [ - { - "size": "183x183", - "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_itelevision%2F20180417_140029%2FmobileAppli%2Flogo_183x183.png" - } - ] - }, - { - "definitionType": "mobileAppliDark", - "listLogos": [ - { - "size": "183x183", - "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_itelevision%2F20180417_140029%2FmobileAppliDark%2Flogo_183x183.png" - } - ] - }, - { - "definitionType": "webTVLogo", - "listLogos": [ - { - "size": "180x96", - "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_itelevision%2F20180417_140029%2FwebTVLogo%2Flogo_180x96.png" - } - ] - }, - { - "definitionType": "webTVSquare", - "listLogos": [ - { - "size": "150x150", - "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_itelevision%2F20180417_140029%2FwebTVSquare%2Flogo_150x150.png" - } - ] - } - ], - "mobileData": { - "wifiForbidden": false, - "wifiSecuredOnly": false, - "everywhereChannel": true, - "nomadismAllowed": true, - "drmLevels": [ - { - "definition": "SD", - "securedTerminal": [ - "DRM-HW", - "DRM-SW" - ], - "unsecuredTerminal": [ - "DRM-HW", - "DRM-SW" - ] - }, - { - "definition": "HD", - "securedTerminal": [ - "DRM-HW", - "DRM-SW" - ], - "unsecuredTerminal": [ - "ND" - ] - } - ] - }, - "webdeviceData": { - "nomadismAllowed": true - }, - "technicalChannels": { - "live": [ - { - "techChannelId": "400073", - "type": "CLOUDTV", - "liveTargetURLRelativePath": "livetv_cnews_ctv", - "usi": 400073, - "isDRMized": true, - "csa5Disabled": true - } - ], - "npvr": [ - { - "externalId": "livetv_cnews_ctv", - "techChannelId": "400073", - "type": "CLOUDTV", - "usi": 400073, - "isDRMized": true, - "antiAdskipping": "DEACTIVATED", - "csa5Disabled": true - } - ], - "startover": [ - { - "externalId": "livetv_cnews_ctv", - "techChannelId": "400073", - "type": "CLOUDTV", - "usi": 400073, - "isDRMized": true, - "antiAdskipping": "DEACTIVATED", - "csa5Disabled": true - } - ] - } - }, - { - "name": "CSTAR", - "editoChannelId": "livetv_directstar", - "lcn": 17, - "idEPG": 458, - "epgAvailable": true, - "epgTextSubstitution": "", - "displayOrder": 17, - "csaCode": 1, - "slogan": ".", - "catchupChannelId": "catchuptv_cstar", - "newChannel": false, - "roamingBlocked": true, - "allowedDeviceCategories": [ - "M_ANDROID", - "M_IOS", - "M_TABLET_ANDROID", - "M_TABLET_IOS", - "W_AIRPLAY", - "W_CHROMECAST", - "W_LACLETV2", - "W_SMARTTV", - "W_PC", - "S_STB" - ], - "packages": [ - "PA_BQ_PASSACCESTVPREMIUM_M", - "PA_BQ_BASIC_M", - "PA_BQ_RE_TVMAX_M", - "PA_BQ_ACCESTVPREMIUM_M", - "PA_BQ_PAYG_M", - "PA_BQ_TVDIGITALE_I", - "PA_BQ_SPORT_M", - "PA_BQ_BASIC_I", - "PA_BQ_BASICQUAD_I", - "PA_BQ_ACCESTV_M", - "PI_WHITELIST" - ], - "hasRightIAccess": true, - "hasRightMAccess": true, - "logos": [ - { - "definitionType": "mobileAppli", - "listLogos": [ - { - "size": "183x183", - "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_directstar%2F20180417_142355%2FmobileAppli%2Flogo_183x183.png" - } - ] - }, - { - "definitionType": "mobileAppliDark", - "listLogos": [ - { - "size": "183x183", - "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_directstar%2F20180417_142355%2FmobileAppliDark%2Flogo_183x183.png" - } - ] - }, - { - "definitionType": "webTVLogo", - "listLogos": [ - { - "size": "180x96", - "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_directstar%2F20180417_142355%2FwebTVLogo%2Flogo_180x96.png" - } - ] - }, - { - "definitionType": "webTVSquare", - "listLogos": [ - { - "size": "150x150", - "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_directstar%2F20180417_142355%2FwebTVSquare%2Flogo_150x150.png" - } - ] - } - ], - "mobileData": { - "wifiForbidden": false, - "wifiSecuredOnly": false, - "everywhereChannel": true, - "nomadismAllowed": true, - "drmLevels": [ - { - "definition": "SD", - "securedTerminal": [ - "DRM-HW", - "DRM-SW" - ], - "unsecuredTerminal": [ - "DRM-HW", - "DRM-SW" - ] - }, - { - "definition": "HD", - "securedTerminal": [ - "DRM-HW", - "DRM-SW" - ], - "unsecuredTerminal": [ - "ND" - ] - } - ] - }, - "webdeviceData": { - "nomadismAllowed": true - }, - "technicalChannels": { - "live": [ - { - "techChannelId": "400007", - "type": "CLOUDTV", - "liveTargetURLRelativePath": "livetv_cstar_ctv", - "usi": 400007, - "isDRMized": true, - "csa5Disabled": true - } - ], - "npvr": [ - { - "externalId": "livetv_cstar_ctv", - "techChannelId": "400007", - "type": "CLOUDTV", - "usi": 400007, - "isDRMized": true, - "antiAdskipping": "DEACTIVATED", - "csa5Disabled": true - } - ], - "startover": [ - { - "externalId": "livetv_cstar_ctv", - "techChannelId": "400007", - "type": "CLOUDTV", - "usi": 400007, - "isDRMized": true, - "antiAdskipping": "DEACTIVATED", - "csa5Disabled": true - } - ] - } - }, - { - "name": "GULLI", - "editoChannelId": "livetv_gulli", - "lcn": 18, - "idEPG": 482, - "epgAvailable": true, - "epgTextSubstitution": "", - "displayOrder": 18, - "csaCode": 1, - "slogan": "Gulli. Bienvenue dans la familli", - "catchupChannelId": "catchuptv_6play_gulli", - "newChannel": false, - "roamingBlocked": true, - "allowedDeviceCategories": [ - "M_ANDROID", - "M_IOS", - "M_TABLET_ANDROID", - "M_TABLET_IOS", - "W_AIRPLAY", - "W_CHROMECAST", - "W_LACLETV2", - "W_PC", - "W_SMARTTV", - "S_STB" - ], - "packages": [ - "PA_BQ_PASSACCESTVPREMIUM_M", - "PA_BQ_BASIC_M", - "PA_BQ_RE_TVMAX_M", - "PA_BQ_ACCESTVPREMIUM_M", - "PA_BQ_PAYG_M", - "PA_BQ_TVDIGITALE_I", - "PA_BQ_SPORT_M", - "PA_BQ_BASIC_I", - "PA_BQ_BASICQUAD_I", - "PA_BQ_ACCESTV_M", - "PI_WHITELIST" - ], - "hasRightIAccess": true, - "hasRightMAccess": true, - "logos": [ - { - "definitionType": "mobileAppli", - "listLogos": [ - { - "size": "183x183", - "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_gulli%2F20230921_113253%2FmobileAppli%2Flogo_183x183.png" - } - ] - }, - { - "definitionType": "mobileAppliDark", - "listLogos": [ - { - "size": "183x183", - "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_gulli%2F20230921_113253%2FmobileAppliDark%2Flogo_183x183.png" - } - ] - }, - { - "definitionType": "webTVLogo", - "listLogos": [ - { - "size": "180x96", - "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_gulli%2F20230921_113253%2FwebTVLogo%2Flogo_180x96.png" - } - ] - }, - { - "definitionType": "webTVSquare", - "listLogos": [ - { - "size": "150x150", - "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_gulli%2F20230921_113253%2FwebTVSquare%2Flogo_150x150.png" - } - ] - } - ], - "mobileData": { - "wifiForbidden": false, - "wifiSecuredOnly": false, - "everywhereChannel": true, - "nomadismAllowed": true, - "drmLevels": [ - { - "definition": "SD", - "securedTerminal": [ - "DRM-HW", - "DRM-SW" - ], - "unsecuredTerminal": [ - "DRM-HW", - "DRM-SW" - ] - }, - { - "definition": "HD", - "securedTerminal": [ - "DRM-HW", - "DRM-SW" - ], - "unsecuredTerminal": [ - "ND" - ] - } - ] - }, - "webdeviceData": { - "nomadismAllowed": true - }, - "technicalChannels": { - "live": [ - { - "techChannelId": "400033", - "type": "CLOUDTV", - "liveTargetURLRelativePath": "livetv_gulli_ctv", - "usi": 400033, - "isDRMized": true, - "csa5Disabled": true - } - ], - "npvr": [ - { - "externalId": "livetv_gulli_ctv", - "techChannelId": "400033", - "type": "CLOUDTV", - "usi": 400033, - "isDRMized": true, - "antiAdskipping": "DEACTIVATED", - "csa5Disabled": true - } - ], - "startover": [ - { - "externalId": "livetv_gulli_ctv", - "techChannelId": "400033", - "type": "CLOUDTV", - "usi": 400033, - "isDRMized": true, - "antiAdskipping": "DEACTIVATED", - "csa5Disabled": true - } - ] - } - }, - { - "name": "TF1 SERIES FILMS", - "editoChannelId": "livetv_hd1", - "lcn": 20, - "idEPG": 1404, - "epgAvailable": true, - "epgTextSubstitution": "", - "displayOrder": 20, - "csaCode": 1, - "slogan": "Le meilleur du cinéma et des séries", - "catchupChannelId": "catchuptv_hd1", - "newChannel": false, - "roamingBlocked": true, - "allowedDeviceCategories": [ - "M_ANDROID", - "M_IOS", - "M_TABLET_ANDROID", - "M_TABLET_IOS", - "W_AIRPLAY", - "W_CHROMECAST", - "W_LACLETV2", - "W_SMARTTV", - "W_PC", - "S_STB" - ], - "packages": [ - "PA_BQ_PASSACCESTVPREMIUM_M", - "PA_BQ_BASIC_M", - "PA_BQ_RE_TVMAX_M", - "PA_BQ_ACCESTVPREMIUM_M", - "PA_BQ_TVDIGITALE_I", - "PA_BQ_BASIC_I", - "PA_BQ_BASICQUAD_I", - "PA_BQ_ACCESTV_M", - "PI_WHITELIST" - ], - "hasRightIAccess": true, - "hasRightMAccess": true, - "logos": [ - { - "definitionType": "mobileAppli", - "listLogos": [ - { - "size": "183x183", - "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_hd1%2F20200324_111923%2FmobileAppli%2Flogo_183x183.png" - } - ] - }, - { - "definitionType": "mobileAppliDark", - "listLogos": [ - { - "size": "183x183", - "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_hd1%2F20200324_111923%2FmobileAppliDark%2Flogo_183x183.png" - } - ] - }, - { - "definitionType": "webTVLogo", - "listLogos": [ - { - "size": "180x96", - "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_hd1%2F20200324_111923%2FwebTVLogo%2Flogo_180x96.png" - } - ] - }, - { - "definitionType": "webTVSquare", - "listLogos": [ - { - "size": "150x150", - "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_hd1%2F20200324_111923%2FwebTVSquare%2Flogo_150x150.png" - } - ] - } - ], - "mobileData": { - "wifiForbidden": false, - "wifiSecuredOnly": false, - "everywhereChannel": true, - "nomadismAllowed": true, - "drmLevels": [ - { - "definition": "SD", - "securedTerminal": [ - "DRM-HW", - "DRM-SW" - ], - "unsecuredTerminal": [ - "DRM-HW", - "DRM-SW" - ] - }, - { - "definition": "HD", - "securedTerminal": [ - "DRM-HW", - "DRM-SW" - ], - "unsecuredTerminal": [ - "ND" - ] - } - ] - }, - "webdeviceData": { - "nomadismAllowed": true - }, - "technicalChannels": { - "live": [ - { - "techChannelId": "400035", - "type": "CLOUDTV", - "liveTargetURLRelativePath": "livetv_tf1_series_films_ctv", - "usi": 400035, - "isDRMized": true, - "csa5Disabled": true - } - ], - "npvr": [ - { - "externalId": "livetv_tf1_series_films_ctv", - "techChannelId": "400035", - "type": "CLOUDTV", - "usi": 400035, - "isDRMized": true, - "antiAdskipping": "DEACTIVATED", - "csa5Disabled": true - } - ], - "startover": [ - { - "externalId": "livetv_tf1_series_films_ctv", - "techChannelId": "400035", - "type": "CLOUDTV", - "usi": 400035, - "isDRMized": true, - "antiAdskipping": "DEACTIVATED", - "csa5Disabled": true - } - ] - } - }, - { - "name": "LA CHAINE L'EQUIPE", - "editoChannelId": "livetv_equipe21", - "lcn": 21, - "idEPG": 1401, - "epgAvailable": true, - "epgTextSubstitution": "", - "displayOrder": 21, - "csaCode": 1, - "slogan": "Première chaine de sport en France", - "catchupChannelId": "catchuptv_equipe21", - "newChannel": false, - "roamingBlocked": true, - "allowedDeviceCategories": [ - "M_ANDROID", - "M_IOS", - "M_TABLET_ANDROID", - "M_TABLET_IOS", - "W_AIRPLAY", - "W_CHROMECAST", - "W_LACLETV2", - "W_SMARTTV", - "W_PC", - "S_STB" - ], - "packages": [ - "PA_BQ_PASSACCESTVPREMIUM_M", - "PA_BQ_BASIC_M", - "PA_BQ_RE_TVMAX_M", - "PA_BQ_ACCESTVPREMIUM_M", - "PA_BQ_TVDIGITALE_I", - "PA_BQ_BASIC_I", - "PA_BQ_BASICQUAD_I", - "PA_BQ_ACCESTV_M", - "PI_WHITELIST" - ], - "hasRightIAccess": true, - "hasRightMAccess": true, - "logos": [ - { - "definitionType": "mobileAppli", - "listLogos": [ - { - "size": "183x183", - "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_equipe21%2F20180417_141110%2FmobileAppli%2Flogo_183x183.png" - } - ] - }, - { - "definitionType": "mobileAppliDark", - "listLogos": [ - { - "size": "183x183", - "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_equipe21%2F20180417_141110%2FmobileAppliDark%2Flogo_183x183.png" - } - ] - }, - { - "definitionType": "webTVLogo", - "listLogos": [ - { - "size": "180x96", - "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_equipe21%2F20180417_141110%2FwebTVLogo%2Flogo_180x96.png" - } - ] - }, - { - "definitionType": "webTVSquare", - "listLogos": [ - { - "size": "150x150", - "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_equipe21%2F20180417_141110%2FwebTVSquare%2Flogo_150x150.png" - } - ] - } - ], - "mobileData": { - "wifiForbidden": false, - "wifiSecuredOnly": false, - "everywhereChannel": true, - "nomadismAllowed": true, - "drmLevels": [ - { - "definition": "SD", - "securedTerminal": [ - "DRM-HW", - "DRM-SW" - ], - "unsecuredTerminal": [ - "DRM-HW", - "DRM-SW" - ] - }, - { - "definition": "HD", - "securedTerminal": [ - "DRM-HW", - "DRM-SW" - ], - "unsecuredTerminal": [ - "ND" - ] - } - ] - }, - "webdeviceData": { - "nomadismAllowed": true - }, - "technicalChannels": { - "live": [ - { - "techChannelId": "400074", - "type": "CLOUDTV", - "liveTargetURLRelativePath": "livetv_la_chaine_l_equipe_ctv", - "usi": 400074, - "isDRMized": true, - "csa5Disabled": true - } - ], - "npvr": [ - { - "externalId": "livetv_la_chaine_l_equipe_ctv", - "techChannelId": "400074", - "type": "CLOUDTV", - "usi": 400074, - "isDRMized": true, - "antiAdskipping": "DEACTIVATED", - "csa5Disabled": true - } - ], - "startover": [ - { - "externalId": "livetv_la_chaine_l_equipe_ctv", - "techChannelId": "400074", - "type": "CLOUDTV", - "usi": 400074, - "isDRMized": true, - "antiAdskipping": "DEACTIVATED", - "csa5Disabled": true - } - ] - } - }, - { - "name": "6TER", - "editoChannelId": "livetv_6ter", - "lcn": 22, - "idEPG": 1403, - "epgAvailable": true, - "epgTextSubstitution": "", - "displayOrder": 22, - "csaCode": 1, - "slogan": "La télé à partager", - "catchupChannelId": "catchuptv_6ter", - "newChannel": false, - "roamingBlocked": true, - "allowedDeviceCategories": [ - "M_ANDROID", - "M_IOS", - "M_TABLET_ANDROID", - "M_TABLET_IOS", - "W_AIRPLAY", - "W_CHROMECAST", - "W_LACLETV2", - "W_SMARTTV", - "W_PC", - "S_STB" - ], - "packages": [ - "PA_BQ_PASSACCESTVPREMIUM_M", - "PA_BQ_BASIC_M", - "PA_BQ_RE_TVMAX_M", - "PA_BQ_ACCESTVPREMIUM_M", - "PA_BQ_TVDIGITALE_I", - "PA_BQ_BASIC_I", - "PA_BQ_BASICQUAD_I", - "PA_BQ_ACCESTV_M", - "PI_WHITELIST" - ], - "hasRightIAccess": true, - "hasRightMAccess": true, - "logos": [ - { - "definitionType": "mobileAppli", - "listLogos": [ - { - "size": "183x183", - "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_6ter%2F20151026_092415%2FmobileAppli%2Flogo_183x183.png" - } - ] - }, - { - "definitionType": "mobileAppliDark", - "listLogos": [ - { - "size": "183x183", - "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_6ter%2F20151026_092415%2FmobileAppliDark%2Flogo_183x183.png" - } - ] - }, - { - "definitionType": "webTVLogo", - "listLogos": [ - { - "size": "180x96", - "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_6ter%2F20151026_092415%2FwebTVLogo%2Flogo_180x96.png" - } - ] - }, - { - "definitionType": "webTVSquare", - "listLogos": [ - { - "size": "150x150", - "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_6ter%2F20151026_092415%2FwebTVSquare%2Flogo_150x150.png" - } - ] - } - ], - "mobileData": { - "wifiForbidden": false, - "wifiSecuredOnly": false, - "everywhereChannel": true, - "nomadismAllowed": true, - "drmLevels": [ - { - "definition": "SD", - "securedTerminal": [ - "DRM-HW", - "DRM-SW" - ], - "unsecuredTerminal": [ - "DRM-HW", - "DRM-SW" - ] - }, - { - "definition": "HD", - "securedTerminal": [ - "DRM-HW", - "DRM-SW" - ], - "unsecuredTerminal": [ - "ND" - ] - } - ] - }, - "webdeviceData": { - "nomadismAllowed": true - }, - "technicalChannels": { - "live": [ - { - "techChannelId": "400004", - "type": "CLOUDTV", - "liveTargetURLRelativePath": "livetv_6ter_ctv", - "usi": 400004, - "isDRMized": true, - "csa5Disabled": true - } - ], - "npvr": [ - { - "externalId": "livetv_6ter_ctv", - "techChannelId": "400004", - "type": "CLOUDTV", - "usi": 400004, - "isDRMized": true, - "antiAdskipping": "DEACTIVATED", - "csa5Disabled": true - } - ], - "startover": [ - { - "externalId": "livetv_6ter_ctv", - "techChannelId": "400004", - "type": "CLOUDTV", - "usi": 400004, - "isDRMized": true, - "antiAdskipping": "DEACTIVATED", - "csa5Disabled": true - } - ] - } - }, - { - "name": "RMC STORY", - "editoChannelId": "livetv_numero23", - "lcn": 23, - "idEPG": 1402, - "epgAvailable": true, - "epgTextSubstitution": "", - "displayOrder": 23, - "csaCode": 1, - "slogan": "La chaîne des histoires vraies", - "catchupChannelId": "catchuptv_numero23", - "newChannel": false, - "roamingBlocked": true, - "allowedDeviceCategories": [ - "M_ANDROID", - "M_IOS", - "M_TABLET_ANDROID", - "M_TABLET_IOS", - "W_AIRPLAY", - "W_CHROMECAST", - "W_LACLETV2", - "W_SMARTTV", - "W_PC", - "S_STB" - ], - "packages": [ - "PA_BQ_PASSACCESTVPREMIUM_M", - "PA_BQ_BASIC_M", - "PA_BQ_RE_TVMAX_M", - "PA_BQ_ACCESTVPREMIUM_M", - "PA_BQ_TVDIGITALE_I", - "PA_BQ_BASIC_I", - "PA_BQ_BASICQUAD_I", - "PA_BQ_ACCESTV_M", - "PI_WHITELIST" - ], - "hasRightIAccess": true, - "hasRightMAccess": true, - "logos": [ - { - "definitionType": "mobileAppli", - "listLogos": [ - { - "size": "183x183", - "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_numero23%2F20181002_112821%2FmobileAppli%2Flogo_183x183.png" - } - ] - }, - { - "definitionType": "mobileAppliDark", - "listLogos": [ - { - "size": "183x183", - "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_numero23%2F20181002_112821%2FmobileAppliDark%2Flogo_183x183.png" - } - ] - }, - { - "definitionType": "webTVLogo", - "listLogos": [ - { - "size": "180x96", - "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_numero23%2F20181002_112821%2FwebTVLogo%2Flogo_180x96.png" - } - ] - }, - { - "definitionType": "webTVSquare", - "listLogos": [ - { - "size": "150x150", - "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_numero23%2F20181002_112821%2FwebTVSquare%2Flogo_150x150.png" - } - ] - } - ], - "mobileData": { - "wifiForbidden": false, - "wifiSecuredOnly": false, - "everywhereChannel": true, - "nomadismAllowed": true, - "drmLevels": [ - { - "definition": "SD", - "securedTerminal": [ - "DRM-HW", - "DRM-SW" - ], - "unsecuredTerminal": [ - "DRM-HW", - "DRM-SW" - ] - }, - { - "definition": "HD", - "securedTerminal": [ - "DRM-HW", - "DRM-SW" - ], - "unsecuredTerminal": [ - "ND" - ] - } - ] - }, - "webdeviceData": { - "nomadismAllowed": true - }, - "technicalChannels": { - "live": [ - { - "techChannelId": "400008", - "type": "CLOUDTV", - "liveTargetURLRelativePath": "livetv_rmc_story_ctv", - "usi": 400008, - "isDRMized": true, - "csa5Disabled": true - } - ], - "npvr": [ - { - "externalId": "livetv_rmc_story_ctv", - "techChannelId": "400008", - "type": "CLOUDTV", - "usi": 400008, - "isDRMized": true, - "antiAdskipping": "DEACTIVATED", - "csa5Disabled": true - } - ], - "startover": [ - { - "externalId": "livetv_rmc_story_ctv", - "techChannelId": "400008", - "type": "CLOUDTV", - "usi": 400008, - "isDRMized": true, - "antiAdskipping": "DEACTIVATED", - "csa5Disabled": true - } - ] - } - }, - { - "name": "RMC DECOUVERTE", - "editoChannelId": "livetv_rmcdecouverte", - "lcn": 24, - "idEPG": 1400, - "epgAvailable": true, - "epgTextSubstitution": "", - "displayOrder": 24, - "csaCode": 1, - "slogan": "Plus fort que la fiction", - "catchupChannelId": "catchuptv_rmcdecouverte", - "newChannel": false, - "roamingBlocked": true, - "allowedDeviceCategories": [ - "M_ANDROID", - "M_IOS", - "M_TABLET_ANDROID", - "M_TABLET_IOS", - "W_AIRPLAY", - "W_CHROMECAST", - "W_LACLETV2", - "W_PC", - "W_SMARTTV", - "S_STB" - ], - "packages": [ - "PA_BQ_PASSACCESTVPREMIUM_M", - "PA_BQ_BASIC_M", - "PA_BQ_RE_TVMAX_M", - "PA_BQ_ACCESTVPREMIUM_M", - "PA_BQ_TVDIGITALE_I", - "PA_BQ_BASIC_I", - "PA_BQ_BASICQUAD_I", - "PA_BQ_ACCESTV_M", - "PI_WHITELIST" - ], - "hasRightIAccess": true, - "hasRightMAccess": true, - "logos": [ - { - "definitionType": "mobileAppli", - "listLogos": [ - { - "size": "183x183", - "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_rmcdecouverte%2F20220317_155749%2FmobileAppli%2Flogo_183x183.png" - } - ] - }, - { - "definitionType": "mobileAppliDark", - "listLogos": [ - { - "size": "183x183", - "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_rmcdecouverte%2F20220317_155749%2FmobileAppliDark%2Flogo_183x183.png" - } - ] - }, - { - "definitionType": "webTVLogo", - "listLogos": [ - { - "size": "180x96", - "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_rmcdecouverte%2F20220317_155749%2FwebTVLogo%2Flogo_180x96.png" - } - ] - }, - { - "definitionType": "webTVSquare", - "listLogos": [ - { - "size": "150x150", - "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_rmcdecouverte%2F20220317_155749%2FwebTVSquare%2Flogo_150x150.png" - } - ] - } - ], - "mobileData": { - "wifiForbidden": false, - "wifiSecuredOnly": false, - "everywhereChannel": true, - "nomadismAllowed": true, - "drmLevels": [ - { - "definition": "SD", - "securedTerminal": [ - "DRM-HW", - "DRM-SW" - ], - "unsecuredTerminal": [ - "DRM-HW", - "DRM-SW" - ] - }, - { - "definition": "HD", - "securedTerminal": [ - "DRM-HW", - "DRM-SW" - ], - "unsecuredTerminal": [ - "ND" - ] - } - ] - }, - "webdeviceData": { - "nomadismAllowed": true - }, - "technicalChannels": { - "live": [ - { - "techChannelId": "400009", - "type": "CLOUDTV", - "liveTargetURLRelativePath": "livetv_rmc_decouverte_ctv", - "usi": 400009, - "isDRMized": true, - "csa5Disabled": true - } - ], - "npvr": [ - { - "externalId": "livetv_rmc_decouverte_ctv", - "techChannelId": "400009", - "type": "CLOUDTV", - "usi": 400009, - "isDRMized": true, - "antiAdskipping": "DEACTIVATED", - "csa5Disabled": true - } - ], - "startover": [ - { - "externalId": "livetv_rmc_decouverte_ctv", - "techChannelId": "400009", - "type": "CLOUDTV", - "usi": 400009, - "isDRMized": true, - "antiAdskipping": "DEACTIVATED", - "csa5Disabled": true - } - ] - } - }, - { - "name": "CHERIE 25", - "editoChannelId": "livetv_cherie25", - "lcn": 25, - "idEPG": 1399, - "epgAvailable": true, - "epgTextSubstitution": "", - "displayOrder": 25, - "csaCode": 1, - "slogan": "La chaîne qui a tout pour elles", - "catchupChannelId": "catchuptv_cherie25", - "newChannel": false, - "roamingBlocked": true, - "allowedDeviceCategories": [ - "M_ANDROID", - "M_IOS", - "M_TABLET_ANDROID", - "M_TABLET_IOS", - "W_AIRPLAY", - "W_CHROMECAST", - "W_LACLETV2", - "W_SMARTTV", - "W_PC", - "S_STB" - ], - "packages": [ - "PA_BQ_PASSACCESTVPREMIUM_M", - "PA_BQ_BASIC_M", - "PA_BQ_RE_TVMAX_M", - "PA_BQ_ACCESTVPREMIUM_M", - "PA_BQ_TVDIGITALE_I", - "PA_BQ_BASIC_I", - "PA_BQ_BASICQUAD_I", - "PA_BQ_ACCESTV_M", - "PI_WHITELIST" - ], - "hasRightIAccess": true, - "hasRightMAccess": true, - "logos": [ - { - "definitionType": "mobileAppli", - "listLogos": [ - { - "size": "183x183", - "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_cherie25%2F20151026_092415%2FmobileAppli%2Flogo_183x183.png" - } - ] - }, - { - "definitionType": "mobileAppliDark", - "listLogos": [ - { - "size": "183x183", - "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_cherie25%2F20151026_092415%2FmobileAppliDark%2Flogo_183x183.png" - } - ] - }, - { - "definitionType": "webTVLogo", - "listLogos": [ - { - "size": "180x96", - "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_cherie25%2F20151026_092415%2FwebTVLogo%2Flogo_180x96.png" - } - ] - }, - { - "definitionType": "webTVSquare", - "listLogos": [ - { - "size": "150x150", - "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_cherie25%2F20151026_092415%2FwebTVSquare%2Flogo_150x150.png" - } - ] - } - ], - "mobileData": { - "wifiForbidden": false, - "wifiSecuredOnly": false, - "everywhereChannel": true, - "nomadismAllowed": true, - "drmLevels": [ - { - "definition": "SD", - "securedTerminal": [ - "DRM-HW", - "DRM-SW" - ], - "unsecuredTerminal": [ - "DRM-HW", - "DRM-SW" - ] - }, - { - "definition": "HD", - "securedTerminal": [ - "DRM-HW", - "DRM-SW" - ], - "unsecuredTerminal": [ - "ND" - ] - } - ] - }, - "webdeviceData": { - "nomadismAllowed": true - }, - "technicalChannels": { - "live": [ - { - "techChannelId": "400012", - "type": "CLOUDTV", - "liveTargetURLRelativePath": "livetv_cherie_25_ctv", - "usi": 400012, - "isDRMized": true, - "csa5Disabled": true - } - ], - "npvr": [ - { - "externalId": "livetv_cherie_25_ctv", - "techChannelId": "400012", - "type": "CLOUDTV", - "usi": 400012, - "isDRMized": true, - "antiAdskipping": "DEACTIVATED", - "csa5Disabled": true - } - ], - "startover": [ - { - "externalId": "livetv_cherie_25_ctv", - "techChannelId": "400012", - "type": "CLOUDTV", - "usi": 400012, - "isDRMized": true, - "antiAdskipping": "DEACTIVATED", - "csa5Disabled": true - } - ] - } - }, - { - "name": "LCI", - "editoChannelId": "livetv_lcimobile_UMTS", - "lcn": 26, - "idEPG": 112, - "epgAvailable": true, - "epgTextSubstitution": "", - "displayOrder": 26, - "csaCode": 1, - "slogan": "Vous êtes au cœur de l’info", - "catchupChannelId": "catchuptv_lcimobile_UMTS", - "newChannel": false, - "roamingBlocked": true, - "allowedDeviceCategories": [ - "M_ANDROID", - "M_IOS", - "M_TABLET_ANDROID", - "M_TABLET_IOS", - "W_AIRPLAY", - "W_CHROMECAST", - "W_LACLETV2", - "W_SMARTTV", - "W_PC", - "S_STB" - ], - "packages": [ - "PA_BQ_PASSACCESTVPREMIUM_M", - "PA_BQ_BASIC_M", - "PA_BQ_RE_TVMAX_M", - "PA_BQ_ACCESTVPREMIUM_M", - "PA_BQ_PAYG_M", - "PA_BQ_TVDIGITALE_I", - "PA_BQ_BASIC_I", - "PA_BQ_BASICQUAD_I", - "PA_BQ_ACCESTV_M", - "PI_WHITELIST" - ], - "hasRightIAccess": true, - "hasRightMAccess": true, - "logos": [ - { - "definitionType": "mobileAppli", - "listLogos": [ - { - "size": "183x183", - "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_lcimobile_UMTS%2F20200324_111923%2FmobileAppli%2Flogo_183x183.png" - } - ] - }, - { - "definitionType": "mobileAppliDark", - "listLogos": [ - { - "size": "183x183", - "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_lcimobile_UMTS%2F20200324_111923%2FmobileAppliDark%2Flogo_183x183.png" - } - ] - }, - { - "definitionType": "webTVLogo", - "listLogos": [ - { - "size": "180x96", - "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_lcimobile_UMTS%2F20200324_111923%2FwebTVLogo%2Flogo_180x96.png" - } - ] - }, - { - "definitionType": "webTVSquare", - "listLogos": [ - { - "size": "150x150", - "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_lcimobile_UMTS%2F20200324_111923%2FwebTVSquare%2Flogo_150x150.png" - } - ] - } - ], - "mobileData": { - "wifiForbidden": false, - "wifiSecuredOnly": false, - "everywhereChannel": true, - "nomadismAllowed": true, - "drmLevels": [ - { - "definition": "SD", - "securedTerminal": [ - "DRM-HW", - "DRM-SW" - ], - "unsecuredTerminal": [ - "DRM-HW", - "DRM-SW" - ] - }, - { - "definition": "HD", - "securedTerminal": [ - "DRM-HW", - "DRM-SW" - ], - "unsecuredTerminal": [ - "ND" - ] - } - ] - }, - "webdeviceData": { - "nomadismAllowed": true - }, - "technicalChannels": { - "live": [ - { - "techChannelId": "400075", - "type": "CLOUDTV", - "liveTargetURLRelativePath": "livetv_lci_ctv", - "usi": 400075, - "isDRMized": true, - "csa5Disabled": true - } - ], - "npvr": [ - { - "externalId": "livetv_lci_ctv", - "techChannelId": "400075", - "type": "CLOUDTV", - "usi": 400075, - "isDRMized": true, - "antiAdskipping": "DEACTIVATED", - "csa5Disabled": true - } - ], - "startover": [ - { - "externalId": "livetv_lci_ctv", - "techChannelId": "400075", - "type": "CLOUDTV", - "usi": 400075, - "isDRMized": true, - "antiAdskipping": "DEACTIVATED", - "csa5Disabled": true - } - ] - } - }, - { - "name": "FRANCEINFO:", - "editoChannelId": "livetv_franceinfo", - "lcn": 27, - "idEPG": 2111, - "epgAvailable": true, - "epgTextSubstitution": "", - "displayOrder": 27, - "csaCode": 1, - "slogan": "franceinfo deux points ouvrez l’info", - "catchupChannelId": "", - "newChannel": true, - "roamingBlocked": true, - "allowedDeviceCategories": [ - "M_ANDROID", - "M_IOS", - "M_TABLET_ANDROID", - "M_TABLET_IOS", - "W_AIRPLAY", - "W_CHROMECAST", - "W_LACLETV2", - "W_SMARTTV", - "W_PC", - "S_STB" - ], - "packages": [ - "PA_BQ_BASIC_M", - "PA_BQ_RE_TVMAX_M", - "PA_BQ_TVDIGITALE_I", - "PA_BQ_BASIC_I", - "PA_BQ_BASICQUAD_I", - "PA_BQ_ACCESTV_M", - "PI_WHITELIST" - ], - "hasRightIAccess": true, - "hasRightMAccess": true, - "logos": [ - { - "definitionType": "mobileAppli", - "listLogos": [ - { - "size": "183x183", - "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_franceinfo%2F20151026_092415%2FmobileAppli%2Flogo_183x183.png" - } - ] - }, - { - "definitionType": "mobileAppliDark", - "listLogos": [ - { - "size": "183x183", - "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_franceinfo%2F20151026_092415%2FmobileAppliDark%2Flogo_183x183.png" - } - ] - }, - { - "definitionType": "webTVLogo", - "listLogos": [ - { - "size": "180x96", - "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_franceinfo%2F20151026_092415%2FwebTVLogo%2Flogo_180x96.png" - } - ] - }, - { - "definitionType": "webTVSquare", - "listLogos": [ - { - "size": "150x150", - "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_franceinfo%2F20151026_092415%2FwebTVSquare%2Flogo_150x150.png" - } - ] - } - ], - "mobileData": { - "wifiForbidden": false, - "wifiSecuredOnly": false, - "everywhereChannel": true, - "nomadismAllowed": true, - "drmLevels": [ - { - "definition": "SD", - "securedTerminal": [ - "DRM-HW", - "DRM-SW" - ], - "unsecuredTerminal": [ - "DRM-HW", - "DRM-SW" - ] - }, - { - "definition": "HD", - "securedTerminal": [ - "DRM-HW", - "DRM-SW" - ], - "unsecuredTerminal": [ - "ND" - ] - } - ] - }, - "webdeviceData": { - "nomadismAllowed": true - }, - "technicalChannels": { - "live": [ - { - "techChannelId": "400076", - "type": "CLOUDTV", - "liveTargetURLRelativePath": "livetv_franceinfo_ctv", - "usi": 400076, - "isDRMized": true, - "csa5Disabled": true - } - ], - "npvr": [ - { - "externalId": "livetv_franceinfo_ctv", - "techChannelId": "400076", - "type": "CLOUDTV", - "usi": 400076, - "isDRMized": true, - "antiAdskipping": "DEACTIVATED", - "csa5Disabled": true - } - ], - "startover": [ - { - "externalId": "livetv_franceinfo_ctv", - "techChannelId": "400076", - "type": "CLOUDTV", - "usi": 400076, - "isDRMized": true, - "antiAdskipping": "DEACTIVATED", - "csa5Disabled": true - } - ] - } - }, - { - "name": "TV5MONDE", - "editoChannelId": "livetv_tv5", - "lcn": 33, - "idEPG": 205, - "epgAvailable": true, - "epgTextSubstitution": "", - "displayOrder": 33, - "csaCode": 1, - "slogan": "Regarder le Monde avec attention", - "catchupChannelId": "catchuptv_tv5monde", - "newChannel": false, - "roamingBlocked": true, - "allowedDeviceCategories": [ - "M_ANDROID", - "M_IOS", - "M_TABLET_ANDROID", - "M_TABLET_IOS", - "W_AIRPLAY", - "W_CHROMECAST", - "W_LACLETV2", - "W_SMARTTV", - "W_PC", - "S_STB" - ], - "packages": [ - "PA_BQ_PASSACCESTVPREMIUM_M", - "PA_BQ_BASIC_M", - "PA_BQ_RE_TVMAX_M", - "PA_BQ_ACCESTVPREMIUM_M", - "PA_BQ_PAYG_M", - "PA_BQ_MUSIQUE_M", - "PA_BQ_TVDIGITALE_I", - "PA_BQ_SPORT_M", - "PA_BQ_BASIC_I", - "PA_BQ_BASICQUAD_I", - "PA_BQ_ACCESTV_M", - "PI_WHITELIST" - ], - "hasRightIAccess": true, - "hasRightMAccess": true, - "logos": [ - { - "definitionType": "mobileAppli", - "listLogos": [ - { - "size": "183x183", - "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_tv5%2F20230719_182354%2FmobileAppli%2Flogo_183x183.png" - } - ] - }, - { - "definitionType": "mobileAppliDark", - "listLogos": [ - { - "size": "183x183", - "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_tv5%2F20230719_182354%2FmobileAppliDark%2Flogo_183x183.png" - } - ] - }, - { - "definitionType": "webTVLogo", - "listLogos": [ - { - "size": "180x96", - "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_tv5%2F20230719_182354%2FwebTVLogo%2Flogo_180x96.png" - } - ] - }, - { - "definitionType": "webTVSquare", - "listLogos": [ - { - "size": "150x150", - "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_tv5%2F20230719_182354%2FwebTVSquare%2Flogo_150x150.png" - } - ] - } - ], - "mobileData": { - "wifiForbidden": false, - "wifiSecuredOnly": false, - "everywhereChannel": true, - "nomadismAllowed": true, - "drmLevels": [ - { - "definition": "SD", - "securedTerminal": [ - "DRM-HW", - "DRM-SW" - ], - "unsecuredTerminal": [ - "DRM-HW", - "DRM-SW" - ] - }, - { - "definition": "HD", - "securedTerminal": [ - "DRM-HW", - "DRM-SW" - ], - "unsecuredTerminal": [ - "ND" - ] - } - ] - }, - "webdeviceData": { - "nomadismAllowed": true - }, - "technicalChannels": { - "live": [ - { - "techChannelId": "400077", - "type": "CLOUDTV", - "liveTargetURLRelativePath": "livetv_tv5monde_ctv", - "usi": 400077, - "isDRMized": true, - "csa5Disabled": true - } - ], - "npvr": [ - { - "externalId": "livetv_tv5monde_ctv", - "techChannelId": "400077", - "type": "CLOUDTV", - "usi": 400077, - "isDRMized": true, - "antiAdskipping": "DEACTIVATED", - "csa5Disabled": true - } - ], - "startover": [] - } - }, - { - "name": "TEVA", - "editoChannelId": "livetv_teva", - "lcn": 34, - "idEPG": 191, - "epgAvailable": true, - "epgTextSubstitution": "", - "displayOrder": 34, - "csaCode": 1, - "slogan": "La meilleure alliée des femmes !", - "catchupChannelId": "catchuptv_teva", - "newChannel": false, - "roamingBlocked": true, - "allowedDeviceCategories": [ - "M_ANDROID", - "M_IOS", - "M_TABLET_ANDROID", - "M_TABLET_IOS", - "W_AIRPLAY", - "W_CHROMECAST", - "W_LACLETV2", - "W_SMARTTV", - "W_PC", - "S_STB" - ], - "packages": [ - "PA_BQ_PASSACCESTVPREMIUM_M", - "PA_bouquet_famille_disneyplus", - "PA_BQ_ACCESTVPREMIUM_M", - "PA_pack_intense", - "PA_bouquet_divertissement_fibre", - "PA_bouquet_famille_by_canal", - "PA_bouquet_famille_by_canal_nov2018", - "PA_bouquet_famille_max", - "PA_bouquet_divertissement_adsl", - "PI_WHITELIST" - ], - "hasRightIAccess": true, - "hasRightMAccess": true, - "logos": [ - { - "definitionType": "mobileAppli", - "listLogos": [ - { - "size": "183x183", - "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_teva%2F20151026_092415%2FmobileAppli%2Flogo_183x183.png" - } - ] - }, - { - "definitionType": "mobileAppliDark", - "listLogos": [ - { - "size": "183x183", - "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_teva%2F20151026_092415%2FmobileAppliDark%2Flogo_183x183.png" - } - ] - }, - { - "definitionType": "webTVLogo", - "listLogos": [ - { - "size": "180x96", - "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_teva%2F20151026_092415%2FwebTVLogo%2Flogo_180x96.png" - } - ] - }, - { - "definitionType": "webTVSquare", - "listLogos": [ - { - "size": "150x150", - "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_teva%2F20151026_092415%2FwebTVSquare%2Flogo_150x150.png" - } - ] - } - ], - "mobileData": { - "wifiForbidden": false, - "wifiSecuredOnly": false, - "everywhereChannel": true, - "nomadismAllowed": true, - "drmLevels": [ - { - "definition": "SD", - "securedTerminal": [ - "DRM-HW", - "DRM-SW" - ], - "unsecuredTerminal": [ - "DRM-HW", - "DRM-SW" - ] - }, - { - "definition": "HD", - "securedTerminal": [ - "DRM-HW", - "DRM-SW" - ], - "unsecuredTerminal": [ - "ND" - ] - } - ] - }, - "webdeviceData": { - "nomadismAllowed": true - }, - "technicalChannels": { - "live": [ - { - "techChannelId": "400036", - "type": "CLOUDTV", - "liveTargetURLRelativePath": "livetv_teva_ctv", - "usi": 400036, - "isDRMized": true, - "csa5Disabled": true - } - ], - "npvr": [ - { - "externalId": "livetv_teva_ctv", - "techChannelId": "400036", - "type": "CLOUDTV", - "usi": 400036, - "isDRMized": true, - "antiAdskipping": "DEACTIVATED", - "csa5Disabled": true - } - ], - "startover": [ - { - "externalId": "livetv_teva_ctv", - "techChannelId": "400036", - "type": "CLOUDTV", - "usi": 400036, - "isDRMized": true, - "antiAdskipping": "DEACTIVATED", - "csa5Disabled": true - } - ] - } - }, - { - "name": "PARIS PREMIERE", - "editoChannelId": "livetv_parispremiere", - "lcn": 35, - "idEPG": 145, - "epgAvailable": true, - "epgTextSubstitution": "", - "displayOrder": 35, - "csaCode": 1, - "slogan": "La chaîne essentielle", - "catchupChannelId": "catchuptv_parispremiere", - "newChannel": false, - "roamingBlocked": true, - "allowedDeviceCategories": [ - "M_ANDROID", - "M_IOS", - "M_TABLET_ANDROID", - "M_TABLET_IOS", - "W_AIRPLAY", - "W_CHROMECAST", - "W_LACLETV2", - "W_SMARTTV", - "W_PC", - "S_STB" - ], - "packages": [ - "PA_BQ_PASSACCESTVPREMIUM_M", - "PA_pack_Divertissement", - "PA_BQ_RE_TVMAX_M", - "PA_bouquet_famille_disneyplus", - "PA_BQ_ACCESTVPREMIUM_M", - "PA_BQ_PAYG_M", - "PA_pack_intense", - "PA_bouquet_divertissement_fibre", - "PA_bouquet_famille_by_canal", - "PA_bouquet_famille_by_canal_nov2018", - "PA_bouquet_famille_max", - "PA_bouquet_divertissement_adsl", - "PI_WHITELIST" - ], - "hasRightIAccess": true, - "hasRightMAccess": true, - "logos": [ - { - "definitionType": "mobileAppli", - "listLogos": [ - { - "size": "183x183", - "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_parispremiere%2F20170405_200000%2FmobileAppli%2Flogo_183x183.png" - } - ] - }, - { - "definitionType": "mobileAppliDark", - "listLogos": [ - { - "size": "183x183", - "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_parispremiere%2F20170405_200000%2FmobileAppliDark%2Flogo_183x183.png" - } - ] - }, - { - "definitionType": "webTVLogo", - "listLogos": [ - { - "size": "180x96", - "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_parispremiere%2F20170405_200000%2FwebTVLogo%2Flogo_180x96.png" - } - ] - }, - { - "definitionType": "webTVSquare", - "listLogos": [ - { - "size": "150x150", - "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_parispremiere%2F20170405_200000%2FwebTVSquare%2Flogo_150x150.png" - } - ] - } - ], - "mobileData": { - "wifiForbidden": false, - "wifiSecuredOnly": false, - "everywhereChannel": true, - "nomadismAllowed": true, - "drmLevels": [ - { - "definition": "SD", - "securedTerminal": [ - "DRM-HW", - "DRM-SW" - ], - "unsecuredTerminal": [ - "DRM-HW", - "DRM-SW" - ] - }, - { - "definition": "HD", - "securedTerminal": [ - "DRM-HW", - "DRM-SW" - ], - "unsecuredTerminal": [ - "ND" - ] - } - ] - }, - "webdeviceData": { - "nomadismAllowed": true - }, - "technicalChannels": { - "live": [ - { - "techChannelId": "400022", - "type": "CLOUDTV", - "liveTargetURLRelativePath": "livetv_parispremiere_ctv", - "usi": 400022, - "isDRMized": true, - "csa5Disabled": true - } - ], - "npvr": [ - { - "externalId": "livetv_parispremiere_ctv", - "techChannelId": "400022", - "type": "CLOUDTV", - "usi": 400022, - "isDRMized": true, - "antiAdskipping": "DEACTIVATED", - "csa5Disabled": true - } - ], - "startover": [ - { - "externalId": "livetv_parispremiere_ctv", - "techChannelId": "400022", - "type": "CLOUDTV", - "usi": 400022, - "isDRMized": true, - "antiAdskipping": "DEACTIVATED", - "csa5Disabled": true - } - ] - } - }, - { - "name": "RTL9", - "editoChannelId": "livetv_rtl9", - "lcn": 36, - "idEPG": 115, - "epgAvailable": true, - "epgTextSubstitution": "", - "displayOrder": 36, - "csaCode": 1, - "slogan": "La chaîne du cinéma et du divertissement", - "catchupChannelId": "catchuptv_rtl9", - "newChannel": false, - "roamingBlocked": true, - "allowedDeviceCategories": [ - "M_ANDROID", - "M_IOS", - "M_TABLET_ANDROID", - "M_TABLET_IOS", - "W_AIRPLAY", - "W_CHROMECAST", - "W_LACLETV2", - "W_PC", - "W_SMARTTV", - "S_STB" - ], - "packages": [ - "PA_BQ_PASSACCESTVPREMIUM_M", - "PA_pack_Divertissement", - "PA_BQ_RE_TVMAX_M", - "PA_bouquet_famille_disneyplus", - "PA_BQ_ACCESTVPREMIUM_M", - "PA_BQ_PAYG_M", - "PA_pack_intense", - "PA_bouquet_divertissement_fibre", - "PA_bouquet_famille_by_canal", - "PA_bouquet_famille_by_canal_nov2018", - "PA_bouquet_famille_max", - "PA_bouquet_divertissement_adsl", - "PI_WHITELIST" - ], - "hasRightIAccess": true, - "hasRightMAccess": true, - "logos": [ - { - "definitionType": "mobileAppli", - "listLogos": [ - { - "size": "183x183", - "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_rtl9%2F20230517_112910%2FmobileAppli%2Flogo_183x183.png" - } - ] - }, - { - "definitionType": "mobileAppliDark", - "listLogos": [ - { - "size": "183x183", - "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_rtl9%2F20230517_112910%2FmobileAppliDark%2Flogo_183x183.png" - } - ] - }, - { - "definitionType": "webTVLogo", - "listLogos": [ - { - "size": "180x96", - "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_rtl9%2F20230517_112910%2FwebTVLogo%2Flogo_180x96.png" - } - ] - }, - { - "definitionType": "webTVSquare", - "listLogos": [ - { - "size": "150x150", - "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_rtl9%2F20230517_112910%2FwebTVSquare%2Flogo_150x150.png" - } - ] - } - ], - "mobileData": { - "wifiForbidden": false, - "wifiSecuredOnly": false, - "everywhereChannel": true, - "nomadismAllowed": true, - "drmLevels": [ - { - "definition": "SD", - "securedTerminal": [ - "DRM-HW", - "DRM-SW" - ], - "unsecuredTerminal": [ - "DRM-HW", - "DRM-SW" - ] - }, - { - "definition": "HD", - "securedTerminal": [ - "DRM-HW", - "DRM-SW" - ], - "unsecuredTerminal": [ - "ND" - ] - } - ] - }, - "webdeviceData": { - "nomadismAllowed": true - }, - "technicalChannels": { - "live": [ - { - "techChannelId": "400023", - "type": "CLOUDTV", - "liveTargetURLRelativePath": "livetv_rtl9_ctv", - "usi": 400023, - "isDRMized": true, - "csa5Disabled": true - } - ], - "npvr": [ - { - "externalId": "livetv_rtl9_ctv", - "techChannelId": "400023", - "type": "CLOUDTV", - "usi": 400023, - "isDRMized": true, - "antiAdskipping": "DEACTIVATED", - "csa5Disabled": true - } - ], - "startover": [ - { - "externalId": "livetv_rtl9_ctv", - "techChannelId": "400023", - "type": "CLOUDTV", - "usi": 400023, - "isDRMized": true, - "antiAdskipping": "DEACTIVATED", - "csa5Disabled": true - } - ] - } - }, - { - "name": "TV BREIZH", - "editoChannelId": "livetv_tvbreizh_umts", - "lcn": 37, - "idEPG": 225, - "epgAvailable": true, - "epgTextSubstitution": "", - "displayOrder": 37, - "csaCode": 1, - "slogan": "Carrément culte", - "catchupChannelId": "catchuptv_tvbreizh_umts", - "newChannel": false, - "roamingBlocked": true, - "allowedDeviceCategories": [ - "M_ANDROID", - "M_IOS", - "M_TABLET_ANDROID", - "M_TABLET_IOS", - "W_AIRPLAY", - "W_CHROMECAST", - "W_LACLETV2", - "W_SMARTTV", - "W_PC", - "S_STB" - ], - "packages": [ - "PA_BQ_PASSACCESTVPREMIUM_M", - "PA_pack_Divertissement", - "PA_bouquet_famille_disneyplus", - "PA_BQ_ACCESTVPREMIUM_M", - "PA_pack_intense", - "PA_bouquet_divertissement_fibre", - "PA_bouquet_famille_by_canal", - "PA_bouquet_famille_by_canal_nov2018", - "PA_bouquet_famille_max", - "PA_bouquet_divertissement_adsl", - "PI_WHITELIST" - ], - "hasRightIAccess": true, - "hasRightMAccess": true, - "logos": [ - { - "definitionType": "mobileAppli", - "listLogos": [ - { - "size": "183x183", - "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_tvbreizh_umts%2F20200210_181602%2FmobileAppli%2Flogo_183x183.png" - } - ] - }, - { - "definitionType": "mobileAppliDark", - "listLogos": [ - { - "size": "183x183", - "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_tvbreizh_umts%2F20200210_181602%2FmobileAppliDark%2Flogo_183x183.png" - } - ] - }, - { - "definitionType": "webTVLogo", - "listLogos": [ - { - "size": "180x96", - "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_tvbreizh_umts%2F20200210_181602%2FwebTVLogo%2Flogo_180x96.png" - } - ] - }, - { - "definitionType": "webTVSquare", - "listLogos": [ - { - "size": "150x150", - "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_tvbreizh_umts%2F20200210_181602%2FwebTVSquare%2Flogo_150x150.png" - } - ] - } - ], - "mobileData": { - "wifiForbidden": false, - "wifiSecuredOnly": false, - "everywhereChannel": true, - "nomadismAllowed": true, - "drmLevels": [ - { - "definition": "SD", - "securedTerminal": [ - "DRM-HW", - "DRM-SW" - ], - "unsecuredTerminal": [ - "DRM-HW", - "DRM-SW" - ] - }, - { - "definition": "HD", - "securedTerminal": [ - "DRM-HW", - "DRM-SW" - ], - "unsecuredTerminal": [ - "ND" - ] - } - ] - }, - "webdeviceData": { - "nomadismAllowed": true - }, - "technicalChannels": { - "live": [ - { - "techChannelId": "400024", - "type": "CLOUDTV", - "liveTargetURLRelativePath": "livetv_tvbreizh_ctv", - "usi": 400024, - "isDRMized": true, - "csa5Disabled": true - } - ], - "npvr": [ - { - "externalId": "livetv_tvbreizh_ctv", - "techChannelId": "400024", - "type": "CLOUDTV", - "usi": 400024, - "isDRMized": true, - "antiAdskipping": "DEACTIVATED", - "csa5Disabled": true - } - ], - "startover": [ - { - "externalId": "livetv_tvbreizh_ctv", - "techChannelId": "400024", - "type": "CLOUDTV", - "usi": 400024, - "isDRMized": true, - "antiAdskipping": "DEACTIVATED", - "csa5Disabled": true - } - ] - } - }, - { - "name": "CANAL+SPORT360", - "editoChannelId": "livetv_canalplus_sport_360", - "lcn": 38, - "idEPG": 3504, - "epgAvailable": true, - "epgTextSubstitution": "", - "displayOrder": 38, - "csaCode": 1, - "slogan": "Le nouveau frisson du sport", - "catchupChannelId": "", - "newChannel": true, - "roamingBlocked": false, - "allowedDeviceCategories": [ - "M_ANDROID", - "M_IOS", - "M_TABLET_ANDROID", - "M_TABLET_IOS", - "W_AIRPLAY", - "W_CHROMECAST", - "W_LACLETV2", - "W_PC", - "W_SMARTTV", - "S_STB" - ], - "packages": [ - "PA_BQ_BASIC_I", - "PI_WHITELIST" - ], - "hasRightIAccess": true, - "hasRightMAccess": false, - "logos": [ - { - "definitionType": "mobileAppli", - "listLogos": [ - { - "size": "183x183", - "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_canalplus_sport_360%2F20230801_125104%2FmobileAppli%2Flogo_183x183.png" - } - ] - }, - { - "definitionType": "mobileAppliDark", - "listLogos": [ - { - "size": "183x183", - "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_canalplus_sport_360%2F20230801_125104%2FmobileAppliDark%2Flogo_183x183.png" - } - ] - }, - { - "definitionType": "webTVLogo", - "listLogos": [ - { - "size": "180x96", - "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_canalplus_sport_360%2F20230801_125104%2FwebTVLogo%2Flogo_180x96.png" - } - ] - }, - { - "definitionType": "webTVSquare", - "listLogos": [ - { - "size": "150x150", - "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_canalplus_sport_360%2F20230801_125104%2FwebTVSquare%2Flogo_150x150.png" - } - ] - } - ], - "mobileData": { - "wifiForbidden": false, - "wifiSecuredOnly": false, - "everywhereChannel": true, - "nomadismAllowed": true, - "drmLevels": [ - { - "definition": "SD", - "securedTerminal": [ - "DRM-HW", - "DRM-SW" - ], - "unsecuredTerminal": [ - "DRM-HW", - "DRM-SW" - ] - }, - { - "definition": "HD", - "securedTerminal": [ - "DRM-HW", - "DRM-SW" - ], - "unsecuredTerminal": [ - "ND" - ] - } - ] - }, - "webdeviceData": { - "nomadismAllowed": true - }, - "technicalChannels": { - "live": [ - { - "techChannelId": "400417", - "type": "CLOUDTV", - "liveTargetURLRelativePath": "livetv_acces_limite_ctv", - "usi": 400417, - "isDRMized": true, - "csa5Disabled": true - } - ], - "npvr": [], - "startover": [] - } - }, - { - "name": "CANAL+FOOT", - "editoChannelId": "livetv_canalplus_foot", - "lcn": 39, - "idEPG": 3501, - "epgAvailable": true, - "epgTextSubstitution": "", - "displayOrder": 39, - "csaCode": 1, - "slogan": "La plus belle chaîne de foot", - "catchupChannelId": "", - "newChannel": true, - "roamingBlocked": false, - "allowedDeviceCategories": [ - "M_ANDROID", - "M_IOS", - "M_TABLET_ANDROID", - "M_TABLET_IOS", - "W_AIRPLAY", - "W_CHROMECAST", - "W_LACLETV2", - "W_PC", - "W_SMARTTV", - "S_STB" - ], - "packages": [ - "PA_BQ_BASIC_I", - "PI_WHITELIST" - ], - "hasRightIAccess": true, - "hasRightMAccess": false, - "logos": [ - { - "definitionType": "mobileAppli", - "listLogos": [ - { - "size": "183x183", - "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_canalplus_foot%2F20230801_115557%2FmobileAppli%2Flogo_183x183.png" - } - ] - }, - { - "definitionType": "mobileAppliDark", - "listLogos": [ - { - "size": "183x183", - "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_canalplus_foot%2F20230801_115557%2FmobileAppliDark%2Flogo_183x183.png" - } - ] - }, - { - "definitionType": "webTVLogo", - "listLogos": [ - { - "size": "180x96", - "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_canalplus_foot%2F20230801_115557%2FwebTVLogo%2Flogo_180x96.png" - } - ] - }, - { - "definitionType": "webTVSquare", - "listLogos": [ - { - "size": "150x150", - "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_canalplus_foot%2F20230801_115557%2FwebTVSquare%2Flogo_150x150.png" - } - ] - } - ], - "mobileData": { - "wifiForbidden": false, - "wifiSecuredOnly": false, - "everywhereChannel": true, - "nomadismAllowed": true, - "drmLevels": [ - { - "definition": "SD", - "securedTerminal": [ - "DRM-HW", - "DRM-SW" - ], - "unsecuredTerminal": [ - "DRM-HW", - "DRM-SW" - ] - }, - { - "definition": "HD", - "securedTerminal": [ - "DRM-HW", - "DRM-SW" - ], - "unsecuredTerminal": [ - "ND" - ] - } - ] - }, - "webdeviceData": { - "nomadismAllowed": true - }, - "technicalChannels": { - "live": [ - { - "techChannelId": "400417", - "type": "CLOUDTV", - "liveTargetURLRelativePath": "livetv_acces_limite_ctv", - "usi": 400417, - "isDRMized": true, - "csa5Disabled": true - } - ], - "npvr": [], - "startover": [] - } - }, - { - "name": "CANAL+SPORT", - "editoChannelId": "livetv_canal_sport", - "lcn": 40, - "idEPG": 35, - "epgAvailable": true, - "epgTextSubstitution": "", - "displayOrder": 40, - "csaCode": 1, - "slogan": "Plus de sport d'exception", - "catchupChannelId": "", - "newChannel": true, - "roamingBlocked": true, - "allowedDeviceCategories": [ - "M_ANDROID", - "M_IOS", - "M_TABLET_ANDROID", - "M_TABLET_IOS", - "W_AIRPLAY", - "W_CHROMECAST", - "W_LACLETV2", - "W_PC", - "W_SMARTTV", - "S_STB" - ], - "packages": [ - "PA_BQ_BASIC_I", - "PI_WHITELIST" - ], - "hasRightIAccess": true, - "hasRightMAccess": false, - "logos": [ - { - "definitionType": "mobileAppli", - "listLogos": [ - { - "size": "183x183", - "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_canal_sport%2F20230801_115557%2FmobileAppli%2Flogo_183x183.png" - } - ] - }, - { - "definitionType": "mobileAppliDark", - "listLogos": [ - { - "size": "183x183", - "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_canal_sport%2F20230801_115557%2FmobileAppliDark%2Flogo_183x183.png" - } - ] - }, - { - "definitionType": "webTVLogo", - "listLogos": [ - { - "size": "180x96", - "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_canal_sport%2F20230801_115557%2FwebTVLogo%2Flogo_180x96.png" - } - ] - }, - { - "definitionType": "webTVSquare", - "listLogos": [ - { - "size": "150x150", - "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_canal_sport%2F20230801_115557%2FwebTVSquare%2Flogo_150x150.png" - } - ] - } - ], - "mobileData": { - "wifiForbidden": false, - "wifiSecuredOnly": false, - "everywhereChannel": true, - "nomadismAllowed": true, - "drmLevels": [ - { - "definition": "SD", - "securedTerminal": [ - "DRM-HW", - "DRM-SW" - ], - "unsecuredTerminal": [ - "DRM-HW", - "DRM-SW" - ] - }, - { - "definition": "HD", - "securedTerminal": [ - "DRM-HW", - "DRM-SW" - ], - "unsecuredTerminal": [ - "ND" - ] - } - ] - }, - "webdeviceData": { - "nomadismAllowed": false - }, - "technicalChannels": { - "live": [ - { - "techChannelId": "400417", - "type": "CLOUDTV", - "liveTargetURLRelativePath": "livetv_acces_limite_ctv", - "usi": 400417, - "isDRMized": true, - "csa5Disabled": true - } - ], - "npvr": [], - "startover": [] - } - }, - { - "name": "CANAL+BOX OFFICE", - "editoChannelId": "livetv_canalplus_box_office", - "lcn": 41, - "idEPG": 3779, - "epgAvailable": true, - "epgTextSubstitution": "", - "displayOrder": 41, - "csaCode": 1, - "slogan": "Les plus grands succès du cinéma récent", - "catchupChannelId": "", - "newChannel": false, - "roamingBlocked": false, - "allowedDeviceCategories": [ - "M_ANDROID", - "M_IOS", - "M_TABLET_ANDROID", - "M_TABLET_IOS", - "W_AIRPLAY", - "W_CHROMECAST", - "W_LACLETV2", - "W_PC", - "W_SMARTTV", - "S_STB" - ], - "packages": [ - "PA_BQ_BASIC_I", - "PI_WHITELIST" - ], - "hasRightIAccess": true, - "hasRightMAccess": false, - "logos": [ - { - "definitionType": "mobileAppli", - "listLogos": [ - { - "size": "183x183", - "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_canalplus_box_office%2F20230801_115557%2FmobileAppli%2Flogo_183x183.png" - } - ] - }, - { - "definitionType": "mobileAppliDark", - "listLogos": [ - { - "size": "183x183", - "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_canalplus_box_office%2F20230801_115557%2FmobileAppliDark%2Flogo_183x183.png" - } - ] - }, - { - "definitionType": "webTVLogo", - "listLogos": [ - { - "size": "180x96", - "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_canalplus_box_office%2F20230801_115557%2FwebTVLogo%2Flogo_180x96.png" - } - ] - }, - { - "definitionType": "webTVSquare", - "listLogos": [ - { - "size": "150x150", - "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_canalplus_box_office%2F20230801_115557%2FwebTVSquare%2Flogo_150x150.png" - } - ] - } - ], - "mobileData": { - "wifiForbidden": false, - "wifiSecuredOnly": false, - "everywhereChannel": true, - "nomadismAllowed": true, - "drmLevels": [ - { - "definition": "SD", - "securedTerminal": [ - "DRM-HW", - "DRM-SW" - ], - "unsecuredTerminal": [ - "DRM-HW", - "DRM-SW" - ] - }, - { - "definition": "HD", - "securedTerminal": [ - "DRM-HW", - "DRM-SW" - ], - "unsecuredTerminal": [ - "ND" - ] - } - ] - }, - "webdeviceData": { - "nomadismAllowed": true - }, - "technicalChannels": { - "live": [ - { - "techChannelId": "400417", - "type": "CLOUDTV", - "liveTargetURLRelativePath": "livetv_acces_limite_ctv", - "usi": 400417, - "isDRMized": true, - "csa5Disabled": true - } - ], - "npvr": [], - "startover": [] - } - }, - { - "name": "CANAL+GRAND ECRAN", - "editoChannelId": "livetv_canalplus_grand_ecran", - "lcn": 42, - "idEPG": 3349, - "epgAvailable": true, - "epgTextSubstitution": "", - "displayOrder": 42, - "csaCode": 1, - "slogan": "Les films à avoir vus dans une vie", - "catchupChannelId": "", - "newChannel": true, - "roamingBlocked": false, - "allowedDeviceCategories": [ - "M_ANDROID", - "M_IOS", - "M_TABLET_ANDROID", - "M_TABLET_IOS", - "W_AIRPLAY", - "W_CHROMECAST", - "W_LACLETV2", - "W_PC", - "W_SMARTTV", - "S_STB" - ], - "packages": [ - "PA_BQ_BASIC_I", - "PI_WHITELIST" - ], - "hasRightIAccess": true, - "hasRightMAccess": false, - "logos": [ - { - "definitionType": "mobileAppli", - "listLogos": [ - { - "size": "183x183", - "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_canalplus_grand_ecran%2F20230801_115557%2FmobileAppli%2Flogo_183x183.png" - } - ] - }, - { - "definitionType": "mobileAppliDark", - "listLogos": [ - { - "size": "183x183", - "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_canalplus_grand_ecran%2F20230801_115557%2FmobileAppliDark%2Flogo_183x183.png" - } - ] - }, - { - "definitionType": "webTVLogo", - "listLogos": [ - { - "size": "180x96", - "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_canalplus_grand_ecran%2F20230801_115557%2FwebTVLogo%2Flogo_180x96.png" - } - ] - }, - { - "definitionType": "webTVSquare", - "listLogos": [ - { - "size": "150x150", - "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_canalplus_grand_ecran%2F20230801_115557%2FwebTVSquare%2Flogo_150x150.png" - } - ] - } - ], - "mobileData": { - "wifiForbidden": false, - "wifiSecuredOnly": false, - "everywhereChannel": true, - "nomadismAllowed": true, - "drmLevels": [ - { - "definition": "SD", - "securedTerminal": [ - "DRM-HW", - "DRM-SW" - ], - "unsecuredTerminal": [ - "DRM-HW", - "DRM-SW" - ] - }, - { - "definition": "HD", - "securedTerminal": [ - "DRM-HW", - "DRM-SW" - ], - "unsecuredTerminal": [ - "ND" - ] - } - ] - }, - "webdeviceData": { - "nomadismAllowed": false - }, - "technicalChannels": { - "live": [ - { - "techChannelId": "400417", - "type": "CLOUDTV", - "liveTargetURLRelativePath": "livetv_acces_limite_ctv", - "usi": 400417, - "isDRMized": true, - "csa5Disabled": true - } - ], - "npvr": [], - "startover": [] - } - }, - { - "name": "CANAL+CINEMA(S)", - "editoChannelId": "livetv_canal_cinema", - "lcn": 43, - "idEPG": 33, - "epgAvailable": true, - "epgTextSubstitution": "", - "displayOrder": 43, - "csaCode": 1, - "slogan": "La passion du cinéma", - "catchupChannelId": "", - "newChannel": true, - "roamingBlocked": true, - "allowedDeviceCategories": [ - "M_ANDROID", - "M_IOS", - "M_TABLET_ANDROID", - "M_TABLET_IOS", - "W_AIRPLAY", - "W_CHROMECAST", - "W_LACLETV2", - "W_PC", - "W_SMARTTV", - "S_STB" - ], - "packages": [ - "PA_BQ_BASIC_I", - "PI_WHITELIST" - ], - "hasRightIAccess": true, - "hasRightMAccess": false, - "logos": [ - { - "definitionType": "mobileAppli", - "listLogos": [ - { - "size": "183x183", - "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_canal_cinema%2F20230801_115557%2FmobileAppli%2Flogo_183x183.png" - } - ] - }, - { - "definitionType": "mobileAppliDark", - "listLogos": [ - { - "size": "183x183", - "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_canal_cinema%2F20230801_115557%2FmobileAppliDark%2Flogo_183x183.png" - } - ] - }, - { - "definitionType": "webTVLogo", - "listLogos": [ - { - "size": "180x96", - "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_canal_cinema%2F20230801_115557%2FwebTVLogo%2Flogo_180x96.png" - } - ] - }, - { - "definitionType": "webTVSquare", - "listLogos": [ - { - "size": "150x150", - "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_canal_cinema%2F20230801_115557%2FwebTVSquare%2Flogo_150x150.png" - } - ] - } - ], - "mobileData": { - "wifiForbidden": false, - "wifiSecuredOnly": false, - "everywhereChannel": true, - "nomadismAllowed": true, - "drmLevels": [ - { - "definition": "SD", - "securedTerminal": [ - "DRM-HW", - "DRM-SW" - ], - "unsecuredTerminal": [ - "DRM-HW", - "DRM-SW" - ] - }, - { - "definition": "HD", - "securedTerminal": [ - "DRM-HW", - "DRM-SW" - ], - "unsecuredTerminal": [ - "ND" - ] - } - ] - }, - "webdeviceData": { - "nomadismAllowed": false - }, - "technicalChannels": { - "live": [ - { - "techChannelId": "400417", - "type": "CLOUDTV", - "liveTargetURLRelativePath": "livetv_acces_limite_ctv", - "usi": 400417, - "isDRMized": true, - "csa5Disabled": true - } - ], - "npvr": [], - "startover": [] - } - }, - { - "name": "CANAL+SERIES", - "editoChannelId": "livetv_canalplus_series", - "lcn": 44, - "idEPG": 1563, - "epgAvailable": true, - "epgTextSubstitution": "", - "displayOrder": 44, - "csaCode": 1, - "slogan": "Toujours plus de grandes séries", - "catchupChannelId": "", - "newChannel": true, - "roamingBlocked": false, - "allowedDeviceCategories": [ - "M_ANDROID", - "M_IOS", - "M_TABLET_ANDROID", - "M_TABLET_IOS", - "W_AIRPLAY", - "W_CHROMECAST", - "W_LACLETV2", - "W_PC", - "W_SMARTTV", - "S_STB" - ], - "packages": [ - "PA_BQ_BASIC_I", - "PI_WHITELIST" - ], - "hasRightIAccess": true, - "hasRightMAccess": false, - "logos": [ - { - "definitionType": "mobileAppli", - "listLogos": [ - { - "size": "183x183", - "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_canalplus_series%2F20230801_125104%2FmobileAppli%2Flogo_183x183.png" - } - ] - }, - { - "definitionType": "mobileAppliDark", - "listLogos": [ - { - "size": "183x183", - "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_canalplus_series%2F20230801_125104%2FmobileAppliDark%2Flogo_183x183.png" - } - ] - }, - { - "definitionType": "webTVLogo", - "listLogos": [ - { - "size": "180x96", - "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_canalplus_series%2F20230801_125104%2FwebTVLogo%2Flogo_180x96.png" - } - ] - }, - { - "definitionType": "webTVSquare", - "listLogos": [ - { - "size": "150x150", - "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_canalplus_series%2F20230801_125104%2FwebTVSquare%2Flogo_150x150.png" - } - ] - } - ], - "mobileData": { - "wifiForbidden": false, - "wifiSecuredOnly": false, - "everywhereChannel": true, - "nomadismAllowed": true, - "drmLevels": [ - { - "definition": "SD", - "securedTerminal": [ - "DRM-HW", - "DRM-SW" - ], - "unsecuredTerminal": [ - "DRM-HW", - "DRM-SW" - ] - }, - { - "definition": "HD", - "securedTerminal": [ - "DRM-HW", - "DRM-SW" - ], - "unsecuredTerminal": [ - "ND" - ] - } - ] - }, - "webdeviceData": { - "nomadismAllowed": false - }, - "technicalChannels": { - "live": [ - { - "techChannelId": "400417", - "type": "CLOUDTV", - "liveTargetURLRelativePath": "livetv_acces_limite_ctv", - "usi": 400417, - "isDRMized": true, - "csa5Disabled": true - } - ], - "npvr": [], - "startover": [] - } - }, - { - "name": "CANAL+DOCS", - "editoChannelId": "livetv_canalplus_docs", - "lcn": 45, - "idEPG": 3347, - "epgAvailable": true, - "epgTextSubstitution": "", - "displayOrder": 45, - "csaCode": 1, - "slogan": "Et le monde se révèle", - "catchupChannelId": "", - "newChannel": true, - "roamingBlocked": false, - "allowedDeviceCategories": [ - "M_ANDROID", - "M_IOS", - "M_TABLET_ANDROID", - "M_TABLET_IOS", - "W_AIRPLAY", - "W_CHROMECAST", - "W_LACLETV2", - "W_PC", - "W_SMARTTV", - "S_STB" - ], - "packages": [ - "PA_BQ_BASIC_I", - "PI_WHITELIST" - ], - "hasRightIAccess": true, - "hasRightMAccess": false, - "logos": [ - { - "definitionType": "mobileAppli", - "listLogos": [ - { - "size": "183x183", - "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_canalplus_docs%2F20230801_115557%2FmobileAppli%2Flogo_183x183.png" - } - ] - }, - { - "definitionType": "mobileAppliDark", - "listLogos": [ - { - "size": "183x183", - "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_canalplus_docs%2F20230801_115557%2FmobileAppliDark%2Flogo_183x183.png" - } - ] - }, - { - "definitionType": "webTVLogo", - "listLogos": [ - { - "size": "180x96", - "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_canalplus_docs%2F20230801_115557%2FwebTVLogo%2Flogo_180x96.png" - } - ] - }, - { - "definitionType": "webTVSquare", - "listLogos": [ - { - "size": "150x150", - "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_canalplus_docs%2F20230801_115557%2FwebTVSquare%2Flogo_150x150.png" - } - ] - } - ], - "mobileData": { - "wifiForbidden": false, - "wifiSecuredOnly": false, - "everywhereChannel": true, - "nomadismAllowed": true, - "drmLevels": [ - { - "definition": "SD", - "securedTerminal": [ - "DRM-HW", - "DRM-SW" - ], - "unsecuredTerminal": [ - "DRM-HW", - "DRM-SW" - ] - }, - { - "definition": "HD", - "securedTerminal": [ - "DRM-HW", - "DRM-SW" - ], - "unsecuredTerminal": [ - "ND" - ] - } - ] - }, - "webdeviceData": { - "nomadismAllowed": false - }, - "technicalChannels": { - "live": [ - { - "techChannelId": "400417", - "type": "CLOUDTV", - "liveTargetURLRelativePath": "livetv_acces_limite_ctv", - "usi": 400417, - "isDRMized": true, - "csa5Disabled": true - } - ], - "npvr": [], - "startover": [] - } - }, - { - "name": "CANAL+kids", - "editoChannelId": "livetv_canalplus_kids", - "lcn": 46, - "idEPG": 3348, - "epgAvailable": true, - "epgTextSubstitution": "", - "displayOrder": 46, - "csaCode": 1, - "slogan": "voit grand pour les petits", - "catchupChannelId": "", - "newChannel": true, - "roamingBlocked": false, - "allowedDeviceCategories": [ - "M_ANDROID", - "M_IOS", - "M_TABLET_ANDROID", - "M_TABLET_IOS", - "W_AIRPLAY", - "W_CHROMECAST", - "W_LACLETV2", - "W_PC", - "W_SMARTTV", - "S_STB" - ], - "packages": [ - "PA_BQ_BASIC_I", - "PI_WHITELIST" - ], - "hasRightIAccess": true, - "hasRightMAccess": false, - "logos": [ - { - "definitionType": "mobileAppli", - "listLogos": [ - { - "size": "183x183", - "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_canalplus_kids%2F20230801_125104%2FmobileAppli%2Flogo_183x183.png" - } - ] - }, - { - "definitionType": "mobileAppliDark", - "listLogos": [ - { - "size": "183x183", - "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_canalplus_kids%2F20230801_125104%2FmobileAppliDark%2Flogo_183x183.png" - } - ] - }, - { - "definitionType": "webTVLogo", - "listLogos": [ - { - "size": "180x96", - "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_canalplus_kids%2F20230801_125104%2FwebTVLogo%2Flogo_180x96.png" - } - ] - }, - { - "definitionType": "webTVSquare", - "listLogos": [ - { - "size": "150x150", - "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_canalplus_kids%2F20230801_125104%2FwebTVSquare%2Flogo_150x150.png" - } - ] - } - ], - "mobileData": { - "wifiForbidden": false, - "wifiSecuredOnly": false, - "everywhereChannel": true, - "nomadismAllowed": true, - "drmLevels": [ - { - "definition": "SD", - "securedTerminal": [ - "DRM-HW", - "DRM-SW" - ], - "unsecuredTerminal": [ - "DRM-HW", - "DRM-SW" - ] - }, - { - "definition": "HD", - "securedTerminal": [ - "DRM-HW", - "DRM-SW" - ], - "unsecuredTerminal": [ - "ND" - ] - } - ] - }, - "webdeviceData": { - "nomadismAllowed": false - }, - "technicalChannels": { - "live": [ - { - "techChannelId": "400417", - "type": "CLOUDTV", - "liveTargetURLRelativePath": "livetv_acces_limite_ctv", - "usi": 400417, - "isDRMized": true, - "csa5Disabled": true - } - ], - "npvr": [], - "startover": [] - } - }, - { - "name": "BEIN SPORTS 1", - "editoChannelId": "livetv_beinsport1", - "lcn": 47, - "idEPG": 1290, - "epgAvailable": true, - "epgTextSubstitution": "", - "displayOrder": 47, - "csaCode": 1, - "slogan": "Le plus grand des spectacles", - "catchupChannelId": "catchuptv_BEINSPORTS", - "newChannel": false, - "roamingBlocked": true, - "allowedDeviceCategories": [ - "M_ANDROID", - "M_IOS", - "M_TABLET_ANDROID", - "M_TABLET_IOS", - "W_AIRPLAY", - "W_CHROMECAST", - "W_LACLETV2", - "W_SMARTTV", - "W_PC", - "S_STB" - ], - "packages": [ - "PA_Pack_Sport", - "PA_bouquet_bein_disneyplus", - "PA_pack_intense", - "PA_bouquet_divertissement_fibre", - "PA_beIN_SPORT", - "PA_bouquet_sport", - "PA_bouquet_divertissement_adsl", - "PI_WHITELIST" - ], - "hasRightIAccess": true, - "hasRightMAccess": false, - "logos": [ - { - "definitionType": "mobileAppli", - "listLogos": [ - { - "size": "183x183", - "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_beinsport1%2F20180417_151324%2FmobileAppli%2Flogo_183x183.png" - } - ] - }, - { - "definitionType": "mobileAppliDark", - "listLogos": [ - { - "size": "183x183", - "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_beinsport1%2F20180417_151324%2FmobileAppliDark%2Flogo_183x183.png" - } - ] - }, - { - "definitionType": "webTVLogo", - "listLogos": [ - { - "size": "180x96", - "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_beinsport1%2F20180417_151324%2FwebTVLogo%2Flogo_180x96.png" - } - ] - }, - { - "definitionType": "webTVSquare", - "listLogos": [ - { - "size": "150x150", - "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_beinsport1%2F20180417_151324%2FwebTVSquare%2Flogo_150x150.png" - } - ] - } - ], - "mobileData": { - "wifiForbidden": false, - "wifiSecuredOnly": false, - "everywhereChannel": true, - "nomadismAllowed": true, - "drmLevels": [ - { - "definition": "SD", - "securedTerminal": [ - "DRM-HW", - "DRM-SW" - ], - "unsecuredTerminal": [ - "DRM-HW", - "DRM-SW" - ] - }, - { - "definition": "HD", - "securedTerminal": [ - "DRM-HW", - "DRM-SW" - ], - "unsecuredTerminal": [ - "ND" - ] - } - ] - }, - "webdeviceData": { - "nomadismAllowed": true - }, - "technicalChannels": { - "live": [ - { - "techChannelId": "400025", - "type": "CLOUDTV", - "liveTargetURLRelativePath": "livetv_beinsports1_ctv", - "usi": 400025, - "isDRMized": true, - "csa5Disabled": true - } - ], - "npvr": [ - { - "externalId": "livetv_beinsports1_ctv", - "techChannelId": "400025", - "type": "CLOUDTV", - "usi": 400025, - "isDRMized": true, - "antiAdskipping": "DEACTIVATED", - "csa5Disabled": true - } - ], - "startover": [ - { - "externalId": "livetv_beinsports1_ctv", - "techChannelId": "400025", - "type": "CLOUDTV", - "usi": 400025, - "isDRMized": true, - "antiAdskipping": "DEACTIVATED", - "csa5Disabled": true - } - ] - } - }, - { - "name": "BEIN SPORTS 2", - "editoChannelId": "livetv_beinsport2", - "lcn": 48, - "idEPG": 1304, - "epgAvailable": true, - "epgTextSubstitution": "", - "displayOrder": 48, - "csaCode": 1, - "slogan": "Le plus grand des spectacles", - "catchupChannelId": "catchuptv_BEINSPORTS", - "newChannel": false, - "roamingBlocked": true, - "allowedDeviceCategories": [ - "M_ANDROID", - "M_IOS", - "M_TABLET_ANDROID", - "M_TABLET_IOS", - "W_AIRPLAY", - "W_CHROMECAST", - "W_LACLETV2", - "W_SMARTTV", - "W_PC", - "S_STB" - ], - "packages": [ - "PA_Pack_Sport", - "PA_bouquet_bein_disneyplus", - "PA_pack_intense", - "PA_bouquet_divertissement_fibre", - "PA_beIN_SPORT", - "PA_bouquet_sport", - "PA_bouquet_divertissement_adsl", - "PI_WHITELIST" - ], - "hasRightIAccess": true, - "hasRightMAccess": false, - "logos": [ - { - "definitionType": "mobileAppli", - "listLogos": [ - { - "size": "183x183", - "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_beinsport2%2F20180417_151448%2FmobileAppli%2Flogo_183x183.png" - } - ] - }, - { - "definitionType": "mobileAppliDark", - "listLogos": [ - { - "size": "183x183", - "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_beinsport2%2F20180417_151448%2FmobileAppliDark%2Flogo_183x183.png" - } - ] - }, - { - "definitionType": "webTVLogo", - "listLogos": [ - { - "size": "180x96", - "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_beinsport2%2F20180417_151448%2FwebTVLogo%2Flogo_180x96.png" - } - ] - }, - { - "definitionType": "webTVSquare", - "listLogos": [ - { - "size": "150x150", - "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_beinsport2%2F20180417_151448%2FwebTVSquare%2Flogo_150x150.png" - } - ] - } - ], - "mobileData": { - "wifiForbidden": false, - "wifiSecuredOnly": false, - "everywhereChannel": true, - "nomadismAllowed": true, - "drmLevels": [ - { - "definition": "SD", - "securedTerminal": [ - "DRM-HW", - "DRM-SW" - ], - "unsecuredTerminal": [ - "DRM-HW", - "DRM-SW" - ] - }, - { - "definition": "HD", - "securedTerminal": [ - "DRM-HW", - "DRM-SW" - ], - "unsecuredTerminal": [ - "ND" - ] - } - ] - }, - "webdeviceData": { - "nomadismAllowed": true - }, - "technicalChannels": { - "live": [ - { - "techChannelId": "400037", - "type": "CLOUDTV", - "liveTargetURLRelativePath": "livetv_beinsports_2_ctv", - "usi": 400037, - "isDRMized": true, - "csa5Disabled": true - } - ], - "npvr": [ - { - "externalId": "livetv_beinsports_2_ctv", - "techChannelId": "400037", - "type": "CLOUDTV", - "usi": 400037, - "isDRMized": true, - "antiAdskipping": "DEACTIVATED", - "csa5Disabled": true - } - ], - "startover": [ - { - "externalId": "livetv_beinsports_2_ctv", - "techChannelId": "400037", - "type": "CLOUDTV", - "usi": 400037, - "isDRMized": true, - "antiAdskipping": "DEACTIVATED", - "csa5Disabled": true - } - ] - } - }, - { - "name": "BEIN SPORTS 3", - "editoChannelId": "livetv_beinsportsmax3", - "lcn": 49, - "idEPG": 1335, - "epgAvailable": true, - "epgTextSubstitution": "", - "displayOrder": 49, - "csaCode": 1, - "slogan": "Le plus grand des spectacles", - "catchupChannelId": "catchuptv_BEINSPORTS", - "newChannel": false, - "roamingBlocked": true, - "allowedDeviceCategories": [ - "M_ANDROID", - "M_IOS", - "M_TABLET_ANDROID", - "M_TABLET_IOS", - "W_AIRPLAY", - "W_CHROMECAST", - "W_LACLETV2", - "W_SMARTTV", - "W_PC", - "S_STB" - ], - "packages": [ - "PA_Pack_Sport", - "PA_bouquet_bein_disneyplus", - "PA_pack_intense", - "PA_bouquet_divertissement_fibre", - "PA_beIN_SPORT", - "PA_bouquet_sport", - "PA_bouquet_divertissement_adsl", - "PI_WHITELIST" - ], - "hasRightIAccess": true, - "hasRightMAccess": false, - "logos": [ - { - "definitionType": "mobileAppli", - "listLogos": [ - { - "size": "183x183", - "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_beinsportsmax3%2F20180417_151549%2FmobileAppli%2Flogo_183x183.png" - } - ] - }, - { - "definitionType": "mobileAppliDark", - "listLogos": [ - { - "size": "183x183", - "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_beinsportsmax3%2F20180417_151549%2FmobileAppliDark%2Flogo_183x183.png" - } - ] - }, - { - "definitionType": "webTVLogo", - "listLogos": [ - { - "size": "180x96", - "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_beinsportsmax3%2F20180417_151549%2FwebTVLogo%2Flogo_180x96.png" - } - ] - }, - { - "definitionType": "webTVSquare", - "listLogos": [ - { - "size": "150x150", - "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_beinsportsmax3%2F20180417_151549%2FwebTVSquare%2Flogo_150x150.png" - } - ] - } - ], - "mobileData": { - "wifiForbidden": false, - "wifiSecuredOnly": false, - "everywhereChannel": true, - "nomadismAllowed": true, - "drmLevels": [ - { - "definition": "SD", - "securedTerminal": [ - "DRM-HW", - "DRM-SW" - ], - "unsecuredTerminal": [ - "DRM-HW", - "DRM-SW" - ] - }, - { - "definition": "HD", - "securedTerminal": [ - "DRM-HW", - "DRM-SW" - ], - "unsecuredTerminal": [ - "ND" - ] - } - ] - }, - "webdeviceData": { - "nomadismAllowed": true - }, - "technicalChannels": { - "live": [ - { - "techChannelId": "400038", - "type": "CLOUDTV", - "liveTargetURLRelativePath": "livetv_beinsports_3_ctv", - "usi": 400038, - "isDRMized": true, - "csa5Disabled": true - } - ], - "npvr": [ - { - "externalId": "livetv_beinsports_3_ctv", - "techChannelId": "400038", - "type": "CLOUDTV", - "usi": 400038, - "isDRMized": true, - "antiAdskipping": "DEACTIVATED", - "csa5Disabled": true - } - ], - "startover": [ - { - "externalId": "livetv_beinsports_3_ctv", - "techChannelId": "400038", - "type": "CLOUDTV", - "usi": 400038, - "isDRMized": true, - "antiAdskipping": "DEACTIVATED", - "csa5Disabled": true - } - ] - } - }, - { - "name": "OCS MAX", - "editoChannelId": "livetv_orange_cine_max", - "lcn": 51, - "idEPG": 730, - "epgAvailable": true, - "epgTextSubstitution": "", - "displayOrder": 51, - "csaCode": 1, - "slogan": "Le grand spectacle pour toute la famille", - "catchupChannelId": "catchuptv_ocsgo", - "newChannel": false, - "roamingBlocked": true, - "allowedDeviceCategories": [ - "M_ANDROID", - "M_IOS", - "M_TABLET_ANDROID", - "M_TABLET_IOS", - "W_AIRPLAY", - "W_CHROMECAST", - "W_LACLETV2", - "W_PC", - "W_SMARTTV", - "S_STB" - ], - "packages": [ - "PA_pack_Divertissement", - "PA_pack_cineseries", - "PA_orange_cinema_series", - "PA_BQ_OCS_M", - "PA_pack_intense", - "PA_bouquet_divertissement_fibre", - "PA_bouquet_cineseries", - "PA_bouquet_divertissement_adsl", - "PI_WHITELIST" - ], - "hasRightIAccess": true, - "hasRightMAccess": true, - "logos": [ - { - "definitionType": "mobileAppli", - "listLogos": [ - { - "size": "183x183", - "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_orange_cine_max%2F20221212_170133%2FmobileAppli%2Flogo_183x183.png" - } - ] - }, - { - "definitionType": "mobileAppliDark", - "listLogos": [ - { - "size": "183x183", - "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_orange_cine_max%2F20221212_170133%2FmobileAppliDark%2Flogo_183x183.png" - } - ] - }, - { - "definitionType": "webTVLogo", - "listLogos": [ - { - "size": "180x96", - "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_orange_cine_max%2F20221212_170133%2FwebTVLogo%2Flogo_180x96.png" - } - ] - }, - { - "definitionType": "webTVSquare", - "listLogos": [ - { - "size": "150x150", - "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_orange_cine_max%2F20221212_170133%2FwebTVSquare%2Flogo_150x150.png" - } - ] - } - ], - "mobileData": { - "wifiForbidden": false, - "wifiSecuredOnly": true, - "everywhereChannel": true, - "nomadismAllowed": true, - "drmLevels": [ - { - "definition": "SD", - "securedTerminal": [ - "DRM-HW", - "DRM-SW" - ], - "unsecuredTerminal": [ - "DRM-HW", - "DRM-SW" - ] - }, - { - "definition": "HD", - "securedTerminal": [ - "DRM-HW" - ], - "unsecuredTerminal": [ - "ND" - ] - } - ] - }, - "webdeviceData": { - "nomadismAllowed": true - }, - "technicalChannels": { - "live": [ - { - "techChannelId": "400026", - "type": "CLOUDTV", - "liveTargetURLRelativePath": "livetv_ocsmax_ctv", - "usi": 400026, - "isDRMized": true, - "csa5Disabled": true - } - ], - "npvr": [ - { - "externalId": "livetv_ocsmax_ctv", - "techChannelId": "400026", - "type": "CLOUDTV", - "usi": 400026, - "isDRMized": true, - "antiAdskipping": "DEACTIVATED", - "csa5Disabled": true - } - ], - "startover": [ - { - "externalId": "livetv_ocsmax_ctv", - "techChannelId": "400026", - "type": "CLOUDTV", - "usi": 400026, - "isDRMized": true, - "antiAdskipping": "DEACTIVATED", - "csa5Disabled": true - } - ] - } - }, - { - "name": "OCS PULP", - "editoChannelId": "livetv_orange_cine_choc", - "lcn": 52, - "idEPG": 732, - "epgAvailable": true, - "epgTextSubstitution": "", - "displayOrder": 52, - "csaCode": 1, - "slogan": "Sensations fortes et cinéma indé", - "catchupChannelId": "catchuptv_ocsgo", - "newChannel": true, - "roamingBlocked": true, - "allowedDeviceCategories": [ - "M_ANDROID", - "M_IOS", - "M_TABLET_ANDROID", - "M_TABLET_IOS", - "W_AIRPLAY", - "W_CHROMECAST", - "W_LACLETV2", - "W_PC", - "W_SMARTTV", - "S_STB" - ], - "packages": [ - "PA_pack_Divertissement", - "PA_pack_cineseries", - "PA_orange_cinema_series", - "PA_BQ_OCS_M", - "PA_pack_intense", - "PA_bouquet_divertissement_fibre", - "PA_bouquet_cineseries", - "PA_bouquet_divertissement_adsl", - "PI_WHITELIST" - ], - "hasRightIAccess": true, - "hasRightMAccess": true, - "logos": [ - { - "definitionType": "mobileAppli", - "listLogos": [ - { - "size": "183x183", - "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_orange_cine_choc%2F20230125_161654%2FmobileAppli%2Flogo_183x183.png" - } - ] - }, - { - "definitionType": "mobileAppliDark", - "listLogos": [ - { - "size": "183x183", - "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_orange_cine_choc%2F20230125_161654%2FmobileAppliDark%2Flogo_183x183.png" - } - ] - }, - { - "definitionType": "webTVLogo", - "listLogos": [ - { - "size": "180x96", - "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_orange_cine_choc%2F20230125_161654%2FwebTVLogo%2Flogo_180x96.png" - } - ] - }, - { - "definitionType": "webTVSquare", - "listLogos": [ - { - "size": "150x150", - "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_orange_cine_choc%2F20230125_161654%2FwebTVSquare%2Flogo_150x150.png" - } - ] - } - ], - "mobileData": { - "wifiForbidden": false, - "wifiSecuredOnly": true, - "everywhereChannel": true, - "nomadismAllowed": true, - "drmLevels": [ - { - "definition": "SD", - "securedTerminal": [ - "DRM-HW", - "DRM-SW" - ], - "unsecuredTerminal": [ - "DRM-HW", - "DRM-SW" - ] - }, - { - "definition": "HD", - "securedTerminal": [ - "DRM-HW" - ], - "unsecuredTerminal": [ - "ND" - ] - } - ] - }, - "webdeviceData": { - "nomadismAllowed": true - }, - "technicalChannels": { - "live": [ - { - "techChannelId": "400027", - "type": "CLOUDTV", - "liveTargetURLRelativePath": "livetv_ocschoc_ctv", - "usi": 400027, - "isDRMized": true, - "csa5Disabled": true - } - ], - "npvr": [ - { - "externalId": "livetv_ocschoc_ctv", - "techChannelId": "400027", - "type": "CLOUDTV", - "usi": 400027, - "isDRMized": true, - "antiAdskipping": "DEACTIVATED", - "csa5Disabled": true - } - ], - "startover": [ - { - "externalId": "livetv_ocschoc_ctv", - "techChannelId": "400027", - "type": "CLOUDTV", - "usi": 400027, - "isDRMized": true, - "antiAdskipping": "DEACTIVATED", - "csa5Disabled": true - } - ] - } - }, - { - "name": "OCS GEANTS", - "editoChannelId": "livetv_orange_cine_geants", - "lcn": 53, - "idEPG": 734, - "epgAvailable": true, - "epgTextSubstitution": "", - "displayOrder": 53, - "csaCode": 1, - "slogan": "La chaîne des films de légende", - "catchupChannelId": "catchuptv_ocsgo", - "newChannel": false, - "roamingBlocked": true, - "allowedDeviceCategories": [ - "M_ANDROID", - "M_IOS", - "M_TABLET_ANDROID", - "M_TABLET_IOS", - "W_AIRPLAY", - "W_CHROMECAST", - "W_LACLETV2", - "W_PC", - "W_SMARTTV", - "S_STB" - ], - "packages": [ - "PA_pack_Divertissement", - "PA_pack_cineseries", - "PA_orange_cinema_series", - "PA_BQ_OCS_M", - "PA_pack_intense", - "PA_bouquet_divertissement_fibre", - "PA_bouquet_cineseries", - "PA_bouquet_divertissement_adsl", - "PI_WHITELIST" - ], - "hasRightIAccess": true, - "hasRightMAccess": true, - "logos": [ - { - "definitionType": "mobileAppli", - "listLogos": [ - { - "size": "183x183", - "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_orange_cine_geants%2F20221212_170133%2FmobileAppli%2Flogo_183x183.png" - } - ] - }, - { - "definitionType": "mobileAppliDark", - "listLogos": [ - { - "size": "183x183", - "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_orange_cine_geants%2F20221212_170133%2FmobileAppliDark%2Flogo_183x183.png" - } - ] - }, - { - "definitionType": "webTVLogo", - "listLogos": [ - { - "size": "180x96", - "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_orange_cine_geants%2F20221212_170133%2FwebTVLogo%2Flogo_180x96.png" - } - ] - }, - { - "definitionType": "webTVSquare", - "listLogos": [ - { - "size": "150x150", - "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_orange_cine_geants%2F20221212_170133%2FwebTVSquare%2Flogo_150x150.png" - } - ] - } - ], - "mobileData": { - "wifiForbidden": false, - "wifiSecuredOnly": true, - "everywhereChannel": true, - "nomadismAllowed": true, - "drmLevels": [ - { - "definition": "SD", - "securedTerminal": [ - "DRM-HW", - "DRM-SW" - ], - "unsecuredTerminal": [ - "DRM-HW", - "DRM-SW" - ] - }, - { - "definition": "HD", - "securedTerminal": [ - "DRM-HW" - ], - "unsecuredTerminal": [ - "ND" - ] - } - ] - }, - "webdeviceData": { - "nomadismAllowed": true - }, - "technicalChannels": { - "live": [ - { - "techChannelId": "400040", - "type": "CLOUDTV", - "liveTargetURLRelativePath": "livetv_ocs_geants_ctv", - "usi": 400040, - "isDRMized": true, - "csa5Disabled": true - } - ], - "npvr": [ - { - "externalId": "livetv_ocs_geants_ctv", - "techChannelId": "400040", - "type": "CLOUDTV", - "usi": 400040, - "isDRMized": true, - "antiAdskipping": "DEACTIVATED", - "csa5Disabled": true - } - ], - "startover": [ - { - "externalId": "livetv_ocs_geants_ctv", - "techChannelId": "400040", - "type": "CLOUDTV", - "usi": 400040, - "isDRMized": true, - "antiAdskipping": "DEACTIVATED", - "csa5Disabled": true - } - ] - } - }, - { - "name": "PARAMOUNT CHANNEL", - "editoChannelId": "livetv_paramount", - "lcn": 55, - "idEPG": 1562, - "epgAvailable": true, - "epgTextSubstitution": "", - "displayOrder": 55, - "csaCode": 1, - "slogan": "La chaîne made in Hollywood", - "catchupChannelId": "catchuptv_paramount", - "newChannel": true, - "roamingBlocked": true, - "allowedDeviceCategories": [ - "M_ANDROID", - "M_IOS", - "M_TABLET_ANDROID", - "M_TABLET_IOS", - "W_AIRPLAY", - "W_CHROMECAST", - "W_LACLETV2", - "W_SMARTTV", - "W_PC", - "S_STB" - ], - "packages": [ - "PA_pack_Divertissement", - "PA_pack_cineseries", - "PA_bouquet_famille_disneyplus", - "PA_bouquet_cine", - "PA_pack_intense", - "PA_bouquet_divertissement_fibre", - "PA_bouquet_cineseries", - "PA_bouquet_famille_max", - "PA_bouquet_divertissement_adsl", - "PI_WHITELIST" - ], - "hasRightIAccess": true, - "hasRightMAccess": false, - "logos": [ - { - "definitionType": "mobileAppli", - "listLogos": [ - { - "size": "183x183", - "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_paramount%2F20151026_092415%2FmobileAppli%2Flogo_183x183.png" - } - ] - }, - { - "definitionType": "mobileAppliDark", - "listLogos": [ - { - "size": "183x183", - "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_paramount%2F20151026_092415%2FmobileAppliDark%2Flogo_183x183.png" - } - ] - }, - { - "definitionType": "webTVLogo", - "listLogos": [ - { - "size": "180x96", - "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_paramount%2F20151026_092415%2FwebTVLogo%2Flogo_180x96.png" - } - ] - }, - { - "definitionType": "webTVSquare", - "listLogos": [ - { - "size": "150x150", - "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_paramount%2F20151026_092415%2FwebTVSquare%2Flogo_150x150.png" - } - ] - } - ], - "mobileData": { - "wifiForbidden": false, - "wifiSecuredOnly": false, - "everywhereChannel": true, - "nomadismAllowed": true, - "drmLevels": [ - { - "definition": "SD", - "securedTerminal": [ - "DRM-HW", - "DRM-SW" - ], - "unsecuredTerminal": [ - "DRM-HW", - "DRM-SW" - ] - }, - { - "definition": "HD", - "securedTerminal": [ - "DRM-HW", - "DRM-SW" - ], - "unsecuredTerminal": [ - "ND" - ] - } - ] - }, - "webdeviceData": { - "nomadismAllowed": true - }, - "technicalChannels": { - "live": [ - { - "techChannelId": "400078", - "type": "CLOUDTV", - "liveTargetURLRelativePath": "livetv_paramount_channel_ctv", - "usi": 400078, - "isDRMized": true, - "csa5Disabled": true - } - ], - "npvr": [ - { - "externalId": "livetv_paramount_channel_ctv", - "techChannelId": "400078", - "type": "CLOUDTV", - "usi": 400078, - "isDRMized": true, - "antiAdskipping": "DEACTIVATED", - "csa5Disabled": true - } - ], - "startover": [] - } - }, - { - "name": "PARAMOUNT CHANNEL DECALE", - "editoChannelId": "livetv_paramountdec", - "lcn": 56, - "idEPG": 2072, - "epgAvailable": true, - "epgTextSubstitution": "", - "displayOrder": 56, - "csaCode": 1, - "slogan": "2 fois plus de films made in Hollywood", - "catchupChannelId": "", - "newChannel": true, - "roamingBlocked": true, - "allowedDeviceCategories": [ - "M_ANDROID", - "M_IOS", - "M_TABLET_ANDROID", - "M_TABLET_IOS", - "W_AIRPLAY", - "W_CHROMECAST", - "W_LACLETV2", - "W_SMARTTV", - "W_PC", - "S_STB" - ], - "packages": [ - "PA_pack_Divertissement", - "PA_pack_cineseries", - "PA_bouquet_famille_disneyplus", - "PA_bouquet_cine", - "PA_pack_intense", - "PA_bouquet_divertissement_fibre", - "PA_bouquet_cineseries", - "PA_bouquet_famille_max", - "PA_bouquet_divertissement_adsl", - "PI_WHITELIST" - ], - "hasRightIAccess": true, - "hasRightMAccess": false, - "logos": [ - { - "definitionType": "mobileAppli", - "listLogos": [ - { - "size": "183x183", - "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_paramountdec%2F20170807_155154%2FmobileAppli%2Flogo_183x183.png" - } - ] - }, - { - "definitionType": "mobileAppliDark", - "listLogos": [ - { - "size": "183x183", - "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_paramountdec%2F20170807_155154%2FmobileAppliDark%2Flogo_183x183.png" - } - ] - }, - { - "definitionType": "webTVLogo", - "listLogos": [ - { - "size": "180x96", - "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_paramountdec%2F20170807_155154%2FwebTVLogo%2Flogo_180x96.png" - } - ] - }, - { - "definitionType": "webTVSquare", - "listLogos": [ - { - "size": "150x150", - "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_paramountdec%2F20170807_155154%2FwebTVSquare%2Flogo_150x150.png" - } - ] - } - ], - "mobileData": { - "wifiForbidden": false, - "wifiSecuredOnly": false, - "everywhereChannel": true, - "nomadismAllowed": true, - "drmLevels": [ - { - "definition": "SD", - "securedTerminal": [ - "DRM-HW", - "DRM-SW" - ], - "unsecuredTerminal": [ - "DRM-HW", - "DRM-SW" - ] - }, - { - "definition": "HD", - "securedTerminal": [ - "DRM-HW", - "DRM-SW" - ], - "unsecuredTerminal": [ - "ND" - ] - } - ] - }, - "webdeviceData": { - "nomadismAllowed": true - }, - "technicalChannels": { - "live": [ - { - "techChannelId": "400079", - "type": "CLOUDTV", - "liveTargetURLRelativePath": "livetv_paramount_channel_decale_ctv", - "usi": 400079, - "isDRMized": true, - "csa5Disabled": true - } - ], - "npvr": [ - { - "externalId": "livetv_paramount_channel_decale_ctv", - "techChannelId": "400079", - "type": "CLOUDTV", - "usi": 400079, - "isDRMized": true, - "antiAdskipping": "DEACTIVATED", - "csa5Disabled": true - } - ], - "startover": [] - } - }, - { - "name": "TCM CINEMA", - "editoChannelId": "livetv_tcm", - "lcn": 57, - "idEPG": 185, - "epgAvailable": true, - "epgTextSubstitution": "", - "displayOrder": 57, - "csaCode": 1, - "slogan": "Le meilleur du cinéma américain", - "catchupChannelId": "catchuptv_tcm", - "newChannel": false, - "roamingBlocked": true, - "allowedDeviceCategories": [ - "M_ANDROID", - "M_IOS", - "M_TABLET_ANDROID", - "M_TABLET_IOS", - "W_AIRPLAY", - "W_CHROMECAST", - "W_LACLETV2", - "W_SMARTTV", - "W_PC", - "S_STB" - ], - "packages": [ - "PA_pack_Divertissement", - "PA_pack_cineseries", - "PA_bouquet_cine", - "PA_pack_intense", - "PA_bouquet_divertissement_fibre", - "PA_bouquet_cineseries", - "PA_bouquet_divertissement_adsl", - "PI_WHITELIST" - ], - "hasRightIAccess": true, - "hasRightMAccess": false, - "logos": [ - { - "definitionType": "mobileAppli", - "listLogos": [ - { - "size": "183x183", - "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_tcm%2F20190822_090621%2FmobileAppli%2Flogo_183x183.png" - } - ] - }, - { - "definitionType": "mobileAppliDark", - "listLogos": [ - { - "size": "183x183", - "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_tcm%2F20190822_090621%2FmobileAppliDark%2Flogo_183x183.png" - } - ] - }, - { - "definitionType": "webTVLogo", - "listLogos": [ - { - "size": "180x96", - "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_tcm%2F20190822_090621%2FwebTVLogo%2Flogo_180x96.png" - } - ] - }, - { - "definitionType": "webTVSquare", - "listLogos": [ - { - "size": "150x150", - "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_tcm%2F20190822_090621%2FwebTVSquare%2Flogo_150x150.png" - } - ] - } - ], - "mobileData": { - "wifiForbidden": false, - "wifiSecuredOnly": false, - "everywhereChannel": true, - "nomadismAllowed": true, - "drmLevels": [ - { - "definition": "SD", - "securedTerminal": [ - "DRM-HW", - "DRM-SW" - ], - "unsecuredTerminal": [ - "DRM-HW", - "DRM-SW" - ] - }, - { - "definition": "HD", - "securedTerminal": [ - "DRM-HW", - "DRM-SW" - ], - "unsecuredTerminal": [ - "ND" - ] - } - ] - }, - "webdeviceData": { - "nomadismAllowed": true - }, - "technicalChannels": { - "live": [ - { - "techChannelId": "400028", - "type": "CLOUDTV", - "liveTargetURLRelativePath": "livetv_tcmcinema_ctv", - "usi": 400028, - "isDRMized": true, - "csa5Disabled": true - } - ], - "npvr": [ - { - "externalId": "livetv_tcmcinema_ctv", - "techChannelId": "400028", - "type": "CLOUDTV", - "usi": 400028, - "isDRMized": true, - "antiAdskipping": "DEACTIVATED", - "csa5Disabled": true - } - ], - "startover": [] - } - }, - { - "name": "ACTION", - "editoChannelId": "livetv_action", - "lcn": 58, - "idEPG": 10, - "epgAvailable": true, - "epgTextSubstitution": "", - "displayOrder": 58, - "csaCode": 1, - "slogan": "La chaîne 100% adrénaline", - "catchupChannelId": "catchuptv_action", - "newChannel": true, - "roamingBlocked": true, - "allowedDeviceCategories": [ - "M_ANDROID", - "M_IOS", - "M_TABLET_ANDROID", - "M_TABLET_IOS", - "W_AIRPLAY", - "W_CHROMECAST", - "W_LACLETV2", - "W_SMARTTV", - "W_PC", - "S_STB" - ], - "packages": [ - "PA_pack_Divertissement", - "PA_pack_cineseries", - "PA_bouquet_cine", - "PA_pack_intense", - "PA_bouquet_divertissement_fibre", - "PA_bouquet_cineseries", - "PA_bouquet_divertissement_adsl", - "PI_WHITELIST" - ], - "hasRightIAccess": true, - "hasRightMAccess": false, - "logos": [ - { - "definitionType": "mobileAppli", - "listLogos": [ - { - "size": "183x183", - "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_action%2F20151026_092415%2FmobileAppli%2Flogo_183x183.png" - } - ] - }, - { - "definitionType": "mobileAppliDark", - "listLogos": [ - { - "size": "183x183", - "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_action%2F20151026_092415%2FmobileAppliDark%2Flogo_183x183.png" - } - ] - }, - { - "definitionType": "webTVLogo", - "listLogos": [ - { - "size": "180x96", - "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_action%2F20151026_092415%2FwebTVLogo%2Flogo_180x96.png" - } - ] - }, - { - "definitionType": "webTVSquare", - "listLogos": [ - { - "size": "150x150", - "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_action%2F20151026_092415%2FwebTVSquare%2Flogo_150x150.png" - } - ] - } - ], - "mobileData": { - "wifiForbidden": false, - "wifiSecuredOnly": false, - "everywhereChannel": true, - "nomadismAllowed": true, - "drmLevels": [ - { - "definition": "SD", - "securedTerminal": [ - "DRM-HW", - "DRM-SW" - ], - "unsecuredTerminal": [ - "DRM-HW", - "DRM-SW" - ] - }, - { - "definition": "HD", - "securedTerminal": [ - "DRM-HW", - "DRM-SW" - ], - "unsecuredTerminal": [ - "ND" - ] - } - ] - }, - "webdeviceData": { - "nomadismAllowed": true - }, - "technicalChannels": { - "live": [ - { - "techChannelId": "400080", - "type": "CLOUDTV", - "liveTargetURLRelativePath": "livetv_action_ctv", - "usi": 400080, - "isDRMized": true, - "csa5Disabled": true - } - ], - "npvr": [ - { - "externalId": "livetv_action_ctv", - "techChannelId": "400080", - "type": "CLOUDTV", - "usi": 400080, - "isDRMized": true, - "antiAdskipping": "DEACTIVATED", - "csa5Disabled": true - } - ], - "startover": [] - } - }, - { - "name": "CINE+PREMIER", - "editoChannelId": "livetv_cineplus_premier", - "lcn": 59, - "idEPG": 282, - "epgAvailable": true, - "epgTextSubstitution": "", - "displayOrder": 59, - "csaCode": 1, - "slogan": "Quand le cinéma crée l'événement", - "catchupChannelId": "catchuptv_cineplusalademande", - "newChannel": false, - "roamingBlocked": true, - "allowedDeviceCategories": [ - "M_ANDROID", - "M_IOS", - "M_TABLET_ANDROID", - "M_TABLET_IOS", - "W_AIRPLAY", - "W_CHROMECAST", - "W_LACLETV2", - "W_SMARTTV", - "W_PC", - "S_STB" - ], - "packages": [ - "PA_pack_cineseries", - "PA_bouquet_cine", - "PA_pack_intense", - "PI_WHITELIST" - ], - "hasRightIAccess": true, - "hasRightMAccess": false, - "logos": [ - { - "definitionType": "mobileAppli", - "listLogos": [ - { - "size": "183x183", - "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_cineplus_premier%2F20221110_120745%2FmobileAppli%2Flogo_183x183.png" - } - ] - }, - { - "definitionType": "mobileAppliDark", - "listLogos": [ - { - "size": "183x183", - "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_cineplus_premier%2F20221110_120745%2FmobileAppliDark%2Flogo_183x183.png" - } - ] - }, - { - "definitionType": "webTVLogo", - "listLogos": [ - { - "size": "180x96", - "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_cineplus_premier%2F20221110_120745%2FwebTVLogo%2Flogo_180x96.png" - } - ] - }, - { - "definitionType": "webTVSquare", - "listLogos": [ - { - "size": "150x150", - "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_cineplus_premier%2F20221110_120745%2FwebTVSquare%2Flogo_150x150.png" - } - ] - } - ], - "mobileData": { - "wifiForbidden": false, - "wifiSecuredOnly": false, - "everywhereChannel": true, - "nomadismAllowed": true, - "drmLevels": [ - { - "definition": "SD", - "securedTerminal": [ - "DRM-HW", - "DRM-SW" - ], - "unsecuredTerminal": [ - "DRM-HW", - "DRM-SW" - ] - }, - { - "definition": "HD", - "securedTerminal": [ - "DRM-HW" - ], - "unsecuredTerminal": [ - "ND" - ] - } - ] - }, - "webdeviceData": { - "nomadismAllowed": true - }, - "technicalChannels": { - "live": [ - { - "techChannelId": "400041", - "type": "CLOUDTV", - "liveTargetURLRelativePath": "livetv_cine_premier_ctv", - "usi": 400041, - "isDRMized": true, - "csa5Disabled": true - } - ], - "npvr": [ - { - "externalId": "livetv_cine_premier_ctv", - "techChannelId": "400041", - "type": "CLOUDTV", - "usi": 400041, - "isDRMized": true, - "antiAdskipping": "DEACTIVATED", - "csa5Disabled": true - } - ], - "startover": [] - } - }, - { - "name": "CINE+FRISSON", - "editoChannelId": "livetv_cineplus_frisson", - "lcn": 60, - "idEPG": 284, - "epgAvailable": true, - "epgTextSubstitution": "", - "displayOrder": 60, - "csaCode": 1, - "slogan": "Le cinéma sous haute tension", - "catchupChannelId": "catchuptv_cineplusalademande", - "newChannel": false, - "roamingBlocked": true, - "allowedDeviceCategories": [ - "M_ANDROID", - "M_IOS", - "M_TABLET_ANDROID", - "M_TABLET_IOS", - "W_AIRPLAY", - "W_CHROMECAST", - "W_LACLETV2", - "W_SMARTTV", - "W_PC", - "S_STB" - ], - "packages": [ - "PA_pack_cineseries", - "PA_bouquet_cine", - "PA_pack_intense", - "PI_WHITELIST" - ], - "hasRightIAccess": true, - "hasRightMAccess": false, - "logos": [ - { - "definitionType": "mobileAppli", - "listLogos": [ - { - "size": "183x183", - "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_cineplus_frisson%2F20221110_120745%2FmobileAppli%2Flogo_183x183.png" - } - ] - }, - { - "definitionType": "mobileAppliDark", - "listLogos": [ - { - "size": "183x183", - "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_cineplus_frisson%2F20221110_120745%2FmobileAppliDark%2Flogo_183x183.png" - } - ] - }, - { - "definitionType": "webTVLogo", - "listLogos": [ - { - "size": "180x96", - "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_cineplus_frisson%2F20221110_120745%2FwebTVLogo%2Flogo_180x96.png" - } - ] - }, - { - "definitionType": "webTVSquare", - "listLogos": [ - { - "size": "150x150", - "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_cineplus_frisson%2F20221110_120745%2FwebTVSquare%2Flogo_150x150.png" - } - ] - } - ], - "mobileData": { - "wifiForbidden": false, - "wifiSecuredOnly": false, - "everywhereChannel": true, - "nomadismAllowed": true, - "drmLevels": [ - { - "definition": "SD", - "securedTerminal": [ - "DRM-HW", - "DRM-SW" - ], - "unsecuredTerminal": [ - "DRM-HW", - "DRM-SW" - ] - }, - { - "definition": "HD", - "securedTerminal": [ - "DRM-HW" - ], - "unsecuredTerminal": [ - "ND" - ] - } - ] - }, - "webdeviceData": { - "nomadismAllowed": true - }, - "technicalChannels": { - "live": [ - { - "techChannelId": "400081", - "type": "CLOUDTV", - "liveTargetURLRelativePath": "livetv_cine_frisson_ctv", - "usi": 400081, - "isDRMized": true, - "csa5Disabled": true - } - ], - "npvr": [ - { - "externalId": "livetv_cine_frisson_ctv", - "techChannelId": "400081", - "type": "CLOUDTV", - "usi": 400081, - "isDRMized": true, - "antiAdskipping": "DEACTIVATED", - "csa5Disabled": true - } - ], - "startover": [] - } - }, - { - "name": "CINE+EMOTION", - "editoChannelId": "livetv_cineplus_emotion", - "lcn": 61, - "idEPG": 283, - "epgAvailable": true, - "epgTextSubstitution": "", - "displayOrder": 61, - "csaCode": 1, - "slogan": "Le cinéma, à la folie, passionnément", - "catchupChannelId": "catchuptv_cineplusalademande", - "newChannel": false, - "roamingBlocked": true, - "allowedDeviceCategories": [ - "M_ANDROID", - "M_IOS", - "M_TABLET_ANDROID", - "M_TABLET_IOS", - "W_AIRPLAY", - "W_CHROMECAST", - "W_LACLETV2", - "W_SMARTTV", - "W_PC", - "S_STB" - ], - "packages": [ - "PA_pack_cineseries", - "PA_bouquet_cine", - "PA_pack_intense", - "PI_WHITELIST" - ], - "hasRightIAccess": true, - "hasRightMAccess": false, - "logos": [ - { - "definitionType": "mobileAppli", - "listLogos": [ - { - "size": "183x183", - "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_cineplus_emotion%2F20221110_120745%2FmobileAppli%2Flogo_183x183.png" - } - ] - }, - { - "definitionType": "mobileAppliDark", - "listLogos": [ - { - "size": "183x183", - "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_cineplus_emotion%2F20221110_120745%2FmobileAppliDark%2Flogo_183x183.png" - } - ] - }, - { - "definitionType": "webTVLogo", - "listLogos": [ - { - "size": "180x96", - "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_cineplus_emotion%2F20221110_120745%2FwebTVLogo%2Flogo_180x96.png" - } - ] - }, - { - "definitionType": "webTVSquare", - "listLogos": [ - { - "size": "150x150", - "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_cineplus_emotion%2F20221110_120745%2FwebTVSquare%2Flogo_150x150.png" - } - ] - } - ], - "mobileData": { - "wifiForbidden": false, - "wifiSecuredOnly": false, - "everywhereChannel": true, - "nomadismAllowed": true, - "drmLevels": [ - { - "definition": "SD", - "securedTerminal": [ - "DRM-HW", - "DRM-SW" - ], - "unsecuredTerminal": [ - "DRM-HW", - "DRM-SW" - ] - }, - { - "definition": "HD", - "securedTerminal": [ - "DRM-HW" - ], - "unsecuredTerminal": [ - "ND" - ] - } - ] - }, - "webdeviceData": { - "nomadismAllowed": true - }, - "technicalChannels": { - "live": [ - { - "techChannelId": "400082", - "type": "CLOUDTV", - "liveTargetURLRelativePath": "livetv_cine_emotion_ctv", - "usi": 400082, - "isDRMized": true, - "csa5Disabled": true - } - ], - "npvr": [ - { - "externalId": "livetv_cine_emotion_ctv", - "techChannelId": "400082", - "type": "CLOUDTV", - "usi": 400082, - "isDRMized": true, - "antiAdskipping": "DEACTIVATED", - "csa5Disabled": true - } - ], - "startover": [] - } - }, - { - "name": "CINE+FAMIZ", - "editoChannelId": "livetv_cineplus_famiz", - "lcn": 62, - "idEPG": 401, - "epgAvailable": true, - "epgTextSubstitution": "", - "displayOrder": 62, - "csaCode": 1, - "slogan": "Le cinéma qui a l'esprit de famille", - "catchupChannelId": "catchuptv_cineplusalademande", - "newChannel": false, - "roamingBlocked": true, - "allowedDeviceCategories": [ - "M_ANDROID", - "M_IOS", - "M_TABLET_ANDROID", - "M_TABLET_IOS", - "W_AIRPLAY", - "W_CHROMECAST", - "W_LACLETV2", - "W_SMARTTV", - "W_PC", - "S_STB" - ], - "packages": [ - "PA_pack_cineseries", - "PA_bouquet_cine", - "PA_pack_intense", - "PI_WHITELIST" - ], - "hasRightIAccess": true, - "hasRightMAccess": false, - "logos": [ - { - "definitionType": "mobileAppli", - "listLogos": [ - { - "size": "183x183", - "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_cineplus_famiz%2F20221110_120745%2FmobileAppli%2Flogo_183x183.png" - } - ] - }, - { - "definitionType": "mobileAppliDark", - "listLogos": [ - { - "size": "183x183", - "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_cineplus_famiz%2F20221110_120745%2FmobileAppliDark%2Flogo_183x183.png" - } - ] - }, - { - "definitionType": "webTVLogo", - "listLogos": [ - { - "size": "180x96", - "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_cineplus_famiz%2F20221110_120745%2FwebTVLogo%2Flogo_180x96.png" - } - ] - }, - { - "definitionType": "webTVSquare", - "listLogos": [ - { - "size": "150x150", - "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_cineplus_famiz%2F20221110_120745%2FwebTVSquare%2Flogo_150x150.png" - } - ] - } - ], - "mobileData": { - "wifiForbidden": false, - "wifiSecuredOnly": false, - "everywhereChannel": true, - "nomadismAllowed": true, - "drmLevels": [ - { - "definition": "SD", - "securedTerminal": [ - "DRM-HW", - "DRM-SW" - ], - "unsecuredTerminal": [ - "DRM-HW", - "DRM-SW" - ] - }, - { - "definition": "HD", - "securedTerminal": [ - "DRM-HW" - ], - "unsecuredTerminal": [ - "ND" - ] - } - ] - }, - "webdeviceData": { - "nomadismAllowed": true - }, - "technicalChannels": { - "live": [ - { - "techChannelId": "400083", - "type": "CLOUDTV", - "liveTargetURLRelativePath": "livetv_cine_famiz_ctv", - "usi": 400083, - "isDRMized": true, - "csa5Disabled": true - } - ], - "npvr": [ - { - "externalId": "livetv_cine_famiz_ctv", - "techChannelId": "400083", - "type": "CLOUDTV", - "usi": 400083, - "isDRMized": true, - "antiAdskipping": "DEACTIVATED", - "csa5Disabled": true - } - ], - "startover": [] - } - }, - { - "name": "CINE+CLUB", - "editoChannelId": "livetv_cineplus_club", - "lcn": 63, - "idEPG": 285, - "epgAvailable": true, - "epgTextSubstitution": "", - "displayOrder": 63, - "csaCode": 1, - "slogan": "Un regard plus libre sur le cinéma", - "catchupChannelId": "catchuptv_cineplusalademande", - "newChannel": false, - "roamingBlocked": true, - "allowedDeviceCategories": [ - "M_ANDROID", - "M_IOS", - "M_TABLET_ANDROID", - "M_TABLET_IOS", - "W_AIRPLAY", - "W_CHROMECAST", - "W_LACLETV2", - "W_PC", - "W_SMARTTV", - "S_STB" - ], - "packages": [ - "PA_pack_cineseries", - "PA_bouquet_cine", - "PA_pack_intense", - "PI_WHITELIST" - ], - "hasRightIAccess": true, - "hasRightMAccess": false, - "logos": [ - { - "definitionType": "mobileAppli", - "listLogos": [ - { - "size": "183x183", - "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_cineplus_club%2F20221110_120745%2FmobileAppli%2Flogo_183x183.png" - } - ] - }, - { - "definitionType": "mobileAppliDark", - "listLogos": [ - { - "size": "183x183", - "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_cineplus_club%2F20221110_120745%2FmobileAppliDark%2Flogo_183x183.png" - } - ] - }, - { - "definitionType": "webTVLogo", - "listLogos": [ - { - "size": "180x96", - "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_cineplus_club%2F20221110_120745%2FwebTVLogo%2Flogo_180x96.png" - } - ] - }, - { - "definitionType": "webTVSquare", - "listLogos": [ - { - "size": "150x150", - "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_cineplus_club%2F20221110_120745%2FwebTVSquare%2Flogo_150x150.png" - } - ] - } - ], - "mobileData": { - "wifiForbidden": false, - "wifiSecuredOnly": false, - "everywhereChannel": true, - "nomadismAllowed": true, - "drmLevels": [ - { - "definition": "SD", - "securedTerminal": [ - "DRM-HW", - "DRM-SW" - ], - "unsecuredTerminal": [ - "DRM-HW", - "DRM-SW" - ] - }, - { - "definition": "HD", - "securedTerminal": [ - "DRM-HW" - ], - "unsecuredTerminal": [ - "ND" - ] - } - ] - }, - "webdeviceData": { - "nomadismAllowed": true - }, - "technicalChannels": { - "live": [ - { - "techChannelId": "400084", - "type": "CLOUDTV", - "liveTargetURLRelativePath": "livetv_cine_club_ctv", - "usi": 400084, - "isDRMized": true, - "csa5Disabled": true - } - ], - "npvr": [ - { - "externalId": "livetv_cine_club_ctv", - "techChannelId": "400084", - "type": "CLOUDTV", - "usi": 400084, - "isDRMized": true, - "antiAdskipping": "DEACTIVATED", - "csa5Disabled": true - } - ], - "startover": [] - } - }, - { - "name": "CINE+CLASSIC", - "editoChannelId": "livetv_cineplus_classic", - "lcn": 64, - "idEPG": 287, - "epgAvailable": true, - "epgTextSubstitution": "", - "displayOrder": 64, - "csaCode": 1, - "slogan": "Les monstres sacrés du cinéma", - "catchupChannelId": "catchuptv_cineplusalademande", - "newChannel": false, - "roamingBlocked": true, - "allowedDeviceCategories": [ - "M_ANDROID", - "M_IOS", - "M_TABLET_ANDROID", - "M_TABLET_IOS", - "W_AIRPLAY", - "W_CHROMECAST", - "W_LACLETV2", - "W_PC", - "W_SMARTTV", - "S_STB" - ], - "packages": [ - "PA_pack_cineseries", - "PA_bouquet_cine", - "PA_pack_intense", - "PI_WHITELIST" - ], - "hasRightIAccess": true, - "hasRightMAccess": false, - "logos": [ - { - "definitionType": "mobileAppli", - "listLogos": [ - { - "size": "183x183", - "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_cineplus_classic%2F20221110_120745%2FmobileAppli%2Flogo_183x183.png" - } - ] - }, - { - "definitionType": "mobileAppliDark", - "listLogos": [ - { - "size": "183x183", - "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_cineplus_classic%2F20221110_120745%2FmobileAppliDark%2Flogo_183x183.png" - } - ] - }, - { - "definitionType": "webTVLogo", - "listLogos": [ - { - "size": "180x96", - "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_cineplus_classic%2F20221110_120745%2FwebTVLogo%2Flogo_180x96.png" - } - ] - }, - { - "definitionType": "webTVSquare", - "listLogos": [ - { - "size": "150x150", - "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_cineplus_classic%2F20221110_120745%2FwebTVSquare%2Flogo_150x150.png" - } - ] - } - ], - "mobileData": { - "wifiForbidden": false, - "wifiSecuredOnly": false, - "everywhereChannel": true, - "nomadismAllowed": true, - "drmLevels": [ - { - "definition": "SD", - "securedTerminal": [ - "DRM-HW", - "DRM-SW" - ], - "unsecuredTerminal": [ - "DRM-HW", - "DRM-SW" - ] - }, - { - "definition": "HD", - "securedTerminal": [ - "DRM-HW" - ], - "unsecuredTerminal": [ - "ND" - ] - } - ] - }, - "webdeviceData": { - "nomadismAllowed": true - }, - "technicalChannels": { - "live": [ - { - "techChannelId": "400085", - "type": "CLOUDTV", - "liveTargetURLRelativePath": "livetv_cine_classic_ctv", - "usi": 400085, - "isDRMized": true, - "csa5Disabled": true - } - ], - "npvr": [ - { - "externalId": "livetv_cine_classic_ctv", - "techChannelId": "400085", - "type": "CLOUDTV", - "usi": 400085, - "isDRMized": true, - "antiAdskipping": "DEACTIVATED", - "csa5Disabled": true - } - ], - "startover": [] - } - }, - { - "name": "EUROCHANNEL", - "editoChannelId": "livetv_eurochannel", - "lcn": 65, - "idEPG": 1190, - "epgAvailable": true, - "epgTextSubstitution": "", - "displayOrder": 65, - "csaCode": 1, - "slogan": "Le meilleur de l'Europe", - "catchupChannelId": "", - "newChannel": true, - "roamingBlocked": true, - "allowedDeviceCategories": [ - "M_ANDROID", - "M_IOS", - "M_TABLET_ANDROID", - "M_TABLET_IOS", - "W_AIRPLAY", - "W_CHROMECAST", - "W_LACLETV2", - "W_SMARTTV", - "W_PC", - "S_STB" - ], - "packages": [ - "PA_pack_cineseries", - "PA_pack_intense", - "PI_WHITELIST" - ], - "hasRightIAccess": true, - "hasRightMAccess": false, - "logos": [ - { - "definitionType": "mobileAppli", - "listLogos": [ - { - "size": "183x183", - "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_eurochannel%2F20151118_173140%2FmobileAppli%2Flogo_183x183.png" - } - ] - }, - { - "definitionType": "mobileAppliDark", - "listLogos": [ - { - "size": "183x183", - "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_eurochannel%2F20151118_173140%2FmobileAppliDark%2Flogo_183x183.png" - } - ] - }, - { - "definitionType": "webTVLogo", - "listLogos": [ - { - "size": "180x96", - "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_eurochannel%2F20151118_173140%2FwebTVLogo%2Flogo_180x96.png" - } - ] - }, - { - "definitionType": "webTVSquare", - "listLogos": [ - { - "size": "150x150", - "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_eurochannel%2F20151118_173140%2FwebTVSquare%2Flogo_150x150.png" - } - ] - } - ], - "mobileData": { - "wifiForbidden": false, - "wifiSecuredOnly": false, - "everywhereChannel": true, - "nomadismAllowed": true, - "drmLevels": [ - { - "definition": "SD", - "securedTerminal": [ - "DRM-HW", - "DRM-SW" - ], - "unsecuredTerminal": [ - "DRM-HW", - "DRM-SW" - ] - }, - { - "definition": "HD", - "securedTerminal": [ - "DRM-HW", - "DRM-SW" - ], - "unsecuredTerminal": [ - "ND" - ] - } - ] - }, - "webdeviceData": { - "nomadismAllowed": true - }, - "technicalChannels": { - "live": [ - { - "techChannelId": "400086", - "type": "CLOUDTV", - "liveTargetURLRelativePath": "livetv_eurochannel_ctv", - "usi": 400086, - "isDRMized": true, - "csa5Disabled": true - } - ], - "npvr": [ - { - "externalId": "livetv_eurochannel_ctv", - "techChannelId": "400086", - "type": "CLOUDTV", - "usi": 400086, - "isDRMized": true, - "antiAdskipping": "DEACTIVATED", - "csa5Disabled": true - } - ], - "startover": [] - } - }, - { - "name": "MTV", - "editoChannelId": "livetv_mtv", - "lcn": 73, - "idEPG": 128, - "epgAvailable": true, - "epgTextSubstitution": "", - "displayOrder": 73, - "csaCode": 1, - "slogan": "Plus ça pique plus c'est bon", - "catchupChannelId": "catchuptv_MTV", - "newChannel": false, - "roamingBlocked": true, - "allowedDeviceCategories": [ - "M_ANDROID", - "M_IOS", - "M_TABLET_ANDROID", - "M_TABLET_IOS", - "W_AIRPLAY", - "W_CHROMECAST", - "W_LACLETV2", - "W_PC", - "W_SMARTTV", - "S_STB" - ], - "packages": [ - "PA_BQ_BASIC_M", - "PA_BQ_TVDIGITALE_I", - "PA_BQ_BASIC_I", - "PA_BQ_BASICQUAD_I", - "PI_WHITELIST" - ], - "hasRightIAccess": true, - "hasRightMAccess": true, - "logos": [ - { - "definitionType": "mobileAppli", - "listLogos": [ - { - "size": "183x183", - "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_mtv%2F20220411_102238%2FmobileAppli%2Flogo_183x183.png" - } - ] - }, - { - "definitionType": "mobileAppliDark", - "listLogos": [ - { - "size": "183x183", - "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_mtv%2F20220411_102238%2FmobileAppliDark%2Flogo_183x183.png" - } - ] - }, - { - "definitionType": "webTVLogo", - "listLogos": [ - { - "size": "180x96", - "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_mtv%2F20220411_102238%2FwebTVLogo%2Flogo_180x96.png" - } - ] - }, - { - "definitionType": "webTVSquare", - "listLogos": [ - { - "size": "150x150", - "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_mtv%2F20220411_102238%2FwebTVSquare%2Flogo_150x150.png" - } - ] - } - ], - "mobileData": { - "wifiForbidden": false, - "wifiSecuredOnly": false, - "everywhereChannel": true, - "nomadismAllowed": true, - "drmLevels": [ - { - "definition": "SD", - "securedTerminal": [ - "DRM-HW", - "DRM-SW" - ], - "unsecuredTerminal": [ - "DRM-HW", - "DRM-SW" - ] - }, - { - "definition": "HD", - "securedTerminal": [ - "DRM-HW", - "DRM-SW" - ], - "unsecuredTerminal": [ - "ND" - ] - } - ] - }, - "webdeviceData": { - "nomadismAllowed": true - }, - "technicalChannels": { - "live": [ - { - "techChannelId": "400102", - "type": "CLOUDTV", - "liveTargetURLRelativePath": "livetv_mtv_ctv", - "usi": 400102, - "isDRMized": true, - "csa5Disabled": true - } - ], - "npvr": [ - { - "externalId": "livetv_mtv_ctv", - "techChannelId": "400102", - "type": "CLOUDTV", - "usi": 400102, - "isDRMized": true, - "antiAdskipping": "DEACTIVATED", - "csa5Disabled": true - } - ], - "startover": [] - } - }, - { - "name": "BET", - "editoChannelId": "livetv_bet", - "lcn": 74, - "idEPG": 1960, - "epgAvailable": true, - "epgTextSubstitution": "", - "displayOrder": 74, - "csaCode": 1, - "slogan": "La chaîne culture noire-américaine", - "catchupChannelId": "catchuptv_bet", - "newChannel": false, - "roamingBlocked": true, - "allowedDeviceCategories": [ - "M_ANDROID", - "M_IOS", - "M_TABLET_ANDROID", - "M_TABLET_IOS", - "W_AIRPLAY", - "W_CHROMECAST", - "W_LACLETV2", - "W_PC", - "W_SMARTTV", - "S_STB" - ], - "packages": [ - "PA_BQ_BASIC_M", - "PA_BQ_TVDIGITALE_I", - "PA_BQ_BASIC_I", - "PA_BQ_BASICQUAD_I", - "PI_WHITELIST" - ], - "hasRightIAccess": true, - "hasRightMAccess": true, - "logos": [ - { - "definitionType": "mobileAppli", - "listLogos": [ - { - "size": "183x183", - "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_bet%2F20220411_102238%2FmobileAppli%2Flogo_183x183.png" - } - ] - }, - { - "definitionType": "mobileAppliDark", - "listLogos": [ - { - "size": "183x183", - "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_bet%2F20220411_102238%2FmobileAppliDark%2Flogo_183x183.png" - } - ] - }, - { - "definitionType": "webTVLogo", - "listLogos": [ - { - "size": "180x96", - "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_bet%2F20220411_102238%2FwebTVLogo%2Flogo_180x96.png" - } - ] - }, - { - "definitionType": "webTVSquare", - "listLogos": [ - { - "size": "150x150", - "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_bet%2F20220411_102238%2FwebTVSquare%2Flogo_150x150.png" - } - ] - } - ], - "mobileData": { - "wifiForbidden": false, - "wifiSecuredOnly": false, - "everywhereChannel": true, - "nomadismAllowed": true, - "drmLevels": [ - { - "definition": "SD", - "securedTerminal": [ - "DRM-HW", - "DRM-SW" - ], - "unsecuredTerminal": [ - "DRM-HW", - "DRM-SW" - ] - }, - { - "definition": "HD", - "securedTerminal": [ - "DRM-HW", - "DRM-SW" - ], - "unsecuredTerminal": [ - "ND" - ] - } - ] - }, - "webdeviceData": { - "nomadismAllowed": true - }, - "technicalChannels": { - "live": [ - { - "techChannelId": "400093", - "type": "CLOUDTV", - "liveTargetURLRelativePath": "livetv_bet_ctv", - "usi": 400093, - "isDRMized": true, - "csa5Disabled": true - } - ], - "npvr": [ - { - "externalId": "livetv_bet_ctv", - "techChannelId": "400093", - "type": "CLOUDTV", - "usi": 400093, - "isDRMized": true, - "antiAdskipping": "DEACTIVATED", - "csa5Disabled": true - } - ], - "startover": [] - } - }, - { - "name": "AB1", - "editoChannelId": "livetv_AB1", - "lcn": 75, - "idEPG": 5, - "epgAvailable": true, - "epgTextSubstitution": "", - "displayOrder": 75, - "csaCode": 1, - "slogan": "Éternellement Fan !", - "catchupChannelId": "catchuptv_AB1", - "newChannel": false, - "roamingBlocked": true, - "allowedDeviceCategories": [ - "M_ANDROID", - "M_IOS", - "M_TABLET_ANDROID", - "M_TABLET_IOS", - "W_AIRPLAY", - "W_CHROMECAST", - "W_LACLETV2", - "W_PC", - "W_SMARTTV", - "S_STB" - ], - "packages": [ - "PA_BQ_PASSACCESTVPREMIUM_M", - "PA_pack_Divertissement", - "PA_BQ_RE_TVMAX_M", - "PA_bouquet_famille_disneyplus", - "PA_BQ_ACCESTVPREMIUM_M", - "PA_pack_intense", - "PA_bouquet_divertissement_fibre", - "PA_bouquet_famille_by_canal", - "PA_bouquet_famille_by_canal_nov2018", - "PA_bouquet_famille_max", - "PA_bouquet_divertissement_adsl", - "PI_WHITELIST" - ], - "hasRightIAccess": true, - "hasRightMAccess": true, - "logos": [ - { - "definitionType": "mobileAppli", - "listLogos": [ - { - "size": "183x183", - "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_AB1%2F20220922_114506%2FmobileAppli%2Flogo_183x183.png" - } - ] - }, - { - "definitionType": "mobileAppliDark", - "listLogos": [ - { - "size": "183x183", - "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_AB1%2F20220922_114506%2FmobileAppliDark%2Flogo_183x183.png" - } - ] - }, - { - "definitionType": "webTVLogo", - "listLogos": [ - { - "size": "180x96", - "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_AB1%2F20220922_114506%2FwebTVLogo%2Flogo_180x96.png" - } - ] - }, - { - "definitionType": "webTVSquare", - "listLogos": [ - { - "size": "150x150", - "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_AB1%2F20220922_114506%2FwebTVSquare%2Flogo_150x150.png" - } - ] - } - ], - "mobileData": { - "wifiForbidden": false, - "wifiSecuredOnly": false, - "everywhereChannel": true, - "nomadismAllowed": true, - "drmLevels": [ - { - "definition": "SD", - "securedTerminal": [ - "DRM-HW", - "DRM-SW" - ], - "unsecuredTerminal": [ - "DRM-HW", - "DRM-SW" - ] - }, - { - "definition": "HD", - "securedTerminal": [ - "DRM-HW", - "DRM-SW" - ], - "unsecuredTerminal": [ - "ND" - ] - } - ] - }, - "webdeviceData": { - "nomadismAllowed": true - }, - "technicalChannels": { - "live": [ - { - "techChannelId": "400042", - "type": "CLOUDTV", - "liveTargetURLRelativePath": "livetv_ab1_ctv", - "usi": 400042, - "isDRMized": true, - "csa5Disabled": true - } - ], - "npvr": [ - { - "externalId": "livetv_ab1_ctv", - "techChannelId": "400042", - "type": "CLOUDTV", - "usi": 400042, - "isDRMized": true, - "antiAdskipping": "DEACTIVATED", - "csa5Disabled": true - } - ], - "startover": [] - } - }, - { - "name": "TF1 +1", - "editoChannelId": "livetv_tf1_1", - "lcn": 76, - "idEPG": 2441, - "epgAvailable": true, - "epgTextSubstitution": "", - "displayOrder": 76, - "csaCode": 1, - "slogan": "Vos programmes de TF1 décalés d’1h !", - "catchupChannelId": "", - "newChannel": false, - "roamingBlocked": false, - "allowedDeviceCategories": [ - "M_ANDROID", - "M_IOS", - "M_TABLET_ANDROID", - "M_TABLET_IOS", - "W_AIRPLAY", - "W_CHROMECAST", - "W_LACLETV2", - "W_SMARTTV", - "W_PC", - "S_STB" - ], - "packages": [ - "PA_bouquet_famille_disneyplus", - "PA_pack_intense", - "PA_bouquet_famille_max", - "PA_bouquet_divertissement_adsl", - "PI_WHITELIST" - ], - "hasRightIAccess": true, - "hasRightMAccess": false, - "logos": [ - { - "definitionType": "mobileAppli", - "listLogos": [ - { - "size": "183x183", - "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_tf1_1%2F20181002_112754%2FmobileAppli%2Flogo_183x183.png" - } - ] - }, - { - "definitionType": "mobileAppliDark", - "listLogos": [ - { - "size": "183x183", - "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_tf1_1%2F20181002_112754%2FmobileAppliDark%2Flogo_183x183.png" - } - ] - }, - { - "definitionType": "webTVLogo", - "listLogos": [ - { - "size": "180x96", - "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_tf1_1%2F20181002_112754%2FwebTVLogo%2Flogo_180x96.png" - } - ] - }, - { - "definitionType": "webTVSquare", - "listLogos": [ - { - "size": "150x150", - "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_tf1_1%2F20181002_112754%2FwebTVSquare%2Flogo_150x150.png" - } - ] - } - ], - "mobileData": { - "wifiForbidden": false, - "wifiSecuredOnly": false, - "everywhereChannel": true, - "nomadismAllowed": true, - "drmLevels": [ - { - "definition": "SD", - "securedTerminal": [ - "DRM-HW", - "DRM-SW" - ], - "unsecuredTerminal": [ - "DRM-HW", - "DRM-SW" - ] - }, - { - "definition": "HD", - "securedTerminal": [ - "DRM-HW", - "DRM-SW" - ], - "unsecuredTerminal": [ - "ND" - ] - } - ] - }, - "webdeviceData": { - "nomadismAllowed": true - }, - "technicalChannels": { - "live": [ - { - "techChannelId": "400095", - "type": "CLOUDTV", - "liveTargetURLRelativePath": "livetv_tf1_plus_1_ctv", - "usi": 400095, - "isDRMized": true, - "csa5Disabled": true - } - ], - "npvr": [ - { - "externalId": "livetv_tf1_plus_1_ctv", - "techChannelId": "400095", - "type": "CLOUDTV", - "usi": 400095, - "isDRMized": true, - "antiAdskipping": "DEACTIVATED", - "csa5Disabled": true - } - ], - "startover": [] - } - }, - { - "name": "COMEDY CENTRAL", - "editoChannelId": "livetv_comedycentral", - "lcn": 77, - "idEPG": 2752, - "epgAvailable": true, - "epgTextSubstitution": "", - "displayOrder": 77, - "csaCode": 1, - "slogan": "La TV en plus drôle", - "catchupChannelId": "catchuptv_comedycentral", - "newChannel": false, - "roamingBlocked": false, - "allowedDeviceCategories": [ - "M_ANDROID", - "M_IOS", - "M_TABLET_ANDROID", - "M_TABLET_IOS", - "W_AIRPLAY", - "W_CHROMECAST", - "W_LACLETV2", - "W_SMARTTV", - "W_PC", - "S_STB" - ], - "packages": [ - "PA_bouquet_famille_disneyplus", - "PA_pack_intense", - "PA_bouquet_divertissement_fibre", - "PA_bouquet_famille_by_canal", - "PA_bouquet_famille_by_canal_nov2018", - "PA_bouquet_famille_max", - "PA_bouquet_divertissement_adsl", - "PI_WHITELIST" - ], - "hasRightIAccess": true, - "hasRightMAccess": false, - "logos": [ - { - "definitionType": "mobileAppli", - "listLogos": [ - { - "size": "183x183", - "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_comedycentral%2F20181002_120516%2FmobileAppli%2Flogo_183x183.png" - } - ] - }, - { - "definitionType": "mobileAppliDark", - "listLogos": [ - { - "size": "183x183", - "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_comedycentral%2F20181002_120516%2FmobileAppliDark%2Flogo_183x183.png" - } - ] - }, - { - "definitionType": "webTVLogo", - "listLogos": [ - { - "size": "180x96", - "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_comedycentral%2F20181002_120516%2FwebTVLogo%2Flogo_180x96.png" - } - ] - }, - { - "definitionType": "webTVSquare", - "listLogos": [ - { - "size": "150x150", - "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_comedycentral%2F20181002_120516%2FwebTVSquare%2Flogo_150x150.png" - } - ] - } - ], - "mobileData": { - "wifiForbidden": false, - "wifiSecuredOnly": false, - "everywhereChannel": true, - "nomadismAllowed": true, - "drmLevels": [ - { - "definition": "SD", - "securedTerminal": [ - "DRM-HW", - "DRM-SW" - ], - "unsecuredTerminal": [ - "DRM-HW", - "DRM-SW" - ] - }, - { - "definition": "HD", - "securedTerminal": [ - "DRM-HW", - "DRM-SW" - ], - "unsecuredTerminal": [ - "ND" - ] - } - ] - }, - "webdeviceData": { - "nomadismAllowed": true - }, - "technicalChannels": { - "live": [ - { - "techChannelId": "400096", - "type": "CLOUDTV", - "liveTargetURLRelativePath": "livetv_comedy_central_ctv", - "usi": 400096, - "isDRMized": true, - "csa5Disabled": true - } - ], - "npvr": [ - { - "externalId": "livetv_comedy_central_ctv", - "techChannelId": "400096", - "type": "CLOUDTV", - "usi": 400096, - "isDRMized": true, - "antiAdskipping": "DEACTIVATED", - "csa5Disabled": true - } - ], - "startover": [] - } - }, - { - "name": "GAME ONE", - "editoChannelId": "livetv_gameone", - "lcn": 78, - "idEPG": 87, - "epgAvailable": true, - "epgTextSubstitution": "", - "displayOrder": 78, - "csaCode": 1, - "slogan": "La chaîne des générations digitales", - "catchupChannelId": "catchuptv_gameone", - "newChannel": false, - "roamingBlocked": true, - "allowedDeviceCategories": [ - "M_ANDROID", - "M_IOS", - "M_TABLET_ANDROID", - "M_TABLET_IOS", - "W_AIRPLAY", - "W_CHROMECAST", - "W_LACLETV2", - "W_SMARTTV", - "W_PC", - "S_STB" - ], - "packages": [ - "PA_BQ_PASSACCESTVPREMIUM_M", - "PA_pack_Divertissement", - "PA_bouquet_famille_disneyplus", - "PA_BQ_ACCESTVPREMIUM_M", - "PA_BQ_PAYG_M", - "PA_pack_intense", - "PA_bouquet_divertissement_fibre", - "PA_bouquet_famille_by_canal", - "PA_bouquet_famille_by_canal_nov2018", - "PA_bouquet_famille_max", - "PA_bouquet_divertissement_adsl", - "PI_WHITELIST" - ], - "hasRightIAccess": true, - "hasRightMAccess": true, - "logos": [ - { - "definitionType": "mobileAppli", - "listLogos": [ - { - "size": "183x183", - "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_gameone%2F20170405_200000%2FmobileAppli%2Flogo_183x183.png" - } - ] - }, - { - "definitionType": "mobileAppliDark", - "listLogos": [ - { - "size": "183x183", - "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_gameone%2F20170405_200000%2FmobileAppliDark%2Flogo_183x183.png" - } - ] - }, - { - "definitionType": "webTVLogo", - "listLogos": [ - { - "size": "180x96", - "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_gameone%2F20170405_200000%2FwebTVLogo%2Flogo_180x96.png" - } - ] - }, - { - "definitionType": "webTVSquare", - "listLogos": [ - { - "size": "150x150", - "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_gameone%2F20170405_200000%2FwebTVSquare%2Flogo_150x150.png" - } - ] - } - ], - "mobileData": { - "wifiForbidden": false, - "wifiSecuredOnly": false, - "everywhereChannel": true, - "nomadismAllowed": true, - "drmLevels": [ - { - "definition": "SD", - "securedTerminal": [ - "DRM-HW", - "DRM-SW" - ], - "unsecuredTerminal": [ - "DRM-HW", - "DRM-SW" - ] - }, - { - "definition": "HD", - "securedTerminal": [ - "DRM-HW", - "DRM-SW" - ], - "unsecuredTerminal": [ - "ND" - ] - } - ] - }, - "webdeviceData": { - "nomadismAllowed": true - }, - "technicalChannels": { - "live": [ - { - "techChannelId": "400097", - "type": "CLOUDTV", - "liveTargetURLRelativePath": "livetv_game_one_ctv", - "usi": 400097, - "isDRMized": true, - "csa5Disabled": true - } - ], - "npvr": [ - { - "externalId": "livetv_game_one_ctv", - "techChannelId": "400097", - "type": "CLOUDTV", - "usi": 400097, - "isDRMized": true, - "antiAdskipping": "DEACTIVATED", - "csa5Disabled": true - } - ], - "startover": [] - } - }, - { - "name": "GAME ONE +1", - "editoChannelId": "livetv_game_one_plus1", - "lcn": 79, - "idEPG": 1167, - "epgAvailable": true, - "epgTextSubstitution": "", - "displayOrder": 79, - "csaCode": 1, - "slogan": "La chaîne des générations digitales", - "catchupChannelId": "", - "newChannel": false, - "roamingBlocked": true, - "allowedDeviceCategories": [ - "M_ANDROID", - "M_IOS", - "M_TABLET_ANDROID", - "M_TABLET_IOS", - "W_AIRPLAY", - "W_CHROMECAST", - "W_LACLETV2", - "W_SMARTTV", - "W_PC", - "S_STB" - ], - "packages": [ - "PA_pack_Divertissement", - "PA_bouquet_famille_disneyplus", - "PA_pack_intense", - "PA_bouquet_famille_max", - "PA_bouquet_divertissement_adsl", - "PI_WHITELIST" - ], - "hasRightIAccess": true, - "hasRightMAccess": false, - "logos": [ - { - "definitionType": "mobileAppli", - "listLogos": [ - { - "size": "183x183", - "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_game_one_plus1%2F20171120_154149%2FmobileAppli%2Flogo_183x183.png" - } - ] - }, - { - "definitionType": "mobileAppliDark", - "listLogos": [ - { - "size": "183x183", - "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_game_one_plus1%2F20171120_154149%2FmobileAppliDark%2Flogo_183x183.png" - } - ] - }, - { - "definitionType": "webTVLogo", - "listLogos": [ - { - "size": "180x96", - "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_game_one_plus1%2F20171120_154149%2FwebTVLogo%2Flogo_180x96.png" - } - ] - }, - { - "definitionType": "webTVSquare", - "listLogos": [ - { - "size": "150x150", - "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_game_one_plus1%2F20171120_154149%2FwebTVSquare%2Flogo_150x150.png" - } - ] - } - ], - "mobileData": { - "wifiForbidden": false, - "wifiSecuredOnly": false, - "everywhereChannel": true, - "nomadismAllowed": true, - "drmLevels": [ - { - "definition": "SD", - "securedTerminal": [ - "DRM-HW", - "DRM-SW" - ], - "unsecuredTerminal": [ - "DRM-HW", - "DRM-SW" - ] - }, - { - "definition": "HD", - "securedTerminal": [ - "DRM-HW", - "DRM-SW" - ], - "unsecuredTerminal": [ - "ND" - ] - } - ] - }, - "webdeviceData": { - "nomadismAllowed": true - }, - "technicalChannels": { - "live": [ - { - "techChannelId": "400098", - "type": "CLOUDTV", - "liveTargetURLRelativePath": "livetv_game_one_plus_1_ctv", - "usi": 400098, - "isDRMized": true, - "csa5Disabled": true - } - ], - "npvr": [ - { - "externalId": "livetv_game_one_plus_1_ctv", - "techChannelId": "400098", - "type": "CLOUDTV", - "usi": 400098, - "isDRMized": true, - "antiAdskipping": "DEACTIVATED", - "csa5Disabled": true - } - ], - "startover": [] - } - }, - { - "name": "COMEDIE+", - "editoChannelId": "livetv_comedieplus", - "lcn": 80, - "idEPG": 54, - "epgAvailable": true, - "epgTextSubstitution": "", - "displayOrder": 80, - "csaCode": 1, - "slogan": "Des spectacles d'humour", - "catchupChannelId": "catchuptv_comedieplus", - "newChannel": false, - "roamingBlocked": true, - "allowedDeviceCategories": [ - "M_ANDROID", - "M_IOS", - "M_TABLET_ANDROID", - "M_TABLET_IOS", - "W_LACLETV2", - "W_SMARTTV", - "W_PC", - "W_AIRPLAY", - "W_CHROMECAST", - "S_STB" - ], - "packages": [ - "PA_bouquet_divertissement_fibre", - "PA_bouquet_famille_by_canal", - "PA_bouquet_famille_by_canal_nov2018", - "PI_WHITELIST" - ], - "hasRightIAccess": true, - "hasRightMAccess": false, - "logos": [ - { - "definitionType": "mobileAppli", - "listLogos": [ - { - "size": "183x183", - "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_comedieplus%2F20170405_200000%2FmobileAppli%2Flogo_183x183.png" - } - ] - }, - { - "definitionType": "mobileAppliDark", - "listLogos": [ - { - "size": "183x183", - "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_comedieplus%2F20170405_200000%2FmobileAppliDark%2Flogo_183x183.png" - } - ] - }, - { - "definitionType": "webTVLogo", - "listLogos": [ - { - "size": "180x96", - "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_comedieplus%2F20170405_200000%2FwebTVLogo%2Flogo_180x96.png" - } - ] - }, - { - "definitionType": "webTVSquare", - "listLogos": [ - { - "size": "150x150", - "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_comedieplus%2F20170405_200000%2FwebTVSquare%2Flogo_150x150.png" - } - ] - } - ], - "mobileData": { - "wifiForbidden": false, - "wifiSecuredOnly": false, - "everywhereChannel": true, - "nomadismAllowed": true, - "drmLevels": [ - { - "definition": "SD", - "securedTerminal": [ - "DRM-HW", - "DRM-SW" - ], - "unsecuredTerminal": [ - "DRM-HW", - "DRM-SW" - ] - }, - { - "definition": "HD", - "securedTerminal": [ - "DRM-HW", - "DRM-SW" - ], - "unsecuredTerminal": [ - "ND" - ] - } - ] - }, - "webdeviceData": { - "nomadismAllowed": true - }, - "technicalChannels": { - "live": [ - { - "techChannelId": "400099", - "type": "CLOUDTV", - "liveTargetURLRelativePath": "livetv_comedie_plus_ctv", - "usi": 400099, - "isDRMized": true, - "csa5Disabled": true - } - ], - "npvr": [ - { - "externalId": "livetv_comedie_plus_ctv", - "techChannelId": "400099", - "type": "CLOUDTV", - "usi": 400099, - "isDRMized": true, - "antiAdskipping": "DEACTIVATED", - "csa5Disabled": true - } - ], - "startover": [] - } - }, - { - "name": "POLAR+", - "editoChannelId": "livetv_polarPlus", - "lcn": 81, - "idEPG": 2326, - "epgAvailable": true, - "epgTextSubstitution": "", - "displayOrder": 81, - "csaCode": 1, - "slogan": "Votre nouvelle scène de crime", - "catchupChannelId": "catchuptv_polarplus", - "newChannel": true, - "roamingBlocked": true, - "allowedDeviceCategories": [ - "M_ANDROID", - "M_IOS", - "M_TABLET_ANDROID", - "M_TABLET_IOS", - "W_AIRPLAY", - "W_CHROMECAST", - "W_LACLETV2", - "W_SMARTTV", - "W_PC", - "S_STB" - ], - "packages": [ - "PA_bouquet_divertissement_fibre", - "PA_bouquet_famille_by_canal", - "PA_bouquet_famille_by_canal_nov2018", - "PI_WHITELIST" - ], - "hasRightIAccess": true, - "hasRightMAccess": false, - "logos": [ - { - "definitionType": "mobileAppli", - "listLogos": [ - { - "size": "183x183", - "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_polarPlus%2F20171002_155125%2FmobileAppli%2Flogo_183x183.png" - } - ] - }, - { - "definitionType": "mobileAppliDark", - "listLogos": [ - { - "size": "183x183", - "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_polarPlus%2F20171002_155125%2FmobileAppliDark%2Flogo_183x183.png" - } - ] - }, - { - "definitionType": "webTVLogo", - "listLogos": [ - { - "size": "180x96", - "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_polarPlus%2F20171002_155125%2FwebTVLogo%2Flogo_180x96.png" - } - ] - }, - { - "definitionType": "webTVSquare", - "listLogos": [ - { - "size": "150x150", - "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_polarPlus%2F20171002_155125%2FwebTVSquare%2Flogo_150x150.png" - } - ] - } - ], - "mobileData": { - "wifiForbidden": false, - "wifiSecuredOnly": false, - "everywhereChannel": true, - "nomadismAllowed": true, - "drmLevels": [ - { - "definition": "SD", - "securedTerminal": [ - "DRM-HW", - "DRM-SW" - ], - "unsecuredTerminal": [ - "DRM-HW", - "DRM-SW" - ] - }, - { - "definition": "HD", - "securedTerminal": [ - "DRM-HW", - "DRM-SW" - ], - "unsecuredTerminal": [ - "ND" - ] - } - ] - }, - "webdeviceData": { - "nomadismAllowed": true - }, - "technicalChannels": { - "live": [ - { - "techChannelId": "400043", - "type": "CLOUDTV", - "liveTargetURLRelativePath": "livetv_polar_ctv", - "usi": 400043, - "isDRMized": true, - "csa5Disabled": true - } - ], - "npvr": [ - { - "externalId": "livetv_polar_ctv", - "techChannelId": "400043", - "type": "CLOUDTV", - "usi": 400043, - "isDRMized": true, - "antiAdskipping": "DEACTIVATED", - "csa5Disabled": true - } - ], - "startover": [] - } - }, - { - "name": "SERIE CLUB", - "editoChannelId": "livetv_serie_club", - "lcn": 82, - "idEPG": 49, - "epgAvailable": true, - "epgTextSubstitution": "", - "displayOrder": 82, - "csaCode": 1, - "slogan": "Découvreur de Séries", - "catchupChannelId": "catchuptv_serieclub", - "newChannel": false, - "roamingBlocked": true, - "allowedDeviceCategories": [ - "M_ANDROID", - "M_IOS", - "M_TABLET_ANDROID", - "M_TABLET_IOS", - "W_AIRPLAY", - "W_CHROMECAST", - "W_LACLETV2", - "W_SMARTTV", - "W_PC", - "S_STB" - ], - "packages": [ - "PA_bouquet_divertissement_fibre", - "PA_bouquet_famille_by_canal", - "PA_bouquet_famille_by_canal_nov2018", - "PI_WHITELIST" - ], - "hasRightIAccess": true, - "hasRightMAccess": false, - "logos": [ - { - "definitionType": "mobileAppli", - "listLogos": [ - { - "size": "183x183", - "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_serie_club%2F20170405_200000%2FmobileAppli%2Flogo_183x183.png" - } - ] - }, - { - "definitionType": "mobileAppliDark", - "listLogos": [ - { - "size": "183x183", - "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_serie_club%2F20170405_200000%2FmobileAppliDark%2Flogo_183x183.png" - } - ] - }, - { - "definitionType": "webTVLogo", - "listLogos": [ - { - "size": "180x96", - "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_serie_club%2F20170405_200000%2FwebTVLogo%2Flogo_180x96.png" - } - ] - }, - { - "definitionType": "webTVSquare", - "listLogos": [ - { - "size": "150x150", - "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_serie_club%2F20170405_200000%2FwebTVSquare%2Flogo_150x150.png" - } - ] - } - ], - "mobileData": { - "wifiForbidden": false, - "wifiSecuredOnly": false, - "everywhereChannel": true, - "nomadismAllowed": true, - "drmLevels": [ - { - "definition": "SD", - "securedTerminal": [ - "DRM-HW", - "DRM-SW" - ], - "unsecuredTerminal": [ - "DRM-HW", - "DRM-SW" - ] - }, - { - "definition": "HD", - "securedTerminal": [ - "DRM-HW", - "DRM-SW" - ], - "unsecuredTerminal": [ - "ND" - ] - } - ] - }, - "webdeviceData": { - "nomadismAllowed": true - }, - "technicalChannels": { - "live": [ - { - "techChannelId": "400101", - "type": "CLOUDTV", - "liveTargetURLRelativePath": "livetv_serie_club_ctv", - "usi": 400101, - "isDRMized": true, - "csa5Disabled": true - } - ], - "npvr": [ - { - "externalId": "livetv_serie_club_ctv", - "techChannelId": "400101", - "type": "CLOUDTV", - "usi": 400101, - "isDRMized": true, - "antiAdskipping": "DEACTIVATED", - "csa5Disabled": true - } - ], - "startover": [] - } - }, - { - "name": "TV PITCHOUN", - "editoChannelId": "livetv_pitchountv", - "lcn": 88, - "idEPG": 2803, - "epgAvailable": true, - "epgTextSubstitution": "", - "displayOrder": 88, - "csaCode": 1, - "slogan": "La TV des enfants que les parents regardent", - "catchupChannelId": "", - "newChannel": false, - "roamingBlocked": true, - "allowedDeviceCategories": [ - "M_ANDROID", - "M_IOS", - "M_TABLET_ANDROID", - "M_TABLET_IOS", - "W_AIRPLAY", - "W_CHROMECAST", - "W_LACLETV2", - "W_SMARTTV", - "W_PC", - "S_STB" - ], - "packages": [ - "PA_BQ_BASIC_M", - "PA_BQ_TVDIGITALE_I", - "PA_BQ_BASIC_I", - "PA_BQ_BASICQUAD_I", - "PI_WHITELIST" - ], - "hasRightIAccess": true, - "hasRightMAccess": true, - "logos": [ - { - "definitionType": "mobileAppli", - "listLogos": [ - { - "size": "183x183", - "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_pitchountv%2F20180206_091500%2FmobileAppli%2Flogo_183x183.png" - } - ] - }, - { - "definitionType": "mobileAppliDark", - "listLogos": [ - { - "size": "183x183", - "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_pitchountv%2F20180206_091500%2FmobileAppliDark%2Flogo_183x183.png" - } - ] - }, - { - "definitionType": "webTVLogo", - "listLogos": [ - { - "size": "180x96", - "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_pitchountv%2F20180206_091500%2FwebTVLogo%2Flogo_180x96.png" - } - ] - }, - { - "definitionType": "webTVSquare", - "listLogos": [ - { - "size": "150x150", - "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_pitchountv%2F20180206_091500%2FwebTVSquare%2Flogo_150x150.png" - } - ] - } - ], - "mobileData": { - "wifiForbidden": false, - "wifiSecuredOnly": false, - "everywhereChannel": true, - "nomadismAllowed": true, - "drmLevels": [ - { - "definition": "SD", - "securedTerminal": [ - "DRM-HW", - "DRM-SW" - ], - "unsecuredTerminal": [ - "DRM-HW", - "DRM-SW" - ] - }, - { - "definition": "HD", - "securedTerminal": [ - "ND" - ], - "unsecuredTerminal": [ - "ND" - ] - } - ] - }, - "webdeviceData": { - "nomadismAllowed": true - }, - "technicalChannels": { - "live": [ - { - "techChannelId": "400106", - "type": "CLOUDTV", - "liveTargetURLRelativePath": "livetv_pitchoun_tv_ctv", - "usi": 400106, - "isDRMized": true, - "csa5Disabled": true - } - ], - "npvr": [ - { - "externalId": "livetv_pitchoun_tv_ctv", - "techChannelId": "400106", - "type": "CLOUDTV", - "usi": 400106, - "isDRMized": true, - "antiAdskipping": "DEACTIVATED", - "csa5Disabled": true - } - ], - "startover": [] - } - }, - { - "name": "BOOMERANG", - "editoChannelId": "livetv_boomerang", - "lcn": 91, - "idEPG": 321, - "epgAvailable": true, - "epgTextSubstitution": "", - "displayOrder": 91, - "csaCode": 1, - "slogan": "La chaîne des stars du dessin animé", - "catchupChannelId": "catchuptv_boomerangreplay", - "newChannel": false, - "roamingBlocked": true, - "allowedDeviceCategories": [ - "M_ANDROID", - "M_IOS", - "M_TABLET_ANDROID", - "M_TABLET_IOS", - "W_AIRPLAY", - "W_CHROMECAST", - "W_LACLETV2", - "W_SMARTTV", - "W_PC", - "S_STB" - ], - "packages": [ - "PA_pack_Divertissement", - "PA_bouquet_famille_disneyplus", - "PA_BQ_ACCESTVPREMIUM_M", - "PA_pack_intense", - "PA_bouquet_famille_max", - "PA_bouquet_divertissement_adsl", - "PI_WHITELIST" - ], - "hasRightIAccess": true, - "hasRightMAccess": true, - "logos": [ - { - "definitionType": "mobileAppli", - "listLogos": [ - { - "size": "183x183", - "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_boomerang%2F20180417_143557%2FmobileAppli%2Flogo_183x183.png" - } - ] - }, - { - "definitionType": "mobileAppliDark", - "listLogos": [ - { - "size": "183x183", - "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_boomerang%2F20180417_143557%2FmobileAppliDark%2Flogo_183x183.png" - } - ] - }, - { - "definitionType": "webTVLogo", - "listLogos": [ - { - "size": "180x96", - "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_boomerang%2F20180417_143557%2FwebTVLogo%2Flogo_180x96.png" - } - ] - }, - { - "definitionType": "webTVSquare", - "listLogos": [ - { - "size": "150x150", - "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_boomerang%2F20180417_143557%2FwebTVSquare%2Flogo_150x150.png" - } - ] - } - ], - "mobileData": { - "wifiForbidden": false, - "wifiSecuredOnly": false, - "everywhereChannel": true, - "nomadismAllowed": true, - "drmLevels": [ - { - "definition": "SD", - "securedTerminal": [ - "DRM-HW", - "DRM-SW" - ], - "unsecuredTerminal": [ - "DRM-HW", - "DRM-SW" - ] - }, - { - "definition": "HD", - "securedTerminal": [ - "DRM-HW", - "DRM-SW" - ], - "unsecuredTerminal": [ - "ND" - ] - } - ] - }, - "webdeviceData": { - "nomadismAllowed": true - }, - "technicalChannels": { - "live": [ - { - "techChannelId": "400029", - "type": "CLOUDTV", - "liveTargetURLRelativePath": "livetv_boomerang_ctv", - "usi": 400029, - "isDRMized": true, - "csa5Disabled": true - } - ], - "npvr": [ - { - "externalId": "livetv_boomerang_ctv", - "techChannelId": "400029", - "type": "CLOUDTV", - "usi": 400029, - "isDRMized": true, - "antiAdskipping": "DEACTIVATED", - "csa5Disabled": true - } - ], - "startover": [] - } - }, - { - "name": "BOOMERANG +1", - "editoChannelId": "livetv_boomerang_1", - "lcn": 92, - "idEPG": 928, - "epgAvailable": true, - "epgTextSubstitution": "", - "displayOrder": 92, - "csaCode": 1, - "slogan": "Le rendez-vous des stars du dessin animé", - "catchupChannelId": "", - "newChannel": true, - "roamingBlocked": true, - "allowedDeviceCategories": [ - "M_ANDROID", - "M_IOS", - "M_TABLET_ANDROID", - "M_TABLET_IOS", - "W_AIRPLAY", - "W_CHROMECAST", - "W_LACLETV2", - "W_SMARTTV", - "W_PC", - "S_STB" - ], - "packages": [ - "PA_pack_Divertissement", - "PA_bouquet_famille_disneyplus", - "PA_pack_intense", - "PA_bouquet_famille_max", - "PA_bouquet_divertissement_adsl", - "PI_WHITELIST" - ], - "hasRightIAccess": true, - "hasRightMAccess": false, - "logos": [ - { - "definitionType": "mobileAppli", - "listLogos": [ - { - "size": "183x183", - "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_boomerang_1%2F20171004_102149%2FmobileAppli%2Flogo_183x183.png" - } - ] - }, - { - "definitionType": "mobileAppliDark", - "listLogos": [ - { - "size": "183x183", - "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_boomerang_1%2F20171004_102149%2FmobileAppliDark%2Flogo_183x183.png" - } - ] - }, - { - "definitionType": "webTVLogo", - "listLogos": [ - { - "size": "180x96", - "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_boomerang_1%2F20171004_102149%2FwebTVLogo%2Flogo_180x96.png" - } - ] - }, - { - "definitionType": "webTVSquare", - "listLogos": [ - { - "size": "150x150", - "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_boomerang_1%2F20171004_102149%2FwebTVSquare%2Flogo_150x150.png" - } - ] - } - ], - "mobileData": { - "wifiForbidden": false, - "wifiSecuredOnly": false, - "everywhereChannel": true, - "nomadismAllowed": true, - "drmLevels": [ - { - "definition": "SD", - "securedTerminal": [ - "DRM-HW", - "DRM-SW" - ], - "unsecuredTerminal": [ - "DRM-HW", - "DRM-SW" - ] - }, - { - "definition": "HD", - "securedTerminal": [ - "ND" - ], - "unsecuredTerminal": [ - "ND" - ] - } - ] - }, - "webdeviceData": { - "nomadismAllowed": true - }, - "technicalChannels": { - "live": [ - { - "techChannelId": "400107", - "type": "CLOUDTV", - "liveTargetURLRelativePath": "livetv_boomerang_plus_1_ctv", - "usi": 400107, - "isDRMized": true, - "csa5Disabled": true - } - ], - "npvr": [ - { - "externalId": "livetv_boomerang_plus_1_ctv", - "techChannelId": "400107", - "type": "CLOUDTV", - "usi": 400107, - "isDRMized": true, - "antiAdskipping": "DEACTIVATED", - "csa5Disabled": true - } - ], - "startover": [] - } - }, - { - "name": "CARTOONITO", - "editoChannelId": "livetv_boing", - "lcn": 93, - "idEPG": 3738, - "epgAvailable": true, - "epgTextSubstitution": "", - "displayOrder": 93, - "csaCode": 1, - "slogan": "Rire, s'ouvrir et bien grandir !", - "catchupChannelId": "", - "newChannel": false, - "roamingBlocked": true, - "allowedDeviceCategories": [ - "M_ANDROID", - "M_IOS", - "M_TABLET_ANDROID", - "M_TABLET_IOS", - "W_AIRPLAY", - "W_CHROMECAST", - "W_LACLETV2", - "W_PC", - "W_SMARTTV", - "S_STB" - ], - "packages": [ - "PA_pack_Divertissement", - "PA_bouquet_famille_disneyplus", - "PA_BQ_ACCESTVPREMIUM_M", - "PA_pack_intense", - "PA_bouquet_famille_max", - "PA_bouquet_divertissement_adsl", - "PI_WHITELIST" - ], - "hasRightIAccess": true, - "hasRightMAccess": true, - "logos": [ - { - "definitionType": "mobileAppli", - "listLogos": [ - { - "size": "183x183", - "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_boing%2F20230321_182925%2FmobileAppli%2Flogo_183x183.png" - } - ] - }, - { - "definitionType": "mobileAppliDark", - "listLogos": [ - { - "size": "183x183", - "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_boing%2F20230321_182925%2FmobileAppliDark%2Flogo_183x183.png" - } - ] - }, - { - "definitionType": "webTVLogo", - "listLogos": [ - { - "size": "180x96", - "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_boing%2F20230321_182925%2FwebTVLogo%2Flogo_180x96.png" - } - ] - }, - { - "definitionType": "webTVSquare", - "listLogos": [ - { - "size": "150x150", - "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_boing%2F20230321_182925%2FwebTVSquare%2Flogo_150x150.png" - } - ] - } - ], - "mobileData": { - "wifiForbidden": false, - "wifiSecuredOnly": false, - "everywhereChannel": true, - "nomadismAllowed": true, - "drmLevels": [ - { - "definition": "SD", - "securedTerminal": [ - "DRM-HW", - "DRM-SW" - ], - "unsecuredTerminal": [ - "DRM-HW", - "DRM-SW" - ] - }, - { - "definition": "HD", - "securedTerminal": [ - "DRM-HW", - "DRM-SW" - ], - "unsecuredTerminal": [ - "ND" - ] - } - ] - }, - "webdeviceData": { - "nomadismAllowed": true - }, - "technicalChannels": { - "live": [ - { - "techChannelId": "400044", - "type": "CLOUDTV", - "liveTargetURLRelativePath": "livetv_boing_ctv", - "usi": 400044, - "isDRMized": true, - "csa5Disabled": true - } - ], - "npvr": [ - { - "externalId": "livetv_boing_ctv", - "techChannelId": "400044", - "type": "CLOUDTV", - "usi": 400044, - "isDRMized": true, - "antiAdskipping": "DEACTIVATED", - "csa5Disabled": true - } - ], - "startover": [] - } - }, - { - "name": "TIJI", - "editoChannelId": "livetv_tiji", - "lcn": 94, - "idEPG": 229, - "epgAvailable": true, - "epgTextSubstitution": "", - "displayOrder": 94, - "csaCode": 1, - "slogan": "La chaine tendre et complice", - "catchupChannelId": "catchuptv_tiji", - "newChannel": false, - "roamingBlocked": true, - "allowedDeviceCategories": [ - "M_ANDROID", - "M_IOS", - "M_TABLET_ANDROID", - "M_TABLET_IOS", - "W_AIRPLAY", - "W_CHROMECAST", - "W_LACLETV2", - "W_SMARTTV", - "W_PC", - "S_STB" - ], - "packages": [ - "PA_pack_kids", - "PA_bouquet_famille_disneyplus", - "PA_pack_intense", - "PA_bouquet_divertissement_fibre", - "PA_bouquet_famille_by_canal", - "PA_bouquet_famille_by_canal_nov2018", - "PA_bouquet_famille_max", - "PA_bouquet_divertissement_adsl", - "PI_WHITELIST" - ], - "hasRightIAccess": true, - "hasRightMAccess": false, - "logos": [ - { - "definitionType": "mobileAppli", - "listLogos": [ - { - "size": "183x183", - "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_tiji%2F20170405_200000%2FmobileAppli%2Flogo_183x183.png" - } - ] - }, - { - "definitionType": "mobileAppliDark", - "listLogos": [ - { - "size": "183x183", - "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_tiji%2F20170405_200000%2FmobileAppliDark%2Flogo_183x183.png" - } - ] - }, - { - "definitionType": "webTVLogo", - "listLogos": [ - { - "size": "180x96", - "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_tiji%2F20170405_200000%2FwebTVLogo%2Flogo_180x96.png" - } - ] - }, - { - "definitionType": "webTVSquare", - "listLogos": [ - { - "size": "150x150", - "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_tiji%2F20170405_200000%2FwebTVSquare%2Flogo_150x150.png" - } - ] - } - ], - "mobileData": { - "wifiForbidden": false, - "wifiSecuredOnly": false, - "everywhereChannel": true, - "nomadismAllowed": true, - "drmLevels": [ - { - "definition": "SD", - "securedTerminal": [ - "DRM-HW", - "DRM-SW" - ], - "unsecuredTerminal": [ - "DRM-HW", - "DRM-SW" - ] - }, - { - "definition": "HD", - "securedTerminal": [ - "DRM-HW", - "DRM-SW" - ], - "unsecuredTerminal": [ - "ND" - ] - } - ] - }, - "webdeviceData": { - "nomadismAllowed": true - }, - "technicalChannels": { - "live": [ - { - "techChannelId": "400045", - "type": "CLOUDTV", - "liveTargetURLRelativePath": "livetv_tiji_ctv", - "usi": 400045, - "isDRMized": true, - "csa5Disabled": true - } - ], - "npvr": [ - { - "externalId": "livetv_tiji_ctv", - "techChannelId": "400045", - "type": "CLOUDTV", - "usi": 400045, - "isDRMized": true, - "antiAdskipping": "DEACTIVATED", - "csa5Disabled": true - } - ], - "startover": [] - } - }, - { - "name": "CANAL J", - "editoChannelId": "livetv_canal_j", - "lcn": 95, - "idEPG": 32, - "epgAvailable": true, - "epgTextSubstitution": "", - "displayOrder": 95, - "csaCode": 1, - "slogan": "La chaine de toutes les aventures", - "catchupChannelId": "catchuptv_canal_j", - "newChannel": false, - "roamingBlocked": true, - "allowedDeviceCategories": [ - "M_ANDROID", - "M_IOS", - "M_TABLET_ANDROID", - "M_TABLET_IOS", - "W_AIRPLAY", - "W_CHROMECAST", - "W_LACLETV2", - "W_SMARTTV", - "W_PC", - "S_STB" - ], - "packages": [ - "PA_pack_kids", - "PA_bouquet_famille_disneyplus", - "PA_pack_intense", - "PA_bouquet_divertissement_fibre", - "PA_bouquet_famille_by_canal", - "PA_bouquet_famille_by_canal_nov2018", - "PA_bouquet_famille_max", - "PA_bouquet_divertissement_adsl", - "PI_WHITELIST" - ], - "hasRightIAccess": true, - "hasRightMAccess": false, - "logos": [ - { - "definitionType": "mobileAppli", - "listLogos": [ - { - "size": "183x183", - "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_canal_j%2F20191106_163032%2FmobileAppli%2Flogo_183x183.png" - } - ] - }, - { - "definitionType": "mobileAppliDark", - "listLogos": [ - { - "size": "183x183", - "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_canal_j%2F20191106_163032%2FmobileAppliDark%2Flogo_183x183.png" - } - ] - }, - { - "definitionType": "webTVLogo", - "listLogos": [ - { - "size": "180x96", - "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_canal_j%2F20191106_163032%2FwebTVLogo%2Flogo_180x96.png" - } - ] - }, - { - "definitionType": "webTVSquare", - "listLogos": [ - { - "size": "150x150", - "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_canal_j%2F20191106_163032%2FwebTVSquare%2Flogo_150x150.png" - } - ] - } - ], - "mobileData": { - "wifiForbidden": false, - "wifiSecuredOnly": false, - "everywhereChannel": true, - "nomadismAllowed": true, - "drmLevels": [ - { - "definition": "SD", - "securedTerminal": [ - "DRM-HW", - "DRM-SW" - ], - "unsecuredTerminal": [ - "DRM-HW", - "DRM-SW" - ] - }, - { - "definition": "HD", - "securedTerminal": [ - "DRM-HW", - "DRM-SW" - ], - "unsecuredTerminal": [ - "ND" - ] - } - ] - }, - "webdeviceData": { - "nomadismAllowed": true - }, - "technicalChannels": { - "live": [ - { - "techChannelId": "400108", - "type": "CLOUDTV", - "liveTargetURLRelativePath": "livetv_canal_j_ctv", - "usi": 400108, - "isDRMized": true, - "csa5Disabled": true - } - ], - "npvr": [ - { - "externalId": "livetv_canal_j_ctv", - "techChannelId": "400108", - "type": "CLOUDTV", - "usi": 400108, - "isDRMized": true, - "antiAdskipping": "DEACTIVATED", - "csa5Disabled": true - } - ], - "startover": [] - } - }, - { - "name": "NICKELODEON JUNIOR", - "editoChannelId": "livetv_nickelodeon_junior", - "lcn": 96, - "idEPG": 888, - "epgAvailable": true, - "epgTextSubstitution": "", - "displayOrder": 96, - "csaCode": 1, - "slogan": "Chaîne préscolaire des 3-7 ans", - "catchupChannelId": "catchuptv_nickelodeon_junior", - "newChannel": false, - "roamingBlocked": true, - "allowedDeviceCategories": [ - "M_ANDROID", - "M_IOS", - "M_TABLET_ANDROID", - "M_TABLET_IOS", - "W_AIRPLAY", - "W_CHROMECAST", - "W_LACLETV2", - "W_SMARTTV", - "W_PC", - "S_STB" - ], - "packages": [ - "PA_pack_kids", - "PA_bouquet_famille_disneyplus", - "PA_pack_intense", - "PA_bouquet_divertissement_fibre", - "PA_bouquet_famille_by_canal", - "PA_bouquet_famille_by_canal_nov2018", - "PA_bouquet_famille_max", - "PA_bouquet_divertissement_adsl", - "PI_WHITELIST" - ], - "hasRightIAccess": true, - "hasRightMAccess": false, - "logos": [ - { - "definitionType": "mobileAppli", - "listLogos": [ - { - "size": "183x183", - "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_nickelodeon_junior%2F20200615_173007%2FmobileAppli%2Flogo_183x183.png" - } - ] - }, - { - "definitionType": "mobileAppliDark", - "listLogos": [ - { - "size": "183x183", - "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_nickelodeon_junior%2F20200615_173007%2FmobileAppliDark%2Flogo_183x183.png" - } - ] - }, - { - "definitionType": "webTVLogo", - "listLogos": [ - { - "size": "180x96", - "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_nickelodeon_junior%2F20200615_173007%2FwebTVLogo%2Flogo_180x96.png" - } - ] - }, - { - "definitionType": "webTVSquare", - "listLogos": [ - { - "size": "150x150", - "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_nickelodeon_junior%2F20200615_173007%2FwebTVSquare%2Flogo_150x150.png" - } - ] - } - ], - "mobileData": { - "wifiForbidden": false, - "wifiSecuredOnly": false, - "everywhereChannel": true, - "nomadismAllowed": true, - "drmLevels": [ - { - "definition": "SD", - "securedTerminal": [ - "DRM-HW", - "DRM-SW" - ], - "unsecuredTerminal": [ - "DRM-HW", - "DRM-SW" - ] - }, - { - "definition": "HD", - "securedTerminal": [ - "ND" - ], - "unsecuredTerminal": [ - "ND" - ] - } - ] - }, - "webdeviceData": { - "nomadismAllowed": true - }, - "technicalChannels": { - "live": [ - { - "techChannelId": "400113", - "type": "CLOUDTV", - "liveTargetURLRelativePath": "livetv_nickelodeon_junior_ctv", - "usi": 400113, - "isDRMized": true, - "csa5Disabled": true - } - ], - "npvr": [ - { - "externalId": "livetv_nickelodeon_junior_ctv", - "techChannelId": "400113", - "type": "CLOUDTV", - "usi": 400113, - "isDRMized": true, - "antiAdskipping": "DEACTIVATED", - "csa5Disabled": true - } - ], - "startover": [] - } - }, - { - "name": "NICKELODEON", - "editoChannelId": "livetv_nickelodeon", - "lcn": 97, - "idEPG": 473, - "epgAvailable": true, - "epgTextSubstitution": "", - "displayOrder": 97, - "csaCode": 1, - "slogan": "Chaîne pour les 7/14 ans", - "catchupChannelId": "catchuptv_catchuptv_nickelodeon_v", - "newChannel": false, - "roamingBlocked": true, - "allowedDeviceCategories": [ - "M_ANDROID", - "M_IOS", - "M_TABLET_ANDROID", - "M_TABLET_IOS", - "W_AIRPLAY", - "W_CHROMECAST", - "W_LACLETV2", - "W_SMARTTV", - "W_PC", - "S_STB" - ], - "packages": [ - "PA_pack_kids", - "PA_bouquet_famille_disneyplus", - "PA_pack_intense", - "PA_bouquet_divertissement_fibre", - "PA_bouquet_famille_by_canal", - "PA_bouquet_famille_by_canal_nov2018", - "PA_bouquet_famille_max", - "PA_bouquet_divertissement_adsl", - "PI_WHITELIST" - ], - "hasRightIAccess": true, - "hasRightMAccess": false, - "logos": [ - { - "definitionType": "mobileAppli", - "listLogos": [ - { - "size": "183x183", - "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_nickelodeon%2F20200615_173007%2FmobileAppli%2Flogo_183x183.png" - } - ] - }, - { - "definitionType": "mobileAppliDark", - "listLogos": [ - { - "size": "183x183", - "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_nickelodeon%2F20200615_173007%2FmobileAppliDark%2Flogo_183x183.png" - } - ] - }, - { - "definitionType": "webTVLogo", - "listLogos": [ - { - "size": "180x96", - "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_nickelodeon%2F20200615_173007%2FwebTVLogo%2Flogo_180x96.png" - } - ] - }, - { - "definitionType": "webTVSquare", - "listLogos": [ - { - "size": "150x150", - "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_nickelodeon%2F20200615_173007%2FwebTVSquare%2Flogo_150x150.png" - } - ] - } - ], - "mobileData": { - "wifiForbidden": false, - "wifiSecuredOnly": false, - "everywhereChannel": true, - "nomadismAllowed": true, - "drmLevels": [ - { - "definition": "SD", - "securedTerminal": [ - "DRM-HW", - "DRM-SW" - ], - "unsecuredTerminal": [ - "DRM-HW", - "DRM-SW" - ] - }, - { - "definition": "HD", - "securedTerminal": [ - "ND" - ], - "unsecuredTerminal": [ - "ND" - ] - } - ] - }, - "webdeviceData": { - "nomadismAllowed": true - }, - "technicalChannels": { - "live": [ - { - "techChannelId": "400115", - "type": "CLOUDTV", - "liveTargetURLRelativePath": "livetv_nickelodeon_ctv", - "usi": 400115, - "isDRMized": true, - "csa5Disabled": true - } - ], - "npvr": [ - { - "externalId": "livetv_nickelodeon_ctv", - "techChannelId": "400115", - "type": "CLOUDTV", - "usi": 400115, - "isDRMized": true, - "antiAdskipping": "DEACTIVATED", - "csa5Disabled": true - } - ], - "startover": [] - } - }, - { - "name": "NICKELODEON +1", - "editoChannelId": "livetv_nickelodeon_1", - "lcn": 98, - "idEPG": 2065, - "epgAvailable": true, - "epgTextSubstitution": "", - "displayOrder": 98, - "csaCode": 1, - "slogan": "Tout NICKELODEON 1h plus tard", - "catchupChannelId": "", - "newChannel": false, - "roamingBlocked": true, - "allowedDeviceCategories": [ - "M_ANDROID", - "M_IOS", - "M_TABLET_ANDROID", - "M_TABLET_IOS", - "W_AIRPLAY", - "W_CHROMECAST", - "W_LACLETV2", - "W_SMARTTV", - "W_PC", - "S_STB" - ], - "packages": [ - "PA_pack_kids", - "PA_bouquet_famille_disneyplus", - "PA_pack_intense", - "PA_bouquet_divertissement_fibre", - "PA_bouquet_famille_by_canal", - "PA_bouquet_famille_by_canal_nov2018", - "PA_bouquet_famille_max", - "PA_bouquet_divertissement_adsl", - "PI_WHITELIST" - ], - "hasRightIAccess": true, - "hasRightMAccess": false, - "logos": [ - { - "definitionType": "mobileAppli", - "listLogos": [ - { - "size": "183x183", - "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_nickelodeon_1%2F20200615_173007%2FmobileAppli%2Flogo_183x183.png" - } - ] - }, - { - "definitionType": "mobileAppliDark", - "listLogos": [ - { - "size": "183x183", - "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_nickelodeon_1%2F20200615_173007%2FmobileAppliDark%2Flogo_183x183.png" - } - ] - }, - { - "definitionType": "webTVLogo", - "listLogos": [ - { - "size": "180x96", - "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_nickelodeon_1%2F20200615_173007%2FwebTVLogo%2Flogo_180x96.png" - } - ] - }, - { - "definitionType": "webTVSquare", - "listLogos": [ - { - "size": "150x150", - "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_nickelodeon_1%2F20200615_173007%2FwebTVSquare%2Flogo_150x150.png" - } - ] - } - ], - "mobileData": { - "wifiForbidden": false, - "wifiSecuredOnly": false, - "everywhereChannel": true, - "nomadismAllowed": true, - "drmLevels": [ - { - "definition": "SD", - "securedTerminal": [ - "DRM-HW", - "DRM-SW" - ], - "unsecuredTerminal": [ - "DRM-HW", - "DRM-SW" - ] - }, - { - "definition": "HD", - "securedTerminal": [ - "ND" - ], - "unsecuredTerminal": [ - "ND" - ] - } - ] - }, - "webdeviceData": { - "nomadismAllowed": true - }, - "technicalChannels": { - "live": [ - { - "techChannelId": "400116", - "type": "CLOUDTV", - "liveTargetURLRelativePath": "livetv_nickelodeon_plus_1_ctv", - "usi": 400116, - "isDRMized": true, - "csa5Disabled": true - } - ], - "npvr": [ - { - "externalId": "livetv_nickelodeon_plus_1_ctv", - "techChannelId": "400116", - "type": "CLOUDTV", - "usi": 400116, - "isDRMized": true, - "antiAdskipping": "DEACTIVATED", - "csa5Disabled": true - } - ], - "startover": [] - } - }, - { - "name": "NICKELODEON TEEN", - "editoChannelId": "livetv_nickelodeon_4teen", - "lcn": 99, - "idEPG": 1746, - "epgAvailable": true, - "epgTextSubstitution": "", - "displayOrder": 99, - "csaCode": 1, - "slogan": "Trop bien, trop cool", - "catchupChannelId": "catchuptv_nickelodeon_teen", - "newChannel": false, - "roamingBlocked": true, - "allowedDeviceCategories": [ - "M_ANDROID", - "M_IOS", - "M_TABLET_ANDROID", - "M_TABLET_IOS", - "W_AIRPLAY", - "W_CHROMECAST", - "W_LACLETV2", - "W_SMARTTV", - "W_PC", - "S_STB" - ], - "packages": [ - "PA_pack_kids", - "PA_bouquet_famille_disneyplus", - "PA_pack_intense", - "PA_bouquet_divertissement_fibre", - "PA_bouquet_famille_by_canal", - "PA_bouquet_famille_by_canal_nov2018", - "PA_bouquet_famille_max", - "PA_bouquet_divertissement_adsl", - "PI_WHITELIST" - ], - "hasRightIAccess": true, - "hasRightMAccess": false, - "logos": [ - { - "definitionType": "mobileAppli", - "listLogos": [ - { - "size": "183x183", - "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_nickelodeon_4teen%2F20200615_173007%2FmobileAppli%2Flogo_183x183.png" - } - ] - }, - { - "definitionType": "mobileAppliDark", - "listLogos": [ - { - "size": "183x183", - "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_nickelodeon_4teen%2F20200615_173007%2FmobileAppliDark%2Flogo_183x183.png" - } - ] - }, - { - "definitionType": "webTVLogo", - "listLogos": [ - { - "size": "180x96", - "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_nickelodeon_4teen%2F20200615_173007%2FwebTVLogo%2Flogo_180x96.png" - } - ] - }, - { - "definitionType": "webTVSquare", - "listLogos": [ - { - "size": "150x150", - "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_nickelodeon_4teen%2F20200615_173007%2FwebTVSquare%2Flogo_150x150.png" - } - ] - } - ], - "mobileData": { - "wifiForbidden": false, - "wifiSecuredOnly": false, - "everywhereChannel": true, - "nomadismAllowed": true, - "drmLevels": [ - { - "definition": "SD", - "securedTerminal": [ - "DRM-HW", - "DRM-SW" - ], - "unsecuredTerminal": [ - "DRM-HW", - "DRM-SW" - ] - }, - { - "definition": "HD", - "securedTerminal": [ - "ND" - ], - "unsecuredTerminal": [ - "ND" - ] - } - ] - }, - "webdeviceData": { - "nomadismAllowed": true - }, - "technicalChannels": { - "live": [ - { - "techChannelId": "400117", - "type": "CLOUDTV", - "liveTargetURLRelativePath": "livetv_nickelodeon_4teen_ctv", - "usi": 400117, - "isDRMized": true, - "csa5Disabled": true - } - ], - "npvr": [ - { - "externalId": "livetv_nickelodeon_4teen_ctv", - "techChannelId": "400117", - "type": "CLOUDTV", - "usi": 400117, - "isDRMized": true, - "antiAdskipping": "DEACTIVATED", - "csa5Disabled": true - } - ], - "startover": [] - } - }, - { - "name": "DISNEY CHANNEL", - "editoChannelId": "livetv_disney_channel", - "lcn": 101, - "idEPG": 58, - "epgAvailable": true, - "epgTextSubstitution": "", - "displayOrder": 101, - "csaCode": 1, - "slogan": "La chaîne des héros préférés des enfants", - "catchupChannelId": "catchuptv_disneychannelfbc", - "newChannel": false, - "roamingBlocked": true, - "allowedDeviceCategories": [ - "M_ANDROID", - "M_IOS", - "M_TABLET_ANDROID", - "M_TABLET_IOS", - "W_AIRPLAY", - "W_CHROMECAST", - "W_LACLETV2", - "W_SMARTTV", - "W_PC", - "S_STB" - ], - "packages": [ - "PA_BQ_PASSACCESTVPREMIUM_M", - "PA_BQ_RE_TVMAX_M", - "PA_BQ_ACCESTVPREMIUM_M", - "PA_BQ_PAYG_M", - "PA_bouquet_divertissement_fibre", - "PA_bouquet_famille_by_canal", - "PA_bouquet_famille_by_canal_nov2018", - "PA_BQ_SPORT_M", - "PA_BQ_ACCESTV_M", - "PI_WHITELIST" - ], - "hasRightIAccess": true, - "hasRightMAccess": true, - "logos": [ - { - "definitionType": "mobileAppli", - "listLogos": [ - { - "size": "183x183", - "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_disney_channel%2F20200217_155011%2FmobileAppli%2Flogo_183x183.png" - } - ] - }, - { - "definitionType": "mobileAppliDark", - "listLogos": [ - { - "size": "183x183", - "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_disney_channel%2F20200217_155011%2FmobileAppliDark%2Flogo_183x183.png" - } - ] - }, - { - "definitionType": "webTVLogo", - "listLogos": [ - { - "size": "180x96", - "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_disney_channel%2F20200217_155011%2FwebTVLogo%2Flogo_180x96.png" - } - ] - }, - { - "definitionType": "webTVSquare", - "listLogos": [ - { - "size": "150x150", - "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_disney_channel%2F20200217_155011%2FwebTVSquare%2Flogo_150x150.png" - } - ] - } - ], - "mobileData": { - "wifiForbidden": false, - "wifiSecuredOnly": false, - "everywhereChannel": true, - "nomadismAllowed": true, - "drmLevels": [ - { - "definition": "SD", - "securedTerminal": [ - "DRM-HW", - "DRM-SW" - ], - "unsecuredTerminal": [ - "DRM-HW", - "DRM-SW" - ] - }, - { - "definition": "HD", - "securedTerminal": [ - "DRM-HW", - "DRM-SW" - ], - "unsecuredTerminal": [ - "ND" - ] - } - ] - }, - "webdeviceData": { - "nomadismAllowed": true - }, - "technicalChannels": { - "live": [ - { - "techChannelId": "400105", - "type": "CLOUDTV", - "liveTargetURLRelativePath": "livetv_disney_channel_ctv", - "usi": 400105, - "isDRMized": true, - "csa5Disabled": true - } - ], - "npvr": [ - { - "externalId": "livetv_disney_channel_ctv", - "techChannelId": "400105", - "type": "CLOUDTV", - "usi": 400105, - "isDRMized": true, - "antiAdskipping": "DEACTIVATED", - "csa5Disabled": true - } - ], - "startover": [] - } - }, - { - "name": "DISNEY CHANNEL +1", - "editoChannelId": "livetv_disneychannel_1", - "lcn": 102, - "idEPG": 299, - "epgAvailable": true, - "epgTextSubstitution": "", - "displayOrder": 102, - "csaCode": 1, - "slogan": "Tout Disney une heure plus tard", - "catchupChannelId": "", - "newChannel": false, - "roamingBlocked": false, - "allowedDeviceCategories": [ - "M_ANDROID", - "M_IOS", - "M_TABLET_ANDROID", - "M_TABLET_IOS", - "W_AIRPLAY", - "W_CHROMECAST", - "W_LACLETV2", - "W_SMARTTV", - "W_PC", - "S_STB" - ], - "packages": [ - "PA_bouquet_divertissement_fibre", - "PA_bouquet_famille_by_canal", - "PA_bouquet_famille_by_canal_nov2018", - "PI_WHITELIST" - ], - "hasRightIAccess": true, - "hasRightMAccess": false, - "logos": [ - { - "definitionType": "mobileAppli", - "listLogos": [ - { - "size": "183x183", - "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_disneychannel_1%2F20200217_155011%2FmobileAppli%2Flogo_183x183.png" - } - ] - }, - { - "definitionType": "mobileAppliDark", - "listLogos": [ - { - "size": "183x183", - "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_disneychannel_1%2F20200217_155011%2FmobileAppliDark%2Flogo_183x183.png" - } - ] - }, - { - "definitionType": "webTVLogo", - "listLogos": [ - { - "size": "180x96", - "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_disneychannel_1%2F20200217_155011%2FwebTVLogo%2Flogo_180x96.png" - } - ] - }, - { - "definitionType": "webTVSquare", - "listLogos": [ - { - "size": "150x150", - "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_disneychannel_1%2F20200217_155011%2FwebTVSquare%2Flogo_150x150.png" - } - ] - } - ], - "mobileData": { - "wifiForbidden": false, - "wifiSecuredOnly": false, - "everywhereChannel": true, - "nomadismAllowed": true, - "drmLevels": [ - { - "definition": "SD", - "securedTerminal": [ - "DRM-HW", - "DRM-SW" - ], - "unsecuredTerminal": [ - "DRM-HW", - "DRM-SW" - ] - }, - { - "definition": "HD", - "securedTerminal": [ - "ND" - ], - "unsecuredTerminal": [ - "ND" - ] - } - ] - }, - "webdeviceData": { - "nomadismAllowed": true - }, - "technicalChannels": { - "live": [ - { - "techChannelId": "400251", - "type": "CLOUDTV", - "liveTargetURLRelativePath": "livetv_disneychannel1_ctv", - "usi": 400251, - "isDRMized": true, - "csa5Disabled": true - } - ], - "npvr": [], - "startover": [] - } - }, - { - "name": "DISNEY JUNIOR", - "editoChannelId": "livetv_disney_junior", - "lcn": 103, - "idEPG": 300, - "epgAvailable": true, - "epgTextSubstitution": "", - "displayOrder": 103, - "csaCode": 1, - "slogan": "La magie commence ici", - "catchupChannelId": "catchuptv_disneyjunior", - "newChannel": false, - "roamingBlocked": true, - "allowedDeviceCategories": [ - "M_ANDROID", - "M_IOS", - "M_TABLET_ANDROID", - "M_TABLET_IOS", - "W_AIRPLAY", - "W_CHROMECAST", - "W_LACLETV2", - "W_SMARTTV", - "W_PC", - "S_STB" - ], - "packages": [ - "PA_bouquet_divertissement_fibre", - "PA_bouquet_famille_by_canal", - "PA_bouquet_famille_by_canal_nov2018", - "PI_WHITELIST" - ], - "hasRightIAccess": true, - "hasRightMAccess": false, - "logos": [ - { - "definitionType": "mobileAppli", - "listLogos": [ - { - "size": "183x183", - "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_disney_junior%2F20170405_200000%2FmobileAppli%2Flogo_183x183.png" - } - ] - }, - { - "definitionType": "mobileAppliDark", - "listLogos": [ - { - "size": "183x183", - "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_disney_junior%2F20170405_200000%2FmobileAppliDark%2Flogo_183x183.png" - } - ] - }, - { - "definitionType": "webTVLogo", - "listLogos": [ - { - "size": "180x96", - "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_disney_junior%2F20170405_200000%2FwebTVLogo%2Flogo_180x96.png" - } - ] - }, - { - "definitionType": "webTVSquare", - "listLogos": [ - { - "size": "150x150", - "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_disney_junior%2F20170405_200000%2FwebTVSquare%2Flogo_150x150.png" - } - ] - } - ], - "mobileData": { - "wifiForbidden": false, - "wifiSecuredOnly": false, - "everywhereChannel": true, - "nomadismAllowed": true, - "drmLevels": [ - { - "definition": "SD", - "securedTerminal": [ - "DRM-HW", - "DRM-SW" - ], - "unsecuredTerminal": [ - "DRM-HW", - "DRM-SW" - ] - }, - { - "definition": "HD", - "securedTerminal": [ - "ND" - ], - "unsecuredTerminal": [ - "ND" - ] - } - ] - }, - "webdeviceData": { - "nomadismAllowed": true - }, - "technicalChannels": { - "live": [ - { - "techChannelId": "400112", - "type": "CLOUDTV", - "liveTargetURLRelativePath": "livetv_disney_junior_ctv", - "usi": 400112, - "isDRMized": true, - "csa5Disabled": true - } - ], - "npvr": [ - { - "externalId": "livetv_disney_junior_ctv", - "techChannelId": "400112", - "type": "CLOUDTV", - "usi": 400112, - "isDRMized": true, - "antiAdskipping": "DEACTIVATED", - "csa5Disabled": true - } - ], - "startover": [] - } - }, - { - "name": "PIWI+", - "editoChannelId": "livetv_piwi", - "lcn": 105, - "idEPG": 344, - "epgAvailable": true, - "epgTextSubstitution": "", - "displayOrder": 105, - "csaCode": 1, - "slogan": "Le jardin d'éveil des tout-petits", - "catchupChannelId": "catchuptv_piwiplus", - "newChannel": false, - "roamingBlocked": true, - "allowedDeviceCategories": [ - "M_ANDROID", - "M_IOS", - "M_TABLET_ANDROID", - "M_TABLET_IOS", - "W_AIRPLAY", - "W_CHROMECAST", - "W_LACLETV2", - "W_SMARTTV", - "W_PC", - "S_STB" - ], - "packages": [ - "PA_bouquet_divertissement_fibre", - "PA_bouquet_famille_by_canal", - "PA_bouquet_famille_by_canal_nov2018", - "PI_WHITELIST" - ], - "hasRightIAccess": true, - "hasRightMAccess": false, - "logos": [ - { - "definitionType": "mobileAppli", - "listLogos": [ - { - "size": "183x183", - "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_piwi%2F20170405_200000%2FmobileAppli%2Flogo_183x183.png" - } - ] - }, - { - "definitionType": "mobileAppliDark", - "listLogos": [ - { - "size": "183x183", - "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_piwi%2F20170405_200000%2FmobileAppliDark%2Flogo_183x183.png" - } - ] - }, - { - "definitionType": "webTVLogo", - "listLogos": [ - { - "size": "180x96", - "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_piwi%2F20170405_200000%2FwebTVLogo%2Flogo_180x96.png" - } - ] - }, - { - "definitionType": "webTVSquare", - "listLogos": [ - { - "size": "150x150", - "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_piwi%2F20170405_200000%2FwebTVSquare%2Flogo_150x150.png" - } - ] - } - ], - "mobileData": { - "wifiForbidden": false, - "wifiSecuredOnly": false, - "everywhereChannel": true, - "nomadismAllowed": true, - "drmLevels": [ - { - "definition": "SD", - "securedTerminal": [ - "DRM-HW", - "DRM-SW" - ], - "unsecuredTerminal": [ - "DRM-HW", - "DRM-SW" - ] - }, - { - "definition": "HD", - "securedTerminal": [ - "ND" - ], - "unsecuredTerminal": [ - "ND" - ] - } - ] - }, - "webdeviceData": { - "nomadismAllowed": true - }, - "technicalChannels": { - "live": [ - { - "techChannelId": "400109", - "type": "CLOUDTV", - "liveTargetURLRelativePath": "livetv_piwi_plus_ctv", - "usi": 400109, - "isDRMized": true, - "csa5Disabled": true - } - ], - "npvr": [ - { - "externalId": "livetv_piwi_plus_ctv", - "techChannelId": "400109", - "type": "CLOUDTV", - "usi": 400109, - "isDRMized": true, - "antiAdskipping": "DEACTIVATED", - "csa5Disabled": true - } - ], - "startover": [] - } - }, - { - "name": "TELETOON+", - "editoChannelId": "livetv_teletoon", - "lcn": 106, - "idEPG": 197, - "epgAvailable": true, - "epgTextSubstitution": "", - "displayOrder": 106, - "csaCode": 1, - "slogan": "La chaîne des enfants d'aujourd'hui", - "catchupChannelId": "catchuptv_teletoonplus", - "newChannel": false, - "roamingBlocked": true, - "allowedDeviceCategories": [ - "M_ANDROID", - "M_IOS", - "M_TABLET_ANDROID", - "M_TABLET_IOS", - "W_AIRPLAY", - "W_CHROMECAST", - "W_LACLETV2", - "W_SMARTTV", - "W_PC", - "S_STB" - ], - "packages": [ - "PA_bouquet_divertissement_fibre", - "PA_bouquet_famille_by_canal", - "PA_bouquet_famille_by_canal_nov2018", - "PI_WHITELIST" - ], - "hasRightIAccess": true, - "hasRightMAccess": false, - "logos": [ - { - "definitionType": "mobileAppli", - "listLogos": [ - { - "size": "183x183", - "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_teletoon%2F20170405_200000%2FmobileAppli%2Flogo_183x183.png" - } - ] - }, - { - "definitionType": "mobileAppliDark", - "listLogos": [ - { - "size": "183x183", - "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_teletoon%2F20170405_200000%2FmobileAppliDark%2Flogo_183x183.png" - } - ] - }, - { - "definitionType": "webTVLogo", - "listLogos": [ - { - "size": "180x96", - "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_teletoon%2F20170405_200000%2FwebTVLogo%2Flogo_180x96.png" - } - ] - }, - { - "definitionType": "webTVSquare", - "listLogos": [ - { - "size": "150x150", - "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_teletoon%2F20170405_200000%2FwebTVSquare%2Flogo_150x150.png" - } - ] - } - ], - "mobileData": { - "wifiForbidden": false, - "wifiSecuredOnly": false, - "everywhereChannel": true, - "nomadismAllowed": true, - "drmLevels": [ - { - "definition": "SD", - "securedTerminal": [ - "DRM-HW", - "DRM-SW" - ], - "unsecuredTerminal": [ - "DRM-HW", - "DRM-SW" - ] - }, - { - "definition": "HD", - "securedTerminal": [ - "ND" - ], - "unsecuredTerminal": [ - "ND" - ] - } - ] - }, - "webdeviceData": { - "nomadismAllowed": true - }, - "technicalChannels": { - "live": [ - { - "techChannelId": "400110", - "type": "CLOUDTV", - "liveTargetURLRelativePath": "livetv_teletoon_ctv", - "usi": 400110, - "isDRMized": true, - "csa5Disabled": true - } - ], - "npvr": [ - { - "externalId": "livetv_teletoon_ctv", - "techChannelId": "400110", - "type": "CLOUDTV", - "usi": 400110, - "isDRMized": true, - "antiAdskipping": "DEACTIVATED", - "csa5Disabled": true - } - ], - "startover": [] - } - }, - { - "name": "TELETOON +1", - "editoChannelId": "livetv_teletoonplus1", - "lcn": 107, - "idEPG": 293, - "epgAvailable": true, - "epgTextSubstitution": "", - "displayOrder": 107, - "csaCode": 1, - "slogan": "Tout TéléTOON 1h plus tard", - "catchupChannelId": "", - "newChannel": false, - "roamingBlocked": true, - "allowedDeviceCategories": [ - "M_ANDROID", - "M_IOS", - "M_TABLET_ANDROID", - "M_TABLET_IOS", - "W_AIRPLAY", - "W_CHROMECAST", - "W_LACLETV2", - "W_SMARTTV", - "W_PC", - "S_STB" - ], - "packages": [ - "PA_bouquet_divertissement_fibre", - "PA_bouquet_famille_by_canal", - "PA_bouquet_famille_by_canal_nov2018", - "PI_WHITELIST" - ], - "hasRightIAccess": true, - "hasRightMAccess": false, - "logos": [ - { - "definitionType": "mobileAppli", - "listLogos": [ - { - "size": "183x183", - "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_teletoonplus1%2F20170405_200000%2FmobileAppli%2Flogo_183x183.png" - } - ] - }, - { - "definitionType": "mobileAppliDark", - "listLogos": [ - { - "size": "183x183", - "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_teletoonplus1%2F20170405_200000%2FmobileAppliDark%2Flogo_183x183.png" - } - ] - }, - { - "definitionType": "webTVLogo", - "listLogos": [ - { - "size": "180x96", - "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_teletoonplus1%2F20170405_200000%2FwebTVLogo%2Flogo_180x96.png" - } - ] - }, - { - "definitionType": "webTVSquare", - "listLogos": [ - { - "size": "150x150", - "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_teletoonplus1%2F20170405_200000%2FwebTVSquare%2Flogo_150x150.png" - } - ] - } - ], - "mobileData": { - "wifiForbidden": false, - "wifiSecuredOnly": false, - "everywhereChannel": true, - "nomadismAllowed": true, - "drmLevels": [ - { - "definition": "SD", - "securedTerminal": [ - "DRM-HW", - "DRM-SW" - ], - "unsecuredTerminal": [ - "DRM-HW", - "DRM-SW" - ] - }, - { - "definition": "HD", - "securedTerminal": [ - "ND" - ], - "unsecuredTerminal": [ - "ND" - ] - } - ] - }, - "webdeviceData": { - "nomadismAllowed": true - }, - "technicalChannels": { - "live": [ - { - "techChannelId": "400111", - "type": "CLOUDTV", - "liveTargetURLRelativePath": "livetv_teletoon_plus_1_ctv", - "usi": 400111, - "isDRMized": true, - "csa5Disabled": true - } - ], - "npvr": [ - { - "externalId": "livetv_teletoon_plus_1_ctv", - "techChannelId": "400111", - "type": "CLOUDTV", - "usi": 400111, - "isDRMized": true, - "antiAdskipping": "DEACTIVATED", - "csa5Disabled": true - } - ], - "startover": [] - } - }, - { - "name": "L'ESPRIT SORCIER TV", - "editoChannelId": "livetv_esprit_sorcier_tv", - "lcn": 111, - "idEPG": 3561, - "epgAvailable": true, - "epgTextSubstitution": "", - "displayOrder": 111, - "csaCode": 1, - "slogan": "La chaine sciences et environnement", - "catchupChannelId": "", - "newChannel": true, - "roamingBlocked": false, - "allowedDeviceCategories": [ - "M_ANDROID", - "M_IOS", - "M_TABLET_ANDROID", - "M_TABLET_IOS", - "W_AIRPLAY", - "W_CHROMECAST", - "W_LACLETV2", - "W_PC", - "W_SMARTTV", - "S_STB" - ], - "packages": [ - "PA_BQ_BASIC_M", - "PA_BQ_TVDIGITALE_I", - "PA_BQ_BASIC_I", - "PA_BQ_BASICQUAD_I", - "PI_WHITELIST" - ], - "hasRightIAccess": true, - "hasRightMAccess": true, - "logos": [ - { - "definitionType": "mobileAppli", - "listLogos": [ - { - "size": "183x183", - "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_esprit_sorcier_tv%2F20220922_114506%2FmobileAppli%2Flogo_183x183.png" - } - ] - }, - { - "definitionType": "mobileAppliDark", - "listLogos": [ - { - "size": "183x183", - "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_esprit_sorcier_tv%2F20220922_114506%2FmobileAppliDark%2Flogo_183x183.png" - } - ] - }, - { - "definitionType": "webTVLogo", - "listLogos": [ - { - "size": "180x96", - "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_esprit_sorcier_tv%2F20220922_114506%2FwebTVLogo%2Flogo_180x96.png" - } - ] - }, - { - "definitionType": "webTVSquare", - "listLogos": [ - { - "size": "150x150", - "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_esprit_sorcier_tv%2F20220922_114506%2FwebTVSquare%2Flogo_150x150.png" - } - ] - } - ], - "mobileData": { - "wifiForbidden": false, - "wifiSecuredOnly": false, - "everywhereChannel": true, - "nomadismAllowed": true, - "drmLevels": [ - { - "definition": "SD", - "securedTerminal": [ - "DRM-HW", - "DRM-SW" - ], - "unsecuredTerminal": [ - "DRM-HW", - "DRM-SW" - ] - }, - { - "definition": "HD", - "securedTerminal": [ - "DRM-HW", - "DRM-SW" - ], - "unsecuredTerminal": [ - "NO-DRM" - ] - } - ] - }, - "webdeviceData": { - "nomadismAllowed": true - }, - "technicalChannels": { - "live": [ - { - "techChannelId": "400243", - "type": "CLOUDTV", - "liveTargetURLRelativePath": "livetv_l_esprit_sorcier_tv_ctv", - "usi": 400243, - "isDRMized": true, - "csa5Disabled": true - } - ], - "npvr": [ - { - "externalId": "livetv_l_esprit_sorcier_tv_ctv", - "techChannelId": "400243", - "type": "CLOUDTV", - "usi": 400243, - "isDRMized": true, - "antiAdskipping": "DEACTIVATED", - "csa5Disabled": true - } - ], - "startover": [] - } - }, - { - "name": "MUSEUM TV", - "editoChannelId": "livetv_museum_channel", - "lcn": 112, - "idEPG": 1072, - "epgAvailable": true, - "epgTextSubstitution": "", - "displayOrder": 112, - "csaCode": 1, - "slogan": "Museum TV, la première télé 100% art", - "catchupChannelId": "catchuptv_museumtv", - "newChannel": true, - "roamingBlocked": true, - "allowedDeviceCategories": [ - "M_ANDROID", - "M_IOS", - "M_TABLET_ANDROID", - "M_TABLET_IOS", - "W_AIRPLAY", - "W_CHROMECAST", - "W_LACLETV2", - "W_SMARTTV", - "W_PC", - "S_STB" - ], - "packages": [ - "PA_BQ_BASIC_M", - "PA_BQ_TVDIGITALE_I", - "PA_BQ_BASIC_I", - "PA_BQ_BASICQUAD_I", - "PI_WHITELIST" - ], - "hasRightIAccess": true, - "hasRightMAccess": true, - "logos": [ - { - "definitionType": "mobileAppli", - "listLogos": [ - { - "size": "183x183", - "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_museum_channel%2F20210125_104742%2FmobileAppli%2Flogo_183x183.png" - } - ] - }, - { - "definitionType": "mobileAppliDark", - "listLogos": [ - { - "size": "183x183", - "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_museum_channel%2F20210125_104742%2FmobileAppliDark%2Flogo_183x183.png" - } - ] - }, - { - "definitionType": "webTVLogo", - "listLogos": [ - { - "size": "180x96", - "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_museum_channel%2F20210125_104742%2FwebTVLogo%2Flogo_180x96.png" - } - ] - }, - { - "definitionType": "webTVSquare", - "listLogos": [ - { - "size": "150x150", - "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_museum_channel%2F20210125_104742%2FwebTVSquare%2Flogo_150x150.png" - } - ] - } - ], - "mobileData": { - "wifiForbidden": false, - "wifiSecuredOnly": false, - "everywhereChannel": true, - "nomadismAllowed": true, - "drmLevels": [ - { - "definition": "SD", - "securedTerminal": [ - "DRM-HW", - "DRM-SW" - ], - "unsecuredTerminal": [ - "DRM-HW", - "DRM-SW" - ] - }, - { - "definition": "HD", - "securedTerminal": [ - "ND" - ], - "unsecuredTerminal": [ - "ND" - ] - } - ] - }, - "webdeviceData": { - "nomadismAllowed": true - }, - "technicalChannels": { - "live": [ - { - "techChannelId": "400160", - "type": "CLOUDTV", - "liveTargetURLRelativePath": "livetv_museum_ctv", - "usi": 400160, - "isDRMized": true, - "csa5Disabled": true - } - ], - "npvr": [ - { - "externalId": "livetv_museum_ctv", - "techChannelId": "400160", - "type": "CLOUDTV", - "usi": 400160, - "isDRMized": true, - "antiAdskipping": "DEACTIVATED", - "csa5Disabled": true - } - ], - "startover": [] - } - }, - { - "name": "MAISON ET TRAVAUX TV", - "editoChannelId": "livetv_maison_et_travaux_tv", - "lcn": 113, - "idEPG": 3360, - "epgAvailable": true, - "epgTextSubstitution": "", - "displayOrder": 113, - "csaCode": 1, - "slogan": "Deco, Brico, Reno et Jardinage", - "catchupChannelId": "catchuptv_maison_travaux", - "newChannel": true, - "roamingBlocked": false, - "allowedDeviceCategories": [ - "M_ANDROID", - "M_IOS", - "M_TABLET_ANDROID", - "M_TABLET_IOS", - "W_AIRPLAY", - "W_CHROMECAST", - "W_LACLETV2", - "W_PC", - "W_SMARTTV", - "S_STB" - ], - "packages": [ - "PA_BQ_BASIC_M", - "PA_BQ_TVDIGITALE_I", - "PA_BQ_BASIC_I", - "PA_BQ_BASICQUAD_I", - "PI_WHITELIST" - ], - "hasRightIAccess": true, - "hasRightMAccess": true, - "logos": [ - { - "definitionType": "mobileAppli", - "listLogos": [ - { - "size": "183x183", - "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_maison_et_travaux_tv%2F20210930_141331%2FmobileAppli%2Flogo_183x183.png" - } - ] - }, - { - "definitionType": "mobileAppliDark", - "listLogos": [ - { - "size": "183x183", - "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_maison_et_travaux_tv%2F20210930_141331%2FmobileAppliDark%2Flogo_183x183.png" - } - ] - }, - { - "definitionType": "webTVLogo", - "listLogos": [ - { - "size": "180x96", - "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_maison_et_travaux_tv%2F20210930_141331%2FwebTVLogo%2Flogo_180x96.png" - } - ] - }, - { - "definitionType": "webTVSquare", - "listLogos": [ - { - "size": "150x150", - "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_maison_et_travaux_tv%2F20210930_141331%2FwebTVSquare%2Flogo_150x150.png" - } - ] - } - ], - "mobileData": { - "wifiForbidden": false, - "wifiSecuredOnly": false, - "everywhereChannel": true, - "nomadismAllowed": true, - "drmLevels": [ - { - "definition": "SD", - "securedTerminal": [ - "DRM-HW", - "DRM-SW" - ], - "unsecuredTerminal": [ - "DRM-HW", - "DRM-SW" - ] - }, - { - "definition": "HD", - "securedTerminal": [ - "NO-DRM" - ], - "unsecuredTerminal": [ - "NO-DRM" - ] - } - ] - }, - "webdeviceData": { - "nomadismAllowed": true - }, - "technicalChannels": { - "live": [ - { - "techChannelId": "400406", - "type": "CLOUDTV", - "liveTargetURLRelativePath": "livetv_maison_et_travaux_ctv", - "usi": 400406, - "isDRMized": true, - "csa5Disabled": true - } - ], - "npvr": [ - { - "externalId": "livetv_maison_et_travaux_ctv", - "techChannelId": "400406", - "type": "CLOUDTV", - "usi": 400406, - "isDRMized": true, - "antiAdskipping": "DEACTIVATED", - "csa5Disabled": true - } - ], - "startover": [] - } - }, - { - "name": "TOP SANTE TV", - "editoChannelId": "livetv_top_sante_tv", - "lcn": 114, - "idEPG": 3106, - "epgAvailable": true, - "epgTextSubstitution": "", - "displayOrder": 114, - "csaCode": 1, - "slogan": "Votre chaîne Santé et Bien-Etre", - "catchupChannelId": "catchuptv_top_sante", - "newChannel": true, - "roamingBlocked": false, - "allowedDeviceCategories": [ - "M_ANDROID", - "M_IOS", - "M_TABLET_ANDROID", - "M_TABLET_IOS", - "W_AIRPLAY", - "W_CHROMECAST", - "W_LACLETV2", - "W_PC", - "W_SMARTTV", - "S_STB" - ], - "packages": [ - "PA_BQ_BASIC_M", - "PA_BQ_TVDIGITALE_I", - "PA_BQ_BASIC_I", - "PA_BQ_BASICQUAD_I", - "PI_WHITELIST" - ], - "hasRightIAccess": true, - "hasRightMAccess": true, - "logos": [ - { - "definitionType": "mobileAppli", - "listLogos": [ - { - "size": "183x183", - "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_top_sante_tv%2F20210930_141331%2FmobileAppli%2Flogo_183x183.png" - } - ] - }, - { - "definitionType": "mobileAppliDark", - "listLogos": [ - { - "size": "183x183", - "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_top_sante_tv%2F20210930_141331%2FmobileAppliDark%2Flogo_183x183.png" - } - ] - }, - { - "definitionType": "webTVLogo", - "listLogos": [ - { - "size": "180x96", - "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_top_sante_tv%2F20210930_141331%2FwebTVLogo%2Flogo_180x96.png" - } - ] - }, - { - "definitionType": "webTVSquare", - "listLogos": [ - { - "size": "150x150", - "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_top_sante_tv%2F20210930_141331%2FwebTVSquare%2Flogo_150x150.png" - } - ] - } - ], - "mobileData": { - "wifiForbidden": false, - "wifiSecuredOnly": false, - "everywhereChannel": true, - "nomadismAllowed": true, - "drmLevels": [ - { - "definition": "SD", - "securedTerminal": [ - "DRM-HW", - "DRM-SW" - ], - "unsecuredTerminal": [ - "DRM-HW", - "DRM-SW" - ] - }, - { - "definition": "HD", - "securedTerminal": [ - "NO-DRM" - ], - "unsecuredTerminal": [ - "NO-DRM" - ] - } - ] - }, - "webdeviceData": { - "nomadismAllowed": true - }, - "technicalChannels": { - "live": [ - { - "techChannelId": "400407", - "type": "CLOUDTV", - "liveTargetURLRelativePath": "livetv_top_sante_ctv", - "usi": 400407, - "isDRMized": true, - "csa5Disabled": true - } - ], - "npvr": [ - { - "externalId": "livetv_top_sante_ctv", - "techChannelId": "400407", - "type": "CLOUDTV", - "usi": 400407, - "isDRMized": true, - "antiAdskipping": "DEACTIVATED", - "csa5Disabled": true - } - ], - "startover": [] - } - }, - { - "name": "ANIMAUX", - "editoChannelId": "livetv_Animaux", - "lcn": 118, - "idEPG": 12, - "epgAvailable": true, - "epgTextSubstitution": "", - "displayOrder": 118, - "csaCode": 1, - "slogan": "La chaîne grandeur nature", - "catchupChannelId": "catchuptv_animaux", - "newChannel": false, - "roamingBlocked": true, - "allowedDeviceCategories": [ - "M_ANDROID", - "M_IOS", - "M_TABLET_ANDROID", - "M_TABLET_IOS", - "W_AIRPLAY", - "W_CHROMECAST", - "W_LACLETV2", - "W_SMARTTV", - "W_PC", - "S_STB" - ], - "packages": [ - "PA_BQ_PASSACCESTVPREMIUM_M", - "PA_pack_Divertissement", - "PA_BQ_RE_TVMAX_M", - "PA_bouquet_famille_disneyplus", - "PA_BQ_ACCESTVPREMIUM_M", - "PA_BQ_PAYG_M", - "PA_pack_intense", - "PA_bouquet_famille_max", - "PA_bouquet_divertissement_adsl", - "PI_WHITELIST" - ], - "hasRightIAccess": true, - "hasRightMAccess": true, - "logos": [ - { - "definitionType": "mobileAppli", - "listLogos": [ - { - "size": "183x183", - "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_Animaux%2F20200727_164727%2FmobileAppli%2Flogo_183x183.png" - } - ] - }, - { - "definitionType": "mobileAppliDark", - "listLogos": [ - { - "size": "183x183", - "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_Animaux%2F20200727_164727%2FmobileAppliDark%2Flogo_183x183.png" - } - ] - }, - { - "definitionType": "webTVLogo", - "listLogos": [ - { - "size": "180x96", - "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_Animaux%2F20200727_164727%2FwebTVLogo%2Flogo_180x96.png" - } - ] - }, - { - "definitionType": "webTVSquare", - "listLogos": [ - { - "size": "150x150", - "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_Animaux%2F20200727_164727%2FwebTVSquare%2Flogo_150x150.png" - } - ] - } - ], - "mobileData": { - "wifiForbidden": false, - "wifiSecuredOnly": false, - "everywhereChannel": true, - "nomadismAllowed": true, - "drmLevels": [ - { - "definition": "SD", - "securedTerminal": [ - "DRM-HW", - "DRM-SW" - ], - "unsecuredTerminal": [ - "DRM-HW", - "DRM-SW" - ] - }, - { - "definition": "HD", - "securedTerminal": [ - "ND" - ], - "unsecuredTerminal": [ - "ND" - ] - } - ] - }, - "webdeviceData": { - "nomadismAllowed": true - }, - "technicalChannels": { - "live": [ - { - "techChannelId": "400119", - "type": "CLOUDTV", - "liveTargetURLRelativePath": "livetv_animaux_ctv", - "usi": 400119, - "isDRMized": true, - "csa5Disabled": true - } - ], - "npvr": [ - { - "externalId": "livetv_animaux_ctv", - "techChannelId": "400119", - "type": "CLOUDTV", - "usi": 400119, - "isDRMized": true, - "antiAdskipping": "DEACTIVATED", - "csa5Disabled": true - } - ], - "startover": [] - } - }, - { - "name": "CRIME DISTRICT", - "editoChannelId": "livetv_CrimeDistrict", - "lcn": 119, - "idEPG": 2037, - "epgAvailable": true, - "epgTextSubstitution": "", - "displayOrder": 119, - "csaCode": 1, - "slogan": "C’est un crime de ne pas la regarder", - "catchupChannelId": "catchuptv_CrimeDistrict", - "newChannel": true, - "roamingBlocked": true, - "allowedDeviceCategories": [ - "M_ANDROID", - "M_IOS", - "M_TABLET_ANDROID", - "M_TABLET_IOS", - "W_AIRPLAY", - "W_CHROMECAST", - "W_LACLETV2", - "W_SMARTTV", - "W_PC", - "S_STB" - ], - "packages": [ - "PA_bouquet_famille_disneyplus", - "PA_pack_intense", - "PA_bouquet_famille_max", - "PA_bouquet_divertissement_adsl", - "PI_WHITELIST" - ], - "hasRightIAccess": true, - "hasRightMAccess": false, - "logos": [ - { - "definitionType": "mobileAppli", - "listLogos": [ - { - "size": "183x183", - "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_CrimeDistrict%2F20160211_110558%2FmobileAppli%2Flogo_183x183.png" - } - ] - }, - { - "definitionType": "mobileAppliDark", - "listLogos": [ - { - "size": "183x183", - "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_CrimeDistrict%2F20160211_110558%2FmobileAppliDark%2Flogo_183x183.png" - } - ] - }, - { - "definitionType": "webTVLogo", - "listLogos": [ - { - "size": "180x96", - "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_CrimeDistrict%2F20160211_110558%2FwebTVLogo%2Flogo_180x96.png" - } - ] - }, - { - "definitionType": "webTVSquare", - "listLogos": [ - { - "size": "150x150", - "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_CrimeDistrict%2F20160211_110558%2FwebTVSquare%2Flogo_150x150.png" - } - ] - } - ], - "mobileData": { - "wifiForbidden": false, - "wifiSecuredOnly": false, - "everywhereChannel": true, - "nomadismAllowed": true, - "drmLevels": [ - { - "definition": "SD", - "securedTerminal": [ - "DRM-HW", - "DRM-SW" - ], - "unsecuredTerminal": [ - "DRM-HW", - "DRM-SW" - ] - }, - { - "definition": "HD", - "securedTerminal": [ - "DRM-HW", - "DRM-SW" - ], - "unsecuredTerminal": [ - "ND" - ] - } - ] - }, - "webdeviceData": { - "nomadismAllowed": true - }, - "technicalChannels": { - "live": [ - { - "techChannelId": "400118", - "type": "CLOUDTV", - "liveTargetURLRelativePath": "livetv_crime_district_ctv", - "usi": 400118, - "isDRMized": true, - "csa5Disabled": true - } - ], - "npvr": [ - { - "externalId": "livetv_crime_district_ctv", - "techChannelId": "400118", - "type": "CLOUDTV", - "usi": 400118, - "isDRMized": true, - "antiAdskipping": "DEACTIVATED", - "csa5Disabled": true - } - ], - "startover": [] - } - }, - { - "name": "CHASSE PECHE", - "editoChannelId": "livetv_chasseetpeche", - "lcn": 120, - "idEPG": 38, - "epgAvailable": true, - "epgTextSubstitution": "", - "displayOrder": 120, - "csaCode": 1, - "slogan": "La chaîne des passionnés", - "catchupChannelId": "catchuptv_chasseetpeche", - "newChannel": false, - "roamingBlocked": true, - "allowedDeviceCategories": [ - "M_ANDROID", - "M_IOS", - "M_TABLET_ANDROID", - "M_TABLET_IOS", - "W_AIRPLAY", - "W_CHROMECAST", - "W_LACLETV2", - "W_SMARTTV", - "W_PC", - "S_STB" - ], - "packages": [ - "PA_BQ_PASSACCESTVPREMIUM_M", - "PA_pack_Divertissement", - "PA_Pack_Sport", - "PA_bouquet_famille_disneyplus", - "PA_BQ_ACCESTVPREMIUM_M", - "PA_pack_intense", - "PA_bouquet_divertissement_fibre", - "PA_bouquet_sport", - "PA_bouquet_famille_max", - "PA_bouquet_divertissement_adsl", - "PI_WHITELIST" - ], - "hasRightIAccess": true, - "hasRightMAccess": true, - "logos": [ - { - "definitionType": "mobileAppli", - "listLogos": [ - { - "size": "183x183", - "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_chasseetpeche%2F20151026_092415%2FmobileAppli%2Flogo_183x183.png" - } - ] - }, - { - "definitionType": "mobileAppliDark", - "listLogos": [ - { - "size": "183x183", - "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_chasseetpeche%2F20151026_092415%2FmobileAppliDark%2Flogo_183x183.png" - } - ] - }, - { - "definitionType": "webTVLogo", - "listLogos": [ - { - "size": "180x96", - "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_chasseetpeche%2F20151026_092415%2FwebTVLogo%2Flogo_180x96.png" - } - ] - }, - { - "definitionType": "webTVSquare", - "listLogos": [ - { - "size": "150x150", - "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_chasseetpeche%2F20151026_092415%2FwebTVSquare%2Flogo_150x150.png" - } - ] - } - ], - "mobileData": { - "wifiForbidden": false, - "wifiSecuredOnly": false, - "everywhereChannel": true, - "nomadismAllowed": true, - "drmLevels": [ - { - "definition": "SD", - "securedTerminal": [ - "DRM-HW", - "DRM-SW" - ], - "unsecuredTerminal": [ - "DRM-HW", - "DRM-SW" - ] - }, - { - "definition": "HD", - "securedTerminal": [ - "ND" - ], - "unsecuredTerminal": [ - "ND" - ] - } - ] - }, - "webdeviceData": { - "nomadismAllowed": true - }, - "technicalChannels": { - "live": [ - { - "techChannelId": "400127", - "type": "CLOUDTV", - "liveTargetURLRelativePath": "livetv_chasse_peche_ctv", - "usi": 400127, - "isDRMized": true, - "csa5Disabled": true - } - ], - "npvr": [ - { - "externalId": "livetv_chasse_peche_ctv", - "techChannelId": "400127", - "type": "CLOUDTV", - "usi": 400127, - "isDRMized": true, - "antiAdskipping": "DEACTIVATED", - "csa5Disabled": true - } - ], - "startover": [] - } - }, - { - "name": "TOUTE L'HISTOIRE", - "editoChannelId": "livetv_toute_l_histoire", - "lcn": 121, - "idEPG": 7, - "epgAvailable": true, - "epgTextSubstitution": "", - "displayOrder": 121, - "csaCode": 1, - "slogan": "Pour ne rien oublier", - "catchupChannelId": "catchuptv_toutelhistoire", - "newChannel": false, - "roamingBlocked": true, - "allowedDeviceCategories": [ - "M_ANDROID", - "M_IOS", - "M_TABLET_ANDROID", - "M_TABLET_IOS", - "W_AIRPLAY", - "W_CHROMECAST", - "W_LACLETV2", - "W_SMARTTV", - "W_PC", - "S_STB" - ], - "packages": [ - "PA_BQ_PASSACCESTVPREMIUM_M", - "PA_pack_Divertissement", - "PA_BQ_RE_TVMAX_M", - "PA_bouquet_famille_disneyplus", - "PA_BQ_ACCESTVPREMIUM_M", - "PA_BQ_PAYG_M", - "PA_pack_intense", - "PA_bouquet_divertissement_fibre", - "PA_bouquet_famille_by_canal", - "PA_bouquet_famille_by_canal_nov2018", - "PA_bouquet_famille_max", - "PA_bouquet_divertissement_adsl", - "PI_WHITELIST" - ], - "hasRightIAccess": true, - "hasRightMAccess": true, - "logos": [ - { - "definitionType": "mobileAppli", - "listLogos": [ - { - "size": "183x183", - "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_toute_l_histoire%2F20170405_200000%2FmobileAppli%2Flogo_183x183.png" - } - ] - }, - { - "definitionType": "mobileAppliDark", - "listLogos": [ - { - "size": "183x183", - "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_toute_l_histoire%2F20170405_200000%2FmobileAppliDark%2Flogo_183x183.png" - } - ] - }, - { - "definitionType": "webTVLogo", - "listLogos": [ - { - "size": "180x96", - "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_toute_l_histoire%2F20170405_200000%2FwebTVLogo%2Flogo_180x96.png" - } - ] - }, - { - "definitionType": "webTVSquare", - "listLogos": [ - { - "size": "150x150", - "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_toute_l_histoire%2F20170405_200000%2FwebTVSquare%2Flogo_150x150.png" - } - ] - } - ], - "mobileData": { - "wifiForbidden": false, - "wifiSecuredOnly": false, - "everywhereChannel": true, - "nomadismAllowed": true, - "drmLevels": [ - { - "definition": "SD", - "securedTerminal": [ - "DRM-HW", - "DRM-SW" - ], - "unsecuredTerminal": [ - "DRM-HW", - "DRM-SW" - ] - }, - { - "definition": "HD", - "securedTerminal": [ - "ND" - ], - "unsecuredTerminal": [ - "ND" - ] - } - ] - }, - "webdeviceData": { - "nomadismAllowed": true - }, - "technicalChannels": { - "live": [ - { - "techChannelId": "400121", - "type": "CLOUDTV", - "liveTargetURLRelativePath": "livetv_toute_histoire_ctv", - "usi": 400121, - "isDRMized": true, - "csa5Disabled": true - } - ], - "npvr": [ - { - "externalId": "livetv_toute_histoire_ctv", - "techChannelId": "400121", - "type": "CLOUDTV", - "usi": 400121, - "isDRMized": true, - "antiAdskipping": "DEACTIVATED", - "csa5Disabled": true - } - ], - "startover": [] - } - }, - { - "name": "HISTOIRE TV", - "editoChannelId": "livetv_histoire", - "lcn": 122, - "idEPG": 88, - "epgAvailable": true, - "epgTextSubstitution": "", - "displayOrder": 122, - "csaCode": 1, - "slogan": "Les histoires qui font l’Histoire", - "catchupChannelId": "catchuptv_histoire", - "newChannel": false, - "roamingBlocked": true, - "allowedDeviceCategories": [ - "M_ANDROID", - "M_IOS", - "M_TABLET_ANDROID", - "M_TABLET_IOS", - "W_AIRPLAY", - "W_CHROMECAST", - "W_LACLETV2", - "W_SMARTTV", - "W_PC", - "S_STB" - ], - "packages": [ - "PA_BQ_PASSACCESTVPREMIUM_M", - "PA_pack_Divertissement", - "PA_BQ_RE_TVMAX_M", - "PA_bouquet_famille_disneyplus", - "PA_BQ_ACCESTVPREMIUM_M", - "PA_BQ_PAYG_M", - "PA_pack_intense", - "PA_bouquet_divertissement_fibre", - "PA_bouquet_famille_by_canal", - "PA_bouquet_famille_by_canal_nov2018", - "PA_bouquet_famille_max", - "PA_bouquet_divertissement_adsl", - "PI_WHITELIST" - ], - "hasRightIAccess": true, - "hasRightMAccess": true, - "logos": [ - { - "definitionType": "mobileAppli", - "listLogos": [ - { - "size": "183x183", - "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_histoire%2F20200102_141654%2FmobileAppli%2Flogo_183x183.png" - } - ] - }, - { - "definitionType": "mobileAppliDark", - "listLogos": [ - { - "size": "183x183", - "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_histoire%2F20200102_141654%2FmobileAppliDark%2Flogo_183x183.png" - } - ] - }, - { - "definitionType": "webTVLogo", - "listLogos": [ - { - "size": "180x96", - "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_histoire%2F20200102_141654%2FwebTVLogo%2Flogo_180x96.png" - } - ] - }, - { - "definitionType": "webTVSquare", - "listLogos": [ - { - "size": "150x150", - "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_histoire%2F20200102_141654%2FwebTVSquare%2Flogo_150x150.png" - } - ] - } - ], - "mobileData": { - "wifiForbidden": false, - "wifiSecuredOnly": false, - "everywhereChannel": true, - "nomadismAllowed": true, - "drmLevels": [ - { - "definition": "SD", - "securedTerminal": [ - "DRM-HW", - "DRM-SW" - ], - "unsecuredTerminal": [ - "DRM-HW", - "DRM-SW" - ] - }, - { - "definition": "HD", - "securedTerminal": [ - "DRM-HW", - "DRM-SW" - ], - "unsecuredTerminal": [ - "ND" - ] - } - ] - }, - "webdeviceData": { - "nomadismAllowed": true - }, - "technicalChannels": { - "live": [ - { - "techChannelId": "400125", - "type": "CLOUDTV", - "liveTargetURLRelativePath": "livetv_histoire_ctv", - "usi": 400125, - "isDRMized": true, - "csa5Disabled": true - } - ], - "npvr": [ - { - "externalId": "livetv_histoire_ctv", - "techChannelId": "400125", - "type": "CLOUDTV", - "usi": 400125, - "isDRMized": true, - "antiAdskipping": "DEACTIVATED", - "csa5Disabled": true - } - ], - "startover": [] - } - }, - { - "name": "USHUAIA TV", - "editoChannelId": "livetv_ushuaia", - "lcn": 123, - "idEPG": 451, - "epgAvailable": true, - "epgTextSubstitution": "", - "displayOrder": 123, - "csaCode": 1, - "slogan": "Explorer. S’émerveiller. Protéger.", - "catchupChannelId": "catchuptv_ushuaia", - "newChannel": false, - "roamingBlocked": true, - "allowedDeviceCategories": [ - "M_ANDROID", - "M_IOS", - "M_TABLET_ANDROID", - "M_TABLET_IOS", - "W_AIRPLAY", - "W_CHROMECAST", - "W_LACLETV2", - "W_SMARTTV", - "W_PC", - "S_STB" - ], - "packages": [ - "PA_BQ_PASSACCESTVPREMIUM_M", - "PA_pack_Divertissement", - "PA_BQ_RE_TVMAX_M", - "PA_bouquet_famille_disneyplus", - "PA_BQ_ACCESTVPREMIUM_M", - "PA_BQ_PAYG_M", - "PA_pack_intense", - "PA_bouquet_divertissement_fibre", - "PA_bouquet_famille_by_canal", - "PA_bouquet_famille_by_canal_nov2018", - "PA_bouquet_famille_max", - "PA_bouquet_divertissement_adsl", - "PI_WHITELIST" - ], - "hasRightIAccess": true, - "hasRightMAccess": true, - "logos": [ - { - "definitionType": "mobileAppli", - "listLogos": [ - { - "size": "183x183", - "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_ushuaia%2F20200102_141654%2FmobileAppli%2Flogo_183x183.png" - } - ] - }, - { - "definitionType": "mobileAppliDark", - "listLogos": [ - { - "size": "183x183", - "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_ushuaia%2F20200102_141654%2FmobileAppliDark%2Flogo_183x183.png" - } - ] - }, - { - "definitionType": "webTVLogo", - "listLogos": [ - { - "size": "180x96", - "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_ushuaia%2F20200102_141654%2FwebTVLogo%2Flogo_180x96.png" - } - ] - }, - { - "definitionType": "webTVSquare", - "listLogos": [ - { - "size": "150x150", - "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_ushuaia%2F20200102_141654%2FwebTVSquare%2Flogo_150x150.png" - } - ] - } - ], - "mobileData": { - "wifiForbidden": false, - "wifiSecuredOnly": false, - "everywhereChannel": true, - "nomadismAllowed": true, - "drmLevels": [ - { - "definition": "SD", - "securedTerminal": [ - "DRM-HW", - "DRM-SW" - ], - "unsecuredTerminal": [ - "DRM-HW", - "DRM-SW" - ] - }, - { - "definition": "HD", - "securedTerminal": [ - "DRM-HW", - "DRM-SW" - ], - "unsecuredTerminal": [ - "ND" - ] - } - ] - }, - "webdeviceData": { - "nomadismAllowed": true - }, - "technicalChannels": { - "live": [ - { - "techChannelId": "400126", - "type": "CLOUDTV", - "liveTargetURLRelativePath": "livetv_ushuaia_tv_ctv", - "usi": 400126, - "isDRMized": true, - "csa5Disabled": true - } - ], - "npvr": [ - { - "externalId": "livetv_ushuaia_tv_ctv", - "techChannelId": "400126", - "type": "CLOUDTV", - "usi": 400126, - "isDRMized": true, - "antiAdskipping": "DEACTIVATED", - "csa5Disabled": true - } - ], - "startover": [] - } - }, - { - "name": "MY ZEN TV", - "editoChannelId": "livetv_myzentv", - "lcn": 124, - "idEPG": 829, - "epgAvailable": true, - "epgTextSubstitution": "", - "displayOrder": 124, - "csaCode": 1, - "slogan": "La chaîne du bien-être", - "catchupChannelId": "catchuptv_myzentv", - "newChannel": false, - "roamingBlocked": true, - "allowedDeviceCategories": [ - "M_ANDROID", - "M_IOS", - "M_TABLET_ANDROID", - "M_TABLET_IOS", - "W_AIRPLAY", - "W_CHROMECAST", - "W_LACLETV2", - "W_SMARTTV", - "W_PC", - "S_STB" - ], - "packages": [ - "PA_bouquet_famille_disneyplus", - "PA_pack_intense", - "PA_bouquet_famille_max", - "PA_bouquet_divertissement_adsl", - "PI_WHITELIST" - ], - "hasRightIAccess": true, - "hasRightMAccess": false, - "logos": [ - { - "definitionType": "mobileAppli", - "listLogos": [ - { - "size": "183x183", - "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_myzentv%2F20181115_170016%2FmobileAppli%2Flogo_183x183.png" - } - ] - }, - { - "definitionType": "mobileAppliDark", - "listLogos": [ - { - "size": "183x183", - "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_myzentv%2F20181115_170016%2FmobileAppliDark%2Flogo_183x183.png" - } - ] - }, - { - "definitionType": "webTVLogo", - "listLogos": [ - { - "size": "180x96", - "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_myzentv%2F20181115_170016%2FwebTVLogo%2Flogo_180x96.png" - } - ] - }, - { - "definitionType": "webTVSquare", - "listLogos": [ - { - "size": "150x150", - "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_myzentv%2F20181115_170016%2FwebTVSquare%2Flogo_150x150.png" - } - ] - } - ], - "mobileData": { - "wifiForbidden": false, - "wifiSecuredOnly": false, - "everywhereChannel": true, - "nomadismAllowed": true, - "drmLevels": [ - { - "definition": "SD", - "securedTerminal": [ - "DRM-HW", - "DRM-SW" - ], - "unsecuredTerminal": [ - "DRM-HW", - "DRM-SW" - ] - }, - { - "definition": "HD", - "securedTerminal": [ - "ND" - ], - "unsecuredTerminal": [ - "ND" - ] - } - ] - }, - "webdeviceData": { - "nomadismAllowed": true - }, - "technicalChannels": { - "live": [ - { - "techChannelId": "400132", - "type": "CLOUDTV", - "liveTargetURLRelativePath": "livetv_my_zen_tv_ctv", - "usi": 400132, - "isDRMized": true, - "csa5Disabled": true - } - ], - "npvr": [ - { - "externalId": "livetv_my_zen_tv_ctv", - "techChannelId": "400132", - "type": "CLOUDTV", - "usi": 400132, - "isDRMized": true, - "antiAdskipping": "DEACTIVATED", - "csa5Disabled": true - } - ], - "startover": [] - } - }, - { - "name": "SCIENCE & VIE TV", - "editoChannelId": "livetv_encyclopedia", - "lcn": 125, - "idEPG": 63, - "epgAvailable": true, - "epgTextSubstitution": "", - "displayOrder": 125, - "csaCode": 1, - "slogan": "La chaine pour comprendre", - "catchupChannelId": "catchuptv_scienceetvie", - "newChannel": false, - "roamingBlocked": true, - "allowedDeviceCategories": [ - "M_ANDROID", - "M_IOS", - "M_TABLET_ANDROID", - "M_TABLET_IOS", - "W_AIRPLAY", - "W_CHROMECAST", - "W_LACLETV2", - "W_PC", - "W_SMARTTV", - "S_STB" - ], - "packages": [ - "PA_BQ_PASSACCESTVPREMIUM_M", - "PA_pack_Divertissement", - "PA_bouquet_famille_disneyplus", - "PA_BQ_ACCESTVPREMIUM_M", - "PA_pack_intense", - "PA_bouquet_famille_max", - "PA_bouquet_divertissement_adsl", - "PI_WHITELIST" - ], - "hasRightIAccess": true, - "hasRightMAccess": true, - "logos": [ - { - "definitionType": "mobileAppli", - "listLogos": [ - { - "size": "183x183", - "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_encyclopedia%2F20220922_114506%2FmobileAppli%2Flogo_183x183.png" - } - ] - }, - { - "definitionType": "mobileAppliDark", - "listLogos": [ - { - "size": "183x183", - "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_encyclopedia%2F20220922_114506%2FmobileAppliDark%2Flogo_183x183.png" - } - ] - }, - { - "definitionType": "webTVLogo", - "listLogos": [ - { - "size": "180x96", - "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_encyclopedia%2F20220922_114506%2FwebTVLogo%2Flogo_180x96.png" - } - ] - }, - { - "definitionType": "webTVSquare", - "listLogos": [ - { - "size": "150x150", - "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_encyclopedia%2F20220922_114506%2FwebTVSquare%2Flogo_150x150.png" - } - ] - } - ], - "mobileData": { - "wifiForbidden": false, - "wifiSecuredOnly": false, - "everywhereChannel": true, - "nomadismAllowed": true, - "drmLevels": [ - { - "definition": "SD", - "securedTerminal": [ - "DRM-HW", - "DRM-SW" - ], - "unsecuredTerminal": [ - "DRM-HW", - "DRM-SW" - ] - }, - { - "definition": "HD", - "securedTerminal": [ - "ND" - ], - "unsecuredTerminal": [ - "ND" - ] - } - ] - }, - "webdeviceData": { - "nomadismAllowed": true - }, - "technicalChannels": { - "live": [ - { - "techChannelId": "400128", - "type": "CLOUDTV", - "liveTargetURLRelativePath": "livetv_science_vie_tv_ctv", - "usi": 400128, - "isDRMized": true, - "csa5Disabled": true - } - ], - "npvr": [ - { - "externalId": "livetv_science_vie_tv_ctv", - "techChannelId": "400128", - "type": "CLOUDTV", - "usi": 400128, - "isDRMized": true, - "antiAdskipping": "DEACTIVATED", - "csa5Disabled": true - } - ], - "startover": [] - } - }, - { - "name": "NATIONAL GEOGRAPHIC", - "editoChannelId": "livetv_Natgeo", - "lcn": 129, - "idEPG": 508, - "epgAvailable": true, - "epgTextSubstitution": "", - "displayOrder": 129, - "csaCode": 1, - "slogan": "Voir plus loin", - "catchupChannelId": "catchuptv_nationalgeo", - "newChannel": false, - "roamingBlocked": true, - "allowedDeviceCategories": [ - "M_ANDROID", - "M_IOS", - "M_TABLET_ANDROID", - "M_TABLET_IOS", - "W_AIRPLAY", - "W_CHROMECAST", - "W_LACLETV2", - "W_SMARTTV", - "W_PC", - "S_STB" - ], - "packages": [ - "PA_bouquet_divertissement_fibre", - "PA_bouquet_famille_by_canal", - "PA_bouquet_famille_by_canal_nov2018", - "PI_WHITELIST" - ], - "hasRightIAccess": true, - "hasRightMAccess": false, - "logos": [ - { - "definitionType": "mobileAppli", - "listLogos": [ - { - "size": "183x183", - "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_Natgeo%2F20200226_115623%2FmobileAppli%2Flogo_183x183.png" - } - ] - }, - { - "definitionType": "mobileAppliDark", - "listLogos": [ - { - "size": "183x183", - "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_Natgeo%2F20200226_115623%2FmobileAppliDark%2Flogo_183x183.png" - } - ] - }, - { - "definitionType": "webTVLogo", - "listLogos": [ - { - "size": "180x96", - "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_Natgeo%2F20200226_115623%2FwebTVLogo%2Flogo_180x96.png" - } - ] - }, - { - "definitionType": "webTVSquare", - "listLogos": [ - { - "size": "150x150", - "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_Natgeo%2F20200226_115623%2FwebTVSquare%2Flogo_150x150.png" - } - ] - } - ], - "mobileData": { - "wifiForbidden": false, - "wifiSecuredOnly": false, - "everywhereChannel": true, - "nomadismAllowed": true, - "drmLevels": [ - { - "definition": "SD", - "securedTerminal": [ - "DRM-HW", - "DRM-SW" - ], - "unsecuredTerminal": [ - "DRM-HW", - "DRM-SW" - ] - }, - { - "definition": "HD", - "securedTerminal": [ - "DRM-HW", - "DRM-SW" - ], - "unsecuredTerminal": [ - "ND" - ] - } - ] - }, - "webdeviceData": { - "nomadismAllowed": true - }, - "technicalChannels": { - "live": [ - { - "techChannelId": "400123", - "type": "CLOUDTV", - "liveTargetURLRelativePath": "livetv_national_geographic_ctv", - "usi": 400123, - "isDRMized": true, - "csa5Disabled": true - } - ], - "npvr": [ - { - "externalId": "livetv_national_geographic_ctv", - "techChannelId": "400123", - "type": "CLOUDTV", - "usi": 400123, - "isDRMized": true, - "antiAdskipping": "DEACTIVATED", - "csa5Disabled": true - } - ], - "startover": [] - } - }, - { - "name": "NATIONAL GEOGRAPHIC WILD", - "editoChannelId": "livetv_Natgeo_wild", - "lcn": 130, - "idEPG": 719, - "epgAvailable": true, - "epgTextSubstitution": "", - "displayOrder": 130, - "csaCode": 1, - "slogan": ".", - "catchupChannelId": "catchuptv_natgeowild", - "newChannel": false, - "roamingBlocked": true, - "allowedDeviceCategories": [ - "M_ANDROID", - "M_IOS", - "M_TABLET_ANDROID", - "M_TABLET_IOS", - "W_AIRPLAY", - "W_CHROMECAST", - "W_LACLETV2", - "W_SMARTTV", - "W_PC", - "S_STB" - ], - "packages": [ - "PA_bouquet_divertissement_fibre", - "PA_bouquet_famille_by_canal", - "PA_bouquet_famille_by_canal_nov2018", - "PI_WHITELIST" - ], - "hasRightIAccess": true, - "hasRightMAccess": false, - "logos": [ - { - "definitionType": "mobileAppli", - "listLogos": [ - { - "size": "183x183", - "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_Natgeo_wild%2F20190513_093153%2FmobileAppli%2Flogo_183x183.png" - } - ] - }, - { - "definitionType": "mobileAppliDark", - "listLogos": [ - { - "size": "183x183", - "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_Natgeo_wild%2F20190513_093153%2FmobileAppliDark%2Flogo_183x183.png" - } - ] - }, - { - "definitionType": "webTVLogo", - "listLogos": [ - { - "size": "180x96", - "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_Natgeo_wild%2F20190513_093153%2FwebTVLogo%2Flogo_180x96.png" - } - ] - }, - { - "definitionType": "webTVSquare", - "listLogos": [ - { - "size": "150x150", - "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_Natgeo_wild%2F20190513_093153%2FwebTVSquare%2Flogo_150x150.png" - } - ] - } - ], - "mobileData": { - "wifiForbidden": false, - "wifiSecuredOnly": false, - "everywhereChannel": true, - "nomadismAllowed": true, - "drmLevels": [ - { - "definition": "SD", - "securedTerminal": [ - "DRM-HW", - "DRM-SW" - ], - "unsecuredTerminal": [ - "DRM-HW", - "DRM-SW" - ] - }, - { - "definition": "HD", - "securedTerminal": [ - "DRM-HW", - "DRM-SW" - ], - "unsecuredTerminal": [ - "ND" - ] - } - ] - }, - "webdeviceData": { - "nomadismAllowed": true - }, - "technicalChannels": { - "live": [ - { - "techChannelId": "400124", - "type": "CLOUDTV", - "liveTargetURLRelativePath": "livetv_nat_geo_wild_ctv", - "usi": 400124, - "isDRMized": true, - "csa5Disabled": true - } - ], - "npvr": [ - { - "externalId": "livetv_nat_geo_wild_ctv", - "techChannelId": "400124", - "type": "CLOUDTV", - "usi": 400124, - "isDRMized": true, - "antiAdskipping": "DEACTIVATED", - "csa5Disabled": true - } - ], - "startover": [] - } - }, - { - "name": "PLANETE+", - "editoChannelId": "livetv_planeteplus", - "lcn": 132, - "idEPG": 147, - "epgAvailable": true, - "epgTextSubstitution": "", - "displayOrder": 132, - "csaCode": 1, - "slogan": "Réalité plus forte que fiction", - "catchupChannelId": "catchuptv_planeteplus", - "newChannel": false, - "roamingBlocked": true, - "allowedDeviceCategories": [ - "M_ANDROID", - "M_IOS", - "M_TABLET_ANDROID", - "M_TABLET_IOS", - "W_AIRPLAY", - "W_CHROMECAST", - "W_LACLETV2", - "W_PC", - "W_SMARTTV", - "S_STB" - ], - "packages": [ - "PA_bouquet_divertissement_fibre", - "PA_bouquet_famille_by_canal", - "PA_bouquet_famille_by_canal_nov2018", - "PI_WHITELIST" - ], - "hasRightIAccess": true, - "hasRightMAccess": false, - "logos": [ - { - "definitionType": "mobileAppli", - "listLogos": [ - { - "size": "183x183", - "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_planeteplus%2F20220601_165712%2FmobileAppli%2Flogo_183x183.png" - } - ] - }, - { - "definitionType": "mobileAppliDark", - "listLogos": [ - { - "size": "183x183", - "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_planeteplus%2F20220601_165712%2FmobileAppliDark%2Flogo_183x183.png" - } - ] - }, - { - "definitionType": "webTVLogo", - "listLogos": [ - { - "size": "180x96", - "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_planeteplus%2F20220601_165712%2FwebTVLogo%2Flogo_180x96.png" - } - ] - }, - { - "definitionType": "webTVSquare", - "listLogos": [ - { - "size": "150x150", - "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_planeteplus%2F20220601_165712%2FwebTVSquare%2Flogo_150x150.png" - } - ] - } - ], - "mobileData": { - "wifiForbidden": false, - "wifiSecuredOnly": false, - "everywhereChannel": true, - "nomadismAllowed": true, - "drmLevels": [ - { - "definition": "SD", - "securedTerminal": [ - "DRM-HW", - "DRM-SW" - ], - "unsecuredTerminal": [ - "DRM-HW", - "DRM-SW" - ] - }, - { - "definition": "HD", - "securedTerminal": [ - "ND" - ], - "unsecuredTerminal": [ - "ND" - ] - } - ] - }, - "webdeviceData": { - "nomadismAllowed": true - }, - "technicalChannels": { - "live": [ - { - "techChannelId": "400129", - "type": "CLOUDTV", - "liveTargetURLRelativePath": "livetv_planete_plus_ctv", - "usi": 400129, - "isDRMized": true, - "csa5Disabled": true - } - ], - "npvr": [ - { - "externalId": "livetv_planete_plus_ctv", - "techChannelId": "400129", - "type": "CLOUDTV", - "usi": 400129, - "isDRMized": true, - "antiAdskipping": "DEACTIVATED", - "csa5Disabled": true - } - ], - "startover": [] - } - }, - { - "name": "PLANETE+CRIME", - "editoChannelId": "livetv_planeteplus_ci", - "lcn": 133, - "idEPG": 662, - "epgAvailable": true, - "epgTextSubstitution": "", - "displayOrder": 133, - "csaCode": 1, - "slogan": "Le crime n'est pas une fiction", - "catchupChannelId": "catchuptv_planeteplus", - "newChannel": false, - "roamingBlocked": true, - "allowedDeviceCategories": [ - "M_ANDROID", - "M_IOS", - "M_TABLET_ANDROID", - "M_TABLET_IOS", - "W_AIRPLAY", - "W_CHROMECAST", - "W_LACLETV2", - "W_PC", - "W_SMARTTV", - "S_STB" - ], - "packages": [ - "PA_bouquet_divertissement_fibre", - "PA_bouquet_famille_by_canal", - "PA_bouquet_famille_by_canal_nov2018", - "PI_WHITELIST" - ], - "hasRightIAccess": true, - "hasRightMAccess": false, - "logos": [ - { - "definitionType": "mobileAppli", - "listLogos": [ - { - "size": "183x183", - "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_planeteplus_ci%2F20220315_112924%2FmobileAppli%2Flogo_183x183.png" - } - ] - }, - { - "definitionType": "mobileAppliDark", - "listLogos": [ - { - "size": "183x183", - "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_planeteplus_ci%2F20220315_112924%2FmobileAppliDark%2Flogo_183x183.png" - } - ] - }, - { - "definitionType": "webTVLogo", - "listLogos": [ - { - "size": "180x96", - "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_planeteplus_ci%2F20220315_112924%2FwebTVLogo%2Flogo_180x96.png" - } - ] - }, - { - "definitionType": "webTVSquare", - "listLogos": [ - { - "size": "150x150", - "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_planeteplus_ci%2F20220315_112924%2FwebTVSquare%2Flogo_150x150.png" - } - ] - } - ], - "mobileData": { - "wifiForbidden": false, - "wifiSecuredOnly": false, - "everywhereChannel": true, - "nomadismAllowed": true, - "drmLevels": [ - { - "definition": "SD", - "securedTerminal": [ - "DRM-HW", - "DRM-SW" - ], - "unsecuredTerminal": [ - "DRM-HW", - "DRM-SW" - ] - }, - { - "definition": "HD", - "securedTerminal": [ - "DRM-HW", - "DRM-SW" - ], - "unsecuredTerminal": [ - "ND" - ] - } - ] - }, - "webdeviceData": { - "nomadismAllowed": true - }, - "technicalChannels": { - "live": [ - { - "techChannelId": "400130", - "type": "CLOUDTV", - "liveTargetURLRelativePath": "livetv_planete_plus_ci_ctv", - "usi": 400130, - "isDRMized": true, - "csa5Disabled": true - } - ], - "npvr": [ - { - "externalId": "livetv_planete_plus_ci_ctv", - "techChannelId": "400130", - "type": "CLOUDTV", - "usi": 400130, - "isDRMized": true, - "antiAdskipping": "DEACTIVATED", - "csa5Disabled": true - } - ], - "startover": [] - } - }, - { - "name": "PLANETE+AVENTURE", - "editoChannelId": "livetv_planeteplus_aventure_experience", - "lcn": 134, - "idEPG": 402, - "epgAvailable": true, - "epgTextSubstitution": "", - "displayOrder": 134, - "csaCode": 1, - "slogan": "Le réel passe à l'action", - "catchupChannelId": "catchuptv_planeteplus", - "newChannel": false, - "roamingBlocked": true, - "allowedDeviceCategories": [ - "M_ANDROID", - "M_IOS", - "M_TABLET_ANDROID", - "M_TABLET_IOS", - "W_AIRPLAY", - "W_CHROMECAST", - "W_LACLETV2", - "W_PC", - "W_SMARTTV", - "S_STB" - ], - "packages": [ - "PA_bouquet_divertissement_fibre", - "PA_bouquet_famille_by_canal", - "PA_bouquet_famille_by_canal_nov2018", - "PI_WHITELIST" - ], - "hasRightIAccess": true, - "hasRightMAccess": false, - "logos": [ - { - "definitionType": "mobileAppli", - "listLogos": [ - { - "size": "183x183", - "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_planeteplus_aventure_experience%2F20220315_112924%2FmobileAppli%2Flogo_183x183.png" - } - ] - }, - { - "definitionType": "mobileAppliDark", - "listLogos": [ - { - "size": "183x183", - "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_planeteplus_aventure_experience%2F20220315_112924%2FmobileAppliDark%2Flogo_183x183.png" - } - ] - }, - { - "definitionType": "webTVLogo", - "listLogos": [ - { - "size": "180x96", - "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_planeteplus_aventure_experience%2F20220315_112924%2FwebTVLogo%2Flogo_180x96.png" - } - ] - }, - { - "definitionType": "webTVSquare", - "listLogos": [ - { - "size": "150x150", - "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_planeteplus_aventure_experience%2F20220315_112924%2FwebTVSquare%2Flogo_150x150.png" - } - ] - } - ], - "mobileData": { - "wifiForbidden": false, - "wifiSecuredOnly": false, - "everywhereChannel": true, - "nomadismAllowed": true, - "drmLevels": [ - { - "definition": "SD", - "securedTerminal": [ - "DRM-HW", - "DRM-SW" - ], - "unsecuredTerminal": [ - "DRM-HW", - "DRM-SW" - ] - }, - { - "definition": "HD", - "securedTerminal": [ - "DRM-HW", - "DRM-SW" - ], - "unsecuredTerminal": [ - "ND" - ] - } - ] - }, - "webdeviceData": { - "nomadismAllowed": true - }, - "technicalChannels": { - "live": [ - { - "techChannelId": "400131", - "type": "CLOUDTV", - "liveTargetURLRelativePath": "livetv_planete_plus_aventure_experience_ctv", - "usi": 400131, - "isDRMized": true, - "csa5Disabled": true - } - ], - "npvr": [ - { - "externalId": "livetv_planete_plus_aventure_experience_ctv", - "techChannelId": "400131", - "type": "CLOUDTV", - "usi": 400131, - "isDRMized": true, - "antiAdskipping": "DEACTIVATED", - "csa5Disabled": true - } - ], - "startover": [] - } - }, - { - "name": "MGG TV", - "editoChannelId": "livetv_es1", - "lcn": 140, - "idEPG": 2353, - "epgAvailable": true, - "epgTextSubstitution": "", - "displayOrder": 140, - "csaCode": 1, - "slogan": "Tout L'esport", - "catchupChannelId": "catchuptv_es1", - "newChannel": true, - "roamingBlocked": true, - "allowedDeviceCategories": [ - "M_ANDROID", - "M_IOS", - "M_TABLET_ANDROID", - "M_TABLET_IOS", - "W_AIRPLAY", - "W_CHROMECAST", - "W_LACLETV2", - "W_PC", - "W_SMARTTV", - "S_STB" - ], - "packages": [ - "PA_BQ_BASIC_M", - "PA_BQ_TVDIGITALE_I", - "PA_BQ_BASIC_I", - "PA_BQ_BASICQUAD_I", - "PI_WHITELIST" - ], - "hasRightIAccess": true, - "hasRightMAccess": true, - "logos": [ - { - "definitionType": "mobileAppli", - "listLogos": [ - { - "size": "183x183", - "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_es1%2F20220128_093134%2FmobileAppli%2Flogo_183x183.png" - } - ] - }, - { - "definitionType": "mobileAppliDark", - "listLogos": [ - { - "size": "183x183", - "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_es1%2F20220128_093134%2FmobileAppliDark%2Flogo_183x183.png" - } - ] - }, - { - "definitionType": "webTVLogo", - "listLogos": [ - { - "size": "180x96", - "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_es1%2F20220128_093134%2FwebTVLogo%2Flogo_180x96.png" - } - ] - }, - { - "definitionType": "webTVSquare", - "listLogos": [ - { - "size": "150x150", - "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_es1%2F20220128_093134%2FwebTVSquare%2Flogo_150x150.png" - } - ] - } - ], - "mobileData": { - "wifiForbidden": false, - "wifiSecuredOnly": false, - "everywhereChannel": true, - "nomadismAllowed": true, - "drmLevels": [ - { - "definition": "SD", - "securedTerminal": [ - "DRM-HW", - "DRM-SW" - ], - "unsecuredTerminal": [ - "DRM-HW", - "DRM-SW" - ] - }, - { - "definition": "HD", - "securedTerminal": [ - "DRM-HW", - "DRM-SW" - ], - "unsecuredTerminal": [ - "ND" - ] - } - ] - }, - "webdeviceData": { - "nomadismAllowed": true - }, - "technicalChannels": { - "live": [ - { - "techChannelId": "400144", - "type": "CLOUDTV", - "liveTargetURLRelativePath": "livetv_es1_ctv", - "usi": 400144, - "isDRMized": true, - "csa5Disabled": true - } - ], - "npvr": [ - { - "externalId": "livetv_es1_ctv", - "techChannelId": "400144", - "type": "CLOUDTV", - "usi": 400144, - "isDRMized": true, - "antiAdskipping": "DEACTIVATED", - "csa5Disabled": true - } - ], - "startover": [] - } - }, - { - "name": "TECH&CO", - "editoChannelId": "livetv_01tv", - "lcn": 141, - "idEPG": 2942, - "epgAvailable": true, - "epgTextSubstitution": "", - "displayOrder": 141, - "csaCode": 1, - "slogan": "La plateforme 100% dédiée à la tech'", - "catchupChannelId": "catchuptv__TV01", - "newChannel": true, - "roamingBlocked": true, - "allowedDeviceCategories": [ - "M_ANDROID", - "M_IOS", - "M_TABLET_ANDROID", - "M_TABLET_IOS", - "W_AIRPLAY", - "W_CHROMECAST", - "W_LACLETV2", - "W_PC", - "W_SMARTTV", - "S_STB" - ], - "packages": [ - "PA_bouquet_famille_disneyplus", - "PA_pack_intense", - "PA_bouquet_divertissement_fibre", - "PA_bouquet_famille_by_canal_nov2018", - "PA_bouquet_famille_max", - "PA_bouquet_divertissement_adsl", - "PI_WHITELIST" - ], - "hasRightIAccess": true, - "hasRightMAccess": false, - "logos": [ - { - "definitionType": "mobileAppli", - "listLogos": [ - { - "size": "183x183", - "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_01tv%2F20220623_154612%2FmobileAppli%2Flogo_183x183.png" - } - ] - }, - { - "definitionType": "mobileAppliDark", - "listLogos": [ - { - "size": "183x183", - "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_01tv%2F20220623_154612%2FmobileAppliDark%2Flogo_183x183.png" - } - ] - }, - { - "definitionType": "webTVLogo", - "listLogos": [ - { - "size": "180x96", - "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_01tv%2F20220623_154612%2FwebTVLogo%2Flogo_180x96.png" - } - ] - }, - { - "definitionType": "webTVSquare", - "listLogos": [ - { - "size": "150x150", - "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_01tv%2F20220623_154612%2FwebTVSquare%2Flogo_150x150.png" - } - ] - } - ], - "mobileData": { - "wifiForbidden": false, - "wifiSecuredOnly": false, - "everywhereChannel": true, - "nomadismAllowed": true, - "drmLevels": [ - { - "definition": "SD", - "securedTerminal": [ - "DRM-HW", - "DRM-SW" - ], - "unsecuredTerminal": [ - "DRM-HW", - "DRM-SW" - ] - }, - { - "definition": "HD", - "securedTerminal": [ - "ND" - ], - "unsecuredTerminal": [ - "ND" - ] - } - ] - }, - "webdeviceData": { - "nomadismAllowed": true - }, - "technicalChannels": { - "live": [ - { - "techChannelId": "400133", - "type": "CLOUDTV", - "liveTargetURLRelativePath": "livetv_01_tv_ctv", - "usi": 400133, - "isDRMized": true, - "csa5Disabled": true - } - ], - "npvr": [ - { - "externalId": "livetv_01_tv_ctv", - "techChannelId": "400133", - "type": "CLOUDTV", - "usi": 400133, - "isDRMized": true, - "antiAdskipping": "DEACTIVATED", - "csa5Disabled": true - } - ], - "startover": [] - } - }, - { - "name": "MCM", - "editoChannelId": "livetv_mcm", - "lcn": 142, - "idEPG": 121, - "epgAvailable": true, - "epgTextSubstitution": "", - "displayOrder": 142, - "csaCode": 1, - "slogan": "Pop Culture Television", - "catchupChannelId": "catchuptv_mcm", - "newChannel": false, - "roamingBlocked": true, - "allowedDeviceCategories": [ - "M_ANDROID", - "M_IOS", - "M_TABLET_ANDROID", - "M_TABLET_IOS", - "W_AIRPLAY", - "W_CHROMECAST", - "W_LACLETV2", - "W_SMARTTV", - "W_PC", - "S_STB" - ], - "packages": [ - "PA_pack_Divertissement", - "PA_bouquet_famille_disneyplus", - "PA_pack_intense", - "PA_bouquet_divertissement_fibre", - "PA_bouquet_famille_by_canal", - "PA_bouquet_famille_by_canal_nov2018", - "PA_bouquet_famille_max", - "PA_bouquet_divertissement_adsl", - "PI_WHITELIST" - ], - "hasRightIAccess": true, - "hasRightMAccess": false, - "logos": [ - { - "definitionType": "mobileAppli", - "listLogos": [ - { - "size": "183x183", - "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_mcm%2F20181115_095836%2FmobileAppli%2Flogo_183x183.png" - } - ] - }, - { - "definitionType": "mobileAppliDark", - "listLogos": [ - { - "size": "183x183", - "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_mcm%2F20181115_095836%2FmobileAppliDark%2Flogo_183x183.png" - } - ] - }, - { - "definitionType": "webTVLogo", - "listLogos": [ - { - "size": "180x96", - "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_mcm%2F20181115_095836%2FwebTVLogo%2Flogo_180x96.png" - } - ] - }, - { - "definitionType": "webTVSquare", - "listLogos": [ - { - "size": "150x150", - "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_mcm%2F20181115_095836%2FwebTVSquare%2Flogo_150x150.png" - } - ] - } - ], - "mobileData": { - "wifiForbidden": false, - "wifiSecuredOnly": false, - "everywhereChannel": true, - "nomadismAllowed": true, - "drmLevels": [ - { - "definition": "SD", - "securedTerminal": [ - "DRM-HW", - "DRM-SW" - ], - "unsecuredTerminal": [ - "DRM-HW", - "DRM-SW" - ] - }, - { - "definition": "HD", - "securedTerminal": [ - "DRM-HW", - "DRM-SW" - ], - "unsecuredTerminal": [ - "ND" - ] - } - ] - }, - "webdeviceData": { - "nomadismAllowed": true - }, - "technicalChannels": { - "live": [ - { - "techChannelId": "400094", - "type": "CLOUDTV", - "liveTargetURLRelativePath": "livetv_mcm_ctv", - "usi": 400094, - "isDRMized": true, - "csa5Disabled": true - } - ], - "npvr": [ - { - "externalId": "livetv_mcm_ctv", - "techChannelId": "400094", - "type": "CLOUDTV", - "usi": 400094, - "isDRMized": true, - "antiAdskipping": "DEACTIVATED", - "csa5Disabled": true - } - ], - "startover": [] - } - }, - { - "name": "TMC +1", - "editoChannelId": "livetv_tmc_1", - "lcn": 144, - "idEPG": 2442, - "epgAvailable": true, - "epgTextSubstitution": "", - "displayOrder": 144, - "csaCode": 1, - "slogan": "Vos programmes de TMC décalés d’1h !", - "catchupChannelId": "", - "newChannel": false, - "roamingBlocked": false, - "allowedDeviceCategories": [ - "M_ANDROID", - "M_IOS", - "M_TABLET_ANDROID", - "M_TABLET_IOS", - "W_AIRPLAY", - "W_CHROMECAST", - "W_LACLETV2", - "W_SMARTTV", - "W_PC", - "S_STB" - ], - "packages": [ - "PA_bouquet_famille_disneyplus", - "PA_pack_intense", - "PA_bouquet_famille_max", - "PA_bouquet_divertissement_adsl", - "PI_WHITELIST" - ], - "hasRightIAccess": true, - "hasRightMAccess": false, - "logos": [ - { - "definitionType": "mobileAppli", - "listLogos": [ - { - "size": "183x183", - "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_tmc_1%2F20181002_112809%2FmobileAppli%2Flogo_183x183.png" - } - ] - }, - { - "definitionType": "mobileAppliDark", - "listLogos": [ - { - "size": "183x183", - "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_tmc_1%2F20181002_112809%2FmobileAppliDark%2Flogo_183x183.png" - } - ] - }, - { - "definitionType": "webTVLogo", - "listLogos": [ - { - "size": "180x96", - "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_tmc_1%2F20181002_112809%2FwebTVLogo%2Flogo_180x96.png" - } - ] - }, - { - "definitionType": "webTVSquare", - "listLogos": [ - { - "size": "150x150", - "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_tmc_1%2F20181002_112809%2FwebTVSquare%2Flogo_150x150.png" - } - ] - } - ], - "mobileData": { - "wifiForbidden": false, - "wifiSecuredOnly": false, - "everywhereChannel": true, - "nomadismAllowed": true, - "drmLevels": [ - { - "definition": "SD", - "securedTerminal": [ - "DRM-HW", - "DRM-SW" - ], - "unsecuredTerminal": [ - "DRM-HW", - "DRM-SW" - ] - }, - { - "definition": "HD", - "securedTerminal": [ - "DRM-HW", - "DRM-SW" - ], - "unsecuredTerminal": [ - "ND" - ] - } - ] - }, - "webdeviceData": { - "nomadismAllowed": true - }, - "technicalChannels": { - "live": [ - { - "techChannelId": "400169", - "type": "CLOUDTV", - "liveTargetURLRelativePath": "livetv_tmc_plus_1_ctv", - "usi": 400169, - "isDRMized": true, - "csa5Disabled": true - } - ], - "npvr": [ - { - "externalId": "livetv_tmc_plus_1_ctv", - "techChannelId": "400169", - "type": "CLOUDTV", - "usi": 400169, - "isDRMized": true, - "antiAdskipping": "DEACTIVATED", - "csa5Disabled": true - } - ], - "startover": [] - } - }, - { - "name": "MANGAS", - "editoChannelId": "livetv_mangas", - "lcn": 145, - "idEPG": 6, - "epgAvailable": true, - "epgTextSubstitution": "", - "displayOrder": 145, - "csaCode": 1, - "slogan": "La chaîne 100% japanime", - "catchupChannelId": "catchuptv_mangas", - "newChannel": false, - "roamingBlocked": true, - "allowedDeviceCategories": [ - "M_ANDROID", - "M_IOS", - "M_TABLET_ANDROID", - "M_TABLET_IOS", - "W_AIRPLAY", - "W_CHROMECAST", - "W_LACLETV2", - "W_PC", - "W_SMARTTV", - "S_STB" - ], - "packages": [ - "PA_BQ_PASSACCESTVPREMIUM_M", - "PA_pack_Divertissement", - "PA_BQ_RE_TVMAX_M", - "PA_bouquet_famille_disneyplus", - "PA_BQ_ACCESTVPREMIUM_M", - "PA_BQ_PAYG_M", - "PA_pack_intense", - "PA_bouquet_divertissement_fibre", - "PA_bouquet_famille_by_canal", - "PA_bouquet_famille_by_canal_nov2018", - "PA_bouquet_famille_max", - "PA_bouquet_divertissement_adsl", - "PI_WHITELIST" - ], - "hasRightIAccess": true, - "hasRightMAccess": true, - "logos": [ - { - "definitionType": "mobileAppli", - "listLogos": [ - { - "size": "183x183", - "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_mangas%2F20220801_115348%2FmobileAppli%2Flogo_183x183.png" - } - ] - }, - { - "definitionType": "mobileAppliDark", - "listLogos": [ - { - "size": "183x183", - "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_mangas%2F20220801_115348%2FmobileAppliDark%2Flogo_183x183.png" - } - ] - }, - { - "definitionType": "webTVLogo", - "listLogos": [ - { - "size": "180x96", - "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_mangas%2F20220801_115348%2FwebTVLogo%2Flogo_180x96.png" - } - ] - }, - { - "definitionType": "webTVSquare", - "listLogos": [ - { - "size": "150x150", - "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_mangas%2F20220801_115348%2FwebTVSquare%2Flogo_150x150.png" - } - ] - } - ], - "mobileData": { - "wifiForbidden": false, - "wifiSecuredOnly": false, - "everywhereChannel": true, - "nomadismAllowed": true, - "drmLevels": [ - { - "definition": "SD", - "securedTerminal": [ - "DRM-HW", - "DRM-SW" - ], - "unsecuredTerminal": [ - "DRM-HW", - "DRM-SW" - ] - }, - { - "definition": "HD", - "securedTerminal": [ - "ND" - ], - "unsecuredTerminal": [ - "ND" - ] - } - ] - }, - "webdeviceData": { - "nomadismAllowed": true - }, - "technicalChannels": { - "live": [ - { - "techChannelId": "400154", - "type": "CLOUDTV", - "liveTargetURLRelativePath": "livetv_mangas_ctv", - "usi": 400154, - "isDRMized": true, - "csa5Disabled": true - } - ], - "npvr": [ - { - "externalId": "livetv_mangas_ctv", - "techChannelId": "400154", - "type": "CLOUDTV", - "usi": 400154, - "isDRMized": true, - "antiAdskipping": "DEACTIVATED", - "csa5Disabled": true - } - ], - "startover": [] - } - }, - { - "name": "WARNER TV NEXT", - "editoChannelId": "livetv_Toonami", - "lcn": 146, - "idEPG": 2040, - "epgAvailable": true, - "epgTextSubstitution": "", - "displayOrder": 146, - "csaCode": 1, - "slogan": "WarnerTV Next, Prêts pour la Suite ?!", - "catchupChannelId": "catchuptv_Toonami_max", - "newChannel": false, - "roamingBlocked": true, - "allowedDeviceCategories": [ - "M_ANDROID", - "M_IOS", - "M_TABLET_ANDROID", - "M_TABLET_IOS", - "W_AIRPLAY", - "W_CHROMECAST", - "W_LACLETV2", - "W_PC", - "W_SMARTTV", - "S_STB" - ], - "packages": [ - "PA_bouquet_famille_disneyplus", - "PA_pack_intense", - "PA_bouquet_famille_max", - "PA_bouquet_divertissement_adsl", - "PI_WHITELIST" - ], - "hasRightIAccess": true, - "hasRightMAccess": false, - "logos": [ - { - "definitionType": "mobileAppli", - "listLogos": [ - { - "size": "183x183", - "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_Toonami%2F20230717_162813%2FmobileAppli%2Flogo_183x183.png" - } - ] - }, - { - "definitionType": "mobileAppliDark", - "listLogos": [ - { - "size": "183x183", - "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_Toonami%2F20230717_162813%2FmobileAppliDark%2Flogo_183x183.png" - } - ] - }, - { - "definitionType": "webTVLogo", - "listLogos": [ - { - "size": "180x96", - "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_Toonami%2F20230717_162813%2FwebTVLogo%2Flogo_180x96.png" - } - ] - }, - { - "definitionType": "webTVSquare", - "listLogos": [ - { - "size": "150x150", - "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_Toonami%2F20230717_162813%2FwebTVSquare%2Flogo_150x150.png" - } - ] - } - ], - "mobileData": { - "wifiForbidden": false, - "wifiSecuredOnly": false, - "everywhereChannel": true, - "nomadismAllowed": true, - "drmLevels": [ - { - "definition": "SD", - "securedTerminal": [ - "DRM-HW", - "DRM-SW" - ], - "unsecuredTerminal": [ - "DRM-HW", - "DRM-SW" - ] - }, - { - "definition": "HD", - "securedTerminal": [ - "DRM-HW", - "DRM-SW" - ], - "unsecuredTerminal": [ - "ND" - ] - } - ] - }, - "webdeviceData": { - "nomadismAllowed": true - }, - "technicalChannels": { - "live": [ - { - "techChannelId": "400046", - "type": "CLOUDTV", - "liveTargetURLRelativePath": "livetv_toonami_ctv", - "usi": 400046, - "isDRMized": true, - "csa5Disabled": true - } - ], - "npvr": [ - { - "externalId": "livetv_toonami_ctv", - "techChannelId": "400046", - "type": "CLOUDTV", - "usi": 400046, - "isDRMized": true, - "antiAdskipping": "DEACTIVATED", - "csa5Disabled": true - } - ], - "startover": [] - } - }, - { - "name": "J-ONE", - "editoChannelId": "livetv_j_one", - "lcn": 147, - "idEPG": 1585, - "epgAvailable": true, - "epgTextSubstitution": "", - "displayOrder": 147, - "csaCode": 1, - "slogan": "Pop Culture Manga à J+1", - "catchupChannelId": "catchuptv_JOne", - "newChannel": false, - "roamingBlocked": true, - "allowedDeviceCategories": [ - "M_ANDROID", - "M_IOS", - "M_TABLET_ANDROID", - "M_TABLET_IOS", - "W_AIRPLAY", - "W_CHROMECAST", - "W_LACLETV2", - "W_SMARTTV", - "W_PC", - "S_STB" - ], - "packages": [ - "PA_bouquet_famille_disneyplus", - "PA_pack_intense", - "PA_bouquet_divertissement_fibre", - "PA_bouquet_famille_by_canal", - "PA_bouquet_famille_by_canal_nov2018", - "PA_bouquet_famille_max", - "PA_bouquet_divertissement_adsl", - "PI_WHITELIST" - ], - "hasRightIAccess": true, - "hasRightMAccess": false, - "logos": [ - { - "definitionType": "mobileAppli", - "listLogos": [ - { - "size": "183x183", - "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_j_one%2F20200804_093352%2FmobileAppli%2Flogo_183x183.png" - } - ] - }, - { - "definitionType": "mobileAppliDark", - "listLogos": [ - { - "size": "183x183", - "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_j_one%2F20200804_093352%2FmobileAppliDark%2Flogo_183x183.png" - } - ] - }, - { - "definitionType": "webTVLogo", - "listLogos": [ - { - "size": "180x96", - "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_j_one%2F20200804_093352%2FwebTVLogo%2Flogo_180x96.png" - } - ] - }, - { - "definitionType": "webTVSquare", - "listLogos": [ - { - "size": "150x150", - "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_j_one%2F20200804_093352%2FwebTVSquare%2Flogo_150x150.png" - } - ] - } - ], - "mobileData": { - "wifiForbidden": false, - "wifiSecuredOnly": false, - "everywhereChannel": true, - "nomadismAllowed": true, - "drmLevels": [ - { - "definition": "SD", - "securedTerminal": [ - "DRM-HW", - "DRM-SW" - ], - "unsecuredTerminal": [ - "DRM-HW", - "DRM-SW" - ] - }, - { - "definition": "HD", - "securedTerminal": [ - "ND" - ], - "unsecuredTerminal": [ - "ND" - ] - } - ] - }, - "webdeviceData": { - "nomadismAllowed": true - }, - "technicalChannels": { - "live": [ - { - "techChannelId": "400237", - "type": "CLOUDTV", - "liveTargetURLRelativePath": "livetv_j_one_ctv", - "usi": 400237, - "isDRMized": true, - "csa5Disabled": true - } - ], - "npvr": [ - { - "externalId": "livetv_j_one_ctv", - "techChannelId": "400237", - "type": "CLOUDTV", - "usi": 400237, - "isDRMized": true, - "antiAdskipping": "DEACTIVATED", - "csa5Disabled": true - } - ], - "startover": [] - } - }, - { - "name": "TRACE URBAN", - "editoChannelId": "livetv_trace_urban", - "lcn": 150, - "idEPG": 90150, - "epgAvailable": false, - "epgTextSubstitution": "", - "displayOrder": 150, - "csaCode": 1, - "slogan": "We love Hip-Hop and R'n'B", - "catchupChannelId": "", - "newChannel": false, - "roamingBlocked": true, - "allowedDeviceCategories": [ - "M_ANDROID", - "M_IOS", - "M_TABLET_ANDROID", - "M_TABLET_IOS", - "W_AIRPLAY", - "W_CHROMECAST", - "W_LACLETV2", - "W_PC", - "W_SMARTTV", - "S_STB" - ], - "packages": [ - "PA_BQ_PASSACCESTVPREMIUM_M", - "PA_BQ_BASIC_M", - "PA_BQ_RE_TVMAX_M", - "PA_BQ_ACCESTVPREMIUM_M", - "PA_BQ_PAYG_M", - "PA_BQ_MUSIQUE_M", - "PA_BQ_TVDIGITALE_I", - "PA_BQ_BASIC_I", - "PA_BQ_BASICQUAD_I", - "PI_WHITELIST" - ], - "hasRightIAccess": true, - "hasRightMAccess": true, - "logos": [ - { - "definitionType": "mobileAppli", - "listLogos": [ - { - "size": "183x183", - "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_trace_urban%2F20230919_133903%2FmobileAppli%2Flogo_183x183.png" - } - ] - }, - { - "definitionType": "mobileAppliDark", - "listLogos": [ - { - "size": "183x183", - "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_trace_urban%2F20230919_133903%2FmobileAppliDark%2Flogo_183x183.png" - } - ] - }, - { - "definitionType": "webTVLogo", - "listLogos": [ - { - "size": "180x96", - "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_trace_urban%2F20230919_133903%2FwebTVLogo%2Flogo_180x96.png" - } - ] - }, - { - "definitionType": "webTVSquare", - "listLogos": [ - { - "size": "150x150", - "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_trace_urban%2F20230919_133903%2FwebTVSquare%2Flogo_150x150.png" - } - ] - } - ], - "mobileData": { - "wifiForbidden": false, - "wifiSecuredOnly": false, - "everywhereChannel": true, - "nomadismAllowed": true, - "drmLevels": [ - { - "definition": "SD", - "securedTerminal": [ - "DRM-HW", - "DRM-SW" - ], - "unsecuredTerminal": [ - "DRM-HW", - "DRM-SW" - ] - }, - { - "definition": "HD", - "securedTerminal": [ - "ND" - ], - "unsecuredTerminal": [ - "ND" - ] - } - ] - }, - "webdeviceData": { - "nomadismAllowed": true - }, - "technicalChannels": { - "live": [ - { - "techChannelId": "400001", - "type": "CLOUDTV", - "liveTargetURLRelativePath": "livetv_trace_urban_ctv", - "usi": 400001, - "isDRMized": true, - "csa5Disabled": true - } - ], - "npvr": [ - { - "externalId": "livetv_trace_urban_ctv", - "techChannelId": "400001", - "type": "CLOUDTV", - "usi": 400001, - "isDRMized": true, - "antiAdskipping": "DEACTIVATED", - "csa5Disabled": true - } - ], - "startover": [ - { - "externalId": "livetv_trace_urban_ctv", - "techChannelId": "400001", - "type": "CLOUDTV", - "usi": 400001, - "isDRMized": true, - "antiAdskipping": "DEACTIVATED", - "csa5Disabled": true - } - ] - } - }, - { - "name": "NRJ HITS", - "editoChannelId": "livetv_nrjhits", - "lcn": 151, - "idEPG": 605, - "epgAvailable": true, - "epgTextSubstitution": "", - "displayOrder": 151, - "csaCode": 1, - "slogan": "Hit music only", - "catchupChannelId": "", - "newChannel": false, - "roamingBlocked": true, - "allowedDeviceCategories": [ - "M_ANDROID", - "M_IOS", - "M_TABLET_ANDROID", - "M_TABLET_IOS", - "W_AIRPLAY", - "W_CHROMECAST", - "W_LACLETV2", - "W_SMARTTV", - "W_PC", - "S_STB" - ], - "packages": [ - "PA_BQ_PASSACCESTVPREMIUM_M", - "PA_BQ_BASIC_M", - "PA_BQ_RE_TVMAX_M", - "PA_BQ_ACCESTVPREMIUM_M", - "PA_BQ_PAYG_M", - "PA_BQ_TVDIGITALE_I", - "PA_BQ_BASIC_I", - "PA_BQ_BASICQUAD_I", - "PA_BQ_ACCESTV_M", - "PI_WHITELIST" - ], - "hasRightIAccess": true, - "hasRightMAccess": true, - "logos": [ - { - "definitionType": "mobileAppli", - "listLogos": [ - { - "size": "183x183", - "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_nrjhits%2F20200205_132914%2FmobileAppli%2Flogo_183x183.png" - } - ] - }, - { - "definitionType": "mobileAppliDark", - "listLogos": [ - { - "size": "183x183", - "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_nrjhits%2F20200205_132914%2FmobileAppliDark%2Flogo_183x183.png" - } - ] - }, - { - "definitionType": "webTVLogo", - "listLogos": [ - { - "size": "180x96", - "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_nrjhits%2F20200205_132914%2FwebTVLogo%2Flogo_180x96.png" - } - ] - }, - { - "definitionType": "webTVSquare", - "listLogos": [ - { - "size": "150x150", - "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_nrjhits%2F20200205_132914%2FwebTVSquare%2Flogo_150x150.png" - } - ] - } - ], - "mobileData": { - "wifiForbidden": false, - "wifiSecuredOnly": false, - "everywhereChannel": true, - "nomadismAllowed": true, - "drmLevels": [ - { - "definition": "SD", - "securedTerminal": [ - "DRM-HW", - "DRM-SW" - ], - "unsecuredTerminal": [ - "DRM-HW", - "DRM-SW" - ] - }, - { - "definition": "HD", - "securedTerminal": [ - "ND" - ], - "unsecuredTerminal": [ - "ND" - ] - } - ] - }, - "webdeviceData": { - "nomadismAllowed": true - }, - "technicalChannels": { - "live": [ - { - "techChannelId": "400161", - "type": "CLOUDTV", - "liveTargetURLRelativePath": "livetv_nrjhits_ctv", - "usi": 400161, - "isDRMized": true, - "csa5Disabled": true - } - ], - "npvr": [ - { - "externalId": "livetv_nrjhits_ctv", - "techChannelId": "400161", - "type": "CLOUDTV", - "usi": 400161, - "isDRMized": true, - "antiAdskipping": "DEACTIVATED", - "csa5Disabled": true - } - ], - "startover": [ - { - "externalId": "livetv_nrjhits_ctv", - "techChannelId": "400161", - "type": "CLOUDTV", - "usi": 400161, - "isDRMized": true, - "antiAdskipping": "DEACTIVATED", - "csa5Disabled": true - } - ] - } - }, - { - "name": "MTV HITS", - "editoChannelId": "livetv_mtv_hits", - "lcn": 152, - "idEPG": 2006, - "epgAvailable": true, - "epgTextSubstitution": "", - "displayOrder": 152, - "csaCode": 1, - "slogan": "100% exclu", - "catchupChannelId": "catchuptv_mtv_hits", - "newChannel": false, - "roamingBlocked": true, - "allowedDeviceCategories": [ - "M_ANDROID", - "M_IOS", - "M_TABLET_ANDROID", - "M_TABLET_IOS", - "W_AIRPLAY", - "W_CHROMECAST", - "W_LACLETV2", - "W_PC", - "W_SMARTTV", - "S_STB" - ], - "packages": [ - "PA_BQ_BASIC_M", - "PA_BQ_TVDIGITALE_I", - "PA_BQ_BASIC_I", - "PA_BQ_BASICQUAD_I", - "PI_WHITELIST" - ], - "hasRightIAccess": true, - "hasRightMAccess": true, - "logos": [ - { - "definitionType": "mobileAppli", - "listLogos": [ - { - "size": "183x183", - "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_mtv_hits%2F20220411_102238%2FmobileAppli%2Flogo_183x183.png" - } - ] - }, - { - "definitionType": "mobileAppliDark", - "listLogos": [ - { - "size": "183x183", - "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_mtv_hits%2F20220411_102238%2FmobileAppliDark%2Flogo_183x183.png" - } - ] - }, - { - "definitionType": "webTVLogo", - "listLogos": [ - { - "size": "180x96", - "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_mtv_hits%2F20220411_102238%2FwebTVLogo%2Flogo_180x96.png" - } - ] - }, - { - "definitionType": "webTVSquare", - "listLogos": [ - { - "size": "150x150", - "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_mtv_hits%2F20220411_102238%2FwebTVSquare%2Flogo_150x150.png" - } - ] - } - ], - "mobileData": { - "wifiForbidden": false, - "wifiSecuredOnly": false, - "everywhereChannel": true, - "nomadismAllowed": true, - "drmLevels": [ - { - "definition": "SD", - "securedTerminal": [ - "DRM-HW", - "DRM-SW" - ], - "unsecuredTerminal": [ - "DRM-HW", - "DRM-SW" - ] - }, - { - "definition": "HD", - "securedTerminal": [ - "ND" - ], - "unsecuredTerminal": [ - "ND" - ] - } - ] - }, - "webdeviceData": { - "nomadismAllowed": true - }, - "technicalChannels": { - "live": [ - { - "techChannelId": "400159", - "type": "CLOUDTV", - "liveTargetURLRelativePath": "livetv_mtv_hits_ctv", - "usi": 400159, - "isDRMized": true, - "csa5Disabled": true - } - ], - "npvr": [ - { - "externalId": "livetv_mtv_hits_ctv", - "techChannelId": "400159", - "type": "CLOUDTV", - "usi": 400159, - "isDRMized": true, - "antiAdskipping": "DEACTIVATED", - "csa5Disabled": true - } - ], - "startover": [] - } - }, - { - "name": "MELODY D'AFRIQUE", - "editoChannelId": "livetv_melodyafr", - "lcn": 153, - "idEPG": 2321, - "epgAvailable": true, - "epgTextSubstitution": "", - "displayOrder": 153, - "csaCode": 1, - "slogan": "La chaîne Afro Héritage", - "catchupChannelId": "", - "newChannel": false, - "roamingBlocked": true, - "allowedDeviceCategories": [ - "M_ANDROID", - "M_TABLET_ANDROID", - "M_IOS", - "M_TABLET_IOS", - "W_AIRPLAY", - "W_CHROMECAST", - "W_LACLETV2", - "W_PC", - "W_SMARTTV", - "S_STB" - ], - "packages": [ - "PA_BQ_BASIC_I", - "PI_WHITELIST" - ], - "hasRightIAccess": true, - "hasRightMAccess": false, - "logos": [ - { - "definitionType": "mobileAppli", - "listLogos": [ - { - "size": "183x183", - "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_melodyafr%2F20230217_121614%2FmobileAppli%2Flogo_183x183.png" - } - ] - }, - { - "definitionType": "mobileAppliDark", - "listLogos": [ - { - "size": "183x183", - "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_melodyafr%2F20230217_121614%2FmobileAppliDark%2Flogo_183x183.png" - } - ] - }, - { - "definitionType": "webTVLogo", - "listLogos": [ - { - "size": "180x96", - "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_melodyafr%2F20230217_121614%2FwebTVLogo%2Flogo_180x96.png" - } - ] - }, - { - "definitionType": "webTVSquare", - "listLogos": [ - { - "size": "150x150", - "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_melodyafr%2F20230217_121614%2FwebTVSquare%2Flogo_150x150.png" - } - ] - } - ], - "mobileData": { - "wifiForbidden": false, - "wifiSecuredOnly": false, - "everywhereChannel": true, - "nomadismAllowed": true, - "drmLevels": [ - { - "definition": "SD", - "securedTerminal": [ - "DRM-HW", - "DRM-SW" - ], - "unsecuredTerminal": [ - "DRM-HW", - "DRM-SW" - ] - }, - { - "definition": "HD", - "securedTerminal": [ - "DRM-HW", - "DRM-SW" - ], - "unsecuredTerminal": [ - "ND" - ] - } - ] - }, - "webdeviceData": { - "nomadismAllowed": true - }, - "technicalChannels": { - "live": [ - { - "techChannelId": "400417", - "type": "CLOUDTV", - "liveTargetURLRelativePath": "livetv_acces_limite_ctv", - "usi": 400417, - "isDRMized": true, - "csa5Disabled": true - } - ], - "npvr": [], - "startover": [] - } - }, - { - "name": "CLUBBING TV", - "editoChannelId": "livetv_clubbingtv", - "lcn": 155, - "idEPG": 1989, - "epgAvailable": true, - "epgTextSubstitution": "", - "displayOrder": 155, - "csaCode": 1, - "slogan": "La première chaîne des Dance Floors", - "catchupChannelId": "catchuptv_clubbingtv", - "newChannel": false, - "roamingBlocked": true, - "allowedDeviceCategories": [ - "M_ANDROID", - "M_IOS", - "M_TABLET_ANDROID", - "M_TABLET_IOS", - "W_AIRPLAY", - "W_CHROMECAST", - "W_LACLETV2", - "W_SMARTTV", - "W_PC", - "S_STB" - ], - "packages": [ - "PA_BQ_BASIC_M", - "PA_BQ_TVDIGITALE_I", - "PA_BQ_BASIC_I", - "PA_BQ_BASICQUAD_I", - "PI_WHITELIST" - ], - "hasRightIAccess": true, - "hasRightMAccess": true, - "logos": [ - { - "definitionType": "mobileAppli", - "listLogos": [ - { - "size": "183x183", - "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_clubbingtv%2F20151026_092415%2FmobileAppli%2Flogo_183x183.png" - } - ] - }, - { - "definitionType": "mobileAppliDark", - "listLogos": [ - { - "size": "183x183", - "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_clubbingtv%2F20151026_092415%2FmobileAppliDark%2Flogo_183x183.png" - } - ] - }, - { - "definitionType": "webTVLogo", - "listLogos": [ - { - "size": "180x96", - "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_clubbingtv%2F20151026_092415%2FwebTVLogo%2Flogo_180x96.png" - } - ] - }, - { - "definitionType": "webTVSquare", - "listLogos": [ - { - "size": "150x150", - "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_clubbingtv%2F20151026_092415%2FwebTVSquare%2Flogo_150x150.png" - } - ] - } - ], - "mobileData": { - "wifiForbidden": false, - "wifiSecuredOnly": false, - "everywhereChannel": true, - "nomadismAllowed": true, - "drmLevels": [ - { - "definition": "SD", - "securedTerminal": [ - "DRM-HW", - "DRM-SW" - ], - "unsecuredTerminal": [ - "DRM-HW", - "DRM-SW" - ] - }, - { - "definition": "HD", - "securedTerminal": [ - "DRM-HW", - "DRM-SW" - ], - "unsecuredTerminal": [ - "ND" - ] - } - ] - }, - "webdeviceData": { - "nomadismAllowed": true - }, - "technicalChannels": { - "live": [ - { - "techChannelId": "400139", - "type": "CLOUDTV", - "liveTargetURLRelativePath": "livetv_clubbing_tv_ctv", - "usi": 400139, - "isDRMized": true, - "csa5Disabled": true - } - ], - "npvr": [ - { - "externalId": "livetv_clubbing_tv_ctv", - "techChannelId": "400139", - "type": "CLOUDTV", - "usi": 400139, - "isDRMized": true, - "antiAdskipping": "DEACTIVATED", - "csa5Disabled": true - } - ], - "startover": [] - } - }, - { - "name": "STAR ACADEMY, LE LIVE", - "editoChannelId": "livetv_star_academy", - "lcn": 156, - "idEPG": 90156, - "epgAvailable": false, - "epgTextSubstitution": "", - "displayOrder": 156, - "csaCode": 1, - "slogan": "La vie des élèves en direct du Château", - "catchupChannelId": "", - "newChannel": true, - "roamingBlocked": true, - "allowedDeviceCategories": [ - "M_ANDROID", - "M_IOS", - "M_TABLET_ANDROID", - "M_TABLET_IOS", - "W_AIRPLAY", - "W_CHROMECAST", - "W_LACLETV2", - "W_PC", - "W_SMARTTV", - "S_STB" - ], - "packages": [ - "PA_replaymax", - "PI_WHITELIST" - ], - "hasRightIAccess": true, - "hasRightMAccess": false, - "logos": [ - { - "definitionType": "mobileAppli", - "listLogos": [ - { - "size": "183x183", - "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_star_academy%2F20230921_161027%2FmobileAppli%2Flogo_183x183.png" - } - ] - }, - { - "definitionType": "mobileAppliDark", - "listLogos": [ - { - "size": "183x183", - "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_star_academy%2F20230921_161027%2FmobileAppliDark%2Flogo_183x183.png" - } - ] - }, - { - "definitionType": "webTVLogo", - "listLogos": [ - { - "size": "180x96", - "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_star_academy%2F20230921_161027%2FwebTVLogo%2Flogo_180x96.png" - } - ] - }, - { - "definitionType": "webTVSquare", - "listLogos": [ - { - "size": "150x150", - "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_star_academy%2F20230921_161027%2FwebTVSquare%2Flogo_150x150.png" - } - ] - } - ], - "mobileData": { - "wifiForbidden": false, - "wifiSecuredOnly": false, - "everywhereChannel": true, - "nomadismAllowed": true, - "drmLevels": [ - { - "definition": "SD", - "securedTerminal": [ - "DRM-HW", - "DRM-SW" - ], - "unsecuredTerminal": [ - "DRM-HW", - "DRM-SW" - ] - }, - { - "definition": "HD", - "securedTerminal": [ - "DRM-HW", - "DRM-SW" - ], - "unsecuredTerminal": [ - "ND" - ] - } - ] - }, - "webdeviceData": { - "nomadismAllowed": true - }, - "technicalChannels": { - "live": [ - { - "techChannelId": "400360", - "type": "CLOUDTV", - "liveTargetURLRelativePath": "livetv_star_academy_le_live_ctv", - "usi": 400360, - "isDRMized": true, - "csa5Disabled": true - } - ], - "npvr": [ - { - "externalId": "livetv_star_academy_le_live_ctv", - "techChannelId": "400360", - "type": "CLOUDTV", - "usi": 400360, - "isDRMized": true, - "antiAdskipping": "DEACTIVATED", - "csa5Disabled": true - } - ], - "startover": [] - } - }, - { - "name": "M6MUSIC", - "editoChannelId": "livetv_m6_music", - "lcn": 157, - "idEPG": 453, - "epgAvailable": true, - "epgTextSubstitution": "", - "displayOrder": 157, - "csaCode": 1, - "slogan": "La chaîne 100% Hits", - "catchupChannelId": "catchuptv_m6music", - "newChannel": false, - "roamingBlocked": true, - "allowedDeviceCategories": [ - "M_ANDROID", - "M_IOS", - "M_TABLET_ANDROID", - "M_TABLET_IOS", - "W_AIRPLAY", - "W_CHROMECAST", - "W_LACLETV2", - "W_SMARTTV", - "W_PC", - "S_STB" - ], - "packages": [ - "PA_BQ_PASSACCESTVPREMIUM_M", - "PA_pack_Divertissement", - "PA_bouquet_famille_disneyplus", - "PA_BQ_ACCESTVPREMIUM_M", - "PA_pack_intense", - "PA_BQ_MUSIQUE_M", - "PA_bouquet_divertissement_fibre", - "PA_bouquet_famille_by_canal", - "PA_bouquet_famille_by_canal_nov2018", - "PA_bouquet_famille_max", - "PA_bouquet_divertissement_adsl", - "PI_WHITELIST" - ], - "hasRightIAccess": true, - "hasRightMAccess": true, - "logos": [ - { - "definitionType": "mobileAppli", - "listLogos": [ - { - "size": "183x183", - "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_m6_music%2F20200102_141654%2FmobileAppli%2Flogo_183x183.png" - } - ] - }, - { - "definitionType": "mobileAppliDark", - "listLogos": [ - { - "size": "183x183", - "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_m6_music%2F20200102_141654%2FmobileAppliDark%2Flogo_183x183.png" - } - ] - }, - { - "definitionType": "webTVLogo", - "listLogos": [ - { - "size": "180x96", - "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_m6_music%2F20200102_141654%2FwebTVLogo%2Flogo_180x96.png" - } - ] - }, - { - "definitionType": "webTVSquare", - "listLogos": [ - { - "size": "150x150", - "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_m6_music%2F20200102_141654%2FwebTVSquare%2Flogo_150x150.png" - } - ] - } - ], - "mobileData": { - "wifiForbidden": false, - "wifiSecuredOnly": false, - "everywhereChannel": true, - "nomadismAllowed": true, - "drmLevels": [ - { - "definition": "SD", - "securedTerminal": [ - "DRM-HW", - "DRM-SW" - ], - "unsecuredTerminal": [ - "DRM-HW", - "DRM-SW" - ] - }, - { - "definition": "HD", - "securedTerminal": [ - "ND" - ], - "unsecuredTerminal": [ - "ND" - ] - } - ] - }, - "webdeviceData": { - "nomadismAllowed": true - }, - "technicalChannels": { - "live": [ - { - "techChannelId": "400153", - "type": "CLOUDTV", - "liveTargetURLRelativePath": "livetv_m6music_ctv", - "usi": 400153, - "isDRMized": true, - "csa5Disabled": true - } - ], - "npvr": [ - { - "externalId": "livetv_m6music_ctv", - "techChannelId": "400153", - "type": "CLOUDTV", - "usi": 400153, - "isDRMized": true, - "antiAdskipping": "DEACTIVATED", - "csa5Disabled": true - } - ], - "startover": [] - } - }, - { - "name": "RFM TV", - "editoChannelId": "livetv_mcmpop", - "lcn": 159, - "idEPG": 90159, - "epgAvailable": false, - "epgTextSubstitution": "", - "displayOrder": 159, - "csaCode": 1, - "slogan": "Le meilleur de la Musique", - "catchupChannelId": "", - "newChannel": false, - "roamingBlocked": true, - "allowedDeviceCategories": [ - "M_ANDROID", - "M_IOS", - "M_TABLET_ANDROID", - "M_TABLET_IOS", - "W_AIRPLAY", - "W_CHROMECAST", - "W_LACLETV2", - "W_SMARTTV", - "W_PC", - "S_STB" - ], - "packages": [ - "PA_BQ_PASSACCESTVPREMIUM_M", - "PA_pack_Divertissement", - "PA_bouquet_famille_disneyplus", - "PA_BQ_ACCESTVPREMIUM_M", - "PA_pack_intense", - "PA_BQ_MUSIQUE_M", - "PA_bouquet_divertissement_fibre", - "PA_bouquet_famille_by_canal", - "PA_bouquet_famille_by_canal_nov2018", - "PA_bouquet_famille_max", - "PA_bouquet_divertissement_adsl", - "PI_WHITELIST" - ], - "hasRightIAccess": true, - "hasRightMAccess": true, - "logos": [ - { - "definitionType": "mobileAppli", - "listLogos": [ - { - "size": "183x183", - "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_mcmpop%2F20170405_200000%2FmobileAppli%2Flogo_183x183.png" - } - ] - }, - { - "definitionType": "mobileAppliDark", - "listLogos": [ - { - "size": "183x183", - "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_mcmpop%2F20170405_200000%2FmobileAppliDark%2Flogo_183x183.png" - } - ] - }, - { - "definitionType": "webTVLogo", - "listLogos": [ - { - "size": "180x96", - "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_mcmpop%2F20170405_200000%2FwebTVLogo%2Flogo_180x96.png" - } - ] - }, - { - "definitionType": "webTVSquare", - "listLogos": [ - { - "size": "150x150", - "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_mcmpop%2F20170405_200000%2FwebTVSquare%2Flogo_150x150.png" - } - ] - } - ], - "mobileData": { - "wifiForbidden": false, - "wifiSecuredOnly": false, - "everywhereChannel": true, - "nomadismAllowed": true, - "drmLevels": [ - { - "definition": "SD", - "securedTerminal": [ - "DRM-HW", - "DRM-SW" - ], - "unsecuredTerminal": [ - "DRM-HW", - "DRM-SW" - ] - }, - { - "definition": "HD", - "securedTerminal": [ - "ND" - ], - "unsecuredTerminal": [ - "ND" - ] - } - ] - }, - "webdeviceData": { - "nomadismAllowed": true - }, - "technicalChannels": { - "live": [ - { - "techChannelId": "400164", - "type": "CLOUDTV", - "liveTargetURLRelativePath": "livetv_rfm_ctv", - "usi": 400164, - "isDRMized": true, - "csa5Disabled": true - } - ], - "npvr": [ - { - "externalId": "livetv_rfm_ctv", - "techChannelId": "400164", - "type": "CLOUDTV", - "usi": 400164, - "isDRMized": true, - "antiAdskipping": "DEACTIVATED", - "csa5Disabled": true - } - ], - "startover": [] - } - }, - { - "name": "MELODY", - "editoChannelId": "livetv_melody", - "lcn": 160, - "idEPG": 265, - "epgAvailable": true, - "epgTextSubstitution": "", - "displayOrder": 160, - "csaCode": 1, - "slogan": "La chaîne Vintage Forever", - "catchupChannelId": "catchuptv_melody", - "newChannel": true, - "roamingBlocked": true, - "allowedDeviceCategories": [ - "M_ANDROID", - "M_IOS", - "M_TABLET_ANDROID", - "M_TABLET_IOS", - "W_AIRPLAY", - "W_CHROMECAST", - "W_LACLETV2", - "W_SMARTTV", - "W_PC", - "S_STB" - ], - "packages": [ - "PA_bouquet_famille_disneyplus", - "PA_pack_intense", - "PA_bouquet_famille_max", - "PA_bouquet_divertissement_adsl", - "PA_melody", - "PI_WHITELIST" - ], - "hasRightIAccess": true, - "hasRightMAccess": false, - "logos": [ - { - "definitionType": "mobileAppli", - "listLogos": [ - { - "size": "183x183", - "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_melody%2F20151026_092415%2FmobileAppli%2Flogo_183x183.png" - } - ] - }, - { - "definitionType": "mobileAppliDark", - "listLogos": [ - { - "size": "183x183", - "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_melody%2F20151026_092415%2FmobileAppliDark%2Flogo_183x183.png" - } - ] - }, - { - "definitionType": "webTVLogo", - "listLogos": [ - { - "size": "180x96", - "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_melody%2F20151026_092415%2FwebTVLogo%2Flogo_180x96.png" - } - ] - }, - { - "definitionType": "webTVSquare", - "listLogos": [ - { - "size": "150x150", - "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_melody%2F20151026_092415%2FwebTVSquare%2Flogo_150x150.png" - } - ] - } - ], - "mobileData": { - "wifiForbidden": false, - "wifiSecuredOnly": false, - "everywhereChannel": true, - "nomadismAllowed": true, - "drmLevels": [ - { - "definition": "SD", - "securedTerminal": [ - "DRM-HW", - "DRM-SW" - ], - "unsecuredTerminal": [ - "DRM-HW", - "DRM-SW" - ] - }, - { - "definition": "HD", - "securedTerminal": [ - "ND" - ], - "unsecuredTerminal": [ - "ND" - ] - } - ] - }, - "webdeviceData": { - "nomadismAllowed": true - }, - "technicalChannels": { - "live": [ - { - "techChannelId": "400155", - "type": "CLOUDTV", - "liveTargetURLRelativePath": "livetv_melody_ctv", - "usi": 400155, - "isDRMized": true, - "csa5Disabled": true - } - ], - "npvr": [ - { - "externalId": "livetv_melody_ctv", - "techChannelId": "400155", - "type": "CLOUDTV", - "usi": 400155, - "isDRMized": true, - "antiAdskipping": "DEACTIVATED", - "csa5Disabled": true - } - ], - "startover": [] - } - }, - { - "name": "TRACE CARIBBEAN", - "editoChannelId": "livetv_trace_tropical", - "lcn": 161, - "idEPG": 90161, - "epgAvailable": false, - "epgTextSubstitution": "", - "displayOrder": 161, - "csaCode": 1, - "slogan": "We are one Caribbean", - "catchupChannelId": "", - "newChannel": false, - "roamingBlocked": true, - "allowedDeviceCategories": [ - "M_ANDROID", - "M_IOS", - "M_TABLET_ANDROID", - "M_TABLET_IOS", - "W_AIRPLAY", - "W_CHROMECAST", - "W_LACLETV2", - "W_SMARTTV", - "W_PC", - "S_STB" - ], - "packages": [ - "PA_pack_Divertissement", - "PA_BQ_RE_TVMAX_M", - "PA_bouquet_famille_disneyplus", - "PA_BQ_ACCESTVPREMIUM_M", - "PA_BQ_PAYG_M", - "PA_pack_intense", - "PA_BQ_MUSIQUE_M", - "PA_BQ_SPORT_M", - "PA_bouquet_famille_max", - "PA_bouquet_divertissement_adsl", - "PI_WHITELIST" - ], - "hasRightIAccess": true, - "hasRightMAccess": true, - "logos": [ - { - "definitionType": "mobileAppli", - "listLogos": [ - { - "size": "183x183", - "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_trace_tropical%2F20230831_150807%2FmobileAppli%2Flogo_183x183.png" - } - ] - }, - { - "definitionType": "mobileAppliDark", - "listLogos": [ - { - "size": "183x183", - "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_trace_tropical%2F20230831_150807%2FmobileAppliDark%2Flogo_183x183.png" - } - ] - }, - { - "definitionType": "webTVLogo", - "listLogos": [ - { - "size": "180x96", - "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_trace_tropical%2F20230831_150807%2FwebTVLogo%2Flogo_180x96.png" - } - ] - }, - { - "definitionType": "webTVSquare", - "listLogos": [ - { - "size": "150x150", - "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_trace_tropical%2F20230831_150807%2FwebTVSquare%2Flogo_150x150.png" - } - ] - } - ], - "mobileData": { - "wifiForbidden": false, - "wifiSecuredOnly": false, - "everywhereChannel": true, - "nomadismAllowed": true, - "drmLevels": [ - { - "definition": "SD", - "securedTerminal": [ - "DRM-HW", - "DRM-SW" - ], - "unsecuredTerminal": [ - "DRM-HW", - "DRM-SW" - ] - }, - { - "definition": "HD", - "securedTerminal": [ - "ND" - ], - "unsecuredTerminal": [ - "ND" - ] - } - ] - }, - "webdeviceData": { - "nomadismAllowed": true - }, - "technicalChannels": { - "live": [ - { - "techChannelId": "400171", - "type": "CLOUDTV", - "liveTargetURLRelativePath": "livetv_trace_tropical_ctv", - "usi": 400171, - "isDRMized": true, - "csa5Disabled": true - } - ], - "npvr": [ - { - "externalId": "livetv_trace_tropical_ctv", - "techChannelId": "400171", - "type": "CLOUDTV", - "usi": 400171, - "isDRMized": true, - "antiAdskipping": "DEACTIVATED", - "csa5Disabled": true - } - ], - "startover": [] - } - }, - { - "name": "TRACE LATINA", - "editoChannelId": "livetv_trace_latina", - "lcn": 162, - "idEPG": 90162, - "epgAvailable": false, - "epgTextSubstitution": "", - "displayOrder": 162, - "csaCode": 1, - "slogan": "We are Latin Music", - "catchupChannelId": "", - "newChannel": true, - "roamingBlocked": true, - "allowedDeviceCategories": [ - "M_ANDROID", - "M_IOS", - "M_TABLET_ANDROID", - "M_TABLET_IOS", - "W_AIRPLAY", - "W_CHROMECAST", - "W_LACLETV2", - "W_SMARTTV", - "W_PC", - "S_STB" - ], - "packages": [ - "PA_bouquet_famille_disneyplus", - "PA_pack_intense", - "PA_bouquet_famille_max", - "PA_bouquet_divertissement_adsl", - "PI_WHITELIST" - ], - "hasRightIAccess": true, - "hasRightMAccess": false, - "logos": [ - { - "definitionType": "mobileAppli", - "listLogos": [ - { - "size": "183x183", - "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_trace_latina%2F20230831_150807%2FmobileAppli%2Flogo_183x183.png" - } - ] - }, - { - "definitionType": "mobileAppliDark", - "listLogos": [ - { - "size": "183x183", - "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_trace_latina%2F20230831_150807%2FmobileAppliDark%2Flogo_183x183.png" - } - ] - }, - { - "definitionType": "webTVLogo", - "listLogos": [ - { - "size": "180x96", - "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_trace_latina%2F20230831_150807%2FwebTVLogo%2Flogo_180x96.png" - } - ] - }, - { - "definitionType": "webTVSquare", - "listLogos": [ - { - "size": "150x150", - "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_trace_latina%2F20230831_150807%2FwebTVSquare%2Flogo_150x150.png" - } - ] - } - ], - "mobileData": { - "wifiForbidden": false, - "wifiSecuredOnly": false, - "everywhereChannel": true, - "nomadismAllowed": true, - "drmLevels": [ - { - "definition": "SD", - "securedTerminal": [ - "DRM-HW", - "DRM-SW" - ], - "unsecuredTerminal": [ - "DRM-HW", - "DRM-SW" - ] - }, - { - "definition": "HD", - "securedTerminal": [ - "DRM-HW", - "DRM-SW" - ], - "unsecuredTerminal": [ - "ND" - ] - } - ] - }, - "webdeviceData": { - "nomadismAllowed": true - }, - "technicalChannels": { - "live": [ - { - "techChannelId": "400170", - "type": "CLOUDTV", - "liveTargetURLRelativePath": "livetv_trace_latina_ctv", - "usi": 400170, - "isDRMized": true, - "csa5Disabled": true - } - ], - "npvr": [ - { - "externalId": "livetv_trace_latina_ctv", - "techChannelId": "400170", - "type": "CLOUDTV", - "usi": 400170, - "isDRMized": true, - "antiAdskipping": "DEACTIVATED", - "csa5Disabled": true - } - ], - "startover": [] - } - }, - { - "name": "TRACE VANILLA", - "editoChannelId": "livetv_trace_vanilla", - "lcn": 163, - "idEPG": 90163, - "epgAvailable": false, - "epgTextSubstitution": "", - "displayOrder": 163, - "csaCode": 1, - "slogan": "We Are Vanilla Music", - "catchupChannelId": "", - "newChannel": true, - "roamingBlocked": false, - "allowedDeviceCategories": [ - "M_ANDROID", - "M_IOS", - "M_TABLET_ANDROID", - "M_TABLET_IOS", - "W_AIRPLAY", - "W_CHROMECAST", - "W_LACLETV2", - "W_PC", - "W_SMARTTV", - "S_STB" - ], - "packages": [ - "PA_bouquet_famille_disneyplus", - "PA_pack_intense", - "PA_bouquet_famille_max", - "PA_bouquet_divertissement_adsl", - "PI_WHITELIST" - ], - "hasRightIAccess": true, - "hasRightMAccess": false, - "logos": [ - { - "definitionType": "mobileAppli", - "listLogos": [ - { - "size": "183x183", - "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_trace_vanilla%2F20230324_101810%2FmobileAppli%2Flogo_183x183.png" - } - ] - }, - { - "definitionType": "mobileAppliDark", - "listLogos": [ - { - "size": "183x183", - "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_trace_vanilla%2F20230324_101810%2FmobileAppliDark%2Flogo_183x183.png" - } - ] - }, - { - "definitionType": "webTVLogo", - "listLogos": [ - { - "size": "180x96", - "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_trace_vanilla%2F20230324_101810%2FwebTVLogo%2Flogo_180x96.png" - } - ] - }, - { - "definitionType": "webTVSquare", - "listLogos": [ - { - "size": "150x150", - "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_trace_vanilla%2F20230324_101810%2FwebTVSquare%2Flogo_150x150.png" - } - ] - } - ], - "mobileData": { - "wifiForbidden": false, - "wifiSecuredOnly": false, - "everywhereChannel": true, - "nomadismAllowed": true, - "drmLevels": [ - { - "definition": "SD", - "securedTerminal": [ - "DRM-HW", - "DRM-SW" - ], - "unsecuredTerminal": [ - "DRM-HW", - "DRM-SW" - ] - }, - { - "definition": "HD", - "securedTerminal": [ - "NO-DRM" - ], - "unsecuredTerminal": [ - "NO-DRM" - ] - } - ] - }, - "webdeviceData": { - "nomadismAllowed": true - }, - "technicalChannels": { - "live": [ - { - "techChannelId": "400277", - "type": "CLOUDTV", - "liveTargetURLRelativePath": "livetv_trace_vanilla_ctv", - "usi": 400277, - "isDRMized": true, - "csa5Disabled": true - } - ], - "npvr": [ - { - "externalId": "livetv_trace_vanilla_ctv", - "techChannelId": "400277", - "type": "CLOUDTV", - "usi": 400277, - "isDRMized": true, - "antiAdskipping": "DEACTIVATED", - "csa5Disabled": true - } - ], - "startover": [] - } - }, - { - "name": "CSTAR HITS FRANCE", - "editoChannelId": "livetv_cstarhits", - "lcn": 165, - "idEPG": 90165, - "epgAvailable": false, - "epgTextSubstitution": "", - "displayOrder": 165, - "csaCode": 1, - "slogan": "La chaîne 100% musique française", - "catchupChannelId": "", - "newChannel": true, - "roamingBlocked": true, - "allowedDeviceCategories": [ - "M_ANDROID", - "M_IOS", - "M_TABLET_ANDROID", - "M_TABLET_IOS", - "W_AIRPLAY", - "W_CHROMECAST", - "W_LACLETV2", - "W_SMARTTV", - "W_PC", - "S_STB" - ], - "packages": [ - "PA_bouquet_divertissement_fibre", - "PA_bouquet_famille_by_canal", - "PA_bouquet_famille_by_canal_nov2018", - "PI_WHITELIST" - ], - "hasRightIAccess": true, - "hasRightMAccess": false, - "logos": [ - { - "definitionType": "mobileAppli", - "listLogos": [ - { - "size": "183x183", - "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_cstarhits%2F20180328_104917%2FmobileAppli%2Flogo_183x183.png" - } - ] - }, - { - "definitionType": "mobileAppliDark", - "listLogos": [ - { - "size": "183x183", - "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_cstarhits%2F20180328_104917%2FmobileAppliDark%2Flogo_183x183.png" - } - ] - }, - { - "definitionType": "webTVLogo", - "listLogos": [ - { - "size": "180x96", - "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_cstarhits%2F20180328_104917%2FwebTVLogo%2Flogo_180x96.png" - } - ] - }, - { - "definitionType": "webTVSquare", - "listLogos": [ - { - "size": "150x150", - "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_cstarhits%2F20180328_104917%2FwebTVSquare%2Flogo_150x150.png" - } - ] - } - ], - "mobileData": { - "wifiForbidden": false, - "wifiSecuredOnly": false, - "everywhereChannel": true, - "nomadismAllowed": true, - "drmLevels": [ - { - "definition": "SD", - "securedTerminal": [ - "DRM-HW", - "DRM-SW" - ], - "unsecuredTerminal": [ - "DRM-HW", - "DRM-SW" - ] - }, - { - "definition": "HD", - "securedTerminal": [ - "ND" - ], - "unsecuredTerminal": [ - "ND" - ] - } - ] - }, - "webdeviceData": { - "nomadismAllowed": true - }, - "technicalChannels": { - "live": [ - { - "techChannelId": "400141", - "type": "CLOUDTV", - "liveTargetURLRelativePath": "livetv_cstar_hits_france_ctv", - "usi": 400141, - "isDRMized": true, - "csa5Disabled": true - } - ], - "npvr": [ - { - "externalId": "livetv_cstar_hits_france_ctv", - "techChannelId": "400141", - "type": "CLOUDTV", - "usi": 400141, - "isDRMized": true, - "antiAdskipping": "DEACTIVATED", - "csa5Disabled": true - } - ], - "startover": [] - } - }, - { - "name": "OLYMPIA TV", - "editoChannelId": "livetv_olympia_tv", - "lcn": 166, - "idEPG": 2958, - "epgAvailable": true, - "epgTextSubstitution": "", - "displayOrder": 166, - "csaCode": 1, - "slogan": "La chaîne de vos soirées spectacles", - "catchupChannelId": "catchuptv_olympiatv", - "newChannel": true, - "roamingBlocked": true, - "allowedDeviceCategories": [ - "M_ANDROID", - "M_IOS", - "M_TABLET_ANDROID", - "M_TABLET_IOS", - "W_AIRPLAY", - "W_CHROMECAST", - "W_LACLETV2", - "W_SMARTTV", - "W_PC", - "S_STB" - ], - "packages": [ - "PA_bouquet_divertissement_fibre", - "PA_bouquet_famille_by_canal", - "PA_bouquet_famille_by_canal_nov2018", - "PI_WHITELIST" - ], - "hasRightIAccess": true, - "hasRightMAccess": false, - "logos": [ - { - "definitionType": "mobileAppli", - "listLogos": [ - { - "size": "183x183", - "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_olympia_tv%2F20200130_100105%2FmobileAppli%2Flogo_183x183.png" - } - ] - }, - { - "definitionType": "mobileAppliDark", - "listLogos": [ - { - "size": "183x183", - "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_olympia_tv%2F20200130_100105%2FmobileAppliDark%2Flogo_183x183.png" - } - ] - }, - { - "definitionType": "webTVLogo", - "listLogos": [ - { - "size": "180x96", - "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_olympia_tv%2F20200130_100105%2FwebTVLogo%2Flogo_180x96.png" - } - ] - }, - { - "definitionType": "webTVSquare", - "listLogos": [ - { - "size": "150x150", - "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_olympia_tv%2F20200130_100105%2FwebTVSquare%2Flogo_150x150.png" - } - ] - } - ], - "mobileData": { - "wifiForbidden": false, - "wifiSecuredOnly": false, - "everywhereChannel": true, - "nomadismAllowed": true, - "drmLevels": [ - { - "definition": "SD", - "securedTerminal": [ - "DRM-HW", - "DRM-SW" - ], - "unsecuredTerminal": [ - "DRM-HW", - "DRM-SW" - ] - }, - { - "definition": "HD", - "securedTerminal": [ - "ND" - ], - "unsecuredTerminal": [ - "ND" - ] - } - ] - }, - "webdeviceData": { - "nomadismAllowed": true - }, - "technicalChannels": { - "live": [ - { - "techChannelId": "400218", - "type": "CLOUDTV", - "liveTargetURLRelativePath": "livetv_olympia_tv_ctv", - "usi": 400218, - "isDRMized": true, - "csa5Disabled": true - } - ], - "npvr": [ - { - "externalId": "livetv_olympia_tv_ctv", - "techChannelId": "400218", - "type": "CLOUDTV", - "usi": 400218, - "isDRMized": true, - "antiAdskipping": "DEACTIVATED", - "csa5Disabled": true - } - ], - "startover": [] - } - }, - { - "name": "MEZZO", - "editoChannelId": "livetv_mezzo", - "lcn": 167, - "idEPG": 125, - "epgAvailable": true, - "epgTextSubstitution": "", - "displayOrder": 167, - "csaCode": 1, - "slogan": "Musique Classique, Opéra, Jazz et Danse", - "catchupChannelId": "catchuptv_mezzo_CU", - "newChannel": true, - "roamingBlocked": true, - "allowedDeviceCategories": [ - "M_ANDROID", - "M_IOS", - "M_TABLET_ANDROID", - "M_TABLET_IOS", - "W_AIRPLAY", - "W_CHROMECAST", - "W_LACLETV2", - "W_PC", - "W_SMARTTV", - "S_STB" - ], - "packages": [ - "PA_pack_Divertissement", - "PA_bouquet_musique_classique", - "PA_bouquet_famille_disneyplus", - "PA_pack_intense", - "PA_bouquet_divertissement_fibre", - "PA_bouquet_famille_by_canal_nov2018", - "PA_bouquet_famille_max", - "PA_bouquet_divertissement_adsl", - "PI_WHITELIST" - ], - "hasRightIAccess": true, - "hasRightMAccess": false, - "logos": [ - { - "definitionType": "mobileAppli", - "listLogos": [ - { - "size": "183x183", - "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_mezzo%2F20230321_182925%2FmobileAppli%2Flogo_183x183.png" - } - ] - }, - { - "definitionType": "mobileAppliDark", - "listLogos": [ - { - "size": "183x183", - "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_mezzo%2F20230321_182925%2FmobileAppliDark%2Flogo_183x183.png" - } - ] - }, - { - "definitionType": "webTVLogo", - "listLogos": [ - { - "size": "180x96", - "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_mezzo%2F20230321_182925%2FwebTVLogo%2Flogo_180x96.png" - } - ] - }, - { - "definitionType": "webTVSquare", - "listLogos": [ - { - "size": "150x150", - "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_mezzo%2F20230321_182925%2FwebTVSquare%2Flogo_150x150.png" - } - ] - } - ], - "mobileData": { - "wifiForbidden": false, - "wifiSecuredOnly": false, - "everywhereChannel": true, - "nomadismAllowed": true, - "drmLevels": [ - { - "definition": "SD", - "securedTerminal": [ - "DRM-HW", - "DRM-SW" - ], - "unsecuredTerminal": [ - "DRM-HW", - "DRM-SW" - ] - }, - { - "definition": "HD", - "securedTerminal": [ - "ND" - ], - "unsecuredTerminal": [ - "ND" - ] - } - ] - }, - "webdeviceData": { - "nomadismAllowed": true - }, - "technicalChannels": { - "live": [ - { - "techChannelId": "400157", - "type": "CLOUDTV", - "liveTargetURLRelativePath": "livetv_mezzo_ctv", - "usi": 400157, - "isDRMized": true, - "csa5Disabled": true - } - ], - "npvr": [ - { - "externalId": "livetv_mezzo_ctv", - "techChannelId": "400157", - "type": "CLOUDTV", - "usi": 400157, - "isDRMized": true, - "antiAdskipping": "DEACTIVATED", - "csa5Disabled": true - } - ], - "startover": [] - } - }, - { - "name": "MEZZO LIVE", - "editoChannelId": "livetv_mezzolivehd", - "lcn": 168, - "idEPG": 907, - "epgAvailable": true, - "epgTextSubstitution": "", - "displayOrder": 168, - "csaCode": 1, - "slogan": "Musique Classique, Opéra, Jazz et Danse", - "catchupChannelId": "", - "newChannel": true, - "roamingBlocked": true, - "allowedDeviceCategories": [ - "M_ANDROID", - "M_IOS", - "M_TABLET_ANDROID", - "M_TABLET_IOS", - "W_AIRPLAY", - "W_CHROMECAST", - "W_LACLETV2", - "W_PC", - "W_SMARTTV", - "S_STB" - ], - "packages": [ - "PA_pack_Divertissement", - "PA_bouquet_musique_classique", - "PA_bouquet_famille_disneyplus", - "PA_pack_intense", - "PA_bouquet_divertissement_fibre", - "PA_bouquet_famille_by_canal_nov2018", - "PA_bouquet_famille_max", - "PA_bouquet_divertissement_adsl", - "PI_WHITELIST" - ], - "hasRightIAccess": true, - "hasRightMAccess": false, - "logos": [ - { - "definitionType": "mobileAppli", - "listLogos": [ - { - "size": "183x183", - "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_mezzolivehd%2F20230321_182925%2FmobileAppli%2Flogo_183x183.png" - } - ] - }, - { - "definitionType": "mobileAppliDark", - "listLogos": [ - { - "size": "183x183", - "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_mezzolivehd%2F20230321_182925%2FmobileAppliDark%2Flogo_183x183.png" - } - ] - }, - { - "definitionType": "webTVLogo", - "listLogos": [ - { - "size": "180x96", - "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_mezzolivehd%2F20230321_182925%2FwebTVLogo%2Flogo_180x96.png" - } - ] - }, - { - "definitionType": "webTVSquare", - "listLogos": [ - { - "size": "150x150", - "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_mezzolivehd%2F20230321_182925%2FwebTVSquare%2Flogo_150x150.png" - } - ] - } - ], - "mobileData": { - "wifiForbidden": false, - "wifiSecuredOnly": false, - "everywhereChannel": true, - "nomadismAllowed": true, - "drmLevels": [ - { - "definition": "SD", - "securedTerminal": [ - "DRM-HW", - "DRM-SW" - ], - "unsecuredTerminal": [ - "DRM-HW", - "DRM-SW" - ] - }, - { - "definition": "HD", - "securedTerminal": [ - "ND" - ], - "unsecuredTerminal": [ - "ND" - ] - } - ] - }, - "webdeviceData": { - "nomadismAllowed": true - }, - "technicalChannels": { - "live": [ - { - "techChannelId": "400158", - "type": "CLOUDTV", - "liveTargetURLRelativePath": "livetv_mezzo_live_hd_ctv", - "usi": 400158, - "isDRMized": true, - "csa5Disabled": true - } - ], - "npvr": [ - { - "externalId": "livetv_mezzo_live_hd_ctv", - "techChannelId": "400158", - "type": "CLOUDTV", - "usi": 400158, - "isDRMized": true, - "antiAdskipping": "DEACTIVATED", - "csa5Disabled": true - } - ], - "startover": [] - } - }, - { - "name": "STINGRAY CLASSICA", - "editoChannelId": "livetv_classica", - "lcn": 169, - "idEPG": 1353, - "epgAvailable": true, - "epgTextSubstitution": "", - "displayOrder": 169, - "csaCode": 1, - "slogan": "De la musique à regarder", - "catchupChannelId": "catchuptv_classica", - "newChannel": false, - "roamingBlocked": true, - "allowedDeviceCategories": [ - "M_ANDROID", - "M_IOS", - "M_TABLET_ANDROID", - "M_TABLET_IOS", - "W_AIRPLAY", - "W_CHROMECAST", - "W_LACLETV2", - "W_SMARTTV", - "W_PC", - "S_STB" - ], - "packages": [ - "PA_bouquet_musique_classique", - "PA_pack_intense", - "PI_WHITELIST" - ], - "hasRightIAccess": true, - "hasRightMAccess": false, - "logos": [ - { - "definitionType": "mobileAppli", - "listLogos": [ - { - "size": "183x183", - "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_classica%2F20180419_150729%2FmobileAppli%2Flogo_183x183.png" - } - ] - }, - { - "definitionType": "mobileAppliDark", - "listLogos": [ - { - "size": "183x183", - "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_classica%2F20180419_150729%2FmobileAppliDark%2Flogo_183x183.png" - } - ] - }, - { - "definitionType": "webTVLogo", - "listLogos": [ - { - "size": "180x96", - "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_classica%2F20180419_150729%2FwebTVLogo%2Flogo_180x96.png" - } - ] - }, - { - "definitionType": "webTVSquare", - "listLogos": [ - { - "size": "150x150", - "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_classica%2F20180419_150729%2FwebTVSquare%2Flogo_150x150.png" - } - ] - } - ], - "mobileData": { - "wifiForbidden": false, - "wifiSecuredOnly": false, - "everywhereChannel": true, - "nomadismAllowed": true, - "drmLevels": [ - { - "definition": "SD", - "securedTerminal": [ - "DRM-HW", - "DRM-SW" - ], - "unsecuredTerminal": [ - "DRM-HW", - "DRM-SW" - ] - }, - { - "definition": "HD", - "securedTerminal": [ - "ND" - ], - "unsecuredTerminal": [ - "ND" - ] - } - ] - }, - "webdeviceData": { - "nomadismAllowed": true - }, - "technicalChannels": { - "live": [ - { - "techChannelId": "400137", - "type": "CLOUDTV", - "liveTargetURLRelativePath": "livetv_classica_ctv", - "usi": 400137, - "isDRMized": true, - "csa5Disabled": true - } - ], - "npvr": [ - { - "externalId": "livetv_classica_ctv", - "techChannelId": "400137", - "type": "CLOUDTV", - "usi": 400137, - "isDRMized": true, - "antiAdskipping": "DEACTIVATED", - "csa5Disabled": true - } - ], - "startover": [] - } - }, - { - "name": "EQUIDIA", - "editoChannelId": "livetv_equidia", - "lcn": 173, - "idEPG": 64, - "epgAvailable": true, - "epgTextSubstitution": "", - "displayOrder": 173, - "csaCode": 1, - "slogan": "Vous êtes dans la course", - "catchupChannelId": "catchuptv_equidia", - "newChannel": false, - "roamingBlocked": true, - "allowedDeviceCategories": [ - "M_ANDROID", - "M_IOS", - "M_TABLET_ANDROID", - "M_TABLET_IOS", - "W_AIRPLAY", - "W_CHROMECAST", - "W_LACLETV2", - "W_PC", - "W_SMARTTV", - "S_STB" - ], - "packages": [ - "PA_BQ_PASSACCESTVPREMIUM_M", - "PA_BQ_BASIC_M", - "PA_BQ_RE_TVMAX_M", - "PA_BQ_ACCESTVPREMIUM_M", - "PA_BQ_PAYG_M", - "PA_BQ_TVDIGITALE_I", - "PA_BQ_SPORT_M", - "PA_BQ_BASIC_I", - "PA_BQ_BASICQUAD_I", - "PA_BQ_ACCESTV_M", - "PI_WHITELIST" - ], - "hasRightIAccess": true, - "hasRightMAccess": true, - "logos": [ - { - "definitionType": "mobileAppli", - "listLogos": [ - { - "size": "183x183", - "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_equidia%2F20220128_093134%2FmobileAppli%2Flogo_183x183.png" - } - ] - }, - { - "definitionType": "mobileAppliDark", - "listLogos": [ - { - "size": "183x183", - "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_equidia%2F20220128_093134%2FmobileAppliDark%2Flogo_183x183.png" - } - ] - }, - { - "definitionType": "webTVLogo", - "listLogos": [ - { - "size": "180x96", - "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_equidia%2F20220128_093134%2FwebTVLogo%2Flogo_180x96.png" - } - ] - }, - { - "definitionType": "webTVSquare", - "listLogos": [ - { - "size": "150x150", - "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_equidia%2F20220128_093134%2FwebTVSquare%2Flogo_150x150.png" - } - ] - } - ], - "mobileData": { - "wifiForbidden": false, - "wifiSecuredOnly": false, - "everywhereChannel": true, - "nomadismAllowed": true, - "drmLevels": [ - { - "definition": "SD", - "securedTerminal": [ - "DRM-HW", - "DRM-SW" - ], - "unsecuredTerminal": [ - "DRM-HW", - "DRM-SW" - ] - }, - { - "definition": "HD", - "securedTerminal": [ - "DRM-HW", - "DRM-SW" - ], - "unsecuredTerminal": [ - "ND" - ] - } - ] - }, - "webdeviceData": { - "nomadismAllowed": true - }, - "technicalChannels": { - "live": [ - { - "techChannelId": "400143", - "type": "CLOUDTV", - "liveTargetURLRelativePath": "livetv_equidia_live_ctv", - "usi": 400143, - "isDRMized": true, - "csa5Disabled": true - } - ], - "npvr": [ - { - "externalId": "livetv_equidia_live_ctv", - "techChannelId": "400143", - "type": "CLOUDTV", - "usi": 400143, - "isDRMized": true, - "antiAdskipping": "DEACTIVATED", - "csa5Disabled": true - } - ], - "startover": [ - { - "externalId": "livetv_equidia_live_ctv", - "techChannelId": "400143", - "type": "CLOUDTV", - "usi": 400143, - "isDRMized": true, - "antiAdskipping": "DEACTIVATED", - "csa5Disabled": true - } - ] - } - }, - { - "name": "SPORT EN FRANCE", - "editoChannelId": "livetv_sportenfrance", - "lcn": 174, - "idEPG": 2837, - "epgAvailable": true, - "epgTextSubstitution": "", - "displayOrder": 174, - "csaCode": 1, - "slogan": "La chaîne du mouvement sportif", - "catchupChannelId": "", - "newChannel": true, - "roamingBlocked": true, - "allowedDeviceCategories": [ - "M_ANDROID", - "M_IOS", - "M_TABLET_ANDROID", - "M_TABLET_IOS", - "W_AIRPLAY", - "W_CHROMECAST", - "W_LACLETV2", - "W_SMARTTV", - "W_PC", - "S_STB" - ], - "packages": [ - "PA_BQ_BASIC_M", - "PA_BQ_PAYG_M", - "PA_BQ_TVDIGITALE_I", - "PA_BQ_BASIC_I", - "PA_BQ_BASICQUAD_I", - "PI_WHITELIST" - ], - "hasRightIAccess": true, - "hasRightMAccess": true, - "logos": [ - { - "definitionType": "mobileAppli", - "listLogos": [ - { - "size": "183x183", - "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_sportenfrance%2F20190513_093153%2FmobileAppli%2Flogo_183x183.png" - } - ] - }, - { - "definitionType": "mobileAppliDark", - "listLogos": [ - { - "size": "183x183", - "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_sportenfrance%2F20190513_093153%2FmobileAppliDark%2Flogo_183x183.png" - } - ] - }, - { - "definitionType": "webTVLogo", - "listLogos": [ - { - "size": "180x96", - "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_sportenfrance%2F20190513_093153%2FwebTVLogo%2Flogo_180x96.png" - } - ] - }, - { - "definitionType": "webTVSquare", - "listLogos": [ - { - "size": "150x150", - "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_sportenfrance%2F20190513_093153%2FwebTVSquare%2Flogo_150x150.png" - } - ] - } - ], - "mobileData": { - "wifiForbidden": false, - "wifiSecuredOnly": false, - "everywhereChannel": true, - "nomadismAllowed": true, - "drmLevels": [ - { - "definition": "SD", - "securedTerminal": [ - "DRM-HW", - "DRM-SW" - ], - "unsecuredTerminal": [ - "DRM-HW", - "DRM-SW" - ] - }, - { - "definition": "HD", - "securedTerminal": [ - "DRM-HW", - "DRM-SW" - ], - "unsecuredTerminal": [ - "ND" - ] - } - ] - }, - "webdeviceData": { - "nomadismAllowed": true - }, - "technicalChannels": { - "live": [ - { - "techChannelId": "400168", - "type": "CLOUDTV", - "liveTargetURLRelativePath": "livetv_sport_en_france_ctv", - "usi": 400168, - "isDRMized": true, - "csa5Disabled": true - } - ], - "npvr": [ - { - "externalId": "livetv_sport_en_france_ctv", - "techChannelId": "400168", - "type": "CLOUDTV", - "usi": 400168, - "isDRMized": true, - "antiAdskipping": "DEACTIVATED", - "csa5Disabled": true - } - ], - "startover": [] - } - }, - { - "name": "BEIN SPORTS MAX 4", - "editoChannelId": "livetv_beinsportsmax4", - "lcn": 179, - "idEPG": 1336, - "epgAvailable": true, - "epgTextSubstitution": "", - "displayOrder": 179, - "csaCode": 1, - "slogan": "Le plus grand des spectacles", - "catchupChannelId": "catchuptv_BEINSPORTS", - "newChannel": false, - "roamingBlocked": true, - "allowedDeviceCategories": [ - "M_ANDROID", - "M_IOS", - "M_TABLET_ANDROID", - "M_TABLET_IOS", - "W_AIRPLAY", - "W_CHROMECAST", - "W_LACLETV2", - "W_SMARTTV", - "W_PC", - "S_STB" - ], - "packages": [ - "PA_Pack_Sport", - "PA_bouquet_bein_disneyplus", - "PA_pack_intense", - "PA_bouquet_divertissement_fibre", - "PA_beIN_SPORT", - "PA_bouquet_sport", - "PA_bouquet_divertissement_adsl", - "PI_WHITELIST" - ], - "hasRightIAccess": true, - "hasRightMAccess": false, - "logos": [ - { - "definitionType": "mobileAppli", - "listLogos": [ - { - "size": "183x183", - "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_beinsportsmax4%2F20170109_093315%2FmobileAppli%2Flogo_183x183.png" - } - ] - }, - { - "definitionType": "mobileAppliDark", - "listLogos": [ - { - "size": "183x183", - "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_beinsportsmax4%2F20170109_093315%2FmobileAppliDark%2Flogo_183x183.png" - } - ] - }, - { - "definitionType": "webTVLogo", - "listLogos": [ - { - "size": "180x96", - "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_beinsportsmax4%2F20170109_093315%2FwebTVLogo%2Flogo_180x96.png" - } - ] - }, - { - "definitionType": "webTVSquare", - "listLogos": [ - { - "size": "150x150", - "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_beinsportsmax4%2F20170109_093315%2FwebTVSquare%2Flogo_150x150.png" - } - ] - } - ], - "mobileData": { - "wifiForbidden": false, - "wifiSecuredOnly": false, - "everywhereChannel": true, - "nomadismAllowed": true, - "drmLevels": [ - { - "definition": "SD", - "securedTerminal": [ - "DRM-HW", - "DRM-SW" - ], - "unsecuredTerminal": [ - "DRM-HW", - "DRM-SW" - ] - }, - { - "definition": "HD", - "securedTerminal": [ - "ND" - ], - "unsecuredTerminal": [ - "ND" - ] - } - ] - }, - "webdeviceData": { - "nomadismAllowed": true - }, - "technicalChannels": { - "live": [ - { - "techChannelId": "400087", - "type": "CLOUDTV", - "liveTargetURLRelativePath": "livetv_beinsports_max4_ctv", - "usi": 400087, - "isDRMized": true, - "csa5Disabled": true - } - ], - "npvr": [ - { - "externalId": "livetv_beinsports_max4_ctv", - "techChannelId": "400087", - "type": "CLOUDTV", - "usi": 400087, - "isDRMized": true, - "antiAdskipping": "DEACTIVATED", - "csa5Disabled": true - } - ], - "startover": [] - } - }, - { - "name": "BEIN SPORTS MAX 5", - "editoChannelId": "livetv_beinsportsmax5", - "lcn": 180, - "idEPG": 1337, - "epgAvailable": true, - "epgTextSubstitution": "", - "displayOrder": 180, - "csaCode": 1, - "slogan": "Le plus grand des spectacles", - "catchupChannelId": "catchuptv_BEINSPORTS", - "newChannel": false, - "roamingBlocked": true, - "allowedDeviceCategories": [ - "M_ANDROID", - "M_IOS", - "M_TABLET_ANDROID", - "M_TABLET_IOS", - "W_AIRPLAY", - "W_CHROMECAST", - "W_LACLETV2", - "W_SMARTTV", - "W_PC", - "S_STB" - ], - "packages": [ - "PA_Pack_Sport", - "PA_bouquet_bein_disneyplus", - "PA_pack_intense", - "PA_bouquet_divertissement_fibre", - "PA_beIN_SPORT", - "PA_bouquet_sport", - "PA_bouquet_divertissement_adsl", - "PI_WHITELIST" - ], - "hasRightIAccess": true, - "hasRightMAccess": false, - "logos": [ - { - "definitionType": "mobileAppli", - "listLogos": [ - { - "size": "183x183", - "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_beinsportsmax5%2F20170109_093315%2FmobileAppli%2Flogo_183x183.png" - } - ] - }, - { - "definitionType": "mobileAppliDark", - "listLogos": [ - { - "size": "183x183", - "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_beinsportsmax5%2F20170109_093315%2FmobileAppliDark%2Flogo_183x183.png" - } - ] - }, - { - "definitionType": "webTVLogo", - "listLogos": [ - { - "size": "180x96", - "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_beinsportsmax5%2F20170109_093315%2FwebTVLogo%2Flogo_180x96.png" - } - ] - }, - { - "definitionType": "webTVSquare", - "listLogos": [ - { - "size": "150x150", - "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_beinsportsmax5%2F20170109_093315%2FwebTVSquare%2Flogo_150x150.png" - } - ] - } - ], - "mobileData": { - "wifiForbidden": false, - "wifiSecuredOnly": false, - "everywhereChannel": true, - "nomadismAllowed": true, - "drmLevels": [ - { - "definition": "SD", - "securedTerminal": [ - "DRM-HW", - "DRM-SW" - ], - "unsecuredTerminal": [ - "DRM-HW", - "DRM-SW" - ] - }, - { - "definition": "HD", - "securedTerminal": [ - "ND" - ], - "unsecuredTerminal": [ - "ND" - ] - } - ] - }, - "webdeviceData": { - "nomadismAllowed": true - }, - "technicalChannels": { - "live": [ - { - "techChannelId": "400088", - "type": "CLOUDTV", - "liveTargetURLRelativePath": "livetv_beinsports_max5_ctv", - "usi": 400088, - "isDRMized": true, - "csa5Disabled": true - } - ], - "npvr": [ - { - "externalId": "livetv_beinsports_max5_ctv", - "techChannelId": "400088", - "type": "CLOUDTV", - "usi": 400088, - "isDRMized": true, - "antiAdskipping": "DEACTIVATED", - "csa5Disabled": true - } - ], - "startover": [] - } - }, - { - "name": "BEIN SPORTS MAX 6", - "editoChannelId": "livetv_beinsportsmax6", - "lcn": 181, - "idEPG": 1338, - "epgAvailable": true, - "epgTextSubstitution": "", - "displayOrder": 181, - "csaCode": 1, - "slogan": "Le plus grand des spectacles", - "catchupChannelId": "catchuptv_BEINSPORTS", - "newChannel": false, - "roamingBlocked": true, - "allowedDeviceCategories": [ - "M_ANDROID", - "M_IOS", - "M_TABLET_ANDROID", - "M_TABLET_IOS", - "W_AIRPLAY", - "W_CHROMECAST", - "W_LACLETV2", - "W_SMARTTV", - "W_PC", - "S_STB" - ], - "packages": [ - "PA_Pack_Sport", - "PA_bouquet_bein_disneyplus", - "PA_pack_intense", - "PA_bouquet_divertissement_fibre", - "PA_beIN_SPORT", - "PA_bouquet_sport", - "PA_bouquet_divertissement_adsl", - "PI_WHITELIST" - ], - "hasRightIAccess": true, - "hasRightMAccess": false, - "logos": [ - { - "definitionType": "mobileAppli", - "listLogos": [ - { - "size": "183x183", - "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_beinsportsmax6%2F20170109_093315%2FmobileAppli%2Flogo_183x183.png" - } - ] - }, - { - "definitionType": "mobileAppliDark", - "listLogos": [ - { - "size": "183x183", - "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_beinsportsmax6%2F20170109_093315%2FmobileAppliDark%2Flogo_183x183.png" - } - ] - }, - { - "definitionType": "webTVLogo", - "listLogos": [ - { - "size": "180x96", - "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_beinsportsmax6%2F20170109_093315%2FwebTVLogo%2Flogo_180x96.png" - } - ] - }, - { - "definitionType": "webTVSquare", - "listLogos": [ - { - "size": "150x150", - "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_beinsportsmax6%2F20170109_093315%2FwebTVSquare%2Flogo_150x150.png" - } - ] - } - ], - "mobileData": { - "wifiForbidden": false, - "wifiSecuredOnly": false, - "everywhereChannel": true, - "nomadismAllowed": true, - "drmLevels": [ - { - "definition": "SD", - "securedTerminal": [ - "DRM-HW", - "DRM-SW" - ], - "unsecuredTerminal": [ - "DRM-HW", - "DRM-SW" - ] - }, - { - "definition": "HD", - "securedTerminal": [ - "ND" - ], - "unsecuredTerminal": [ - "ND" - ] - } - ] - }, - "webdeviceData": { - "nomadismAllowed": true - }, - "technicalChannels": { - "live": [ - { - "techChannelId": "400089", - "type": "CLOUDTV", - "liveTargetURLRelativePath": "livetv_beinsports_max6_ctv", - "usi": 400089, - "isDRMized": true, - "csa5Disabled": true - } - ], - "npvr": [ - { - "externalId": "livetv_beinsports_max6_ctv", - "techChannelId": "400089", - "type": "CLOUDTV", - "usi": 400089, - "isDRMized": true, - "antiAdskipping": "DEACTIVATED", - "csa5Disabled": true - } - ], - "startover": [] - } - }, - { - "name": "BEIN SPORTS MAX 7", - "editoChannelId": "livetv_beinsportsmax7", - "lcn": 182, - "idEPG": 1339, - "epgAvailable": true, - "epgTextSubstitution": "", - "displayOrder": 182, - "csaCode": 1, - "slogan": "Le plus grand des spectacles", - "catchupChannelId": "catchuptv_BEINSPORTS", - "newChannel": false, - "roamingBlocked": true, - "allowedDeviceCategories": [ - "M_ANDROID", - "M_IOS", - "M_TABLET_ANDROID", - "M_TABLET_IOS", - "W_AIRPLAY", - "W_CHROMECAST", - "W_LACLETV2", - "W_SMARTTV", - "W_PC", - "S_STB" - ], - "packages": [ - "PA_Pack_Sport", - "PA_bouquet_bein_disneyplus", - "PA_pack_intense", - "PA_bouquet_divertissement_fibre", - "PA_beIN_SPORT", - "PA_bouquet_sport", - "PA_bouquet_divertissement_adsl", - "PI_WHITELIST" - ], - "hasRightIAccess": true, - "hasRightMAccess": false, - "logos": [ - { - "definitionType": "mobileAppli", - "listLogos": [ - { - "size": "183x183", - "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_beinsportsmax7%2F20170109_093315%2FmobileAppli%2Flogo_183x183.png" - } - ] - }, - { - "definitionType": "mobileAppliDark", - "listLogos": [ - { - "size": "183x183", - "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_beinsportsmax7%2F20170109_093315%2FmobileAppliDark%2Flogo_183x183.png" - } - ] - }, - { - "definitionType": "webTVLogo", - "listLogos": [ - { - "size": "180x96", - "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_beinsportsmax7%2F20170109_093315%2FwebTVLogo%2Flogo_180x96.png" - } - ] - }, - { - "definitionType": "webTVSquare", - "listLogos": [ - { - "size": "150x150", - "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_beinsportsmax7%2F20170109_093315%2FwebTVSquare%2Flogo_150x150.png" - } - ] - } - ], - "mobileData": { - "wifiForbidden": false, - "wifiSecuredOnly": false, - "everywhereChannel": true, - "nomadismAllowed": true, - "drmLevels": [ - { - "definition": "SD", - "securedTerminal": [ - "DRM-HW", - "DRM-SW" - ], - "unsecuredTerminal": [ - "DRM-HW", - "DRM-SW" - ] - }, - { - "definition": "HD", - "securedTerminal": [ - "ND" - ], - "unsecuredTerminal": [ - "ND" - ] - } - ] - }, - "webdeviceData": { - "nomadismAllowed": true - }, - "technicalChannels": { - "live": [ - { - "techChannelId": "400090", - "type": "CLOUDTV", - "liveTargetURLRelativePath": "livetv_beinsports_max7_ctv", - "usi": 400090, - "isDRMized": true, - "csa5Disabled": true - } - ], - "npvr": [ - { - "externalId": "livetv_beinsports_max7_ctv", - "techChannelId": "400090", - "type": "CLOUDTV", - "usi": 400090, - "isDRMized": true, - "antiAdskipping": "DEACTIVATED", - "csa5Disabled": true - } - ], - "startover": [] - } - }, - { - "name": "BEIN SPORTS MAX 8", - "editoChannelId": "livetv_beinsportsmax8", - "lcn": 183, - "idEPG": 1340, - "epgAvailable": true, - "epgTextSubstitution": "", - "displayOrder": 183, - "csaCode": 1, - "slogan": "Le plus grand des spectacles", - "catchupChannelId": "catchuptv_BEINSPORTS", - "newChannel": false, - "roamingBlocked": true, - "allowedDeviceCategories": [ - "M_ANDROID", - "M_IOS", - "M_TABLET_ANDROID", - "M_TABLET_IOS", - "W_AIRPLAY", - "W_CHROMECAST", - "W_LACLETV2", - "W_SMARTTV", - "W_PC", - "S_STB" - ], - "packages": [ - "PA_Pack_Sport", - "PA_bouquet_bein_disneyplus", - "PA_pack_intense", - "PA_bouquet_divertissement_fibre", - "PA_beIN_SPORT", - "PA_bouquet_sport", - "PA_bouquet_divertissement_adsl", - "PI_WHITELIST" - ], - "hasRightIAccess": true, - "hasRightMAccess": false, - "logos": [ - { - "definitionType": "mobileAppli", - "listLogos": [ - { - "size": "183x183", - "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_beinsportsmax8%2F20170109_093315%2FmobileAppli%2Flogo_183x183.png" - } - ] - }, - { - "definitionType": "mobileAppliDark", - "listLogos": [ - { - "size": "183x183", - "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_beinsportsmax8%2F20170109_093315%2FmobileAppliDark%2Flogo_183x183.png" - } - ] - }, - { - "definitionType": "webTVLogo", - "listLogos": [ - { - "size": "180x96", - "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_beinsportsmax8%2F20170109_093315%2FwebTVLogo%2Flogo_180x96.png" - } - ] - }, - { - "definitionType": "webTVSquare", - "listLogos": [ - { - "size": "150x150", - "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_beinsportsmax8%2F20170109_093315%2FwebTVSquare%2Flogo_150x150.png" - } - ] - } - ], - "mobileData": { - "wifiForbidden": false, - "wifiSecuredOnly": false, - "everywhereChannel": true, - "nomadismAllowed": true, - "drmLevels": [ - { - "definition": "SD", - "securedTerminal": [ - "DRM-HW", - "DRM-SW" - ], - "unsecuredTerminal": [ - "DRM-HW", - "DRM-SW" - ] - }, - { - "definition": "HD", - "securedTerminal": [ - "ND" - ], - "unsecuredTerminal": [ - "ND" - ] - } - ] - }, - "webdeviceData": { - "nomadismAllowed": true - }, - "technicalChannels": { - "live": [ - { - "techChannelId": "400091", - "type": "CLOUDTV", - "liveTargetURLRelativePath": "livetv_beinsports_max8_ctv", - "usi": 400091, - "isDRMized": true, - "csa5Disabled": true - } - ], - "npvr": [ - { - "externalId": "livetv_beinsports_max8_ctv", - "techChannelId": "400091", - "type": "CLOUDTV", - "usi": 400091, - "isDRMized": true, - "antiAdskipping": "DEACTIVATED", - "csa5Disabled": true - } - ], - "startover": [] - } - }, - { - "name": "BEIN SPORTS MAX 9", - "editoChannelId": "livetv_beinsportsmax9", - "lcn": 184, - "idEPG": 1341, - "epgAvailable": true, - "epgTextSubstitution": "", - "displayOrder": 184, - "csaCode": 1, - "slogan": "Le plus grand des spectacles", - "catchupChannelId": "catchuptv_BEINSPORTS", - "newChannel": false, - "roamingBlocked": true, - "allowedDeviceCategories": [ - "M_ANDROID", - "M_IOS", - "M_TABLET_ANDROID", - "M_TABLET_IOS", - "W_AIRPLAY", - "W_CHROMECAST", - "W_LACLETV2", - "W_SMARTTV", - "W_PC", - "S_STB" - ], - "packages": [ - "PA_Pack_Sport", - "PA_bouquet_bein_disneyplus", - "PA_pack_intense", - "PA_bouquet_divertissement_fibre", - "PA_beIN_SPORT", - "PA_bouquet_sport", - "PA_bouquet_divertissement_adsl", - "PI_WHITELIST" - ], - "hasRightIAccess": true, - "hasRightMAccess": false, - "logos": [ - { - "definitionType": "mobileAppli", - "listLogos": [ - { - "size": "183x183", - "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_beinsportsmax9%2F20170109_093315%2FmobileAppli%2Flogo_183x183.png" - } - ] - }, - { - "definitionType": "mobileAppliDark", - "listLogos": [ - { - "size": "183x183", - "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_beinsportsmax9%2F20170109_093315%2FmobileAppliDark%2Flogo_183x183.png" - } - ] - }, - { - "definitionType": "webTVLogo", - "listLogos": [ - { - "size": "180x96", - "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_beinsportsmax9%2F20170109_093315%2FwebTVLogo%2Flogo_180x96.png" - } - ] - }, - { - "definitionType": "webTVSquare", - "listLogos": [ - { - "size": "150x150", - "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_beinsportsmax9%2F20170109_093315%2FwebTVSquare%2Flogo_150x150.png" - } - ] - } - ], - "mobileData": { - "wifiForbidden": false, - "wifiSecuredOnly": false, - "everywhereChannel": true, - "nomadismAllowed": true, - "drmLevels": [ - { - "definition": "SD", - "securedTerminal": [ - "DRM-HW", - "DRM-SW" - ], - "unsecuredTerminal": [ - "DRM-HW", - "DRM-SW" - ] - }, - { - "definition": "HD", - "securedTerminal": [ - "ND" - ], - "unsecuredTerminal": [ - "ND" - ] - } - ] - }, - "webdeviceData": { - "nomadismAllowed": true - }, - "technicalChannels": { - "live": [ - { - "techChannelId": "400092", - "type": "CLOUDTV", - "liveTargetURLRelativePath": "livetv_beinsports_max9_ctv", - "usi": 400092, - "isDRMized": true, - "csa5Disabled": true - } - ], - "npvr": [ - { - "externalId": "livetv_beinsports_max9_ctv", - "techChannelId": "400092", - "type": "CLOUDTV", - "usi": 400092, - "isDRMized": true, - "antiAdskipping": "DEACTIVATED", - "csa5Disabled": true - } - ], - "startover": [] - } - }, - { - "name": "BEIN SPORTS MAX 10", - "editoChannelId": "livetv_beinsportsmax10", - "lcn": 185, - "idEPG": 1342, - "epgAvailable": true, - "epgTextSubstitution": "", - "displayOrder": 185, - "csaCode": 1, - "slogan": "Le plus grand des spectacles", - "catchupChannelId": "catchuptv_BEINSPORTS", - "newChannel": false, - "roamingBlocked": true, - "allowedDeviceCategories": [ - "M_ANDROID", - "M_IOS", - "M_TABLET_ANDROID", - "M_TABLET_IOS", - "W_AIRPLAY", - "W_CHROMECAST", - "W_LACLETV2", - "W_SMARTTV", - "W_PC", - "S_STB" - ], - "packages": [ - "PA_Pack_Sport", - "PA_bouquet_bein_disneyplus", - "PA_pack_intense", - "PA_bouquet_divertissement_fibre", - "PA_beIN_SPORT", - "PA_bouquet_sport", - "PA_bouquet_divertissement_adsl", - "PI_WHITELIST" - ], - "hasRightIAccess": true, - "hasRightMAccess": false, - "logos": [ - { - "definitionType": "mobileAppli", - "listLogos": [ - { - "size": "183x183", - "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_beinsportsmax10%2F20170109_093315%2FmobileAppli%2Flogo_183x183.png" - } - ] - }, - { - "definitionType": "mobileAppliDark", - "listLogos": [ - { - "size": "183x183", - "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_beinsportsmax10%2F20170109_093315%2FmobileAppliDark%2Flogo_183x183.png" - } - ] - }, - { - "definitionType": "webTVLogo", - "listLogos": [ - { - "size": "180x96", - "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_beinsportsmax10%2F20170109_093315%2FwebTVLogo%2Flogo_180x96.png" - } - ] - }, - { - "definitionType": "webTVSquare", - "listLogos": [ - { - "size": "150x150", - "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_beinsportsmax10%2F20170109_093315%2FwebTVSquare%2Flogo_150x150.png" - } - ] - } - ], - "mobileData": { - "wifiForbidden": false, - "wifiSecuredOnly": false, - "everywhereChannel": true, - "nomadismAllowed": true, - "drmLevels": [ - { - "definition": "SD", - "securedTerminal": [ - "DRM-HW", - "DRM-SW" - ], - "unsecuredTerminal": [ - "DRM-HW", - "DRM-SW" - ] - }, - { - "definition": "HD", - "securedTerminal": [ - "ND" - ], - "unsecuredTerminal": [ - "ND" - ] - } - ] - }, - "webdeviceData": { - "nomadismAllowed": true - }, - "technicalChannels": { - "live": [ - { - "techChannelId": "400135", - "type": "CLOUDTV", - "liveTargetURLRelativePath": "livetv_beinsports_max_10_ctv", - "usi": 400135, - "isDRMized": true, - "csa5Disabled": true - } - ], - "npvr": [ - { - "externalId": "livetv_beinsports_max_10_ctv", - "techChannelId": "400135", - "type": "CLOUDTV", - "usi": 400135, - "isDRMized": true, - "antiAdskipping": "DEACTIVATED", - "csa5Disabled": true - } - ], - "startover": [] - } - }, - { - "name": "AUTOMOTO, la chaine", - "editoChannelId": "livetv_AB_motors", - "lcn": 196, - "idEPG": 15, - "epgAvailable": true, - "epgTextSubstitution": "", - "displayOrder": 196, - "csaCode": 1, - "slogan": "La chaîne de tous les passionnés", - "catchupChannelId": "catchuptv_automoto", - "newChannel": false, - "roamingBlocked": true, - "allowedDeviceCategories": [ - "M_ANDROID", - "M_IOS", - "M_TABLET_ANDROID", - "M_TABLET_IOS", - "W_AIRPLAY", - "W_CHROMECAST", - "W_LACLETV2", - "W_SMARTTV", - "W_PC", - "S_STB" - ], - "packages": [ - "PA_Pack_Sport", - "PA_bouquet_famille_disneyplus", - "PA_pack_intense", - "PA_bouquet_divertissement_fibre", - "PA_bouquet_sport", - "PA_bouquet_famille_max", - "PA_bouquet_divertissement_adsl", - "PI_WHITELIST" - ], - "hasRightIAccess": true, - "hasRightMAccess": false, - "logos": [ - { - "definitionType": "mobileAppli", - "listLogos": [ - { - "size": "183x183", - "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_AB_motors%2F20181115_095836%2FmobileAppli%2Flogo_183x183.png" - } - ] - }, - { - "definitionType": "mobileAppliDark", - "listLogos": [ - { - "size": "183x183", - "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_AB_motors%2F20181115_095836%2FmobileAppliDark%2Flogo_183x183.png" - } - ] - }, - { - "definitionType": "webTVLogo", - "listLogos": [ - { - "size": "180x96", - "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_AB_motors%2F20181115_095836%2FwebTVLogo%2Flogo_180x96.png" - } - ] - }, - { - "definitionType": "webTVSquare", - "listLogos": [ - { - "size": "150x150", - "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_AB_motors%2F20181115_095836%2FwebTVSquare%2Flogo_150x150.png" - } - ] - } - ], - "mobileData": { - "wifiForbidden": false, - "wifiSecuredOnly": false, - "everywhereChannel": true, - "nomadismAllowed": true, - "drmLevels": [ - { - "definition": "SD", - "securedTerminal": [ - "DRM-HW", - "DRM-SW" - ], - "unsecuredTerminal": [ - "DRM-HW", - "DRM-SW" - ] - }, - { - "definition": "HD", - "securedTerminal": [ - "ND" - ], - "unsecuredTerminal": [ - "ND" - ] - } - ] - }, - "webdeviceData": { - "nomadismAllowed": true - }, - "technicalChannels": { - "live": [ - { - "techChannelId": "400134", - "type": "CLOUDTV", - "liveTargetURLRelativePath": "livetv_abmoteurs_ctv", - "usi": 400134, - "isDRMized": true, - "csa5Disabled": true - } - ], - "npvr": [ - { - "externalId": "livetv_abmoteurs_ctv", - "techChannelId": "400134", - "type": "CLOUDTV", - "usi": 400134, - "isDRMized": true, - "antiAdskipping": "DEACTIVATED", - "csa5Disabled": true - } - ], - "startover": [] - } - }, - { - "name": "GOLF CHANNEL", - "editoChannelId": "livetv_golfchannel", - "lcn": 197, - "idEPG": 1166, - "epgAvailable": true, - "epgTextSubstitution": "", - "displayOrder": 197, - "csaCode": 1, - "slogan": "La chaîne 100% Golf", - "catchupChannelId": "", - "newChannel": false, - "roamingBlocked": true, - "allowedDeviceCategories": [ - "M_ANDROID", - "M_IOS", - "M_TABLET_ANDROID", - "M_TABLET_IOS", - "W_AIRPLAY", - "W_CHROMECAST", - "W_LACLETV2", - "W_SMARTTV", - "W_PC", - "S_STB" - ], - "packages": [ - "PA_BQ_PASSACCESTVPREMIUM_M", - "PA_pack_Divertissement", - "PA_Pack_Sport", - "PA_bouquet_famille_disneyplus", - "PA_BQ_ACCESTVPREMIUM_M", - "PA_pack_intense", - "PA_bouquet_divertissement_fibre", - "PA_BQ_SPORT_M", - "PA_bouquet_sport", - "PA_bouquet_famille_max", - "PA_bouquet_divertissement_adsl", - "PI_WHITELIST" - ], - "hasRightIAccess": true, - "hasRightMAccess": true, - "logos": [ - { - "definitionType": "mobileAppli", - "listLogos": [ - { - "size": "183x183", - "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_golfchannel%2F20151026_092415%2FmobileAppli%2Flogo_183x183.png" - } - ] - }, - { - "definitionType": "mobileAppliDark", - "listLogos": [ - { - "size": "183x183", - "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_golfchannel%2F20151026_092415%2FmobileAppliDark%2Flogo_183x183.png" - } - ] - }, - { - "definitionType": "webTVLogo", - "listLogos": [ - { - "size": "180x96", - "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_golfchannel%2F20151026_092415%2FwebTVLogo%2Flogo_180x96.png" - } - ] - }, - { - "definitionType": "webTVSquare", - "listLogos": [ - { - "size": "150x150", - "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_golfchannel%2F20151026_092415%2FwebTVSquare%2Flogo_150x150.png" - } - ] - } - ], - "mobileData": { - "wifiForbidden": false, - "wifiSecuredOnly": false, - "everywhereChannel": true, - "nomadismAllowed": true, - "drmLevels": [ - { - "definition": "SD", - "securedTerminal": [ - "DRM-HW", - "DRM-SW" - ], - "unsecuredTerminal": [ - "DRM-HW", - "DRM-SW" - ] - }, - { - "definition": "HD", - "securedTerminal": [ - "ND" - ], - "unsecuredTerminal": [ - "ND" - ] - } - ] - }, - "webdeviceData": { - "nomadismAllowed": true - }, - "technicalChannels": { - "live": [ - { - "techChannelId": "400147", - "type": "CLOUDTV", - "liveTargetURLRelativePath": "livetv_golf_channel_ctv", - "usi": 400147, - "isDRMized": true, - "csa5Disabled": true - } - ], - "npvr": [ - { - "externalId": "livetv_golf_channel_ctv", - "techChannelId": "400147", - "type": "CLOUDTV", - "usi": 400147, - "isDRMized": true, - "antiAdskipping": "DEACTIVATED", - "csa5Disabled": true - } - ], - "startover": [] - } - }, - { - "name": "LUCKY JACK", - "editoChannelId": "livetv_luckyjack", - "lcn": 211, - "idEPG": 1061, - "epgAvailable": true, - "epgTextSubstitution": "", - "displayOrder": 211, - "csaCode": 1, - "slogan": "Le jeu dans tous ses états", - "catchupChannelId": "", - "newChannel": false, - "roamingBlocked": true, - "allowedDeviceCategories": [ - "M_ANDROID", - "M_IOS", - "M_TABLET_ANDROID", - "M_TABLET_IOS", - "W_AIRPLAY", - "W_CHROMECAST", - "W_LACLETV2", - "W_SMARTTV", - "W_PC", - "S_STB" - ], - "packages": [ - "PA_BQ_PASSACCESTVPREMIUM_M", - "PA_BQ_BASIC_M", - "PA_BQ_RE_TVMAX_M", - "PA_BQ_ACCESTVPREMIUM_M", - "PA_BQ_PAYG_M", - "PA_BQ_TVDIGITALE_I", - "PA_BQ_BASIC_I", - "PA_BQ_BASICQUAD_I", - "PA_BQ_ACCESTV_M", - "PI_WHITELIST" - ], - "hasRightIAccess": true, - "hasRightMAccess": true, - "logos": [ - { - "definitionType": "mobileAppli", - "listLogos": [ - { - "size": "183x183", - "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_luckyjack%2F20151026_092415%2FmobileAppli%2Flogo_183x183.png" - } - ] - }, - { - "definitionType": "mobileAppliDark", - "listLogos": [ - { - "size": "183x183", - "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_luckyjack%2F20151026_092415%2FmobileAppliDark%2Flogo_183x183.png" - } - ] - }, - { - "definitionType": "webTVLogo", - "listLogos": [ - { - "size": "180x96", - "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_luckyjack%2F20151026_092415%2FwebTVLogo%2Flogo_180x96.png" - } - ] - }, - { - "definitionType": "webTVSquare", - "listLogos": [ - { - "size": "150x150", - "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_luckyjack%2F20151026_092415%2FwebTVSquare%2Flogo_150x150.png" - } - ] - } - ], - "mobileData": { - "wifiForbidden": false, - "wifiSecuredOnly": false, - "everywhereChannel": true, - "nomadismAllowed": true, - "drmLevels": [ - { - "definition": "SD", - "securedTerminal": [ - "DRM-HW", - "DRM-SW" - ], - "unsecuredTerminal": [ - "DRM-HW", - "DRM-SW" - ] - }, - { - "definition": "HD", - "securedTerminal": [ - "ND" - ], - "unsecuredTerminal": [ - "ND" - ] - } - ] - }, - "webdeviceData": { - "nomadismAllowed": true - }, - "technicalChannels": { - "live": [ - { - "techChannelId": "400002", - "type": "CLOUDTV", - "liveTargetURLRelativePath": "livetv_lucky_jack_ctv", - "usi": 400002, - "isDRMized": true, - "csa5Disabled": true - } - ], - "npvr": [], - "startover": [] - } - }, - { - "name": "FASHIONTV PARIS", - "editoChannelId": "livetv_fashiontv", - "lcn": 213, - "idEPG": 1996, - "epgAvailable": true, - "epgTextSubstitution": "", - "displayOrder": 213, - "csaCode": 1, - "slogan": "FashionTV - #1 Fashion & Lifestyle TV", - "catchupChannelId": "", - "newChannel": true, - "roamingBlocked": true, - "allowedDeviceCategories": [ - "M_ANDROID", - "M_IOS", - "M_TABLET_ANDROID", - "M_TABLET_IOS", - "W_AIRPLAY", - "W_CHROMECAST", - "W_LACLETV2", - "W_PC", - "W_SMARTTV", - "S_STB" - ], - "packages": [ - "PA_BQ_BASIC_M", - "PA_BQ_RE_TVMAX_M", - "PA_BQ_PAYG_M", - "PA_BQ_TVDIGITALE_I", - "PA_BQ_BASIC_I", - "PA_BQ_BASICQUAD_I", - "PI_WHITELIST" - ], - "hasRightIAccess": true, - "hasRightMAccess": true, - "logos": [ - { - "definitionType": "mobileAppli", - "listLogos": [ - { - "size": "183x183", - "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_fashiontv%2F20220128_093134%2FmobileAppli%2Flogo_183x183.png" - } - ] - }, - { - "definitionType": "mobileAppliDark", - "listLogos": [ - { - "size": "183x183", - "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_fashiontv%2F20220128_093134%2FmobileAppliDark%2Flogo_183x183.png" - } - ] - }, - { - "definitionType": "webTVLogo", - "listLogos": [ - { - "size": "180x96", - "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_fashiontv%2F20220128_093134%2FwebTVLogo%2Flogo_180x96.png" - } - ] - }, - { - "definitionType": "webTVSquare", - "listLogos": [ - { - "size": "150x150", - "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_fashiontv%2F20220128_093134%2FwebTVSquare%2Flogo_150x150.png" - } - ] - } - ], - "mobileData": { - "wifiForbidden": false, - "wifiSecuredOnly": false, - "everywhereChannel": true, - "nomadismAllowed": true, - "drmLevels": [ - { - "definition": "SD", - "securedTerminal": [ - "DRM-HW", - "DRM-SW" - ], - "unsecuredTerminal": [ - "DRM-HW", - "DRM-SW" - ] - }, - { - "definition": "HD", - "securedTerminal": [ - "ND" - ], - "unsecuredTerminal": [ - "ND" - ] - } - ] - }, - "webdeviceData": { - "nomadismAllowed": true - }, - "technicalChannels": { - "live": [ - { - "techChannelId": "400239", - "type": "CLOUDTV", - "liveTargetURLRelativePath": "livetv_fashiontv_ctv", - "usi": 400239, - "isDRMized": true, - "csa5Disabled": true - } - ], - "npvr": [ - { - "externalId": "livetv_fashiontv_ctv", - "techChannelId": "400239", - "type": "CLOUDTV", - "usi": 400239, - "isDRMized": true, - "antiAdskipping": "DEACTIVATED", - "csa5Disabled": true - } - ], - "startover": [] - } - }, - { - "name": "LUXE TV", - "editoChannelId": "livetv_luxe", - "lcn": 215, - "idEPG": 531, - "epgAvailable": true, - "epgTextSubstitution": "", - "displayOrder": 215, - "csaCode": 1, - "slogan": "Your Luxury Channel", - "catchupChannelId": "", - "newChannel": false, - "roamingBlocked": true, - "allowedDeviceCategories": [ - "M_ANDROID", - "M_IOS", - "M_TABLET_ANDROID", - "M_TABLET_IOS", - "W_AIRPLAY", - "W_CHROMECAST", - "W_LACLETV2", - "W_SMARTTV", - "W_PC", - "S_STB" - ], - "packages": [ - "PA_BQ_BASIC_M", - "PA_BQ_RE_TVMAX_M", - "PA_BQ_PAYG_M", - "PA_BQ_TVDIGITALE_I", - "PA_BQ_BASIC_I", - "PA_BQ_BASICQUAD_I", - "PA_BQ_ACCESTV_M", - "PI_WHITELIST" - ], - "hasRightIAccess": true, - "hasRightMAccess": true, - "logos": [ - { - "definitionType": "mobileAppli", - "listLogos": [ - { - "size": "183x183", - "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_luxe%2F20151026_092415%2FmobileAppli%2Flogo_183x183.png" - } - ] - }, - { - "definitionType": "mobileAppliDark", - "listLogos": [ - { - "size": "183x183", - "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_luxe%2F20151026_092415%2FmobileAppliDark%2Flogo_183x183.png" - } - ] - }, - { - "definitionType": "webTVLogo", - "listLogos": [ - { - "size": "180x96", - "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_luxe%2F20151026_092415%2FwebTVLogo%2Flogo_180x96.png" - } - ] - }, - { - "definitionType": "webTVSquare", - "listLogos": [ - { - "size": "150x150", - "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_luxe%2F20151026_092415%2FwebTVSquare%2Flogo_150x150.png" - } - ] - } - ], - "mobileData": { - "wifiForbidden": false, - "wifiSecuredOnly": false, - "everywhereChannel": true, - "nomadismAllowed": true, - "drmLevels": [ - { - "definition": "SD", - "securedTerminal": [ - "DRM-HW", - "DRM-SW" - ], - "unsecuredTerminal": [ - "DRM-HW", - "DRM-SW" - ] - }, - { - "definition": "HD", - "securedTerminal": [ - "ND" - ], - "unsecuredTerminal": [ - "ND" - ] - } - ] - }, - "webdeviceData": { - "nomadismAllowed": true - }, - "technicalChannels": { - "live": [ - { - "techChannelId": "400152", - "type": "CLOUDTV", - "liveTargetURLRelativePath": "livetv_luxe_tv_ctv", - "usi": 400152, - "isDRMized": true, - "csa5Disabled": true - } - ], - "npvr": [ - { - "externalId": "livetv_luxe_tv_ctv", - "techChannelId": "400152", - "type": "CLOUDTV", - "usi": 400152, - "isDRMized": true, - "antiAdskipping": "DEACTIVATED", - "csa5Disabled": true - } - ], - "startover": [] - } - }, - { - "name": "MEN'S UP TV", - "editoChannelId": "livetv_men_s_up", - "lcn": 216, - "idEPG": 90216, - "epgAvailable": false, - "epgTextSubstitution": "", - "displayOrder": 216, - "csaCode": 1, - "slogan": "L'homme au quotidien", - "catchupChannelId": "", - "newChannel": false, - "roamingBlocked": true, - "allowedDeviceCategories": [ - "M_ANDROID", - "M_IOS", - "M_TABLET_ANDROID", - "M_TABLET_IOS", - "W_AIRPLAY", - "W_CHROMECAST", - "W_LACLETV2", - "W_SMARTTV", - "W_PC", - "S_STB" - ], - "packages": [ - "PA_BQ_PASSACCESTVPREMIUM_M", - "PA_BQ_BASIC_M", - "PA_BQ_RE_TVMAX_M", - "PA_BQ_ACCESTVPREMIUM_M", - "PA_BQ_PAYG_M", - "PA_BQ_TVDIGITALE_I", - "PA_BQ_BASIC_I", - "PA_BQ_BASICQUAD_I", - "PA_BQ_ACCESTV_M", - "PI_WHITELIST" - ], - "hasRightIAccess": true, - "hasRightMAccess": true, - "logos": [ - { - "definitionType": "mobileAppli", - "listLogos": [ - { - "size": "183x183", - "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_men_s_up%2F20151026_092415%2FmobileAppli%2Flogo_183x183.png" - } - ] - }, - { - "definitionType": "mobileAppliDark", - "listLogos": [ - { - "size": "183x183", - "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_men_s_up%2F20151026_092415%2FmobileAppliDark%2Flogo_183x183.png" - } - ] - }, - { - "definitionType": "webTVLogo", - "listLogos": [ - { - "size": "180x96", - "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_men_s_up%2F20151026_092415%2FwebTVLogo%2Flogo_180x96.png" - } - ] - }, - { - "definitionType": "webTVSquare", - "listLogos": [ - { - "size": "150x150", - "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_men_s_up%2F20151026_092415%2FwebTVSquare%2Flogo_150x150.png" - } - ] - } - ], - "mobileData": { - "wifiForbidden": false, - "wifiSecuredOnly": false, - "everywhereChannel": true, - "nomadismAllowed": true, - "drmLevels": [ - { - "definition": "SD", - "securedTerminal": [ - "DRM-HW", - "DRM-SW" - ], - "unsecuredTerminal": [ - "DRM-HW", - "DRM-SW" - ] - }, - { - "definition": "HD", - "securedTerminal": [ - "ND" - ], - "unsecuredTerminal": [ - "ND" - ] - } - ] - }, - "webdeviceData": { - "nomadismAllowed": true - }, - "technicalChannels": { - "live": [ - { - "techChannelId": "400156", - "type": "CLOUDTV", - "liveTargetURLRelativePath": "livetv_mens_up_tv_ctv", - "usi": 400156, - "isDRMized": true, - "csa5Disabled": true - } - ], - "npvr": [ - { - "externalId": "livetv_mens_up_tv_ctv", - "techChannelId": "400156", - "type": "CLOUDTV", - "usi": 400156, - "isDRMized": true, - "antiAdskipping": "DEACTIVATED", - "csa5Disabled": true - } - ], - "startover": [] - } - }, - { - "name": "SQOOL TV", - "editoChannelId": "livetv_sqool_tv", - "lcn": 217, - "idEPG": 3767, - "epgAvailable": true, - "epgTextSubstitution": "", - "displayOrder": 217, - "csaCode": 1, - "slogan": "Imaginons ensemble l’école de demain", - "catchupChannelId": "", - "newChannel": true, - "roamingBlocked": false, - "allowedDeviceCategories": [ - "M_ANDROID", - "M_IOS", - "M_TABLET_ANDROID", - "M_TABLET_IOS", - "W_AIRPLAY", - "W_CHROMECAST", - "W_LACLETV2", - "W_PC", - "W_SMARTTV", - "S_STB" - ], - "packages": [ - "PA_BQ_BASIC_M", - "PA_BQ_TVDIGITALE_I", - "PA_BQ_BASIC_I", - "PA_BQ_BASICQUAD_I", - "PI_WHITELIST" - ], - "hasRightIAccess": true, - "hasRightMAccess": true, - "logos": [ - { - "definitionType": "mobileAppli", - "listLogos": [ - { - "size": "183x183", - "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_sqool_tv%2F20230517_112910%2FmobileAppli%2Flogo_183x183.png" - } - ] - }, - { - "definitionType": "mobileAppliDark", - "listLogos": [ - { - "size": "183x183", - "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_sqool_tv%2F20230517_112910%2FmobileAppliDark%2Flogo_183x183.png" - } - ] - }, - { - "definitionType": "webTVLogo", - "listLogos": [ - { - "size": "180x96", - "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_sqool_tv%2F20230517_112910%2FwebTVLogo%2Flogo_180x96.png" - } - ] - }, - { - "definitionType": "webTVSquare", - "listLogos": [ - { - "size": "150x150", - "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_sqool_tv%2F20230517_112910%2FwebTVSquare%2Flogo_150x150.png" - } - ] - } - ], - "mobileData": { - "wifiForbidden": false, - "wifiSecuredOnly": false, - "everywhereChannel": true, - "nomadismAllowed": true, - "drmLevels": [ - { - "definition": "SD", - "securedTerminal": [ - "DRM-HW", - "DRM-SW" - ], - "unsecuredTerminal": [ - "DRM-HW", - "DRM-SW" - ] - }, - { - "definition": "HD", - "securedTerminal": [ - "DRM-HW", - "DRM-SW" - ], - "unsecuredTerminal": [ - "ND" - ] - } - ] - }, - "webdeviceData": { - "nomadismAllowed": true - }, - "technicalChannels": { - "live": [ - { - "techChannelId": "400381", - "type": "CLOUDTV", - "liveTargetURLRelativePath": "livetv_sqool_tv_ctv", - "usi": 400381, - "isDRMized": true, - "csa5Disabled": true - } - ], - "npvr": [ - { - "externalId": "livetv_sqool_tv_ctv", - "techChannelId": "400381", - "type": "CLOUDTV", - "usi": 400381, - "isDRMized": true, - "antiAdskipping": "DEACTIVATED", - "csa5Disabled": true - } - ], - "startover": [] - } - }, - { - "name": "DEMAIN", - "editoChannelId": "livetv_demain", - "lcn": 219, - "idEPG": 57, - "epgAvailable": true, - "epgTextSubstitution": "", - "displayOrder": 219, - "csaCode": 1, - "slogan": "La télévision des initiatives", - "catchupChannelId": "", - "newChannel": false, - "roamingBlocked": true, - "allowedDeviceCategories": [ - "M_ANDROID", - "M_IOS", - "M_TABLET_ANDROID", - "M_TABLET_IOS", - "W_AIRPLAY", - "W_CHROMECAST", - "W_LACLETV2", - "W_SMARTTV", - "W_PC", - "S_STB" - ], - "packages": [ - "PA_BQ_PASSACCESTVPREMIUM_M", - "PA_BQ_BASIC_M", - "PA_BQ_RE_TVMAX_M", - "PA_BQ_ACCESTVPREMIUM_M", - "PA_BQ_PAYG_M", - "PA_BQ_TVDIGITALE_I", - "PA_BQ_BASIC_I", - "PA_BQ_BASICQUAD_I", - "PA_BQ_ACCESTV_M", - "PI_WHITELIST" - ], - "hasRightIAccess": true, - "hasRightMAccess": true, - "logos": [ - { - "definitionType": "mobileAppli", - "listLogos": [ - { - "size": "183x183", - "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_demain%2F20170314_120000%2FmobileAppli%2Flogo_183x183.png" - } - ] - }, - { - "definitionType": "mobileAppliDark", - "listLogos": [ - { - "size": "183x183", - "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_demain%2F20170314_120000%2FmobileAppliDark%2Flogo_183x183.png" - } - ] - }, - { - "definitionType": "webTVLogo", - "listLogos": [ - { - "size": "180x96", - "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_demain%2F20170314_120000%2FwebTVLogo%2Flogo_180x96.png" - } - ] - }, - { - "definitionType": "webTVSquare", - "listLogos": [ - { - "size": "150x150", - "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_demain%2F20170314_120000%2FwebTVSquare%2Flogo_150x150.png" - } - ] - } - ], - "mobileData": { - "wifiForbidden": false, - "wifiSecuredOnly": false, - "everywhereChannel": true, - "nomadismAllowed": true, - "drmLevels": [ - { - "definition": "SD", - "securedTerminal": [ - "DRM-HW", - "DRM-SW" - ], - "unsecuredTerminal": [ - "DRM-HW", - "DRM-SW" - ] - }, - { - "definition": "HD", - "securedTerminal": [ - "ND" - ], - "unsecuredTerminal": [ - "ND" - ] - } - ] - }, - "webdeviceData": { - "nomadismAllowed": true - }, - "technicalChannels": { - "live": [ - { - "techChannelId": "400142", - "type": "CLOUDTV", - "liveTargetURLRelativePath": "livetv_demain_ctv", - "usi": 400142, - "isDRMized": true, - "csa5Disabled": true - } - ], - "npvr": [ - { - "externalId": "livetv_demain_ctv", - "techChannelId": "400142", - "type": "CLOUDTV", - "usi": 400142, - "isDRMized": true, - "antiAdskipping": "DEACTIVATED", - "csa5Disabled": true - } - ], - "startover": [] - } - }, - { - "name": "KTO", - "editoChannelId": "livetv_kto", - "lcn": 220, - "idEPG": 110, - "epgAvailable": true, - "epgTextSubstitution": "", - "displayOrder": 220, - "csaCode": 1, - "slogan": "Télévision Catholique", - "catchupChannelId": "", - "newChannel": false, - "roamingBlocked": true, - "allowedDeviceCategories": [ - "M_ANDROID", - "M_IOS", - "M_TABLET_ANDROID", - "M_TABLET_IOS", - "W_AIRPLAY", - "W_CHROMECAST", - "W_LACLETV2", - "W_SMARTTV", - "W_PC", - "S_STB" - ], - "packages": [ - "PA_BQ_BASIC_M", - "PA_BQ_RE_TVMAX_M", - "PA_BQ_PAYG_M", - "PA_BQ_TVDIGITALE_I", - "PA_BQ_BASIC_I", - "PA_BQ_BASICQUAD_I", - "PA_BQ_ACCESTV_M", - "PI_WHITELIST" - ], - "hasRightIAccess": true, - "hasRightMAccess": true, - "logos": [ - { - "definitionType": "mobileAppli", - "listLogos": [ - { - "size": "183x183", - "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_kto%2F20151026_092415%2FmobileAppli%2Flogo_183x183.png" - } - ] - }, - { - "definitionType": "mobileAppliDark", - "listLogos": [ - { - "size": "183x183", - "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_kto%2F20151026_092415%2FmobileAppliDark%2Flogo_183x183.png" - } - ] - }, - { - "definitionType": "webTVLogo", - "listLogos": [ - { - "size": "180x96", - "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_kto%2F20151026_092415%2FwebTVLogo%2Flogo_180x96.png" - } - ] - }, - { - "definitionType": "webTVSquare", - "listLogos": [ - { - "size": "150x150", - "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_kto%2F20151026_092415%2FwebTVSquare%2Flogo_150x150.png" - } - ] - } - ], - "mobileData": { - "wifiForbidden": false, - "wifiSecuredOnly": false, - "everywhereChannel": true, - "nomadismAllowed": true, - "drmLevels": [ - { - "definition": "SD", - "securedTerminal": [ - "DRM-HW", - "DRM-SW" - ], - "unsecuredTerminal": [ - "DRM-HW", - "DRM-SW" - ] - }, - { - "definition": "HD", - "securedTerminal": [ - "ND" - ], - "unsecuredTerminal": [ - "ND" - ] - } - ] - }, - "webdeviceData": { - "nomadismAllowed": true - }, - "technicalChannels": { - "live": [ - { - "techChannelId": "400150", - "type": "CLOUDTV", - "liveTargetURLRelativePath": "livetv_kto_ctv", - "usi": 400150, - "isDRMized": true, - "csa5Disabled": true - } - ], - "npvr": [ - { - "externalId": "livetv_kto_ctv", - "techChannelId": "400150", - "type": "CLOUDTV", - "usi": 400150, - "isDRMized": true, - "antiAdskipping": "DEACTIVATED", - "csa5Disabled": true - } - ], - "startover": [] - } - }, - { - "name": "SOUVENIRS FROM EARTH", - "editoChannelId": "livetv_souvenirsfromearth", - "lcn": 221, - "idEPG": 90221, - "epgAvailable": false, - "epgTextSubstitution": "", - "displayOrder": 221, - "csaCode": 1, - "slogan": "et l'écran devient œuvre d'art", - "catchupChannelId": "", - "newChannel": false, - "roamingBlocked": true, - "allowedDeviceCategories": [ - "M_ANDROID", - "M_IOS", - "M_TABLET_ANDROID", - "M_TABLET_IOS", - "W_AIRPLAY", - "W_CHROMECAST", - "W_LACLETV2", - "W_SMARTTV", - "W_PC", - "S_STB" - ], - "packages": [ - "PA_BQ_BASIC_M", - "PA_BQ_RE_TVMAX_M", - "PA_BQ_PAYG_M", - "PA_BQ_TVDIGITALE_I", - "PA_BQ_BASIC_I", - "PA_BQ_BASICQUAD_I", - "PA_BQ_ACCESTV_M", - "PI_WHITELIST" - ], - "hasRightIAccess": true, - "hasRightMAccess": true, - "logos": [ - { - "definitionType": "mobileAppli", - "listLogos": [ - { - "size": "183x183", - "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_souvenirsfromearth%2F20151026_092415%2FmobileAppli%2Flogo_183x183.png" - } - ] - }, - { - "definitionType": "mobileAppliDark", - "listLogos": [ - { - "size": "183x183", - "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_souvenirsfromearth%2F20151026_092415%2FmobileAppliDark%2Flogo_183x183.png" - } - ] - }, - { - "definitionType": "webTVLogo", - "listLogos": [ - { - "size": "180x96", - "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_souvenirsfromearth%2F20151026_092415%2FwebTVLogo%2Flogo_180x96.png" - } - ] - }, - { - "definitionType": "webTVSquare", - "listLogos": [ - { - "size": "150x150", - "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_souvenirsfromearth%2F20151026_092415%2FwebTVSquare%2Flogo_150x150.png" - } - ] - } - ], - "mobileData": { - "wifiForbidden": false, - "wifiSecuredOnly": false, - "everywhereChannel": true, - "nomadismAllowed": true, - "drmLevels": [ - { - "definition": "SD", - "securedTerminal": [ - "DRM-HW", - "DRM-SW" - ], - "unsecuredTerminal": [ - "DRM-HW", - "DRM-SW" - ] - }, - { - "definition": "HD", - "securedTerminal": [ - "ND" - ], - "unsecuredTerminal": [ - "ND" - ] - } - ] - }, - "webdeviceData": { - "nomadismAllowed": true - }, - "technicalChannels": { - "live": [ - { - "techChannelId": "400167", - "type": "CLOUDTV", - "liveTargetURLRelativePath": "livetv_souvenirs_from_earth_ctv", - "usi": 400167, - "isDRMized": true, - "csa5Disabled": true - } - ], - "npvr": [ - { - "externalId": "livetv_souvenirs_from_earth_ctv", - "techChannelId": "400167", - "type": "CLOUDTV", - "usi": 400167, - "isDRMized": true, - "antiAdskipping": "DEACTIVATED", - "csa5Disabled": true - } - ], - "startover": [] - } - }, - { - "name": "LCP 100%", - "editoChannelId": "livetv_lcp_100_pourcent", - "lcn": 225, - "idEPG": 992, - "epgAvailable": true, - "epgTextSubstitution": "", - "displayOrder": 225, - "csaCode": 1, - "slogan": "Donnons du sens", - "catchupChannelId": "", - "newChannel": false, - "roamingBlocked": true, - "allowedDeviceCategories": [ - "M_ANDROID", - "M_IOS", - "M_TABLET_ANDROID", - "M_TABLET_IOS", - "W_AIRPLAY", - "W_CHROMECAST", - "W_LACLETV2", - "W_SMARTTV", - "W_PC", - "S_STB" - ], - "packages": [ - "PA_BQ_BASIC_M", - "PA_BQ_RE_TVMAX_M", - "PA_BQ_PAYG_M", - "PA_BQ_TVDIGITALE_I", - "PA_BQ_BASIC_I", - "PA_BQ_BASICQUAD_I", - "PI_WHITELIST" - ], - "hasRightIAccess": true, - "hasRightMAccess": true, - "logos": [ - { - "definitionType": "mobileAppli", - "listLogos": [ - { - "size": "183x183", - "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_lcp_100_pourcent%2F20191106_163032%2FmobileAppli%2Flogo_183x183.png" - } - ] - }, - { - "definitionType": "mobileAppliDark", - "listLogos": [ - { - "size": "183x183", - "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_lcp_100_pourcent%2F20191106_163032%2FmobileAppliDark%2Flogo_183x183.png" - } - ] - }, - { - "definitionType": "webTVLogo", - "listLogos": [ - { - "size": "180x96", - "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_lcp_100_pourcent%2F20191106_163032%2FwebTVLogo%2Flogo_180x96.png" - } - ] - }, - { - "definitionType": "webTVSquare", - "listLogos": [ - { - "size": "150x150", - "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_lcp_100_pourcent%2F20191106_163032%2FwebTVSquare%2Flogo_150x150.png" - } - ] - } - ], - "mobileData": { - "wifiForbidden": false, - "wifiSecuredOnly": false, - "everywhereChannel": true, - "nomadismAllowed": true, - "drmLevels": [ - { - "definition": "SD", - "securedTerminal": [ - "DRM-HW", - "DRM-SW" - ], - "unsecuredTerminal": [ - "DRM-HW", - "DRM-SW" - ] - }, - { - "definition": "HD", - "securedTerminal": [ - "ND" - ], - "unsecuredTerminal": [ - "ND" - ] - } - ] - }, - "webdeviceData": { - "nomadismAllowed": true - }, - "technicalChannels": { - "live": [ - { - "techChannelId": "400151", - "type": "CLOUDTV", - "liveTargetURLRelativePath": "livetv_lcp_100_pourcent_ctv", - "usi": 400151, - "isDRMized": true, - "csa5Disabled": true - } - ], - "npvr": [ - { - "externalId": "livetv_lcp_100_pourcent_ctv", - "techChannelId": "400151", - "type": "CLOUDTV", - "usi": 400151, - "isDRMized": true, - "antiAdskipping": "DEACTIVATED", - "csa5Disabled": true - } - ], - "startover": [] - } - }, - { - "name": "PUBLIC SENAT 24/24", - "editoChannelId": "livetv_public_senat_2424", - "lcn": 226, - "idEPG": 90226, - "epgAvailable": false, - "epgTextSubstitution": "", - "displayOrder": 226, - "csaCode": 1, - "slogan": "Des questions à toutes vos réponses.", - "catchupChannelId": "", - "newChannel": false, - "roamingBlocked": true, - "allowedDeviceCategories": [ - "M_ANDROID", - "M_IOS", - "M_TABLET_ANDROID", - "M_TABLET_IOS", - "W_AIRPLAY", - "W_CHROMECAST", - "W_LACLETV2", - "W_SMARTTV", - "W_PC", - "S_STB" - ], - "packages": [ - "PA_BQ_BASIC_M", - "PA_BQ_RE_TVMAX_M", - "PA_BQ_PAYG_M", - "PA_BQ_TVDIGITALE_I", - "PA_BQ_BASIC_I", - "PA_BQ_BASICQUAD_I", - "PI_WHITELIST" - ], - "hasRightIAccess": true, - "hasRightMAccess": true, - "logos": [ - { - "definitionType": "mobileAppli", - "listLogos": [ - { - "size": "183x183", - "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_public_senat_2424%2F20191114_110026%2FmobileAppli%2Flogo_183x183.png" - } - ] - }, - { - "definitionType": "mobileAppliDark", - "listLogos": [ - { - "size": "183x183", - "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_public_senat_2424%2F20191114_110026%2FmobileAppliDark%2Flogo_183x183.png" - } - ] - }, - { - "definitionType": "webTVLogo", - "listLogos": [ - { - "size": "180x96", - "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_public_senat_2424%2F20191114_110026%2FwebTVLogo%2Flogo_180x96.png" - } - ] - }, - { - "definitionType": "webTVSquare", - "listLogos": [ - { - "size": "150x150", - "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_public_senat_2424%2F20191114_110026%2FwebTVSquare%2Flogo_150x150.png" - } - ] - } - ], - "mobileData": { - "wifiForbidden": false, - "wifiSecuredOnly": false, - "everywhereChannel": true, - "nomadismAllowed": true, - "drmLevels": [ - { - "definition": "SD", - "securedTerminal": [ - "DRM-HW", - "DRM-SW" - ], - "unsecuredTerminal": [ - "DRM-HW", - "DRM-SW" - ] - }, - { - "definition": "HD", - "securedTerminal": [ - "ND" - ], - "unsecuredTerminal": [ - "ND" - ] - } - ] - }, - "webdeviceData": { - "nomadismAllowed": true - }, - "technicalChannels": { - "live": [ - { - "techChannelId": "400163", - "type": "CLOUDTV", - "liveTargetURLRelativePath": "livetv_public_senat_2424_ctv", - "usi": 400163, - "isDRMized": true, - "csa5Disabled": true - } - ], - "npvr": [ - { - "externalId": "livetv_public_senat_2424_ctv", - "techChannelId": "400163", - "type": "CLOUDTV", - "usi": 400163, - "isDRMized": true, - "antiAdskipping": "DEACTIVATED", - "csa5Disabled": true - } - ], - "startover": [] - } - }, - { - "name": "FRANCE 24 Français", - "editoChannelId": "livetv_france24_fr", - "lcn": 227, - "idEPG": 529, - "epgAvailable": true, - "epgTextSubstitution": "", - "displayOrder": 227, - "csaCode": 1, - "slogan": "L'actualité internationale 24H/24", - "catchupChannelId": "catchuptv_france24", - "newChannel": false, - "roamingBlocked": true, - "allowedDeviceCategories": [ - "M_ANDROID", - "M_IOS", - "M_TABLET_ANDROID", - "M_TABLET_IOS", - "W_AIRPLAY", - "W_CHROMECAST", - "W_LACLETV2", - "W_PC", - "W_SMARTTV", - "S_STB" - ], - "packages": [ - "PA_BQ_PASSACCESTVPREMIUM_M", - "PA_BQ_BASIC_M", - "PA_BQ_RE_TVMAX_M", - "PA_BQ_ACCESTVPREMIUM_M", - "PA_BQ_PAYG_M", - "PA_BQ_TVDIGITALE_I", - "PA_BQ_SPORT_M", - "PA_BQ_BASIC_I", - "PA_BQ_BASICQUAD_I", - "PA_BQ_ACCESTV_M", - "PI_WHITELIST" - ], - "hasRightIAccess": true, - "hasRightMAccess": true, - "logos": [ - { - "definitionType": "mobileAppli", - "listLogos": [ - { - "size": "183x183", - "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_france24_fr%2F20220922_114506%2FmobileAppli%2Flogo_183x183.png" - } - ] - }, - { - "definitionType": "mobileAppliDark", - "listLogos": [ - { - "size": "183x183", - "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_france24_fr%2F20220922_114506%2FmobileAppliDark%2Flogo_183x183.png" - } - ] - }, - { - "definitionType": "webTVLogo", - "listLogos": [ - { - "size": "180x96", - "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_france24_fr%2F20220922_114506%2FwebTVLogo%2Flogo_180x96.png" - } - ] - }, - { - "definitionType": "webTVSquare", - "listLogos": [ - { - "size": "150x150", - "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_france24_fr%2F20220922_114506%2FwebTVSquare%2Flogo_150x150.png" - } - ] - } - ], - "mobileData": { - "wifiForbidden": false, - "wifiSecuredOnly": false, - "everywhereChannel": true, - "nomadismAllowed": true, - "drmLevels": [ - { - "definition": "SD", - "securedTerminal": [ - "DRM-HW", - "DRM-SW" - ], - "unsecuredTerminal": [ - "DRM-HW", - "DRM-SW" - ] - }, - { - "definition": "HD", - "securedTerminal": [ - "ND" - ], - "unsecuredTerminal": [ - "ND" - ] - } - ] - }, - "webdeviceData": { - "nomadismAllowed": true - }, - "technicalChannels": { - "live": [ - { - "techChannelId": "400146", - "type": "CLOUDTV", - "liveTargetURLRelativePath": "livetv_france_24_francais_ctv", - "usi": 400146, - "isDRMized": true, - "csa5Disabled": true - } - ], - "npvr": [ - { - "externalId": "livetv_france_24_francais_ctv", - "techChannelId": "400146", - "type": "CLOUDTV", - "usi": 400146, - "isDRMized": true, - "antiAdskipping": "DEACTIVATED", - "csa5Disabled": true - } - ], - "startover": [] - } - }, - { - "name": "BFM BUSINESS", - "editoChannelId": "livetv_bfmbusiness", - "lcn": 228, - "idEPG": 1073, - "epgAvailable": true, - "epgTextSubstitution": "", - "displayOrder": 228, - "csaCode": 1, - "slogan": "Le N°1 sur l'économie", - "catchupChannelId": "catchuptv_bfmbusiness", - "newChannel": false, - "roamingBlocked": true, - "allowedDeviceCategories": [ - "M_ANDROID", - "M_IOS", - "M_TABLET_ANDROID", - "M_TABLET_IOS", - "W_AIRPLAY", - "W_CHROMECAST", - "W_LACLETV2", - "W_PC", - "W_SMARTTV", - "S_STB" - ], - "packages": [ - "PA_BQ_PASSACCESTVPREMIUM_M", - "PA_BQ_BASIC_M", - "PA_BQ_RE_TVMAX_M", - "PA_BQ_ACCESTVPREMIUM_M", - "PA_BQ_PAYG_M", - "PA_BQ_TVDIGITALE_I", - "PA_BQ_SPORT_M", - "PA_BQ_BASIC_I", - "PA_BQ_BASICQUAD_I", - "PA_BQ_ACCESTV_M", - "PI_WHITELIST" - ], - "hasRightIAccess": true, - "hasRightMAccess": true, - "logos": [ - { - "definitionType": "mobileAppli", - "listLogos": [ - { - "size": "183x183", - "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_bfmbusiness%2F20230321_182925%2FmobileAppli%2Flogo_183x183.png" - } - ] - }, - { - "definitionType": "mobileAppliDark", - "listLogos": [ - { - "size": "183x183", - "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_bfmbusiness%2F20230321_182925%2FmobileAppliDark%2Flogo_183x183.png" - } - ] - }, - { - "definitionType": "webTVLogo", - "listLogos": [ - { - "size": "180x96", - "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_bfmbusiness%2F20230321_182925%2FwebTVLogo%2Flogo_180x96.png" - } - ] - }, - { - "definitionType": "webTVSquare", - "listLogos": [ - { - "size": "150x150", - "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_bfmbusiness%2F20230321_182925%2FwebTVSquare%2Flogo_150x150.png" - } - ] - } - ], - "mobileData": { - "wifiForbidden": false, - "wifiSecuredOnly": false, - "everywhereChannel": true, - "nomadismAllowed": true, - "drmLevels": [ - { - "definition": "SD", - "securedTerminal": [ - "DRM-HW", - "DRM-SW" - ], - "unsecuredTerminal": [ - "DRM-HW", - "DRM-SW" - ] - }, - { - "definition": "HD", - "securedTerminal": [ - "ND" - ], - "unsecuredTerminal": [ - "ND" - ] - } - ] - }, - "webdeviceData": { - "nomadismAllowed": true - }, - "technicalChannels": { - "live": [ - { - "techChannelId": "400136", - "type": "CLOUDTV", - "liveTargetURLRelativePath": "livetv_bfm_business_ctv", - "usi": 400136, - "isDRMized": true, - "csa5Disabled": true - } - ], - "npvr": [ - { - "externalId": "livetv_bfm_business_ctv", - "techChannelId": "400136", - "type": "CLOUDTV", - "usi": 400136, - "isDRMized": true, - "antiAdskipping": "DEACTIVATED", - "csa5Disabled": true - } - ], - "startover": [] - } - }, - { - "name": "EURONEWS Français", - "editoChannelId": "livetv_euronews", - "lcn": 229, - "idEPG": 140, - "epgAvailable": true, - "epgTextSubstitution": "", - "displayOrder": 229, - "csaCode": 1, - "slogan": "All Views", - "catchupChannelId": "", - "newChannel": false, - "roamingBlocked": true, - "allowedDeviceCategories": [ - "M_ANDROID", - "M_IOS", - "M_TABLET_ANDROID", - "M_TABLET_IOS", - "W_AIRPLAY", - "W_CHROMECAST", - "W_LACLETV2", - "W_PC", - "W_SMARTTV", - "S_STB" - ], - "packages": [ - "PA_BQ_PASSACCESTVPREMIUM_M", - "PA_BQ_BASIC_M", - "PA_BQ_RE_TVMAX_M", - "PA_BQ_ACCESTVPREMIUM_M", - "PA_BQ_PAYG_M", - "PA_BQ_TVDIGITALE_I", - "PA_BQ_SPORT_M", - "PA_BQ_BASIC_I", - "PA_BQ_BASICQUAD_I", - "PA_BQ_ACCESTV_M", - "PI_WHITELIST" - ], - "hasRightIAccess": true, - "hasRightMAccess": true, - "logos": [ - { - "definitionType": "mobileAppli", - "listLogos": [ - { - "size": "183x183", - "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_euronews%2F20230321_182925%2FmobileAppli%2Flogo_183x183.png" - } - ] - }, - { - "definitionType": "mobileAppliDark", - "listLogos": [ - { - "size": "183x183", - "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_euronews%2F20230321_182925%2FmobileAppliDark%2Flogo_183x183.png" - } - ] - }, - { - "definitionType": "webTVLogo", - "listLogos": [ - { - "size": "180x96", - "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_euronews%2F20230321_182925%2FwebTVLogo%2Flogo_180x96.png" - } - ] - }, - { - "definitionType": "webTVSquare", - "listLogos": [ - { - "size": "150x150", - "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_euronews%2F20230321_182925%2FwebTVSquare%2Flogo_150x150.png" - } - ] - } - ], - "mobileData": { - "wifiForbidden": false, - "wifiSecuredOnly": false, - "everywhereChannel": true, - "nomadismAllowed": true, - "drmLevels": [ - { - "definition": "SD", - "securedTerminal": [ - "DRM-HW", - "DRM-SW" - ], - "unsecuredTerminal": [ - "DRM-HW", - "DRM-SW" - ] - }, - { - "definition": "HD", - "securedTerminal": [ - "ND" - ], - "unsecuredTerminal": [ - "ND" - ] - } - ] - }, - "webdeviceData": { - "nomadismAllowed": true - }, - "technicalChannels": { - "live": [ - { - "techChannelId": "400145", - "type": "CLOUDTV", - "liveTargetURLRelativePath": "livetv_euronews_ctv", - "usi": 400145, - "isDRMized": true, - "csa5Disabled": true - } - ], - "npvr": [ - { - "externalId": "livetv_euronews_ctv", - "techChannelId": "400145", - "type": "CLOUDTV", - "usi": 400145, - "isDRMized": true, - "antiAdskipping": "DEACTIVATED", - "csa5Disabled": true - } - ], - "startover": [] - } - }, - { - "name": "B SMART", - "editoChannelId": "livetv_bsmart_tv", - "lcn": 230, - "idEPG": 90230, - "epgAvailable": false, - "epgTextSubstitution": "", - "displayOrder": 230, - "csaCode": 1, - "slogan": "La chaîne des audacieux", - "catchupChannelId": "", - "newChannel": false, - "roamingBlocked": true, - "allowedDeviceCategories": [ - "M_ANDROID", - "M_IOS", - "M_TABLET_ANDROID", - "M_TABLET_IOS", - "W_AIRPLAY", - "W_CHROMECAST", - "W_LACLETV2", - "W_SMARTTV", - "W_PC", - "S_STB" - ], - "packages": [ - "PA_BQ_BASIC_M", - "PA_BQ_TVDIGITALE_I", - "PA_BQ_BASIC_I", - "PA_BQ_BASICQUAD_I", - "PI_WHITELIST" - ], - "hasRightIAccess": true, - "hasRightMAccess": true, - "logos": [ - { - "definitionType": "mobileAppli", - "listLogos": [ - { - "size": "183x183", - "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_bsmart_tv%2F20200617_151521%2FmobileAppli%2Flogo_183x183.png" - } - ] - }, - { - "definitionType": "mobileAppliDark", - "listLogos": [ - { - "size": "183x183", - "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_bsmart_tv%2F20200617_151521%2FmobileAppliDark%2Flogo_183x183.png" - } - ] - }, - { - "definitionType": "webTVLogo", - "listLogos": [ - { - "size": "180x96", - "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_bsmart_tv%2F20200617_151521%2FwebTVLogo%2Flogo_180x96.png" - } - ] - }, - { - "definitionType": "webTVSquare", - "listLogos": [ - { - "size": "150x150", - "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_bsmart_tv%2F20200617_151521%2FwebTVSquare%2Flogo_150x150.png" - } - ] - } - ], - "mobileData": { - "wifiForbidden": false, - "wifiSecuredOnly": false, - "everywhereChannel": true, - "nomadismAllowed": true, - "drmLevels": [ - { - "definition": "SD", - "securedTerminal": [ - "DRM-HW", - "DRM-SW" - ], - "unsecuredTerminal": [ - "DRM-HW", - "DRM-SW" - ] - }, - { - "definition": "HD", - "securedTerminal": [ - "DRM-HW", - "DRM-SW" - ], - "unsecuredTerminal": [ - "ND" - ] - } - ] - }, - "webdeviceData": { - "nomadismAllowed": true - }, - "technicalChannels": { - "live": [ - { - "techChannelId": "400263", - "type": "CLOUDTV", - "liveTargetURLRelativePath": "livetv_bsmarttv_ctv", - "usi": 400263, - "isDRMized": true, - "csa5Disabled": true - } - ], - "npvr": [ - { - "externalId": "livetv_bsmarttv_ctv", - "techChannelId": "400263", - "type": "CLOUDTV", - "usi": 400263, - "isDRMized": true, - "antiAdskipping": "DEACTIVATED", - "csa5Disabled": true - } - ], - "startover": [] - } - }, - { - "name": "LA CHAINE METEO", - "editoChannelId": "livetv_la_chaine_meteo", - "lcn": 231, - "idEPG": 90231, - "epgAvailable": false, - "epgTextSubstitution": "", - "displayOrder": 231, - "csaCode": 1, - "slogan": "Infos météo en continu", - "catchupChannelId": "", - "newChannel": false, - "roamingBlocked": true, - "allowedDeviceCategories": [ - "M_ANDROID", - "M_IOS", - "M_TABLET_ANDROID", - "M_TABLET_IOS", - "W_AIRPLAY", - "W_CHROMECAST", - "W_LACLETV2", - "W_SMARTTV", - "W_PC", - "S_STB" - ], - "packages": [ - "PA_bouquet_divertissement_fibre", - "PA_bouquet_famille_by_canal", - "PA_bouquet_famille_by_canal_nov2018", - "PI_WHITELIST" - ], - "hasRightIAccess": true, - "hasRightMAccess": false, - "logos": [ - { - "definitionType": "mobileAppli", - "listLogos": [ - { - "size": "183x183", - "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_la_chaine_meteo%2F20170405_200000%2FmobileAppli%2Flogo_183x183.png" - } - ] - }, - { - "definitionType": "mobileAppliDark", - "listLogos": [ - { - "size": "183x183", - "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_la_chaine_meteo%2F20170405_200000%2FmobileAppliDark%2Flogo_183x183.png" - } - ] - }, - { - "definitionType": "webTVLogo", - "listLogos": [ - { - "size": "180x96", - "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_la_chaine_meteo%2F20170405_200000%2FwebTVLogo%2Flogo_180x96.png" - } - ] - }, - { - "definitionType": "webTVSquare", - "listLogos": [ - { - "size": "150x150", - "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_la_chaine_meteo%2F20170405_200000%2FwebTVSquare%2Flogo_150x150.png" - } - ] - } - ], - "mobileData": { - "wifiForbidden": false, - "wifiSecuredOnly": false, - "everywhereChannel": true, - "nomadismAllowed": true, - "drmLevels": [ - { - "definition": "SD", - "securedTerminal": [ - "DRM-HW", - "DRM-SW" - ], - "unsecuredTerminal": [ - "DRM-HW", - "DRM-SW" - ] - }, - { - "definition": "HD", - "securedTerminal": [ - "ND" - ], - "unsecuredTerminal": [ - "ND" - ] - } - ] - }, - "webdeviceData": { - "nomadismAllowed": true - }, - "technicalChannels": { - "live": [ - { - "techChannelId": "400254", - "type": "CLOUDTV", - "liveTargetURLRelativePath": "livetv_lachainemeteo_ctv", - "usi": 400254, - "isDRMized": true, - "csa5Disabled": true - } - ], - "npvr": [], - "startover": [] - } - }, - { - "name": "FRANCE 24 Anglais", - "editoChannelId": "livetv_france24_eng", - "lcn": 232, - "idEPG": 671, - "epgAvailable": true, - "epgTextSubstitution": "", - "displayOrder": 232, - "csaCode": 1, - "slogan": "L'actualité internationale 24H/24", - "catchupChannelId": "", - "newChannel": false, - "roamingBlocked": true, - "allowedDeviceCategories": [ - "M_ANDROID", - "M_IOS", - "M_TABLET_ANDROID", - "M_TABLET_IOS", - "W_AIRPLAY", - "W_CHROMECAST", - "W_LACLETV2", - "W_PC", - "W_SMARTTV", - "S_STB" - ], - "packages": [ - "PA_BQ_PASSACCESTVPREMIUM_M", - "PA_BQ_BASIC_M", - "PA_BQ_RE_TVMAX_M", - "PA_BQ_ACCESTVPREMIUM_M", - "PA_BQ_PAYG_M", - "PA_BQ_TVDIGITALE_I", - "PA_BQ_SPORT_M", - "PA_BQ_BASIC_I", - "PA_BQ_BASICQUAD_I", - "PA_BQ_ACCESTV_M", - "PI_WHITELIST" - ], - "hasRightIAccess": true, - "hasRightMAccess": true, - "logos": [ - { - "definitionType": "mobileAppli", - "listLogos": [ - { - "size": "183x183", - "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_france24_eng%2F20220922_114506%2FmobileAppli%2Flogo_183x183.png" - } - ] - }, - { - "definitionType": "mobileAppliDark", - "listLogos": [ - { - "size": "183x183", - "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_france24_eng%2F20220922_114506%2FmobileAppliDark%2Flogo_183x183.png" - } - ] - }, - { - "definitionType": "webTVLogo", - "listLogos": [ - { - "size": "180x96", - "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_france24_eng%2F20220922_114506%2FwebTVLogo%2Flogo_180x96.png" - } - ] - }, - { - "definitionType": "webTVSquare", - "listLogos": [ - { - "size": "150x150", - "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_france24_eng%2F20220922_114506%2FwebTVSquare%2Flogo_150x150.png" - } - ] - } - ], - "mobileData": { - "wifiForbidden": false, - "wifiSecuredOnly": false, - "everywhereChannel": true, - "nomadismAllowed": true, - "drmLevels": [ - { - "definition": "SD", - "securedTerminal": [ - "DRM-HW", - "DRM-SW" - ], - "unsecuredTerminal": [ - "DRM-HW", - "DRM-SW" - ] - }, - { - "definition": "HD", - "securedTerminal": [ - "ND" - ], - "unsecuredTerminal": [ - "ND" - ] - } - ] - }, - "webdeviceData": { - "nomadismAllowed": true - }, - "technicalChannels": { - "live": [ - { - "techChannelId": "400252", - "type": "CLOUDTV", - "liveTargetURLRelativePath": "livetv_france24anglais_ctv", - "usi": 400252, - "isDRMized": true, - "csa5Disabled": true - } - ], - "npvr": [], - "startover": [] - } - }, - { - "name": "SKYNEWS", - "editoChannelId": "livetv_skynews", - "lcn": 233, - "idEPG": 90233, - "epgAvailable": false, - "epgTextSubstitution": "", - "displayOrder": 233, - "csaCode": 1, - "slogan": "First for breaking news", - "catchupChannelId": "", - "newChannel": false, - "roamingBlocked": true, - "allowedDeviceCategories": [ - "M_ANDROID", - "M_IOS", - "M_TABLET_ANDROID", - "M_TABLET_IOS", - "W_AIRPLAY", - "W_CHROMECAST", - "W_LACLETV2", - "W_SMARTTV", - "W_PC", - "S_STB" - ], - "packages": [ - "PA_BQ_BASIC_M", - "PA_BQ_ACCESTVPREMIUM_M", - "PA_BQ_TVDIGITALE_I", - "PA_BQ_BASIC_I", - "PA_BQ_BASICQUAD_I", - "PA_BQ_ACCESTV_M", - "PI_WHITELIST" - ], - "hasRightIAccess": true, - "hasRightMAccess": true, - "logos": [ - { - "definitionType": "mobileAppli", - "listLogos": [ - { - "size": "183x183", - "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_skynews%2F20151026_092415%2FmobileAppli%2Flogo_183x183.png" - } - ] - }, - { - "definitionType": "mobileAppliDark", - "listLogos": [ - { - "size": "183x183", - "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_skynews%2F20151026_092415%2FmobileAppliDark%2Flogo_183x183.png" - } - ] - }, - { - "definitionType": "webTVLogo", - "listLogos": [ - { - "size": "180x96", - "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_skynews%2F20151026_092415%2FwebTVLogo%2Flogo_180x96.png" - } - ] - }, - { - "definitionType": "webTVSquare", - "listLogos": [ - { - "size": "150x150", - "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_skynews%2F20151026_092415%2FwebTVSquare%2Flogo_150x150.png" - } - ] - } - ], - "mobileData": { - "wifiForbidden": false, - "wifiSecuredOnly": false, - "everywhereChannel": true, - "nomadismAllowed": true, - "drmLevels": [ - { - "definition": "SD", - "securedTerminal": [ - "DRM-HW", - "DRM-SW" - ], - "unsecuredTerminal": [ - "DRM-HW", - "DRM-SW" - ] - }, - { - "definition": "HD", - "securedTerminal": [ - "ND" - ], - "unsecuredTerminal": [ - "ND" - ] - } - ] - }, - "webdeviceData": { - "nomadismAllowed": true - }, - "technicalChannels": { - "live": [ - { - "techChannelId": "400259", - "type": "CLOUDTV", - "liveTargetURLRelativePath": "livetv_skynews_ctv", - "usi": 400259, - "isDRMized": true, - "csa5Disabled": true - } - ], - "npvr": [], - "startover": [] - } - }, - { - "name": "CNN INTERNATIONAL", - "editoChannelId": "livetv_cnn", - "lcn": 234, - "idEPG": 53, - "epgAvailable": true, - "epgTextSubstitution": "", - "displayOrder": 234, - "csaCode": 1, - "slogan": "Dépassez les frontières", - "catchupChannelId": "", - "newChannel": false, - "roamingBlocked": true, - "allowedDeviceCategories": [ - "M_ANDROID", - "M_IOS", - "M_TABLET_ANDROID", - "M_TABLET_IOS", - "W_AIRPLAY", - "W_CHROMECAST", - "W_LACLETV2", - "W_SMARTTV", - "W_PC", - "S_STB" - ], - "packages": [ - "PA_BQ_PASSACCESTVPREMIUM_M", - "PA_BQ_BASIC_M", - "PA_BQ_RE_TVMAX_M", - "PA_BQ_ACCESTVPREMIUM_M", - "PA_BQ_PAYG_M", - "PA_BQ_TVDIGITALE_I", - "PA_BQ_SPORT_M", - "PA_BQ_BASIC_I", - "PA_BQ_BASICQUAD_I", - "PA_BQ_ACCESTV_M", - "PI_WHITELIST" - ], - "hasRightIAccess": true, - "hasRightMAccess": true, - "logos": [ - { - "definitionType": "mobileAppli", - "listLogos": [ - { - "size": "183x183", - "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_cnn%2F20151026_092415%2FmobileAppli%2Flogo_183x183.png" - } - ] - }, - { - "definitionType": "mobileAppliDark", - "listLogos": [ - { - "size": "183x183", - "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_cnn%2F20151026_092415%2FmobileAppliDark%2Flogo_183x183.png" - } - ] - }, - { - "definitionType": "webTVLogo", - "listLogos": [ - { - "size": "180x96", - "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_cnn%2F20151026_092415%2FwebTVLogo%2Flogo_180x96.png" - } - ] - }, - { - "definitionType": "webTVSquare", - "listLogos": [ - { - "size": "150x150", - "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_cnn%2F20151026_092415%2FwebTVSquare%2Flogo_150x150.png" - } - ] - } - ], - "mobileData": { - "wifiForbidden": false, - "wifiSecuredOnly": false, - "everywhereChannel": true, - "nomadismAllowed": true, - "drmLevels": [ - { - "definition": "SD", - "securedTerminal": [ - "DRM-HW", - "DRM-SW" - ], - "unsecuredTerminal": [ - "DRM-HW", - "DRM-SW" - ] - }, - { - "definition": "HD", - "securedTerminal": [ - "ND" - ], - "unsecuredTerminal": [ - "ND" - ] - } - ] - }, - "webdeviceData": { - "nomadismAllowed": true - }, - "technicalChannels": { - "live": [ - { - "techChannelId": "400140", - "type": "CLOUDTV", - "liveTargetURLRelativePath": "livetv_cnn_ctv", - "usi": 400140, - "isDRMized": true, - "csa5Disabled": true - } - ], - "npvr": [ - { - "externalId": "livetv_cnn_ctv", - "techChannelId": "400140", - "type": "CLOUDTV", - "usi": 400140, - "isDRMized": true, - "antiAdskipping": "DEACTIVATED", - "csa5Disabled": true - } - ], - "startover": [] - } - }, - { - "name": "CNBC", - "editoChannelId": "livetv_cnbc", - "lcn": 235, - "idEPG": 51, - "epgAvailable": true, - "epgTextSubstitution": "", - "displayOrder": 235, - "csaCode": 1, - "slogan": "Leader de l information financière", - "catchupChannelId": "", - "newChannel": false, - "roamingBlocked": true, - "allowedDeviceCategories": [ - "M_ANDROID", - "M_IOS", - "M_TABLET_ANDROID", - "M_TABLET_IOS", - "W_AIRPLAY", - "W_CHROMECAST", - "W_LACLETV2", - "W_SMARTTV", - "W_PC", - "S_STB" - ], - "packages": [ - "PA_BQ_BASIC_M", - "PA_BQ_RE_TVMAX_M", - "PA_BQ_PAYG_M", - "PA_BQ_TVDIGITALE_I", - "PA_BQ_BASIC_I", - "PA_BQ_BASICQUAD_I", - "PA_BQ_ACCESTV_M", - "PI_WHITELIST" - ], - "hasRightIAccess": true, - "hasRightMAccess": true, - "logos": [ - { - "definitionType": "mobileAppli", - "listLogos": [ - { - "size": "183x183", - "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_cnbc%2F20151026_092415%2FmobileAppli%2Flogo_183x183.png" - } - ] - }, - { - "definitionType": "mobileAppliDark", - "listLogos": [ - { - "size": "183x183", - "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_cnbc%2F20151026_092415%2FmobileAppliDark%2Flogo_183x183.png" - } - ] - }, - { - "definitionType": "webTVLogo", - "listLogos": [ - { - "size": "180x96", - "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_cnbc%2F20151026_092415%2FwebTVLogo%2Flogo_180x96.png" - } - ] - }, - { - "definitionType": "webTVSquare", - "listLogos": [ - { - "size": "150x150", - "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_cnbc%2F20151026_092415%2FwebTVSquare%2Flogo_150x150.png" - } - ] - } - ], - "mobileData": { - "wifiForbidden": false, - "wifiSecuredOnly": false, - "everywhereChannel": true, - "nomadismAllowed": true, - "drmLevels": [ - { - "definition": "SD", - "securedTerminal": [ - "DRM-HW", - "DRM-SW" - ], - "unsecuredTerminal": [ - "DRM-HW", - "DRM-SW" - ] - }, - { - "definition": "HD", - "securedTerminal": [ - "ND" - ], - "unsecuredTerminal": [ - "ND" - ] - } - ] - }, - "webdeviceData": { - "nomadismAllowed": true - }, - "technicalChannels": { - "live": [ - { - "techChannelId": "400250", - "type": "CLOUDTV", - "liveTargetURLRelativePath": "livetv_cnbc_ctv", - "usi": 400250, - "isDRMized": true, - "csa5Disabled": true - } - ], - "npvr": [], - "startover": [] - } - }, - { - "name": "BLOOMBERG EUROPE", - "editoChannelId": "livetv_bloombergeurope", - "lcn": 236, - "idEPG": 410, - "epgAvailable": true, - "epgTextSubstitution": "", - "displayOrder": 236, - "csaCode": 1, - "slogan": ".", - "catchupChannelId": "", - "newChannel": false, - "roamingBlocked": true, - "allowedDeviceCategories": [ - "M_ANDROID", - "M_IOS", - "M_TABLET_ANDROID", - "M_TABLET_IOS", - "W_AIRPLAY", - "W_CHROMECAST", - "W_LACLETV2", - "W_SMARTTV", - "W_PC", - "S_STB" - ], - "packages": [ - "PA_BQ_BASIC_M", - "PA_BQ_RE_TVMAX_M", - "PA_BQ_PAYG_M", - "PA_BQ_TVDIGITALE_I", - "PA_BQ_BASIC_I", - "PA_BQ_BASICQUAD_I", - "PA_BQ_ACCESTV_M", - "PI_WHITELIST" - ], - "hasRightIAccess": true, - "hasRightMAccess": true, - "logos": [ - { - "definitionType": "mobileAppli", - "listLogos": [ - { - "size": "183x183", - "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_bloombergeurope%2F20151026_092415%2FmobileAppli%2Flogo_183x183.png" - } - ] - }, - { - "definitionType": "mobileAppliDark", - "listLogos": [ - { - "size": "183x183", - "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_bloombergeurope%2F20151026_092415%2FmobileAppliDark%2Flogo_183x183.png" - } - ] - }, - { - "definitionType": "webTVLogo", - "listLogos": [ - { - "size": "180x96", - "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_bloombergeurope%2F20151026_092415%2FwebTVLogo%2Flogo_180x96.png" - } - ] - }, - { - "definitionType": "webTVSquare", - "listLogos": [ - { - "size": "150x150", - "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_bloombergeurope%2F20151026_092415%2FwebTVSquare%2Flogo_150x150.png" - } - ] - } - ], - "mobileData": { - "wifiForbidden": false, - "wifiSecuredOnly": false, - "everywhereChannel": true, - "nomadismAllowed": true, - "drmLevels": [ - { - "definition": "SD", - "securedTerminal": [ - "DRM-HW", - "DRM-SW" - ], - "unsecuredTerminal": [ - "DRM-HW", - "DRM-SW" - ] - }, - { - "definition": "HD", - "securedTerminal": [ - "ND" - ], - "unsecuredTerminal": [ - "ND" - ] - } - ] - }, - "webdeviceData": { - "nomadismAllowed": true - }, - "technicalChannels": { - "live": [ - { - "techChannelId": "400249", - "type": "CLOUDTV", - "liveTargetURLRelativePath": "livetv_bloombergeurope_ctv", - "usi": 400249, - "isDRMized": true, - "csa5Disabled": true - } - ], - "npvr": [], - "startover": [] - } - }, - { - "name": "BBC NEWS", - "editoChannelId": "livetv_BBC_world_UMTS", - "lcn": 237, - "idEPG": 19, - "epgAvailable": true, - "epgTextSubstitution": "", - "displayOrder": 237, - "csaCode": 1, - "slogan": "Putting news first", - "catchupChannelId": "", - "newChannel": false, - "roamingBlocked": true, - "allowedDeviceCategories": [ - "M_ANDROID", - "M_IOS", - "M_TABLET_ANDROID", - "M_TABLET_IOS", - "W_AIRPLAY", - "W_CHROMECAST", - "W_LACLETV2", - "W_PC", - "W_SMARTTV", - "S_STB" - ], - "packages": [ - "PA_BQ_PASSACCESTVPREMIUM_M", - "PA_BQ_BASIC_M", - "PA_BQ_RE_TVMAX_M", - "PA_BQ_ACCESTVPREMIUM_M", - "PA_BQ_PAYG_M", - "PA_BQ_TVDIGITALE_I", - "PA_BQ_SPORT_M", - "PA_BQ_BASIC_I", - "PA_BQ_BASICQUAD_I", - "PA_BQ_ACCESTV_M", - "PI_WHITELIST" - ], - "hasRightIAccess": true, - "hasRightMAccess": true, - "logos": [ - { - "definitionType": "mobileAppli", - "listLogos": [ - { - "size": "183x183", - "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_BBC_world_UMTS%2F20230321_182925%2FmobileAppli%2Flogo_183x183.png" - } - ] - }, - { - "definitionType": "mobileAppliDark", - "listLogos": [ - { - "size": "183x183", - "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_BBC_world_UMTS%2F20230321_182925%2FmobileAppliDark%2Flogo_183x183.png" - } - ] - }, - { - "definitionType": "webTVLogo", - "listLogos": [ - { - "size": "180x96", - "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_BBC_world_UMTS%2F20230321_182925%2FwebTVLogo%2Flogo_180x96.png" - } - ] - }, - { - "definitionType": "webTVSquare", - "listLogos": [ - { - "size": "150x150", - "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_BBC_world_UMTS%2F20230321_182925%2FwebTVSquare%2Flogo_150x150.png" - } - ] - } - ], - "mobileData": { - "wifiForbidden": false, - "wifiSecuredOnly": false, - "everywhereChannel": true, - "nomadismAllowed": true, - "drmLevels": [ - { - "definition": "SD", - "securedTerminal": [ - "DRM-HW", - "DRM-SW" - ], - "unsecuredTerminal": [ - "DRM-HW", - "DRM-SW" - ] - }, - { - "definition": "HD", - "securedTerminal": [ - "ND" - ], - "unsecuredTerminal": [ - "ND" - ] - } - ] - }, - "webdeviceData": { - "nomadismAllowed": true - }, - "technicalChannels": { - "live": [ - { - "techChannelId": "400248", - "type": "CLOUDTV", - "liveTargetURLRelativePath": "livetv_bbcworldnews_ctv", - "usi": 400248, - "isDRMized": true, - "csa5Disabled": true - } - ], - "npvr": [], - "startover": [] - } - }, - { - "name": "AL JAZEERA Anglais", - "editoChannelId": "livetv_al_jazeera_anglais", - "lcn": 238, - "idEPG": 525, - "epgAvailable": true, - "epgTextSubstitution": "", - "displayOrder": 238, - "csaCode": 1, - "slogan": "Setting the news agenda", - "catchupChannelId": "", - "newChannel": false, - "roamingBlocked": true, - "allowedDeviceCategories": [ - "M_ANDROID", - "M_IOS", - "M_TABLET_ANDROID", - "M_TABLET_IOS", - "W_AIRPLAY", - "W_CHROMECAST", - "W_LACLETV2", - "W_SMARTTV", - "W_PC", - "S_STB" - ], - "packages": [ - "PA_BQ_PASSACCESTVPREMIUM_M", - "PA_BQ_BASIC_M", - "PA_BQ_RE_TVMAX_M", - "PA_BQ_ACCESTVPREMIUM_M", - "PA_BQ_PAYG_M", - "PA_BQ_TVDIGITALE_I", - "PA_BQ_SPORT_M", - "PA_BQ_BASIC_I", - "PA_BQ_BASICQUAD_I", - "PA_BQ_ACCESTV_M", - "PI_WHITELIST" - ], - "hasRightIAccess": true, - "hasRightMAccess": true, - "logos": [ - { - "definitionType": "mobileAppli", - "listLogos": [ - { - "size": "183x183", - "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_al_jazeera_anglais%2F20151026_092415%2FmobileAppli%2Flogo_183x183.png" - } - ] - }, - { - "definitionType": "mobileAppliDark", - "listLogos": [ - { - "size": "183x183", - "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_al_jazeera_anglais%2F20151026_092415%2FmobileAppliDark%2Flogo_183x183.png" - } - ] - }, - { - "definitionType": "webTVLogo", - "listLogos": [ - { - "size": "180x96", - "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_al_jazeera_anglais%2F20151026_092415%2FwebTVLogo%2Flogo_180x96.png" - } - ] - }, - { - "definitionType": "webTVSquare", - "listLogos": [ - { - "size": "150x150", - "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_al_jazeera_anglais%2F20151026_092415%2FwebTVSquare%2Flogo_150x150.png" - } - ] - } - ], - "mobileData": { - "wifiForbidden": false, - "wifiSecuredOnly": false, - "everywhereChannel": true, - "nomadismAllowed": true, - "drmLevels": [ - { - "definition": "SD", - "securedTerminal": [ - "DRM-HW", - "DRM-SW" - ], - "unsecuredTerminal": [ - "DRM-HW", - "DRM-SW" - ] - }, - { - "definition": "HD", - "securedTerminal": [ - "ND" - ], - "unsecuredTerminal": [ - "ND" - ] - } - ] - }, - "webdeviceData": { - "nomadismAllowed": true - }, - "technicalChannels": { - "live": [ - { - "techChannelId": "400246", - "type": "CLOUDTV", - "liveTargetURLRelativePath": "livetv_aljazeeraanglais_ctv", - "usi": 400246, - "isDRMized": true, - "csa5Disabled": true - } - ], - "npvr": [], - "startover": [] - } - }, - { - "name": "AFRICA 24", - "editoChannelId": "livetv_africa24", - "lcn": 239, - "idEPG": 90239, - "epgAvailable": false, - "epgTextSubstitution": "", - "displayOrder": 239, - "csaCode": 1, - "slogan": "1ère Chaîne Info sur l'Afrique", - "catchupChannelId": "", - "newChannel": false, - "roamingBlocked": true, - "allowedDeviceCategories": [ - "M_ANDROID", - "M_IOS", - "M_TABLET_ANDROID", - "M_TABLET_IOS", - "W_AIRPLAY", - "W_CHROMECAST", - "W_LACLETV2", - "W_SMARTTV", - "W_PC", - "S_STB" - ], - "packages": [ - "PA_BQ_BASIC_M", - "PA_BQ_RE_TVMAX_M", - "PA_BQ_PAYG_M", - "PA_BQ_TVDIGITALE_I", - "PA_BQ_BASIC_I", - "PA_BQ_BASICQUAD_I", - "PA_BQ_ACCESTV_M", - "PI_WHITELIST" - ], - "hasRightIAccess": true, - "hasRightMAccess": true, - "logos": [ - { - "definitionType": "mobileAppli", - "listLogos": [ - { - "size": "183x183", - "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_africa24%2F20151026_092415%2FmobileAppli%2Flogo_183x183.png" - } - ] - }, - { - "definitionType": "mobileAppliDark", - "listLogos": [ - { - "size": "183x183", - "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_africa24%2F20151026_092415%2FmobileAppliDark%2Flogo_183x183.png" - } - ] - }, - { - "definitionType": "webTVLogo", - "listLogos": [ - { - "size": "180x96", - "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_africa24%2F20151026_092415%2FwebTVLogo%2Flogo_180x96.png" - } - ] - }, - { - "definitionType": "webTVSquare", - "listLogos": [ - { - "size": "150x150", - "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_africa24%2F20151026_092415%2FwebTVSquare%2Flogo_150x150.png" - } - ] - } - ], - "mobileData": { - "wifiForbidden": false, - "wifiSecuredOnly": false, - "everywhereChannel": true, - "nomadismAllowed": true, - "drmLevels": [ - { - "definition": "SD", - "securedTerminal": [ - "DRM-HW", - "DRM-SW" - ], - "unsecuredTerminal": [ - "DRM-HW", - "DRM-SW" - ] - }, - { - "definition": "HD", - "securedTerminal": [ - "ND" - ], - "unsecuredTerminal": [ - "ND" - ] - } - ] - }, - "webdeviceData": { - "nomadismAllowed": true - }, - "technicalChannels": { - "live": [ - { - "techChannelId": "400244", - "type": "CLOUDTV", - "liveTargetURLRelativePath": "livetv_africa24_ctv", - "usi": 400244, - "isDRMized": true, - "csa5Disabled": true - } - ], - "npvr": [], - "startover": [] - } - }, - { - "name": "FRANCE 24 Arabe", - "editoChannelId": "livetv_france24_arabe", - "lcn": 240, - "idEPG": 3413, - "epgAvailable": true, - "epgTextSubstitution": "", - "displayOrder": 240, - "csaCode": 1, - "slogan": "L'actualité internationale 24H/24", - "catchupChannelId": "", - "newChannel": false, - "roamingBlocked": true, - "allowedDeviceCategories": [ - "M_ANDROID", - "M_IOS", - "M_TABLET_ANDROID", - "M_TABLET_IOS", - "W_AIRPLAY", - "W_CHROMECAST", - "W_LACLETV2", - "W_PC", - "W_SMARTTV", - "S_STB" - ], - "packages": [ - "PA_BQ_PASSACCESTVPREMIUM_M", - "PA_BQ_BASIC_M", - "PA_BQ_RE_TVMAX_M", - "PA_BQ_ACCESTVPREMIUM_M", - "PA_BQ_PAYG_M", - "PA_BQ_TVDIGITALE_I", - "PA_BQ_SPORT_M", - "PA_BQ_BASIC_I", - "PA_BQ_BASICQUAD_I", - "PA_BQ_ACCESTV_M", - "PI_WHITELIST" - ], - "hasRightIAccess": true, - "hasRightMAccess": true, - "logos": [ - { - "definitionType": "mobileAppli", - "listLogos": [ - { - "size": "183x183", - "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_france24_arabe%2F20220922_114506%2FmobileAppli%2Flogo_183x183.png" - } - ] - }, - { - "definitionType": "mobileAppliDark", - "listLogos": [ - { - "size": "183x183", - "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_france24_arabe%2F20220922_114506%2FmobileAppliDark%2Flogo_183x183.png" - } - ] - }, - { - "definitionType": "webTVLogo", - "listLogos": [ - { - "size": "180x96", - "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_france24_arabe%2F20220922_114506%2FwebTVLogo%2Flogo_180x96.png" - } - ] - }, - { - "definitionType": "webTVSquare", - "listLogos": [ - { - "size": "150x150", - "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_france24_arabe%2F20220922_114506%2FwebTVSquare%2Flogo_150x150.png" - } - ] - } - ], - "mobileData": { - "wifiForbidden": false, - "wifiSecuredOnly": false, - "everywhereChannel": true, - "nomadismAllowed": true, - "drmLevels": [ - { - "definition": "SD", - "securedTerminal": [ - "DRM-HW", - "DRM-SW" - ], - "unsecuredTerminal": [ - "DRM-HW", - "DRM-SW" - ] - }, - { - "definition": "HD", - "securedTerminal": [ - "ND" - ], - "unsecuredTerminal": [ - "ND" - ] - } - ] - }, - "webdeviceData": { - "nomadismAllowed": true - }, - "technicalChannels": { - "live": [ - { - "techChannelId": "400253", - "type": "CLOUDTV", - "liveTargetURLRelativePath": "livetv_france24arabe_ctv", - "usi": 400253, - "isDRMized": true, - "csa5Disabled": true - } - ], - "npvr": [], - "startover": [] - } - }, - { - "name": "AL JAZEERA Arabic", - "editoChannelId": "livetv_al_jazeera", - "lcn": 241, - "idEPG": 90241, - "epgAvailable": false, - "epgTextSubstitution": "", - "displayOrder": 241, - "csaCode": 1, - "slogan": "La chaîne d'information du Qatar", - "catchupChannelId": "", - "newChannel": false, - "roamingBlocked": true, - "allowedDeviceCategories": [ - "M_ANDROID", - "M_IOS", - "M_TABLET_ANDROID", - "M_TABLET_IOS", - "W_AIRPLAY", - "W_CHROMECAST", - "W_LACLETV2", - "W_SMARTTV", - "W_PC", - "S_STB" - ], - "packages": [ - "PA_BQ_PASSACCESTVPREMIUM_M", - "PA_BQ_BASIC_M", - "PA_BQ_RE_TVMAX_M", - "PA_BQ_ACCESTVPREMIUM_M", - "PA_BQ_PAYG_M", - "PA_BQ_TVDIGITALE_I", - "PA_BQ_SPORT_M", - "PA_BQ_BASIC_I", - "PA_BQ_BASICQUAD_I", - "PA_BQ_ACCESTV_M", - "PI_WHITELIST" - ], - "hasRightIAccess": true, - "hasRightMAccess": true, - "logos": [ - { - "definitionType": "mobileAppli", - "listLogos": [ - { - "size": "183x183", - "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_al_jazeera%2F20151026_092415%2FmobileAppli%2Flogo_183x183.png" - } - ] - }, - { - "definitionType": "mobileAppliDark", - "listLogos": [ - { - "size": "183x183", - "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_al_jazeera%2F20151026_092415%2FmobileAppliDark%2Flogo_183x183.png" - } - ] - }, - { - "definitionType": "webTVLogo", - "listLogos": [ - { - "size": "180x96", - "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_al_jazeera%2F20151026_092415%2FwebTVLogo%2Flogo_180x96.png" - } - ] - }, - { - "definitionType": "webTVSquare", - "listLogos": [ - { - "size": "150x150", - "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_al_jazeera%2F20151026_092415%2FwebTVSquare%2Flogo_150x150.png" - } - ] - } - ], - "mobileData": { - "wifiForbidden": false, - "wifiSecuredOnly": false, - "everywhereChannel": true, - "nomadismAllowed": true, - "drmLevels": [ - { - "definition": "SD", - "securedTerminal": [ - "DRM-HW", - "DRM-SW" - ], - "unsecuredTerminal": [ - "DRM-HW", - "DRM-SW" - ] - }, - { - "definition": "HD", - "securedTerminal": [ - "ND" - ], - "unsecuredTerminal": [ - "ND" - ] - } - ] - }, - "webdeviceData": { - "nomadismAllowed": true - }, - "technicalChannels": { - "live": [ - { - "techChannelId": "400247", - "type": "CLOUDTV", - "liveTargetURLRelativePath": "livetv_aljazeeraarabe_ctv", - "usi": 400247, - "isDRMized": true, - "csa5Disabled": true - } - ], - "npvr": [], - "startover": [] - } - }, - { - "name": "MEDI 1 TV", - "editoChannelId": "livetv_medi1tv", - "lcn": 242, - "idEPG": 90242, - "epgAvailable": false, - "epgTextSubstitution": "", - "displayOrder": 242, - "csaCode": 1, - "slogan": "Un nouveau regard sur l’information", - "catchupChannelId": "", - "newChannel": false, - "roamingBlocked": true, - "allowedDeviceCategories": [ - "M_ANDROID", - "M_IOS", - "M_TABLET_ANDROID", - "M_TABLET_IOS", - "W_AIRPLAY", - "W_CHROMECAST", - "W_LACLETV2", - "W_SMARTTV", - "W_PC", - "S_STB" - ], - "packages": [ - "PA_BQ_BASIC_M", - "PA_BQ_ACCESTVPREMIUM_M", - "PA_BQ_TVDIGITALE_I", - "PA_BQ_BASIC_I", - "PA_BQ_BASICQUAD_I", - "PA_BQ_ACCESTV_M", - "PI_WHITELIST" - ], - "hasRightIAccess": true, - "hasRightMAccess": true, - "logos": [ - { - "definitionType": "mobileAppli", - "listLogos": [ - { - "size": "183x183", - "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_medi1tv%2F20170314_120000%2FmobileAppli%2Flogo_183x183.png" - } - ] - }, - { - "definitionType": "mobileAppliDark", - "listLogos": [ - { - "size": "183x183", - "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_medi1tv%2F20170314_120000%2FmobileAppliDark%2Flogo_183x183.png" - } - ] - }, - { - "definitionType": "webTVLogo", - "listLogos": [ - { - "size": "180x96", - "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_medi1tv%2F20170314_120000%2FwebTVLogo%2Flogo_180x96.png" - } - ] - }, - { - "definitionType": "webTVSquare", - "listLogos": [ - { - "size": "150x150", - "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_medi1tv%2F20170314_120000%2FwebTVSquare%2Flogo_150x150.png" - } - ] - } - ], - "mobileData": { - "wifiForbidden": false, - "wifiSecuredOnly": false, - "everywhereChannel": true, - "nomadismAllowed": true, - "drmLevels": [ - { - "definition": "SD", - "securedTerminal": [ - "DRM-HW", - "DRM-SW" - ], - "unsecuredTerminal": [ - "DRM-HW", - "DRM-SW" - ] - }, - { - "definition": "HD", - "securedTerminal": [ - "ND" - ], - "unsecuredTerminal": [ - "ND" - ] - } - ] - }, - "webdeviceData": { - "nomadismAllowed": true - }, - "technicalChannels": { - "live": [ - { - "techChannelId": "400255", - "type": "CLOUDTV", - "liveTargetURLRelativePath": "livetv_medi1tv_ctv", - "usi": 400255, - "isDRMized": true, - "csa5Disabled": true - } - ], - "npvr": [], - "startover": [] - } - }, - { - "name": "I24NEWS", - "editoChannelId": "livetv_i24news", - "lcn": 243, - "idEPG": 781, - "epgAvailable": true, - "epgTextSubstitution": "", - "displayOrder": 243, - "csaCode": 1, - "slogan": "Voir plus loin", - "catchupChannelId": "", - "newChannel": false, - "roamingBlocked": true, - "allowedDeviceCategories": [ - "M_ANDROID", - "M_IOS", - "M_TABLET_ANDROID", - "M_TABLET_IOS", - "W_AIRPLAY", - "W_CHROMECAST", - "W_LACLETV2", - "W_SMARTTV", - "W_PC", - "S_STB" - ], - "packages": [ - "PA_BQ_BASIC_M", - "PA_BQ_RE_TVMAX_M", - "PA_BQ_PAYG_M", - "PA_BQ_TVDIGITALE_I", - "PA_BQ_BASIC_I", - "PA_BQ_BASICQUAD_I", - "PA_BQ_ACCESTV_M", - "PI_WHITELIST" - ], - "hasRightIAccess": true, - "hasRightMAccess": true, - "logos": [ - { - "definitionType": "mobileAppli", - "listLogos": [ - { - "size": "183x183", - "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_i24news%2F20151026_092415%2FmobileAppli%2Flogo_183x183.png" - } - ] - }, - { - "definitionType": "mobileAppliDark", - "listLogos": [ - { - "size": "183x183", - "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_i24news%2F20151026_092415%2FmobileAppliDark%2Flogo_183x183.png" - } - ] - }, - { - "definitionType": "webTVLogo", - "listLogos": [ - { - "size": "180x96", - "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_i24news%2F20151026_092415%2FwebTVLogo%2Flogo_180x96.png" - } - ] - }, - { - "definitionType": "webTVSquare", - "listLogos": [ - { - "size": "150x150", - "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_i24news%2F20151026_092415%2FwebTVSquare%2Flogo_150x150.png" - } - ] - } - ], - "mobileData": { - "wifiForbidden": false, - "wifiSecuredOnly": false, - "everywhereChannel": true, - "nomadismAllowed": true, - "drmLevels": [ - { - "definition": "SD", - "securedTerminal": [ - "DRM-HW", - "DRM-SW" - ], - "unsecuredTerminal": [ - "DRM-HW", - "DRM-SW" - ] - }, - { - "definition": "HD", - "securedTerminal": [ - "ND" - ], - "unsecuredTerminal": [ - "ND" - ] - } - ] - }, - "webdeviceData": { - "nomadismAllowed": true - }, - "technicalChannels": { - "live": [ - { - "techChannelId": "400148", - "type": "CLOUDTV", - "liveTargetURLRelativePath": "livetv_i24news_ctv", - "usi": 400148, - "isDRMized": true, - "csa5Disabled": true - } - ], - "npvr": [ - { - "externalId": "livetv_i24news_ctv", - "techChannelId": "400148", - "type": "CLOUDTV", - "usi": 400148, - "isDRMized": true, - "antiAdskipping": "DEACTIVATED", - "csa5Disabled": true - } - ], - "startover": [] - } - }, - { - "name": "NHK WORLD - JAPAN", - "editoChannelId": "livetv_nhkworld", - "lcn": 244, - "idEPG": 830, - "epgAvailable": true, - "epgTextSubstitution": "", - "displayOrder": 244, - "csaCode": 1, - "slogan": "Un regard sur l'Asie", - "catchupChannelId": "", - "newChannel": false, - "roamingBlocked": true, - "allowedDeviceCategories": [ - "M_ANDROID", - "M_IOS", - "M_TABLET_ANDROID", - "M_TABLET_IOS", - "W_AIRPLAY", - "W_CHROMECAST", - "W_LACLETV2", - "W_PC", - "W_SMARTTV", - "S_STB" - ], - "packages": [ - "PA_BQ_PASSACCESTVPREMIUM_M", - "PA_BQ_BASIC_M", - "PA_BQ_RE_TVMAX_M", - "PA_BQ_ACCESTVPREMIUM_M", - "PA_BQ_PAYG_M", - "PA_BQ_TVDIGITALE_I", - "PA_BQ_SPORT_M", - "PA_BQ_BASIC_I", - "PA_BQ_BASICQUAD_I", - "PA_BQ_ACCESTV_M", - "PI_WHITELIST" - ], - "hasRightIAccess": true, - "hasRightMAccess": true, - "logos": [ - { - "definitionType": "mobileAppli", - "listLogos": [ - { - "size": "183x183", - "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_nhkworld%2F20230109_175836%2FmobileAppli%2Flogo_183x183.png" - } - ] - }, - { - "definitionType": "mobileAppliDark", - "listLogos": [ - { - "size": "183x183", - "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_nhkworld%2F20230109_175836%2FmobileAppliDark%2Flogo_183x183.png" - } - ] - }, - { - "definitionType": "webTVLogo", - "listLogos": [ - { - "size": "180x96", - "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_nhkworld%2F20230109_175836%2FwebTVLogo%2Flogo_180x96.png" - } - ] - }, - { - "definitionType": "webTVSquare", - "listLogos": [ - { - "size": "150x150", - "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_nhkworld%2F20230109_175836%2FwebTVSquare%2Flogo_150x150.png" - } - ] - } - ], - "mobileData": { - "wifiForbidden": false, - "wifiSecuredOnly": false, - "everywhereChannel": true, - "nomadismAllowed": true, - "drmLevels": [ - { - "definition": "SD", - "securedTerminal": [ - "DRM-HW", - "DRM-SW" - ], - "unsecuredTerminal": [ - "DRM-HW", - "DRM-SW" - ] - }, - { - "definition": "HD", - "securedTerminal": [ - "ND" - ], - "unsecuredTerminal": [ - "ND" - ] - } - ] - }, - "webdeviceData": { - "nomadismAllowed": true - }, - "technicalChannels": { - "live": [ - { - "techChannelId": "400264", - "type": "CLOUDTV", - "liveTargetURLRelativePath": "livetv_nhkworld_ctv", - "usi": 400264, - "isDRMized": true, - "csa5Disabled": true - } - ], - "npvr": [], - "startover": [] - } - }, - { - "name": "DEUTSCHE WELLE", - "editoChannelId": "livetv_deutschewelle", - "lcn": 245, - "idEPG": 61, - "epgAvailable": true, - "epgTextSubstitution": "", - "displayOrder": 245, - "csaCode": 1, - "slogan": "Made for minds", - "catchupChannelId": "", - "newChannel": true, - "roamingBlocked": true, - "allowedDeviceCategories": [ - "M_ANDROID", - "M_IOS", - "M_TABLET_ANDROID", - "M_TABLET_IOS", - "W_AIRPLAY", - "W_CHROMECAST", - "W_LACLETV2", - "W_PC", - "W_SMARTTV", - "S_STB" - ], - "packages": [ - "PA_BQ_BASIC_M", - "PA_BQ_TVDIGITALE_I", - "PA_BQ_BASIC_I", - "PA_BQ_BASICQUAD_I", - "PI_WHITELIST" - ], - "hasRightIAccess": true, - "hasRightMAccess": true, - "logos": [ - { - "definitionType": "mobileAppli", - "listLogos": [ - { - "size": "183x183", - "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_deutschewelle%2F20220615_153218%2FmobileAppli%2Flogo_183x183.png" - } - ] - }, - { - "definitionType": "mobileAppliDark", - "listLogos": [ - { - "size": "183x183", - "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_deutschewelle%2F20220615_153218%2FmobileAppliDark%2Flogo_183x183.png" - } - ] - }, - { - "definitionType": "webTVLogo", - "listLogos": [ - { - "size": "180x96", - "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_deutschewelle%2F20220615_153218%2FwebTVLogo%2Flogo_180x96.png" - } - ] - }, - { - "definitionType": "webTVSquare", - "listLogos": [ - { - "size": "150x150", - "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_deutschewelle%2F20220615_153218%2FwebTVSquare%2Flogo_150x150.png" - } - ] - } - ], - "mobileData": { - "wifiForbidden": false, - "wifiSecuredOnly": false, - "everywhereChannel": true, - "nomadismAllowed": true, - "drmLevels": [ - { - "definition": "SD", - "securedTerminal": [ - "DRM-HW", - "DRM-SW" - ], - "unsecuredTerminal": [ - "DRM-HW", - "DRM-SW" - ] - }, - { - "definition": "HD", - "securedTerminal": [ - "DRM-HW", - "DRM-SW" - ], - "unsecuredTerminal": [ - "DRM-HW", - "DRM-SW" - ] - } - ] - }, - "webdeviceData": { - "nomadismAllowed": true - }, - "technicalChannels": { - "live": [ - { - "techChannelId": "400182", - "type": "CLOUDTV", - "liveTargetURLRelativePath": "livetv_deutsche_welle_english_ctv", - "usi": 400182, - "isDRMized": true, - "csa5Disabled": true - } - ], - "npvr": [ - { - "externalId": "livetv_deutsche_welle_english_ctv", - "techChannelId": "400182", - "type": "CLOUDTV", - "usi": 400182, - "isDRMized": true, - "antiAdskipping": "DEACTIVATED", - "csa5Disabled": true - } - ], - "startover": [] - } - }, - { - "name": "TRT WORLD", - "editoChannelId": "livetv_trtworld", - "lcn": 246, - "idEPG": 90246, - "epgAvailable": false, - "epgTextSubstitution": "", - "displayOrder": 246, - "csaCode": 1, - "slogan": "Where news inspires change", - "catchupChannelId": "", - "newChannel": true, - "roamingBlocked": true, - "allowedDeviceCategories": [ - "M_ANDROID", - "M_IOS", - "M_TABLET_ANDROID", - "M_TABLET_IOS", - "W_AIRPLAY", - "W_CHROMECAST", - "W_LACLETV2", - "W_SMARTTV", - "W_PC", - "S_STB" - ], - "packages": [ - "PA_BQ_PASSACCESTVPREMIUM_M", - "PA_BQ_BASIC_M", - "PA_BQ_RE_TVMAX_M", - "PA_BQ_ACCESTVPREMIUM_M", - "PA_BQ_TVDIGITALE_I", - "PA_BQ_SPORT_M", - "PA_BQ_BASIC_I", - "PA_BQ_BASICQUAD_I", - "PA_BQ_ACCESTV_M", - "PI_WHITELIST" - ], - "hasRightIAccess": true, - "hasRightMAccess": true, - "logos": [ - { - "definitionType": "mobileAppli", - "listLogos": [ - { - "size": "183x183", - "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_trtworld%2F20190701_094947%2FmobileAppli%2Flogo_183x183.png" - } - ] - }, - { - "definitionType": "mobileAppliDark", - "listLogos": [ - { - "size": "183x183", - "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_trtworld%2F20190701_094947%2FmobileAppliDark%2Flogo_183x183.png" - } - ] - }, - { - "definitionType": "webTVLogo", - "listLogos": [ - { - "size": "180x96", - "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_trtworld%2F20190701_094947%2FwebTVLogo%2Flogo_180x96.png" - } - ] - }, - { - "definitionType": "webTVSquare", - "listLogos": [ - { - "size": "150x150", - "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_trtworld%2F20190701_094947%2FwebTVSquare%2Flogo_150x150.png" - } - ] - } - ], - "mobileData": { - "wifiForbidden": false, - "wifiSecuredOnly": false, - "everywhereChannel": true, - "nomadismAllowed": true, - "drmLevels": [ - { - "definition": "SD", - "securedTerminal": [ - "DRM-HW", - "DRM-SW" - ], - "unsecuredTerminal": [ - "DRM-HW", - "DRM-SW" - ] - }, - { - "definition": "HD", - "securedTerminal": [ - "ND" - ], - "unsecuredTerminal": [ - "ND" - ] - } - ] - }, - "webdeviceData": { - "nomadismAllowed": true - }, - "technicalChannels": { - "live": [ - { - "techChannelId": "400262", - "type": "CLOUDTV", - "liveTargetURLRelativePath": "livetv_trtworld_ctv", - "usi": 400262, - "isDRMized": true, - "csa5Disabled": true - } - ], - "npvr": [], - "startover": [] - } - }, - { - "name": "FRANCE 24 Espagnol", - "editoChannelId": "livetv_france24_espagnol", - "lcn": 247, - "idEPG": 3562, - "epgAvailable": true, - "epgTextSubstitution": "", - "displayOrder": 247, - "csaCode": 1, - "slogan": "L'actualité internationale 24H/24", - "catchupChannelId": "", - "newChannel": true, - "roamingBlocked": false, - "allowedDeviceCategories": [ - "M_ANDROID", - "M_IOS", - "M_TABLET_ANDROID", - "M_TABLET_IOS", - "W_AIRPLAY", - "W_CHROMECAST", - "W_LACLETV2", - "W_PC", - "W_SMARTTV", - "S_STB" - ], - "packages": [ - "PA_BQ_BASIC_M", - "PA_BQ_TVDIGITALE_I", - "PA_BQ_BASIC_I", - "PA_BQ_BASICQUAD_I", - "PI_WHITELIST" - ], - "hasRightIAccess": true, - "hasRightMAccess": true, - "logos": [ - { - "definitionType": "mobileAppli", - "listLogos": [ - { - "size": "183x183", - "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_france24_espagnol%2F20220922_114506%2FmobileAppli%2Flogo_183x183.png" - } - ] - }, - { - "definitionType": "mobileAppliDark", - "listLogos": [ - { - "size": "183x183", - "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_france24_espagnol%2F20220922_114506%2FmobileAppliDark%2Flogo_183x183.png" - } - ] - }, - { - "definitionType": "webTVLogo", - "listLogos": [ - { - "size": "180x96", - "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_france24_espagnol%2F20220922_114506%2FwebTVLogo%2Flogo_180x96.png" - } - ] - }, - { - "definitionType": "webTVSquare", - "listLogos": [ - { - "size": "150x150", - "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_france24_espagnol%2F20220922_114506%2FwebTVSquare%2Flogo_150x150.png" - } - ] - } - ], - "mobileData": { - "wifiForbidden": false, - "wifiSecuredOnly": false, - "everywhereChannel": true, - "nomadismAllowed": true, - "drmLevels": [ - { - "definition": "SD", - "securedTerminal": [ - "DRM-HW", - "DRM-SW" - ], - "unsecuredTerminal": [ - "DRM-HW", - "DRM-SW" - ] - }, - { - "definition": "HD", - "securedTerminal": [ - "DRM-HW", - "DRM-SW" - ], - "unsecuredTerminal": [ - "NO-DRM" - ] - } - ] - }, - "webdeviceData": { - "nomadismAllowed": true - }, - "technicalChannels": { - "live": [ - { - "techChannelId": "400238", - "type": "CLOUDTV", - "liveTargetURLRelativePath": "livetv_france_24_espagnol_ctv", - "usi": 400238, - "isDRMized": true, - "csa5Disabled": true - } - ], - "npvr": [], - "startover": [] - } - }, - { - "name": "FRANCE 3 ALPES", - "editoChannelId": "livetv_france3alpes", - "lcn": 301, - "idEPG": 1921, - "epgAvailable": true, - "epgTextSubstitution": "", - "displayOrder": 301, - "csaCode": 1, - "slogan": "Nos régions nous inspirent, nos régions vou", - "catchupChannelId": "", - "newChannel": false, - "roamingBlocked": true, - "allowedDeviceCategories": [ - "M_ANDROID", - "M_IOS", - "M_TABLET_ANDROID", - "M_TABLET_IOS", - "W_AIRPLAY", - "W_CHROMECAST", - "W_LACLETV2", - "W_SMARTTV", - "W_PC", - "S_STB" - ], - "packages": [ - "PA_BQ_BASIC_M", - "PA_BQ_ACCESTVPREMIUM_M", - "PA_BQ_TVDIGITALE_I", - "PA_BQ_BASIC_I", - "PA_BQ_BASICQUAD_I", - "PI_WHITELIST" - ], - "hasRightIAccess": true, - "hasRightMAccess": true, - "logos": [ - { - "definitionType": "mobileAppli", - "listLogos": [ - { - "size": "183x183", - "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_france3alpes%2F20181002_122427%2FmobileAppli%2Flogo_183x183.png" - } - ] - }, - { - "definitionType": "mobileAppliDark", - "listLogos": [ - { - "size": "183x183", - "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_france3alpes%2F20181002_122427%2FmobileAppliDark%2Flogo_183x183.png" - } - ] - }, - { - "definitionType": "webTVLogo", - "listLogos": [ - { - "size": "180x96", - "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_france3alpes%2F20181002_122427%2FwebTVLogo%2Flogo_180x96.png" - } - ] - }, - { - "definitionType": "webTVSquare", - "listLogos": [ - { - "size": "150x150", - "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_france3alpes%2F20181002_122427%2FwebTVSquare%2Flogo_150x150.png" - } - ] - } - ], - "mobileData": { - "wifiForbidden": false, - "wifiSecuredOnly": false, - "everywhereChannel": true, - "nomadismAllowed": true, - "drmLevels": [ - { - "definition": "SD", - "securedTerminal": [ - "DRM-HW", - "DRM-SW" - ], - "unsecuredTerminal": [ - "DRM-HW", - "DRM-SW" - ] - }, - { - "definition": "HD", - "securedTerminal": [ - "ND" - ], - "unsecuredTerminal": [ - "ND" - ] - } - ] - }, - "webdeviceData": { - "nomadismAllowed": true - }, - "technicalChannels": { - "live": [ - { - "techChannelId": "400047", - "type": "CLOUDTV", - "liveTargetURLRelativePath": "livetv_f3_alpes_ctv", - "usi": 400047, - "isDRMized": true, - "csa5Disabled": true - } - ], - "npvr": [ - { - "externalId": "livetv_f3_alpes_ctv", - "techChannelId": "400047", - "type": "CLOUDTV", - "usi": 400047, - "isDRMized": true, - "antiAdskipping": "DEACTIVATED", - "csa5Disabled": true - } - ], - "startover": [] - } - }, - { - "name": "FRANCE 3 ALSACE", - "editoChannelId": "livetv_france3alsace", - "lcn": 302, - "idEPG": 1922, - "epgAvailable": true, - "epgTextSubstitution": "", - "displayOrder": 302, - "csaCode": 1, - "slogan": "Nos régions nous inspirent, nos régions vou", - "catchupChannelId": "", - "newChannel": false, - "roamingBlocked": true, - "allowedDeviceCategories": [ - "M_ANDROID", - "M_IOS", - "M_TABLET_ANDROID", - "M_TABLET_IOS", - "W_AIRPLAY", - "W_CHROMECAST", - "W_LACLETV2", - "W_SMARTTV", - "W_PC", - "S_STB" - ], - "packages": [ - "PA_BQ_BASIC_M", - "PA_BQ_ACCESTVPREMIUM_M", - "PA_BQ_TVDIGITALE_I", - "PA_BQ_BASIC_I", - "PA_BQ_BASICQUAD_I", - "PI_WHITELIST" - ], - "hasRightIAccess": true, - "hasRightMAccess": true, - "logos": [ - { - "definitionType": "mobileAppli", - "listLogos": [ - { - "size": "183x183", - "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_france3alsace%2F20181002_122933%2FmobileAppli%2Flogo_183x183.png" - } - ] - }, - { - "definitionType": "mobileAppliDark", - "listLogos": [ - { - "size": "183x183", - "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_france3alsace%2F20181002_122933%2FmobileAppliDark%2Flogo_183x183.png" - } - ] - }, - { - "definitionType": "webTVLogo", - "listLogos": [ - { - "size": "180x96", - "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_france3alsace%2F20181002_122933%2FwebTVLogo%2Flogo_180x96.png" - } - ] - }, - { - "definitionType": "webTVSquare", - "listLogos": [ - { - "size": "150x150", - "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_france3alsace%2F20181002_122933%2FwebTVSquare%2Flogo_150x150.png" - } - ] - } - ], - "mobileData": { - "wifiForbidden": false, - "wifiSecuredOnly": false, - "everywhereChannel": true, - "nomadismAllowed": true, - "drmLevels": [ - { - "definition": "SD", - "securedTerminal": [ - "DRM-HW", - "DRM-SW" - ], - "unsecuredTerminal": [ - "DRM-HW", - "DRM-SW" - ] - }, - { - "definition": "HD", - "securedTerminal": [ - "ND" - ], - "unsecuredTerminal": [ - "ND" - ] - } - ] - }, - "webdeviceData": { - "nomadismAllowed": true - }, - "technicalChannels": { - "live": [ - { - "techChannelId": "400048", - "type": "CLOUDTV", - "liveTargetURLRelativePath": "livetv_f3_alsace_ctv", - "usi": 400048, - "isDRMized": true, - "csa5Disabled": true - } - ], - "npvr": [ - { - "externalId": "livetv_f3_alsace_ctv", - "techChannelId": "400048", - "type": "CLOUDTV", - "usi": 400048, - "isDRMized": true, - "antiAdskipping": "DEACTIVATED", - "csa5Disabled": true - } - ], - "startover": [] - } - }, - { - "name": "FRANCE 3 AQUITAINE", - "editoChannelId": "livetv_france3aquitaine", - "lcn": 303, - "idEPG": 1923, - "epgAvailable": true, - "epgTextSubstitution": "", - "displayOrder": 303, - "csaCode": 1, - "slogan": "Nos régions nous inspirent, nos régions vou", - "catchupChannelId": "", - "newChannel": false, - "roamingBlocked": true, - "allowedDeviceCategories": [ - "M_ANDROID", - "M_IOS", - "M_TABLET_ANDROID", - "M_TABLET_IOS", - "W_AIRPLAY", - "W_CHROMECAST", - "W_LACLETV2", - "W_SMARTTV", - "W_PC", - "S_STB" - ], - "packages": [ - "PA_BQ_BASIC_M", - "PA_BQ_ACCESTVPREMIUM_M", - "PA_BQ_TVDIGITALE_I", - "PA_BQ_BASIC_I", - "PA_BQ_BASICQUAD_I", - "PI_WHITELIST" - ], - "hasRightIAccess": true, - "hasRightMAccess": true, - "logos": [ - { - "definitionType": "mobileAppli", - "listLogos": [ - { - "size": "183x183", - "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_france3aquitaine%2F20190730_095136%2FmobileAppli%2Flogo_183x183.png" - } - ] - }, - { - "definitionType": "mobileAppliDark", - "listLogos": [ - { - "size": "183x183", - "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_france3aquitaine%2F20190730_095136%2FmobileAppliDark%2Flogo_183x183.png" - } - ] - }, - { - "definitionType": "webTVLogo", - "listLogos": [ - { - "size": "180x96", - "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_france3aquitaine%2F20190730_095136%2FwebTVLogo%2Flogo_180x96.png" - } - ] - }, - { - "definitionType": "webTVSquare", - "listLogos": [ - { - "size": "150x150", - "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_france3aquitaine%2F20190730_095136%2FwebTVSquare%2Flogo_150x150.png" - } - ] - } - ], - "mobileData": { - "wifiForbidden": false, - "wifiSecuredOnly": false, - "everywhereChannel": true, - "nomadismAllowed": true, - "drmLevels": [ - { - "definition": "SD", - "securedTerminal": [ - "DRM-HW", - "DRM-SW" - ], - "unsecuredTerminal": [ - "DRM-HW", - "DRM-SW" - ] - }, - { - "definition": "HD", - "securedTerminal": [ - "ND" - ], - "unsecuredTerminal": [ - "ND" - ] - } - ] - }, - "webdeviceData": { - "nomadismAllowed": true - }, - "technicalChannels": { - "live": [ - { - "techChannelId": "400049", - "type": "CLOUDTV", - "liveTargetURLRelativePath": "livetv_f3_aquitaine_ctv", - "usi": 400049, - "isDRMized": true, - "csa5Disabled": true - } - ], - "npvr": [ - { - "externalId": "livetv_f3_aquitaine_ctv", - "techChannelId": "400049", - "type": "CLOUDTV", - "usi": 400049, - "isDRMized": true, - "antiAdskipping": "DEACTIVATED", - "csa5Disabled": true - } - ], - "startover": [] - } - }, - { - "name": "FRANCE 3 AUVERGNE", - "editoChannelId": "livetv_france3auvergne", - "lcn": 304, - "idEPG": 1924, - "epgAvailable": true, - "epgTextSubstitution": "", - "displayOrder": 304, - "csaCode": 1, - "slogan": "Nos régions nous inspirent, nos régions vou", - "catchupChannelId": "", - "newChannel": false, - "roamingBlocked": true, - "allowedDeviceCategories": [ - "M_ANDROID", - "M_IOS", - "M_TABLET_ANDROID", - "M_TABLET_IOS", - "W_AIRPLAY", - "W_CHROMECAST", - "W_LACLETV2", - "W_SMARTTV", - "W_PC", - "S_STB" - ], - "packages": [ - "PA_BQ_BASIC_M", - "PA_BQ_ACCESTVPREMIUM_M", - "PA_BQ_TVDIGITALE_I", - "PA_BQ_BASIC_I", - "PA_BQ_BASICQUAD_I", - "PI_WHITELIST" - ], - "hasRightIAccess": true, - "hasRightMAccess": true, - "logos": [ - { - "definitionType": "mobileAppli", - "listLogos": [ - { - "size": "183x183", - "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_france3auvergne%2F20181002_122951%2FmobileAppli%2Flogo_183x183.png" - } - ] - }, - { - "definitionType": "mobileAppliDark", - "listLogos": [ - { - "size": "183x183", - "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_france3auvergne%2F20181002_122951%2FmobileAppliDark%2Flogo_183x183.png" - } - ] - }, - { - "definitionType": "webTVLogo", - "listLogos": [ - { - "size": "180x96", - "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_france3auvergne%2F20181002_122951%2FwebTVLogo%2Flogo_180x96.png" - } - ] - }, - { - "definitionType": "webTVSquare", - "listLogos": [ - { - "size": "150x150", - "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_france3auvergne%2F20181002_122951%2FwebTVSquare%2Flogo_150x150.png" - } - ] - } - ], - "mobileData": { - "wifiForbidden": false, - "wifiSecuredOnly": false, - "everywhereChannel": true, - "nomadismAllowed": true, - "drmLevels": [ - { - "definition": "SD", - "securedTerminal": [ - "DRM-HW", - "DRM-SW" - ], - "unsecuredTerminal": [ - "DRM-HW", - "DRM-SW" - ] - }, - { - "definition": "HD", - "securedTerminal": [ - "ND" - ], - "unsecuredTerminal": [ - "ND" - ] - } - ] - }, - "webdeviceData": { - "nomadismAllowed": true - }, - "technicalChannels": { - "live": [ - { - "techChannelId": "400050", - "type": "CLOUDTV", - "liveTargetURLRelativePath": "livetv_f3_auvergne_ctv", - "usi": 400050, - "isDRMized": true, - "csa5Disabled": true - } - ], - "npvr": [ - { - "externalId": "livetv_f3_auvergne_ctv", - "techChannelId": "400050", - "type": "CLOUDTV", - "usi": 400050, - "isDRMized": true, - "antiAdskipping": "DEACTIVATED", - "csa5Disabled": true - } - ], - "startover": [] - } - }, - { - "name": "FRANCE 3 NORMANDIE CAEN", - "editoChannelId": "livetv_france3bnormandie", - "lcn": 305, - "idEPG": 1925, - "epgAvailable": true, - "epgTextSubstitution": "", - "displayOrder": 305, - "csaCode": 1, - "slogan": "Nos régions nous inspirent, nos régions vou", - "catchupChannelId": "", - "newChannel": false, - "roamingBlocked": true, - "allowedDeviceCategories": [ - "M_ANDROID", - "M_IOS", - "M_TABLET_ANDROID", - "M_TABLET_IOS", - "W_AIRPLAY", - "W_CHROMECAST", - "W_LACLETV2", - "W_SMARTTV", - "W_PC", - "S_STB" - ], - "packages": [ - "PA_BQ_BASIC_M", - "PA_BQ_ACCESTVPREMIUM_M", - "PA_BQ_TVDIGITALE_I", - "PA_BQ_BASIC_I", - "PA_BQ_BASICQUAD_I", - "PI_WHITELIST" - ], - "hasRightIAccess": true, - "hasRightMAccess": true, - "logos": [ - { - "definitionType": "mobileAppli", - "listLogos": [ - { - "size": "183x183", - "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_france3bnormandie%2F20200211_091906%2FmobileAppli%2Flogo_183x183.png" - } - ] - }, - { - "definitionType": "mobileAppliDark", - "listLogos": [ - { - "size": "183x183", - "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_france3bnormandie%2F20200211_091906%2FmobileAppliDark%2Flogo_183x183.png" - } - ] - }, - { - "definitionType": "webTVLogo", - "listLogos": [ - { - "size": "180x96", - "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_france3bnormandie%2F20200211_091906%2FwebTVLogo%2Flogo_180x96.png" - } - ] - }, - { - "definitionType": "webTVSquare", - "listLogos": [ - { - "size": "150x150", - "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_france3bnormandie%2F20200211_091906%2FwebTVSquare%2Flogo_150x150.png" - } - ] - } - ], - "mobileData": { - "wifiForbidden": false, - "wifiSecuredOnly": false, - "everywhereChannel": true, - "nomadismAllowed": true, - "drmLevels": [ - { - "definition": "SD", - "securedTerminal": [ - "DRM-HW", - "DRM-SW" - ], - "unsecuredTerminal": [ - "DRM-HW", - "DRM-SW" - ] - }, - { - "definition": "HD", - "securedTerminal": [ - "ND" - ], - "unsecuredTerminal": [ - "ND" - ] - } - ] - }, - "webdeviceData": { - "nomadismAllowed": true - }, - "technicalChannels": { - "live": [ - { - "techChannelId": "400051", - "type": "CLOUDTV", - "liveTargetURLRelativePath": "livetv_f3_basse_normandie_ctv", - "usi": 400051, - "isDRMized": true, - "csa5Disabled": true - } - ], - "npvr": [ - { - "externalId": "livetv_f3_basse_normandie_ctv", - "techChannelId": "400051", - "type": "CLOUDTV", - "usi": 400051, - "isDRMized": true, - "antiAdskipping": "DEACTIVATED", - "csa5Disabled": true - } - ], - "startover": [] - } - }, - { - "name": "FRANCE 3 BOURGOGNE", - "editoChannelId": "livetv_france3bourgogne", - "lcn": 306, - "idEPG": 1926, - "epgAvailable": true, - "epgTextSubstitution": "", - "displayOrder": 306, - "csaCode": 1, - "slogan": "Nos régions nous inspirent, nos régions vou", - "catchupChannelId": "", - "newChannel": false, - "roamingBlocked": true, - "allowedDeviceCategories": [ - "M_ANDROID", - "M_IOS", - "M_TABLET_ANDROID", - "M_TABLET_IOS", - "W_AIRPLAY", - "W_CHROMECAST", - "W_LACLETV2", - "W_SMARTTV", - "W_PC", - "S_STB" - ], - "packages": [ - "PA_BQ_BASIC_M", - "PA_BQ_ACCESTVPREMIUM_M", - "PA_BQ_TVDIGITALE_I", - "PA_BQ_BASIC_I", - "PA_BQ_BASICQUAD_I", - "PI_WHITELIST" - ], - "hasRightIAccess": true, - "hasRightMAccess": true, - "logos": [ - { - "definitionType": "mobileAppli", - "listLogos": [ - { - "size": "183x183", - "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_france3bourgogne%2F20190730_095136%2FmobileAppli%2Flogo_183x183.png" - } - ] - }, - { - "definitionType": "mobileAppliDark", - "listLogos": [ - { - "size": "183x183", - "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_france3bourgogne%2F20190730_095136%2FmobileAppliDark%2Flogo_183x183.png" - } - ] - }, - { - "definitionType": "webTVLogo", - "listLogos": [ - { - "size": "180x96", - "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_france3bourgogne%2F20190730_095136%2FwebTVLogo%2Flogo_180x96.png" - } - ] - }, - { - "definitionType": "webTVSquare", - "listLogos": [ - { - "size": "150x150", - "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_france3bourgogne%2F20190730_095136%2FwebTVSquare%2Flogo_150x150.png" - } - ] - } - ], - "mobileData": { - "wifiForbidden": false, - "wifiSecuredOnly": false, - "everywhereChannel": true, - "nomadismAllowed": true, - "drmLevels": [ - { - "definition": "SD", - "securedTerminal": [ - "DRM-HW", - "DRM-SW" - ], - "unsecuredTerminal": [ - "DRM-HW", - "DRM-SW" - ] - }, - { - "definition": "HD", - "securedTerminal": [ - "ND" - ], - "unsecuredTerminal": [ - "ND" - ] - } - ] - }, - "webdeviceData": { - "nomadismAllowed": true - }, - "technicalChannels": { - "live": [ - { - "techChannelId": "400052", - "type": "CLOUDTV", - "liveTargetURLRelativePath": "livetv_f3_bourgogne_ctv", - "usi": 400052, - "isDRMized": true, - "csa5Disabled": true - } - ], - "npvr": [ - { - "externalId": "livetv_f3_bourgogne_ctv", - "techChannelId": "400052", - "type": "CLOUDTV", - "usi": 400052, - "isDRMized": true, - "antiAdskipping": "DEACTIVATED", - "csa5Disabled": true - } - ], - "startover": [] - } - }, - { - "name": "FRANCE 3 BRETAGNE", - "editoChannelId": "livetv_france3bretagne", - "lcn": 307, - "idEPG": 1927, - "epgAvailable": true, - "epgTextSubstitution": "", - "displayOrder": 307, - "csaCode": 1, - "slogan": "Nos régions nous inspirent, nos régions vou", - "catchupChannelId": "", - "newChannel": false, - "roamingBlocked": true, - "allowedDeviceCategories": [ - "M_ANDROID", - "M_IOS", - "M_TABLET_ANDROID", - "M_TABLET_IOS", - "W_AIRPLAY", - "W_CHROMECAST", - "W_LACLETV2", - "W_SMARTTV", - "W_PC", - "S_STB" - ], - "packages": [ - "PA_BQ_BASIC_M", - "PA_BQ_ACCESTVPREMIUM_M", - "PA_BQ_TVDIGITALE_I", - "PA_BQ_BASIC_I", - "PA_BQ_BASICQUAD_I", - "PI_WHITELIST" - ], - "hasRightIAccess": true, - "hasRightMAccess": true, - "logos": [ - { - "definitionType": "mobileAppli", - "listLogos": [ - { - "size": "183x183", - "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_france3bretagne%2F20190730_095136%2FmobileAppli%2Flogo_183x183.png" - } - ] - }, - { - "definitionType": "mobileAppliDark", - "listLogos": [ - { - "size": "183x183", - "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_france3bretagne%2F20190730_095136%2FmobileAppliDark%2Flogo_183x183.png" - } - ] - }, - { - "definitionType": "webTVLogo", - "listLogos": [ - { - "size": "180x96", - "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_france3bretagne%2F20190730_095136%2FwebTVLogo%2Flogo_180x96.png" - } - ] - }, - { - "definitionType": "webTVSquare", - "listLogos": [ - { - "size": "150x150", - "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_france3bretagne%2F20190730_095136%2FwebTVSquare%2Flogo_150x150.png" - } - ] - } - ], - "mobileData": { - "wifiForbidden": false, - "wifiSecuredOnly": false, - "everywhereChannel": true, - "nomadismAllowed": true, - "drmLevels": [ - { - "definition": "SD", - "securedTerminal": [ - "DRM-HW", - "DRM-SW" - ], - "unsecuredTerminal": [ - "DRM-HW", - "DRM-SW" - ] - }, - { - "definition": "HD", - "securedTerminal": [ - "ND" - ], - "unsecuredTerminal": [ - "ND" - ] - } - ] - }, - "webdeviceData": { - "nomadismAllowed": true - }, - "technicalChannels": { - "live": [ - { - "techChannelId": "400053", - "type": "CLOUDTV", - "liveTargetURLRelativePath": "livetv_f3_bretagne_ctv", - "usi": 400053, - "isDRMized": true, - "csa5Disabled": true - } - ], - "npvr": [ - { - "externalId": "livetv_f3_bretagne_ctv", - "techChannelId": "400053", - "type": "CLOUDTV", - "usi": 400053, - "isDRMized": true, - "antiAdskipping": "DEACTIVATED", - "csa5Disabled": true - } - ], - "startover": [] - } - }, - { - "name": "FRANCE 3 CENTRE", - "editoChannelId": "livetv_france3centre", - "lcn": 308, - "idEPG": 1928, - "epgAvailable": true, - "epgTextSubstitution": "", - "displayOrder": 308, - "csaCode": 1, - "slogan": "Nos régions nous inspirent, nos régions vou", - "catchupChannelId": "", - "newChannel": false, - "roamingBlocked": true, - "allowedDeviceCategories": [ - "M_ANDROID", - "M_IOS", - "M_TABLET_ANDROID", - "M_TABLET_IOS", - "W_AIRPLAY", - "W_CHROMECAST", - "W_LACLETV2", - "W_SMARTTV", - "W_PC", - "S_STB" - ], - "packages": [ - "PA_BQ_BASIC_M", - "PA_BQ_ACCESTVPREMIUM_M", - "PA_BQ_TVDIGITALE_I", - "PA_BQ_BASIC_I", - "PA_BQ_BASICQUAD_I", - "PI_WHITELIST" - ], - "hasRightIAccess": true, - "hasRightMAccess": true, - "logos": [ - { - "definitionType": "mobileAppli", - "listLogos": [ - { - "size": "183x183", - "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_france3centre%2F20181002_123023%2FmobileAppli%2Flogo_183x183.png" - } - ] - }, - { - "definitionType": "mobileAppliDark", - "listLogos": [ - { - "size": "183x183", - "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_france3centre%2F20181002_123023%2FmobileAppliDark%2Flogo_183x183.png" - } - ] - }, - { - "definitionType": "webTVLogo", - "listLogos": [ - { - "size": "180x96", - "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_france3centre%2F20181002_123023%2FwebTVLogo%2Flogo_180x96.png" - } - ] - }, - { - "definitionType": "webTVSquare", - "listLogos": [ - { - "size": "150x150", - "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_france3centre%2F20181002_123023%2FwebTVSquare%2Flogo_150x150.png" - } - ] - } - ], - "mobileData": { - "wifiForbidden": false, - "wifiSecuredOnly": false, - "everywhereChannel": true, - "nomadismAllowed": true, - "drmLevels": [ - { - "definition": "SD", - "securedTerminal": [ - "DRM-HW", - "DRM-SW" - ], - "unsecuredTerminal": [ - "DRM-HW", - "DRM-SW" - ] - }, - { - "definition": "HD", - "securedTerminal": [ - "ND" - ], - "unsecuredTerminal": [ - "ND" - ] - } - ] - }, - "webdeviceData": { - "nomadismAllowed": true - }, - "technicalChannels": { - "live": [ - { - "techChannelId": "400054", - "type": "CLOUDTV", - "liveTargetURLRelativePath": "livetv_f3_centre_ctv", - "usi": 400054, - "isDRMized": true, - "csa5Disabled": true - } - ], - "npvr": [ - { - "externalId": "livetv_f3_centre_ctv", - "techChannelId": "400054", - "type": "CLOUDTV", - "usi": 400054, - "isDRMized": true, - "antiAdskipping": "DEACTIVATED", - "csa5Disabled": true - } - ], - "startover": [] - } - }, - { - "name": "FRANCE 3 CHAMPAGNE ARDENNE", - "editoChannelId": "livetv_france3champagne", - "lcn": 309, - "idEPG": 1929, - "epgAvailable": true, - "epgTextSubstitution": "", - "displayOrder": 309, - "csaCode": 1, - "slogan": "Nos régions nous inspirent, nos régions vou", - "catchupChannelId": "", - "newChannel": false, - "roamingBlocked": true, - "allowedDeviceCategories": [ - "M_ANDROID", - "M_IOS", - "M_TABLET_ANDROID", - "M_TABLET_IOS", - "W_AIRPLAY", - "W_CHROMECAST", - "W_LACLETV2", - "W_SMARTTV", - "W_PC", - "S_STB" - ], - "packages": [ - "PA_BQ_BASIC_M", - "PA_BQ_ACCESTVPREMIUM_M", - "PA_BQ_TVDIGITALE_I", - "PA_BQ_BASIC_I", - "PA_BQ_BASICQUAD_I", - "PI_WHITELIST" - ], - "hasRightIAccess": true, - "hasRightMAccess": true, - "logos": [ - { - "definitionType": "mobileAppli", - "listLogos": [ - { - "size": "183x183", - "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_france3champagne%2F20181002_123034%2FmobileAppli%2Flogo_183x183.png" - } - ] - }, - { - "definitionType": "mobileAppliDark", - "listLogos": [ - { - "size": "183x183", - "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_france3champagne%2F20181002_123034%2FmobileAppliDark%2Flogo_183x183.png" - } - ] - }, - { - "definitionType": "webTVLogo", - "listLogos": [ - { - "size": "180x96", - "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_france3champagne%2F20181002_123034%2FwebTVLogo%2Flogo_180x96.png" - } - ] - }, - { - "definitionType": "webTVSquare", - "listLogos": [ - { - "size": "150x150", - "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_france3champagne%2F20181002_123034%2FwebTVSquare%2Flogo_150x150.png" - } - ] - } - ], - "mobileData": { - "wifiForbidden": false, - "wifiSecuredOnly": false, - "everywhereChannel": true, - "nomadismAllowed": true, - "drmLevels": [ - { - "definition": "SD", - "securedTerminal": [ - "DRM-HW", - "DRM-SW" - ], - "unsecuredTerminal": [ - "DRM-HW", - "DRM-SW" - ] - }, - { - "definition": "HD", - "securedTerminal": [ - "ND" - ], - "unsecuredTerminal": [ - "ND" - ] - } - ] - }, - "webdeviceData": { - "nomadismAllowed": true - }, - "technicalChannels": { - "live": [ - { - "techChannelId": "400055", - "type": "CLOUDTV", - "liveTargetURLRelativePath": "livetv_f3_champagne_ardenne_ctv", - "usi": 400055, - "isDRMized": true, - "csa5Disabled": true - } - ], - "npvr": [ - { - "externalId": "livetv_f3_champagne_ardenne_ctv", - "techChannelId": "400055", - "type": "CLOUDTV", - "usi": 400055, - "isDRMized": true, - "antiAdskipping": "DEACTIVATED", - "csa5Disabled": true - } - ], - "startover": [] - } - }, - { - "name": "FRANCE 3 CORSE VIA STELLA", - "editoChannelId": "livetv_france3corsevs", - "lcn": 310, - "idEPG": 308, - "epgAvailable": true, - "epgTextSubstitution": "", - "displayOrder": 310, - "csaCode": 1, - "slogan": "Nos régions nous inspirent, nos régions vou", - "catchupChannelId": "", - "newChannel": false, - "roamingBlocked": true, - "allowedDeviceCategories": [ - "M_ANDROID", - "M_IOS", - "M_TABLET_ANDROID", - "M_TABLET_IOS", - "W_AIRPLAY", - "W_CHROMECAST", - "W_LACLETV2", - "W_SMARTTV", - "W_PC", - "S_STB" - ], - "packages": [ - "PA_BQ_BASIC_M", - "PA_BQ_ACCESTVPREMIUM_M", - "PA_BQ_TVDIGITALE_I", - "PA_BQ_BASIC_I", - "PA_BQ_BASICQUAD_I", - "PI_WHITELIST" - ], - "hasRightIAccess": true, - "hasRightMAccess": true, - "logos": [ - { - "definitionType": "mobileAppli", - "listLogos": [ - { - "size": "183x183", - "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_france3corsevs%2F20181002_123333%2FmobileAppli%2Flogo_183x183.png" - } - ] - }, - { - "definitionType": "mobileAppliDark", - "listLogos": [ - { - "size": "183x183", - "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_france3corsevs%2F20181002_123333%2FmobileAppliDark%2Flogo_183x183.png" - } - ] - }, - { - "definitionType": "webTVLogo", - "listLogos": [ - { - "size": "180x96", - "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_france3corsevs%2F20181002_123333%2FwebTVLogo%2Flogo_180x96.png" - } - ] - }, - { - "definitionType": "webTVSquare", - "listLogos": [ - { - "size": "150x150", - "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_france3corsevs%2F20181002_123333%2FwebTVSquare%2Flogo_150x150.png" - } - ] - } - ], - "mobileData": { - "wifiForbidden": false, - "wifiSecuredOnly": false, - "everywhereChannel": true, - "nomadismAllowed": true, - "drmLevels": [ - { - "definition": "SD", - "securedTerminal": [ - "DRM-HW", - "DRM-SW" - ], - "unsecuredTerminal": [ - "DRM-HW", - "DRM-SW" - ] - }, - { - "definition": "HD", - "securedTerminal": [ - "ND" - ], - "unsecuredTerminal": [ - "ND" - ] - } - ] - }, - "webdeviceData": { - "nomadismAllowed": true - }, - "technicalChannels": { - "live": [ - { - "techChannelId": "400056", - "type": "CLOUDTV", - "liveTargetURLRelativePath": "livetv_f3_corse_via_stella_ctv", - "usi": 400056, - "isDRMized": true, - "csa5Disabled": true - } - ], - "npvr": [ - { - "externalId": "livetv_f3_corse_via_stella_ctv", - "techChannelId": "400056", - "type": "CLOUDTV", - "usi": 400056, - "isDRMized": true, - "antiAdskipping": "DEACTIVATED", - "csa5Disabled": true - } - ], - "startover": [] - } - }, - { - "name": "FRANCE 3 COTE D'AZUR", - "editoChannelId": "livetv_france3cteazur", - "lcn": 311, - "idEPG": 1931, - "epgAvailable": true, - "epgTextSubstitution": "", - "displayOrder": 311, - "csaCode": 1, - "slogan": "Nos régions nous inspirent, nos régions vou", - "catchupChannelId": "", - "newChannel": false, - "roamingBlocked": true, - "allowedDeviceCategories": [ - "M_ANDROID", - "M_IOS", - "M_TABLET_ANDROID", - "M_TABLET_IOS", - "W_AIRPLAY", - "W_CHROMECAST", - "W_LACLETV2", - "W_SMARTTV", - "W_PC", - "S_STB" - ], - "packages": [ - "PA_BQ_BASIC_M", - "PA_BQ_ACCESTVPREMIUM_M", - "PA_BQ_TVDIGITALE_I", - "PA_BQ_BASIC_I", - "PA_BQ_BASICQUAD_I", - "PI_WHITELIST" - ], - "hasRightIAccess": true, - "hasRightMAccess": true, - "logos": [ - { - "definitionType": "mobileAppli", - "listLogos": [ - { - "size": "183x183", - "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_france3cteazur%2F20181002_123355%2FmobileAppli%2Flogo_183x183.png" - } - ] - }, - { - "definitionType": "mobileAppliDark", - "listLogos": [ - { - "size": "183x183", - "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_france3cteazur%2F20181002_123355%2FmobileAppliDark%2Flogo_183x183.png" - } - ] - }, - { - "definitionType": "webTVLogo", - "listLogos": [ - { - "size": "180x96", - "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_france3cteazur%2F20181002_123355%2FwebTVLogo%2Flogo_180x96.png" - } - ] - }, - { - "definitionType": "webTVSquare", - "listLogos": [ - { - "size": "150x150", - "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_france3cteazur%2F20181002_123355%2FwebTVSquare%2Flogo_150x150.png" - } - ] - } - ], - "mobileData": { - "wifiForbidden": false, - "wifiSecuredOnly": false, - "everywhereChannel": true, - "nomadismAllowed": true, - "drmLevels": [ - { - "definition": "SD", - "securedTerminal": [ - "DRM-HW", - "DRM-SW" - ], - "unsecuredTerminal": [ - "DRM-HW", - "DRM-SW" - ] - }, - { - "definition": "HD", - "securedTerminal": [ - "ND" - ], - "unsecuredTerminal": [ - "ND" - ] - } - ] - }, - "webdeviceData": { - "nomadismAllowed": true - }, - "technicalChannels": { - "live": [ - { - "techChannelId": "400057", - "type": "CLOUDTV", - "liveTargetURLRelativePath": "livetv_f3_cote_d_azur_ctv", - "usi": 400057, - "isDRMized": true, - "csa5Disabled": true - } - ], - "npvr": [ - { - "externalId": "livetv_f3_cote_d_azur_ctv", - "techChannelId": "400057", - "type": "CLOUDTV", - "usi": 400057, - "isDRMized": true, - "antiAdskipping": "DEACTIVATED", - "csa5Disabled": true - } - ], - "startover": [] - } - }, - { - "name": "FRANCE 3 FRANCHE COMTE", - "editoChannelId": "livetv_france3frcomte", - "lcn": 312, - "idEPG": 1932, - "epgAvailable": true, - "epgTextSubstitution": "", - "displayOrder": 312, - "csaCode": 1, - "slogan": "Nos régions nous inspirent, nos régions vou", - "catchupChannelId": "", - "newChannel": false, - "roamingBlocked": true, - "allowedDeviceCategories": [ - "M_ANDROID", - "M_IOS", - "M_TABLET_ANDROID", - "M_TABLET_IOS", - "W_AIRPLAY", - "W_CHROMECAST", - "W_LACLETV2", - "W_SMARTTV", - "W_PC", - "S_STB" - ], - "packages": [ - "PA_BQ_BASIC_M", - "PA_BQ_ACCESTVPREMIUM_M", - "PA_BQ_TVDIGITALE_I", - "PA_BQ_BASIC_I", - "PA_BQ_BASICQUAD_I", - "PI_WHITELIST" - ], - "hasRightIAccess": true, - "hasRightMAccess": true, - "logos": [ - { - "definitionType": "mobileAppli", - "listLogos": [ - { - "size": "183x183", - "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_france3frcomte%2F20181002_123404%2FmobileAppli%2Flogo_183x183.png" - } - ] - }, - { - "definitionType": "mobileAppliDark", - "listLogos": [ - { - "size": "183x183", - "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_france3frcomte%2F20181002_123404%2FmobileAppliDark%2Flogo_183x183.png" - } - ] - }, - { - "definitionType": "webTVLogo", - "listLogos": [ - { - "size": "180x96", - "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_france3frcomte%2F20181002_123404%2FwebTVLogo%2Flogo_180x96.png" - } - ] - }, - { - "definitionType": "webTVSquare", - "listLogos": [ - { - "size": "150x150", - "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_france3frcomte%2F20181002_123404%2FwebTVSquare%2Flogo_150x150.png" - } - ] - } - ], - "mobileData": { - "wifiForbidden": false, - "wifiSecuredOnly": false, - "everywhereChannel": true, - "nomadismAllowed": true, - "drmLevels": [ - { - "definition": "SD", - "securedTerminal": [ - "DRM-HW", - "DRM-SW" - ], - "unsecuredTerminal": [ - "DRM-HW", - "DRM-SW" - ] - }, - { - "definition": "HD", - "securedTerminal": [ - "ND" - ], - "unsecuredTerminal": [ - "ND" - ] - } - ] - }, - "webdeviceData": { - "nomadismAllowed": true - }, - "technicalChannels": { - "live": [ - { - "techChannelId": "400058", - "type": "CLOUDTV", - "liveTargetURLRelativePath": "livetv_f3_franche_comte_ctv", - "usi": 400058, - "isDRMized": true, - "csa5Disabled": true - } - ], - "npvr": [ - { - "externalId": "livetv_f3_franche_comte_ctv", - "techChannelId": "400058", - "type": "CLOUDTV", - "usi": 400058, - "isDRMized": true, - "antiAdskipping": "DEACTIVATED", - "csa5Disabled": true - } - ], - "startover": [] - } - }, - { - "name": "FRANCE 3 NORMANDIE ROUEN", - "editoChannelId": "livetv_france3hnormandie", - "lcn": 313, - "idEPG": 1933, - "epgAvailable": true, - "epgTextSubstitution": "", - "displayOrder": 313, - "csaCode": 1, - "slogan": "Nos régions nous inspirent, nos régions vou", - "catchupChannelId": "", - "newChannel": false, - "roamingBlocked": true, - "allowedDeviceCategories": [ - "M_ANDROID", - "M_IOS", - "M_TABLET_ANDROID", - "M_TABLET_IOS", - "W_AIRPLAY", - "W_CHROMECAST", - "W_LACLETV2", - "W_SMARTTV", - "W_PC", - "S_STB" - ], - "packages": [ - "PA_BQ_BASIC_M", - "PA_BQ_ACCESTVPREMIUM_M", - "PA_BQ_TVDIGITALE_I", - "PA_BQ_BASIC_I", - "PA_BQ_BASICQUAD_I", - "PI_WHITELIST" - ], - "hasRightIAccess": true, - "hasRightMAccess": true, - "logos": [ - { - "definitionType": "mobileAppli", - "listLogos": [ - { - "size": "183x183", - "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_france3hnormandie%2F20200211_091906%2FmobileAppli%2Flogo_183x183.png" - } - ] - }, - { - "definitionType": "mobileAppliDark", - "listLogos": [ - { - "size": "183x183", - "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_france3hnormandie%2F20200211_091906%2FmobileAppliDark%2Flogo_183x183.png" - } - ] - }, - { - "definitionType": "webTVLogo", - "listLogos": [ - { - "size": "180x96", - "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_france3hnormandie%2F20200211_091906%2FwebTVLogo%2Flogo_180x96.png" - } - ] - }, - { - "definitionType": "webTVSquare", - "listLogos": [ - { - "size": "150x150", - "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_france3hnormandie%2F20200211_091906%2FwebTVSquare%2Flogo_150x150.png" - } - ] - } - ], - "mobileData": { - "wifiForbidden": false, - "wifiSecuredOnly": false, - "everywhereChannel": true, - "nomadismAllowed": true, - "drmLevels": [ - { - "definition": "SD", - "securedTerminal": [ - "DRM-HW", - "DRM-SW" - ], - "unsecuredTerminal": [ - "DRM-HW", - "DRM-SW" - ] - }, - { - "definition": "HD", - "securedTerminal": [ - "ND" - ], - "unsecuredTerminal": [ - "ND" - ] - } - ] - }, - "webdeviceData": { - "nomadismAllowed": true - }, - "technicalChannels": { - "live": [ - { - "techChannelId": "400059", - "type": "CLOUDTV", - "liveTargetURLRelativePath": "livetv_f3_haute_normandie_ctv", - "usi": 400059, - "isDRMized": true, - "csa5Disabled": true - } - ], - "npvr": [ - { - "externalId": "livetv_f3_haute_normandie_ctv", - "techChannelId": "400059", - "type": "CLOUDTV", - "usi": 400059, - "isDRMized": true, - "antiAdskipping": "DEACTIVATED", - "csa5Disabled": true - } - ], - "startover": [] - } - }, - { - "name": "FRANCE 3 LANGUEDOC", - "editoChannelId": "livetv_france3languedoc", - "lcn": 314, - "idEPG": 1934, - "epgAvailable": true, - "epgTextSubstitution": "", - "displayOrder": 314, - "csaCode": 1, - "slogan": "Nos régions nous inspirent, nos régions vou", - "catchupChannelId": "", - "newChannel": false, - "roamingBlocked": true, - "allowedDeviceCategories": [ - "M_ANDROID", - "M_IOS", - "M_TABLET_ANDROID", - "M_TABLET_IOS", - "W_AIRPLAY", - "W_CHROMECAST", - "W_LACLETV2", - "W_SMARTTV", - "W_PC", - "S_STB" - ], - "packages": [ - "PA_BQ_BASIC_M", - "PA_BQ_ACCESTVPREMIUM_M", - "PA_BQ_TVDIGITALE_I", - "PA_BQ_BASIC_I", - "PA_BQ_BASICQUAD_I", - "PI_WHITELIST" - ], - "hasRightIAccess": true, - "hasRightMAccess": true, - "logos": [ - { - "definitionType": "mobileAppli", - "listLogos": [ - { - "size": "183x183", - "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_france3languedoc%2F20181002_123607%2FmobileAppli%2Flogo_183x183.png" - } - ] - }, - { - "definitionType": "mobileAppliDark", - "listLogos": [ - { - "size": "183x183", - "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_france3languedoc%2F20181002_123607%2FmobileAppliDark%2Flogo_183x183.png" - } - ] - }, - { - "definitionType": "webTVLogo", - "listLogos": [ - { - "size": "180x96", - "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_france3languedoc%2F20181002_123607%2FwebTVLogo%2Flogo_180x96.png" - } - ] - }, - { - "definitionType": "webTVSquare", - "listLogos": [ - { - "size": "150x150", - "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_france3languedoc%2F20181002_123607%2FwebTVSquare%2Flogo_150x150.png" - } - ] - } - ], - "mobileData": { - "wifiForbidden": false, - "wifiSecuredOnly": false, - "everywhereChannel": true, - "nomadismAllowed": true, - "drmLevels": [ - { - "definition": "SD", - "securedTerminal": [ - "DRM-HW", - "DRM-SW" - ], - "unsecuredTerminal": [ - "DRM-HW", - "DRM-SW" - ] - }, - { - "definition": "HD", - "securedTerminal": [ - "ND" - ], - "unsecuredTerminal": [ - "ND" - ] - } - ] - }, - "webdeviceData": { - "nomadismAllowed": true - }, - "technicalChannels": { - "live": [ - { - "techChannelId": "400060", - "type": "CLOUDTV", - "liveTargetURLRelativePath": "livetv_f3_languedoc_ctv", - "usi": 400060, - "isDRMized": true, - "csa5Disabled": true - } - ], - "npvr": [ - { - "externalId": "livetv_f3_languedoc_ctv", - "techChannelId": "400060", - "type": "CLOUDTV", - "usi": 400060, - "isDRMized": true, - "antiAdskipping": "DEACTIVATED", - "csa5Disabled": true - } - ], - "startover": [] - } - }, - { - "name": "FRANCE 3 LIMOUSIN", - "editoChannelId": "livetv_france3limousin", - "lcn": 315, - "idEPG": 1935, - "epgAvailable": true, - "epgTextSubstitution": "", - "displayOrder": 315, - "csaCode": 1, - "slogan": "Nos régions nous inspirent, nos régions vou", - "catchupChannelId": "", - "newChannel": false, - "roamingBlocked": true, - "allowedDeviceCategories": [ - "M_ANDROID", - "M_IOS", - "M_TABLET_ANDROID", - "M_TABLET_IOS", - "W_AIRPLAY", - "W_CHROMECAST", - "W_LACLETV2", - "W_SMARTTV", - "W_PC", - "S_STB" - ], - "packages": [ - "PA_BQ_BASIC_M", - "PA_BQ_ACCESTVPREMIUM_M", - "PA_BQ_TVDIGITALE_I", - "PA_BQ_BASIC_I", - "PA_BQ_BASICQUAD_I", - "PI_WHITELIST" - ], - "hasRightIAccess": true, - "hasRightMAccess": true, - "logos": [ - { - "definitionType": "mobileAppli", - "listLogos": [ - { - "size": "183x183", - "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_france3limousin%2F20190730_095136%2FmobileAppli%2Flogo_183x183.png" - } - ] - }, - { - "definitionType": "mobileAppliDark", - "listLogos": [ - { - "size": "183x183", - "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_france3limousin%2F20190730_095136%2FmobileAppliDark%2Flogo_183x183.png" - } - ] - }, - { - "definitionType": "webTVLogo", - "listLogos": [ - { - "size": "180x96", - "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_france3limousin%2F20190730_095136%2FwebTVLogo%2Flogo_180x96.png" - } - ] - }, - { - "definitionType": "webTVSquare", - "listLogos": [ - { - "size": "150x150", - "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_france3limousin%2F20190730_095136%2FwebTVSquare%2Flogo_150x150.png" - } - ] - } - ], - "mobileData": { - "wifiForbidden": false, - "wifiSecuredOnly": false, - "everywhereChannel": true, - "nomadismAllowed": true, - "drmLevels": [ - { - "definition": "SD", - "securedTerminal": [ - "DRM-HW", - "DRM-SW" - ], - "unsecuredTerminal": [ - "DRM-HW", - "DRM-SW" - ] - }, - { - "definition": "HD", - "securedTerminal": [ - "ND" - ], - "unsecuredTerminal": [ - "ND" - ] - } - ] - }, - "webdeviceData": { - "nomadismAllowed": true - }, - "technicalChannels": { - "live": [ - { - "techChannelId": "400061", - "type": "CLOUDTV", - "liveTargetURLRelativePath": "livetv_f3_limousin_ctv", - "usi": 400061, - "isDRMized": true, - "csa5Disabled": true - } - ], - "npvr": [ - { - "externalId": "livetv_f3_limousin_ctv", - "techChannelId": "400061", - "type": "CLOUDTV", - "usi": 400061, - "isDRMized": true, - "antiAdskipping": "DEACTIVATED", - "csa5Disabled": true - } - ], - "startover": [] - } - }, - { - "name": "FRANCE 3 LORRAINE", - "editoChannelId": "livetv_france3lorraine", - "lcn": 316, - "idEPG": 1936, - "epgAvailable": true, - "epgTextSubstitution": "", - "displayOrder": 316, - "csaCode": 1, - "slogan": "Nos régions nous inspirent, nos régions vou", - "catchupChannelId": "", - "newChannel": false, - "roamingBlocked": true, - "allowedDeviceCategories": [ - "M_ANDROID", - "M_IOS", - "M_TABLET_ANDROID", - "M_TABLET_IOS", - "W_AIRPLAY", - "W_CHROMECAST", - "W_LACLETV2", - "W_SMARTTV", - "W_PC", - "S_STB" - ], - "packages": [ - "PA_BQ_BASIC_M", - "PA_BQ_ACCESTVPREMIUM_M", - "PA_BQ_TVDIGITALE_I", - "PA_BQ_BASIC_I", - "PA_BQ_BASICQUAD_I", - "PI_WHITELIST" - ], - "hasRightIAccess": true, - "hasRightMAccess": true, - "logos": [ - { - "definitionType": "mobileAppli", - "listLogos": [ - { - "size": "183x183", - "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_france3lorraine%2F20190730_095136%2FmobileAppli%2Flogo_183x183.png" - } - ] - }, - { - "definitionType": "mobileAppliDark", - "listLogos": [ - { - "size": "183x183", - "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_france3lorraine%2F20190730_095136%2FmobileAppliDark%2Flogo_183x183.png" - } - ] - }, - { - "definitionType": "webTVLogo", - "listLogos": [ - { - "size": "180x96", - "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_france3lorraine%2F20190730_095136%2FwebTVLogo%2Flogo_180x96.png" - } - ] - }, - { - "definitionType": "webTVSquare", - "listLogos": [ - { - "size": "150x150", - "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_france3lorraine%2F20190730_095136%2FwebTVSquare%2Flogo_150x150.png" - } - ] - } - ], - "mobileData": { - "wifiForbidden": false, - "wifiSecuredOnly": false, - "everywhereChannel": true, - "nomadismAllowed": true, - "drmLevels": [ - { - "definition": "SD", - "securedTerminal": [ - "DRM-HW", - "DRM-SW" - ], - "unsecuredTerminal": [ - "DRM-HW", - "DRM-SW" - ] - }, - { - "definition": "HD", - "securedTerminal": [ - "ND" - ], - "unsecuredTerminal": [ - "ND" - ] - } - ] - }, - "webdeviceData": { - "nomadismAllowed": true - }, - "technicalChannels": { - "live": [ - { - "techChannelId": "400062", - "type": "CLOUDTV", - "liveTargetURLRelativePath": "livetv_f3_lorraine_ctv", - "usi": 400062, - "isDRMized": true, - "csa5Disabled": true - } - ], - "npvr": [ - { - "externalId": "livetv_f3_lorraine_ctv", - "techChannelId": "400062", - "type": "CLOUDTV", - "usi": 400062, - "isDRMized": true, - "antiAdskipping": "DEACTIVATED", - "csa5Disabled": true - } - ], - "startover": [] - } - }, - { - "name": "FRANCE 3 MIDI-PYRENEES", - "editoChannelId": "livetv_france3pyrenees", - "lcn": 317, - "idEPG": 1937, - "epgAvailable": true, - "epgTextSubstitution": "", - "displayOrder": 317, - "csaCode": 1, - "slogan": "Nos régions nous inspirent, nos régions vou", - "catchupChannelId": "", - "newChannel": false, - "roamingBlocked": true, - "allowedDeviceCategories": [ - "M_ANDROID", - "M_IOS", - "M_TABLET_ANDROID", - "M_TABLET_IOS", - "W_AIRPLAY", - "W_CHROMECAST", - "W_LACLETV2", - "W_SMARTTV", - "W_PC", - "S_STB" - ], - "packages": [ - "PA_BQ_BASIC_M", - "PA_BQ_ACCESTVPREMIUM_M", - "PA_BQ_TVDIGITALE_I", - "PA_BQ_BASIC_I", - "PA_BQ_BASICQUAD_I", - "PI_WHITELIST" - ], - "hasRightIAccess": true, - "hasRightMAccess": true, - "logos": [ - { - "definitionType": "mobileAppli", - "listLogos": [ - { - "size": "183x183", - "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_france3pyrenees%2F20181002_123755%2FmobileAppli%2Flogo_183x183.png" - } - ] - }, - { - "definitionType": "mobileAppliDark", - "listLogos": [ - { - "size": "183x183", - "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_france3pyrenees%2F20181002_123755%2FmobileAppliDark%2Flogo_183x183.png" - } - ] - }, - { - "definitionType": "webTVLogo", - "listLogos": [ - { - "size": "180x96", - "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_france3pyrenees%2F20181002_123755%2FwebTVLogo%2Flogo_180x96.png" - } - ] - }, - { - "definitionType": "webTVSquare", - "listLogos": [ - { - "size": "150x150", - "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_france3pyrenees%2F20181002_123755%2FwebTVSquare%2Flogo_150x150.png" - } - ] - } - ], - "mobileData": { - "wifiForbidden": false, - "wifiSecuredOnly": false, - "everywhereChannel": true, - "nomadismAllowed": true, - "drmLevels": [ - { - "definition": "SD", - "securedTerminal": [ - "DRM-HW", - "DRM-SW" - ], - "unsecuredTerminal": [ - "DRM-HW", - "DRM-SW" - ] - }, - { - "definition": "HD", - "securedTerminal": [ - "ND" - ], - "unsecuredTerminal": [ - "ND" - ] - } - ] - }, - "webdeviceData": { - "nomadismAllowed": true - }, - "technicalChannels": { - "live": [ - { - "techChannelId": "400063", - "type": "CLOUDTV", - "liveTargetURLRelativePath": "livetv_f3_midi_pyrenees_ctv", - "usi": 400063, - "isDRMized": true, - "csa5Disabled": true - } - ], - "npvr": [ - { - "externalId": "livetv_f3_midi_pyrenees_ctv", - "techChannelId": "400063", - "type": "CLOUDTV", - "usi": 400063, - "isDRMized": true, - "antiAdskipping": "DEACTIVATED", - "csa5Disabled": true - } - ], - "startover": [] - } - }, - { - "name": "FRANCE 3 NORD P. CALAIS", - "editoChannelId": "livetv_france3nordpdc", - "lcn": 318, - "idEPG": 1938, - "epgAvailable": true, - "epgTextSubstitution": "", - "displayOrder": 318, - "csaCode": 1, - "slogan": "Nos régions nous inspirent, nos régions vou", - "catchupChannelId": "", - "newChannel": false, - "roamingBlocked": true, - "allowedDeviceCategories": [ - "M_ANDROID", - "M_IOS", - "M_TABLET_ANDROID", - "M_TABLET_IOS", - "W_AIRPLAY", - "W_CHROMECAST", - "W_LACLETV2", - "W_SMARTTV", - "W_PC", - "S_STB" - ], - "packages": [ - "PA_BQ_BASIC_M", - "PA_BQ_ACCESTVPREMIUM_M", - "PA_BQ_TVDIGITALE_I", - "PA_BQ_BASIC_I", - "PA_BQ_BASICQUAD_I", - "PI_WHITELIST" - ], - "hasRightIAccess": true, - "hasRightMAccess": true, - "logos": [ - { - "definitionType": "mobileAppli", - "listLogos": [ - { - "size": "183x183", - "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_france3nordpdc%2F20181002_123720%2FmobileAppli%2Flogo_183x183.png" - } - ] - }, - { - "definitionType": "mobileAppliDark", - "listLogos": [ - { - "size": "183x183", - "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_france3nordpdc%2F20181002_123720%2FmobileAppliDark%2Flogo_183x183.png" - } - ] - }, - { - "definitionType": "webTVLogo", - "listLogos": [ - { - "size": "180x96", - "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_france3nordpdc%2F20181002_123720%2FwebTVLogo%2Flogo_180x96.png" - } - ] - }, - { - "definitionType": "webTVSquare", - "listLogos": [ - { - "size": "150x150", - "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_france3nordpdc%2F20181002_123720%2FwebTVSquare%2Flogo_150x150.png" - } - ] - } - ], - "mobileData": { - "wifiForbidden": false, - "wifiSecuredOnly": false, - "everywhereChannel": true, - "nomadismAllowed": true, - "drmLevels": [ - { - "definition": "SD", - "securedTerminal": [ - "DRM-HW", - "DRM-SW" - ], - "unsecuredTerminal": [ - "DRM-HW", - "DRM-SW" - ] - }, - { - "definition": "HD", - "securedTerminal": [ - "ND" - ], - "unsecuredTerminal": [ - "ND" - ] - } - ] - }, - "webdeviceData": { - "nomadismAllowed": true - }, - "technicalChannels": { - "live": [ - { - "techChannelId": "400064", - "type": "CLOUDTV", - "liveTargetURLRelativePath": "livetv_f3_nord_p_calais_ctv", - "usi": 400064, - "isDRMized": true, - "csa5Disabled": true - } - ], - "npvr": [ - { - "externalId": "livetv_f3_nord_p_calais_ctv", - "techChannelId": "400064", - "type": "CLOUDTV", - "usi": 400064, - "isDRMized": true, - "antiAdskipping": "DEACTIVATED", - "csa5Disabled": true - } - ], - "startover": [] - } - }, - { - "name": "FRANCE 3 PARIS IDF", - "editoChannelId": "livetv_france3parisidf", - "lcn": 319, - "idEPG": 1939, - "epgAvailable": true, - "epgTextSubstitution": "", - "displayOrder": 319, - "csaCode": 1, - "slogan": "Nos régions nous inspirent, nos régions vou", - "catchupChannelId": "", - "newChannel": false, - "roamingBlocked": true, - "allowedDeviceCategories": [ - "M_ANDROID", - "M_IOS", - "M_TABLET_ANDROID", - "M_TABLET_IOS", - "W_AIRPLAY", - "W_CHROMECAST", - "W_LACLETV2", - "W_SMARTTV", - "W_PC", - "S_STB" - ], - "packages": [ - "PA_BQ_BASIC_M", - "PA_BQ_ACCESTVPREMIUM_M", - "PA_BQ_TVDIGITALE_I", - "PA_BQ_BASIC_I", - "PA_BQ_BASICQUAD_I", - "PI_WHITELIST" - ], - "hasRightIAccess": true, - "hasRightMAccess": true, - "logos": [ - { - "definitionType": "mobileAppli", - "listLogos": [ - { - "size": "183x183", - "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_france3parisidf%2F20181002_123934%2FmobileAppli%2Flogo_183x183.png" - } - ] - }, - { - "definitionType": "mobileAppliDark", - "listLogos": [ - { - "size": "183x183", - "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_france3parisidf%2F20181002_123934%2FmobileAppliDark%2Flogo_183x183.png" - } - ] - }, - { - "definitionType": "webTVLogo", - "listLogos": [ - { - "size": "180x96", - "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_france3parisidf%2F20181002_123934%2FwebTVLogo%2Flogo_180x96.png" - } - ] - }, - { - "definitionType": "webTVSquare", - "listLogos": [ - { - "size": "150x150", - "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_france3parisidf%2F20181002_123934%2FwebTVSquare%2Flogo_150x150.png" - } - ] - } - ], - "mobileData": { - "wifiForbidden": false, - "wifiSecuredOnly": false, - "everywhereChannel": true, - "nomadismAllowed": true, - "drmLevels": [ - { - "definition": "SD", - "securedTerminal": [ - "DRM-HW", - "DRM-SW" - ], - "unsecuredTerminal": [ - "DRM-HW", - "DRM-SW" - ] - }, - { - "definition": "HD", - "securedTerminal": [ - "ND" - ], - "unsecuredTerminal": [ - "ND" - ] - } - ] - }, - "webdeviceData": { - "nomadismAllowed": true - }, - "technicalChannels": { - "live": [ - { - "techChannelId": "400065", - "type": "CLOUDTV", - "liveTargetURLRelativePath": "livetv_f3_paris_idf_ctv", - "usi": 400065, - "isDRMized": true, - "csa5Disabled": true - } - ], - "npvr": [ - { - "externalId": "livetv_f3_paris_idf_ctv", - "techChannelId": "400065", - "type": "CLOUDTV", - "usi": 400065, - "isDRMized": true, - "antiAdskipping": "DEACTIVATED", - "csa5Disabled": true - } - ], - "startover": [] - } - }, - { - "name": "FRANCE 3 PAYS DE LA LOIRE", - "editoChannelId": "livetv_france3loire", - "lcn": 320, - "idEPG": 1940, - "epgAvailable": true, - "epgTextSubstitution": "", - "displayOrder": 320, - "csaCode": 1, - "slogan": "Nos régions nous inspirent, nos régions vou", - "catchupChannelId": "", - "newChannel": false, - "roamingBlocked": true, - "allowedDeviceCategories": [ - "M_ANDROID", - "M_IOS", - "M_TABLET_ANDROID", - "M_TABLET_IOS", - "W_AIRPLAY", - "W_CHROMECAST", - "W_LACLETV2", - "W_SMARTTV", - "W_PC", - "S_STB" - ], - "packages": [ - "PA_BQ_BASIC_M", - "PA_BQ_ACCESTVPREMIUM_M", - "PA_BQ_TVDIGITALE_I", - "PA_BQ_BASIC_I", - "PA_BQ_BASICQUAD_I", - "PI_WHITELIST" - ], - "hasRightIAccess": true, - "hasRightMAccess": true, - "logos": [ - { - "definitionType": "mobileAppli", - "listLogos": [ - { - "size": "183x183", - "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_france3loire%2F20190730_095136%2FmobileAppli%2Flogo_183x183.png" - } - ] - }, - { - "definitionType": "mobileAppliDark", - "listLogos": [ - { - "size": "183x183", - "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_france3loire%2F20190730_095136%2FmobileAppliDark%2Flogo_183x183.png" - } - ] - }, - { - "definitionType": "webTVLogo", - "listLogos": [ - { - "size": "180x96", - "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_france3loire%2F20190730_095136%2FwebTVLogo%2Flogo_180x96.png" - } - ] - }, - { - "definitionType": "webTVSquare", - "listLogos": [ - { - "size": "150x150", - "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_france3loire%2F20190730_095136%2FwebTVSquare%2Flogo_150x150.png" - } - ] - } - ], - "mobileData": { - "wifiForbidden": false, - "wifiSecuredOnly": false, - "everywhereChannel": true, - "nomadismAllowed": true, - "drmLevels": [ - { - "definition": "SD", - "securedTerminal": [ - "DRM-HW", - "DRM-SW" - ], - "unsecuredTerminal": [ - "DRM-HW", - "DRM-SW" - ] - }, - { - "definition": "HD", - "securedTerminal": [ - "ND" - ], - "unsecuredTerminal": [ - "ND" - ] - } - ] - }, - "webdeviceData": { - "nomadismAllowed": true - }, - "technicalChannels": { - "live": [ - { - "techChannelId": "400066", - "type": "CLOUDTV", - "liveTargetURLRelativePath": "livetv_f3_pays_de_la_loire_ctv", - "usi": 400066, - "isDRMized": true, - "csa5Disabled": true - } - ], - "npvr": [ - { - "externalId": "livetv_f3_pays_de_la_loire_ctv", - "techChannelId": "400066", - "type": "CLOUDTV", - "usi": 400066, - "isDRMized": true, - "antiAdskipping": "DEACTIVATED", - "csa5Disabled": true - } - ], - "startover": [] - } - }, - { - "name": "FRANCE 3 PICARDIE", - "editoChannelId": "livetv_france3picardie", - "lcn": 321, - "idEPG": 1941, - "epgAvailable": true, - "epgTextSubstitution": "", - "displayOrder": 321, - "csaCode": 1, - "slogan": "Nos régions nous inspirent, nos régions vou", - "catchupChannelId": "", - "newChannel": false, - "roamingBlocked": true, - "allowedDeviceCategories": [ - "M_ANDROID", - "M_IOS", - "M_TABLET_ANDROID", - "M_TABLET_IOS", - "W_AIRPLAY", - "W_CHROMECAST", - "W_LACLETV2", - "W_SMARTTV", - "W_PC", - "S_STB" - ], - "packages": [ - "PA_BQ_BASIC_M", - "PA_BQ_ACCESTVPREMIUM_M", - "PA_BQ_TVDIGITALE_I", - "PA_BQ_BASIC_I", - "PA_BQ_BASICQUAD_I", - "PI_WHITELIST" - ], - "hasRightIAccess": true, - "hasRightMAccess": true, - "logos": [ - { - "definitionType": "mobileAppli", - "listLogos": [ - { - "size": "183x183", - "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_france3picardie%2F20181002_123952%2FmobileAppli%2Flogo_183x183.png" - } - ] - }, - { - "definitionType": "mobileAppliDark", - "listLogos": [ - { - "size": "183x183", - "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_france3picardie%2F20181002_123952%2FmobileAppliDark%2Flogo_183x183.png" - } - ] - }, - { - "definitionType": "webTVLogo", - "listLogos": [ - { - "size": "180x96", - "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_france3picardie%2F20181002_123952%2FwebTVLogo%2Flogo_180x96.png" - } - ] - }, - { - "definitionType": "webTVSquare", - "listLogos": [ - { - "size": "150x150", - "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_france3picardie%2F20181002_123952%2FwebTVSquare%2Flogo_150x150.png" - } - ] - } - ], - "mobileData": { - "wifiForbidden": false, - "wifiSecuredOnly": false, - "everywhereChannel": true, - "nomadismAllowed": true, - "drmLevels": [ - { - "definition": "SD", - "securedTerminal": [ - "DRM-HW", - "DRM-SW" - ], - "unsecuredTerminal": [ - "DRM-HW", - "DRM-SW" - ] - }, - { - "definition": "HD", - "securedTerminal": [ - "ND" - ], - "unsecuredTerminal": [ - "ND" - ] - } - ] - }, - "webdeviceData": { - "nomadismAllowed": true - }, - "technicalChannels": { - "live": [ - { - "techChannelId": "400067", - "type": "CLOUDTV", - "liveTargetURLRelativePath": "livetv_f3_picardie_ctv", - "usi": 400067, - "isDRMized": true, - "csa5Disabled": true - } - ], - "npvr": [ - { - "externalId": "livetv_f3_picardie_ctv", - "techChannelId": "400067", - "type": "CLOUDTV", - "usi": 400067, - "isDRMized": true, - "antiAdskipping": "DEACTIVATED", - "csa5Disabled": true - } - ], - "startover": [] - } - }, - { - "name": "FRANCE 3 POITOU CHARENTES", - "editoChannelId": "livetv_france3poitou", - "lcn": 322, - "idEPG": 1942, - "epgAvailable": true, - "epgTextSubstitution": "", - "displayOrder": 322, - "csaCode": 1, - "slogan": "Nos régions nous inspirent, nos régions vou", - "catchupChannelId": "", - "newChannel": false, - "roamingBlocked": true, - "allowedDeviceCategories": [ - "M_ANDROID", - "M_IOS", - "M_TABLET_ANDROID", - "M_TABLET_IOS", - "W_AIRPLAY", - "W_CHROMECAST", - "W_LACLETV2", - "W_SMARTTV", - "W_PC", - "S_STB" - ], - "packages": [ - "PA_BQ_BASIC_M", - "PA_BQ_ACCESTVPREMIUM_M", - "PA_BQ_TVDIGITALE_I", - "PA_BQ_BASIC_I", - "PA_BQ_BASICQUAD_I", - "PI_WHITELIST" - ], - "hasRightIAccess": true, - "hasRightMAccess": true, - "logos": [ - { - "definitionType": "mobileAppli", - "listLogos": [ - { - "size": "183x183", - "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_france3poitou%2F20181002_123959%2FmobileAppli%2Flogo_183x183.png" - } - ] - }, - { - "definitionType": "mobileAppliDark", - "listLogos": [ - { - "size": "183x183", - "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_france3poitou%2F20181002_123959%2FmobileAppliDark%2Flogo_183x183.png" - } - ] - }, - { - "definitionType": "webTVLogo", - "listLogos": [ - { - "size": "180x96", - "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_france3poitou%2F20181002_123959%2FwebTVLogo%2Flogo_180x96.png" - } - ] - }, - { - "definitionType": "webTVSquare", - "listLogos": [ - { - "size": "150x150", - "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_france3poitou%2F20181002_123959%2FwebTVSquare%2Flogo_150x150.png" - } - ] - } - ], - "mobileData": { - "wifiForbidden": false, - "wifiSecuredOnly": false, - "everywhereChannel": true, - "nomadismAllowed": true, - "drmLevels": [ - { - "definition": "SD", - "securedTerminal": [ - "DRM-HW", - "DRM-SW" - ], - "unsecuredTerminal": [ - "DRM-HW", - "DRM-SW" - ] - }, - { - "definition": "HD", - "securedTerminal": [ - "ND" - ], - "unsecuredTerminal": [ - "ND" - ] - } - ] - }, - "webdeviceData": { - "nomadismAllowed": true - }, - "technicalChannels": { - "live": [ - { - "techChannelId": "400068", - "type": "CLOUDTV", - "liveTargetURLRelativePath": "livetv_f3_poitou_charentes_ctv", - "usi": 400068, - "isDRMized": true, - "csa5Disabled": true - } - ], - "npvr": [ - { - "externalId": "livetv_f3_poitou_charentes_ctv", - "techChannelId": "400068", - "type": "CLOUDTV", - "usi": 400068, - "isDRMized": true, - "antiAdskipping": "DEACTIVATED", - "csa5Disabled": true - } - ], - "startover": [] - } - }, - { - "name": "FRANCE 3 PROVENCE ALPES", - "editoChannelId": "livetv_france3provence", - "lcn": 323, - "idEPG": 1943, - "epgAvailable": true, - "epgTextSubstitution": "", - "displayOrder": 323, - "csaCode": 1, - "slogan": "Nos régions nous inspirent, nos régions vou", - "catchupChannelId": "", - "newChannel": false, - "roamingBlocked": true, - "allowedDeviceCategories": [ - "M_ANDROID", - "M_IOS", - "M_TABLET_ANDROID", - "M_TABLET_IOS", - "W_AIRPLAY", - "W_CHROMECAST", - "W_LACLETV2", - "W_SMARTTV", - "W_PC", - "S_STB" - ], - "packages": [ - "PA_BQ_BASIC_M", - "PA_BQ_ACCESTVPREMIUM_M", - "PA_BQ_TVDIGITALE_I", - "PA_BQ_BASIC_I", - "PA_BQ_BASICQUAD_I", - "PI_WHITELIST" - ], - "hasRightIAccess": true, - "hasRightMAccess": true, - "logos": [ - { - "definitionType": "mobileAppli", - "listLogos": [ - { - "size": "183x183", - "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_france3provence%2F20190730_095136%2FmobileAppli%2Flogo_183x183.png" - } - ] - }, - { - "definitionType": "mobileAppliDark", - "listLogos": [ - { - "size": "183x183", - "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_france3provence%2F20190730_095136%2FmobileAppliDark%2Flogo_183x183.png" - } - ] - }, - { - "definitionType": "webTVLogo", - "listLogos": [ - { - "size": "180x96", - "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_france3provence%2F20190730_095136%2FwebTVLogo%2Flogo_180x96.png" - } - ] - }, - { - "definitionType": "webTVSquare", - "listLogos": [ - { - "size": "150x150", - "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_france3provence%2F20190730_095136%2FwebTVSquare%2Flogo_150x150.png" - } - ] - } - ], - "mobileData": { - "wifiForbidden": false, - "wifiSecuredOnly": false, - "everywhereChannel": true, - "nomadismAllowed": true, - "drmLevels": [ - { - "definition": "SD", - "securedTerminal": [ - "DRM-HW", - "DRM-SW" - ], - "unsecuredTerminal": [ - "DRM-HW", - "DRM-SW" - ] - }, - { - "definition": "HD", - "securedTerminal": [ - "ND" - ], - "unsecuredTerminal": [ - "ND" - ] - } - ] - }, - "webdeviceData": { - "nomadismAllowed": true - }, - "technicalChannels": { - "live": [ - { - "techChannelId": "400069", - "type": "CLOUDTV", - "liveTargetURLRelativePath": "livetv_f3_provence_alpes_ctv", - "usi": 400069, - "isDRMized": true, - "csa5Disabled": true - } - ], - "npvr": [ - { - "externalId": "livetv_f3_provence_alpes_ctv", - "techChannelId": "400069", - "type": "CLOUDTV", - "usi": 400069, - "isDRMized": true, - "antiAdskipping": "DEACTIVATED", - "csa5Disabled": true - } - ], - "startover": [] - } - }, - { - "name": "FRANCE 3 RHONE ALPES", - "editoChannelId": "livetv_france3rhalpes", - "lcn": 324, - "idEPG": 1944, - "epgAvailable": true, - "epgTextSubstitution": "", - "displayOrder": 324, - "csaCode": 1, - "slogan": "Nos régions nous inspirent, nos régions vou", - "catchupChannelId": "", - "newChannel": false, - "roamingBlocked": true, - "allowedDeviceCategories": [ - "M_ANDROID", - "M_IOS", - "M_TABLET_ANDROID", - "M_TABLET_IOS", - "W_AIRPLAY", - "W_CHROMECAST", - "W_LACLETV2", - "W_SMARTTV", - "W_PC", - "S_STB" - ], - "packages": [ - "PA_BQ_BASIC_M", - "PA_BQ_ACCESTVPREMIUM_M", - "PA_BQ_TVDIGITALE_I", - "PA_BQ_BASIC_I", - "PA_BQ_BASICQUAD_I", - "PI_WHITELIST" - ], - "hasRightIAccess": true, - "hasRightMAccess": true, - "logos": [ - { - "definitionType": "mobileAppli", - "listLogos": [ - { - "size": "183x183", - "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_france3rhalpes%2F20181002_123926%2FmobileAppli%2Flogo_183x183.png" - } - ] - }, - { - "definitionType": "mobileAppliDark", - "listLogos": [ - { - "size": "183x183", - "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_france3rhalpes%2F20181002_123926%2FmobileAppliDark%2Flogo_183x183.png" - } - ] - }, - { - "definitionType": "webTVLogo", - "listLogos": [ - { - "size": "180x96", - "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_france3rhalpes%2F20181002_123926%2FwebTVLogo%2Flogo_180x96.png" - } - ] - }, - { - "definitionType": "webTVSquare", - "listLogos": [ - { - "size": "150x150", - "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_france3rhalpes%2F20181002_123926%2FwebTVSquare%2Flogo_150x150.png" - } - ] - } - ], - "mobileData": { - "wifiForbidden": false, - "wifiSecuredOnly": false, - "everywhereChannel": true, - "nomadismAllowed": true, - "drmLevels": [ - { - "definition": "SD", - "securedTerminal": [ - "DRM-HW", - "DRM-SW" - ], - "unsecuredTerminal": [ - "DRM-HW", - "DRM-SW" - ] - }, - { - "definition": "HD", - "securedTerminal": [ - "ND" - ], - "unsecuredTerminal": [ - "ND" - ] - } - ] - }, - "webdeviceData": { - "nomadismAllowed": true - }, - "technicalChannels": { - "live": [ - { - "techChannelId": "400070", - "type": "CLOUDTV", - "liveTargetURLRelativePath": "livetv_f3_rhone_alpes_ctv", - "usi": 400070, - "isDRMized": true, - "csa5Disabled": true - } - ], - "npvr": [ - { - "externalId": "livetv_f3_rhone_alpes_ctv", - "techChannelId": "400070", - "type": "CLOUDTV", - "usi": 400070, - "isDRMized": true, - "antiAdskipping": "DEACTIVATED", - "csa5Disabled": true - } - ], - "startover": [] - } - }, - { - "name": "CANAL 10 Guadeloupe", - "editoChannelId": "livetv_canal_10_guadeloupe", - "lcn": 395, - "idEPG": 90395, - "epgAvailable": false, - "epgTextSubstitution": "", - "displayOrder": 395, - "csaCode": 1, - "slogan": "Sé Télé an Nou", - "catchupChannelId": "", - "newChannel": true, - "roamingBlocked": true, - "allowedDeviceCategories": [ - "M_ANDROID", - "M_IOS", - "M_TABLET_ANDROID", - "M_TABLET_IOS", - "W_AIRPLAY", - "W_CHROMECAST", - "W_LACLETV2", - "W_PC", - "W_SMARTTV", - "S_STB" - ], - "packages": [ - "PA_BQ_BASIC_M", - "PA_BQ_TVDIGITALE_I", - "PA_BQ_BASIC_I", - "PA_BQ_BASICQUAD_I", - "PI_WHITELIST" - ], - "hasRightIAccess": true, - "hasRightMAccess": true, - "logos": [ - { - "definitionType": "mobileAppli", - "listLogos": [ - { - "size": "183x183", - "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_canal_10_guadeloupe%2F20230707_152431%2FmobileAppli%2Flogo_183x183.png" - } - ] - }, - { - "definitionType": "mobileAppliDark", - "listLogos": [ - { - "size": "183x183", - "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_canal_10_guadeloupe%2F20230707_152431%2FmobileAppliDark%2Flogo_183x183.png" - } - ] - }, - { - "definitionType": "webTVLogo", - "listLogos": [ - { - "size": "180x96", - "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_canal_10_guadeloupe%2F20230707_152431%2FwebTVLogo%2Flogo_180x96.png" - } - ] - }, - { - "definitionType": "webTVSquare", - "listLogos": [ - { - "size": "150x150", - "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_canal_10_guadeloupe%2F20230707_152431%2FwebTVSquare%2Flogo_150x150.png" - } - ] - } - ], - "mobileData": { - "wifiForbidden": false, - "wifiSecuredOnly": false, - "everywhereChannel": true, - "nomadismAllowed": true, - "drmLevels": [ - { - "definition": "SD", - "securedTerminal": [ - "DRM-HW", - "DRM-SW" - ], - "unsecuredTerminal": [ - "DRM-HW", - "DRM-SW" - ] - }, - { - "definition": "HD", - "securedTerminal": [ - "ND" - ], - "unsecuredTerminal": [ - "ND" - ] - } - ] - }, - "webdeviceData": { - "nomadismAllowed": true - }, - "technicalChannels": { - "live": [ - { - "techChannelId": "400317", - "type": "CLOUDTV", - "liveTargetURLRelativePath": "livetv_canal_10_guadeloupe_ctv", - "usi": 400317, - "isDRMized": true, - "csa5Disabled": true - } - ], - "npvr": [], - "startover": [] - } - }, - { - "name": "TAHITI NUI TELEVISION", - "editoChannelId": "livetv_tn_tv", - "lcn": 397, - "idEPG": 90397, - "epgAvailable": false, - "epgTextSubstitution": "", - "displayOrder": 397, - "csaCode": 1, - "slogan": "Maeva et bienvenue en Polynésie", - "catchupChannelId": "", - "newChannel": true, - "roamingBlocked": true, - "allowedDeviceCategories": [ - "M_ANDROID", - "M_IOS", - "M_TABLET_ANDROID", - "M_TABLET_IOS", - "W_AIRPLAY", - "W_CHROMECAST", - "W_LACLETV2", - "W_SMARTTV", - "W_PC", - "S_STB" - ], - "packages": [ - "PA_BQ_BASIC_M", - "PA_BQ_TVDIGITALE_I", - "PA_BQ_BASIC_I", - "PA_BQ_BASICQUAD_I", - "PI_WHITELIST" - ], - "hasRightIAccess": true, - "hasRightMAccess": true, - "logos": [ - { - "definitionType": "mobileAppli", - "listLogos": [ - { - "size": "183x183", - "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_tn_tv%2F20180108_141727%2FmobileAppli%2Flogo_183x183.png" - } - ] - }, - { - "definitionType": "mobileAppliDark", - "listLogos": [ - { - "size": "183x183", - "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_tn_tv%2F20180108_141727%2FmobileAppliDark%2Flogo_183x183.png" - } - ] - }, - { - "definitionType": "webTVLogo", - "listLogos": [ - { - "size": "180x96", - "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_tn_tv%2F20180108_141727%2FwebTVLogo%2Flogo_180x96.png" - } - ] - }, - { - "definitionType": "webTVSquare", - "listLogos": [ - { - "size": "150x150", - "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_tn_tv%2F20180108_141727%2FwebTVSquare%2Flogo_150x150.png" - } - ] - } - ], - "mobileData": { - "wifiForbidden": false, - "wifiSecuredOnly": false, - "everywhereChannel": true, - "nomadismAllowed": true, - "drmLevels": [ - { - "definition": "SD", - "securedTerminal": [ - "DRM-HW", - "DRM-SW" - ], - "unsecuredTerminal": [ - "DRM-HW", - "DRM-SW" - ] - }, - { - "definition": "HD", - "securedTerminal": [ - "ND" - ], - "unsecuredTerminal": [ - "ND" - ] - } - ] - }, - "webdeviceData": { - "nomadismAllowed": true - }, - "technicalChannels": { - "live": [ - { - "techChannelId": "400260", - "type": "CLOUDTV", - "liveTargetURLRelativePath": "livetv_tahitinuitelevision_ctv", - "usi": 400260, - "isDRMized": true, - "csa5Disabled": true - } - ], - "npvr": [], - "startover": [] - } - }, - { - "name": "TELE ANTILLES", - "editoChannelId": "livetv_tele_antilles", - "lcn": 398, - "idEPG": 90398, - "epgAvailable": false, - "epgTextSubstitution": "", - "displayOrder": 398, - "csaCode": 1, - "slogan": "Le pays chez vous", - "catchupChannelId": "", - "newChannel": false, - "roamingBlocked": true, - "allowedDeviceCategories": [ - "M_ANDROID", - "M_IOS", - "M_TABLET_ANDROID", - "M_TABLET_IOS", - "W_AIRPLAY", - "W_CHROMECAST", - "W_LACLETV2", - "W_SMARTTV", - "W_PC", - "S_STB" - ], - "packages": [ - "PA_BQ_BASIC_M", - "PA_BQ_TVDIGITALE_I", - "PA_BQ_BASIC_I", - "PA_BQ_BASICQUAD_I", - "PI_WHITELIST" - ], - "hasRightIAccess": true, - "hasRightMAccess": true, - "logos": [ - { - "definitionType": "mobileAppli", - "listLogos": [ - { - "size": "183x183", - "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_tele_antilles%2F20180206_091500%2FmobileAppli%2Flogo_183x183.png" - } - ] - }, - { - "definitionType": "mobileAppliDark", - "listLogos": [ - { - "size": "183x183", - "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_tele_antilles%2F20180206_091500%2FmobileAppliDark%2Flogo_183x183.png" - } - ] - }, - { - "definitionType": "webTVLogo", - "listLogos": [ - { - "size": "180x96", - "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_tele_antilles%2F20180206_091500%2FwebTVLogo%2Flogo_180x96.png" - } - ] - }, - { - "definitionType": "webTVSquare", - "listLogos": [ - { - "size": "150x150", - "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_tele_antilles%2F20180206_091500%2FwebTVSquare%2Flogo_150x150.png" - } - ] - } - ], - "mobileData": { - "wifiForbidden": false, - "wifiSecuredOnly": false, - "everywhereChannel": true, - "nomadismAllowed": true, - "drmLevels": [ - { - "definition": "SD", - "securedTerminal": [ - "DRM-HW", - "DRM-SW" - ], - "unsecuredTerminal": [ - "DRM-HW", - "DRM-SW" - ] - }, - { - "definition": "HD", - "securedTerminal": [ - "ND" - ], - "unsecuredTerminal": [ - "ND" - ] - } - ] - }, - "webdeviceData": { - "nomadismAllowed": true - }, - "technicalChannels": { - "live": [ - { - "techChannelId": "400261", - "type": "CLOUDTV", - "liveTargetURLRelativePath": "livetv_teleantilles_ctv", - "usi": 400261, - "isDRMized": true, - "csa5Disabled": true - } - ], - "npvr": [], - "startover": [] - } - }, - { - "name": "MADRAS FM TV", - "editoChannelId": "livetv_mfm", - "lcn": 399, - "idEPG": 90399, - "epgAvailable": false, - "epgTextSubstitution": "", - "displayOrder": 399, - "csaCode": 1, - "slogan": "Clips & Divertissements", - "catchupChannelId": "", - "newChannel": false, - "roamingBlocked": true, - "allowedDeviceCategories": [ - "M_ANDROID", - "M_IOS", - "M_TABLET_ANDROID", - "M_TABLET_IOS", - "W_AIRPLAY", - "W_CHROMECAST", - "W_LACLETV2", - "W_PC", - "W_SMARTTV", - "S_STB" - ], - "packages": [ - "PA_BQ_BASIC_M", - "PA_BQ_TVDIGITALE_I", - "PA_BQ_BASIC_I", - "PA_BQ_BASICQUAD_I", - "PI_WHITELIST" - ], - "hasRightIAccess": true, - "hasRightMAccess": true, - "logos": [ - { - "definitionType": "mobileAppli", - "listLogos": [ - { - "size": "183x183", - "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_mfm%2F20230707_152431%2FmobileAppli%2Flogo_183x183.png" - } - ] - }, - { - "definitionType": "mobileAppliDark", - "listLogos": [ - { - "size": "183x183", - "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_mfm%2F20230707_152431%2FmobileAppliDark%2Flogo_183x183.png" - } - ] - }, - { - "definitionType": "webTVLogo", - "listLogos": [ - { - "size": "180x96", - "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_mfm%2F20230707_152431%2FwebTVLogo%2Flogo_180x96.png" - } - ] - }, - { - "definitionType": "webTVSquare", - "listLogos": [ - { - "size": "150x150", - "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_mfm%2F20230707_152431%2FwebTVSquare%2Flogo_150x150.png" - } - ] - } - ], - "mobileData": { - "wifiForbidden": false, - "wifiSecuredOnly": false, - "everywhereChannel": true, - "nomadismAllowed": true, - "drmLevels": [ - { - "definition": "SD", - "securedTerminal": [ - "DRM-HW", - "DRM-SW" - ], - "unsecuredTerminal": [ - "DRM-HW", - "DRM-SW" - ] - }, - { - "definition": "HD", - "securedTerminal": [ - "ND" - ], - "unsecuredTerminal": [ - "ND" - ] - } - ] - }, - "webdeviceData": { - "nomadismAllowed": true - }, - "technicalChannels": { - "live": [ - { - "techChannelId": "400256", - "type": "CLOUDTV", - "liveTargetURLRelativePath": "livetv_madrasfmtv_ctv", - "usi": 400256, - "isDRMized": true, - "csa5Disabled": true - } - ], - "npvr": [], - "startover": [] - } - }, - { - "name": "BBC ENTERTAINMENT", - "editoChannelId": "livetv_bbc_entertainment", - "lcn": 400, - "idEPG": 18, - "epgAvailable": true, - "epgTextSubstitution": "", - "displayOrder": 400, - "csaCode": 1, - "slogan": "The best of British television", - "catchupChannelId": "", - "newChannel": false, - "roamingBlocked": true, - "allowedDeviceCategories": [ - "M_ANDROID", - "M_IOS", - "M_TABLET_ANDROID", - "M_TABLET_IOS", - "W_AIRPLAY", - "W_CHROMECAST", - "W_LACLETV2", - "W_SMARTTV", - "W_PC", - "S_STB" - ], - "packages": [ - "PA_bouquet_anglophone", - "PI_WHITELIST" - ], - "hasRightIAccess": true, - "hasRightMAccess": false, - "logos": [ - { - "definitionType": "mobileAppli", - "listLogos": [ - { - "size": "183x183", - "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_bbc_entertainment%2F20210604_095258%2FmobileAppli%2Flogo_183x183.png" - } - ] - }, - { - "definitionType": "mobileAppliDark", - "listLogos": [ - { - "size": "183x183", - "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_bbc_entertainment%2F20210604_095258%2FmobileAppliDark%2Flogo_183x183.png" - } - ] - }, - { - "definitionType": "webTVLogo", - "listLogos": [ - { - "size": "180x96", - "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_bbc_entertainment%2F20210604_095258%2FwebTVLogo%2Flogo_180x96.png" - } - ] - }, - { - "definitionType": "webTVSquare", - "listLogos": [ - { - "size": "150x150", - "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_bbc_entertainment%2F20210604_095258%2FwebTVSquare%2Flogo_150x150.png" - } - ] - } - ], - "mobileData": { - "wifiForbidden": false, - "wifiSecuredOnly": false, - "everywhereChannel": true, - "nomadismAllowed": true, - "drmLevels": [ - { - "definition": "SD", - "securedTerminal": [ - "DRM-HW", - "DRM-SW" - ], - "unsecuredTerminal": [ - "DRM-HW", - "DRM-SW" - ] - }, - { - "definition": "HD", - "securedTerminal": [ - "NO-DRM" - ], - "unsecuredTerminal": [ - "NO-DRM" - ] - } - ] - }, - "webdeviceData": { - "nomadismAllowed": true - }, - "technicalChannels": { - "live": [ - { - "techChannelId": "400394", - "type": "CLOUDTV", - "liveTargetURLRelativePath": "livetv_bbc_entertainment_ctv", - "usi": 400394, - "isDRMized": true, - "csa5Disabled": true - } - ], - "npvr": [ - { - "externalId": "livetv_bbc_entertainment_ctv", - "techChannelId": "400394", - "type": "CLOUDTV", - "usi": 400394, - "isDRMized": true, - "antiAdskipping": "DEACTIVATED", - "csa5Disabled": true - } - ], - "startover": [] - } - }, - { - "name": "TCM CINEMA (VO)", - "editoChannelId": "livetv_tcm_vo", - "lcn": 403, - "idEPG": 2169, - "epgAvailable": true, - "epgTextSubstitution": "", - "displayOrder": 403, - "csaCode": 1, - "slogan": "Discovering Great Cinema", - "catchupChannelId": "", - "newChannel": true, - "roamingBlocked": false, - "allowedDeviceCategories": [ - "M_ANDROID", - "M_IOS", - "M_TABLET_ANDROID", - "M_TABLET_IOS", - "W_AIRPLAY", - "W_CHROMECAST", - "W_LACLETV2", - "W_SMARTTV", - "W_PC", - "S_STB" - ], - "packages": [ - "PA_bouquet_anglophone", - "PI_WHITELIST" - ], - "hasRightIAccess": true, - "hasRightMAccess": false, - "logos": [ - { - "definitionType": "mobileAppli", - "listLogos": [ - { - "size": "183x183", - "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_tcm_vo%2F20210604_095258%2FmobileAppli%2Flogo_183x183.png" - } - ] - }, - { - "definitionType": "mobileAppliDark", - "listLogos": [ - { - "size": "183x183", - "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_tcm_vo%2F20210604_095258%2FmobileAppliDark%2Flogo_183x183.png" - } - ] - }, - { - "definitionType": "webTVLogo", - "listLogos": [ - { - "size": "180x96", - "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_tcm_vo%2F20210604_095258%2FwebTVLogo%2Flogo_180x96.png" - } - ] - }, - { - "definitionType": "webTVSquare", - "listLogos": [ - { - "size": "150x150", - "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_tcm_vo%2F20210604_095258%2FwebTVSquare%2Flogo_150x150.png" - } - ] - } - ], - "mobileData": { - "wifiForbidden": false, - "wifiSecuredOnly": false, - "everywhereChannel": true, - "nomadismAllowed": true, - "drmLevels": [ - { - "definition": "SD", - "securedTerminal": [ - "DRM-HW", - "DRM-SW" - ], - "unsecuredTerminal": [ - "DRM-HW", - "DRM-SW" - ] - }, - { - "definition": "HD", - "securedTerminal": [ - "NO-DRM" - ], - "unsecuredTerminal": [ - "NO-DRM" - ] - } - ] - }, - "webdeviceData": { - "nomadismAllowed": true - }, - "technicalChannels": { - "live": [ - { - "techChannelId": "400396", - "type": "CLOUDTV", - "liveTargetURLRelativePath": "livetv_tcm_cinema_anglais_ctv", - "usi": 400396, - "isDRMized": true, - "csa5Disabled": true - } - ], - "npvr": [ - { - "externalId": "livetv_tcm_cinema_anglais_ctv", - "techChannelId": "400396", - "type": "CLOUDTV", - "usi": 400396, - "isDRMized": true, - "antiAdskipping": "DEACTIVATED", - "csa5Disabled": true - } - ], - "startover": [] - } - }, - { - "name": "TRAVEL CHANNEL", - "editoChannelId": "livetv_travel_channel", - "lcn": 404, - "idEPG": 90404, - "epgAvailable": false, - "epgTextSubstitution": "", - "displayOrder": 404, - "csaCode": 1, - "slogan": "Inspirational, Informative, Entertaining", - "catchupChannelId": "", - "newChannel": true, - "roamingBlocked": false, - "allowedDeviceCategories": [ - "M_ANDROID", - "M_IOS", - "M_TABLET_ANDROID", - "M_TABLET_IOS", - "W_AIRPLAY", - "W_CHROMECAST", - "W_LACLETV2", - "W_SMARTTV", - "W_PC", - "S_STB" - ], - "packages": [ - "PA_bouquet_anglophone", - "PI_WHITELIST" - ], - "hasRightIAccess": true, - "hasRightMAccess": false, - "logos": [ - { - "definitionType": "mobileAppli", - "listLogos": [ - { - "size": "183x183", - "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_travel_channel%2F20210604_095258%2FmobileAppli%2Flogo_183x183.png" - } - ] - }, - { - "definitionType": "mobileAppliDark", - "listLogos": [ - { - "size": "183x183", - "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_travel_channel%2F20210604_095258%2FmobileAppliDark%2Flogo_183x183.png" - } - ] - }, - { - "definitionType": "webTVLogo", - "listLogos": [ - { - "size": "180x96", - "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_travel_channel%2F20210604_095258%2FwebTVLogo%2Flogo_180x96.png" - } - ] - }, - { - "definitionType": "webTVSquare", - "listLogos": [ - { - "size": "150x150", - "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_travel_channel%2F20210604_095258%2FwebTVSquare%2Flogo_150x150.png" - } - ] - } - ], - "mobileData": { - "wifiForbidden": false, - "wifiSecuredOnly": false, - "everywhereChannel": true, - "nomadismAllowed": true, - "drmLevels": [ - { - "definition": "SD", - "securedTerminal": [ - "DRM-HW", - "DRM-SW" - ], - "unsecuredTerminal": [ - "DRM-HW", - "DRM-SW" - ] - }, - { - "definition": "HD", - "securedTerminal": [ - "NO-DRM" - ], - "unsecuredTerminal": [ - "NO-DRM" - ] - } - ] - }, - "webdeviceData": { - "nomadismAllowed": true - }, - "technicalChannels": { - "live": [ - { - "techChannelId": "400397", - "type": "CLOUDTV", - "liveTargetURLRelativePath": "livetv_travel_channel_ctv", - "usi": 400397, - "isDRMized": true, - "csa5Disabled": true - } - ], - "npvr": [ - { - "externalId": "livetv_travel_channel_ctv", - "techChannelId": "400397", - "type": "CLOUDTV", - "usi": 400397, - "isDRMized": true, - "antiAdskipping": "DEACTIVATED", - "csa5Disabled": true - } - ], - "startover": [] - } - }, - { - "name": "FOOD NETWORK", - "editoChannelId": "livetv_food_network", - "lcn": 406, - "idEPG": 90406, - "epgAvailable": false, - "epgTextSubstitution": "", - "displayOrder": 406, - "csaCode": 1, - "slogan": "The ultimate food destination", - "catchupChannelId": "", - "newChannel": true, - "roamingBlocked": false, - "allowedDeviceCategories": [ - "M_ANDROID", - "M_IOS", - "M_TABLET_ANDROID", - "M_TABLET_IOS", - "W_AIRPLAY", - "W_CHROMECAST", - "W_LACLETV2", - "W_SMARTTV", - "W_PC", - "S_STB" - ], - "packages": [ - "PA_bouquet_anglophone", - "PI_WHITELIST" - ], - "hasRightIAccess": true, - "hasRightMAccess": false, - "logos": [ - { - "definitionType": "mobileAppli", - "listLogos": [ - { - "size": "183x183", - "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_food_network%2F20210608_154814%2FmobileAppli%2Flogo_183x183.png" - } - ] - }, - { - "definitionType": "mobileAppliDark", - "listLogos": [ - { - "size": "183x183", - "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_food_network%2F20210608_154814%2FmobileAppliDark%2Flogo_183x183.png" - } - ] - }, - { - "definitionType": "webTVLogo", - "listLogos": [ - { - "size": "180x96", - "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_food_network%2F20210608_154814%2FwebTVLogo%2Flogo_180x96.png" - } - ] - }, - { - "definitionType": "webTVSquare", - "listLogos": [ - { - "size": "150x150", - "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_food_network%2F20210608_154814%2FwebTVSquare%2Flogo_150x150.png" - } - ] - } - ], - "mobileData": { - "wifiForbidden": false, - "wifiSecuredOnly": false, - "everywhereChannel": true, - "nomadismAllowed": true, - "drmLevels": [ - { - "definition": "SD", - "securedTerminal": [ - "DRM-HW", - "DRM-SW" - ], - "unsecuredTerminal": [ - "DRM-HW", - "DRM-SW" - ] - }, - { - "definition": "HD", - "securedTerminal": [ - "NO-DRM" - ], - "unsecuredTerminal": [ - "NO-DRM" - ] - } - ] - }, - "webdeviceData": { - "nomadismAllowed": true - }, - "technicalChannels": { - "live": [ - { - "techChannelId": "400398", - "type": "CLOUDTV", - "liveTargetURLRelativePath": "livetv_food_network_ctv", - "usi": 400398, - "isDRMized": true, - "csa5Disabled": true - } - ], - "npvr": [ - { - "externalId": "livetv_food_network_ctv", - "techChannelId": "400398", - "type": "CLOUDTV", - "usi": 400398, - "isDRMized": true, - "antiAdskipping": "DEACTIVATED", - "csa5Disabled": true - } - ], - "startover": [] - } - }, - { - "name": "BOOMERANG (VO)", - "editoChannelId": "livetv_boomerang_vo", - "lcn": 407, - "idEPG": 2168, - "epgAvailable": true, - "epgTextSubstitution": "", - "displayOrder": 407, - "csaCode": 1, - "slogan": "It's all coming back to you", - "catchupChannelId": "", - "newChannel": true, - "roamingBlocked": false, - "allowedDeviceCategories": [ - "M_ANDROID", - "M_IOS", - "M_TABLET_ANDROID", - "M_TABLET_IOS", - "W_AIRPLAY", - "W_CHROMECAST", - "W_LACLETV2", - "W_SMARTTV", - "W_PC", - "S_STB" - ], - "packages": [ - "PA_bouquet_anglophone", - "PI_WHITELIST" - ], - "hasRightIAccess": true, - "hasRightMAccess": false, - "logos": [ - { - "definitionType": "mobileAppli", - "listLogos": [ - { - "size": "183x183", - "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_boomerang_vo%2F20210604_095258%2FmobileAppli%2Flogo_183x183.png" - } - ] - }, - { - "definitionType": "mobileAppliDark", - "listLogos": [ - { - "size": "183x183", - "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_boomerang_vo%2F20210604_095258%2FmobileAppliDark%2Flogo_183x183.png" - } - ] - }, - { - "definitionType": "webTVLogo", - "listLogos": [ - { - "size": "180x96", - "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_boomerang_vo%2F20210604_095258%2FwebTVLogo%2Flogo_180x96.png" - } - ] - }, - { - "definitionType": "webTVSquare", - "listLogos": [ - { - "size": "150x150", - "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_boomerang_vo%2F20210604_095258%2FwebTVSquare%2Flogo_150x150.png" - } - ] - } - ], - "mobileData": { - "wifiForbidden": false, - "wifiSecuredOnly": false, - "everywhereChannel": true, - "nomadismAllowed": true, - "drmLevels": [ - { - "definition": "SD", - "securedTerminal": [ - "DRM-HW", - "DRM-SW" - ], - "unsecuredTerminal": [ - "DRM-HW", - "DRM-SW" - ] - }, - { - "definition": "HD", - "securedTerminal": [ - "NO-DRM" - ], - "unsecuredTerminal": [ - "NO-DRM" - ] - } - ] - }, - "webdeviceData": { - "nomadismAllowed": true - }, - "technicalChannels": { - "live": [ - { - "techChannelId": "400399", - "type": "CLOUDTV", - "liveTargetURLRelativePath": "livetv_boomerang_anglais_ctv", - "usi": 400399, - "isDRMized": true, - "csa5Disabled": true - } - ], - "npvr": [ - { - "externalId": "livetv_boomerang_anglais_ctv", - "techChannelId": "400399", - "type": "CLOUDTV", - "usi": 400399, - "isDRMized": true, - "antiAdskipping": "DEACTIVATED", - "csa5Disabled": true - } - ], - "startover": [] - } - }, - { - "name": "FOXNEWS", - "editoChannelId": "livetv_foxnews", - "lcn": 408, - "idEPG": 90408, - "epgAvailable": false, - "epgTextSubstitution": "", - "displayOrder": 408, - "csaCode": 1, - "slogan": "We report, You decide", - "catchupChannelId": "", - "newChannel": true, - "roamingBlocked": false, - "allowedDeviceCategories": [ - "M_ANDROID", - "M_IOS", - "M_TABLET_ANDROID", - "M_TABLET_IOS", - "W_AIRPLAY", - "W_CHROMECAST", - "W_LACLETV2", - "W_SMARTTV", - "W_PC", - "S_STB" - ], - "packages": [ - "PA_bouquet_anglophone", - "PI_WHITELIST" - ], - "hasRightIAccess": true, - "hasRightMAccess": false, - "logos": [ - { - "definitionType": "mobileAppli", - "listLogos": [ - { - "size": "183x183", - "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_foxnews%2F20210604_095258%2FmobileAppli%2Flogo_183x183.png" - } - ] - }, - { - "definitionType": "mobileAppliDark", - "listLogos": [ - { - "size": "183x183", - "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_foxnews%2F20210604_095258%2FmobileAppliDark%2Flogo_183x183.png" - } - ] - }, - { - "definitionType": "webTVLogo", - "listLogos": [ - { - "size": "180x96", - "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_foxnews%2F20210604_095258%2FwebTVLogo%2Flogo_180x96.png" - } - ] - }, - { - "definitionType": "webTVSquare", - "listLogos": [ - { - "size": "150x150", - "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_foxnews%2F20210604_095258%2FwebTVSquare%2Flogo_150x150.png" - } - ] - } - ], - "mobileData": { - "wifiForbidden": false, - "wifiSecuredOnly": false, - "everywhereChannel": true, - "nomadismAllowed": true, - "drmLevels": [ - { - "definition": "SD", - "securedTerminal": [ - "DRM-HW", - "DRM-SW" - ], - "unsecuredTerminal": [ - "DRM-HW", - "DRM-SW" - ] - }, - { - "definition": "HD", - "securedTerminal": [ - "NO-DRM" - ], - "unsecuredTerminal": [ - "NO-DRM" - ] - } - ] - }, - "webdeviceData": { - "nomadismAllowed": true - }, - "technicalChannels": { - "live": [ - { - "techChannelId": "400400", - "type": "CLOUDTV", - "liveTargetURLRelativePath": "livetv_fox_news_ctv", - "usi": 400400, - "isDRMized": true, - "csa5Disabled": true - } - ], - "npvr": [ - { - "externalId": "livetv_fox_news_ctv", - "techChannelId": "400400", - "type": "CLOUDTV", - "usi": 400400, - "isDRMized": true, - "antiAdskipping": "DEACTIVATED", - "csa5Disabled": true - } - ], - "startover": [] - } - }, - { - "name": "RTL TELEVISION", - "editoChannelId": "livetv_rtl_television", - "lcn": 419, - "idEPG": 166, - "epgAvailable": true, - "epgTextSubstitution": "", - "displayOrder": 419, - "csaCode": 1, - "slogan": "RTL – Wilkommen zuhause", - "catchupChannelId": "", - "newChannel": true, - "roamingBlocked": false, - "allowedDeviceCategories": [ - "M_ANDROID", - "M_IOS", - "M_TABLET_ANDROID", - "M_TABLET_IOS", - "W_AIRPLAY", - "W_CHROMECAST", - "W_LACLETV2", - "W_PC", - "W_SMARTTV", - "S_STB" - ], - "packages": [ - "PA_bouquet_allemand", - "PA_BQ_BASIC_I", - "PI_WHITELIST" - ], - "hasRightIAccess": true, - "hasRightMAccess": false, - "logos": [ - { - "definitionType": "mobileAppli", - "listLogos": [ - { - "size": "183x183", - "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_rtl_television%2F20230209_170925%2FmobileAppli%2Flogo_183x183.png" - } - ] - }, - { - "definitionType": "mobileAppliDark", - "listLogos": [ - { - "size": "183x183", - "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_rtl_television%2F20230209_170925%2FmobileAppliDark%2Flogo_183x183.png" - } - ] - }, - { - "definitionType": "webTVLogo", - "listLogos": [ - { - "size": "180x96", - "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_rtl_television%2F20230209_170925%2FwebTVLogo%2Flogo_180x96.png" - } - ] - }, - { - "definitionType": "webTVSquare", - "listLogos": [ - { - "size": "150x150", - "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_rtl_television%2F20230209_170925%2FwebTVSquare%2Flogo_150x150.png" - } - ] - } - ], - "mobileData": { - "wifiForbidden": false, - "wifiSecuredOnly": false, - "everywhereChannel": true, - "nomadismAllowed": true, - "drmLevels": [ - { - "definition": "SD", - "securedTerminal": [ - "DRM-HW", - "DRM-SW" - ], - "unsecuredTerminal": [ - "DRM-HW", - "DRM-SW" - ] - }, - { - "definition": "HD", - "securedTerminal": [ - "DRM-HW", - "DRM-SW" - ], - "unsecuredTerminal": [ - "ND" - ] - } - ] - }, - "webdeviceData": { - "nomadismAllowed": true - }, - "technicalChannels": { - "live": [ - { - "techChannelId": "400417", - "type": "CLOUDTV", - "liveTargetURLRelativePath": "livetv_acces_limite_ctv", - "usi": 400417, - "isDRMized": true, - "csa5Disabled": true - } - ], - "npvr": [], - "startover": [] - } - }, - { - "name": "RTL NITRO", - "editoChannelId": "livetv_rtlnitro", - "lcn": 420, - "idEPG": 2311, - "epgAvailable": true, - "epgTextSubstitution": "", - "displayOrder": 420, - "csaCode": 1, - "slogan": "The channel for the real heroes: Men !", - "catchupChannelId": "", - "newChannel": false, - "roamingBlocked": true, - "allowedDeviceCategories": [ - "M_ANDROID", - "M_IOS", - "M_TABLET_ANDROID", - "M_TABLET_IOS", - "W_AIRPLAY", - "W_CHROMECAST", - "W_LACLETV2", - "W_PC", - "W_SMARTTV", - "S_STB" - ], - "packages": [ - "PA_bouquet_allemand", - "PA_BQ_BASIC_I", - "PI_WHITELIST" - ], - "hasRightIAccess": true, - "hasRightMAccess": false, - "logos": [ - { - "definitionType": "mobileAppli", - "listLogos": [ - { - "size": "183x183", - "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_rtlnitro%2F20200206_144429%2FmobileAppli%2Flogo_183x183.png" - } - ] - }, - { - "definitionType": "mobileAppliDark", - "listLogos": [ - { - "size": "183x183", - "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_rtlnitro%2F20200206_144429%2FmobileAppliDark%2Flogo_183x183.png" - } - ] - }, - { - "definitionType": "webTVLogo", - "listLogos": [ - { - "size": "180x96", - "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_rtlnitro%2F20200206_144429%2FwebTVLogo%2Flogo_180x96.png" - } - ] - }, - { - "definitionType": "webTVSquare", - "listLogos": [ - { - "size": "150x150", - "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_rtlnitro%2F20200206_144429%2FwebTVSquare%2Flogo_150x150.png" - } - ] - } - ], - "mobileData": { - "wifiForbidden": false, - "wifiSecuredOnly": false, - "everywhereChannel": true, - "nomadismAllowed": true, - "drmLevels": [ - { - "definition": "SD", - "securedTerminal": [ - "DRM-HW", - "DRM-SW" - ], - "unsecuredTerminal": [ - "DRM-HW", - "DRM-SW" - ] - }, - { - "definition": "HD", - "securedTerminal": [ - "DRM-HW", - "DRM-SW" - ], - "unsecuredTerminal": [ - "ND" - ] - } - ] - }, - "webdeviceData": { - "nomadismAllowed": true - }, - "technicalChannels": { - "live": [ - { - "techChannelId": "400417", - "type": "CLOUDTV", - "liveTargetURLRelativePath": "livetv_acces_limite_ctv", - "usi": 400417, - "isDRMized": true, - "csa5Disabled": true - } - ], - "npvr": [], - "startover": [] - } - }, - { - "name": "DAS ERSTE", - "editoChannelId": "livetv_ard", - "lcn": 421, - "idEPG": 13, - "epgAvailable": true, - "epgTextSubstitution": "", - "displayOrder": 421, - "csaCode": 1, - "slogan": "Chaîne généraliste", - "catchupChannelId": "", - "newChannel": false, - "roamingBlocked": true, - "allowedDeviceCategories": [ - "M_ANDROID", - "M_IOS", - "M_TABLET_ANDROID", - "M_TABLET_IOS", - "W_AIRPLAY", - "W_CHROMECAST", - "W_LACLETV2", - "W_PC", - "W_SMARTTV", - "S_STB" - ], - "packages": [ - "PA_bouquet_allemand", - "PA_BQ_BASIC_I", - "PI_WHITELIST" - ], - "hasRightIAccess": true, - "hasRightMAccess": false, - "logos": [ - { - "definitionType": "mobileAppli", - "listLogos": [ - { - "size": "183x183", - "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_ard%2F20210125_184451%2FmobileAppli%2Flogo_183x183.png" - } - ] - }, - { - "definitionType": "mobileAppliDark", - "listLogos": [ - { - "size": "183x183", - "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_ard%2F20210125_184451%2FmobileAppliDark%2Flogo_183x183.png" - } - ] - }, - { - "definitionType": "webTVLogo", - "listLogos": [ - { - "size": "180x96", - "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_ard%2F20210125_184451%2FwebTVLogo%2Flogo_180x96.png" - } - ] - }, - { - "definitionType": "webTVSquare", - "listLogos": [ - { - "size": "150x150", - "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_ard%2F20210125_184451%2FwebTVSquare%2Flogo_150x150.png" - } - ] - } - ], - "mobileData": { - "wifiForbidden": false, - "wifiSecuredOnly": false, - "everywhereChannel": true, - "nomadismAllowed": true, - "drmLevels": [ - { - "definition": "SD", - "securedTerminal": [ - "DRM-HW", - "DRM-SW" - ], - "unsecuredTerminal": [ - "DRM-HW", - "DRM-SW" - ] - }, - { - "definition": "HD", - "securedTerminal": [ - "DRM-HW", - "DRM-SW" - ], - "unsecuredTerminal": [ - "ND" - ] - } - ] - }, - "webdeviceData": { - "nomadismAllowed": true - }, - "technicalChannels": { - "live": [ - { - "techChannelId": "400417", - "type": "CLOUDTV", - "liveTargetURLRelativePath": "livetv_acces_limite_ctv", - "usi": 400417, - "isDRMized": true, - "csa5Disabled": true - } - ], - "npvr": [], - "startover": [] - } - }, - { - "name": "ZDF", - "editoChannelId": "livetv_zdf", - "lcn": 422, - "idEPG": 219, - "epgAvailable": true, - "epgTextSubstitution": "", - "displayOrder": 422, - "csaCode": 1, - "slogan": "Chaîne généraliste", - "catchupChannelId": "", - "newChannel": false, - "roamingBlocked": true, - "allowedDeviceCategories": [ - "M_ANDROID", - "M_IOS", - "M_TABLET_ANDROID", - "M_TABLET_IOS", - "W_AIRPLAY", - "W_CHROMECAST", - "W_LACLETV2", - "W_PC", - "W_SMARTTV", - "S_STB" - ], - "packages": [ - "PA_bouquet_allemand", - "PA_BQ_BASIC_I", - "PI_WHITELIST" - ], - "hasRightIAccess": true, - "hasRightMAccess": false, - "logos": [ - { - "definitionType": "mobileAppli", - "listLogos": [ - { - "size": "183x183", - "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_zdf%2F20191209_150911%2FmobileAppli%2Flogo_183x183.png" - } - ] - }, - { - "definitionType": "mobileAppliDark", - "listLogos": [ - { - "size": "183x183", - "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_zdf%2F20191209_150911%2FmobileAppliDark%2Flogo_183x183.png" - } - ] - }, - { - "definitionType": "webTVLogo", - "listLogos": [ - { - "size": "180x96", - "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_zdf%2F20191209_150911%2FwebTVLogo%2Flogo_180x96.png" - } - ] - }, - { - "definitionType": "webTVSquare", - "listLogos": [ - { - "size": "150x150", - "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_zdf%2F20191209_150911%2FwebTVSquare%2Flogo_150x150.png" - } - ] - } - ], - "mobileData": { - "wifiForbidden": false, - "wifiSecuredOnly": false, - "everywhereChannel": true, - "nomadismAllowed": true, - "drmLevels": [ - { - "definition": "SD", - "securedTerminal": [ - "DRM-HW", - "DRM-SW" - ], - "unsecuredTerminal": [ - "DRM-HW", - "DRM-SW" - ] - }, - { - "definition": "HD", - "securedTerminal": [ - "DRM-HW", - "DRM-SW" - ], - "unsecuredTerminal": [ - "ND" - ] - } - ] - }, - "webdeviceData": { - "nomadismAllowed": true - }, - "technicalChannels": { - "live": [ - { - "techChannelId": "400417", - "type": "CLOUDTV", - "liveTargetURLRelativePath": "livetv_acces_limite_ctv", - "usi": 400417, - "isDRMized": true, - "csa5Disabled": true - } - ], - "npvr": [], - "startover": [] - } - }, - { - "name": "ZDF NEO", - "editoChannelId": "livetv_zdfnitro", - "lcn": 423, - "idEPG": 973, - "epgAvailable": true, - "epgTextSubstitution": "", - "displayOrder": 423, - "csaCode": 1, - "slogan": "Sieh's mal neo", - "catchupChannelId": "", - "newChannel": false, - "roamingBlocked": true, - "allowedDeviceCategories": [ - "M_ANDROID", - "M_IOS", - "M_TABLET_ANDROID", - "M_TABLET_IOS", - "W_AIRPLAY", - "W_CHROMECAST", - "W_LACLETV2", - "W_PC", - "W_SMARTTV", - "S_STB" - ], - "packages": [ - "PA_bouquet_allemand", - "PA_BQ_BASIC_I", - "PI_WHITELIST" - ], - "hasRightIAccess": true, - "hasRightMAccess": false, - "logos": [ - { - "definitionType": "mobileAppli", - "listLogos": [ - { - "size": "183x183", - "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_zdfnitro%2F20230216_164754%2FmobileAppli%2Flogo_183x183.png" - } - ] - }, - { - "definitionType": "mobileAppliDark", - "listLogos": [ - { - "size": "183x183", - "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_zdfnitro%2F20230216_164754%2FmobileAppliDark%2Flogo_183x183.png" - } - ] - }, - { - "definitionType": "webTVLogo", - "listLogos": [ - { - "size": "180x96", - "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_zdfnitro%2F20230216_164754%2FwebTVLogo%2Flogo_180x96.png" - } - ] - }, - { - "definitionType": "webTVSquare", - "listLogos": [ - { - "size": "150x150", - "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_zdfnitro%2F20230216_164754%2FwebTVSquare%2Flogo_150x150.png" - } - ] - } - ], - "mobileData": { - "wifiForbidden": false, - "wifiSecuredOnly": false, - "everywhereChannel": true, - "nomadismAllowed": true, - "drmLevels": [ - { - "definition": "SD", - "securedTerminal": [ - "DRM-HW", - "DRM-SW" - ], - "unsecuredTerminal": [ - "DRM-HW", - "DRM-SW" - ] - }, - { - "definition": "HD", - "securedTerminal": [ - "DRM-HW", - "DRM-SW" - ], - "unsecuredTerminal": [ - "ND" - ] - } - ] - }, - "webdeviceData": { - "nomadismAllowed": true - }, - "technicalChannels": { - "live": [ - { - "techChannelId": "400417", - "type": "CLOUDTV", - "liveTargetURLRelativePath": "livetv_acces_limite_ctv", - "usi": 400417, - "isDRMized": true, - "csa5Disabled": true - } - ], - "npvr": [], - "startover": [] - } - }, - { - "name": "RTL ZWEI", - "editoChannelId": "livetv_rtl_2", - "lcn": 424, - "idEPG": 966, - "epgAvailable": true, - "epgTextSubstitution": "", - "displayOrder": 424, - "csaCode": 1, - "slogan": "Zeig mir mehr", - "catchupChannelId": "", - "newChannel": false, - "roamingBlocked": true, - "allowedDeviceCategories": [ - "M_ANDROID", - "M_IOS", - "M_TABLET_ANDROID", - "M_TABLET_IOS", - "W_AIRPLAY", - "W_CHROMECAST", - "W_LACLETV2", - "W_PC", - "W_SMARTTV", - "S_STB" - ], - "packages": [ - "PA_bouquet_allemand", - "PA_BQ_BASIC_I", - "PI_WHITELIST" - ], - "hasRightIAccess": true, - "hasRightMAccess": false, - "logos": [ - { - "definitionType": "mobileAppli", - "listLogos": [ - { - "size": "183x183", - "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_rtl_2%2F20230216_164754%2FmobileAppli%2Flogo_183x183.png" - } - ] - }, - { - "definitionType": "mobileAppliDark", - "listLogos": [ - { - "size": "183x183", - "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_rtl_2%2F20230216_164754%2FmobileAppliDark%2Flogo_183x183.png" - } - ] - }, - { - "definitionType": "webTVLogo", - "listLogos": [ - { - "size": "180x96", - "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_rtl_2%2F20230216_164754%2FwebTVLogo%2Flogo_180x96.png" - } - ] - }, - { - "definitionType": "webTVSquare", - "listLogos": [ - { - "size": "150x150", - "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_rtl_2%2F20230216_164754%2FwebTVSquare%2Flogo_150x150.png" - } - ] - } - ], - "mobileData": { - "wifiForbidden": false, - "wifiSecuredOnly": false, - "everywhereChannel": true, - "nomadismAllowed": true, - "drmLevels": [ - { - "definition": "SD", - "securedTerminal": [ - "DRM-HW", - "DRM-SW" - ], - "unsecuredTerminal": [ - "DRM-HW", - "DRM-SW" - ] - }, - { - "definition": "HD", - "securedTerminal": [ - "DRM-HW", - "DRM-SW" - ], - "unsecuredTerminal": [ - "ND" - ] - } - ] - }, - "webdeviceData": { - "nomadismAllowed": true - }, - "technicalChannels": { - "live": [ - { - "techChannelId": "400417", - "type": "CLOUDTV", - "liveTargetURLRelativePath": "livetv_acces_limite_ctv", - "usi": 400417, - "isDRMized": true, - "csa5Disabled": true - } - ], - "npvr": [], - "startover": [] - } - }, - { - "name": "VOX", - "editoChannelId": "livetv_vox", - "lcn": 425, - "idEPG": 971, - "epgAvailable": true, - "epgTextSubstitution": "", - "displayOrder": 425, - "csaCode": 1, - "slogan": "Chaîne généraliste", - "catchupChannelId": "", - "newChannel": false, - "roamingBlocked": true, - "allowedDeviceCategories": [ - "M_ANDROID", - "M_IOS", - "M_TABLET_ANDROID", - "M_TABLET_IOS", - "W_AIRPLAY", - "W_CHROMECAST", - "W_LACLETV2", - "W_PC", - "W_SMARTTV", - "S_STB" - ], - "packages": [ - "PA_bouquet_allemand", - "PA_BQ_BASIC_I", - "PI_WHITELIST" - ], - "hasRightIAccess": true, - "hasRightMAccess": false, - "logos": [ - { - "definitionType": "mobileAppli", - "listLogos": [ - { - "size": "183x183", - "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_vox%2F20230216_164754%2FmobileAppli%2Flogo_183x183.png" - } - ] - }, - { - "definitionType": "mobileAppliDark", - "listLogos": [ - { - "size": "183x183", - "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_vox%2F20230216_164754%2FmobileAppliDark%2Flogo_183x183.png" - } - ] - }, - { - "definitionType": "webTVLogo", - "listLogos": [ - { - "size": "180x96", - "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_vox%2F20230216_164754%2FwebTVLogo%2Flogo_180x96.png" - } - ] - }, - { - "definitionType": "webTVSquare", - "listLogos": [ - { - "size": "150x150", - "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_vox%2F20230216_164754%2FwebTVSquare%2Flogo_150x150.png" - } - ] - } - ], - "mobileData": { - "wifiForbidden": false, - "wifiSecuredOnly": false, - "everywhereChannel": true, - "nomadismAllowed": true, - "drmLevels": [ - { - "definition": "SD", - "securedTerminal": [ - "DRM-HW", - "DRM-SW" - ], - "unsecuredTerminal": [ - "DRM-HW", - "DRM-SW" - ] - }, - { - "definition": "HD", - "securedTerminal": [ - "DRM-HW", - "DRM-SW" - ], - "unsecuredTerminal": [ - "ND" - ] - } - ] - }, - "webdeviceData": { - "nomadismAllowed": true - }, - "technicalChannels": { - "live": [ - { - "techChannelId": "400417", - "type": "CLOUDTV", - "liveTargetURLRelativePath": "livetv_acces_limite_ctv", - "usi": 400417, - "isDRMized": true, - "csa5Disabled": true - } - ], - "npvr": [], - "startover": [] - } - }, - { - "name": "PROSIEBEN", - "editoChannelId": "livetv_prosieben", - "lcn": 427, - "idEPG": 964, - "epgAvailable": true, - "epgTextSubstitution": "", - "displayOrder": 427, - "csaCode": 1, - "slogan": "We Love To Entertain You", - "catchupChannelId": "", - "newChannel": false, - "roamingBlocked": true, - "allowedDeviceCategories": [ - "M_ANDROID", - "M_IOS", - "M_TABLET_ANDROID", - "M_TABLET_IOS", - "W_AIRPLAY", - "W_CHROMECAST", - "W_LACLETV2", - "W_PC", - "W_SMARTTV", - "S_STB" - ], - "packages": [ - "PA_bouquet_allemand", - "PA_BQ_BASIC_I", - "PI_WHITELIST" - ], - "hasRightIAccess": true, - "hasRightMAccess": false, - "logos": [ - { - "definitionType": "mobileAppli", - "listLogos": [ - { - "size": "183x183", - "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_prosieben%2F20230216_164754%2FmobileAppli%2Flogo_183x183.png" - } - ] - }, - { - "definitionType": "mobileAppliDark", - "listLogos": [ - { - "size": "183x183", - "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_prosieben%2F20230216_164754%2FmobileAppliDark%2Flogo_183x183.png" - } - ] - }, - { - "definitionType": "webTVLogo", - "listLogos": [ - { - "size": "180x96", - "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_prosieben%2F20230216_164754%2FwebTVLogo%2Flogo_180x96.png" - } - ] - }, - { - "definitionType": "webTVSquare", - "listLogos": [ - { - "size": "150x150", - "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_prosieben%2F20230216_164754%2FwebTVSquare%2Flogo_150x150.png" - } - ] - } - ], - "mobileData": { - "wifiForbidden": false, - "wifiSecuredOnly": false, - "everywhereChannel": true, - "nomadismAllowed": true, - "drmLevels": [ - { - "definition": "SD", - "securedTerminal": [ - "DRM-HW", - "DRM-SW" - ], - "unsecuredTerminal": [ - "DRM-HW", - "DRM-SW" - ] - }, - { - "definition": "HD", - "securedTerminal": [ - "DRM-HW", - "DRM-SW" - ], - "unsecuredTerminal": [ - "ND" - ] - } - ] - }, - "webdeviceData": { - "nomadismAllowed": true - }, - "technicalChannels": { - "live": [ - { - "techChannelId": "400417", - "type": "CLOUDTV", - "liveTargetURLRelativePath": "livetv_acces_limite_ctv", - "usi": 400417, - "isDRMized": true, - "csa5Disabled": true - } - ], - "npvr": [], - "startover": [] - } - }, - { - "name": "SUPER RTL", - "editoChannelId": "livetv_super_rtl", - "lcn": 428, - "idEPG": 1854, - "epgAvailable": true, - "epgTextSubstitution": "", - "displayOrder": 428, - "csaCode": 1, - "slogan": "Kids Channel", - "catchupChannelId": "", - "newChannel": false, - "roamingBlocked": true, - "allowedDeviceCategories": [ - "M_ANDROID", - "M_IOS", - "M_TABLET_ANDROID", - "M_TABLET_IOS", - "W_AIRPLAY", - "W_CHROMECAST", - "W_LACLETV2", - "W_PC", - "W_SMARTTV", - "S_STB" - ], - "packages": [ - "PA_bouquet_allemand", - "PA_BQ_BASIC_I", - "PI_WHITELIST" - ], - "hasRightIAccess": true, - "hasRightMAccess": false, - "logos": [ - { - "definitionType": "mobileAppli", - "listLogos": [ - { - "size": "183x183", - "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_super_rtl%2F20230216_164754%2FmobileAppli%2Flogo_183x183.png" - } - ] - }, - { - "definitionType": "mobileAppliDark", - "listLogos": [ - { - "size": "183x183", - "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_super_rtl%2F20230216_164754%2FmobileAppliDark%2Flogo_183x183.png" - } - ] - }, - { - "definitionType": "webTVLogo", - "listLogos": [ - { - "size": "180x96", - "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_super_rtl%2F20230216_164754%2FwebTVLogo%2Flogo_180x96.png" - } - ] - }, - { - "definitionType": "webTVSquare", - "listLogos": [ - { - "size": "150x150", - "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_super_rtl%2F20230216_164754%2FwebTVSquare%2Flogo_150x150.png" - } - ] - } - ], - "mobileData": { - "wifiForbidden": false, - "wifiSecuredOnly": false, - "everywhereChannel": true, - "nomadismAllowed": true, - "drmLevels": [ - { - "definition": "SD", - "securedTerminal": [ - "DRM-HW", - "DRM-SW" - ], - "unsecuredTerminal": [ - "DRM-HW", - "DRM-SW" - ] - }, - { - "definition": "HD", - "securedTerminal": [ - "DRM-HW", - "DRM-SW" - ], - "unsecuredTerminal": [ - "ND" - ] - } - ] - }, - "webdeviceData": { - "nomadismAllowed": true - }, - "technicalChannels": { - "live": [ - { - "techChannelId": "400417", - "type": "CLOUDTV", - "liveTargetURLRelativePath": "livetv_acces_limite_ctv", - "usi": 400417, - "isDRMized": true, - "csa5Disabled": true - } - ], - "npvr": [], - "startover": [] - } - }, - { - "name": "3SAT", - "editoChannelId": "livetv_3sat", - "lcn": 431, - "idEPG": 960, - "epgAvailable": true, - "epgTextSubstitution": "", - "displayOrder": 431, - "csaCode": 1, - "slogan": "Anders fernsehen", - "catchupChannelId": "", - "newChannel": false, - "roamingBlocked": true, - "allowedDeviceCategories": [ - "M_ANDROID", - "M_IOS", - "M_TABLET_ANDROID", - "M_TABLET_IOS", - "W_AIRPLAY", - "W_CHROMECAST", - "W_LACLETV2", - "W_PC", - "W_SMARTTV", - "S_STB" - ], - "packages": [ - "PA_bouquet_allemand", - "PA_BQ_BASIC_I", - "PI_WHITELIST" - ], - "hasRightIAccess": true, - "hasRightMAccess": false, - "logos": [ - { - "definitionType": "mobileAppli", - "listLogos": [ - { - "size": "183x183", - "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_3sat%2F20230216_164754%2FmobileAppli%2Flogo_183x183.png" - } - ] - }, - { - "definitionType": "mobileAppliDark", - "listLogos": [ - { - "size": "183x183", - "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_3sat%2F20230216_164754%2FmobileAppliDark%2Flogo_183x183.png" - } - ] - }, - { - "definitionType": "webTVLogo", - "listLogos": [ - { - "size": "180x96", - "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_3sat%2F20230216_164754%2FwebTVLogo%2Flogo_180x96.png" - } - ] - }, - { - "definitionType": "webTVSquare", - "listLogos": [ - { - "size": "150x150", - "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_3sat%2F20230216_164754%2FwebTVSquare%2Flogo_150x150.png" - } - ] - } - ], - "mobileData": { - "wifiForbidden": false, - "wifiSecuredOnly": false, - "everywhereChannel": true, - "nomadismAllowed": true, - "drmLevels": [ - { - "definition": "SD", - "securedTerminal": [ - "DRM-HW", - "DRM-SW" - ], - "unsecuredTerminal": [ - "DRM-HW", - "DRM-SW" - ] - }, - { - "definition": "HD", - "securedTerminal": [ - "DRM-HW", - "DRM-SW" - ], - "unsecuredTerminal": [ - "ND" - ] - } - ] - }, - "webdeviceData": { - "nomadismAllowed": true - }, - "technicalChannels": { - "live": [ - { - "techChannelId": "400417", - "type": "CLOUDTV", - "liveTargetURLRelativePath": "livetv_acces_limite_ctv", - "usi": 400417, - "isDRMized": true, - "csa5Disabled": true - } - ], - "npvr": [], - "startover": [] - } - }, - { - "name": "ONE", - "editoChannelId": "livetv_one", - "lcn": 432, - "idEPG": 979, - "epgAvailable": true, - "epgTextSubstitution": "", - "displayOrder": 432, - "csaCode": 1, - "slogan": "Eins für euch", - "catchupChannelId": "", - "newChannel": false, - "roamingBlocked": true, - "allowedDeviceCategories": [ - "M_ANDROID", - "M_IOS", - "M_TABLET_ANDROID", - "M_TABLET_IOS", - "W_AIRPLAY", - "W_CHROMECAST", - "W_LACLETV2", - "W_PC", - "W_SMARTTV", - "S_STB" - ], - "packages": [ - "PA_bouquet_allemand", - "PA_BQ_BASIC_I", - "PI_WHITELIST" - ], - "hasRightIAccess": true, - "hasRightMAccess": false, - "logos": [ - { - "definitionType": "mobileAppli", - "listLogos": [ - { - "size": "183x183", - "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_one%2F20230216_164754%2FmobileAppli%2Flogo_183x183.png" - } - ] - }, - { - "definitionType": "mobileAppliDark", - "listLogos": [ - { - "size": "183x183", - "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_one%2F20230216_164754%2FmobileAppliDark%2Flogo_183x183.png" - } - ] - }, - { - "definitionType": "webTVLogo", - "listLogos": [ - { - "size": "180x96", - "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_one%2F20230216_164754%2FwebTVLogo%2Flogo_180x96.png" - } - ] - }, - { - "definitionType": "webTVSquare", - "listLogos": [ - { - "size": "150x150", - "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_one%2F20230216_164754%2FwebTVSquare%2Flogo_150x150.png" - } - ] - } - ], - "mobileData": { - "wifiForbidden": false, - "wifiSecuredOnly": false, - "everywhereChannel": true, - "nomadismAllowed": true, - "drmLevels": [ - { - "definition": "SD", - "securedTerminal": [ - "DRM-HW", - "DRM-SW" - ], - "unsecuredTerminal": [ - "DRM-HW", - "DRM-SW" - ] - }, - { - "definition": "HD", - "securedTerminal": [ - "DRM-HW", - "DRM-SW" - ], - "unsecuredTerminal": [ - "ND" - ] - } - ] - }, - "webdeviceData": { - "nomadismAllowed": true - }, - "technicalChannels": { - "live": [ - { - "techChannelId": "400417", - "type": "CLOUDTV", - "liveTargetURLRelativePath": "livetv_acces_limite_ctv", - "usi": 400417, - "isDRMized": true, - "csa5Disabled": true - } - ], - "npvr": [], - "startover": [] - } - }, - { - "name": "TVE INTERNACIONAL", - "editoChannelId": "livetv_tvei", - "lcn": 433, - "idEPG": 208, - "epgAvailable": true, - "epgTextSubstitution": "", - "displayOrder": 433, - "csaCode": 1, - "slogan": "La chaîne généraliste espagnole", - "catchupChannelId": "", - "newChannel": true, - "roamingBlocked": true, - "allowedDeviceCategories": [ - "M_ANDROID", - "M_IOS", - "M_TABLET_ANDROID", - "M_TABLET_IOS", - "W_AIRPLAY", - "W_CHROMECAST", - "W_LACLETV2", - "W_PC", - "W_SMARTTV", - "S_STB" - ], - "packages": [ - "PA_BQ_TVDIGITALE_I", - "PA_BQ_BASIC_I", - "PA_BQ_BASICQUAD_I", - "PI_WHITELIST" - ], - "hasRightIAccess": true, - "hasRightMAccess": false, - "logos": [ - { - "definitionType": "mobileAppli", - "listLogos": [ - { - "size": "183x183", - "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_tvei%2F20151026_092415%2FmobileAppli%2Flogo_183x183.png" - } - ] - }, - { - "definitionType": "mobileAppliDark", - "listLogos": [ - { - "size": "183x183", - "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_tvei%2F20151026_092415%2FmobileAppliDark%2Flogo_183x183.png" - } - ] - }, - { - "definitionType": "webTVLogo", - "listLogos": [ - { - "size": "180x96", - "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_tvei%2F20151026_092415%2FwebTVLogo%2Flogo_180x96.png" - } - ] - }, - { - "definitionType": "webTVSquare", - "listLogos": [ - { - "size": "150x150", - "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_tvei%2F20151026_092415%2FwebTVSquare%2Flogo_150x150.png" - } - ] - } - ], - "mobileData": { - "wifiForbidden": false, - "wifiSecuredOnly": false, - "everywhereChannel": true, - "nomadismAllowed": true, - "drmLevels": [ - { - "definition": "SD", - "securedTerminal": [ - "DRM-HW", - "DRM-SW" - ], - "unsecuredTerminal": [ - "DRM-HW", - "DRM-SW" - ] - }, - { - "definition": "HD", - "securedTerminal": [ - "ND" - ], - "unsecuredTerminal": [ - "ND" - ] - } - ] - }, - "webdeviceData": { - "nomadismAllowed": true - }, - "technicalChannels": { - "live": [ - { - "techChannelId": "400184", - "type": "CLOUDTV", - "liveTargetURLRelativePath": "livetv_tve_internacional_ctv", - "usi": 400184, - "isDRMized": true, - "csa5Disabled": true - } - ], - "npvr": [ - { - "externalId": "livetv_tve_internacional_ctv", - "techChannelId": "400184", - "type": "CLOUDTV", - "usi": 400184, - "isDRMized": true, - "antiAdskipping": "DEACTIVATED", - "csa5Disabled": true - } - ], - "startover": [] - } - }, - { - "name": "ANTENA 3", - "editoChannelId": "livetv_antena_3", - "lcn": 434, - "idEPG": 90434, - "epgAvailable": false, - "epgTextSubstitution": "", - "displayOrder": 434, - "csaCode": 1, - "slogan": "Chaîne généraliste espagnole", - "catchupChannelId": "", - "newChannel": true, - "roamingBlocked": false, - "allowedDeviceCategories": [ - "M_ANDROID", - "M_IOS", - "M_TABLET_ANDROID", - "M_TABLET_IOS", - "W_AIRPLAY", - "W_CHROMECAST", - "W_LACLETV2", - "W_PC", - "W_SMARTTV", - "S_STB" - ], - "packages": [ - "PA_bouquet_espagnol", - "PI_WHITELIST" - ], - "hasRightIAccess": true, - "hasRightMAccess": false, - "logos": [ - { - "definitionType": "mobileAppli", - "listLogos": [ - { - "size": "183x183", - "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_antena_3%2F20210910_084754%2FmobileAppli%2Flogo_183x183.png" - } - ] - }, - { - "definitionType": "mobileAppliDark", - "listLogos": [ - { - "size": "183x183", - "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_antena_3%2F20210910_084754%2FmobileAppliDark%2Flogo_183x183.png" - } - ] - }, - { - "definitionType": "webTVLogo", - "listLogos": [ - { - "size": "180x96", - "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_antena_3%2F20210910_084754%2FwebTVLogo%2Flogo_180x96.png" - } - ] - }, - { - "definitionType": "webTVSquare", - "listLogos": [ - { - "size": "150x150", - "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_antena_3%2F20210910_084754%2FwebTVSquare%2Flogo_150x150.png" - } - ] - } - ], - "mobileData": { - "wifiForbidden": false, - "wifiSecuredOnly": false, - "everywhereChannel": true, - "nomadismAllowed": true, - "drmLevels": [ - { - "definition": "SD", - "securedTerminal": [ - "DRM-HW", - "DRM-SW" - ], - "unsecuredTerminal": [ - "DRM-HW", - "DRM-SW" - ] - }, - { - "definition": "HD", - "securedTerminal": [ - "NO-DRM" - ], - "unsecuredTerminal": [ - "NO-DRM" - ] - } - ] - }, - "webdeviceData": { - "nomadismAllowed": true - }, - "technicalChannels": { - "live": [ - { - "techChannelId": "400416", - "type": "CLOUDTV", - "liveTargetURLRelativePath": "livetv_antena_3_ctv", - "usi": 400416, - "isDRMized": true, - "csa5Disabled": true - } - ], - "npvr": [ - { - "externalId": "livetv_antena_3_ctv", - "techChannelId": "400416", - "type": "CLOUDTV", - "usi": 400416, - "isDRMized": true, - "antiAdskipping": "DEACTIVATED", - "csa5Disabled": true - } - ], - "startover": [] - } - }, - { - "name": "STAR TVE", - "editoChannelId": "livetv_star_tve", - "lcn": 435, - "idEPG": 90435, - "epgAvailable": false, - "epgTextSubstitution": "", - "displayOrder": 435, - "csaCode": 1, - "slogan": "Fiction/Entertainment", - "catchupChannelId": "", - "newChannel": true, - "roamingBlocked": false, - "allowedDeviceCategories": [ - "M_ANDROID", - "M_IOS", - "M_TABLET_ANDROID", - "M_TABLET_IOS", - "W_AIRPLAY", - "W_CHROMECAST", - "W_LACLETV2", - "W_PC", - "W_SMARTTV", - "S_STB" - ], - "packages": [ - "PA_bouquet_espagnol", - "PI_WHITELIST" - ], - "hasRightIAccess": true, - "hasRightMAccess": false, - "logos": [ - { - "definitionType": "mobileAppli", - "listLogos": [ - { - "size": "183x183", - "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_star_tve%2F20210910_084754%2FmobileAppli%2Flogo_183x183.png" - } - ] - }, - { - "definitionType": "mobileAppliDark", - "listLogos": [ - { - "size": "183x183", - "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_star_tve%2F20210910_084754%2FmobileAppliDark%2Flogo_183x183.png" - } - ] - }, - { - "definitionType": "webTVLogo", - "listLogos": [ - { - "size": "180x96", - "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_star_tve%2F20210910_084754%2FwebTVLogo%2Flogo_180x96.png" - } - ] - }, - { - "definitionType": "webTVSquare", - "listLogos": [ - { - "size": "150x150", - "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_star_tve%2F20210910_084754%2FwebTVSquare%2Flogo_150x150.png" - } - ] - } - ], - "mobileData": { - "wifiForbidden": false, - "wifiSecuredOnly": false, - "everywhereChannel": true, - "nomadismAllowed": true, - "drmLevels": [ - { - "definition": "SD", - "securedTerminal": [ - "DRM-HW", - "DRM-SW" - ], - "unsecuredTerminal": [ - "DRM-HW", - "DRM-SW" - ] - }, - { - "definition": "HD", - "securedTerminal": [ - "NO-DRM" - ], - "unsecuredTerminal": [ - "NO-DRM" - ] - } - ] - }, - "webdeviceData": { - "nomadismAllowed": true - }, - "technicalChannels": { - "live": [ - { - "techChannelId": "400410", - "type": "CLOUDTV", - "liveTargetURLRelativePath": "livetv_star_tve_ctv", - "usi": 400410, - "isDRMized": true, - "csa5Disabled": true - } - ], - "npvr": [ - { - "externalId": "livetv_star_tve_ctv", - "techChannelId": "400410", - "type": "CLOUDTV", - "usi": 400410, - "isDRMized": true, - "antiAdskipping": "DEACTIVATED", - "csa5Disabled": true - } - ], - "startover": [] - } - }, - { - "name": "A3 SERIES", - "editoChannelId": "livetv_a3_series", - "lcn": 436, - "idEPG": 90436, - "epgAvailable": false, - "epgTextSubstitution": "", - "displayOrder": 436, - "csaCode": 1, - "slogan": "Les meilleures séries espagnoles", - "catchupChannelId": "", - "newChannel": true, - "roamingBlocked": false, - "allowedDeviceCategories": [ - "M_ANDROID", - "M_IOS", - "M_TABLET_ANDROID", - "M_TABLET_IOS", - "W_AIRPLAY", - "W_CHROMECAST", - "W_LACLETV2", - "W_PC", - "W_SMARTTV", - "S_STB" - ], - "packages": [ - "PA_bouquet_espagnol", - "PI_WHITELIST" - ], - "hasRightIAccess": true, - "hasRightMAccess": false, - "logos": [ - { - "definitionType": "mobileAppli", - "listLogos": [ - { - "size": "183x183", - "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_a3_series%2F20210910_084754%2FmobileAppli%2Flogo_183x183.png" - } - ] - }, - { - "definitionType": "mobileAppliDark", - "listLogos": [ - { - "size": "183x183", - "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_a3_series%2F20210910_084754%2FmobileAppliDark%2Flogo_183x183.png" - } - ] - }, - { - "definitionType": "webTVLogo", - "listLogos": [ - { - "size": "180x96", - "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_a3_series%2F20210910_084754%2FwebTVLogo%2Flogo_180x96.png" - } - ] - }, - { - "definitionType": "webTVSquare", - "listLogos": [ - { - "size": "150x150", - "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_a3_series%2F20210910_084754%2FwebTVSquare%2Flogo_150x150.png" - } - ] - } - ], - "mobileData": { - "wifiForbidden": false, - "wifiSecuredOnly": false, - "everywhereChannel": true, - "nomadismAllowed": true, - "drmLevels": [ - { - "definition": "SD", - "securedTerminal": [ - "DRM-HW", - "DRM-SW" - ], - "unsecuredTerminal": [ - "DRM-HW", - "DRM-SW" - ] - }, - { - "definition": "HD", - "securedTerminal": [ - "NO-DRM" - ], - "unsecuredTerminal": [ - "NO-DRM" - ] - } - ] - }, - "webdeviceData": { - "nomadismAllowed": true - }, - "technicalChannels": { - "live": [ - { - "techChannelId": "400411", - "type": "CLOUDTV", - "liveTargetURLRelativePath": "livetv_a3_series_ctv", - "usi": 400411, - "isDRMized": true, - "csa5Disabled": true - } - ], - "npvr": [ - { - "externalId": "livetv_a3_series_ctv", - "techChannelId": "400411", - "type": "CLOUDTV", - "usi": 400411, - "isDRMized": true, - "antiAdskipping": "DEACTIVATED", - "csa5Disabled": true - } - ], - "startover": [] - } - }, - { - "name": "CANAL 24 HORAS", - "editoChannelId": "livetv_canal_24_horas", - "lcn": 437, - "idEPG": 90437, - "epgAvailable": false, - "epgTextSubstitution": "", - "displayOrder": 437, - "csaCode": 1, - "slogan": "L'actualité 24/24 en espagnol", - "catchupChannelId": "", - "newChannel": true, - "roamingBlocked": false, - "allowedDeviceCategories": [ - "M_ANDROID", - "M_IOS", - "M_TABLET_ANDROID", - "M_TABLET_IOS", - "W_AIRPLAY", - "W_CHROMECAST", - "W_LACLETV2", - "W_PC", - "W_SMARTTV", - "S_STB" - ], - "packages": [ - "PA_bouquet_espagnol", - "PI_WHITELIST" - ], - "hasRightIAccess": true, - "hasRightMAccess": false, - "logos": [ - { - "definitionType": "mobileAppli", - "listLogos": [ - { - "size": "183x183", - "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_canal_24_horas%2F20210910_084754%2FmobileAppli%2Flogo_183x183.png" - } - ] - }, - { - "definitionType": "mobileAppliDark", - "listLogos": [ - { - "size": "183x183", - "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_canal_24_horas%2F20210910_084754%2FmobileAppliDark%2Flogo_183x183.png" - } - ] - }, - { - "definitionType": "webTVLogo", - "listLogos": [ - { - "size": "180x96", - "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_canal_24_horas%2F20210910_084754%2FwebTVLogo%2Flogo_180x96.png" - } - ] - }, - { - "definitionType": "webTVSquare", - "listLogos": [ - { - "size": "150x150", - "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_canal_24_horas%2F20210910_084754%2FwebTVSquare%2Flogo_150x150.png" - } - ] - } - ], - "mobileData": { - "wifiForbidden": false, - "wifiSecuredOnly": false, - "everywhereChannel": true, - "nomadismAllowed": true, - "drmLevels": [ - { - "definition": "SD", - "securedTerminal": [ - "DRM-HW", - "DRM-SW" - ], - "unsecuredTerminal": [ - "DRM-HW", - "DRM-SW" - ] - }, - { - "definition": "HD", - "securedTerminal": [ - "NO-DRM" - ], - "unsecuredTerminal": [ - "NO-DRM" - ] - } - ] - }, - "webdeviceData": { - "nomadismAllowed": true - }, - "technicalChannels": { - "live": [ - { - "techChannelId": "400413", - "type": "CLOUDTV", - "liveTargetURLRelativePath": "livetv_canal_24_horas_ctv", - "usi": 400413, - "isDRMized": true, - "csa5Disabled": true - } - ], - "npvr": [ - { - "externalId": "livetv_canal_24_horas_ctv", - "techChannelId": "400413", - "type": "CLOUDTV", - "usi": 400413, - "isDRMized": true, - "antiAdskipping": "DEACTIVATED", - "csa5Disabled": true - } - ], - "startover": [] - } - }, - { - "name": "ALL FLAMENCO", - "editoChannelId": "livetv_all_flamenco", - "lcn": 438, - "idEPG": 90438, - "epgAvailable": false, - "epgTextSubstitution": "", - "displayOrder": 438, - "csaCode": 1, - "slogan": "La chaîne des amoureux du Flamenco", - "catchupChannelId": "", - "newChannel": true, - "roamingBlocked": false, - "allowedDeviceCategories": [ - "M_ANDROID", - "M_IOS", - "M_TABLET_ANDROID", - "M_TABLET_IOS", - "W_AIRPLAY", - "W_CHROMECAST", - "W_LACLETV2", - "W_PC", - "W_SMARTTV", - "S_STB" - ], - "packages": [ - "PA_bouquet_espagnol", - "PI_WHITELIST" - ], - "hasRightIAccess": true, - "hasRightMAccess": false, - "logos": [ - { - "definitionType": "mobileAppli", - "listLogos": [ - { - "size": "183x183", - "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_all_flamenco%2F20210910_084754%2FmobileAppli%2Flogo_183x183.png" - } - ] - }, - { - "definitionType": "mobileAppliDark", - "listLogos": [ - { - "size": "183x183", - "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_all_flamenco%2F20210910_084754%2FmobileAppliDark%2Flogo_183x183.png" - } - ] - }, - { - "definitionType": "webTVLogo", - "listLogos": [ - { - "size": "180x96", - "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_all_flamenco%2F20210910_084754%2FwebTVLogo%2Flogo_180x96.png" - } - ] - }, - { - "definitionType": "webTVSquare", - "listLogos": [ - { - "size": "150x150", - "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_all_flamenco%2F20210910_084754%2FwebTVSquare%2Flogo_150x150.png" - } - ] - } - ], - "mobileData": { - "wifiForbidden": false, - "wifiSecuredOnly": false, - "everywhereChannel": true, - "nomadismAllowed": true, - "drmLevels": [ - { - "definition": "SD", - "securedTerminal": [ - "DRM-HW", - "DRM-SW" - ], - "unsecuredTerminal": [ - "DRM-HW", - "DRM-SW" - ] - }, - { - "definition": "HD", - "securedTerminal": [ - "NO-DRM" - ], - "unsecuredTerminal": [ - "NO-DRM" - ] - } - ] - }, - "webdeviceData": { - "nomadismAllowed": true - }, - "technicalChannels": { - "live": [ - { - "techChannelId": "400408", - "type": "CLOUDTV", - "liveTargetURLRelativePath": "livetv_all_flamenco_ctv", - "usi": 400408, - "isDRMized": true, - "csa5Disabled": true - } - ], - "npvr": [ - { - "externalId": "livetv_all_flamenco_ctv", - "techChannelId": "400408", - "type": "CLOUDTV", - "usi": 400408, - "isDRMized": true, - "antiAdskipping": "DEACTIVATED", - "csa5Disabled": true - } - ], - "startover": [] - } - }, - { - "name": "TV3 CATALUNYA", - "editoChannelId": "livetv_tv3_catalunya", - "lcn": 439, - "idEPG": 90439, - "epgAvailable": false, - "epgTextSubstitution": "", - "displayOrder": 439, - "csaCode": 1, - "slogan": "La chaîne de la Catalogne", - "catchupChannelId": "", - "newChannel": true, - "roamingBlocked": false, - "allowedDeviceCategories": [ - "M_ANDROID", - "M_IOS", - "M_TABLET_ANDROID", - "M_TABLET_IOS", - "W_AIRPLAY", - "W_CHROMECAST", - "W_LACLETV2", - "W_PC", - "W_SMARTTV", - "S_STB" - ], - "packages": [ - "PA_bouquet_espagnol", - "PI_WHITELIST" - ], - "hasRightIAccess": true, - "hasRightMAccess": false, - "logos": [ - { - "definitionType": "mobileAppli", - "listLogos": [ - { - "size": "183x183", - "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_tv3_catalunya%2F20210910_084754%2FmobileAppli%2Flogo_183x183.png" - } - ] - }, - { - "definitionType": "mobileAppliDark", - "listLogos": [ - { - "size": "183x183", - "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_tv3_catalunya%2F20210910_084754%2FmobileAppliDark%2Flogo_183x183.png" - } - ] - }, - { - "definitionType": "webTVLogo", - "listLogos": [ - { - "size": "180x96", - "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_tv3_catalunya%2F20210910_084754%2FwebTVLogo%2Flogo_180x96.png" - } - ] - }, - { - "definitionType": "webTVSquare", - "listLogos": [ - { - "size": "150x150", - "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_tv3_catalunya%2F20210910_084754%2FwebTVSquare%2Flogo_150x150.png" - } - ] - } - ], - "mobileData": { - "wifiForbidden": false, - "wifiSecuredOnly": false, - "everywhereChannel": true, - "nomadismAllowed": true, - "drmLevels": [ - { - "definition": "SD", - "securedTerminal": [ - "DRM-HW", - "DRM-SW" - ], - "unsecuredTerminal": [ - "DRM-HW", - "DRM-SW" - ] - }, - { - "definition": "HD", - "securedTerminal": [ - "NO-DRM" - ], - "unsecuredTerminal": [ - "NO-DRM" - ] - } - ] - }, - "webdeviceData": { - "nomadismAllowed": true - }, - "technicalChannels": { - "live": [ - { - "techChannelId": "400412", - "type": "CLOUDTV", - "liveTargetURLRelativePath": "livetv_tv3_catalunya_ctv", - "usi": 400412, - "isDRMized": true, - "csa5Disabled": true - } - ], - "npvr": [ - { - "externalId": "livetv_tv3_catalunya_ctv", - "techChannelId": "400412", - "type": "CLOUDTV", - "usi": 400412, - "isDRMized": true, - "antiAdskipping": "DEACTIVATED", - "csa5Disabled": true - } - ], - "startover": [] - } - }, - { - "name": "ETB BASQUE", - "editoChannelId": "livetv_etb_sat", - "lcn": 440, - "idEPG": 90440, - "epgAvailable": false, - "epgTextSubstitution": "", - "displayOrder": 440, - "csaCode": 1, - "slogan": "La chaîne du Pays basque", - "catchupChannelId": "", - "newChannel": true, - "roamingBlocked": false, - "allowedDeviceCategories": [ - "M_ANDROID", - "M_IOS", - "M_TABLET_ANDROID", - "M_TABLET_IOS", - "W_AIRPLAY", - "W_CHROMECAST", - "W_LACLETV2", - "W_PC", - "W_SMARTTV", - "S_STB" - ], - "packages": [ - "PA_bouquet_espagnol", - "PI_WHITELIST" - ], - "hasRightIAccess": true, - "hasRightMAccess": false, - "logos": [ - { - "definitionType": "mobileAppli", - "listLogos": [ - { - "size": "183x183", - "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_etb_sat%2F20230713_105554%2FmobileAppli%2Flogo_183x183.png" - } - ] - }, - { - "definitionType": "mobileAppliDark", - "listLogos": [ - { - "size": "183x183", - "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_etb_sat%2F20230713_105554%2FmobileAppliDark%2Flogo_183x183.png" - } - ] - }, - { - "definitionType": "webTVLogo", - "listLogos": [ - { - "size": "180x96", - "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_etb_sat%2F20230713_105554%2FwebTVLogo%2Flogo_180x96.png" - } - ] - }, - { - "definitionType": "webTVSquare", - "listLogos": [ - { - "size": "150x150", - "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_etb_sat%2F20230713_105554%2FwebTVSquare%2Flogo_150x150.png" - } - ] - } - ], - "mobileData": { - "wifiForbidden": false, - "wifiSecuredOnly": false, - "everywhereChannel": true, - "nomadismAllowed": true, - "drmLevels": [ - { - "definition": "SD", - "securedTerminal": [ - "DRM-HW", - "DRM-SW" - ], - "unsecuredTerminal": [ - "DRM-HW", - "DRM-SW" - ] - }, - { - "definition": "HD", - "securedTerminal": [ - "NO-DRM" - ], - "unsecuredTerminal": [ - "NO-DRM" - ] - } - ] - }, - "webdeviceData": { - "nomadismAllowed": true - }, - "technicalChannels": { - "live": [ - { - "techChannelId": "400414", - "type": "CLOUDTV", - "liveTargetURLRelativePath": "livetv_etb_sat_ctv", - "usi": 400414, - "isDRMized": true, - "csa5Disabled": true - } - ], - "npvr": [ - { - "externalId": "livetv_etb_sat_ctv", - "techChannelId": "400414", - "type": "CLOUDTV", - "usi": 400414, - "isDRMized": true, - "antiAdskipping": "DEACTIVATED", - "csa5Disabled": true - } - ], - "startover": [] - } - }, - { - "name": "TV DE GALICIA", - "editoChannelId": "livetv_tv_de_galicia", - "lcn": 441, - "idEPG": 90441, - "epgAvailable": false, - "epgTextSubstitution": "", - "displayOrder": 441, - "csaCode": 1, - "slogan": "La chaîne de la Galice", - "catchupChannelId": "", - "newChannel": true, - "roamingBlocked": false, - "allowedDeviceCategories": [ - "M_ANDROID", - "M_IOS", - "M_TABLET_ANDROID", - "M_TABLET_IOS", - "W_AIRPLAY", - "W_CHROMECAST", - "W_LACLETV2", - "W_PC", - "W_SMARTTV", - "S_STB" - ], - "packages": [ - "PA_bouquet_espagnol", - "PI_WHITELIST" - ], - "hasRightIAccess": true, - "hasRightMAccess": false, - "logos": [ - { - "definitionType": "mobileAppli", - "listLogos": [ - { - "size": "183x183", - "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_tv_de_galicia%2F20210910_084754%2FmobileAppli%2Flogo_183x183.png" - } - ] - }, - { - "definitionType": "mobileAppliDark", - "listLogos": [ - { - "size": "183x183", - "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_tv_de_galicia%2F20210910_084754%2FmobileAppliDark%2Flogo_183x183.png" - } - ] - }, - { - "definitionType": "webTVLogo", - "listLogos": [ - { - "size": "180x96", - "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_tv_de_galicia%2F20210910_084754%2FwebTVLogo%2Flogo_180x96.png" - } - ] - }, - { - "definitionType": "webTVSquare", - "listLogos": [ - { - "size": "150x150", - "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_tv_de_galicia%2F20210910_084754%2FwebTVSquare%2Flogo_150x150.png" - } - ] - } - ], - "mobileData": { - "wifiForbidden": false, - "wifiSecuredOnly": false, - "everywhereChannel": true, - "nomadismAllowed": true, - "drmLevels": [ - { - "definition": "SD", - "securedTerminal": [ - "DRM-HW", - "DRM-SW" - ], - "unsecuredTerminal": [ - "DRM-HW", - "DRM-SW" - ] - }, - { - "definition": "HD", - "securedTerminal": [ - "NO-DRM" - ], - "unsecuredTerminal": [ - "NO-DRM" - ] - } - ] - }, - "webdeviceData": { - "nomadismAllowed": true - }, - "technicalChannels": { - "live": [ - { - "techChannelId": "400415", - "type": "CLOUDTV", - "liveTargetURLRelativePath": "livetv_television_de_galicia_ctv", - "usi": 400415, - "isDRMized": true, - "csa5Disabled": true - } - ], - "npvr": [ - { - "externalId": "livetv_television_de_galicia_ctv", - "techChannelId": "400415", - "type": "CLOUDTV", - "usi": 400415, - "isDRMized": true, - "antiAdskipping": "DEACTIVATED", - "csa5Disabled": true - } - ], - "startover": [] - } - }, - { - "name": "REAL MADRID TV", - "editoChannelId": "livetv_real_madrid_tv_espagnol", - "lcn": 442, - "idEPG": 90442, - "epgAvailable": false, - "epgTextSubstitution": "", - "displayOrder": 442, - "csaCode": 1, - "slogan": "Le plus grand club de football du monde", - "catchupChannelId": "", - "newChannel": true, - "roamingBlocked": false, - "allowedDeviceCategories": [ - "M_ANDROID", - "M_IOS", - "M_TABLET_ANDROID", - "M_TABLET_IOS", - "W_AIRPLAY", - "W_CHROMECAST", - "W_LACLETV2", - "W_PC", - "W_SMARTTV", - "S_STB" - ], - "packages": [ - "PA_bouquet_espagnol", - "PI_WHITELIST" - ], - "hasRightIAccess": true, - "hasRightMAccess": false, - "logos": [ - { - "definitionType": "mobileAppli", - "listLogos": [ - { - "size": "183x183", - "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_real_madrid_tv_espagnol%2F20230324_101810%2FmobileAppli%2Flogo_183x183.png" - } - ] - }, - { - "definitionType": "mobileAppliDark", - "listLogos": [ - { - "size": "183x183", - "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_real_madrid_tv_espagnol%2F20230324_101810%2FmobileAppliDark%2Flogo_183x183.png" - } - ] - }, - { - "definitionType": "webTVLogo", - "listLogos": [ - { - "size": "180x96", - "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_real_madrid_tv_espagnol%2F20230324_101810%2FwebTVLogo%2Flogo_180x96.png" - } - ] - }, - { - "definitionType": "webTVSquare", - "listLogos": [ - { - "size": "150x150", - "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_real_madrid_tv_espagnol%2F20230324_101810%2FwebTVSquare%2Flogo_150x150.png" - } - ] - } - ], - "mobileData": { - "wifiForbidden": false, - "wifiSecuredOnly": false, - "everywhereChannel": true, - "nomadismAllowed": true, - "drmLevels": [ - { - "definition": "SD", - "securedTerminal": [ - "DRM-HW", - "DRM-SW" - ], - "unsecuredTerminal": [ - "DRM-HW", - "DRM-SW" - ] - }, - { - "definition": "HD", - "securedTerminal": [ - "NO-DRM" - ], - "unsecuredTerminal": [ - "NO-DRM" - ] - } - ] - }, - "webdeviceData": { - "nomadismAllowed": true - }, - "technicalChannels": { - "live": [ - { - "techChannelId": "400319", - "type": "CLOUDTV", - "liveTargetURLRelativePath": "livetv_real_madrid_tv_ctv", - "usi": 400319, - "isDRMized": true, - "csa5Disabled": true - } - ], - "npvr": [ - { - "externalId": "livetv_real_madrid_tv_ctv", - "techChannelId": "400319", - "type": "CLOUDTV", - "usi": 400319, - "isDRMized": true, - "antiAdskipping": "DEACTIVATED", - "csa5Disabled": true - } - ], - "startover": [] - } - }, - { - "name": "RTP 3", - "editoChannelId": "livetv_rtp3", - "lcn": 444, - "idEPG": 90444, - "epgAvailable": false, - "epgTextSubstitution": "", - "displayOrder": 444, - "csaCode": 1, - "slogan": "Informação. Informação. Informação.", - "catchupChannelId": "", - "newChannel": false, - "roamingBlocked": true, - "allowedDeviceCategories": [ - "M_ANDROID", - "M_IOS", - "M_TABLET_ANDROID", - "M_TABLET_IOS", - "W_AIRPLAY", - "W_CHROMECAST", - "W_LACLETV2", - "W_SMARTTV", - "W_PC", - "S_STB" - ], - "packages": [ - "PA_BQ_BASIC_M", - "PA_BQ_TVDIGITALE_I", - "PA_BQ_BASIC_I", - "PA_BQ_BASICQUAD_I", - "PI_WHITELIST" - ], - "hasRightIAccess": true, - "hasRightMAccess": true, - "logos": [ - { - "definitionType": "mobileAppli", - "listLogos": [ - { - "size": "183x183", - "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_rtp3%2F20170629_134322%2FmobileAppli%2Flogo_183x183.png" - } - ] - }, - { - "definitionType": "mobileAppliDark", - "listLogos": [ - { - "size": "183x183", - "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_rtp3%2F20170629_134322%2FmobileAppliDark%2Flogo_183x183.png" - } - ] - }, - { - "definitionType": "webTVLogo", - "listLogos": [ - { - "size": "180x96", - "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_rtp3%2F20170629_134322%2FwebTVLogo%2Flogo_180x96.png" - } - ] - }, - { - "definitionType": "webTVSquare", - "listLogos": [ - { - "size": "150x150", - "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_rtp3%2F20170629_134322%2FwebTVSquare%2Flogo_150x150.png" - } - ] - } - ], - "mobileData": { - "wifiForbidden": false, - "wifiSecuredOnly": false, - "everywhereChannel": true, - "nomadismAllowed": true, - "drmLevels": [ - { - "definition": "SD", - "securedTerminal": [ - "DRM-HW", - "DRM-SW" - ], - "unsecuredTerminal": [ - "DRM-HW", - "DRM-SW" - ] - }, - { - "definition": "HD", - "securedTerminal": [ - "ND" - ], - "unsecuredTerminal": [ - "ND" - ] - } - ] - }, - "webdeviceData": { - "nomadismAllowed": true - }, - "technicalChannels": { - "live": [ - { - "techChannelId": "400179", - "type": "CLOUDTV", - "liveTargetURLRelativePath": "livetv_rtp3_ctv", - "usi": 400179, - "isDRMized": true, - "csa5Disabled": true - } - ], - "npvr": [ - { - "externalId": "livetv_rtp3_ctv", - "techChannelId": "400179", - "type": "CLOUDTV", - "usi": 400179, - "isDRMized": true, - "antiAdskipping": "DEACTIVATED", - "csa5Disabled": true - } - ], - "startover": [] - } - }, - { - "name": "TVI INTERNACIONAL", - "editoChannelId": "livetv_tviinternacional", - "lcn": 447, - "idEPG": 90447, - "epgAvailable": false, - "epgTextSubstitution": "", - "displayOrder": 447, - "csaCode": 1, - "slogan": "A casa Portuguesa", - "catchupChannelId": "", - "newChannel": true, - "roamingBlocked": true, - "allowedDeviceCategories": [ - "M_ANDROID", - "M_IOS", - "M_TABLET_ANDROID", - "M_TABLET_IOS", - "W_AIRPLAY", - "W_CHROMECAST", - "W_LACLETV2", - "W_SMARTTV", - "W_PC", - "S_STB" - ], - "packages": [ - "PA_bouquet_lusophone", - "PI_WHITELIST" - ], - "hasRightIAccess": true, - "hasRightMAccess": false, - "logos": [ - { - "definitionType": "mobileAppli", - "listLogos": [ - { - "size": "183x183", - "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_tviinternacional%2F20160401_110530%2FmobileAppli%2Flogo_183x183.png" - } - ] - }, - { - "definitionType": "mobileAppliDark", - "listLogos": [ - { - "size": "183x183", - "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_tviinternacional%2F20160401_110530%2FmobileAppliDark%2Flogo_183x183.png" - } - ] - }, - { - "definitionType": "webTVLogo", - "listLogos": [ - { - "size": "180x96", - "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_tviinternacional%2F20160401_110530%2FwebTVLogo%2Flogo_180x96.png" - } - ] - }, - { - "definitionType": "webTVSquare", - "listLogos": [ - { - "size": "150x150", - "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_tviinternacional%2F20160401_110530%2FwebTVSquare%2Flogo_150x150.png" - } - ] - } - ], - "mobileData": { - "wifiForbidden": false, - "wifiSecuredOnly": false, - "everywhereChannel": true, - "nomadismAllowed": true, - "drmLevels": [ - { - "definition": "SD", - "securedTerminal": [ - "DRM-HW", - "DRM-SW" - ], - "unsecuredTerminal": [ - "DRM-HW", - "DRM-SW" - ] - }, - { - "definition": "HD", - "securedTerminal": [ - "ND" - ], - "unsecuredTerminal": [ - "ND" - ] - } - ] - }, - "webdeviceData": { - "nomadismAllowed": true - }, - "technicalChannels": { - "live": [ - { - "techChannelId": "400172", - "type": "CLOUDTV", - "liveTargetURLRelativePath": "livetv_tvi_internacional_ctv", - "usi": 400172, - "isDRMized": true, - "csa5Disabled": true - } - ], - "npvr": [ - { - "externalId": "livetv_tvi_internacional_ctv", - "techChannelId": "400172", - "type": "CLOUDTV", - "usi": 400172, - "isDRMized": true, - "antiAdskipping": "DEACTIVATED", - "csa5Disabled": true - } - ], - "startover": [] - } - }, - { - "name": "SIC NOTICIAS", - "editoChannelId": "livetv_sicnoticias", - "lcn": 448, - "idEPG": 90448, - "epgAvailable": false, - "epgTextSubstitution": "", - "displayOrder": 448, - "csaCode": 1, - "slogan": "Os seus olhos no Mundo", - "catchupChannelId": "", - "newChannel": true, - "roamingBlocked": true, - "allowedDeviceCategories": [ - "M_ANDROID", - "M_IOS", - "M_TABLET_ANDROID", - "M_TABLET_IOS", - "W_AIRPLAY", - "W_CHROMECAST", - "W_LACLETV2", - "W_SMARTTV", - "W_PC", - "S_STB" - ], - "packages": [ - "PA_bouquet_lusophone", - "PI_WHITELIST" - ], - "hasRightIAccess": true, - "hasRightMAccess": false, - "logos": [ - { - "definitionType": "mobileAppli", - "listLogos": [ - { - "size": "183x183", - "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_sicnoticias%2F20160401_110530%2FmobileAppli%2Flogo_183x183.png" - } - ] - }, - { - "definitionType": "mobileAppliDark", - "listLogos": [ - { - "size": "183x183", - "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_sicnoticias%2F20160401_110530%2FmobileAppliDark%2Flogo_183x183.png" - } - ] - }, - { - "definitionType": "webTVLogo", - "listLogos": [ - { - "size": "180x96", - "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_sicnoticias%2F20160401_110530%2FwebTVLogo%2Flogo_180x96.png" - } - ] - }, - { - "definitionType": "webTVSquare", - "listLogos": [ - { - "size": "150x150", - "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_sicnoticias%2F20160401_110530%2FwebTVSquare%2Flogo_150x150.png" - } - ] - } - ], - "mobileData": { - "wifiForbidden": false, - "wifiSecuredOnly": false, - "everywhereChannel": true, - "nomadismAllowed": true, - "drmLevels": [ - { - "definition": "SD", - "securedTerminal": [ - "DRM-HW", - "DRM-SW" - ], - "unsecuredTerminal": [ - "DRM-HW", - "DRM-SW" - ] - }, - { - "definition": "HD", - "securedTerminal": [ - "ND" - ], - "unsecuredTerminal": [ - "ND" - ] - } - ] - }, - "webdeviceData": { - "nomadismAllowed": true - }, - "technicalChannels": { - "live": [ - { - "techChannelId": "400166", - "type": "CLOUDTV", - "liveTargetURLRelativePath": "livetv_sic_noticias_ctv", - "usi": 400166, - "isDRMized": true, - "csa5Disabled": true - } - ], - "npvr": [ - { - "externalId": "livetv_sic_noticias_ctv", - "techChannelId": "400166", - "type": "CLOUDTV", - "usi": 400166, - "isDRMized": true, - "antiAdskipping": "DEACTIVATED", - "csa5Disabled": true - } - ], - "startover": [] - } - }, - { - "name": "SIC INTERNACIONAL", - "editoChannelId": "livetv_sicinternacional", - "lcn": 449, - "idEPG": 90449, - "epgAvailable": false, - "epgTextSubstitution": "", - "displayOrder": 449, - "csaCode": 1, - "slogan": "Portugal mais perto de si", - "catchupChannelId": "", - "newChannel": true, - "roamingBlocked": true, - "allowedDeviceCategories": [ - "M_ANDROID", - "M_IOS", - "M_TABLET_ANDROID", - "M_TABLET_IOS", - "W_AIRPLAY", - "W_CHROMECAST", - "W_LACLETV2", - "W_SMARTTV", - "W_PC", - "S_STB" - ], - "packages": [ - "PA_bouquet_lusophone", - "PI_WHITELIST" - ], - "hasRightIAccess": true, - "hasRightMAccess": false, - "logos": [ - { - "definitionType": "mobileAppli", - "listLogos": [ - { - "size": "183x183", - "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_sicinternacional%2F20160401_110530%2FmobileAppli%2Flogo_183x183.png" - } - ] - }, - { - "definitionType": "mobileAppliDark", - "listLogos": [ - { - "size": "183x183", - "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_sicinternacional%2F20160401_110530%2FmobileAppliDark%2Flogo_183x183.png" - } - ] - }, - { - "definitionType": "webTVLogo", - "listLogos": [ - { - "size": "180x96", - "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_sicinternacional%2F20160401_110530%2FwebTVLogo%2Flogo_180x96.png" - } - ] - }, - { - "definitionType": "webTVSquare", - "listLogos": [ - { - "size": "150x150", - "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_sicinternacional%2F20160401_110530%2FwebTVSquare%2Flogo_150x150.png" - } - ] - } - ], - "mobileData": { - "wifiForbidden": false, - "wifiSecuredOnly": false, - "everywhereChannel": true, - "nomadismAllowed": true, - "drmLevels": [ - { - "definition": "SD", - "securedTerminal": [ - "DRM-HW", - "DRM-SW" - ], - "unsecuredTerminal": [ - "DRM-HW", - "DRM-SW" - ] - }, - { - "definition": "HD", - "securedTerminal": [ - "ND" - ], - "unsecuredTerminal": [ - "ND" - ] - } - ] - }, - "webdeviceData": { - "nomadismAllowed": true - }, - "technicalChannels": { - "live": [ - { - "techChannelId": "400173", - "type": "CLOUDTV", - "liveTargetURLRelativePath": "livetv_sic_internacional_ctv", - "usi": 400173, - "isDRMized": true, - "csa5Disabled": true - } - ], - "npvr": [ - { - "externalId": "livetv_sic_internacional_ctv", - "techChannelId": "400173", - "type": "CLOUDTV", - "usi": 400173, - "isDRMized": true, - "antiAdskipping": "DEACTIVATED", - "csa5Disabled": true - } - ], - "startover": [] - } - }, - { - "name": "TV RECORD", - "editoChannelId": "livetv_tvrecord", - "lcn": 450, - "idEPG": 90450, - "epgAvailable": false, - "epgTextSubstitution": "", - "displayOrder": 450, - "csaCode": 1, - "slogan": "La chaine généraliste du brésil", - "catchupChannelId": "", - "newChannel": true, - "roamingBlocked": true, - "allowedDeviceCategories": [ - "M_ANDROID", - "M_IOS", - "M_TABLET_ANDROID", - "M_TABLET_IOS", - "W_AIRPLAY", - "W_CHROMECAST", - "W_LACLETV2", - "W_SMARTTV", - "W_PC", - "S_STB" - ], - "packages": [ - "PA_bouquet_lusophone", - "PI_WHITELIST" - ], - "hasRightIAccess": true, - "hasRightMAccess": false, - "logos": [ - { - "definitionType": "mobileAppli", - "listLogos": [ - { - "size": "183x183", - "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_tvrecord%2F20160401_110530%2FmobileAppli%2Flogo_183x183.png" - } - ] - }, - { - "definitionType": "mobileAppliDark", - "listLogos": [ - { - "size": "183x183", - "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_tvrecord%2F20160401_110530%2FmobileAppliDark%2Flogo_183x183.png" - } - ] - }, - { - "definitionType": "webTVLogo", - "listLogos": [ - { - "size": "180x96", - "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_tvrecord%2F20160401_110530%2FwebTVLogo%2Flogo_180x96.png" - } - ] - }, - { - "definitionType": "webTVSquare", - "listLogos": [ - { - "size": "150x150", - "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_tvrecord%2F20160401_110530%2FwebTVSquare%2Flogo_150x150.png" - } - ] - } - ], - "mobileData": { - "wifiForbidden": false, - "wifiSecuredOnly": false, - "everywhereChannel": true, - "nomadismAllowed": true, - "drmLevels": [ - { - "definition": "SD", - "securedTerminal": [ - "DRM-HW", - "DRM-SW" - ], - "unsecuredTerminal": [ - "DRM-HW", - "DRM-SW" - ] - }, - { - "definition": "HD", - "securedTerminal": [ - "ND" - ], - "unsecuredTerminal": [ - "ND" - ] - } - ] - }, - "webdeviceData": { - "nomadismAllowed": true - }, - "technicalChannels": { - "live": [ - { - "techChannelId": "400174", - "type": "CLOUDTV", - "liveTargetURLRelativePath": "livetv_tv_record_ctv", - "usi": 400174, - "isDRMized": true, - "csa5Disabled": true - } - ], - "npvr": [ - { - "externalId": "livetv_tv_record_ctv", - "techChannelId": "400174", - "type": "CLOUDTV", - "usi": 400174, - "isDRMized": true, - "antiAdskipping": "DEACTIVATED", - "csa5Disabled": true - } - ], - "startover": [] - } - }, - { - "name": "TVI FICCAO", - "editoChannelId": "livetv_tvificcao", - "lcn": 451, - "idEPG": 90451, - "epgAvailable": false, - "epgTextSubstitution": "", - "displayOrder": 451, - "csaCode": 1, - "slogan": "Juntos, vivemos histórias", - "catchupChannelId": "", - "newChannel": true, - "roamingBlocked": true, - "allowedDeviceCategories": [ - "M_ANDROID", - "M_IOS", - "M_TABLET_ANDROID", - "M_TABLET_IOS", - "W_AIRPLAY", - "W_CHROMECAST", - "W_LACLETV2", - "W_SMARTTV", - "W_PC", - "S_STB" - ], - "packages": [ - "PA_bouquet_lusophone", - "PI_WHITELIST" - ], - "hasRightIAccess": true, - "hasRightMAccess": false, - "logos": [ - { - "definitionType": "mobileAppli", - "listLogos": [ - { - "size": "183x183", - "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_tvificcao%2F20160401_110530%2FmobileAppli%2Flogo_183x183.png" - } - ] - }, - { - "definitionType": "mobileAppliDark", - "listLogos": [ - { - "size": "183x183", - "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_tvificcao%2F20160401_110530%2FmobileAppliDark%2Flogo_183x183.png" - } - ] - }, - { - "definitionType": "webTVLogo", - "listLogos": [ - { - "size": "180x96", - "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_tvificcao%2F20160401_110530%2FwebTVLogo%2Flogo_180x96.png" - } - ] - }, - { - "definitionType": "webTVSquare", - "listLogos": [ - { - "size": "150x150", - "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_tvificcao%2F20160401_110530%2FwebTVSquare%2Flogo_150x150.png" - } - ] - } - ], - "mobileData": { - "wifiForbidden": false, - "wifiSecuredOnly": false, - "everywhereChannel": true, - "nomadismAllowed": true, - "drmLevels": [ - { - "definition": "SD", - "securedTerminal": [ - "DRM-HW", - "DRM-SW" - ], - "unsecuredTerminal": [ - "DRM-HW", - "DRM-SW" - ] - }, - { - "definition": "HD", - "securedTerminal": [ - "ND" - ], - "unsecuredTerminal": [ - "ND" - ] - } - ] - }, - "webdeviceData": { - "nomadismAllowed": true - }, - "technicalChannels": { - "live": [ - { - "techChannelId": "400175", - "type": "CLOUDTV", - "liveTargetURLRelativePath": "livetv_tvi_ficcao_ctv", - "usi": 400175, - "isDRMized": true, - "csa5Disabled": true - } - ], - "npvr": [ - { - "externalId": "livetv_tvi_ficcao_ctv", - "techChannelId": "400175", - "type": "CLOUDTV", - "usi": 400175, - "isDRMized": true, - "antiAdskipping": "DEACTIVATED", - "csa5Disabled": true - } - ], - "startover": [] - } - }, - { - "name": "ALMA LUSA", - "editoChannelId": "livetv_alma_lusa", - "lcn": 453, - "idEPG": 90453, - "epgAvailable": false, - "epgTextSubstitution": "", - "displayOrder": 453, - "csaCode": 1, - "slogan": "A Música Portuguesa", - "catchupChannelId": "", - "newChannel": true, - "roamingBlocked": false, - "allowedDeviceCategories": [ - "M_ANDROID", - "M_IOS", - "M_TABLET_ANDROID", - "M_TABLET_IOS", - "W_AIRPLAY", - "W_CHROMECAST", - "W_LACLETV2", - "W_SMARTTV", - "W_PC", - "S_STB" - ], - "packages": [ - "PA_bouquet_lusophone", - "PI_WHITELIST" - ], - "hasRightIAccess": true, - "hasRightMAccess": false, - "logos": [ - { - "definitionType": "mobileAppli", - "listLogos": [ - { - "size": "183x183", - "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_alma_lusa%2F20191008_121050%2FmobileAppli%2Flogo_183x183.png" - } - ] - }, - { - "definitionType": "mobileAppliDark", - "listLogos": [ - { - "size": "183x183", - "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_alma_lusa%2F20191008_121050%2FmobileAppliDark%2Flogo_183x183.png" - } - ] - }, - { - "definitionType": "webTVLogo", - "listLogos": [ - { - "size": "180x96", - "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_alma_lusa%2F20191008_121050%2FwebTVLogo%2Flogo_180x96.png" - } - ] - }, - { - "definitionType": "webTVSquare", - "listLogos": [ - { - "size": "150x150", - "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_alma_lusa%2F20191008_121050%2FwebTVSquare%2Flogo_150x150.png" - } - ] - } - ], - "mobileData": { - "wifiForbidden": false, - "wifiSecuredOnly": false, - "everywhereChannel": true, - "nomadismAllowed": true, - "drmLevels": [ - { - "definition": "SD", - "securedTerminal": [ - "DRM-HW", - "DRM-SW" - ], - "unsecuredTerminal": [ - "DRM-HW", - "DRM-SW" - ] - }, - { - "definition": "HD", - "securedTerminal": [ - "ND" - ], - "unsecuredTerminal": [ - "ND" - ] - } - ] - }, - "webdeviceData": { - "nomadismAllowed": true - }, - "technicalChannels": { - "live": [ - { - "techChannelId": "400177", - "type": "CLOUDTV", - "liveTargetURLRelativePath": "livetv_alma_lusa_ctv", - "usi": 400177, - "isDRMized": true, - "csa5Disabled": true - } - ], - "npvr": [ - { - "externalId": "livetv_alma_lusa_ctv", - "techChannelId": "400177", - "type": "CLOUDTV", - "usi": 400177, - "isDRMized": true, - "antiAdskipping": "DEACTIVATED", - "csa5Disabled": true - } - ], - "startover": [] - } - }, - { - "name": "A BOLA TV", - "editoChannelId": "livetv_abolatv", - "lcn": 454, - "idEPG": 90454, - "epgAvailable": false, - "epgTextSubstitution": "", - "displayOrder": 454, - "csaCode": 1, - "slogan": "Sports Information Channel", - "catchupChannelId": "", - "newChannel": false, - "roamingBlocked": true, - "allowedDeviceCategories": [ - "M_ANDROID", - "M_IOS", - "M_TABLET_ANDROID", - "M_TABLET_IOS", - "W_AIRPLAY", - "W_CHROMECAST", - "W_LACLETV2", - "W_SMARTTV", - "W_PC", - "S_STB" - ], - "packages": [ - "PA_bouquet_lusophone", - "PI_WHITELIST" - ], - "hasRightIAccess": true, - "hasRightMAccess": false, - "logos": [ - { - "definitionType": "mobileAppli", - "listLogos": [ - { - "size": "183x183", - "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_abolatv%2F20170629_134322%2FmobileAppli%2Flogo_183x183.png" - } - ] - }, - { - "definitionType": "mobileAppliDark", - "listLogos": [ - { - "size": "183x183", - "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_abolatv%2F20170629_134322%2FmobileAppliDark%2Flogo_183x183.png" - } - ] - }, - { - "definitionType": "webTVLogo", - "listLogos": [ - { - "size": "180x96", - "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_abolatv%2F20170629_134322%2FwebTVLogo%2Flogo_180x96.png" - } - ] - }, - { - "definitionType": "webTVSquare", - "listLogos": [ - { - "size": "150x150", - "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_abolatv%2F20170629_134322%2FwebTVSquare%2Flogo_150x150.png" - } - ] - } - ], - "mobileData": { - "wifiForbidden": false, - "wifiSecuredOnly": false, - "everywhereChannel": true, - "nomadismAllowed": true, - "drmLevels": [ - { - "definition": "SD", - "securedTerminal": [ - "DRM-HW", - "DRM-SW" - ], - "unsecuredTerminal": [ - "DRM-HW", - "DRM-SW" - ] - }, - { - "definition": "HD", - "securedTerminal": [ - "ND" - ], - "unsecuredTerminal": [ - "ND" - ] - } - ] - }, - "webdeviceData": { - "nomadismAllowed": true - }, - "technicalChannels": { - "live": [ - { - "techChannelId": "400178", - "type": "CLOUDTV", - "liveTargetURLRelativePath": "livetv_abola_tv_ctv", - "usi": 400178, - "isDRMized": true, - "csa5Disabled": true - } - ], - "npvr": [ - { - "externalId": "livetv_abola_tv_ctv", - "techChannelId": "400178", - "type": "CLOUDTV", - "usi": 400178, - "isDRMized": true, - "antiAdskipping": "DEACTIVATED", - "csa5Disabled": true - } - ], - "startover": [] - } - }, - { - "name": "RTPI", - "editoChannelId": "livetv_rtpi", - "lcn": 455, - "idEPG": 169, - "epgAvailable": true, - "epgTextSubstitution": "", - "displayOrder": 455, - "csaCode": 1, - "slogan": "La chaîne généraliste portugaise", - "catchupChannelId": "", - "newChannel": false, - "roamingBlocked": true, - "allowedDeviceCategories": [ - "M_ANDROID", - "M_IOS", - "M_TABLET_ANDROID", - "M_TABLET_IOS", - "W_AIRPLAY", - "W_CHROMECAST", - "W_LACLETV2", - "W_PC", - "W_SMARTTV", - "S_STB" - ], - "packages": [ - "PA_bouquet_lusophone", - "PI_WHITELIST" - ], - "hasRightIAccess": true, - "hasRightMAccess": false, - "logos": [ - { - "definitionType": "mobileAppli", - "listLogos": [ - { - "size": "183x183", - "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_rtpi%2F20221121_105241%2FmobileAppli%2Flogo_183x183.png" - } - ] - }, - { - "definitionType": "mobileAppliDark", - "listLogos": [ - { - "size": "183x183", - "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_rtpi%2F20221121_105241%2FmobileAppliDark%2Flogo_183x183.png" - } - ] - }, - { - "definitionType": "webTVLogo", - "listLogos": [ - { - "size": "180x96", - "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_rtpi%2F20221121_105241%2FwebTVLogo%2Flogo_180x96.png" - } - ] - }, - { - "definitionType": "webTVSquare", - "listLogos": [ - { - "size": "150x150", - "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_rtpi%2F20221121_105241%2FwebTVSquare%2Flogo_150x150.png" - } - ] - } - ], - "mobileData": { - "wifiForbidden": false, - "wifiSecuredOnly": false, - "everywhereChannel": true, - "nomadismAllowed": true, - "drmLevels": [ - { - "definition": "SD", - "securedTerminal": [ - "DRM-HW", - "DRM-SW" - ], - "unsecuredTerminal": [ - "DRM-HW", - "DRM-SW" - ] - }, - { - "definition": "HD", - "securedTerminal": [ - "ND" - ], - "unsecuredTerminal": [ - "ND" - ] - } - ] - }, - "webdeviceData": { - "nomadismAllowed": true - }, - "technicalChannels": { - "live": [ - { - "techChannelId": "400165", - "type": "CLOUDTV", - "liveTargetURLRelativePath": "livetv_rtpi_ctv", - "usi": 400165, - "isDRMized": true, - "csa5Disabled": true - } - ], - "npvr": [ - { - "externalId": "livetv_rtpi_ctv", - "techChannelId": "400165", - "type": "CLOUDTV", - "usi": 400165, - "isDRMized": true, - "antiAdskipping": "DEACTIVATED", - "csa5Disabled": true - } - ], - "startover": [] - } - }, - { - "name": "CORREIO DA MANHA TV", - "editoChannelId": "livetv_correio", - "lcn": 456, - "idEPG": 90456, - "epgAvailable": false, - "epgTextSubstitution": "", - "displayOrder": 456, - "csaCode": 1, - "slogan": "Você está aqui!", - "catchupChannelId": "", - "newChannel": true, - "roamingBlocked": true, - "allowedDeviceCategories": [ - "M_ANDROID", - "M_IOS", - "M_TABLET_ANDROID", - "M_TABLET_IOS", - "W_AIRPLAY", - "W_CHROMECAST", - "W_LACLETV2", - "W_SMARTTV", - "W_PC", - "S_STB" - ], - "packages": [ - "PA_bouquet_lusophone", - "PI_WHITELIST" - ], - "hasRightIAccess": true, - "hasRightMAccess": false, - "logos": [ - { - "definitionType": "mobileAppli", - "listLogos": [ - { - "size": "183x183", - "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_correio%2F20170807_145546%2FmobileAppli%2Flogo_183x183.png" - } - ] - }, - { - "definitionType": "mobileAppliDark", - "listLogos": [ - { - "size": "183x183", - "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_correio%2F20170807_145546%2FmobileAppliDark%2Flogo_183x183.png" - } - ] - }, - { - "definitionType": "webTVLogo", - "listLogos": [ - { - "size": "180x96", - "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_correio%2F20170807_145546%2FwebTVLogo%2Flogo_180x96.png" - } - ] - }, - { - "definitionType": "webTVSquare", - "listLogos": [ - { - "size": "150x150", - "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_correio%2F20170807_145546%2FwebTVSquare%2Flogo_150x150.png" - } - ] - } - ], - "mobileData": { - "wifiForbidden": false, - "wifiSecuredOnly": false, - "everywhereChannel": true, - "nomadismAllowed": true, - "drmLevels": [ - { - "definition": "SD", - "securedTerminal": [ - "DRM-HW", - "DRM-SW" - ], - "unsecuredTerminal": [ - "DRM-HW", - "DRM-SW" - ] - }, - { - "definition": "HD", - "securedTerminal": [ - "ND" - ], - "unsecuredTerminal": [ - "ND" - ] - } - ] - }, - "webdeviceData": { - "nomadismAllowed": true - }, - "technicalChannels": { - "live": [ - { - "techChannelId": "400180", - "type": "CLOUDTV", - "liveTargetURLRelativePath": "livetv_correio_da_manha_tv_ctv", - "usi": 400180, - "isDRMized": true, - "csa5Disabled": true - } - ], - "npvr": [ - { - "externalId": "livetv_correio_da_manha_tv_ctv", - "techChannelId": "400180", - "type": "CLOUDTV", - "usi": 400180, - "isDRMized": true, - "antiAdskipping": "DEACTIVATED", - "csa5Disabled": true - } - ], - "startover": [] - } - }, - { - "name": "RAI UNO", - "editoChannelId": "livetv_rai_uno", - "lcn": 460, - "idEPG": 156, - "epgAvailable": true, - "epgTextSubstitution": "", - "displayOrder": 460, - "csaCode": 1, - "slogan": "Rai. Pour toi, pour tous", - "catchupChannelId": "", - "newChannel": true, - "roamingBlocked": false, - "allowedDeviceCategories": [ - "M_ANDROID", - "M_IOS", - "M_TABLET_ANDROID", - "M_TABLET_IOS", - "W_AIRPLAY", - "W_CHROMECAST", - "W_LACLETV2", - "W_SMARTTV", - "W_PC", - "S_STB" - ], - "packages": [ - "PA_bouquet_italien", - "PI_WHITELIST" - ], - "hasRightIAccess": true, - "hasRightMAccess": false, - "logos": [ - { - "definitionType": "mobileAppli", - "listLogos": [ - { - "size": "183x183", - "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_rai_uno%2F20210517_173924%2FmobileAppli%2Flogo_183x183.png" - } - ] - }, - { - "definitionType": "mobileAppliDark", - "listLogos": [ - { - "size": "183x183", - "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_rai_uno%2F20210517_173924%2FmobileAppliDark%2Flogo_183x183.png" - } - ] - }, - { - "definitionType": "webTVLogo", - "listLogos": [ - { - "size": "180x96", - "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_rai_uno%2F20210517_173924%2FwebTVLogo%2Flogo_180x96.png" - } - ] - }, - { - "definitionType": "webTVSquare", - "listLogos": [ - { - "size": "150x150", - "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_rai_uno%2F20210517_173924%2FwebTVSquare%2Flogo_150x150.png" - } - ] - } - ], - "mobileData": { - "wifiForbidden": false, - "wifiSecuredOnly": false, - "everywhereChannel": true, - "nomadismAllowed": true, - "drmLevels": [ - { - "definition": "SD", - "securedTerminal": [ - "DRM-HW", - "DRM-SW" - ], - "unsecuredTerminal": [ - "DRM-HW", - "DRM-SW" - ] - }, - { - "definition": "HD", - "securedTerminal": [ - "ND" - ], - "unsecuredTerminal": [ - "ND" - ] - } - ] - }, - "webdeviceData": { - "nomadismAllowed": true - }, - "technicalChannels": { - "live": [ - { - "techChannelId": "400383", - "type": "CLOUDTV", - "liveTargetURLRelativePath": "livetv_raiuno_ctv", - "usi": 400383, - "isDRMized": true, - "csa5Disabled": true - } - ], - "npvr": [ - { - "externalId": "livetv_raiuno_ctv", - "techChannelId": "400383", - "type": "CLOUDTV", - "usi": 400383, - "isDRMized": true, - "antiAdskipping": "DEACTIVATED", - "csa5Disabled": true - } - ], - "startover": [] - } - }, - { - "name": "RAI DUE", - "editoChannelId": "livetv_rai_due", - "lcn": 461, - "idEPG": 154, - "epgAvailable": true, - "epgTextSubstitution": "", - "displayOrder": 461, - "csaCode": 1, - "slogan": "Rai. Pour toi, pour tous", - "catchupChannelId": "", - "newChannel": true, - "roamingBlocked": false, - "allowedDeviceCategories": [ - "M_ANDROID", - "M_IOS", - "M_TABLET_ANDROID", - "M_TABLET_IOS", - "W_AIRPLAY", - "W_CHROMECAST", - "W_LACLETV2", - "W_SMARTTV", - "W_PC", - "S_STB" - ], - "packages": [ - "PA_bouquet_italien", - "PI_WHITELIST" - ], - "hasRightIAccess": true, - "hasRightMAccess": false, - "logos": [ - { - "definitionType": "mobileAppli", - "listLogos": [ - { - "size": "183x183", - "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_rai_due%2F20210517_173924%2FmobileAppli%2Flogo_183x183.png" - } - ] - }, - { - "definitionType": "mobileAppliDark", - "listLogos": [ - { - "size": "183x183", - "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_rai_due%2F20210517_173924%2FmobileAppliDark%2Flogo_183x183.png" - } - ] - }, - { - "definitionType": "webTVLogo", - "listLogos": [ - { - "size": "180x96", - "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_rai_due%2F20210517_173924%2FwebTVLogo%2Flogo_180x96.png" - } - ] - }, - { - "definitionType": "webTVSquare", - "listLogos": [ - { - "size": "150x150", - "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_rai_due%2F20210517_173924%2FwebTVSquare%2Flogo_150x150.png" - } - ] - } - ], - "mobileData": { - "wifiForbidden": false, - "wifiSecuredOnly": false, - "everywhereChannel": true, - "nomadismAllowed": true, - "drmLevels": [ - { - "definition": "SD", - "securedTerminal": [ - "DRM-HW", - "DRM-SW" - ], - "unsecuredTerminal": [ - "DRM-HW", - "DRM-SW" - ] - }, - { - "definition": "HD", - "securedTerminal": [ - "ND" - ], - "unsecuredTerminal": [ - "ND" - ] - } - ] - }, - "webdeviceData": { - "nomadismAllowed": true - }, - "technicalChannels": { - "live": [ - { - "techChannelId": "400384", - "type": "CLOUDTV", - "liveTargetURLRelativePath": "livetv_raidue_ctv", - "usi": 400384, - "isDRMized": true, - "csa5Disabled": true - } - ], - "npvr": [ - { - "externalId": "livetv_raidue_ctv", - "techChannelId": "400384", - "type": "CLOUDTV", - "usi": 400384, - "isDRMized": true, - "antiAdskipping": "DEACTIVATED", - "csa5Disabled": true - } - ], - "startover": [] - } - }, - { - "name": "RAI TRE", - "editoChannelId": "livetv_rai_tre", - "lcn": 462, - "idEPG": 155, - "epgAvailable": true, - "epgTextSubstitution": "", - "displayOrder": 462, - "csaCode": 1, - "slogan": "Rai. Pour toi, pour tous", - "catchupChannelId": "", - "newChannel": true, - "roamingBlocked": false, - "allowedDeviceCategories": [ - "M_ANDROID", - "M_IOS", - "M_TABLET_ANDROID", - "M_TABLET_IOS", - "W_AIRPLAY", - "W_CHROMECAST", - "W_LACLETV2", - "W_SMARTTV", - "W_PC", - "S_STB" - ], - "packages": [ - "PA_bouquet_italien", - "PI_WHITELIST" - ], - "hasRightIAccess": true, - "hasRightMAccess": false, - "logos": [ - { - "definitionType": "mobileAppli", - "listLogos": [ - { - "size": "183x183", - "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_rai_tre%2F20210517_173924%2FmobileAppli%2Flogo_183x183.png" - } - ] - }, - { - "definitionType": "mobileAppliDark", - "listLogos": [ - { - "size": "183x183", - "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_rai_tre%2F20210517_173924%2FmobileAppliDark%2Flogo_183x183.png" - } - ] - }, - { - "definitionType": "webTVLogo", - "listLogos": [ - { - "size": "180x96", - "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_rai_tre%2F20210517_173924%2FwebTVLogo%2Flogo_180x96.png" - } - ] - }, - { - "definitionType": "webTVSquare", - "listLogos": [ - { - "size": "150x150", - "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_rai_tre%2F20210517_173924%2FwebTVSquare%2Flogo_150x150.png" - } - ] - } - ], - "mobileData": { - "wifiForbidden": false, - "wifiSecuredOnly": false, - "everywhereChannel": true, - "nomadismAllowed": true, - "drmLevels": [ - { - "definition": "SD", - "securedTerminal": [ - "DRM-HW", - "DRM-SW" - ], - "unsecuredTerminal": [ - "DRM-HW", - "DRM-SW" - ] - }, - { - "definition": "HD", - "securedTerminal": [ - "ND" - ], - "unsecuredTerminal": [ - "ND" - ] - } - ] - }, - "webdeviceData": { - "nomadismAllowed": true - }, - "technicalChannels": { - "live": [ - { - "techChannelId": "400385", - "type": "CLOUDTV", - "liveTargetURLRelativePath": "livetv_raitre_ctv", - "usi": 400385, - "isDRMized": true, - "csa5Disabled": true - } - ], - "npvr": [ - { - "externalId": "livetv_raitre_ctv", - "techChannelId": "400385", - "type": "CLOUDTV", - "usi": 400385, - "isDRMized": true, - "antiAdskipping": "DEACTIVATED", - "csa5Disabled": true - } - ], - "startover": [] - } - }, - { - "name": "RAI STORIA", - "editoChannelId": "livetv_rai_storia", - "lcn": 463, - "idEPG": 90463, - "epgAvailable": false, - "epgTextSubstitution": "", - "displayOrder": 463, - "csaCode": 1, - "slogan": "Canale tematico di storia e cultura", - "catchupChannelId": "", - "newChannel": true, - "roamingBlocked": false, - "allowedDeviceCategories": [ - "M_ANDROID", - "M_IOS", - "M_TABLET_ANDROID", - "M_TABLET_IOS", - "W_AIRPLAY", - "W_CHROMECAST", - "W_LACLETV2", - "W_SMARTTV", - "W_PC", - "S_STB" - ], - "packages": [ - "PA_bouquet_italien", - "PI_WHITELIST" - ], - "hasRightIAccess": true, - "hasRightMAccess": false, - "logos": [ - { - "definitionType": "mobileAppli", - "listLogos": [ - { - "size": "183x183", - "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_rai_storia%2F20210517_173924%2FmobileAppli%2Flogo_183x183.png" - } - ] - }, - { - "definitionType": "mobileAppliDark", - "listLogos": [ - { - "size": "183x183", - "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_rai_storia%2F20210517_173924%2FmobileAppliDark%2Flogo_183x183.png" - } - ] - }, - { - "definitionType": "webTVLogo", - "listLogos": [ - { - "size": "180x96", - "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_rai_storia%2F20210517_173924%2FwebTVLogo%2Flogo_180x96.png" - } - ] - }, - { - "definitionType": "webTVSquare", - "listLogos": [ - { - "size": "150x150", - "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_rai_storia%2F20210517_173924%2FwebTVSquare%2Flogo_150x150.png" - } - ] - } - ], - "mobileData": { - "wifiForbidden": false, - "wifiSecuredOnly": false, - "everywhereChannel": true, - "nomadismAllowed": true, - "drmLevels": [ - { - "definition": "SD", - "securedTerminal": [ - "DRM-HW", - "DRM-SW" - ], - "unsecuredTerminal": [ - "DRM-HW", - "DRM-SW" - ] - }, - { - "definition": "HD", - "securedTerminal": [ - "ND" - ], - "unsecuredTerminal": [ - "ND" - ] - } - ] - }, - "webdeviceData": { - "nomadismAllowed": true - }, - "technicalChannels": { - "live": [ - { - "techChannelId": "400386", - "type": "CLOUDTV", - "liveTargetURLRelativePath": "livetv_raistoria_ctv", - "usi": 400386, - "isDRMized": true, - "csa5Disabled": true - } - ], - "npvr": [ - { - "externalId": "livetv_raistoria_ctv", - "techChannelId": "400386", - "type": "CLOUDTV", - "usi": 400386, - "isDRMized": true, - "antiAdskipping": "DEACTIVATED", - "csa5Disabled": true - } - ], - "startover": [] - } - }, - { - "name": "RAI SCUOLA", - "editoChannelId": "livetv_rai_scuola", - "lcn": 464, - "idEPG": 90464, - "epgAvailable": false, - "epgTextSubstitution": "", - "displayOrder": 464, - "csaCode": 1, - "slogan": "Il videoportale della scuola italiana", - "catchupChannelId": "", - "newChannel": true, - "roamingBlocked": false, - "allowedDeviceCategories": [ - "M_ANDROID", - "M_IOS", - "M_TABLET_ANDROID", - "M_TABLET_IOS", - "W_AIRPLAY", - "W_CHROMECAST", - "W_LACLETV2", - "W_SMARTTV", - "W_PC", - "S_STB" - ], - "packages": [ - "PA_bouquet_italien", - "PI_WHITELIST" - ], - "hasRightIAccess": true, - "hasRightMAccess": false, - "logos": [ - { - "definitionType": "mobileAppli", - "listLogos": [ - { - "size": "183x183", - "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_rai_scuola%2F20210517_173924%2FmobileAppli%2Flogo_183x183.png" - } - ] - }, - { - "definitionType": "mobileAppliDark", - "listLogos": [ - { - "size": "183x183", - "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_rai_scuola%2F20210517_173924%2FmobileAppliDark%2Flogo_183x183.png" - } - ] - }, - { - "definitionType": "webTVLogo", - "listLogos": [ - { - "size": "180x96", - "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_rai_scuola%2F20210517_173924%2FwebTVLogo%2Flogo_180x96.png" - } - ] - }, - { - "definitionType": "webTVSquare", - "listLogos": [ - { - "size": "150x150", - "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_rai_scuola%2F20210517_173924%2FwebTVSquare%2Flogo_150x150.png" - } - ] - } - ], - "mobileData": { - "wifiForbidden": false, - "wifiSecuredOnly": false, - "everywhereChannel": true, - "nomadismAllowed": true, - "drmLevels": [ - { - "definition": "SD", - "securedTerminal": [ - "DRM-HW", - "DRM-SW" - ], - "unsecuredTerminal": [ - "DRM-HW", - "DRM-SW" - ] - }, - { - "definition": "HD", - "securedTerminal": [ - "ND" - ], - "unsecuredTerminal": [ - "ND" - ] - } - ] - }, - "webdeviceData": { - "nomadismAllowed": true - }, - "technicalChannels": { - "live": [ - { - "techChannelId": "400387", - "type": "CLOUDTV", - "liveTargetURLRelativePath": "livetv_raiscuola_ctv", - "usi": 400387, - "isDRMized": true, - "csa5Disabled": true - } - ], - "npvr": [ - { - "externalId": "livetv_raiscuola_ctv", - "techChannelId": "400387", - "type": "CLOUDTV", - "usi": 400387, - "isDRMized": true, - "antiAdskipping": "DEACTIVATED", - "csa5Disabled": true - } - ], - "startover": [] - } - }, - { - "name": "RAI NEWS 24", - "editoChannelId": "livetv_rai_news_24", - "lcn": 465, - "idEPG": 1129, - "epgAvailable": true, - "epgTextSubstitution": "", - "displayOrder": 465, - "csaCode": 1, - "slogan": "Toute l'info en italien", - "catchupChannelId": "", - "newChannel": true, - "roamingBlocked": false, - "allowedDeviceCategories": [ - "M_ANDROID", - "M_IOS", - "M_TABLET_ANDROID", - "M_TABLET_IOS", - "W_AIRPLAY", - "W_CHROMECAST", - "W_LACLETV2", - "W_SMARTTV", - "W_PC", - "S_STB" - ], - "packages": [ - "PA_bouquet_italien", - "PI_WHITELIST" - ], - "hasRightIAccess": true, - "hasRightMAccess": false, - "logos": [ - { - "definitionType": "mobileAppli", - "listLogos": [ - { - "size": "183x183", - "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_rai_news_24%2F20210517_173924%2FmobileAppli%2Flogo_183x183.png" - } - ] - }, - { - "definitionType": "mobileAppliDark", - "listLogos": [ - { - "size": "183x183", - "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_rai_news_24%2F20210517_173924%2FmobileAppliDark%2Flogo_183x183.png" - } - ] - }, - { - "definitionType": "webTVLogo", - "listLogos": [ - { - "size": "180x96", - "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_rai_news_24%2F20210517_173924%2FwebTVLogo%2Flogo_180x96.png" - } - ] - }, - { - "definitionType": "webTVSquare", - "listLogos": [ - { - "size": "150x150", - "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_rai_news_24%2F20210517_173924%2FwebTVSquare%2Flogo_150x150.png" - } - ] - } - ], - "mobileData": { - "wifiForbidden": false, - "wifiSecuredOnly": false, - "everywhereChannel": true, - "nomadismAllowed": true, - "drmLevels": [ - { - "definition": "SD", - "securedTerminal": [ - "DRM-HW", - "DRM-SW" - ], - "unsecuredTerminal": [ - "DRM-HW", - "DRM-SW" - ] - }, - { - "definition": "HD", - "securedTerminal": [ - "ND" - ], - "unsecuredTerminal": [ - "ND" - ] - } - ] - }, - "webdeviceData": { - "nomadismAllowed": true - }, - "technicalChannels": { - "live": [ - { - "techChannelId": "400388", - "type": "CLOUDTV", - "liveTargetURLRelativePath": "livetv_rainews24_ctv", - "usi": 400388, - "isDRMized": true, - "csa5Disabled": true - } - ], - "npvr": [ - { - "externalId": "livetv_rainews24_ctv", - "techChannelId": "400388", - "type": "CLOUDTV", - "usi": 400388, - "isDRMized": true, - "antiAdskipping": "DEACTIVATED", - "csa5Disabled": true - } - ], - "startover": [] - } - }, - { - "name": "MEDIASET ITALIA", - "editoChannelId": "livetv_mediaset_italia", - "lcn": 466, - "idEPG": 90466, - "epgAvailable": false, - "epgTextSubstitution": "", - "displayOrder": 466, - "csaCode": 1, - "slogan": "La TV des Italiens à l'étranger", - "catchupChannelId": "", - "newChannel": true, - "roamingBlocked": false, - "allowedDeviceCategories": [ - "M_ANDROID", - "M_IOS", - "M_TABLET_ANDROID", - "M_TABLET_IOS", - "W_AIRPLAY", - "W_CHROMECAST", - "W_LACLETV2", - "W_SMARTTV", - "W_PC", - "S_STB" - ], - "packages": [ - "PA_bouquet_italien", - "PI_WHITELIST" - ], - "hasRightIAccess": true, - "hasRightMAccess": false, - "logos": [ - { - "definitionType": "mobileAppli", - "listLogos": [ - { - "size": "183x183", - "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_mediaset_italia%2F20210517_173924%2FmobileAppli%2Flogo_183x183.png" - } - ] - }, - { - "definitionType": "mobileAppliDark", - "listLogos": [ - { - "size": "183x183", - "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_mediaset_italia%2F20210517_173924%2FmobileAppliDark%2Flogo_183x183.png" - } - ] - }, - { - "definitionType": "webTVLogo", - "listLogos": [ - { - "size": "180x96", - "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_mediaset_italia%2F20210517_173924%2FwebTVLogo%2Flogo_180x96.png" - } - ] - }, - { - "definitionType": "webTVSquare", - "listLogos": [ - { - "size": "150x150", - "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_mediaset_italia%2F20210517_173924%2FwebTVSquare%2Flogo_150x150.png" - } - ] - } - ], - "mobileData": { - "wifiForbidden": false, - "wifiSecuredOnly": false, - "everywhereChannel": true, - "nomadismAllowed": true, - "drmLevels": [ - { - "definition": "SD", - "securedTerminal": [ - "DRM-HW", - "DRM-SW" - ], - "unsecuredTerminal": [ - "DRM-HW", - "DRM-SW" - ] - }, - { - "definition": "HD", - "securedTerminal": [ - "ND" - ], - "unsecuredTerminal": [ - "ND" - ] - } - ] - }, - "webdeviceData": { - "nomadismAllowed": true - }, - "technicalChannels": { - "live": [ - { - "techChannelId": "400389", - "type": "CLOUDTV", - "liveTargetURLRelativePath": "livetv_mediasetitalia_ctv", - "usi": 400389, - "isDRMized": true, - "csa5Disabled": true - } - ], - "npvr": [ - { - "externalId": "livetv_mediasetitalia_ctv", - "techChannelId": "400389", - "type": "CLOUDTV", - "usi": 400389, - "isDRMized": true, - "antiAdskipping": "DEACTIVATED", - "csa5Disabled": true - } - ], - "startover": [] - } - }, - { - "name": "THE ISRAELI NETWORK", - "editoChannelId": "livetv_the_israeli_network", - "lcn": 499, - "idEPG": 2000, - "epgAvailable": true, - "epgTextSubstitution": "", - "displayOrder": 499, - "csaCode": 1, - "slogan": "Greetings from Israel", - "catchupChannelId": "", - "newChannel": false, - "roamingBlocked": true, - "allowedDeviceCategories": [ - "W_AIRPLAY", - "W_CHROMECAST", - "W_LACLETV2", - "W_PC", - "W_SMARTTV", - "S_STB" - ], - "packages": [ - "PA_bouquet_israelien", - "PA_BQ_BASIC_I", - "PI_WHITELIST" - ], - "hasRightIAccess": true, - "hasRightMAccess": false, - "logos": [ - { - "definitionType": "mobileAppli", - "listLogos": [ - { - "size": "183x183", - "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_the_israeli_network%2F20230216_164754%2FmobileAppli%2Flogo_183x183.png" - } - ] - }, - { - "definitionType": "mobileAppliDark", - "listLogos": [ - { - "size": "183x183", - "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_the_israeli_network%2F20230216_164754%2FmobileAppliDark%2Flogo_183x183.png" - } - ] - }, - { - "definitionType": "webTVLogo", - "listLogos": [ - { - "size": "180x96", - "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_the_israeli_network%2F20230216_164754%2FwebTVLogo%2Flogo_180x96.png" - } - ] - }, - { - "definitionType": "webTVSquare", - "listLogos": [ - { - "size": "150x150", - "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_the_israeli_network%2F20230216_164754%2FwebTVSquare%2Flogo_150x150.png" - } - ] - } - ], - "webdeviceData": { - "nomadismAllowed": true - }, - "technicalChannels": { - "live": [ - { - "techChannelId": "400417", - "type": "CLOUDTV", - "liveTargetURLRelativePath": "livetv_acces_limite_ctv", - "usi": 400417, - "isDRMized": true, - "csa5Disabled": true - } - ], - "npvr": [], - "startover": [] - } - }, - { - "name": "AL ARABIYA", - "editoChannelId": "livetv_alarabiya", - "lcn": 501, - "idEPG": 90501, - "epgAvailable": false, - "epgTextSubstitution": "", - "displayOrder": 501, - "csaCode": 1, - "slogan": "Pour en savoir plus", - "catchupChannelId": "", - "newChannel": true, - "roamingBlocked": false, - "allowedDeviceCategories": [ - "M_ANDROID", - "M_IOS", - "M_TABLET_ANDROID", - "M_TABLET_IOS", - "W_AIRPLAY", - "W_CHROMECAST", - "W_LACLETV2", - "W_PC", - "W_SMARTTV", - "S_STB" - ], - "packages": [ - "PA_BQ_BASIC_M", - "PA_BQ_TVDIGITALE_I", - "PA_BQ_BASIC_I", - "PA_BQ_BASICQUAD_I", - "PI_WHITELIST" - ], - "hasRightIAccess": true, - "hasRightMAccess": true, - "logos": [ - { - "definitionType": "mobileAppli", - "listLogos": [ - { - "size": "183x183", - "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_alarabiya%2F20230515_122020%2FmobileAppli%2Flogo_183x183.png" - } - ] - }, - { - "definitionType": "mobileAppliDark", - "listLogos": [ - { - "size": "183x183", - "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_alarabiya%2F20230515_122020%2FmobileAppliDark%2Flogo_183x183.png" - } - ] - }, - { - "definitionType": "webTVLogo", - "listLogos": [ - { - "size": "180x96", - "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_alarabiya%2F20230515_122020%2FwebTVLogo%2Flogo_180x96.png" - } - ] - }, - { - "definitionType": "webTVSquare", - "listLogos": [ - { - "size": "150x150", - "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_alarabiya%2F20230515_122020%2FwebTVSquare%2Flogo_150x150.png" - } - ] - } - ], - "mobileData": { - "wifiForbidden": false, - "wifiSecuredOnly": false, - "everywhereChannel": true, - "nomadismAllowed": true, - "drmLevels": [ - { - "definition": "SD", - "securedTerminal": [ - "DRM-HW", - "DRM-SW" - ], - "unsecuredTerminal": [ - "DRM-HW", - "DRM-SW" - ] - }, - { - "definition": "HD", - "securedTerminal": [ - "DRM-HW", - "DRM-SW" - ], - "unsecuredTerminal": [ - "ND" - ] - } - ] - }, - "webdeviceData": { - "nomadismAllowed": true - }, - "technicalChannels": { - "live": [ - { - "techChannelId": "400362", - "type": "CLOUDTV", - "liveTargetURLRelativePath": "livetv_al_arabiya_ctv", - "usi": 400362, - "isDRMized": true, - "csa5Disabled": true - } - ], - "npvr": [], - "startover": [] - } - }, - { - "name": "ALARABY TELEVISION", - "editoChannelId": "livetv_alaraby2", - "lcn": 503, - "idEPG": 90503, - "epgAvailable": false, - "epgTextSubstitution": "", - "displayOrder": 503, - "csaCode": 1, - "slogan": "De A à Z", - "catchupChannelId": "", - "newChannel": true, - "roamingBlocked": true, - "allowedDeviceCategories": [ - "M_ANDROID", - "M_IOS", - "M_TABLET_ANDROID", - "M_TABLET_IOS", - "W_AIRPLAY", - "W_CHROMECAST", - "W_LACLETV2", - "W_SMARTTV", - "W_PC", - "S_STB" - ], - "packages": [ - "PA_BQ_BASIC_M", - "PA_BQ_BASIC_I", - "PA_BQ_BASICQUAD_I", - "PI_WHITELIST" - ], - "hasRightIAccess": true, - "hasRightMAccess": true, - "logos": [ - { - "definitionType": "mobileAppli", - "listLogos": [ - { - "size": "183x183", - "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_alaraby2%2F20200102_141654%2FmobileAppli%2Flogo_183x183.png" - } - ] - }, - { - "definitionType": "mobileAppliDark", - "listLogos": [ - { - "size": "183x183", - "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_alaraby2%2F20200102_141654%2FmobileAppliDark%2Flogo_183x183.png" - } - ] - }, - { - "definitionType": "webTVLogo", - "listLogos": [ - { - "size": "180x96", - "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_alaraby2%2F20200102_141654%2FwebTVLogo%2Flogo_180x96.png" - } - ] - }, - { - "definitionType": "webTVSquare", - "listLogos": [ - { - "size": "150x150", - "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_alaraby2%2F20200102_141654%2FwebTVSquare%2Flogo_150x150.png" - } - ] - } - ], - "mobileData": { - "wifiForbidden": false, - "wifiSecuredOnly": false, - "everywhereChannel": true, - "nomadismAllowed": true, - "drmLevels": [ - { - "definition": "SD", - "securedTerminal": [ - "DRM-HW", - "DRM-SW" - ], - "unsecuredTerminal": [ - "DRM-HW", - "DRM-SW" - ] - }, - { - "definition": "HD", - "securedTerminal": [ - "ND" - ], - "unsecuredTerminal": [ - "ND" - ] - } - ] - }, - "webdeviceData": { - "nomadismAllowed": true - }, - "technicalChannels": { - "live": [ - { - "techChannelId": "400245", - "type": "CLOUDTV", - "liveTargetURLRelativePath": "livetv_alarabiya_ctv", - "usi": 400245, - "isDRMized": true, - "csa5Disabled": true - } - ], - "npvr": [], - "startover": [] - } - }, - { - "name": "AL AOULA", - "editoChannelId": "livetv_alaoula", - "lcn": 504, - "idEPG": 90504, - "epgAvailable": false, - "epgTextSubstitution": "", - "displayOrder": 504, - "csaCode": 1, - "slogan": "Chaine nationale marocaine", - "catchupChannelId": "", - "newChannel": false, - "roamingBlocked": true, - "allowedDeviceCategories": [ - "M_ANDROID", - "M_IOS", - "M_TABLET_ANDROID", - "M_TABLET_IOS", - "W_AIRPLAY", - "W_CHROMECAST", - "W_LACLETV2", - "W_SMARTTV", - "W_PC", - "S_STB" - ], - "packages": [ - "PA_BQ_BASIC_M", - "PA_BQ_TVDIGITALE_I", - "PA_BQ_BASIC_I", - "PA_BQ_BASICQUAD_I", - "PI_WHITELIST" - ], - "hasRightIAccess": true, - "hasRightMAccess": true, - "logos": [ - { - "definitionType": "mobileAppli", - "listLogos": [ - { - "size": "183x183", - "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_alaoula%2F20220331_114124%2FmobileAppli%2Flogo_183x183.png" - } - ] - }, - { - "definitionType": "mobileAppliDark", - "listLogos": [ - { - "size": "183x183", - "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_alaoula%2F20220331_114124%2FmobileAppliDark%2Flogo_183x183.png" - } - ] - }, - { - "definitionType": "webTVLogo", - "listLogos": [ - { - "size": "180x96", - "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_alaoula%2F20220331_114124%2FwebTVLogo%2Flogo_180x96.png" - } - ] - }, - { - "definitionType": "webTVSquare", - "listLogos": [ - { - "size": "150x150", - "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_alaoula%2F20220331_114124%2FwebTVSquare%2Flogo_150x150.png" - } - ] - } - ], - "mobileData": { - "wifiForbidden": false, - "wifiSecuredOnly": false, - "everywhereChannel": true, - "nomadismAllowed": true, - "drmLevels": [ - { - "definition": "SD", - "securedTerminal": [ - "DRM-HW", - "DRM-SW" - ], - "unsecuredTerminal": [ - "DRM-HW", - "DRM-SW" - ] - }, - { - "definition": "HD", - "securedTerminal": [ - "ND" - ], - "unsecuredTerminal": [ - "ND" - ] - } - ] - }, - "webdeviceData": { - "nomadismAllowed": true - }, - "technicalChannels": { - "live": [ - { - "techChannelId": "400006", - "type": "CLOUDTV", - "liveTargetURLRelativePath": "livetv_al_aoula_ctv", - "usi": 400006, - "isDRMized": true, - "csa5Disabled": true - } - ], - "npvr": [ - { - "externalId": "livetv_al_aoula_ctv", - "techChannelId": "400006", - "type": "CLOUDTV", - "usi": 400006, - "isDRMized": true, - "antiAdskipping": "DEACTIVATED", - "csa5Disabled": true - } - ], - "startover": [] - } - }, - { - "name": "CANAL ALGERIE", - "editoChannelId": "livetv_canalalgerie", - "lcn": 505, - "idEPG": 90505, - "epgAvailable": false, - "epgTextSubstitution": "", - "displayOrder": 505, - "csaCode": 1, - "slogan": "La chaîne généraliste algérienne", - "catchupChannelId": "", - "newChannel": false, - "roamingBlocked": true, - "allowedDeviceCategories": [ - "M_ANDROID", - "M_IOS", - "M_TABLET_ANDROID", - "M_TABLET_IOS", - "W_AIRPLAY", - "W_CHROMECAST", - "W_LACLETV2", - "W_SMARTTV", - "W_PC", - "S_STB" - ], - "packages": [ - "PA_BQ_BASIC_M", - "PA_BQ_TVDIGITALE_I", - "PA_BQ_BASIC_I", - "PA_BQ_BASICQUAD_I", - "PI_WHITELIST" - ], - "hasRightIAccess": true, - "hasRightMAccess": true, - "logos": [ - { - "definitionType": "mobileAppli", - "listLogos": [ - { - "size": "183x183", - "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_canalalgerie%2F20151026_092415%2FmobileAppli%2Flogo_183x183.png" - } - ] - }, - { - "definitionType": "mobileAppliDark", - "listLogos": [ - { - "size": "183x183", - "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_canalalgerie%2F20151026_092415%2FmobileAppliDark%2Flogo_183x183.png" - } - ] - }, - { - "definitionType": "webTVLogo", - "listLogos": [ - { - "size": "180x96", - "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_canalalgerie%2F20151026_092415%2FwebTVLogo%2Flogo_180x96.png" - } - ] - }, - { - "definitionType": "webTVSquare", - "listLogos": [ - { - "size": "150x150", - "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_canalalgerie%2F20151026_092415%2FwebTVSquare%2Flogo_150x150.png" - } - ] - } - ], - "mobileData": { - "wifiForbidden": false, - "wifiSecuredOnly": false, - "everywhereChannel": true, - "nomadismAllowed": true, - "drmLevels": [ - { - "definition": "SD", - "securedTerminal": [ - "DRM-HW", - "DRM-SW" - ], - "unsecuredTerminal": [ - "DRM-HW", - "DRM-SW" - ] - }, - { - "definition": "HD", - "securedTerminal": [ - "ND" - ], - "unsecuredTerminal": [ - "ND" - ] - } - ] - }, - "webdeviceData": { - "nomadismAllowed": true - }, - "technicalChannels": { - "live": [ - { - "techChannelId": "400011", - "type": "CLOUDTV", - "liveTargetURLRelativePath": "livetv_canal_algerie_ctv", - "usi": 400011, - "isDRMized": true, - "csa5Disabled": true - } - ], - "npvr": [ - { - "externalId": "livetv_canal_algerie_ctv", - "techChannelId": "400011", - "type": "CLOUDTV", - "usi": 400011, - "isDRMized": true, - "antiAdskipping": "DEACTIVATED", - "csa5Disabled": true - } - ], - "startover": [] - } - }, - { - "name": "MBC", - "editoChannelId": "livetv_mbc", - "lcn": 507, - "idEPG": 90507, - "epgAvailable": false, - "epgTextSubstitution": "", - "displayOrder": 507, - "csaCode": 1, - "slogan": "la chaîne du monde arabe pour tous", - "catchupChannelId": "", - "newChannel": true, - "roamingBlocked": false, - "allowedDeviceCategories": [ - "M_ANDROID", - "M_IOS", - "M_TABLET_ANDROID", - "M_TABLET_IOS", - "W_AIRPLAY", - "W_CHROMECAST", - "W_LACLETV2", - "W_SMARTTV", - "W_PC", - "S_STB" - ], - "packages": [ - "PA_bouquet_arabe", - "PA_bouquet_arabe_max", - "PI_WHITELIST" - ], - "hasRightIAccess": true, - "hasRightMAccess": false, - "logos": [ - { - "definitionType": "mobileAppli", - "listLogos": [ - { - "size": "183x183", - "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_mbc%2F20191107_103814%2FmobileAppli%2Flogo_183x183.png" - } - ] - }, - { - "definitionType": "mobileAppliDark", - "listLogos": [ - { - "size": "183x183", - "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_mbc%2F20191107_103814%2FmobileAppliDark%2Flogo_183x183.png" - } - ] - }, - { - "definitionType": "webTVLogo", - "listLogos": [ - { - "size": "180x96", - "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_mbc%2F20191107_103814%2FwebTVLogo%2Flogo_180x96.png" - } - ] - }, - { - "definitionType": "webTVSquare", - "listLogos": [ - { - "size": "150x150", - "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_mbc%2F20191107_103814%2FwebTVSquare%2Flogo_150x150.png" - } - ] - } - ], - "mobileData": { - "wifiForbidden": false, - "wifiSecuredOnly": false, - "everywhereChannel": true, - "nomadismAllowed": true, - "drmLevels": [ - { - "definition": "SD", - "securedTerminal": [ - "DRM-HW", - "DRM-SW" - ], - "unsecuredTerminal": [ - "DRM-HW", - "DRM-SW" - ] - }, - { - "definition": "HD", - "securedTerminal": [ - "ND" - ], - "unsecuredTerminal": [ - "ND" - ] - } - ] - }, - "webdeviceData": { - "nomadismAllowed": true - }, - "technicalChannels": { - "live": [ - { - "techChannelId": "400187", - "type": "CLOUDTV", - "liveTargetURLRelativePath": "livetv_mbc_ctv", - "usi": 400187, - "isDRMized": true, - "csa5Disabled": true - } - ], - "npvr": [ - { - "externalId": "livetv_mbc_ctv", - "techChannelId": "400187", - "type": "CLOUDTV", - "usi": 400187, - "isDRMized": true, - "antiAdskipping": "DEACTIVATED", - "csa5Disabled": true - } - ], - "startover": [] - } - }, - { - "name": "ROTANA CLASSIC", - "editoChannelId": "livetv_rotana_classic", - "lcn": 508, - "idEPG": 90508, - "epgAvailable": false, - "epgTextSubstitution": "", - "displayOrder": 508, - "csaCode": 1, - "slogan": "Great classics, today", - "catchupChannelId": "", - "newChannel": true, - "roamingBlocked": false, - "allowedDeviceCategories": [ - "M_ANDROID", - "M_IOS", - "M_TABLET_ANDROID", - "M_TABLET_IOS", - "W_AIRPLAY", - "W_CHROMECAST", - "W_LACLETV2", - "W_SMARTTV", - "W_PC", - "S_STB" - ], - "packages": [ - "PA_bouquet_arabe", - "PA_bouquet_arabe_max", - "PI_WHITELIST" - ], - "hasRightIAccess": true, - "hasRightMAccess": false, - "logos": [ - { - "definitionType": "mobileAppli", - "listLogos": [ - { - "size": "183x183", - "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_rotana_classic%2F20191107_103814%2FmobileAppli%2Flogo_183x183.png" - } - ] - }, - { - "definitionType": "mobileAppliDark", - "listLogos": [ - { - "size": "183x183", - "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_rotana_classic%2F20191107_103814%2FmobileAppliDark%2Flogo_183x183.png" - } - ] - }, - { - "definitionType": "webTVLogo", - "listLogos": [ - { - "size": "180x96", - "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_rotana_classic%2F20191107_103814%2FwebTVLogo%2Flogo_180x96.png" - } - ] - }, - { - "definitionType": "webTVSquare", - "listLogos": [ - { - "size": "150x150", - "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_rotana_classic%2F20191107_103814%2FwebTVSquare%2Flogo_150x150.png" - } - ] - } - ], - "mobileData": { - "wifiForbidden": false, - "wifiSecuredOnly": false, - "everywhereChannel": true, - "nomadismAllowed": true, - "drmLevels": [ - { - "definition": "SD", - "securedTerminal": [ - "DRM-HW", - "DRM-SW" - ], - "unsecuredTerminal": [ - "DRM-HW", - "DRM-SW" - ] - }, - { - "definition": "HD", - "securedTerminal": [ - "ND" - ], - "unsecuredTerminal": [ - "ND" - ] - } - ] - }, - "webdeviceData": { - "nomadismAllowed": true - }, - "technicalChannels": { - "live": [ - { - "techChannelId": "400188", - "type": "CLOUDTV", - "liveTargetURLRelativePath": "livetv_rotana_classic_ctv", - "usi": 400188, - "isDRMized": true, - "csa5Disabled": true - } - ], - "npvr": [ - { - "externalId": "livetv_rotana_classic_ctv", - "techChannelId": "400188", - "type": "CLOUDTV", - "usi": 400188, - "isDRMized": true, - "antiAdskipping": "DEACTIVATED", - "csa5Disabled": true - } - ], - "startover": [] - } - }, - { - "name": "ROTANA CLIP", - "editoChannelId": "livetv_rotana_clip", - "lcn": 509, - "idEPG": 90509, - "epgAvailable": false, - "epgTextSubstitution": "", - "displayOrder": 509, - "csaCode": 1, - "slogan": "The best of arabic video clips", - "catchupChannelId": "", - "newChannel": true, - "roamingBlocked": false, - "allowedDeviceCategories": [ - "M_ANDROID", - "M_IOS", - "M_TABLET_ANDROID", - "M_TABLET_IOS", - "W_AIRPLAY", - "W_CHROMECAST", - "W_LACLETV2", - "W_SMARTTV", - "W_PC", - "S_STB" - ], - "packages": [ - "PA_bouquet_arabe", - "PA_bouquet_arabe_max", - "PI_WHITELIST" - ], - "hasRightIAccess": true, - "hasRightMAccess": false, - "logos": [ - { - "definitionType": "mobileAppli", - "listLogos": [ - { - "size": "183x183", - "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_rotana_clip%2F20191107_103814%2FmobileAppli%2Flogo_183x183.png" - } - ] - }, - { - "definitionType": "mobileAppliDark", - "listLogos": [ - { - "size": "183x183", - "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_rotana_clip%2F20191107_103814%2FmobileAppliDark%2Flogo_183x183.png" - } - ] - }, - { - "definitionType": "webTVLogo", - "listLogos": [ - { - "size": "180x96", - "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_rotana_clip%2F20191107_103814%2FwebTVLogo%2Flogo_180x96.png" - } - ] - }, - { - "definitionType": "webTVSquare", - "listLogos": [ - { - "size": "150x150", - "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_rotana_clip%2F20191107_103814%2FwebTVSquare%2Flogo_150x150.png" - } - ] - } - ], - "mobileData": { - "wifiForbidden": false, - "wifiSecuredOnly": false, - "everywhereChannel": true, - "nomadismAllowed": true, - "drmLevels": [ - { - "definition": "SD", - "securedTerminal": [ - "DRM-HW", - "DRM-SW" - ], - "unsecuredTerminal": [ - "DRM-HW", - "DRM-SW" - ] - }, - { - "definition": "HD", - "securedTerminal": [ - "ND" - ], - "unsecuredTerminal": [ - "ND" - ] - } - ] - }, - "webdeviceData": { - "nomadismAllowed": true - }, - "technicalChannels": { - "live": [ - { - "techChannelId": "400189", - "type": "CLOUDTV", - "liveTargetURLRelativePath": "livetv_rotana_clip_ctv", - "usi": 400189, - "isDRMized": true, - "csa5Disabled": true - } - ], - "npvr": [ - { - "externalId": "livetv_rotana_clip_ctv", - "techChannelId": "400189", - "type": "CLOUDTV", - "usi": 400189, - "isDRMized": true, - "antiAdskipping": "DEACTIVATED", - "csa5Disabled": true - } - ], - "startover": [] - } - }, - { - "name": "ENNAHAR TV", - "editoChannelId": "livetv_ennahar_tv", - "lcn": 510, - "idEPG": 90510, - "epgAvailable": false, - "epgTextSubstitution": "", - "displayOrder": 510, - "csaCode": 1, - "slogan": "Première chaîne d’information en Algérie", - "catchupChannelId": "", - "newChannel": true, - "roamingBlocked": false, - "allowedDeviceCategories": [ - "M_ANDROID", - "M_IOS", - "M_TABLET_ANDROID", - "M_TABLET_IOS", - "W_AIRPLAY", - "W_CHROMECAST", - "W_LACLETV2", - "W_SMARTTV", - "W_PC", - "S_STB" - ], - "packages": [ - "PA_bouquet_arabe", - "PA_bouquet_arabe_max", - "PI_WHITELIST" - ], - "hasRightIAccess": true, - "hasRightMAccess": false, - "logos": [ - { - "definitionType": "mobileAppli", - "listLogos": [ - { - "size": "183x183", - "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_ennahar_tv%2F20191107_103814%2FmobileAppli%2Flogo_183x183.png" - } - ] - }, - { - "definitionType": "mobileAppliDark", - "listLogos": [ - { - "size": "183x183", - "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_ennahar_tv%2F20191107_103814%2FmobileAppliDark%2Flogo_183x183.png" - } - ] - }, - { - "definitionType": "webTVLogo", - "listLogos": [ - { - "size": "180x96", - "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_ennahar_tv%2F20191107_103814%2FwebTVLogo%2Flogo_180x96.png" - } - ] - }, - { - "definitionType": "webTVSquare", - "listLogos": [ - { - "size": "150x150", - "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_ennahar_tv%2F20191107_103814%2FwebTVSquare%2Flogo_150x150.png" - } - ] - } - ], - "mobileData": { - "wifiForbidden": false, - "wifiSecuredOnly": false, - "everywhereChannel": true, - "nomadismAllowed": true, - "drmLevels": [ - { - "definition": "SD", - "securedTerminal": [ - "DRM-HW", - "DRM-SW" - ], - "unsecuredTerminal": [ - "DRM-HW", - "DRM-SW" - ] - }, - { - "definition": "HD", - "securedTerminal": [ - "ND" - ], - "unsecuredTerminal": [ - "ND" - ] - } - ] - }, - "webdeviceData": { - "nomadismAllowed": true - }, - "technicalChannels": { - "live": [ - { - "techChannelId": "400190", - "type": "CLOUDTV", - "liveTargetURLRelativePath": "livetv_ennahar_tv_ctv", - "usi": 400190, - "isDRMized": true, - "csa5Disabled": true - } - ], - "npvr": [ - { - "externalId": "livetv_ennahar_tv_ctv", - "techChannelId": "400190", - "type": "CLOUDTV", - "usi": 400190, - "isDRMized": true, - "antiAdskipping": "DEACTIVATED", - "csa5Disabled": true - } - ], - "startover": [] - } - }, - { - "name": "ECHOROUK TV", - "editoChannelId": "livetv_echorouk_tv", - "lcn": 511, - "idEPG": 90511, - "epgAvailable": false, - "epgTextSubstitution": "", - "displayOrder": 511, - "csaCode": 1, - "slogan": "La chaîne de toute la famille", - "catchupChannelId": "", - "newChannel": true, - "roamingBlocked": false, - "allowedDeviceCategories": [ - "M_ANDROID", - "M_IOS", - "M_TABLET_ANDROID", - "M_TABLET_IOS", - "W_AIRPLAY", - "W_CHROMECAST", - "W_LACLETV2", - "W_SMARTTV", - "W_PC", - "S_STB" - ], - "packages": [ - "PA_bouquet_arabe", - "PA_bouquet_arabe_max", - "PI_WHITELIST" - ], - "hasRightIAccess": true, - "hasRightMAccess": false, - "logos": [ - { - "definitionType": "mobileAppli", - "listLogos": [ - { - "size": "183x183", - "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_echorouk_tv%2F20191107_103814%2FmobileAppli%2Flogo_183x183.png" - } - ] - }, - { - "definitionType": "mobileAppliDark", - "listLogos": [ - { - "size": "183x183", - "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_echorouk_tv%2F20191107_103814%2FmobileAppliDark%2Flogo_183x183.png" - } - ] - }, - { - "definitionType": "webTVLogo", - "listLogos": [ - { - "size": "180x96", - "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_echorouk_tv%2F20191107_103814%2FwebTVLogo%2Flogo_180x96.png" - } - ] - }, - { - "definitionType": "webTVSquare", - "listLogos": [ - { - "size": "150x150", - "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_echorouk_tv%2F20191107_103814%2FwebTVSquare%2Flogo_150x150.png" - } - ] - } - ], - "mobileData": { - "wifiForbidden": false, - "wifiSecuredOnly": false, - "everywhereChannel": true, - "nomadismAllowed": true, - "drmLevels": [ - { - "definition": "SD", - "securedTerminal": [ - "DRM-HW", - "DRM-SW" - ], - "unsecuredTerminal": [ - "DRM-HW", - "DRM-SW" - ] - }, - { - "definition": "HD", - "securedTerminal": [ - "ND" - ], - "unsecuredTerminal": [ - "ND" - ] - } - ] - }, - "webdeviceData": { - "nomadismAllowed": true - }, - "technicalChannels": { - "live": [ - { - "techChannelId": "400191", - "type": "CLOUDTV", - "liveTargetURLRelativePath": "livetv_echorouk_tv_ctv", - "usi": 400191, - "isDRMized": true, - "csa5Disabled": true - } - ], - "npvr": [ - { - "externalId": "livetv_echorouk_tv_ctv", - "techChannelId": "400191", - "type": "CLOUDTV", - "usi": 400191, - "isDRMized": true, - "antiAdskipping": "DEACTIVATED", - "csa5Disabled": true - } - ], - "startover": [] - } - }, - { - "name": "NESSMA EU", - "editoChannelId": "livetv_nessma", - "lcn": 512, - "idEPG": 90512, - "epgAvailable": false, - "epgTextSubstitution": "", - "displayOrder": 512, - "csaCode": 1, - "slogan": "La télé du Grand Maghreb", - "catchupChannelId": "", - "newChannel": true, - "roamingBlocked": false, - "allowedDeviceCategories": [ - "M_ANDROID", - "M_IOS", - "M_TABLET_ANDROID", - "M_TABLET_IOS", - "W_AIRPLAY", - "W_CHROMECAST", - "W_LACLETV2", - "W_SMARTTV", - "W_PC", - "S_STB" - ], - "packages": [ - "PA_bouquet_arabe", - "PA_bouquet_arabe_max", - "PI_WHITELIST" - ], - "hasRightIAccess": true, - "hasRightMAccess": false, - "logos": [ - { - "definitionType": "mobileAppli", - "listLogos": [ - { - "size": "183x183", - "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_nessma%2F20191107_103814%2FmobileAppli%2Flogo_183x183.png" - } - ] - }, - { - "definitionType": "mobileAppliDark", - "listLogos": [ - { - "size": "183x183", - "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_nessma%2F20191107_103814%2FmobileAppliDark%2Flogo_183x183.png" - } - ] - }, - { - "definitionType": "webTVLogo", - "listLogos": [ - { - "size": "180x96", - "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_nessma%2F20191107_103814%2FwebTVLogo%2Flogo_180x96.png" - } - ] - }, - { - "definitionType": "webTVSquare", - "listLogos": [ - { - "size": "150x150", - "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_nessma%2F20191107_103814%2FwebTVSquare%2Flogo_150x150.png" - } - ] - } - ], - "mobileData": { - "wifiForbidden": false, - "wifiSecuredOnly": false, - "everywhereChannel": true, - "nomadismAllowed": true, - "drmLevels": [ - { - "definition": "SD", - "securedTerminal": [ - "DRM-HW", - "DRM-SW" - ], - "unsecuredTerminal": [ - "DRM-HW", - "DRM-SW" - ] - }, - { - "definition": "HD", - "securedTerminal": [ - "ND" - ], - "unsecuredTerminal": [ - "ND" - ] - } - ] - }, - "webdeviceData": { - "nomadismAllowed": true - }, - "technicalChannels": { - "live": [ - { - "techChannelId": "400193", - "type": "CLOUDTV", - "liveTargetURLRelativePath": "livetv_nessma_eu_ctv", - "usi": 400193, - "isDRMized": true, - "csa5Disabled": true - } - ], - "npvr": [ - { - "externalId": "livetv_nessma_eu_ctv", - "techChannelId": "400193", - "type": "CLOUDTV", - "usi": 400193, - "isDRMized": true, - "antiAdskipping": "DEACTIVATED", - "csa5Disabled": true - } - ], - "startover": [] - } - }, - { - "name": "EL HIWAR ETTOUNSI", - "editoChannelId": "livetv_el_hiwar_ettounsi", - "lcn": 513, - "idEPG": 90513, - "epgAvailable": false, - "epgTextSubstitution": "", - "displayOrder": 513, - "csaCode": 1, - "slogan": "La parole libre : pilier de la patrie", - "catchupChannelId": "", - "newChannel": true, - "roamingBlocked": false, - "allowedDeviceCategories": [ - "M_ANDROID", - "M_IOS", - "M_TABLET_ANDROID", - "M_TABLET_IOS", - "W_AIRPLAY", - "W_CHROMECAST", - "W_LACLETV2", - "W_SMARTTV", - "W_PC", - "S_STB" - ], - "packages": [ - "PA_bouquet_arabe", - "PA_bouquet_arabe_max", - "PI_WHITELIST" - ], - "hasRightIAccess": true, - "hasRightMAccess": false, - "logos": [ - { - "definitionType": "mobileAppli", - "listLogos": [ - { - "size": "183x183", - "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_el_hiwar_ettounsi%2F20191107_103814%2FmobileAppli%2Flogo_183x183.png" - } - ] - }, - { - "definitionType": "mobileAppliDark", - "listLogos": [ - { - "size": "183x183", - "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_el_hiwar_ettounsi%2F20191107_103814%2FmobileAppliDark%2Flogo_183x183.png" - } - ] - }, - { - "definitionType": "webTVLogo", - "listLogos": [ - { - "size": "180x96", - "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_el_hiwar_ettounsi%2F20191107_103814%2FwebTVLogo%2Flogo_180x96.png" - } - ] - }, - { - "definitionType": "webTVSquare", - "listLogos": [ - { - "size": "150x150", - "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_el_hiwar_ettounsi%2F20191107_103814%2FwebTVSquare%2Flogo_150x150.png" - } - ] - } - ], - "mobileData": { - "wifiForbidden": false, - "wifiSecuredOnly": false, - "everywhereChannel": true, - "nomadismAllowed": true, - "drmLevels": [ - { - "definition": "SD", - "securedTerminal": [ - "DRM-HW", - "DRM-SW" - ], - "unsecuredTerminal": [ - "DRM-HW", - "DRM-SW" - ] - }, - { - "definition": "HD", - "securedTerminal": [ - "ND" - ], - "unsecuredTerminal": [ - "ND" - ] - } - ] - }, - "webdeviceData": { - "nomadismAllowed": true - }, - "technicalChannels": { - "live": [ - { - "techChannelId": "400194", - "type": "CLOUDTV", - "liveTargetURLRelativePath": "livetv_el_hiwar_ettounsi_ctv", - "usi": 400194, - "isDRMized": true, - "csa5Disabled": true - } - ], - "npvr": [ - { - "externalId": "livetv_el_hiwar_ettounsi_ctv", - "techChannelId": "400194", - "type": "CLOUDTV", - "usi": 400194, - "isDRMized": true, - "antiAdskipping": "DEACTIVATED", - "csa5Disabled": true - } - ], - "startover": [] - } - }, - { - "name": "AL RESALAH", - "editoChannelId": "livetv_al_resalah", - "lcn": 514, - "idEPG": 90514, - "epgAvailable": false, - "epgTextSubstitution": "", - "displayOrder": 514, - "csaCode": 1, - "slogan": "Chaine culturelle coranique", - "catchupChannelId": "", - "newChannel": true, - "roamingBlocked": false, - "allowedDeviceCategories": [ - "M_ANDROID", - "M_IOS", - "M_TABLET_ANDROID", - "M_TABLET_IOS", - "W_AIRPLAY", - "W_CHROMECAST", - "W_LACLETV2", - "W_SMARTTV", - "W_PC", - "S_STB" - ], - "packages": [ - "PA_bouquet_arabe", - "PA_bouquet_arabe_max", - "PI_WHITELIST" - ], - "hasRightIAccess": true, - "hasRightMAccess": false, - "logos": [ - { - "definitionType": "mobileAppli", - "listLogos": [ - { - "size": "183x183", - "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_al_resalah%2F20191107_103814%2FmobileAppli%2Flogo_183x183.png" - } - ] - }, - { - "definitionType": "mobileAppliDark", - "listLogos": [ - { - "size": "183x183", - "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_al_resalah%2F20191107_103814%2FmobileAppliDark%2Flogo_183x183.png" - } - ] - }, - { - "definitionType": "webTVLogo", - "listLogos": [ - { - "size": "180x96", - "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_al_resalah%2F20191107_103814%2FwebTVLogo%2Flogo_180x96.png" - } - ] - }, - { - "definitionType": "webTVSquare", - "listLogos": [ - { - "size": "150x150", - "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_al_resalah%2F20191107_103814%2FwebTVSquare%2Flogo_150x150.png" - } - ] - } - ], - "mobileData": { - "wifiForbidden": false, - "wifiSecuredOnly": false, - "everywhereChannel": true, - "nomadismAllowed": true, - "drmLevels": [ - { - "definition": "SD", - "securedTerminal": [ - "DRM-HW", - "DRM-SW" - ], - "unsecuredTerminal": [ - "DRM-HW", - "DRM-SW" - ] - }, - { - "definition": "HD", - "securedTerminal": [ - "ND" - ], - "unsecuredTerminal": [ - "ND" - ] - } - ] - }, - "webdeviceData": { - "nomadismAllowed": true - }, - "technicalChannels": { - "live": [ - { - "techChannelId": "400195", - "type": "CLOUDTV", - "liveTargetURLRelativePath": "livetv_al_resalah_ctv", - "usi": 400195, - "isDRMized": true, - "csa5Disabled": true - } - ], - "npvr": [ - { - "externalId": "livetv_al_resalah_ctv", - "techChannelId": "400195", - "type": "CLOUDTV", - "usi": 400195, - "isDRMized": true, - "antiAdskipping": "DEACTIVATED", - "csa5Disabled": true - } - ], - "startover": [] - } - }, - { - "name": "IQRAA", - "editoChannelId": "livetv_iqraa", - "lcn": 515, - "idEPG": 90515, - "epgAvailable": false, - "epgTextSubstitution": "", - "displayOrder": 515, - "csaCode": 1, - "slogan": "Chaine culturelle islamique", - "catchupChannelId": "", - "newChannel": true, - "roamingBlocked": false, - "allowedDeviceCategories": [ - "M_ANDROID", - "M_IOS", - "M_TABLET_ANDROID", - "M_TABLET_IOS", - "W_AIRPLAY", - "W_CHROMECAST", - "W_LACLETV2", - "W_SMARTTV", - "W_PC", - "S_STB" - ], - "packages": [ - "PA_bouquet_arabe", - "PA_bouquet_arabe_max", - "PI_WHITELIST" - ], - "hasRightIAccess": true, - "hasRightMAccess": false, - "logos": [ - { - "definitionType": "mobileAppli", - "listLogos": [ - { - "size": "183x183", - "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_iqraa%2F20191107_103814%2FmobileAppli%2Flogo_183x183.png" - } - ] - }, - { - "definitionType": "mobileAppliDark", - "listLogos": [ - { - "size": "183x183", - "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_iqraa%2F20191107_103814%2FmobileAppliDark%2Flogo_183x183.png" - } - ] - }, - { - "definitionType": "webTVLogo", - "listLogos": [ - { - "size": "180x96", - "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_iqraa%2F20191107_103814%2FwebTVLogo%2Flogo_180x96.png" - } - ] - }, - { - "definitionType": "webTVSquare", - "listLogos": [ - { - "size": "150x150", - "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_iqraa%2F20191107_103814%2FwebTVSquare%2Flogo_150x150.png" - } - ] - } - ], - "mobileData": { - "wifiForbidden": false, - "wifiSecuredOnly": false, - "everywhereChannel": true, - "nomadismAllowed": true, - "drmLevels": [ - { - "definition": "SD", - "securedTerminal": [ - "DRM-HW", - "DRM-SW" - ], - "unsecuredTerminal": [ - "DRM-HW", - "DRM-SW" - ] - }, - { - "definition": "HD", - "securedTerminal": [ - "ND" - ], - "unsecuredTerminal": [ - "ND" - ] - } - ] - }, - "webdeviceData": { - "nomadismAllowed": true - }, - "technicalChannels": { - "live": [ - { - "techChannelId": "400196", - "type": "CLOUDTV", - "liveTargetURLRelativePath": "livetv_iqraa_ctv", - "usi": 400196, - "isDRMized": true, - "csa5Disabled": true - } - ], - "npvr": [ - { - "externalId": "livetv_iqraa_ctv", - "techChannelId": "400196", - "type": "CLOUDTV", - "usi": 400196, - "isDRMized": true, - "antiAdskipping": "DEACTIVATED", - "csa5Disabled": true - } - ], - "startover": [] - } - }, - { - "name": "IQRAA INTERNATIONAL", - "editoChannelId": "livetv_iqraa_international", - "lcn": 516, - "idEPG": 90516, - "epgAvailable": false, - "epgTextSubstitution": "", - "displayOrder": 516, - "csaCode": 1, - "slogan": "Accrois ta foi", - "catchupChannelId": "", - "newChannel": true, - "roamingBlocked": false, - "allowedDeviceCategories": [ - "M_ANDROID", - "M_IOS", - "M_TABLET_ANDROID", - "M_TABLET_IOS", - "W_AIRPLAY", - "W_CHROMECAST", - "W_LACLETV2", - "W_SMARTTV", - "W_PC", - "S_STB" - ], - "packages": [ - "PA_bouquet_arabe", - "PA_bouquet_arabe_max", - "PI_WHITELIST" - ], - "hasRightIAccess": true, - "hasRightMAccess": false, - "logos": [ - { - "definitionType": "mobileAppli", - "listLogos": [ - { - "size": "183x183", - "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_iqraa_international%2F20191107_103814%2FmobileAppli%2Flogo_183x183.png" - } - ] - }, - { - "definitionType": "mobileAppliDark", - "listLogos": [ - { - "size": "183x183", - "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_iqraa_international%2F20191107_103814%2FmobileAppliDark%2Flogo_183x183.png" - } - ] - }, - { - "definitionType": "webTVLogo", - "listLogos": [ - { - "size": "180x96", - "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_iqraa_international%2F20191107_103814%2FwebTVLogo%2Flogo_180x96.png" - } - ] - }, - { - "definitionType": "webTVSquare", - "listLogos": [ - { - "size": "150x150", - "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_iqraa_international%2F20191107_103814%2FwebTVSquare%2Flogo_150x150.png" - } - ] - } - ], - "mobileData": { - "wifiForbidden": false, - "wifiSecuredOnly": false, - "everywhereChannel": true, - "nomadismAllowed": true, - "drmLevels": [ - { - "definition": "SD", - "securedTerminal": [ - "DRM-HW", - "DRM-SW" - ], - "unsecuredTerminal": [ - "DRM-HW", - "DRM-SW" - ] - }, - { - "definition": "HD", - "securedTerminal": [ - "ND" - ], - "unsecuredTerminal": [ - "ND" - ] - } - ] - }, - "webdeviceData": { - "nomadismAllowed": true - }, - "technicalChannels": { - "live": [ - { - "techChannelId": "400197", - "type": "CLOUDTV", - "liveTargetURLRelativePath": "livetv_iqraa_international_ctv", - "usi": 400197, - "isDRMized": true, - "csa5Disabled": true - } - ], - "npvr": [ - { - "externalId": "livetv_iqraa_international_ctv", - "techChannelId": "400197", - "type": "CLOUDTV", - "usi": 400197, - "isDRMized": true, - "antiAdskipping": "DEACTIVATED", - "csa5Disabled": true - } - ], - "startover": [] - } - }, - { - "name": "SAMIRA TV", - "editoChannelId": "livetv_samira_tv", - "lcn": 517, - "idEPG": 90517, - "epgAvailable": false, - "epgTextSubstitution": "", - "displayOrder": 517, - "csaCode": 1, - "slogan": "Samira TV, ça m'ira bien", - "catchupChannelId": "", - "newChannel": true, - "roamingBlocked": false, - "allowedDeviceCategories": [ - "M_ANDROID", - "M_IOS", - "M_TABLET_ANDROID", - "M_TABLET_IOS", - "W_AIRPLAY", - "W_CHROMECAST", - "W_LACLETV2", - "W_SMARTTV", - "W_PC", - "S_STB" - ], - "packages": [ - "PA_bouquet_arabe", - "PA_bouquet_arabe_max", - "PI_WHITELIST" - ], - "hasRightIAccess": true, - "hasRightMAccess": false, - "logos": [ - { - "definitionType": "mobileAppli", - "listLogos": [ - { - "size": "183x183", - "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_samira_tv%2F20191107_103814%2FmobileAppli%2Flogo_183x183.png" - } - ] - }, - { - "definitionType": "mobileAppliDark", - "listLogos": [ - { - "size": "183x183", - "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_samira_tv%2F20191107_103814%2FmobileAppliDark%2Flogo_183x183.png" - } - ] - }, - { - "definitionType": "webTVLogo", - "listLogos": [ - { - "size": "180x96", - "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_samira_tv%2F20191107_103814%2FwebTVLogo%2Flogo_180x96.png" - } - ] - }, - { - "definitionType": "webTVSquare", - "listLogos": [ - { - "size": "150x150", - "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_samira_tv%2F20191107_103814%2FwebTVSquare%2Flogo_150x150.png" - } - ] - } - ], - "mobileData": { - "wifiForbidden": false, - "wifiSecuredOnly": false, - "everywhereChannel": true, - "nomadismAllowed": true, - "drmLevels": [ - { - "definition": "SD", - "securedTerminal": [ - "DRM-HW", - "DRM-SW" - ], - "unsecuredTerminal": [ - "DRM-HW", - "DRM-SW" - ] - }, - { - "definition": "HD", - "securedTerminal": [ - "ND" - ], - "unsecuredTerminal": [ - "ND" - ] - } - ] - }, - "webdeviceData": { - "nomadismAllowed": true - }, - "technicalChannels": { - "live": [ - { - "techChannelId": "400198", - "type": "CLOUDTV", - "liveTargetURLRelativePath": "livetv_samira_tv_ctv", - "usi": 400198, - "isDRMized": true, - "csa5Disabled": true - } - ], - "npvr": [ - { - "externalId": "livetv_samira_tv_ctv", - "techChannelId": "400198", - "type": "CLOUDTV", - "usi": 400198, - "isDRMized": true, - "antiAdskipping": "DEACTIVATED", - "csa5Disabled": true - } - ], - "startover": [] - } - }, - { - "name": "ROTANA MUSICA", - "editoChannelId": "livetv_rotana_musica", - "lcn": 519, - "idEPG": 90519, - "epgAvailable": false, - "epgTextSubstitution": "", - "displayOrder": 519, - "csaCode": 1, - "slogan": "La chaîne de musique arabe", - "catchupChannelId": "", - "newChannel": true, - "roamingBlocked": false, - "allowedDeviceCategories": [ - "M_ANDROID", - "M_IOS", - "M_TABLET_ANDROID", - "M_TABLET_IOS", - "W_AIRPLAY", - "W_CHROMECAST", - "W_LACLETV2", - "W_SMARTTV", - "W_PC", - "S_STB" - ], - "packages": [ - "PA_bouquet_arabe", - "PA_bouquet_arabe_max", - "PI_WHITELIST" - ], - "hasRightIAccess": true, - "hasRightMAccess": false, - "logos": [ - { - "definitionType": "mobileAppli", - "listLogos": [ - { - "size": "183x183", - "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_rotana_musica%2F20200804_093352%2FmobileAppli%2Flogo_183x183.png" - } - ] - }, - { - "definitionType": "mobileAppliDark", - "listLogos": [ - { - "size": "183x183", - "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_rotana_musica%2F20200804_093352%2FmobileAppliDark%2Flogo_183x183.png" - } - ] - }, - { - "definitionType": "webTVLogo", - "listLogos": [ - { - "size": "180x96", - "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_rotana_musica%2F20200804_093352%2FwebTVLogo%2Flogo_180x96.png" - } - ] - }, - { - "definitionType": "webTVSquare", - "listLogos": [ - { - "size": "150x150", - "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_rotana_musica%2F20200804_093352%2FwebTVSquare%2Flogo_150x150.png" - } - ] - } - ], - "mobileData": { - "wifiForbidden": false, - "wifiSecuredOnly": false, - "everywhereChannel": true, - "nomadismAllowed": true, - "drmLevels": [ - { - "definition": "SD", - "securedTerminal": [ - "DRM-HW", - "DRM-SW" - ], - "unsecuredTerminal": [ - "DRM-HW", - "DRM-SW" - ] - }, - { - "definition": "HD", - "securedTerminal": [ - "ND" - ], - "unsecuredTerminal": [ - "ND" - ] - } - ] - }, - "webdeviceData": { - "nomadismAllowed": true - }, - "technicalChannels": { - "live": [ - { - "techChannelId": "400265", - "type": "CLOUDTV", - "liveTargetURLRelativePath": "livetv_rotana_musica_ctv", - "usi": 400265, - "isDRMized": true, - "csa5Disabled": true - } - ], - "npvr": [ - { - "externalId": "livetv_rotana_musica_ctv", - "techChannelId": "400265", - "type": "CLOUDTV", - "usi": 400265, - "isDRMized": true, - "antiAdskipping": "DEACTIVATED", - "csa5Disabled": true - } - ], - "startover": [] - } - }, - { - "name": "ECHOROUK NEWS", - "editoChannelId": "livetv_Echorouk_News", - "lcn": 520, - "idEPG": 90520, - "epgAvailable": false, - "epgTextSubstitution": "", - "displayOrder": 520, - "csaCode": 1, - "slogan": "Information en continu", - "catchupChannelId": "", - "newChannel": true, - "roamingBlocked": false, - "allowedDeviceCategories": [ - "M_ANDROID", - "M_IOS", - "M_TABLET_ANDROID", - "M_TABLET_IOS", - "W_AIRPLAY", - "W_CHROMECAST", - "W_LACLETV2", - "W_SMARTTV", - "W_PC", - "S_STB" - ], - "packages": [ - "PA_bouquet_arabe", - "PA_bouquet_arabe_max", - "PI_WHITELIST" - ], - "hasRightIAccess": true, - "hasRightMAccess": false, - "logos": [ - { - "definitionType": "mobileAppli", - "listLogos": [ - { - "size": "183x183", - "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_Echorouk_News%2F20191107_103814%2FmobileAppli%2Flogo_183x183.png" - } - ] - }, - { - "definitionType": "mobileAppliDark", - "listLogos": [ - { - "size": "183x183", - "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_Echorouk_News%2F20191107_103814%2FmobileAppliDark%2Flogo_183x183.png" - } - ] - }, - { - "definitionType": "webTVLogo", - "listLogos": [ - { - "size": "180x96", - "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_Echorouk_News%2F20191107_103814%2FwebTVLogo%2Flogo_180x96.png" - } - ] - }, - { - "definitionType": "webTVSquare", - "listLogos": [ - { - "size": "150x150", - "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_Echorouk_News%2F20191107_103814%2FwebTVSquare%2Flogo_150x150.png" - } - ] - } - ], - "mobileData": { - "wifiForbidden": false, - "wifiSecuredOnly": false, - "everywhereChannel": true, - "nomadismAllowed": true, - "drmLevels": [ - { - "definition": "SD", - "securedTerminal": [ - "DRM-HW", - "DRM-SW" - ], - "unsecuredTerminal": [ - "DRM-HW", - "DRM-SW" - ] - }, - { - "definition": "HD", - "securedTerminal": [ - "ND" - ], - "unsecuredTerminal": [ - "ND" - ] - } - ] - }, - "webdeviceData": { - "nomadismAllowed": true - }, - "technicalChannels": { - "live": [ - { - "techChannelId": "400201", - "type": "CLOUDTV", - "liveTargetURLRelativePath": "livetv_echorouk_news_ctv", - "usi": 400201, - "isDRMized": true, - "csa5Disabled": true - } - ], - "npvr": [ - { - "externalId": "livetv_echorouk_news_ctv", - "techChannelId": "400201", - "type": "CLOUDTV", - "usi": 400201, - "isDRMized": true, - "antiAdskipping": "DEACTIVATED", - "csa5Disabled": true - } - ], - "startover": [] - } - }, - { - "name": "2M MONDE", - "editoChannelId": "livetv_2mmonde", - "lcn": 521, - "idEPG": 340, - "epgAvailable": true, - "epgTextSubstitution": "", - "displayOrder": 521, - "csaCode": 1, - "slogan": "2M nous rassemble", - "catchupChannelId": "", - "newChannel": false, - "roamingBlocked": true, - "allowedDeviceCategories": [ - "M_ANDROID", - "M_IOS", - "M_TABLET_ANDROID", - "M_TABLET_IOS", - "W_AIRPLAY", - "W_CHROMECAST", - "W_LACLETV2", - "W_SMARTTV", - "W_PC", - "S_STB" - ], - "packages": [ - "PA_bouquet_arabe", - "PA_bouquet_arabe_max", - "PI_WHITELIST" - ], - "hasRightIAccess": true, - "hasRightMAccess": false, - "logos": [ - { - "definitionType": "mobileAppli", - "listLogos": [ - { - "size": "183x183", - "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_2mmonde%2F20151026_092415%2FmobileAppli%2Flogo_183x183.png" - } - ] - }, - { - "definitionType": "mobileAppliDark", - "listLogos": [ - { - "size": "183x183", - "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_2mmonde%2F20151026_092415%2FmobileAppliDark%2Flogo_183x183.png" - } - ] - }, - { - "definitionType": "webTVLogo", - "listLogos": [ - { - "size": "180x96", - "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_2mmonde%2F20151026_092415%2FwebTVLogo%2Flogo_180x96.png" - } - ] - }, - { - "definitionType": "webTVSquare", - "listLogos": [ - { - "size": "150x150", - "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_2mmonde%2F20151026_092415%2FwebTVSquare%2Flogo_150x150.png" - } - ] - } - ], - "mobileData": { - "wifiForbidden": false, - "wifiSecuredOnly": false, - "everywhereChannel": true, - "nomadismAllowed": true, - "drmLevels": [ - { - "definition": "SD", - "securedTerminal": [ - "DRM-HW", - "DRM-SW" - ], - "unsecuredTerminal": [ - "DRM-HW", - "DRM-SW" - ] - }, - { - "definition": "HD", - "securedTerminal": [ - "ND" - ], - "unsecuredTerminal": [ - "ND" - ] - } - ] - }, - "webdeviceData": { - "nomadismAllowed": true - }, - "technicalChannels": { - "live": [ - { - "techChannelId": "400003", - "type": "CLOUDTV", - "liveTargetURLRelativePath": "livetv_2m_monde_ctv", - "usi": 400003, - "isDRMized": true, - "csa5Disabled": true - } - ], - "npvr": [ - { - "externalId": "livetv_2m_monde_ctv", - "techChannelId": "400003", - "type": "CLOUDTV", - "usi": 400003, - "isDRMized": true, - "antiAdskipping": "DEACTIVATED", - "csa5Disabled": true - } - ], - "startover": [] - } - }, - { - "name": "ROTANA KHALIJIA", - "editoChannelId": "livetv_rotana_khalijia", - "lcn": 522, - "idEPG": 90522, - "epgAvailable": false, - "epgTextSubstitution": "", - "displayOrder": 522, - "csaCode": 1, - "slogan": "Le golfe dans le monde", - "catchupChannelId": "", - "newChannel": true, - "roamingBlocked": true, - "allowedDeviceCategories": [ - "M_ANDROID", - "M_IOS", - "M_TABLET_ANDROID", - "M_TABLET_IOS", - "W_AIRPLAY", - "W_CHROMECAST", - "W_LACLETV2", - "W_SMARTTV", - "W_PC", - "S_STB" - ], - "packages": [ - "PA_bouquet_arabe", - "PA_bouquet_arabe_max", - "PI_WHITELIST" - ], - "hasRightIAccess": true, - "hasRightMAccess": false, - "logos": [ - { - "definitionType": "mobileAppli", - "listLogos": [ - { - "size": "183x183", - "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_rotana_khalijia%2F20200130_100105%2FmobileAppli%2Flogo_183x183.png" - } - ] - }, - { - "definitionType": "mobileAppliDark", - "listLogos": [ - { - "size": "183x183", - "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_rotana_khalijia%2F20200130_100105%2FmobileAppliDark%2Flogo_183x183.png" - } - ] - }, - { - "definitionType": "webTVLogo", - "listLogos": [ - { - "size": "180x96", - "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_rotana_khalijia%2F20200130_100105%2FwebTVLogo%2Flogo_180x96.png" - } - ] - }, - { - "definitionType": "webTVSquare", - "listLogos": [ - { - "size": "150x150", - "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_rotana_khalijia%2F20200130_100105%2FwebTVSquare%2Flogo_150x150.png" - } - ] - } - ], - "mobileData": { - "wifiForbidden": false, - "wifiSecuredOnly": false, - "everywhereChannel": true, - "nomadismAllowed": true, - "drmLevels": [ - { - "definition": "SD", - "securedTerminal": [ - "DRM-HW", - "DRM-SW" - ], - "unsecuredTerminal": [ - "DRM-HW", - "DRM-SW" - ] - }, - { - "definition": "HD", - "securedTerminal": [ - "ND" - ], - "unsecuredTerminal": [ - "ND" - ] - } - ] - }, - "webdeviceData": { - "nomadismAllowed": true - }, - "technicalChannels": { - "live": [ - { - "techChannelId": "400205", - "type": "CLOUDTV", - "liveTargetURLRelativePath": "livetv_rotana_khalijiah_ctv", - "usi": 400205, - "isDRMized": true, - "csa5Disabled": true - } - ], - "npvr": [ - { - "externalId": "livetv_rotana_khalijiah_ctv", - "techChannelId": "400205", - "type": "CLOUDTV", - "usi": 400205, - "isDRMized": true, - "antiAdskipping": "DEACTIVATED", - "csa5Disabled": true - } - ], - "startover": [] - } - }, - { - "name": "ROTANA CINEMA", - "editoChannelId": "livetv_rotana_cinema", - "lcn": 523, - "idEPG": 90523, - "epgAvailable": false, - "epgTextSubstitution": "", - "displayOrder": 523, - "csaCode": 1, - "slogan": "The latest blockbusters", - "catchupChannelId": "", - "newChannel": true, - "roamingBlocked": false, - "allowedDeviceCategories": [ - "M_ANDROID", - "M_IOS", - "M_TABLET_ANDROID", - "M_TABLET_IOS", - "W_AIRPLAY", - "W_CHROMECAST", - "W_LACLETV2", - "W_SMARTTV", - "W_PC", - "S_STB" - ], - "packages": [ - "PA_bouquet_arabe_max", - "PI_WHITELIST" - ], - "hasRightIAccess": true, - "hasRightMAccess": false, - "logos": [ - { - "definitionType": "mobileAppli", - "listLogos": [ - { - "size": "183x183", - "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_rotana_cinema%2F20191107_103814%2FmobileAppli%2Flogo_183x183.png" - } - ] - }, - { - "definitionType": "mobileAppliDark", - "listLogos": [ - { - "size": "183x183", - "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_rotana_cinema%2F20191107_103814%2FmobileAppliDark%2Flogo_183x183.png" - } - ] - }, - { - "definitionType": "webTVLogo", - "listLogos": [ - { - "size": "180x96", - "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_rotana_cinema%2F20191107_103814%2FwebTVLogo%2Flogo_180x96.png" - } - ] - }, - { - "definitionType": "webTVSquare", - "listLogos": [ - { - "size": "150x150", - "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_rotana_cinema%2F20191107_103814%2FwebTVSquare%2Flogo_150x150.png" - } - ] - } - ], - "mobileData": { - "wifiForbidden": false, - "wifiSecuredOnly": false, - "everywhereChannel": true, - "nomadismAllowed": true, - "drmLevels": [ - { - "definition": "SD", - "securedTerminal": [ - "DRM-HW", - "DRM-SW" - ], - "unsecuredTerminal": [ - "DRM-HW", - "DRM-SW" - ] - }, - { - "definition": "HD", - "securedTerminal": [ - "ND" - ], - "unsecuredTerminal": [ - "ND" - ] - } - ] - }, - "webdeviceData": { - "nomadismAllowed": true - }, - "technicalChannels": { - "live": [ - { - "techChannelId": "400202", - "type": "CLOUDTV", - "liveTargetURLRelativePath": "livetv_rotana_cinema_ctv", - "usi": 400202, - "isDRMized": true, - "csa5Disabled": true - } - ], - "npvr": [ - { - "externalId": "livetv_rotana_cinema_ctv", - "techChannelId": "400202", - "type": "CLOUDTV", - "usi": 400202, - "isDRMized": true, - "antiAdskipping": "DEACTIVATED", - "csa5Disabled": true - } - ], - "startover": [] - } - }, - { - "name": "ROTANA COMEDY", - "editoChannelId": "livetv_rotana_aflam", - "lcn": 524, - "idEPG": 90524, - "epgAvailable": false, - "epgTextSubstitution": "", - "displayOrder": 524, - "csaCode": 1, - "slogan": "La chaine d’humour pan-arabe !", - "catchupChannelId": "", - "newChannel": true, - "roamingBlocked": false, - "allowedDeviceCategories": [ - "M_ANDROID", - "M_IOS", - "M_TABLET_ANDROID", - "M_TABLET_IOS", - "W_AIRPLAY", - "W_CHROMECAST", - "W_LACLETV2", - "W_SMARTTV", - "W_PC", - "S_STB" - ], - "packages": [ - "PA_bouquet_arabe_max", - "PI_WHITELIST" - ], - "hasRightIAccess": true, - "hasRightMAccess": false, - "logos": [ - { - "definitionType": "mobileAppli", - "listLogos": [ - { - "size": "183x183", - "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_rotana_aflam%2F20220316_114604%2FmobileAppli%2Flogo_183x183.png" - } - ] - }, - { - "definitionType": "mobileAppliDark", - "listLogos": [ - { - "size": "183x183", - "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_rotana_aflam%2F20220316_114604%2FmobileAppliDark%2Flogo_183x183.png" - } - ] - }, - { - "definitionType": "webTVLogo", - "listLogos": [ - { - "size": "180x96", - "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_rotana_aflam%2F20220316_114604%2FwebTVLogo%2Flogo_180x96.png" - } - ] - }, - { - "definitionType": "webTVSquare", - "listLogos": [ - { - "size": "150x150", - "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_rotana_aflam%2F20220316_114604%2FwebTVSquare%2Flogo_150x150.png" - } - ] - } - ], - "mobileData": { - "wifiForbidden": false, - "wifiSecuredOnly": false, - "everywhereChannel": true, - "nomadismAllowed": true, - "drmLevels": [ - { - "definition": "SD", - "securedTerminal": [ - "DRM-HW", - "DRM-SW" - ], - "unsecuredTerminal": [ - "DRM-HW", - "DRM-SW" - ] - }, - { - "definition": "HD", - "securedTerminal": [ - "ND" - ], - "unsecuredTerminal": [ - "ND" - ] - } - ] - }, - "webdeviceData": { - "nomadismAllowed": true - }, - "technicalChannels": { - "live": [ - { - "techChannelId": "400203", - "type": "CLOUDTV", - "liveTargetURLRelativePath": "livetv_rotana_aflam_ctv", - "usi": 400203, - "isDRMized": true, - "csa5Disabled": true - } - ], - "npvr": [ - { - "externalId": "livetv_rotana_aflam_ctv", - "techChannelId": "400203", - "type": "CLOUDTV", - "usi": 400203, - "isDRMized": true, - "antiAdskipping": "DEACTIVATED", - "csa5Disabled": true - } - ], - "startover": [] - } - }, - { - "name": "ROTANA DRAMA", - "editoChannelId": "livetv_rotana_drama", - "lcn": 525, - "idEPG": 90525, - "epgAvailable": false, - "epgTextSubstitution": "", - "displayOrder": 525, - "csaCode": 1, - "slogan": "Les séries du golfe", - "catchupChannelId": "", - "newChannel": true, - "roamingBlocked": true, - "allowedDeviceCategories": [ - "M_ANDROID", - "M_IOS", - "M_TABLET_ANDROID", - "M_TABLET_IOS", - "W_AIRPLAY", - "W_CHROMECAST", - "W_LACLETV2", - "W_SMARTTV", - "W_PC", - "S_STB" - ], - "packages": [ - "PA_bouquet_arabe_max", - "PI_WHITELIST" - ], - "hasRightIAccess": true, - "hasRightMAccess": false, - "logos": [ - { - "definitionType": "mobileAppli", - "listLogos": [ - { - "size": "183x183", - "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_rotana_drama%2F20200130_100105%2FmobileAppli%2Flogo_183x183.png" - } - ] - }, - { - "definitionType": "mobileAppliDark", - "listLogos": [ - { - "size": "183x183", - "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_rotana_drama%2F20200130_100105%2FmobileAppliDark%2Flogo_183x183.png" - } - ] - }, - { - "definitionType": "webTVLogo", - "listLogos": [ - { - "size": "180x96", - "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_rotana_drama%2F20200130_100105%2FwebTVLogo%2Flogo_180x96.png" - } - ] - }, - { - "definitionType": "webTVSquare", - "listLogos": [ - { - "size": "150x150", - "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_rotana_drama%2F20200130_100105%2FwebTVSquare%2Flogo_150x150.png" - } - ] - } - ], - "mobileData": { - "wifiForbidden": false, - "wifiSecuredOnly": false, - "everywhereChannel": true, - "nomadismAllowed": true, - "drmLevels": [ - { - "definition": "SD", - "securedTerminal": [ - "DRM-HW", - "DRM-SW" - ], - "unsecuredTerminal": [ - "DRM-HW", - "DRM-SW" - ] - }, - { - "definition": "HD", - "securedTerminal": [ - "ND" - ], - "unsecuredTerminal": [ - "ND" - ] - } - ] - }, - "webdeviceData": { - "nomadismAllowed": true - }, - "technicalChannels": { - "live": [ - { - "techChannelId": "400204", - "type": "CLOUDTV", - "liveTargetURLRelativePath": "livetv_rotana_drama_ctv", - "usi": 400204, - "isDRMized": true, - "csa5Disabled": true - } - ], - "npvr": [ - { - "externalId": "livetv_rotana_drama_ctv", - "techChannelId": "400204", - "type": "CLOUDTV", - "usi": 400204, - "isDRMized": true, - "antiAdskipping": "DEACTIVATED", - "csa5Disabled": true - } - ], - "startover": [] - } - }, - { - "name": "EL BILAD TV", - "editoChannelId": "livetv_el_bilad", - "lcn": 527, - "idEPG": 90527, - "epgAvailable": false, - "epgTextSubstitution": "", - "displayOrder": 527, - "csaCode": 1, - "slogan": "Un autre regard sur l’Algérie", - "catchupChannelId": "", - "newChannel": true, - "roamingBlocked": true, - "allowedDeviceCategories": [ - "M_ANDROID", - "M_IOS", - "M_TABLET_ANDROID", - "M_TABLET_IOS", - "W_AIRPLAY", - "W_CHROMECAST", - "W_LACLETV2", - "W_SMARTTV", - "W_PC", - "S_STB" - ], - "packages": [ - "PA_bouquet_arabe_max", - "PI_WHITELIST" - ], - "hasRightIAccess": true, - "hasRightMAccess": false, - "logos": [ - { - "definitionType": "mobileAppli", - "listLogos": [ - { - "size": "183x183", - "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_el_bilad%2F20200130_100121%2FmobileAppli%2Flogo_183x183.png" - } - ] - }, - { - "definitionType": "mobileAppliDark", - "listLogos": [ - { - "size": "183x183", - "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_el_bilad%2F20200130_100121%2FmobileAppliDark%2Flogo_183x183.png" - } - ] - }, - { - "definitionType": "webTVLogo", - "listLogos": [ - { - "size": "180x96", - "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_el_bilad%2F20200130_100121%2FwebTVLogo%2Flogo_180x96.png" - } - ] - }, - { - "definitionType": "webTVSquare", - "listLogos": [ - { - "size": "150x150", - "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_el_bilad%2F20200130_100121%2FwebTVSquare%2Flogo_150x150.png" - } - ] - } - ], - "mobileData": { - "wifiForbidden": false, - "wifiSecuredOnly": false, - "everywhereChannel": true, - "nomadismAllowed": true, - "drmLevels": [ - { - "definition": "SD", - "securedTerminal": [ - "DRM-HW", - "DRM-SW" - ], - "unsecuredTerminal": [ - "DRM-HW", - "DRM-SW" - ] - }, - { - "definition": "HD", - "securedTerminal": [ - "ND" - ], - "unsecuredTerminal": [ - "ND" - ] - } - ] - }, - "webdeviceData": { - "nomadismAllowed": true - }, - "technicalChannels": { - "live": [ - { - "techChannelId": "400192", - "type": "CLOUDTV", - "liveTargetURLRelativePath": "livetv_el_bilad_tv_ctv", - "usi": 400192, - "isDRMized": true, - "csa5Disabled": true - } - ], - "npvr": [ - { - "externalId": "livetv_el_bilad_tv_ctv", - "techChannelId": "400192", - "type": "CLOUDTV", - "usi": 400192, - "isDRMized": true, - "antiAdskipping": "DEACTIVATED", - "csa5Disabled": true - } - ], - "startover": [] - } - }, - { - "name": "PANORAMA DRAMA", - "editoChannelId": "livetv_panorama_drama", - "lcn": 528, - "idEPG": 90528, - "epgAvailable": false, - "epgTextSubstitution": "", - "displayOrder": 528, - "csaCode": 1, - "slogan": "Les séries au cœur du divertissement", - "catchupChannelId": "", - "newChannel": true, - "roamingBlocked": false, - "allowedDeviceCategories": [ - "M_ANDROID", - "M_IOS", - "M_TABLET_ANDROID", - "M_TABLET_IOS", - "W_AIRPLAY", - "W_CHROMECAST", - "W_LACLETV2", - "W_SMARTTV", - "W_PC", - "S_STB" - ], - "packages": [ - "PA_bouquet_arabe_max", - "PI_WHITELIST" - ], - "hasRightIAccess": true, - "hasRightMAccess": false, - "logos": [ - { - "definitionType": "mobileAppli", - "listLogos": [ - { - "size": "183x183", - "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_panorama_drama%2F20191107_103814%2FmobileAppli%2Flogo_183x183.png" - } - ] - }, - { - "definitionType": "mobileAppliDark", - "listLogos": [ - { - "size": "183x183", - "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_panorama_drama%2F20191107_103814%2FmobileAppliDark%2Flogo_183x183.png" - } - ] - }, - { - "definitionType": "webTVLogo", - "listLogos": [ - { - "size": "180x96", - "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_panorama_drama%2F20191107_103814%2FwebTVLogo%2Flogo_180x96.png" - } - ] - }, - { - "definitionType": "webTVSquare", - "listLogos": [ - { - "size": "150x150", - "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_panorama_drama%2F20191107_103814%2FwebTVSquare%2Flogo_150x150.png" - } - ] - } - ], - "mobileData": { - "wifiForbidden": false, - "wifiSecuredOnly": false, - "everywhereChannel": true, - "nomadismAllowed": true, - "drmLevels": [ - { - "definition": "SD", - "securedTerminal": [ - "DRM-HW", - "DRM-SW" - ], - "unsecuredTerminal": [ - "DRM-HW", - "DRM-SW" - ] - }, - { - "definition": "HD", - "securedTerminal": [ - "ND" - ], - "unsecuredTerminal": [ - "ND" - ] - } - ] - }, - "webdeviceData": { - "nomadismAllowed": true - }, - "technicalChannels": { - "live": [ - { - "techChannelId": "400207", - "type": "CLOUDTV", - "liveTargetURLRelativePath": "livetv_panorama_drama_ctv", - "usi": 400207, - "isDRMized": true, - "csa5Disabled": true - } - ], - "npvr": [ - { - "externalId": "livetv_panorama_drama_ctv", - "techChannelId": "400207", - "type": "CLOUDTV", - "usi": 400207, - "isDRMized": true, - "antiAdskipping": "DEACTIVATED", - "csa5Disabled": true - } - ], - "startover": [] - } - }, - { - "name": "MBC DRAMA", - "editoChannelId": "livetv_mbc_drama", - "lcn": 529, - "idEPG": 90529, - "epgAvailable": false, - "epgTextSubstitution": "", - "displayOrder": 529, - "csaCode": 1, - "slogan": "L'espoir est visible tout autour de nous", - "catchupChannelId": "", - "newChannel": true, - "roamingBlocked": false, - "allowedDeviceCategories": [ - "M_ANDROID", - "M_IOS", - "M_TABLET_ANDROID", - "M_TABLET_IOS", - "W_AIRPLAY", - "W_CHROMECAST", - "W_LACLETV2", - "W_SMARTTV", - "W_PC", - "S_STB" - ], - "packages": [ - "PA_bouquet_arabe_max", - "PI_WHITELIST" - ], - "hasRightIAccess": true, - "hasRightMAccess": false, - "logos": [ - { - "definitionType": "mobileAppli", - "listLogos": [ - { - "size": "183x183", - "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_mbc_drama%2F20191107_103814%2FmobileAppli%2Flogo_183x183.png" - } - ] - }, - { - "definitionType": "mobileAppliDark", - "listLogos": [ - { - "size": "183x183", - "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_mbc_drama%2F20191107_103814%2FmobileAppliDark%2Flogo_183x183.png" - } - ] - }, - { - "definitionType": "webTVLogo", - "listLogos": [ - { - "size": "180x96", - "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_mbc_drama%2F20191107_103814%2FwebTVLogo%2Flogo_180x96.png" - } - ] - }, - { - "definitionType": "webTVSquare", - "listLogos": [ - { - "size": "150x150", - "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_mbc_drama%2F20191107_103814%2FwebTVSquare%2Flogo_150x150.png" - } - ] - } - ], - "mobileData": { - "wifiForbidden": false, - "wifiSecuredOnly": false, - "everywhereChannel": true, - "nomadismAllowed": true, - "drmLevels": [ - { - "definition": "SD", - "securedTerminal": [ - "DRM-HW", - "DRM-SW" - ], - "unsecuredTerminal": [ - "DRM-HW", - "DRM-SW" - ] - }, - { - "definition": "HD", - "securedTerminal": [ - "ND" - ], - "unsecuredTerminal": [ - "ND" - ] - } - ] - }, - "webdeviceData": { - "nomadismAllowed": true - }, - "technicalChannels": { - "live": [ - { - "techChannelId": "400208", - "type": "CLOUDTV", - "liveTargetURLRelativePath": "livetv_mbc_drama_ctv", - "usi": 400208, - "isDRMized": true, - "csa5Disabled": true - } - ], - "npvr": [ - { - "externalId": "livetv_mbc_drama_ctv", - "techChannelId": "400208", - "type": "CLOUDTV", - "usi": 400208, - "isDRMized": true, - "antiAdskipping": "DEACTIVATED", - "csa5Disabled": true - } - ], - "startover": [] - } - }, - { - "name": "MBC MASR", - "editoChannelId": "livetv_mbc_masr", - "lcn": 530, - "idEPG": 90530, - "epgAvailable": false, - "epgTextSubstitution": "", - "displayOrder": 530, - "csaCode": 1, - "slogan": "Les meilleures séries égyptiennes", - "catchupChannelId": "", - "newChannel": true, - "roamingBlocked": false, - "allowedDeviceCategories": [ - "M_ANDROID", - "M_IOS", - "M_TABLET_ANDROID", - "M_TABLET_IOS", - "W_AIRPLAY", - "W_CHROMECAST", - "W_LACLETV2", - "W_SMARTTV", - "W_PC", - "S_STB" - ], - "packages": [ - "PA_bouquet_arabe_max", - "PI_WHITELIST" - ], - "hasRightIAccess": true, - "hasRightMAccess": false, - "logos": [ - { - "definitionType": "mobileAppli", - "listLogos": [ - { - "size": "183x183", - "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_mbc_masr%2F20191107_103814%2FmobileAppli%2Flogo_183x183.png" - } - ] - }, - { - "definitionType": "mobileAppliDark", - "listLogos": [ - { - "size": "183x183", - "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_mbc_masr%2F20191107_103814%2FmobileAppliDark%2Flogo_183x183.png" - } - ] - }, - { - "definitionType": "webTVLogo", - "listLogos": [ - { - "size": "180x96", - "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_mbc_masr%2F20191107_103814%2FwebTVLogo%2Flogo_180x96.png" - } - ] - }, - { - "definitionType": "webTVSquare", - "listLogos": [ - { - "size": "150x150", - "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_mbc_masr%2F20191107_103814%2FwebTVSquare%2Flogo_150x150.png" - } - ] - } - ], - "mobileData": { - "wifiForbidden": false, - "wifiSecuredOnly": false, - "everywhereChannel": true, - "nomadismAllowed": true, - "drmLevels": [ - { - "definition": "SD", - "securedTerminal": [ - "DRM-HW", - "DRM-SW" - ], - "unsecuredTerminal": [ - "DRM-HW", - "DRM-SW" - ] - }, - { - "definition": "HD", - "securedTerminal": [ - "ND" - ], - "unsecuredTerminal": [ - "ND" - ] - } - ] - }, - "webdeviceData": { - "nomadismAllowed": true - }, - "technicalChannels": { - "live": [ - { - "techChannelId": "400209", - "type": "CLOUDTV", - "liveTargetURLRelativePath": "livetv_mbc_masr_ctv", - "usi": 400209, - "isDRMized": true, - "csa5Disabled": true - } - ], - "npvr": [ - { - "externalId": "livetv_mbc_masr_ctv", - "techChannelId": "400209", - "type": "CLOUDTV", - "usi": 400209, - "isDRMized": true, - "antiAdskipping": "DEACTIVATED", - "csa5Disabled": true - } - ], - "startover": [] - } - }, - { - "name": "AL RAWDA", - "editoChannelId": "livetv_al_rawda", - "lcn": 531, - "idEPG": 90531, - "epgAvailable": false, - "epgTextSubstitution": "", - "displayOrder": 531, - "csaCode": 1, - "slogan": "La chaîne fun pour les 4-6 ans", - "catchupChannelId": "", - "newChannel": true, - "roamingBlocked": false, - "allowedDeviceCategories": [ - "M_ANDROID", - "M_IOS", - "M_TABLET_ANDROID", - "M_TABLET_IOS", - "W_AIRPLAY", - "W_CHROMECAST", - "W_LACLETV2", - "W_SMARTTV", - "W_PC", - "S_STB" - ], - "packages": [ - "PA_bouquet_arabe_max", - "PI_WHITELIST" - ], - "hasRightIAccess": true, - "hasRightMAccess": false, - "logos": [ - { - "definitionType": "mobileAppli", - "listLogos": [ - { - "size": "183x183", - "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_al_rawda%2F20200929_084606%2FmobileAppli%2Flogo_183x183.png" - } - ] - }, - { - "definitionType": "mobileAppliDark", - "listLogos": [ - { - "size": "183x183", - "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_al_rawda%2F20200929_084606%2FmobileAppliDark%2Flogo_183x183.png" - } - ] - }, - { - "definitionType": "webTVLogo", - "listLogos": [ - { - "size": "180x96", - "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_al_rawda%2F20200929_084606%2FwebTVLogo%2Flogo_180x96.png" - } - ] - }, - { - "definitionType": "webTVSquare", - "listLogos": [ - { - "size": "150x150", - "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_al_rawda%2F20200929_084606%2FwebTVSquare%2Flogo_150x150.png" - } - ] - } - ], - "mobileData": { - "wifiForbidden": false, - "wifiSecuredOnly": false, - "everywhereChannel": true, - "nomadismAllowed": true, - "drmLevels": [ - { - "definition": "SD", - "securedTerminal": [ - "DRM-HW", - "DRM-SW" - ], - "unsecuredTerminal": [ - "DRM-HW", - "DRM-SW" - ] - }, - { - "definition": "HD", - "securedTerminal": [ - "ND" - ], - "unsecuredTerminal": [ - "ND" - ] - } - ] - }, - "webdeviceData": { - "nomadismAllowed": true - }, - "technicalChannels": { - "live": [ - { - "techChannelId": "400276", - "type": "CLOUDTV", - "liveTargetURLRelativePath": "livetv_alrawda_ctv", - "usi": 400276, - "isDRMized": true, - "csa5Disabled": true - } - ], - "npvr": [ - { - "externalId": "livetv_alrawda_ctv", - "techChannelId": "400276", - "type": "CLOUDTV", - "usi": 400276, - "isDRMized": true, - "antiAdskipping": "DEACTIVATED", - "csa5Disabled": true - } - ], - "startover": [] - } - }, - { - "name": "NTD TV", - "editoChannelId": "livetv_ntdtv", - "lcn": 548, - "idEPG": 90548, - "epgAvailable": false, - "epgTextSubstitution": "", - "displayOrder": 548, - "csaCode": 1, - "slogan": "La renaissance de la Chine arrive", - "catchupChannelId": "", - "newChannel": false, - "roamingBlocked": false, - "allowedDeviceCategories": [ - "M_ANDROID", - "M_IOS", - "M_TABLET_ANDROID", - "M_TABLET_IOS", - "W_AIRPLAY", - "W_CHROMECAST", - "W_LACLETV2", - "W_SMARTTV", - "W_PC", - "S_STB" - ], - "packages": [ - "PA_BQ_BASIC_M", - "PA_BQ_TVDIGITALE_I", - "PA_BQ_BASIC_I", - "PA_BQ_BASICQUAD_I", - "PI_WHITELIST" - ], - "hasRightIAccess": true, - "hasRightMAccess": true, - "logos": [ - { - "definitionType": "mobileAppli", - "listLogos": [ - { - "size": "183x183", - "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_ntdtv%2F20180821_115653%2FmobileAppli%2Flogo_183x183.png" - } - ] - }, - { - "definitionType": "mobileAppliDark", - "listLogos": [ - { - "size": "183x183", - "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_ntdtv%2F20180821_115653%2FmobileAppliDark%2Flogo_183x183.png" - } - ] - }, - { - "definitionType": "webTVLogo", - "listLogos": [ - { - "size": "180x96", - "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_ntdtv%2F20180821_115653%2FwebTVLogo%2Flogo_180x96.png" - } - ] - }, - { - "definitionType": "webTVSquare", - "listLogos": [ - { - "size": "150x150", - "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_ntdtv%2F20180821_115653%2FwebTVSquare%2Flogo_150x150.png" - } - ] - } - ], - "mobileData": { - "wifiForbidden": false, - "wifiSecuredOnly": false, - "everywhereChannel": true, - "nomadismAllowed": true, - "drmLevels": [ - { - "definition": "SD", - "securedTerminal": [ - "DRM-HW", - "DRM-SW" - ], - "unsecuredTerminal": [ - "DRM-HW", - "DRM-SW" - ] - }, - { - "definition": "HD", - "securedTerminal": [ - "ND" - ], - "unsecuredTerminal": [ - "ND" - ] - } - ] - }, - "webdeviceData": { - "nomadismAllowed": true - }, - "technicalChannels": { - "live": [ - { - "techChannelId": "400258", - "type": "CLOUDTV", - "liveTargetURLRelativePath": "livetv_ntdtv_ctv", - "usi": 400258, - "isDRMized": true, - "csa5Disabled": true - } - ], - "npvr": [], - "startover": [] - } - }, - { - "name": "CCTV 4", - "editoChannelId": "livetv_cctv_4", - "lcn": 551, - "idEPG": 90551, - "epgAvailable": false, - "epgTextSubstitution": "", - "displayOrder": 551, - "csaCode": 1, - "slogan": "La chaîne d'information chinoise", - "catchupChannelId": "", - "newChannel": true, - "roamingBlocked": false, - "allowedDeviceCategories": [ - "M_ANDROID", - "M_IOS", - "M_TABLET_ANDROID", - "M_TABLET_IOS", - "W_AIRPLAY", - "W_CHROMECAST", - "W_LACLETV2", - "W_PC", - "W_SMARTTV", - "S_STB" - ], - "packages": [ - "PA_bouquet_chinois", - "PI_WHITELIST" - ], - "hasRightIAccess": true, - "hasRightMAccess": false, - "logos": [ - { - "definitionType": "mobileAppli", - "listLogos": [ - { - "size": "183x183", - "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_cctv_4%2F20221212_170133%2FmobileAppli%2Flogo_183x183.png" - } - ] - }, - { - "definitionType": "mobileAppliDark", - "listLogos": [ - { - "size": "183x183", - "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_cctv_4%2F20221212_170133%2FmobileAppliDark%2Flogo_183x183.png" - } - ] - }, - { - "definitionType": "webTVLogo", - "listLogos": [ - { - "size": "180x96", - "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_cctv_4%2F20221212_170133%2FwebTVLogo%2Flogo_180x96.png" - } - ] - }, - { - "definitionType": "webTVSquare", - "listLogos": [ - { - "size": "150x150", - "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_cctv_4%2F20221212_170133%2FwebTVSquare%2Flogo_150x150.png" - } - ] - } - ], - "mobileData": { - "wifiForbidden": false, - "wifiSecuredOnly": false, - "everywhereChannel": true, - "nomadismAllowed": true, - "drmLevels": [ - { - "definition": "SD", - "securedTerminal": [ - "DRM-HW", - "DRM-SW" - ], - "unsecuredTerminal": [ - "DRM-HW", - "DRM-SW" - ] - }, - { - "definition": "HD", - "securedTerminal": [ - "ND" - ], - "unsecuredTerminal": [ - "ND" - ] - } - ] - }, - "webdeviceData": { - "nomadismAllowed": true - }, - "technicalChannels": { - "live": [ - { - "techChannelId": "400100", - "type": "CLOUDTV", - "liveTargetURLRelativePath": "livetv_cctv4_ctv", - "usi": 400100, - "isDRMized": true, - "csa5Disabled": true - } - ], - "npvr": [ - { - "externalId": "livetv_cctv4_ctv", - "techChannelId": "400100", - "type": "CLOUDTV", - "usi": 400100, - "isDRMized": true, - "antiAdskipping": "DEACTIVATED", - "csa5Disabled": true - } - ], - "startover": [] - } - }, - { - "name": "PHOENIX CNE", - "editoChannelId": "livetv_phoenix_cne", - "lcn": 552, - "idEPG": 90552, - "epgAvailable": false, - "epgTextSubstitution": "", - "displayOrder": 552, - "csaCode": 1, - "slogan": "Chinese News Entertainment", - "catchupChannelId": "", - "newChannel": true, - "roamingBlocked": false, - "allowedDeviceCategories": [ - "M_ANDROID", - "M_IOS", - "M_TABLET_ANDROID", - "M_TABLET_IOS", - "W_AIRPLAY", - "W_CHROMECAST", - "W_LACLETV2", - "W_PC", - "W_SMARTTV", - "S_STB" - ], - "packages": [ - "PA_bouquet_chinois", - "PI_WHITELIST" - ], - "hasRightIAccess": true, - "hasRightMAccess": false, - "logos": [ - { - "definitionType": "mobileAppli", - "listLogos": [ - { - "size": "183x183", - "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_phoenix_cne%2F20221212_170133%2FmobileAppli%2Flogo_183x183.png" - } - ] - }, - { - "definitionType": "mobileAppliDark", - "listLogos": [ - { - "size": "183x183", - "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_phoenix_cne%2F20221212_170133%2FmobileAppliDark%2Flogo_183x183.png" - } - ] - }, - { - "definitionType": "webTVLogo", - "listLogos": [ - { - "size": "180x96", - "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_phoenix_cne%2F20221212_170133%2FwebTVLogo%2Flogo_180x96.png" - } - ] - }, - { - "definitionType": "webTVSquare", - "listLogos": [ - { - "size": "150x150", - "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_phoenix_cne%2F20221212_170133%2FwebTVSquare%2Flogo_150x150.png" - } - ] - } - ], - "mobileData": { - "wifiForbidden": false, - "wifiSecuredOnly": false, - "everywhereChannel": true, - "nomadismAllowed": true, - "drmLevels": [ - { - "definition": "SD", - "securedTerminal": [ - "DRM-HW", - "DRM-SW" - ], - "unsecuredTerminal": [ - "DRM-HW", - "DRM-SW" - ] - }, - { - "definition": "HD", - "securedTerminal": [ - "ND" - ], - "unsecuredTerminal": [ - "ND" - ] - } - ] - }, - "webdeviceData": { - "nomadismAllowed": true - }, - "technicalChannels": { - "live": [ - { - "techChannelId": "400274", - "type": "CLOUDTV", - "liveTargetURLRelativePath": "livetv_phoenix_cne_ctv", - "usi": 400274, - "isDRMized": true, - "csa5Disabled": true - } - ], - "npvr": [ - { - "externalId": "livetv_phoenix_cne_ctv", - "techChannelId": "400274", - "type": "CLOUDTV", - "usi": 400274, - "isDRMized": true, - "antiAdskipping": "DEACTIVATED", - "csa5Disabled": true - } - ], - "startover": [] - } - }, - { - "name": "PHOENIX INFONEWS", - "editoChannelId": "livetv_phoenix_infonews", - "lcn": 553, - "idEPG": 90553, - "epgAvailable": false, - "epgTextSubstitution": "", - "displayOrder": 553, - "csaCode": 1, - "slogan": "Chaîne d'information de Hongkong", - "catchupChannelId": "", - "newChannel": true, - "roamingBlocked": false, - "allowedDeviceCategories": [ - "M_ANDROID", - "M_IOS", - "M_TABLET_ANDROID", - "M_TABLET_IOS", - "W_AIRPLAY", - "W_CHROMECAST", - "W_LACLETV2", - "W_PC", - "W_SMARTTV", - "S_STB" - ], - "packages": [ - "PA_bouquet_chinois", - "PI_WHITELIST" - ], - "hasRightIAccess": true, - "hasRightMAccess": false, - "logos": [ - { - "definitionType": "mobileAppli", - "listLogos": [ - { - "size": "183x183", - "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_phoenix_infonews%2F20221212_170133%2FmobileAppli%2Flogo_183x183.png" - } - ] - }, - { - "definitionType": "mobileAppliDark", - "listLogos": [ - { - "size": "183x183", - "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_phoenix_infonews%2F20221212_170133%2FmobileAppliDark%2Flogo_183x183.png" - } - ] - }, - { - "definitionType": "webTVLogo", - "listLogos": [ - { - "size": "180x96", - "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_phoenix_infonews%2F20221212_170133%2FwebTVLogo%2Flogo_180x96.png" - } - ] - }, - { - "definitionType": "webTVSquare", - "listLogos": [ - { - "size": "150x150", - "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_phoenix_infonews%2F20221212_170133%2FwebTVSquare%2Flogo_150x150.png" - } - ] - } - ], - "mobileData": { - "wifiForbidden": false, - "wifiSecuredOnly": false, - "everywhereChannel": true, - "nomadismAllowed": true, - "drmLevels": [ - { - "definition": "SD", - "securedTerminal": [ - "DRM-HW", - "DRM-SW" - ], - "unsecuredTerminal": [ - "DRM-HW", - "DRM-SW" - ] - }, - { - "definition": "HD", - "securedTerminal": [ - "ND" - ], - "unsecuredTerminal": [ - "ND" - ] - } - ] - }, - "webdeviceData": { - "nomadismAllowed": true - }, - "technicalChannels": { - "live": [ - { - "techChannelId": "400275", - "type": "CLOUDTV", - "liveTargetURLRelativePath": "livetv_phoenix_infonews_ctv", - "usi": 400275, - "isDRMized": true, - "csa5Disabled": true - } - ], - "npvr": [ - { - "externalId": "livetv_phoenix_infonews_ctv", - "techChannelId": "400275", - "type": "CLOUDTV", - "usi": 400275, - "isDRMized": true, - "antiAdskipping": "DEACTIVATED", - "csa5Disabled": true - } - ], - "startover": [] - } - }, - { - "name": "CHINA MOVIE CHANNEL", - "editoChannelId": "livetv_china_movie_channel", - "lcn": 554, - "idEPG": 90554, - "epgAvailable": false, - "epgTextSubstitution": "", - "displayOrder": 554, - "csaCode": 1, - "slogan": "La chaîne du cinéma chinois", - "catchupChannelId": "", - "newChannel": true, - "roamingBlocked": false, - "allowedDeviceCategories": [ - "M_ANDROID", - "M_IOS", - "M_TABLET_ANDROID", - "M_TABLET_IOS", - "W_AIRPLAY", - "W_CHROMECAST", - "W_LACLETV2", - "W_PC", - "W_SMARTTV", - "S_STB" - ], - "packages": [ - "PA_bouquet_chinois", - "PI_WHITELIST" - ], - "hasRightIAccess": true, - "hasRightMAccess": false, - "logos": [ - { - "definitionType": "mobileAppli", - "listLogos": [ - { - "size": "183x183", - "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_china_movie_channel%2F20221212_170133%2FmobileAppli%2Flogo_183x183.png" - } - ] - }, - { - "definitionType": "mobileAppliDark", - "listLogos": [ - { - "size": "183x183", - "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_china_movie_channel%2F20221212_170133%2FmobileAppliDark%2Flogo_183x183.png" - } - ] - }, - { - "definitionType": "webTVLogo", - "listLogos": [ - { - "size": "180x96", - "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_china_movie_channel%2F20221212_170133%2FwebTVLogo%2Flogo_180x96.png" - } - ] - }, - { - "definitionType": "webTVSquare", - "listLogos": [ - { - "size": "150x150", - "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_china_movie_channel%2F20221212_170133%2FwebTVSquare%2Flogo_150x150.png" - } - ] - } - ], - "mobileData": { - "wifiForbidden": false, - "wifiSecuredOnly": false, - "everywhereChannel": true, - "nomadismAllowed": true, - "drmLevels": [ - { - "definition": "SD", - "securedTerminal": [ - "DRM-HW", - "DRM-SW" - ], - "unsecuredTerminal": [ - "DRM-HW", - "DRM-SW" - ] - }, - { - "definition": "HD", - "securedTerminal": [ - "ND" - ], - "unsecuredTerminal": [ - "ND" - ] - } - ] - }, - "webdeviceData": { - "nomadismAllowed": true - }, - "technicalChannels": { - "live": [ - { - "techChannelId": "400185", - "type": "CLOUDTV", - "liveTargetURLRelativePath": "livetv_china_movie_channel_ctv", - "usi": 400185, - "isDRMized": true, - "csa5Disabled": true - } - ], - "npvr": [ - { - "externalId": "livetv_china_movie_channel_ctv", - "techChannelId": "400185", - "type": "CLOUDTV", - "usi": 400185, - "isDRMized": true, - "antiAdskipping": "DEACTIVATED", - "csa5Disabled": true - } - ], - "startover": [] - } - }, - { - "name": "CCTV DIVERTISSEMENT", - "editoChannelId": "livetv_cctv_divertissement", - "lcn": 555, - "idEPG": 90555, - "epgAvailable": false, - "epgTextSubstitution": "", - "displayOrder": 555, - "csaCode": 1, - "slogan": "Chaîne de divertissement", - "catchupChannelId": "", - "newChannel": true, - "roamingBlocked": false, - "allowedDeviceCategories": [ - "M_ANDROID", - "M_IOS", - "M_TABLET_ANDROID", - "M_TABLET_IOS", - "W_AIRPLAY", - "W_CHROMECAST", - "W_LACLETV2", - "W_PC", - "W_SMARTTV", - "S_STB" - ], - "packages": [ - "PA_bouquet_chinois", - "PI_WHITELIST" - ], - "hasRightIAccess": true, - "hasRightMAccess": false, - "logos": [ - { - "definitionType": "mobileAppli", - "listLogos": [ - { - "size": "183x183", - "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_cctv_divertissement%2F20221212_170133%2FmobileAppli%2Flogo_183x183.png" - } - ] - }, - { - "definitionType": "mobileAppliDark", - "listLogos": [ - { - "size": "183x183", - "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_cctv_divertissement%2F20221212_170133%2FmobileAppliDark%2Flogo_183x183.png" - } - ] - }, - { - "definitionType": "webTVLogo", - "listLogos": [ - { - "size": "180x96", - "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_cctv_divertissement%2F20221212_170133%2FwebTVLogo%2Flogo_180x96.png" - } - ] - }, - { - "definitionType": "webTVSquare", - "listLogos": [ - { - "size": "150x150", - "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_cctv_divertissement%2F20221212_170133%2FwebTVSquare%2Flogo_150x150.png" - } - ] - } - ], - "mobileData": { - "wifiForbidden": false, - "wifiSecuredOnly": false, - "everywhereChannel": true, - "nomadismAllowed": true, - "drmLevels": [ - { - "definition": "SD", - "securedTerminal": [ - "DRM-HW", - "DRM-SW" - ], - "unsecuredTerminal": [ - "DRM-HW", - "DRM-SW" - ] - }, - { - "definition": "HD", - "securedTerminal": [ - "ND" - ], - "unsecuredTerminal": [ - "ND" - ] - } - ] - }, - "webdeviceData": { - "nomadismAllowed": true - }, - "technicalChannels": { - "live": [ - { - "techChannelId": "400114", - "type": "CLOUDTV", - "liveTargetURLRelativePath": "livetv_cctv_divertissement_ctv", - "usi": 400114, - "isDRMized": true, - "csa5Disabled": true - } - ], - "npvr": [ - { - "externalId": "livetv_cctv_divertissement_ctv", - "techChannelId": "400114", - "type": "CLOUDTV", - "usi": 400114, - "isDRMized": true, - "antiAdskipping": "DEACTIVATED", - "csa5Disabled": true - } - ], - "startover": [] - } - }, - { - "name": "ZHEJIANG INTERNATIONAL TV", - "editoChannelId": "livetv_zhejiang_international_tv", - "lcn": 556, - "idEPG": 90556, - "epgAvailable": false, - "epgTextSubstitution": "", - "displayOrder": 556, - "csaCode": 1, - "slogan": "Chaîne locale de Zhejiang", - "catchupChannelId": "", - "newChannel": true, - "roamingBlocked": false, - "allowedDeviceCategories": [ - "M_ANDROID", - "M_IOS", - "M_TABLET_ANDROID", - "M_TABLET_IOS", - "W_AIRPLAY", - "W_CHROMECAST", - "W_LACLETV2", - "W_PC", - "W_SMARTTV", - "S_STB" - ], - "packages": [ - "PA_bouquet_chinois", - "PI_WHITELIST" - ], - "hasRightIAccess": true, - "hasRightMAccess": false, - "logos": [ - { - "definitionType": "mobileAppli", - "listLogos": [ - { - "size": "183x183", - "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_zhejiang_international_tv%2F20221212_170133%2FmobileAppli%2Flogo_183x183.png" - } - ] - }, - { - "definitionType": "mobileAppliDark", - "listLogos": [ - { - "size": "183x183", - "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_zhejiang_international_tv%2F20221212_170133%2FmobileAppliDark%2Flogo_183x183.png" - } - ] - }, - { - "definitionType": "webTVLogo", - "listLogos": [ - { - "size": "180x96", - "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_zhejiang_international_tv%2F20221212_170133%2FwebTVLogo%2Flogo_180x96.png" - } - ] - }, - { - "definitionType": "webTVSquare", - "listLogos": [ - { - "size": "150x150", - "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_zhejiang_international_tv%2F20221212_170133%2FwebTVSquare%2Flogo_150x150.png" - } - ] - } - ], - "mobileData": { - "wifiForbidden": false, - "wifiSecuredOnly": false, - "everywhereChannel": true, - "nomadismAllowed": true, - "drmLevels": [ - { - "definition": "SD", - "securedTerminal": [ - "DRM-HW", - "DRM-SW" - ], - "unsecuredTerminal": [ - "DRM-HW", - "DRM-SW" - ] - }, - { - "definition": "HD", - "securedTerminal": [ - "ND" - ], - "unsecuredTerminal": [ - "ND" - ] - } - ] - }, - "webdeviceData": { - "nomadismAllowed": true - }, - "technicalChannels": { - "live": [ - { - "techChannelId": "400273", - "type": "CLOUDTV", - "liveTargetURLRelativePath": "livetv_zhejiang_international_tv_ctv", - "usi": 400273, - "isDRMized": true, - "csa5Disabled": true - } - ], - "npvr": [ - { - "externalId": "livetv_zhejiang_international_tv_ctv", - "techChannelId": "400273", - "type": "CLOUDTV", - "usi": 400273, - "isDRMized": true, - "antiAdskipping": "DEACTIVATED", - "csa5Disabled": true - } - ], - "startover": [] - } - }, - { - "name": "SHANGHAI DRAGON TV", - "editoChannelId": "livetv_shanghai_dragon_tv", - "lcn": 557, - "idEPG": 90557, - "epgAvailable": false, - "epgTextSubstitution": "", - "displayOrder": 557, - "csaCode": 1, - "slogan": "La chaîne généraliste de Shanghai", - "catchupChannelId": "", - "newChannel": true, - "roamingBlocked": false, - "allowedDeviceCategories": [ - "M_ANDROID", - "M_IOS", - "M_TABLET_ANDROID", - "M_TABLET_IOS", - "W_AIRPLAY", - "W_CHROMECAST", - "W_LACLETV2", - "W_PC", - "W_SMARTTV", - "S_STB" - ], - "packages": [ - "PA_bouquet_chinois", - "PI_WHITELIST" - ], - "hasRightIAccess": true, - "hasRightMAccess": false, - "logos": [ - { - "definitionType": "mobileAppli", - "listLogos": [ - { - "size": "183x183", - "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_shanghai_dragon_tv%2F20221212_170133%2FmobileAppli%2Flogo_183x183.png" - } - ] - }, - { - "definitionType": "mobileAppliDark", - "listLogos": [ - { - "size": "183x183", - "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_shanghai_dragon_tv%2F20221212_170133%2FmobileAppliDark%2Flogo_183x183.png" - } - ] - }, - { - "definitionType": "webTVLogo", - "listLogos": [ - { - "size": "180x96", - "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_shanghai_dragon_tv%2F20221212_170133%2FwebTVLogo%2Flogo_180x96.png" - } - ] - }, - { - "definitionType": "webTVSquare", - "listLogos": [ - { - "size": "150x150", - "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_shanghai_dragon_tv%2F20221212_170133%2FwebTVSquare%2Flogo_150x150.png" - } - ] - } - ], - "mobileData": { - "wifiForbidden": false, - "wifiSecuredOnly": false, - "everywhereChannel": true, - "nomadismAllowed": true, - "drmLevels": [ - { - "definition": "SD", - "securedTerminal": [ - "DRM-HW", - "DRM-SW" - ], - "unsecuredTerminal": [ - "DRM-HW", - "DRM-SW" - ] - }, - { - "definition": "HD", - "securedTerminal": [ - "ND" - ], - "unsecuredTerminal": [ - "ND" - ] - } - ] - }, - "webdeviceData": { - "nomadismAllowed": true - }, - "technicalChannels": { - "live": [ - { - "techChannelId": "400272", - "type": "CLOUDTV", - "liveTargetURLRelativePath": "livetv_shangai_dragon_tv_ctv", - "usi": 400272, - "isDRMized": true, - "csa5Disabled": true - } - ], - "npvr": [ - { - "externalId": "livetv_shangai_dragon_tv_ctv", - "techChannelId": "400272", - "type": "CLOUDTV", - "usi": 400272, - "isDRMized": true, - "antiAdskipping": "DEACTIVATED", - "csa5Disabled": true - } - ], - "startover": [] - } - }, - { - "name": "BEIJING TV", - "editoChannelId": "livetv_beijing_tv", - "lcn": 558, - "idEPG": 90558, - "epgAvailable": false, - "epgTextSubstitution": "", - "displayOrder": 558, - "csaCode": 1, - "slogan": "La chaîne locale de Beijing", - "catchupChannelId": "", - "newChannel": true, - "roamingBlocked": false, - "allowedDeviceCategories": [ - "M_ANDROID", - "M_IOS", - "M_TABLET_ANDROID", - "M_TABLET_IOS", - "W_AIRPLAY", - "W_CHROMECAST", - "W_LACLETV2", - "W_PC", - "W_SMARTTV", - "S_STB" - ], - "packages": [ - "PA_bouquet_chinois", - "PI_WHITELIST" - ], - "hasRightIAccess": true, - "hasRightMAccess": false, - "logos": [ - { - "definitionType": "mobileAppli", - "listLogos": [ - { - "size": "183x183", - "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_beijing_tv%2F20221212_170133%2FmobileAppli%2Flogo_183x183.png" - } - ] - }, - { - "definitionType": "mobileAppliDark", - "listLogos": [ - { - "size": "183x183", - "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_beijing_tv%2F20221212_170133%2FmobileAppliDark%2Flogo_183x183.png" - } - ] - }, - { - "definitionType": "webTVLogo", - "listLogos": [ - { - "size": "180x96", - "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_beijing_tv%2F20221212_170133%2FwebTVLogo%2Flogo_180x96.png" - } - ] - }, - { - "definitionType": "webTVSquare", - "listLogos": [ - { - "size": "150x150", - "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_beijing_tv%2F20221212_170133%2FwebTVSquare%2Flogo_150x150.png" - } - ] - } - ], - "mobileData": { - "wifiForbidden": false, - "wifiSecuredOnly": false, - "everywhereChannel": true, - "nomadismAllowed": true, - "drmLevels": [ - { - "definition": "SD", - "securedTerminal": [ - "DRM-HW", - "DRM-SW" - ], - "unsecuredTerminal": [ - "DRM-HW", - "DRM-SW" - ] - }, - { - "definition": "HD", - "securedTerminal": [ - "ND" - ], - "unsecuredTerminal": [ - "ND" - ] - } - ] - }, - "webdeviceData": { - "nomadismAllowed": true - }, - "technicalChannels": { - "live": [ - { - "techChannelId": "400039", - "type": "CLOUDTV", - "liveTargetURLRelativePath": "livetv_beijing_tv_ctv", - "usi": 400039, - "isDRMized": true, - "csa5Disabled": true - } - ], - "npvr": [ - { - "externalId": "livetv_beijing_tv_ctv", - "techChannelId": "400039", - "type": "CLOUDTV", - "usi": 400039, - "isDRMized": true, - "antiAdskipping": "DEACTIVATED", - "csa5Disabled": true - } - ], - "startover": [] - } - }, - { - "name": "HUNAN WORLD TV", - "editoChannelId": "livetv_hunan_world_tv", - "lcn": 559, - "idEPG": 90559, - "epgAvailable": false, - "epgTextSubstitution": "", - "displayOrder": 559, - "csaCode": 1, - "slogan": "Chaîne de divertissement", - "catchupChannelId": "", - "newChannel": true, - "roamingBlocked": false, - "allowedDeviceCategories": [ - "M_ANDROID", - "M_IOS", - "M_TABLET_ANDROID", - "M_TABLET_IOS", - "W_AIRPLAY", - "W_CHROMECAST", - "W_LACLETV2", - "W_PC", - "W_SMARTTV", - "S_STB" - ], - "packages": [ - "PA_bouquet_chinois", - "PI_WHITELIST" - ], - "hasRightIAccess": true, - "hasRightMAccess": false, - "logos": [ - { - "definitionType": "mobileAppli", - "listLogos": [ - { - "size": "183x183", - "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_hunan_world_tv%2F20221212_170133%2FmobileAppli%2Flogo_183x183.png" - } - ] - }, - { - "definitionType": "mobileAppliDark", - "listLogos": [ - { - "size": "183x183", - "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_hunan_world_tv%2F20221212_170133%2FmobileAppliDark%2Flogo_183x183.png" - } - ] - }, - { - "definitionType": "webTVLogo", - "listLogos": [ - { - "size": "180x96", - "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_hunan_world_tv%2F20221212_170133%2FwebTVLogo%2Flogo_180x96.png" - } - ] - }, - { - "definitionType": "webTVSquare", - "listLogos": [ - { - "size": "150x150", - "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_hunan_world_tv%2F20221212_170133%2FwebTVSquare%2Flogo_150x150.png" - } - ] - } - ], - "mobileData": { - "wifiForbidden": false, - "wifiSecuredOnly": false, - "everywhereChannel": true, - "nomadismAllowed": true, - "drmLevels": [ - { - "definition": "SD", - "securedTerminal": [ - "DRM-HW", - "DRM-SW" - ], - "unsecuredTerminal": [ - "DRM-HW", - "DRM-SW" - ] - }, - { - "definition": "HD", - "securedTerminal": [ - "ND" - ], - "unsecuredTerminal": [ - "ND" - ] - } - ] - }, - "webdeviceData": { - "nomadismAllowed": true - }, - "technicalChannels": { - "live": [ - { - "techChannelId": "400270", - "type": "CLOUDTV", - "liveTargetURLRelativePath": "livetv_hunan_world_tv_ctv", - "usi": 400270, - "isDRMized": true, - "csa5Disabled": true - } - ], - "npvr": [ - { - "externalId": "livetv_hunan_world_tv_ctv", - "techChannelId": "400270", - "type": "CLOUDTV", - "usi": 400270, - "isDRMized": true, - "antiAdskipping": "DEACTIVATED", - "csa5Disabled": true - } - ], - "startover": [] - } - }, - { - "name": "JIANGSU INTERNATIONAL TV", - "editoChannelId": "livetv_jiangsu_international_tv", - "lcn": 560, - "idEPG": 90560, - "epgAvailable": false, - "epgTextSubstitution": "", - "displayOrder": 560, - "csaCode": 1, - "slogan": "Chaîne locale de Jiangsu", - "catchupChannelId": "", - "newChannel": true, - "roamingBlocked": false, - "allowedDeviceCategories": [ - "M_ANDROID", - "M_IOS", - "M_TABLET_ANDROID", - "M_TABLET_IOS", - "W_AIRPLAY", - "W_CHROMECAST", - "W_LACLETV2", - "W_PC", - "W_SMARTTV", - "S_STB" - ], - "packages": [ - "PA_bouquet_chinois", - "PI_WHITELIST" - ], - "hasRightIAccess": true, - "hasRightMAccess": false, - "logos": [ - { - "definitionType": "mobileAppli", - "listLogos": [ - { - "size": "183x183", - "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_jiangsu_international_tv%2F20221212_170133%2FmobileAppli%2Flogo_183x183.png" - } - ] - }, - { - "definitionType": "mobileAppliDark", - "listLogos": [ - { - "size": "183x183", - "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_jiangsu_international_tv%2F20221212_170133%2FmobileAppliDark%2Flogo_183x183.png" - } - ] - }, - { - "definitionType": "webTVLogo", - "listLogos": [ - { - "size": "180x96", - "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_jiangsu_international_tv%2F20221212_170133%2FwebTVLogo%2Flogo_180x96.png" - } - ] - }, - { - "definitionType": "webTVSquare", - "listLogos": [ - { - "size": "150x150", - "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_jiangsu_international_tv%2F20221212_170133%2FwebTVSquare%2Flogo_150x150.png" - } - ] - } - ], - "mobileData": { - "wifiForbidden": false, - "wifiSecuredOnly": false, - "everywhereChannel": true, - "nomadismAllowed": true, - "drmLevels": [ - { - "definition": "SD", - "securedTerminal": [ - "DRM-HW", - "DRM-SW" - ], - "unsecuredTerminal": [ - "DRM-HW", - "DRM-SW" - ] - }, - { - "definition": "HD", - "securedTerminal": [ - "ND" - ], - "unsecuredTerminal": [ - "ND" - ] - } - ] - }, - "webdeviceData": { - "nomadismAllowed": true - }, - "technicalChannels": { - "live": [ - { - "techChannelId": "400271", - "type": "CLOUDTV", - "liveTargetURLRelativePath": "livetv_jiangsu_international_tv_ctv", - "usi": 400271, - "isDRMized": true, - "csa5Disabled": true - } - ], - "npvr": [ - { - "externalId": "livetv_jiangsu_international_tv_ctv", - "techChannelId": "400271", - "type": "CLOUDTV", - "usi": 400271, - "isDRMized": true, - "antiAdskipping": "DEACTIVATED", - "csa5Disabled": true - } - ], - "startover": [] - } - }, - { - "name": "GRT GBA Satellite TV", - "editoChannelId": "livetv_guangdong_south_tv", - "lcn": 561, - "idEPG": 90561, - "epgAvailable": false, - "epgTextSubstitution": "", - "displayOrder": 561, - "csaCode": 1, - "slogan": "La chaîne chinoise de fiction", - "catchupChannelId": "", - "newChannel": true, - "roamingBlocked": false, - "allowedDeviceCategories": [ - "M_ANDROID", - "M_IOS", - "M_TABLET_ANDROID", - "M_TABLET_IOS", - "W_AIRPLAY", - "W_CHROMECAST", - "W_LACLETV2", - "W_PC", - "W_SMARTTV", - "S_STB" - ], - "packages": [ - "PA_bouquet_chinois", - "PI_WHITELIST" - ], - "hasRightIAccess": true, - "hasRightMAccess": false, - "logos": [ - { - "definitionType": "mobileAppli", - "listLogos": [ - { - "size": "183x183", - "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_guangdong_south_tv%2F20221212_170133%2FmobileAppli%2Flogo_183x183.png" - } - ] - }, - { - "definitionType": "mobileAppliDark", - "listLogos": [ - { - "size": "183x183", - "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_guangdong_south_tv%2F20221212_170133%2FmobileAppliDark%2Flogo_183x183.png" - } - ] - }, - { - "definitionType": "webTVLogo", - "listLogos": [ - { - "size": "180x96", - "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_guangdong_south_tv%2F20221212_170133%2FwebTVLogo%2Flogo_180x96.png" - } - ] - }, - { - "definitionType": "webTVSquare", - "listLogos": [ - { - "size": "150x150", - "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_guangdong_south_tv%2F20221212_170133%2FwebTVSquare%2Flogo_150x150.png" - } - ] - } - ], - "mobileData": { - "wifiForbidden": false, - "wifiSecuredOnly": false, - "everywhereChannel": true, - "nomadismAllowed": true, - "drmLevels": [ - { - "definition": "SD", - "securedTerminal": [ - "DRM-HW", - "DRM-SW" - ], - "unsecuredTerminal": [ - "DRM-HW", - "DRM-SW" - ] - }, - { - "definition": "HD", - "securedTerminal": [ - "ND" - ], - "unsecuredTerminal": [ - "ND" - ] - } - ] - }, - "webdeviceData": { - "nomadismAllowed": true - }, - "technicalChannels": { - "live": [ - { - "techChannelId": "400269", - "type": "CLOUDTV", - "liveTargetURLRelativePath": "livetv_grt_gba_satellite_tv_ctv", - "usi": 400269, - "isDRMized": true, - "csa5Disabled": true - } - ], - "npvr": [ - { - "externalId": "livetv_grt_gba_satellite_tv_ctv", - "techChannelId": "400269", - "type": "CLOUDTV", - "usi": 400269, - "isDRMized": true, - "antiAdskipping": "DEACTIVATED", - "csa5Disabled": true - } - ], - "startover": [] - } - }, - { - "name": "GREAT WALL ELITE", - "editoChannelId": "livetv_GreatWallElite", - "lcn": 562, - "idEPG": 90562, - "epgAvailable": false, - "epgTextSubstitution": "", - "displayOrder": 562, - "csaCode": 1, - "slogan": "Divertir et Redécouvrir la Chine", - "catchupChannelId": "", - "newChannel": true, - "roamingBlocked": false, - "allowedDeviceCategories": [ - "M_ANDROID", - "M_IOS", - "M_TABLET_ANDROID", - "M_TABLET_IOS", - "W_AIRPLAY", - "W_CHROMECAST", - "W_LACLETV2", - "W_PC", - "W_SMARTTV", - "S_STB" - ], - "packages": [ - "PA_bouquet_chinois", - "PI_WHITELIST" - ], - "hasRightIAccess": true, - "hasRightMAccess": false, - "logos": [ - { - "definitionType": "mobileAppli", - "listLogos": [ - { - "size": "183x183", - "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_GreatWallElite%2F20221212_170133%2FmobileAppli%2Flogo_183x183.png" - } - ] - }, - { - "definitionType": "mobileAppliDark", - "listLogos": [ - { - "size": "183x183", - "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_GreatWallElite%2F20221212_170133%2FmobileAppliDark%2Flogo_183x183.png" - } - ] - }, - { - "definitionType": "webTVLogo", - "listLogos": [ - { - "size": "180x96", - "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_GreatWallElite%2F20221212_170133%2FwebTVLogo%2Flogo_180x96.png" - } - ] - }, - { - "definitionType": "webTVSquare", - "listLogos": [ - { - "size": "150x150", - "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_GreatWallElite%2F20221212_170133%2FwebTVSquare%2Flogo_150x150.png" - } - ] - } - ], - "mobileData": { - "wifiForbidden": false, - "wifiSecuredOnly": false, - "everywhereChannel": true, - "nomadismAllowed": true, - "drmLevels": [ - { - "definition": "SD", - "securedTerminal": [ - "DRM-HW", - "DRM-SW" - ], - "unsecuredTerminal": [ - "DRM-HW", - "DRM-SW" - ] - }, - { - "definition": "HD", - "securedTerminal": [ - "ND" - ], - "unsecuredTerminal": [ - "ND" - ] - } - ] - }, - "webdeviceData": { - "nomadismAllowed": true - }, - "technicalChannels": { - "live": [ - { - "techChannelId": "400268", - "type": "CLOUDTV", - "liveTargetURLRelativePath": "livetv_great_wall_elite_ctv", - "usi": 400268, - "isDRMized": true, - "csa5Disabled": true - } - ], - "npvr": [ - { - "externalId": "livetv_great_wall_elite_ctv", - "techChannelId": "400268", - "type": "CLOUDTV", - "usi": 400268, - "isDRMized": true, - "antiAdskipping": "DEACTIVATED", - "csa5Disabled": true - } - ], - "startover": [] - } - }, - { - "name": "VOXAFRICA", - "editoChannelId": "livetv_voxafrica", - "lcn": 589, - "idEPG": 1133, - "epgAvailable": true, - "epgTextSubstitution": "", - "displayOrder": 589, - "csaCode": 1, - "slogan": "La télévision panafricaine par excellence", - "catchupChannelId": "", - "newChannel": false, - "roamingBlocked": true, - "allowedDeviceCategories": [ - "M_ANDROID", - "M_IOS", - "M_TABLET_ANDROID", - "M_TABLET_IOS", - "W_AIRPLAY", - "W_CHROMECAST", - "W_LACLETV2", - "W_PC", - "W_SMARTTV", - "S_STB" - ], - "packages": [ - "PA_BQ_TVDIGITALE_I", - "PA_BQ_BASIC_I", - "PA_BQ_BASICQUAD_I", - "PI_WHITELIST" - ], - "hasRightIAccess": true, - "hasRightMAccess": false, - "logos": [ - { - "definitionType": "mobileAppli", - "listLogos": [ - { - "size": "183x183", - "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_voxafrica%2F20230217_121614%2FmobileAppli%2Flogo_183x183.png" - } - ] - }, - { - "definitionType": "mobileAppliDark", - "listLogos": [ - { - "size": "183x183", - "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_voxafrica%2F20230217_121614%2FmobileAppliDark%2Flogo_183x183.png" - } - ] - }, - { - "definitionType": "webTVLogo", - "listLogos": [ - { - "size": "180x96", - "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_voxafrica%2F20230217_121614%2FwebTVLogo%2Flogo_180x96.png" - } - ] - }, - { - "definitionType": "webTVSquare", - "listLogos": [ - { - "size": "150x150", - "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_voxafrica%2F20230217_121614%2FwebTVSquare%2Flogo_150x150.png" - } - ] - } - ], - "mobileData": { - "wifiForbidden": false, - "wifiSecuredOnly": false, - "everywhereChannel": true, - "nomadismAllowed": true, - "drmLevels": [ - { - "definition": "SD", - "securedTerminal": [ - "DRM-HW", - "DRM-SW" - ], - "unsecuredTerminal": [ - "DRM-HW", - "DRM-SW" - ] - }, - { - "definition": "HD", - "securedTerminal": [ - "DRM-HW", - "DRM-SW" - ], - "unsecuredTerminal": [ - "ND" - ] - } - ] - }, - "webdeviceData": { - "nomadismAllowed": true - }, - "technicalChannels": { - "live": [ - { - "techChannelId": "400417", - "type": "CLOUDTV", - "liveTargetURLRelativePath": "livetv_acces_limite_ctv", - "usi": 400417, - "isDRMized": true, - "csa5Disabled": true - } - ], - "npvr": [], - "startover": [] - } - }, - { - "name": "RTS", - "editoChannelId": "livetv_rts", - "lcn": 590, - "idEPG": 90590, - "epgAvailable": false, - "epgTextSubstitution": "", - "displayOrder": 590, - "csaCode": 1, - "slogan": "Informer, éduquer, divertir", - "catchupChannelId": "", - "newChannel": true, - "roamingBlocked": false, - "allowedDeviceCategories": [ - "M_ANDROID", - "M_IOS", - "M_TABLET_ANDROID", - "M_TABLET_IOS", - "W_AIRPLAY", - "W_CHROMECAST", - "W_LACLETV2", - "W_PC", - "W_SMARTTV", - "S_STB" - ], - "packages": [ - "PA_bouquet_africain", - "PA_bouquet_africain_max", - "PI_WHITELIST" - ], - "hasRightIAccess": true, - "hasRightMAccess": false, - "logos": [ - { - "definitionType": "mobileAppli", - "listLogos": [ - { - "size": "183x183", - "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_rts%2F20230515_122020%2FmobileAppli%2Flogo_183x183.png" - } - ] - }, - { - "definitionType": "mobileAppliDark", - "listLogos": [ - { - "size": "183x183", - "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_rts%2F20230515_122020%2FmobileAppliDark%2Flogo_183x183.png" - } - ] - }, - { - "definitionType": "webTVLogo", - "listLogos": [ - { - "size": "180x96", - "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_rts%2F20230515_122020%2FwebTVLogo%2Flogo_180x96.png" - } - ] - }, - { - "definitionType": "webTVSquare", - "listLogos": [ - { - "size": "150x150", - "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_rts%2F20230515_122020%2FwebTVSquare%2Flogo_150x150.png" - } - ] - } - ], - "mobileData": { - "wifiForbidden": false, - "wifiSecuredOnly": false, - "everywhereChannel": true, - "nomadismAllowed": true, - "drmLevels": [ - { - "definition": "SD", - "securedTerminal": [ - "DRM-HW", - "DRM-SW" - ], - "unsecuredTerminal": [ - "DRM-HW", - "DRM-SW" - ] - }, - { - "definition": "HD", - "securedTerminal": [ - "ND" - ], - "unsecuredTerminal": [ - "ND" - ] - } - ] - }, - "webdeviceData": { - "nomadismAllowed": true - }, - "technicalChannels": { - "live": [ - { - "techChannelId": "400363", - "type": "CLOUDTV", - "liveTargetURLRelativePath": "livetv_rts_ctv", - "usi": 400363, - "isDRMized": true, - "csa5Disabled": true - } - ], - "npvr": [ - { - "externalId": "livetv_rts_ctv", - "techChannelId": "400363", - "type": "CLOUDTV", - "usi": 400363, - "isDRMized": true, - "antiAdskipping": "DEACTIVATED", - "csa5Disabled": true - } - ], - "startover": [] - } - }, - { - "name": "2STV", - "editoChannelId": "livetv_2stv", - "lcn": 591, - "idEPG": 90591, - "epgAvailable": false, - "epgTextSubstitution": "", - "displayOrder": 591, - "csaCode": 1, - "slogan": "La télévision…autrement", - "catchupChannelId": "", - "newChannel": true, - "roamingBlocked": false, - "allowedDeviceCategories": [ - "M_ANDROID", - "M_IOS", - "M_TABLET_ANDROID", - "M_TABLET_IOS", - "W_AIRPLAY", - "W_CHROMECAST", - "W_LACLETV2", - "W_SMARTTV", - "W_PC", - "S_STB" - ], - "packages": [ - "PA_bouquet_africain", - "PA_bouquet_africain_max", - "PI_WHITELIST" - ], - "hasRightIAccess": true, - "hasRightMAccess": false, - "logos": [ - { - "definitionType": "mobileAppli", - "listLogos": [ - { - "size": "183x183", - "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_2stv%2F20210506_104734%2FmobileAppli%2Flogo_183x183.png" - } - ] - }, - { - "definitionType": "mobileAppliDark", - "listLogos": [ - { - "size": "183x183", - "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_2stv%2F20210506_104734%2FmobileAppliDark%2Flogo_183x183.png" - } - ] - }, - { - "definitionType": "webTVLogo", - "listLogos": [ - { - "size": "180x96", - "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_2stv%2F20210506_104734%2FwebTVLogo%2Flogo_180x96.png" - } - ] - }, - { - "definitionType": "webTVSquare", - "listLogos": [ - { - "size": "150x150", - "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_2stv%2F20210506_104734%2FwebTVSquare%2Flogo_150x150.png" - } - ] - } - ], - "mobileData": { - "wifiForbidden": false, - "wifiSecuredOnly": false, - "everywhereChannel": true, - "nomadismAllowed": true, - "drmLevels": [ - { - "definition": "SD", - "securedTerminal": [ - "DRM-HW", - "DRM-SW" - ], - "unsecuredTerminal": [ - "DRM-HW", - "DRM-SW" - ] - }, - { - "definition": "HD", - "securedTerminal": [ - "ND" - ], - "unsecuredTerminal": [ - "ND" - ] - } - ] - }, - "webdeviceData": { - "nomadismAllowed": true - }, - "technicalChannels": { - "live": [ - { - "techChannelId": "400364", - "type": "CLOUDTV", - "liveTargetURLRelativePath": "livetv_2stv_ctv", - "usi": 400364, - "isDRMized": true, - "csa5Disabled": true - } - ], - "npvr": [ - { - "externalId": "livetv_2stv_ctv", - "techChannelId": "400364", - "type": "CLOUDTV", - "usi": 400364, - "isDRMized": true, - "antiAdskipping": "DEACTIVATED", - "csa5Disabled": true - } - ], - "startover": [] - } - }, - { - "name": "ORTM", - "editoChannelId": "livetv_ortm", - "lcn": 592, - "idEPG": 90592, - "epgAvailable": false, - "epgTextSubstitution": "", - "displayOrder": 592, - "csaCode": 1, - "slogan": "La passion du service public", - "catchupChannelId": "", - "newChannel": true, - "roamingBlocked": false, - "allowedDeviceCategories": [ - "M_ANDROID", - "M_IOS", - "M_TABLET_ANDROID", - "M_TABLET_IOS", - "W_AIRPLAY", - "W_CHROMECAST", - "W_LACLETV2", - "W_SMARTTV", - "W_PC", - "S_STB" - ], - "packages": [ - "PA_bouquet_africain", - "PA_bouquet_africain_max", - "PI_WHITELIST" - ], - "hasRightIAccess": true, - "hasRightMAccess": false, - "logos": [ - { - "definitionType": "mobileAppli", - "listLogos": [ - { - "size": "183x183", - "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_ortm%2F20210506_104734%2FmobileAppli%2Flogo_183x183.png" - } - ] - }, - { - "definitionType": "mobileAppliDark", - "listLogos": [ - { - "size": "183x183", - "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_ortm%2F20210506_104734%2FmobileAppliDark%2Flogo_183x183.png" - } - ] - }, - { - "definitionType": "webTVLogo", - "listLogos": [ - { - "size": "180x96", - "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_ortm%2F20210506_104734%2FwebTVLogo%2Flogo_180x96.png" - } - ] - }, - { - "definitionType": "webTVSquare", - "listLogos": [ - { - "size": "150x150", - "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_ortm%2F20210506_104734%2FwebTVSquare%2Flogo_150x150.png" - } - ] - } - ], - "mobileData": { - "wifiForbidden": false, - "wifiSecuredOnly": false, - "everywhereChannel": true, - "nomadismAllowed": true, - "drmLevels": [ - { - "definition": "SD", - "securedTerminal": [ - "DRM-HW", - "DRM-SW" - ], - "unsecuredTerminal": [ - "DRM-HW", - "DRM-SW" - ] - }, - { - "definition": "HD", - "securedTerminal": [ - "ND" - ], - "unsecuredTerminal": [ - "ND" - ] - } - ] - }, - "webdeviceData": { - "nomadismAllowed": true - }, - "technicalChannels": { - "live": [ - { - "techChannelId": "400365", - "type": "CLOUDTV", - "liveTargetURLRelativePath": "livetv_ortm_ctv", - "usi": 400365, - "isDRMized": true, - "csa5Disabled": true - } - ], - "npvr": [ - { - "externalId": "livetv_ortm_ctv", - "techChannelId": "400365", - "type": "CLOUDTV", - "usi": 400365, - "isDRMized": true, - "antiAdskipping": "DEACTIVATED", - "csa5Disabled": true - } - ], - "startover": [] - } - }, - { - "name": "RTI1", - "editoChannelId": "livetv_rti1", - "lcn": 593, - "idEPG": 90593, - "epgAvailable": false, - "epgTextSubstitution": "", - "displayOrder": 593, - "csaCode": 1, - "slogan": "La chaîne qui rassemble", - "catchupChannelId": "", - "newChannel": true, - "roamingBlocked": false, - "allowedDeviceCategories": [ - "M_ANDROID", - "M_IOS", - "M_TABLET_ANDROID", - "M_TABLET_IOS", - "W_AIRPLAY", - "W_CHROMECAST", - "W_LACLETV2", - "W_SMARTTV", - "W_PC", - "S_STB" - ], - "packages": [ - "PA_bouquet_africain", - "PA_bouquet_africain_max", - "PI_WHITELIST" - ], - "hasRightIAccess": true, - "hasRightMAccess": false, - "logos": [ - { - "definitionType": "mobileAppli", - "listLogos": [ - { - "size": "183x183", - "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_rti1%2F20210506_104734%2FmobileAppli%2Flogo_183x183.png" - } - ] - }, - { - "definitionType": "mobileAppliDark", - "listLogos": [ - { - "size": "183x183", - "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_rti1%2F20210506_104734%2FmobileAppliDark%2Flogo_183x183.png" - } - ] - }, - { - "definitionType": "webTVLogo", - "listLogos": [ - { - "size": "180x96", - "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_rti1%2F20210506_104734%2FwebTVLogo%2Flogo_180x96.png" - } - ] - }, - { - "definitionType": "webTVSquare", - "listLogos": [ - { - "size": "150x150", - "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_rti1%2F20210506_104734%2FwebTVSquare%2Flogo_150x150.png" - } - ] - } - ], - "mobileData": { - "wifiForbidden": false, - "wifiSecuredOnly": false, - "everywhereChannel": true, - "nomadismAllowed": true, - "drmLevels": [ - { - "definition": "SD", - "securedTerminal": [ - "DRM-HW", - "DRM-SW" - ], - "unsecuredTerminal": [ - "DRM-HW", - "DRM-SW" - ] - }, - { - "definition": "HD", - "securedTerminal": [ - "ND" - ], - "unsecuredTerminal": [ - "ND" - ] - } - ] - }, - "webdeviceData": { - "nomadismAllowed": true - }, - "technicalChannels": { - "live": [ - { - "techChannelId": "400366", - "type": "CLOUDTV", - "liveTargetURLRelativePath": "livetv_rti1_ctv", - "usi": 400366, - "isDRMized": true, - "csa5Disabled": true - } - ], - "npvr": [ - { - "externalId": "livetv_rti1_ctv", - "techChannelId": "400366", - "type": "CLOUDTV", - "usi": 400366, - "isDRMized": true, - "antiAdskipping": "DEACTIVATED", - "csa5Disabled": true - } - ], - "startover": [] - } - }, - { - "name": "CRTV", - "editoChannelId": "livetv_crtv", - "lcn": 594, - "idEPG": 90594, - "epgAvailable": false, - "epgTextSubstitution": "", - "displayOrder": 594, - "csaCode": 1, - "slogan": "La chaîne publique camerounaise", - "catchupChannelId": "", - "newChannel": true, - "roamingBlocked": false, - "allowedDeviceCategories": [ - "M_ANDROID", - "M_IOS", - "M_TABLET_ANDROID", - "M_TABLET_IOS", - "W_AIRPLAY", - "W_CHROMECAST", - "W_LACLETV2", - "W_SMARTTV", - "W_PC", - "S_STB" - ], - "packages": [ - "PA_bouquet_africain", - "PA_bouquet_africain_max", - "PI_WHITELIST" - ], - "hasRightIAccess": true, - "hasRightMAccess": false, - "logos": [ - { - "definitionType": "mobileAppli", - "listLogos": [ - { - "size": "183x183", - "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_crtv%2F20210506_104734%2FmobileAppli%2Flogo_183x183.png" - } - ] - }, - { - "definitionType": "mobileAppliDark", - "listLogos": [ - { - "size": "183x183", - "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_crtv%2F20210506_104734%2FmobileAppliDark%2Flogo_183x183.png" - } - ] - }, - { - "definitionType": "webTVLogo", - "listLogos": [ - { - "size": "180x96", - "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_crtv%2F20210506_104734%2FwebTVLogo%2Flogo_180x96.png" - } - ] - }, - { - "definitionType": "webTVSquare", - "listLogos": [ - { - "size": "150x150", - "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_crtv%2F20210506_104734%2FwebTVSquare%2Flogo_150x150.png" - } - ] - } - ], - "mobileData": { - "wifiForbidden": false, - "wifiSecuredOnly": false, - "everywhereChannel": true, - "nomadismAllowed": true, - "drmLevels": [ - { - "definition": "SD", - "securedTerminal": [ - "DRM-HW", - "DRM-SW" - ], - "unsecuredTerminal": [ - "DRM-HW", - "DRM-SW" - ] - }, - { - "definition": "HD", - "securedTerminal": [ - "ND" - ], - "unsecuredTerminal": [ - "ND" - ] - } - ] - }, - "webdeviceData": { - "nomadismAllowed": true - }, - "technicalChannels": { - "live": [ - { - "techChannelId": "400367", - "type": "CLOUDTV", - "liveTargetURLRelativePath": "livetv_crtv_ctv", - "usi": 400367, - "isDRMized": true, - "csa5Disabled": true - } - ], - "npvr": [ - { - "externalId": "livetv_crtv_ctv", - "techChannelId": "400367", - "type": "CLOUDTV", - "usi": 400367, - "isDRMized": true, - "antiAdskipping": "DEACTIVATED", - "csa5Disabled": true - } - ], - "startover": [] - } - }, - { - "name": "RTNC", - "editoChannelId": "livetv_rtnc", - "lcn": 595, - "idEPG": 90595, - "epgAvailable": false, - "epgTextSubstitution": "", - "displayOrder": 595, - "csaCode": 1, - "slogan": "Chaîne publique congolaise", - "catchupChannelId": "", - "newChannel": true, - "roamingBlocked": false, - "allowedDeviceCategories": [ - "M_ANDROID", - "M_IOS", - "M_TABLET_ANDROID", - "M_TABLET_IOS", - "W_AIRPLAY", - "W_CHROMECAST", - "W_LACLETV2", - "W_SMARTTV", - "W_PC", - "S_STB" - ], - "packages": [ - "PA_bouquet_africain", - "PA_bouquet_africain_max", - "PI_WHITELIST" - ], - "hasRightIAccess": true, - "hasRightMAccess": false, - "logos": [ - { - "definitionType": "mobileAppli", - "listLogos": [ - { - "size": "183x183", - "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_rtnc%2F20210506_104734%2FmobileAppli%2Flogo_183x183.png" - } - ] - }, - { - "definitionType": "mobileAppliDark", - "listLogos": [ - { - "size": "183x183", - "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_rtnc%2F20210506_104734%2FmobileAppliDark%2Flogo_183x183.png" - } - ] - }, - { - "definitionType": "webTVLogo", - "listLogos": [ - { - "size": "180x96", - "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_rtnc%2F20210506_104734%2FwebTVLogo%2Flogo_180x96.png" - } - ] - }, - { - "definitionType": "webTVSquare", - "listLogos": [ - { - "size": "150x150", - "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_rtnc%2F20210506_104734%2FwebTVSquare%2Flogo_150x150.png" - } - ] - } - ], - "mobileData": { - "wifiForbidden": false, - "wifiSecuredOnly": false, - "everywhereChannel": true, - "nomadismAllowed": true, - "drmLevels": [ - { - "definition": "SD", - "securedTerminal": [ - "DRM-HW", - "DRM-SW" - ], - "unsecuredTerminal": [ - "DRM-HW", - "DRM-SW" - ] - }, - { - "definition": "HD", - "securedTerminal": [ - "ND" - ], - "unsecuredTerminal": [ - "ND" - ] - } - ] - }, - "webdeviceData": { - "nomadismAllowed": true - }, - "technicalChannels": { - "live": [ - { - "techChannelId": "400368", - "type": "CLOUDTV", - "liveTargetURLRelativePath": "livetv_rtnc_ctv", - "usi": 400368, - "isDRMized": true, - "csa5Disabled": true - } - ], - "npvr": [ - { - "externalId": "livetv_rtnc_ctv", - "techChannelId": "400368", - "type": "CLOUDTV", - "usi": 400368, - "isDRMized": true, - "antiAdskipping": "DEACTIVATED", - "csa5Disabled": true - } - ], - "startover": [] - } - }, - { - "name": "TELE CONGO", - "editoChannelId": "livetv_tele_congo", - "lcn": 596, - "idEPG": 90596, - "epgAvailable": false, - "epgTextSubstitution": "", - "displayOrder": 596, - "csaCode": 1, - "slogan": "Plus jamais sans vous", - "catchupChannelId": "", - "newChannel": true, - "roamingBlocked": false, - "allowedDeviceCategories": [ - "M_ANDROID", - "M_IOS", - "M_TABLET_ANDROID", - "M_TABLET_IOS", - "W_AIRPLAY", - "W_CHROMECAST", - "W_LACLETV2", - "W_SMARTTV", - "W_PC", - "S_STB" - ], - "packages": [ - "PA_bouquet_africain", - "PA_bouquet_africain_max", - "PI_WHITELIST" - ], - "hasRightIAccess": true, - "hasRightMAccess": false, - "logos": [ - { - "definitionType": "mobileAppli", - "listLogos": [ - { - "size": "183x183", - "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_tele_congo%2F20210506_104734%2FmobileAppli%2Flogo_183x183.png" - } - ] - }, - { - "definitionType": "mobileAppliDark", - "listLogos": [ - { - "size": "183x183", - "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_tele_congo%2F20210506_104734%2FmobileAppliDark%2Flogo_183x183.png" - } - ] - }, - { - "definitionType": "webTVLogo", - "listLogos": [ - { - "size": "180x96", - "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_tele_congo%2F20210506_104734%2FwebTVLogo%2Flogo_180x96.png" - } - ] - }, - { - "definitionType": "webTVSquare", - "listLogos": [ - { - "size": "150x150", - "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_tele_congo%2F20210506_104734%2FwebTVSquare%2Flogo_150x150.png" - } - ] - } - ], - "mobileData": { - "wifiForbidden": false, - "wifiSecuredOnly": false, - "everywhereChannel": true, - "nomadismAllowed": true, - "drmLevels": [ - { - "definition": "SD", - "securedTerminal": [ - "DRM-HW", - "DRM-SW" - ], - "unsecuredTerminal": [ - "DRM-HW", - "DRM-SW" - ] - }, - { - "definition": "HD", - "securedTerminal": [ - "ND" - ], - "unsecuredTerminal": [ - "ND" - ] - } - ] - }, - "webdeviceData": { - "nomadismAllowed": true - }, - "technicalChannels": { - "live": [ - { - "techChannelId": "400369", - "type": "CLOUDTV", - "liveTargetURLRelativePath": "livetv_tvcongo_ctv", - "usi": 400369, - "isDRMized": true, - "csa5Disabled": true - } - ], - "npvr": [ - { - "externalId": "livetv_tvcongo_ctv", - "techChannelId": "400369", - "type": "CLOUDTV", - "usi": 400369, - "isDRMized": true, - "antiAdskipping": "DEACTIVATED", - "csa5Disabled": true - } - ], - "startover": [] - } - }, - { - "name": "ORTB", - "editoChannelId": "livetv_ortb", - "lcn": 597, - "idEPG": 90597, - "epgAvailable": false, - "epgTextSubstitution": "", - "displayOrder": 597, - "csaCode": 1, - "slogan": "Votre partenaire des grands événements", - "catchupChannelId": "", - "newChannel": true, - "roamingBlocked": false, - "allowedDeviceCategories": [ - "M_ANDROID", - "M_IOS", - "M_TABLET_ANDROID", - "M_TABLET_IOS", - "W_AIRPLAY", - "W_CHROMECAST", - "W_LACLETV2", - "W_SMARTTV", - "W_PC", - "S_STB" - ], - "packages": [ - "PA_bouquet_africain", - "PA_bouquet_africain_max", - "PI_WHITELIST" - ], - "hasRightIAccess": true, - "hasRightMAccess": false, - "logos": [ - { - "definitionType": "mobileAppli", - "listLogos": [ - { - "size": "183x183", - "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_ortb%2F20210506_104734%2FmobileAppli%2Flogo_183x183.png" - } - ] - }, - { - "definitionType": "mobileAppliDark", - "listLogos": [ - { - "size": "183x183", - "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_ortb%2F20210506_104734%2FmobileAppliDark%2Flogo_183x183.png" - } - ] - }, - { - "definitionType": "webTVLogo", - "listLogos": [ - { - "size": "180x96", - "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_ortb%2F20210506_104734%2FwebTVLogo%2Flogo_180x96.png" - } - ] - }, - { - "definitionType": "webTVSquare", - "listLogos": [ - { - "size": "150x150", - "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_ortb%2F20210506_104734%2FwebTVSquare%2Flogo_150x150.png" - } - ] - } - ], - "mobileData": { - "wifiForbidden": false, - "wifiSecuredOnly": false, - "everywhereChannel": true, - "nomadismAllowed": true, - "drmLevels": [ - { - "definition": "SD", - "securedTerminal": [ - "DRM-HW", - "DRM-SW" - ], - "unsecuredTerminal": [ - "DRM-HW", - "DRM-SW" - ] - }, - { - "definition": "HD", - "securedTerminal": [ - "ND" - ], - "unsecuredTerminal": [ - "ND" - ] - } - ] - }, - "webdeviceData": { - "nomadismAllowed": true - }, - "technicalChannels": { - "live": [ - { - "techChannelId": "400370", - "type": "CLOUDTV", - "liveTargetURLRelativePath": "livetv_ortb_ctv", - "usi": 400370, - "isDRMized": true, - "csa5Disabled": true - } - ], - "npvr": [ - { - "externalId": "livetv_ortb_ctv", - "techChannelId": "400370", - "type": "CLOUDTV", - "usi": 400370, - "isDRMized": true, - "antiAdskipping": "DEACTIVATED", - "csa5Disabled": true - } - ], - "startover": [] - } - }, - { - "name": "A+", - "editoChannelId": "livetv_aplus", - "lcn": 598, - "idEPG": 90598, - "epgAvailable": false, - "epgTextSubstitution": "", - "displayOrder": 598, - "csaCode": 1, - "slogan": "La chaîne des séries africaines", - "catchupChannelId": "", - "newChannel": true, - "roamingBlocked": false, - "allowedDeviceCategories": [ - "M_ANDROID", - "M_IOS", - "M_TABLET_ANDROID", - "M_TABLET_IOS", - "W_AIRPLAY", - "W_CHROMECAST", - "W_LACLETV2", - "W_SMARTTV", - "W_PC", - "S_STB" - ], - "packages": [ - "PA_bouquet_africain", - "PA_bouquet_africain_max", - "PI_WHITELIST" - ], - "hasRightIAccess": true, - "hasRightMAccess": false, - "logos": [ - { - "definitionType": "mobileAppli", - "listLogos": [ - { - "size": "183x183", - "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_aplus%2F20210526_153310%2FmobileAppli%2Flogo_183x183.png" - } - ] - }, - { - "definitionType": "mobileAppliDark", - "listLogos": [ - { - "size": "183x183", - "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_aplus%2F20210526_153310%2FmobileAppliDark%2Flogo_183x183.png" - } - ] - }, - { - "definitionType": "webTVLogo", - "listLogos": [ - { - "size": "180x96", - "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_aplus%2F20210526_153310%2FwebTVLogo%2Flogo_180x96.png" - } - ] - }, - { - "definitionType": "webTVSquare", - "listLogos": [ - { - "size": "150x150", - "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_aplus%2F20210526_153310%2FwebTVSquare%2Flogo_150x150.png" - } - ] - } - ], - "mobileData": { - "wifiForbidden": false, - "wifiSecuredOnly": false, - "everywhereChannel": true, - "nomadismAllowed": true, - "drmLevels": [ - { - "definition": "SD", - "securedTerminal": [ - "DRM-HW", - "DRM-SW" - ], - "unsecuredTerminal": [ - "DRM-HW", - "DRM-SW" - ] - }, - { - "definition": "HD", - "securedTerminal": [ - "ND" - ], - "unsecuredTerminal": [ - "ND" - ] - } - ] - }, - "webdeviceData": { - "nomadismAllowed": true - }, - "technicalChannels": { - "live": [ - { - "techChannelId": "400390", - "type": "CLOUDTV", - "liveTargetURLRelativePath": "livetv_a_plus_ctv", - "usi": 400390, - "isDRMized": true, - "csa5Disabled": true - } - ], - "npvr": [ - { - "externalId": "livetv_a_plus_ctv", - "techChannelId": "400390", - "type": "CLOUDTV", - "usi": 400390, - "isDRMized": true, - "antiAdskipping": "DEACTIVATED", - "csa5Disabled": true - } - ], - "startover": [] - } - }, - { - "name": "NCI", - "editoChannelId": "livetv_nci", - "lcn": 599, - "idEPG": 2913, - "epgAvailable": true, - "epgTextSubstitution": "", - "displayOrder": 599, - "csaCode": 1, - "slogan": "La Nouvelle chaine ivoirienne", - "catchupChannelId": "", - "newChannel": true, - "roamingBlocked": false, - "allowedDeviceCategories": [ - "M_ANDROID", - "M_IOS", - "M_TABLET_ANDROID", - "M_TABLET_IOS", - "W_AIRPLAY", - "W_CHROMECAST", - "W_LACLETV2", - "W_PC", - "W_SMARTTV", - "S_STB" - ], - "packages": [ - "PA_bouquet_africain", - "PA_bouquet_africain_max", - "PI_WHITELIST" - ], - "hasRightIAccess": true, - "hasRightMAccess": false, - "logos": [ - { - "definitionType": "mobileAppli", - "listLogos": [ - { - "size": "183x183", - "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_nci%2F20220128_093134%2FmobileAppli%2Flogo_183x183.png" - } - ] - }, - { - "definitionType": "mobileAppliDark", - "listLogos": [ - { - "size": "183x183", - "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_nci%2F20220128_093134%2FmobileAppliDark%2Flogo_183x183.png" - } - ] - }, - { - "definitionType": "webTVLogo", - "listLogos": [ - { - "size": "180x96", - "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_nci%2F20220128_093134%2FwebTVLogo%2Flogo_180x96.png" - } - ] - }, - { - "definitionType": "webTVSquare", - "listLogos": [ - { - "size": "150x150", - "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_nci%2F20220128_093134%2FwebTVSquare%2Flogo_150x150.png" - } - ] - } - ], - "mobileData": { - "wifiForbidden": false, - "wifiSecuredOnly": false, - "everywhereChannel": true, - "nomadismAllowed": true, - "drmLevels": [ - { - "definition": "SD", - "securedTerminal": [ - "DRM-HW", - "DRM-SW" - ], - "unsecuredTerminal": [ - "DRM-HW", - "DRM-SW" - ] - }, - { - "definition": "HD", - "securedTerminal": [ - "NO-DRM" - ], - "unsecuredTerminal": [ - "NO-DRM" - ] - } - ] - }, - "webdeviceData": { - "nomadismAllowed": true - }, - "technicalChannels": { - "live": [ - { - "techChannelId": "400122", - "type": "CLOUDTV", - "liveTargetURLRelativePath": "livetv_nci_ctv", - "usi": 400122, - "isDRMized": true, - "csa5Disabled": true - } - ], - "npvr": [ - { - "externalId": "livetv_nci_ctv", - "techChannelId": "400122", - "type": "CLOUDTV", - "usi": 400122, - "isDRMized": true, - "antiAdskipping": "DEACTIVATED", - "csa5Disabled": true - } - ], - "startover": [] - } - }, - { - "name": "AFRICABLE", - "editoChannelId": "livetv_africable", - "lcn": 600, - "idEPG": 90600, - "epgAvailable": false, - "epgTextSubstitution": "", - "displayOrder": 600, - "csaCode": 1, - "slogan": "La chaîne du continent", - "catchupChannelId": "", - "newChannel": true, - "roamingBlocked": false, - "allowedDeviceCategories": [ - "M_ANDROID", - "M_IOS", - "M_TABLET_ANDROID", - "M_TABLET_IOS", - "W_AIRPLAY", - "W_CHROMECAST", - "W_LACLETV2", - "W_SMARTTV", - "W_PC", - "S_STB" - ], - "packages": [ - "PA_bouquet_africain_max", - "PI_WHITELIST" - ], - "hasRightIAccess": true, - "hasRightMAccess": false, - "logos": [ - { - "definitionType": "mobileAppli", - "listLogos": [ - { - "size": "183x183", - "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_africable%2F20210506_104734%2FmobileAppli%2Flogo_183x183.png" - } - ] - }, - { - "definitionType": "mobileAppliDark", - "listLogos": [ - { - "size": "183x183", - "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_africable%2F20210506_104734%2FmobileAppliDark%2Flogo_183x183.png" - } - ] - }, - { - "definitionType": "webTVLogo", - "listLogos": [ - { - "size": "180x96", - "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_africable%2F20210506_104734%2FwebTVLogo%2Flogo_180x96.png" - } - ] - }, - { - "definitionType": "webTVSquare", - "listLogos": [ - { - "size": "150x150", - "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_africable%2F20210506_104734%2FwebTVSquare%2Flogo_150x150.png" - } - ] - } - ], - "mobileData": { - "wifiForbidden": false, - "wifiSecuredOnly": false, - "everywhereChannel": true, - "nomadismAllowed": true, - "drmLevels": [ - { - "definition": "SD", - "securedTerminal": [ - "DRM-HW", - "DRM-SW" - ], - "unsecuredTerminal": [ - "DRM-HW", - "DRM-SW" - ] - }, - { - "definition": "HD", - "securedTerminal": [ - "ND" - ], - "unsecuredTerminal": [ - "ND" - ] - } - ] - }, - "webdeviceData": { - "nomadismAllowed": true - }, - "technicalChannels": { - "live": [ - { - "techChannelId": "400372", - "type": "CLOUDTV", - "liveTargetURLRelativePath": "livetv_africable_ctv", - "usi": 400372, - "isDRMized": true, - "csa5Disabled": true - } - ], - "npvr": [ - { - "externalId": "livetv_africable_ctv", - "techChannelId": "400372", - "type": "CLOUDTV", - "usi": 400372, - "isDRMized": true, - "antiAdskipping": "DEACTIVATED", - "csa5Disabled": true - } - ], - "startover": [] - } - }, - { - "name": "CANAL 2 INT.", - "editoChannelId": "livetv_canal_2_int", - "lcn": 601, - "idEPG": 90601, - "epgAvailable": false, - "epgTextSubstitution": "", - "displayOrder": 601, - "csaCode": 1, - "slogan": "Toujours plus près de vous", - "catchupChannelId": "", - "newChannel": true, - "roamingBlocked": false, - "allowedDeviceCategories": [ - "M_ANDROID", - "M_IOS", - "M_TABLET_ANDROID", - "M_TABLET_IOS", - "W_AIRPLAY", - "W_CHROMECAST", - "W_LACLETV2", - "W_SMARTTV", - "W_PC", - "S_STB" - ], - "packages": [ - "PA_bouquet_africain_max", - "PI_WHITELIST" - ], - "hasRightIAccess": true, - "hasRightMAccess": false, - "logos": [ - { - "definitionType": "mobileAppli", - "listLogos": [ - { - "size": "183x183", - "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_canal_2_int%2F20210506_104734%2FmobileAppli%2Flogo_183x183.png" - } - ] - }, - { - "definitionType": "mobileAppliDark", - "listLogos": [ - { - "size": "183x183", - "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_canal_2_int%2F20210506_104734%2FmobileAppliDark%2Flogo_183x183.png" - } - ] - }, - { - "definitionType": "webTVLogo", - "listLogos": [ - { - "size": "180x96", - "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_canal_2_int%2F20210506_104734%2FwebTVLogo%2Flogo_180x96.png" - } - ] - }, - { - "definitionType": "webTVSquare", - "listLogos": [ - { - "size": "150x150", - "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_canal_2_int%2F20210506_104734%2FwebTVSquare%2Flogo_150x150.png" - } - ] - } - ], - "mobileData": { - "wifiForbidden": false, - "wifiSecuredOnly": false, - "everywhereChannel": true, - "nomadismAllowed": true, - "drmLevels": [ - { - "definition": "SD", - "securedTerminal": [ - "DRM-HW", - "DRM-SW" - ], - "unsecuredTerminal": [ - "DRM-HW", - "DRM-SW" - ] - }, - { - "definition": "HD", - "securedTerminal": [ - "ND" - ], - "unsecuredTerminal": [ - "ND" - ] - } - ] - }, - "webdeviceData": { - "nomadismAllowed": true - }, - "technicalChannels": { - "live": [ - { - "techChannelId": "400373", - "type": "CLOUDTV", - "liveTargetURLRelativePath": "livetv_canal2international_ctv", - "usi": 400373, - "isDRMized": true, - "csa5Disabled": true - } - ], - "npvr": [ - { - "externalId": "livetv_canal2international_ctv", - "techChannelId": "400373", - "type": "CLOUDTV", - "usi": 400373, - "isDRMized": true, - "antiAdskipping": "DEACTIVATED", - "csa5Disabled": true - } - ], - "startover": [] - } - }, - { - "name": "TVT", - "editoChannelId": "livetv_tvt", - "lcn": 602, - "idEPG": 90602, - "epgAvailable": false, - "epgTextSubstitution": "", - "displayOrder": 602, - "csaCode": 1, - "slogan": "Télévision Togolaise", - "catchupChannelId": "", - "newChannel": true, - "roamingBlocked": false, - "allowedDeviceCategories": [ - "M_ANDROID", - "M_IOS", - "M_TABLET_ANDROID", - "M_TABLET_IOS", - "W_AIRPLAY", - "W_CHROMECAST", - "W_LACLETV2", - "W_PC", - "W_SMARTTV", - "S_STB" - ], - "packages": [ - "PA_bouquet_africain_max", - "PI_WHITELIST" - ], - "hasRightIAccess": true, - "hasRightMAccess": false, - "logos": [ - { - "definitionType": "mobileAppli", - "listLogos": [ - { - "size": "183x183", - "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_tvt%2F20230713_104030%2FmobileAppli%2Flogo_183x183.png" - } - ] - }, - { - "definitionType": "mobileAppliDark", - "listLogos": [ - { - "size": "183x183", - "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_tvt%2F20230713_104030%2FmobileAppliDark%2Flogo_183x183.png" - } - ] - }, - { - "definitionType": "webTVLogo", - "listLogos": [ - { - "size": "180x96", - "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_tvt%2F20230713_104030%2FwebTVLogo%2Flogo_180x96.png" - } - ] - }, - { - "definitionType": "webTVSquare", - "listLogos": [ - { - "size": "150x150", - "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_tvt%2F20230713_104030%2FwebTVSquare%2Flogo_150x150.png" - } - ] - } - ], - "mobileData": { - "wifiForbidden": false, - "wifiSecuredOnly": false, - "everywhereChannel": true, - "nomadismAllowed": true, - "drmLevels": [ - { - "definition": "SD", - "securedTerminal": [ - "DRM-HW", - "DRM-SW" - ], - "unsecuredTerminal": [ - "DRM-HW", - "DRM-SW" - ] - }, - { - "definition": "HD", - "securedTerminal": [ - "ND" - ], - "unsecuredTerminal": [ - "ND" - ] - } - ] - }, - "webdeviceData": { - "nomadismAllowed": true - }, - "technicalChannels": { - "live": [ - { - "techChannelId": "400374", - "type": "CLOUDTV", - "liveTargetURLRelativePath": "livetv_tvt_ctv", - "usi": 400374, - "isDRMized": true, - "csa5Disabled": true - } - ], - "npvr": [ - { - "externalId": "livetv_tvt_ctv", - "techChannelId": "400374", - "type": "CLOUDTV", - "usi": 400374, - "isDRMized": true, - "antiAdskipping": "DEACTIVATED", - "csa5Disabled": true - } - ], - "startover": [] - } - }, - { - "name": "RTG", - "editoChannelId": "livetv_rtg", - "lcn": 603, - "idEPG": 90603, - "epgAvailable": false, - "epgTextSubstitution": "", - "displayOrder": 603, - "csaCode": 1, - "slogan": "La radio-télévision guinéenne", - "catchupChannelId": "", - "newChannel": true, - "roamingBlocked": false, - "allowedDeviceCategories": [ - "M_ANDROID", - "M_IOS", - "M_TABLET_ANDROID", - "M_TABLET_IOS", - "W_AIRPLAY", - "W_CHROMECAST", - "W_LACLETV2", - "W_SMARTTV", - "W_PC", - "S_STB" - ], - "packages": [ - "PA_bouquet_africain_max", - "PI_WHITELIST" - ], - "hasRightIAccess": true, - "hasRightMAccess": false, - "logos": [ - { - "definitionType": "mobileAppli", - "listLogos": [ - { - "size": "183x183", - "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_rtg%2F20210506_104734%2FmobileAppli%2Flogo_183x183.png" - } - ] - }, - { - "definitionType": "mobileAppliDark", - "listLogos": [ - { - "size": "183x183", - "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_rtg%2F20210506_104734%2FmobileAppliDark%2Flogo_183x183.png" - } - ] - }, - { - "definitionType": "webTVLogo", - "listLogos": [ - { - "size": "180x96", - "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_rtg%2F20210506_104734%2FwebTVLogo%2Flogo_180x96.png" - } - ] - }, - { - "definitionType": "webTVSquare", - "listLogos": [ - { - "size": "150x150", - "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_rtg%2F20210506_104734%2FwebTVSquare%2Flogo_150x150.png" - } - ] - } - ], - "mobileData": { - "wifiForbidden": false, - "wifiSecuredOnly": false, - "everywhereChannel": true, - "nomadismAllowed": true, - "drmLevels": [ - { - "definition": "SD", - "securedTerminal": [ - "DRM-HW", - "DRM-SW" - ], - "unsecuredTerminal": [ - "DRM-HW", - "DRM-SW" - ] - }, - { - "definition": "HD", - "securedTerminal": [ - "ND" - ], - "unsecuredTerminal": [ - "ND" - ] - } - ] - }, - "webdeviceData": { - "nomadismAllowed": true - }, - "technicalChannels": { - "live": [ - { - "techChannelId": "400375", - "type": "CLOUDTV", - "liveTargetURLRelativePath": "livetv_rtg_ctv", - "usi": 400375, - "isDRMized": true, - "csa5Disabled": true - } - ], - "npvr": [ - { - "externalId": "livetv_rtg_ctv", - "techChannelId": "400375", - "type": "CLOUDTV", - "usi": 400375, - "isDRMized": true, - "antiAdskipping": "DEACTIVATED", - "csa5Disabled": true - } - ], - "startover": [] - } - }, - { - "name": "TFM", - "editoChannelId": "livetv_tfm", - "lcn": 604, - "idEPG": 90604, - "epgAvailable": false, - "epgTextSubstitution": "", - "displayOrder": 604, - "csaCode": 1, - "slogan": "Le Miroir du Sénégal", - "catchupChannelId": "", - "newChannel": true, - "roamingBlocked": false, - "allowedDeviceCategories": [ - "M_ANDROID", - "M_IOS", - "M_TABLET_ANDROID", - "M_TABLET_IOS", - "W_AIRPLAY", - "W_CHROMECAST", - "W_LACLETV2", - "W_SMARTTV", - "W_PC", - "S_STB" - ], - "packages": [ - "PA_bouquet_africain_max", - "PI_WHITELIST" - ], - "hasRightIAccess": true, - "hasRightMAccess": false, - "logos": [ - { - "definitionType": "mobileAppli", - "listLogos": [ - { - "size": "183x183", - "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_tfm%2F20210506_104734%2FmobileAppli%2Flogo_183x183.png" - } - ] - }, - { - "definitionType": "mobileAppliDark", - "listLogos": [ - { - "size": "183x183", - "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_tfm%2F20210506_104734%2FmobileAppliDark%2Flogo_183x183.png" - } - ] - }, - { - "definitionType": "webTVLogo", - "listLogos": [ - { - "size": "180x96", - "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_tfm%2F20210506_104734%2FwebTVLogo%2Flogo_180x96.png" - } - ] - }, - { - "definitionType": "webTVSquare", - "listLogos": [ - { - "size": "150x150", - "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_tfm%2F20210506_104734%2FwebTVSquare%2Flogo_150x150.png" - } - ] - } - ], - "mobileData": { - "wifiForbidden": false, - "wifiSecuredOnly": false, - "everywhereChannel": true, - "nomadismAllowed": true, - "drmLevels": [ - { - "definition": "SD", - "securedTerminal": [ - "DRM-HW", - "DRM-SW" - ], - "unsecuredTerminal": [ - "DRM-HW", - "DRM-SW" - ] - }, - { - "definition": "HD", - "securedTerminal": [ - "ND" - ], - "unsecuredTerminal": [ - "ND" - ] - } - ] - }, - "webdeviceData": { - "nomadismAllowed": true - }, - "technicalChannels": { - "live": [ - { - "techChannelId": "400376", - "type": "CLOUDTV", - "liveTargetURLRelativePath": "livetv_tfm_ctv", - "usi": 400376, - "isDRMized": true, - "csa5Disabled": true - } - ], - "npvr": [ - { - "externalId": "livetv_tfm_ctv", - "techChannelId": "400376", - "type": "CLOUDTV", - "usi": 400376, - "isDRMized": true, - "antiAdskipping": "DEACTIVATED", - "csa5Disabled": true - } - ], - "startover": [] - } - }, - { - "name": "TRACE AFRICA", - "editoChannelId": "livetv_trace_africa", - "lcn": 605, - "idEPG": 90605, - "epgAvailable": false, - "epgTextSubstitution": "", - "displayOrder": 605, - "csaCode": 1, - "slogan": "We Love African Music !", - "catchupChannelId": "", - "newChannel": true, - "roamingBlocked": false, - "allowedDeviceCategories": [ - "M_ANDROID", - "M_IOS", - "M_TABLET_ANDROID", - "M_TABLET_IOS", - "W_AIRPLAY", - "W_CHROMECAST", - "W_LACLETV2", - "W_SMARTTV", - "W_PC", - "S_STB" - ], - "packages": [ - "PA_bouquet_africain_max", - "PI_WHITELIST" - ], - "hasRightIAccess": true, - "hasRightMAccess": false, - "logos": [ - { - "definitionType": "mobileAppli", - "listLogos": [ - { - "size": "183x183", - "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_trace_africa%2F20230831_150807%2FmobileAppli%2Flogo_183x183.png" - } - ] - }, - { - "definitionType": "mobileAppliDark", - "listLogos": [ - { - "size": "183x183", - "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_trace_africa%2F20230831_150807%2FmobileAppliDark%2Flogo_183x183.png" - } - ] - }, - { - "definitionType": "webTVLogo", - "listLogos": [ - { - "size": "180x96", - "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_trace_africa%2F20230831_150807%2FwebTVLogo%2Flogo_180x96.png" - } - ] - }, - { - "definitionType": "webTVSquare", - "listLogos": [ - { - "size": "150x150", - "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_trace_africa%2F20230831_150807%2FwebTVSquare%2Flogo_150x150.png" - } - ] - } - ], - "mobileData": { - "wifiForbidden": false, - "wifiSecuredOnly": false, - "everywhereChannel": true, - "nomadismAllowed": true, - "drmLevels": [ - { - "definition": "SD", - "securedTerminal": [ - "DRM-HW", - "DRM-SW" - ], - "unsecuredTerminal": [ - "DRM-HW", - "DRM-SW" - ] - }, - { - "definition": "HD", - "securedTerminal": [ - "ND" - ], - "unsecuredTerminal": [ - "ND" - ] - } - ] - }, - "webdeviceData": { - "nomadismAllowed": true - }, - "technicalChannels": { - "live": [ - { - "techChannelId": "400377", - "type": "CLOUDTV", - "liveTargetURLRelativePath": "livetv_traceafrica_ctv", - "usi": 400377, - "isDRMized": true, - "csa5Disabled": true - } - ], - "npvr": [ - { - "externalId": "livetv_traceafrica_ctv", - "techChannelId": "400377", - "type": "CLOUDTV", - "usi": 400377, - "isDRMized": true, - "antiAdskipping": "DEACTIVATED", - "csa5Disabled": true - } - ], - "startover": [] - } - }, - { - "name": "TRACE GOSPEL", - "editoChannelId": "livetv_trace_gospel", - "lcn": 606, - "idEPG": 90606, - "epgAvailable": false, - "epgTextSubstitution": "", - "displayOrder": 606, - "csaCode": 1, - "slogan": "We Love Gospel Music", - "catchupChannelId": "", - "newChannel": true, - "roamingBlocked": false, - "allowedDeviceCategories": [ - "M_ANDROID", - "M_IOS", - "M_TABLET_ANDROID", - "M_TABLET_IOS", - "W_AIRPLAY", - "W_CHROMECAST", - "W_LACLETV2", - "W_SMARTTV", - "W_PC", - "S_STB" - ], - "packages": [ - "PA_bouquet_africain_max", - "PI_WHITELIST" - ], - "hasRightIAccess": true, - "hasRightMAccess": false, - "logos": [ - { - "definitionType": "mobileAppli", - "listLogos": [ - { - "size": "183x183", - "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_trace_gospel%2F20230831_150807%2FmobileAppli%2Flogo_183x183.png" - } - ] - }, - { - "definitionType": "mobileAppliDark", - "listLogos": [ - { - "size": "183x183", - "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_trace_gospel%2F20230831_150807%2FmobileAppliDark%2Flogo_183x183.png" - } - ] - }, - { - "definitionType": "webTVLogo", - "listLogos": [ - { - "size": "180x96", - "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_trace_gospel%2F20230831_150807%2FwebTVLogo%2Flogo_180x96.png" - } - ] - }, - { - "definitionType": "webTVSquare", - "listLogos": [ - { - "size": "150x150", - "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_trace_gospel%2F20230831_150807%2FwebTVSquare%2Flogo_150x150.png" - } - ] - } - ], - "mobileData": { - "wifiForbidden": false, - "wifiSecuredOnly": false, - "everywhereChannel": true, - "nomadismAllowed": true, - "drmLevels": [ - { - "definition": "SD", - "securedTerminal": [ - "DRM-HW", - "DRM-SW" - ], - "unsecuredTerminal": [ - "DRM-HW", - "DRM-SW" - ] - }, - { - "definition": "HD", - "securedTerminal": [ - "ND" - ], - "unsecuredTerminal": [ - "ND" - ] - } - ] - }, - "webdeviceData": { - "nomadismAllowed": true - }, - "technicalChannels": { - "live": [ - { - "techChannelId": "400378", - "type": "CLOUDTV", - "liveTargetURLRelativePath": "livetv_tracegospel_ctv", - "usi": 400378, - "isDRMized": true, - "csa5Disabled": true - } - ], - "npvr": [ - { - "externalId": "livetv_tracegospel_ctv", - "techChannelId": "400378", - "type": "CLOUDTV", - "usi": 400378, - "isDRMized": true, - "antiAdskipping": "DEACTIVATED", - "csa5Disabled": true - } - ], - "startover": [] - } - }, - { - "name": "NOVELAS TV", - "editoChannelId": "livetv_novelas", - "lcn": 607, - "idEPG": 1832, - "epgAvailable": true, - "epgTextSubstitution": "", - "displayOrder": 607, - "csaCode": 1, - "slogan": "Votre cœur bat plus fort", - "catchupChannelId": "catchuptv_novelastv", - "newChannel": true, - "roamingBlocked": true, - "allowedDeviceCategories": [ - "M_ANDROID", - "M_IOS", - "M_TABLET_ANDROID", - "M_TABLET_IOS", - "W_AIRPLAY", - "W_CHROMECAST", - "W_LACLETV2", - "W_PC", - "W_SMARTTV", - "S_STB" - ], - "packages": [ - "PA_bouquet_divertissement_fibre", - "PA_bouquet_famille_by_canal", - "PA_bouquet_famille_by_canal_nov2018", - "PA_bouquet_africain_max", - "PI_WHITELIST" - ], - "hasRightIAccess": true, - "hasRightMAccess": false, - "logos": [ - { - "definitionType": "mobileAppli", - "listLogos": [ - { - "size": "183x183", - "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_novelas%2F20211001_090736%2FmobileAppli%2Flogo_183x183.png" - } - ] - }, - { - "definitionType": "mobileAppliDark", - "listLogos": [ - { - "size": "183x183", - "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_novelas%2F20211001_090736%2FmobileAppliDark%2Flogo_183x183.png" - } - ] - }, - { - "definitionType": "webTVLogo", - "listLogos": [ - { - "size": "180x96", - "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_novelas%2F20211001_090736%2FwebTVLogo%2Flogo_180x96.png" - } - ] - }, - { - "definitionType": "webTVSquare", - "listLogos": [ - { - "size": "150x150", - "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_novelas%2F20211001_090736%2FwebTVSquare%2Flogo_150x150.png" - } - ] - } - ], - "mobileData": { - "wifiForbidden": false, - "wifiSecuredOnly": false, - "everywhereChannel": true, - "nomadismAllowed": true, - "drmLevels": [ - { - "definition": "SD", - "securedTerminal": [ - "DRM-HW", - "DRM-SW" - ], - "unsecuredTerminal": [ - "DRM-HW", - "DRM-SW" - ] - }, - { - "definition": "HD", - "securedTerminal": [ - "ND" - ], - "unsecuredTerminal": [ - "ND" - ] - } - ] - }, - "webdeviceData": { - "nomadismAllowed": true - }, - "technicalChannels": { - "live": [ - { - "techChannelId": "400104", - "type": "CLOUDTV", - "liveTargetURLRelativePath": "livetv_novelas_tv_ctv", - "usi": 400104, - "isDRMized": true, - "csa5Disabled": true - } - ], - "npvr": [ - { - "externalId": "livetv_novelas_tv_ctv", - "techChannelId": "400104", - "type": "CLOUDTV", - "usi": 400104, - "isDRMized": true, - "antiAdskipping": "DEACTIVATED", - "csa5Disabled": true - } - ], - "startover": [] - } - }, - { - "name": "NOLLYWOOD TV", - "editoChannelId": "livetv_nollywood_tv", - "lcn": 608, - "idEPG": 1461, - "epgAvailable": true, - "epgTextSubstitution": "", - "displayOrder": 608, - "csaCode": 1, - "slogan": "La chaîne de fiction africaine", - "catchupChannelId": "", - "newChannel": true, - "roamingBlocked": false, - "allowedDeviceCategories": [ - "M_ANDROID", - "M_IOS", - "M_TABLET_ANDROID", - "M_TABLET_IOS", - "W_AIRPLAY", - "W_CHROMECAST", - "W_LACLETV2", - "W_SMARTTV", - "W_PC", - "S_STB" - ], - "packages": [ - "PA_bouquet_africain_max", - "PI_WHITELIST" - ], - "hasRightIAccess": true, - "hasRightMAccess": false, - "logos": [ - { - "definitionType": "mobileAppli", - "listLogos": [ - { - "size": "183x183", - "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_nollywood_tv%2F20210506_104734%2FmobileAppli%2Flogo_183x183.png" - } - ] - }, - { - "definitionType": "mobileAppliDark", - "listLogos": [ - { - "size": "183x183", - "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_nollywood_tv%2F20210506_104734%2FmobileAppliDark%2Flogo_183x183.png" - } - ] - }, - { - "definitionType": "webTVLogo", - "listLogos": [ - { - "size": "180x96", - "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_nollywood_tv%2F20210506_104734%2FwebTVLogo%2Flogo_180x96.png" - } - ] - }, - { - "definitionType": "webTVSquare", - "listLogos": [ - { - "size": "150x150", - "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_nollywood_tv%2F20210506_104734%2FwebTVSquare%2Flogo_150x150.png" - } - ] - } - ], - "mobileData": { - "wifiForbidden": false, - "wifiSecuredOnly": false, - "everywhereChannel": true, - "nomadismAllowed": true, - "drmLevels": [ - { - "definition": "SD", - "securedTerminal": [ - "DRM-HW", - "DRM-SW" - ], - "unsecuredTerminal": [ - "DRM-HW", - "DRM-SW" - ] - }, - { - "definition": "HD", - "securedTerminal": [ - "ND" - ], - "unsecuredTerminal": [ - "ND" - ] - } - ] - }, - "webdeviceData": { - "nomadismAllowed": true - }, - "technicalChannels": { - "live": [ - { - "techChannelId": "400379", - "type": "CLOUDTV", - "liveTargetURLRelativePath": "livetv_nollywood_ctv", - "usi": 400379, - "isDRMized": true, - "csa5Disabled": true - } - ], - "npvr": [ - { - "externalId": "livetv_nollywood_ctv", - "techChannelId": "400379", - "type": "CLOUDTV", - "usi": 400379, - "isDRMized": true, - "antiAdskipping": "DEACTIVATED", - "csa5Disabled": true - } - ], - "startover": [] - } - }, - { - "name": "SUNU YEUF", - "editoChannelId": "livetv_sunu_yeuf", - "lcn": 609, - "idEPG": 2908, - "epgAvailable": true, - "epgTextSubstitution": "", - "displayOrder": 609, - "csaCode": 1, - "slogan": "Tele Bi Niou Mom", - "catchupChannelId": "", - "newChannel": true, - "roamingBlocked": false, - "allowedDeviceCategories": [ - "M_ANDROID", - "M_IOS", - "M_TABLET_ANDROID", - "M_TABLET_IOS", - "W_AIRPLAY", - "W_CHROMECAST", - "W_LACLETV2", - "W_PC", - "W_SMARTTV", - "S_STB" - ], - "packages": [ - "PA_bouquet_africain_max", - "PI_WHITELIST" - ], - "hasRightIAccess": true, - "hasRightMAccess": false, - "logos": [ - { - "definitionType": "mobileAppli", - "listLogos": [ - { - "size": "183x183", - "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_sunu_yeuf%2F20210930_141331%2FmobileAppli%2Flogo_183x183.png" - } - ] - }, - { - "definitionType": "mobileAppliDark", - "listLogos": [ - { - "size": "183x183", - "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_sunu_yeuf%2F20210930_141331%2FmobileAppliDark%2Flogo_183x183.png" - } - ] - }, - { - "definitionType": "webTVLogo", - "listLogos": [ - { - "size": "180x96", - "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_sunu_yeuf%2F20210930_141331%2FwebTVLogo%2Flogo_180x96.png" - } - ] - }, - { - "definitionType": "webTVSquare", - "listLogos": [ - { - "size": "150x150", - "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_sunu_yeuf%2F20210930_141331%2FwebTVSquare%2Flogo_150x150.png" - } - ] - } - ], - "mobileData": { - "wifiForbidden": false, - "wifiSecuredOnly": false, - "everywhereChannel": true, - "nomadismAllowed": true, - "drmLevels": [ - { - "definition": "SD", - "securedTerminal": [ - "DRM-HW", - "DRM-SW" - ], - "unsecuredTerminal": [ - "DRM-HW", - "DRM-SW" - ] - }, - { - "definition": "HD", - "securedTerminal": [ - "NO-DRM" - ], - "unsecuredTerminal": [ - "NO-DRM" - ] - } - ] - }, - "webdeviceData": { - "nomadismAllowed": true - }, - "technicalChannels": { - "live": [ - { - "techChannelId": "400405", - "type": "CLOUDTV", - "liveTargetURLRelativePath": "livetv_sunu_yeuf_ctv", - "usi": 400405, - "isDRMized": true, - "csa5Disabled": true - } - ], - "npvr": [ - { - "externalId": "livetv_sunu_yeuf_ctv", - "techChannelId": "400405", - "type": "CLOUDTV", - "usi": 400405, - "isDRMized": true, - "antiAdskipping": "DEACTIVATED", - "csa5Disabled": true - } - ], - "startover": [] - } - }, - { - "name": "SEN TV", - "editoChannelId": "livetv_sen_tv", - "lcn": 610, - "idEPG": 90610, - "epgAvailable": false, - "epgTextSubstitution": "", - "displayOrder": 610, - "csaCode": 1, - "slogan": "La TV urbaine du Sénégal", - "catchupChannelId": "", - "newChannel": true, - "roamingBlocked": false, - "allowedDeviceCategories": [ - "M_ANDROID", - "M_IOS", - "M_TABLET_ANDROID", - "M_TABLET_IOS", - "W_AIRPLAY", - "W_CHROMECAST", - "W_LACLETV2", - "W_SMARTTV", - "W_PC", - "S_STB" - ], - "packages": [ - "PA_bouquet_africain_max", - "PI_WHITELIST" - ], - "hasRightIAccess": true, - "hasRightMAccess": false, - "logos": [ - { - "definitionType": "mobileAppli", - "listLogos": [ - { - "size": "183x183", - "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_sen_tv%2F20210506_104734%2FmobileAppli%2Flogo_183x183.png" - } - ] - }, - { - "definitionType": "mobileAppliDark", - "listLogos": [ - { - "size": "183x183", - "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_sen_tv%2F20210506_104734%2FmobileAppliDark%2Flogo_183x183.png" - } - ] - }, - { - "definitionType": "webTVLogo", - "listLogos": [ - { - "size": "180x96", - "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_sen_tv%2F20210506_104734%2FwebTVLogo%2Flogo_180x96.png" - } - ] - }, - { - "definitionType": "webTVSquare", - "listLogos": [ - { - "size": "150x150", - "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_sen_tv%2F20210506_104734%2FwebTVSquare%2Flogo_150x150.png" - } - ] - } - ], - "mobileData": { - "wifiForbidden": false, - "wifiSecuredOnly": false, - "everywhereChannel": true, - "nomadismAllowed": true, - "drmLevels": [ - { - "definition": "SD", - "securedTerminal": [ - "DRM-HW", - "DRM-SW" - ], - "unsecuredTerminal": [ - "DRM-HW", - "DRM-SW" - ] - }, - { - "definition": "HD", - "securedTerminal": [ - "ND" - ], - "unsecuredTerminal": [ - "ND" - ] - } - ] - }, - "webdeviceData": { - "nomadismAllowed": true - }, - "technicalChannels": { - "live": [ - { - "techChannelId": "400380", - "type": "CLOUDTV", - "liveTargetURLRelativePath": "livetv_sentv_ctv", - "usi": 400380, - "isDRMized": true, - "csa5Disabled": true - } - ], - "npvr": [ - { - "externalId": "livetv_sentv_ctv", - "techChannelId": "400380", - "type": "CLOUDTV", - "usi": 400380, - "isDRMized": true, - "antiAdskipping": "DEACTIVATED", - "csa5Disabled": true - } - ], - "startover": [] - } - }, - { - "name": "TRACE TERANGA", - "editoChannelId": "livetv_trace_afrikora", - "lcn": 614, - "idEPG": 90614, - "epgAvailable": false, - "epgTextSubstitution": "", - "displayOrder": 614, - "csaCode": 1, - "slogan": "We are Teranga Music", - "catchupChannelId": "", - "newChannel": true, - "roamingBlocked": false, - "allowedDeviceCategories": [ - "M_ANDROID", - "M_IOS", - "M_TABLET_ANDROID", - "M_TABLET_IOS", - "W_AIRPLAY", - "W_CHROMECAST", - "W_LACLETV2", - "W_PC", - "W_SMARTTV", - "S_STB" - ], - "packages": [ - "PA_bouquet_africain_max", - "PI_WHITELIST" - ], - "hasRightIAccess": true, - "hasRightMAccess": false, - "logos": [ - { - "definitionType": "mobileAppli", - "listLogos": [ - { - "size": "183x183", - "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_trace_afrikora%2F20221110_095624%2FmobileAppli%2Flogo_183x183.png" - } - ] - }, - { - "definitionType": "mobileAppliDark", - "listLogos": [ - { - "size": "183x183", - "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_trace_afrikora%2F20221110_095624%2FmobileAppliDark%2Flogo_183x183.png" - } - ] - }, - { - "definitionType": "webTVLogo", - "listLogos": [ - { - "size": "180x96", - "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_trace_afrikora%2F20221110_095624%2FwebTVLogo%2Flogo_180x96.png" - } - ] - }, - { - "definitionType": "webTVSquare", - "listLogos": [ - { - "size": "150x150", - "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_trace_afrikora%2F20221110_095624%2FwebTVSquare%2Flogo_150x150.png" - } - ] - } - ], - "mobileData": { - "wifiForbidden": false, - "wifiSecuredOnly": false, - "everywhereChannel": true, - "nomadismAllowed": true, - "drmLevels": [ - { - "definition": "SD", - "securedTerminal": [ - "DRM-HW", - "DRM-SW" - ], - "unsecuredTerminal": [ - "DRM-HW", - "DRM-SW" - ] - }, - { - "definition": "HD", - "securedTerminal": [ - "ND" - ], - "unsecuredTerminal": [ - "ND" - ] - } - ] - }, - "webdeviceData": { - "nomadismAllowed": true - }, - "technicalChannels": { - "live": [ - { - "techChannelId": "400382", - "type": "CLOUDTV", - "liveTargetURLRelativePath": "livetv_traceafrikora_ctv", - "usi": 400382, - "isDRMized": true, - "csa5Disabled": true - } - ], - "npvr": [ - { - "externalId": "livetv_traceafrikora_ctv", - "techChannelId": "400382", - "type": "CLOUDTV", - "usi": 400382, - "isDRMized": true, - "antiAdskipping": "DEACTIVATED", - "csa5Disabled": true - } - ], - "startover": [] - } - }, - { - "name": "TF1 4K", - "editoChannelId": "livetv_TF1_4K", - "lcn": 990, - "idEPG": 2527, - "epgAvailable": true, - "epgTextSubstitution": "", - "displayOrder": 990, - "csaCode": 1, - "slogan": "Vivez le meilleur de TF1 en 4K", - "catchupChannelId": "", - "newChannel": true, - "roamingBlocked": false, - "allowedDeviceCategories": [ - "M_ANDROID", - "M_IOS", - "M_TABLET_ANDROID", - "M_TABLET_IOS", - "W_AIRPLAY", - "W_CHROMECAST", - "W_LACLETV2", - "W_PC", - "W_SMARTTV", - "S_STB" - ], - "packages": [ - "PA_BQ_PASSACCESTVPREMIUM_M", - "PA_BQ_BASIC_M", - "PA_BQ_RE_TVMAX_M", - "PA_BQ_ACCESTVPREMIUM_M", - "PA_BQ_PAYG_M", - "PA_BQ_TVDIGITALE_I", - "PA_BQ_SPORT_M", - "PA_BQ_BASIC_I", - "PA_BQ_BASICQUAD_I", - "PA_BQ_ACCESTV_M", - "PI_WHITELIST" - ], - "hasRightIAccess": true, - "hasRightMAccess": true, - "logos": [ - { - "definitionType": "mobileAppli", - "listLogos": [ - { - "size": "183x183", - "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_TF1_4K%2F20211210_114522%2FmobileAppli%2Flogo_183x183.png" - } - ] - }, - { - "definitionType": "mobileAppliDark", - "listLogos": [ - { - "size": "183x183", - "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_TF1_4K%2F20211210_114522%2FmobileAppliDark%2Flogo_183x183.png" - } - ] - }, - { - "definitionType": "webTVLogo", - "listLogos": [ - { - "size": "180x96", - "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_TF1_4K%2F20211210_114522%2FwebTVLogo%2Flogo_180x96.png" - } - ] - }, - { - "definitionType": "webTVSquare", - "listLogos": [ - { - "size": "150x150", - "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_TF1_4K%2F20211210_114522%2FwebTVSquare%2Flogo_150x150.png" - } - ] - } - ], - "mobileData": { - "wifiForbidden": false, - "wifiSecuredOnly": false, - "everywhereChannel": true, - "nomadismAllowed": true, - "drmLevels": [ - { - "definition": "SD", - "securedTerminal": [ - "DRM-HW", - "DRM-SW" - ], - "unsecuredTerminal": [ - "DRM-HW", - "DRM-SW" - ] - }, - { - "definition": "HD", - "securedTerminal": [ - "DRM-HW", - "DRM-SW" - ], - "unsecuredTerminal": [ - "ND" - ] - } - ] - }, - "webdeviceData": { - "nomadismAllowed": false - }, - "technicalChannels": { - "live": [ - { - "techChannelId": "400417", - "type": "CLOUDTV", - "liveTargetURLRelativePath": "livetv_acces_limite_ctv", - "usi": 400417, - "isDRMized": true, - "csa5Disabled": true - } - ], - "npvr": [], - "startover": [] - } - }, - { - "name": "M6 4K", - "editoChannelId": "livetv_m6_4k", - "lcn": 992, - "idEPG": 3301, - "epgAvailable": true, - "epgTextSubstitution": "", - "displayOrder": 992, - "csaCode": 1, - "slogan": "Le foot de M6 en 4K", - "catchupChannelId": "", - "newChannel": true, - "roamingBlocked": false, - "allowedDeviceCategories": [ - "M_ANDROID", - "M_IOS", - "M_TABLET_ANDROID", - "M_TABLET_IOS", - "W_AIRPLAY", - "W_CHROMECAST", - "W_LACLETV2", - "W_SMARTTV", - "W_PC", - "S_STB" - ], - "packages": [ - "PA_BQ_PASSACCESTVPREMIUM_M", - "PA_BQ_BASIC_M", - "PA_BQ_RE_TVMAX_M", - "PA_BQ_ACCESTVPREMIUM_M", - "PA_BQ_PAYG_M", - "PA_BQ_TVDIGITALE_I", - "PA_BQ_SPORT_M", - "PA_BQ_BASIC_I", - "PA_BQ_BASICQUAD_I", - "PA_BQ_ACCESTV_M", - "PI_WHITELIST" - ], - "hasRightIAccess": true, - "hasRightMAccess": true, - "logos": [ - { - "definitionType": "mobileAppli", - "listLogos": [ - { - "size": "183x183", - "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_m6_4k%2F20211210_114522%2FmobileAppli%2Flogo_183x183.png" - } - ] - }, - { - "definitionType": "mobileAppliDark", - "listLogos": [ - { - "size": "183x183", - "path": "%2Flogos%2Fv2%2Flogos%2Flivetv_m6_4k%2F20211210_114522%2FmobileAppliDark%2Flogo_183x183.png" - } - ] - }, - { - "definitionType": "webTVLogo", - "listLogos": [ - { - "size": "180x96", - "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_m6_4k%2F20211210_114522%2FwebTVLogo%2Flogo_180x96.png" - } - ] - }, - { - "definitionType": "webTVSquare", - "listLogos": [ - { - "size": "150x150", - "path": "https://proxymedia.woopic.com/api/v1/images/2090%2Flogos%2Fv2%2Flogos%2Flivetv_m6_4k%2F20211210_114522%2FwebTVSquare%2Flogo_150x150.png" - } - ] - } - ], - "mobileData": { - "wifiForbidden": false, - "wifiSecuredOnly": false, - "everywhereChannel": true, - "nomadismAllowed": true, - "drmLevels": [ - { - "definition": "SD", - "securedTerminal": [ - "DRM-HW", - "DRM-SW" - ], - "unsecuredTerminal": [ - "DRM-HW", - "DRM-SW" - ] - }, - { - "definition": "HD", - "securedTerminal": [ - "DRM-HW", - "DRM-SW" - ], - "unsecuredTerminal": [ - "ND" - ] - } - ] - }, - "webdeviceData": { - "nomadismAllowed": false - }, - "technicalChannels": { - "live": [ - { - "techChannelId": "400417", - "type": "CLOUDTV", - "liveTargetURLRelativePath": "livetv_acces_limite_ctv", - "usi": 400417, - "isDRMized": true, - "csa5Disabled": true - } - ], - "npvr": [], - "startover": [] - } - } -] \ No newline at end of file diff --git a/resources/addon.py b/resources/addon.py index 83c68fe..0986334 100644 --- a/resources/addon.py +++ b/resources/addon.py @@ -38,6 +38,7 @@ def channel(channel_id: str): listitem.setProperty('inputstream.adaptive.manifest_update_parameter', 'full') listitem.setProperty('inputstream.adaptive.license_type', stream['license_type']) listitem.setProperty('inputstream.adaptive.license_key', stream['license_key']) + listitem.setProperty('inputstream.adaptive.play_timeshift_buffer', 'true') xbmcplugin.setResolvedUrl(plugin.handle, True, listitem=listitem) @plugin.route('/iptv/channels') diff --git a/resources/lib/provider_templates/orange.py b/resources/lib/provider_templates/orange.py index d29fe16..f534ec2 100644 --- a/resources/lib/provider_templates/orange.py +++ b/resources/lib/provider_templates/orange.py @@ -11,7 +11,7 @@ import xbmcvfs from lib.providers.provider_interface import ProviderInterface -from lib.utils import get_drm, get_global_setting, log, LogLevel, random_ua, get_addon_profile, get_addon_path +from lib.utils import get_drm, get_global_setting, log, LogLevel, random_ua, get_addon_profile @dataclass class OrangeTemplate(ProviderInterface): @@ -30,63 +30,6 @@ def __init__( self.endpoint_programs = endpoint_programs self.groups = groups - def _get_auth(self) -> tuple: - timestamp = datetime.timestamp(datetime.today()) - filepath = os.path.join(xbmcvfs.translatePath(get_addon_profile()), 'auth') - - req = Request("https://chaines-tv.orange.fr", headers={ - 'User-Agent': random_ua(), - 'Host': 'chaines-tv.orange.fr', - }) - - with urlopen(req) as res: - nuxt = re.sub('.*.*', '', nuxt, 1) - cookie = res.headers['Set-Cookie'].split(";")[0] - tv_token = re.sub('.*token:"', 'Bearer ', nuxt, 1) - tv_token = re.sub('",claims:.*', '', tv_token, 1) - auth = {'timestamp': timestamp, 'cookie': cookie, 'tv_token': tv_token} - with open(filepath, 'w', encoding='UTF-8') as file: - file.write(json.dumps(auth)) - - return nuxt, cookie, tv_token - - def _auth_urlopen(self, url: str, headers: dict = None) -> tuple: - if headers is None: - headers = {} - timestamp = datetime.timestamp(datetime.today()) - filepath = os.path.join(xbmcvfs.translatePath(get_addon_profile()), 'auth') - - try: - with open(filepath, encoding='UTF-8') as file: - auth = json.loads(file.read()) - except FileNotFoundError: - auth = {'timestamp': timestamp} - - for _ in range(2): - if 'cookie' in auth: - headers['cookie'] = auth['cookie'] - headers['tv_token'] = auth['tv_token'] - req = Request(url, headers=headers) - - try: - with urlopen(req) as res: - if res.code == 200: - return res.read(), auth['cookie'], auth['tv_token'] - except HTTPError as error: - if error.code == 403: - log("cette chaine ne fait pas partie de votre offre.", LogLevel.INFO) - break - if error.code == 401: - log(f"cookie/token invalide, âge = {int(timestamp - auth['timestamp'])}", LogLevel.INFO) - else: - log(f"erreur {error}", LogLevel.INFO) - raise - - _, auth['cookie'], auth['tv_token'] = self._get_auth() - - return None, None, None - def get_stream_info(self, channel_id: int) -> dict: res, cookie, tv_token = self._auth_urlopen(self.endpoint_stream_info.format(channel_id=channel_id), headers={ 'User-Agent': random_ua(), @@ -122,26 +65,27 @@ def get_stream_info(self, channel_id: int) -> dict: return stream_info def get_streams(self) -> list: - filepath = os.path.join(xbmcvfs.translatePath(get_addon_path()), 'channels.json') - with open(filepath, encoding='UTF-8') as file: - channels = json.load(file) + nuxt, _, _ = self._get_auth() + params = re.search(r'}\((.*?)\)\);', nuxt).expand(r'\1') + params = re.sub(r'Array\(.*?\)', '[]', params) + params = json.loads(f'[{params}]') + channels = re.search(r'{channels:(\[.*?\]),channelsPC', nuxt).expand(r'\1') + for rep in [ ('{', '{"'), ('}', '"}'), (':', '":"'), (',', '","'), ('}","{', '},{') ]: + channels = channels.replace(*rep) + channels = json.loads(channels) streams = [] for channel in channels: - channel_id = str(channel['idEPG']) - logourl = None - for logo in channel['logos']: - if logo['definitionType'] == 'webTVSquare': - logourl = logo['listLogos'][0]['path'] - break + channel_id = params[self._index(channel['idEPG'])] + logoindex = re.search(re.escape(channel['logos']) + r'\[3\]=.*?path:(.*?)}', nuxt).expand(r'\1') streams.append({ - 'id': channel_id, - 'name': channel['name'], - 'preset': str(channel['displayOrder']), - 'logo': logourl, + 'id': str(channel_id), + 'name': params[self._index(channel['name'])], + 'preset': str(params[self._index(channel['lcn'])]), + 'logo': params[self._index(logoindex)], 'stream': f'plugin://plugin.video.orange.fr/channel/{channel_id}', - 'group': [group_name for group_name in self.groups if int(channel_id) in self.groups[group_name]] + 'group': [group_name for group_name in self.groups if channel_id in self.groups[group_name]] }) return streams @@ -202,6 +146,77 @@ def get_epg(self) -> dict: return epg + def _index(self, name): + table = {} + for i in range(26): + table[chr(97+i)] = i + 1 + table[chr(65+i)] = i + 27 + table['_'] = 53 + table['$'] = 54 + index = 0 + for car in name: + if car == "0": + break + index *= 54 + index += table[car] + return index - 1 + + def _get_auth(self) -> tuple: + timestamp = datetime.timestamp(datetime.today()) + filepath = os.path.join(xbmcvfs.translatePath(get_addon_profile()), 'auth') + + req = Request("https://chaines-tv.orange.fr", headers={ + 'User-Agent': random_ua(), + 'Host': 'chaines-tv.orange.fr', + }) + + with urlopen(req) as res: + html = res.read().decode() + nuxt = re.search('', html).expand(r'\1') + cookie = res.headers['Set-Cookie'].split(";")[0] + tv_token = 'Bearer ' + re.search('token:"(.*?)"', nuxt).expand(r'\1') + auth = {'timestamp': timestamp, 'cookie': cookie, 'tv_token': tv_token} + with open(filepath, 'w', encoding='UTF-8') as file: + file.write(json.dumps(auth)) + + return nuxt, cookie, tv_token + + def _auth_urlopen(self, url: str, headers: dict = None) -> tuple: + if headers is None: + headers = {} + timestamp = datetime.timestamp(datetime.today()) + filepath = os.path.join(xbmcvfs.translatePath(get_addon_profile()), 'auth') + + try: + with open(filepath, encoding='UTF-8') as file: + auth = json.loads(file.read()) + except FileNotFoundError: + auth = {'timestamp': timestamp} + + for _ in range(2): + if 'cookie' in auth: + headers['cookie'] = auth['cookie'] + headers['tv_token'] = auth['tv_token'] + req = Request(url, headers=headers) + + try: + with urlopen(req) as res: + if res.code == 200: + return res.read(), auth['cookie'], auth['tv_token'] + except HTTPError as error: + if error.code == 403: + log("Cette chaîne ne fait pas partie de votre offre.", LogLevel.INFO) + break + if error.code == 401: + log(f"Cookie/token invalide, âge = {int(timestamp - auth['timestamp'])}", LogLevel.INFO) + else: + log(f"Erreur {error}", LogLevel.INFO) + raise + + _, auth['cookie'], auth['tv_token'] = self._get_auth() + + return None, None, None + def _get_programs(self, period_start: int = None, period_end: int = None) -> list: """Returns the programs for today (default) or the specified period""" try: From b07e106c29c6adc163b7bb10466da84de5bc03cc Mon Sep 17 00:00:00 2001 From: remzouille Date: Thu, 9 Nov 2023 10:24:10 +0100 Subject: [PATCH 9/9] Suppression de la fonction get_addon_path devenue inutile --- resources/lib/utils.py | 4 ---- 1 file changed, 4 deletions(-) diff --git a/resources/lib/utils.py b/resources/lib/utils.py index 650ea82..bfa0da9 100644 --- a/resources/lib/utils.py +++ b/resources/lib/utils.py @@ -51,10 +51,6 @@ def get_addon_name(): """Return the addon info name property""" return _ADDON.getAddonInfo('name') -def get_addon_path(): - """Return the addon info path property""" - return _ADDON.getAddonInfo('path') - def get_addon_profile(): """Return the addon info profile property""" return _ADDON.getAddonInfo('profile')