2 from __future__ import unicode_literals
7 from .common import InfoExtractor
8 from .ooyala import OoyalaIE
22 class MiTeleBaseIE(InfoExtractor):
23 def _get_player_info(self, url, webpage):
24 player_data = extract_attributes(self._search_regex(
25 r'(?s)(<ms-video-player.+?</ms-video-player>)',
26 webpage, 'ms video player'))
27 video_id = player_data['data-media-id']
28 if player_data.get('data-cms-id') == 'ooyala':
29 return self.url_result(
30 'ooyala:%s' % video_id, ie=OoyalaIE.ie_key(), video_id=video_id)
31 config_url = compat_urlparse.urljoin(url, player_data['data-config'])
32 config = self._download_json(
33 config_url, video_id, 'Downloading config JSON')
34 mmc_url = config['services']['mmc']
38 for m_url in (mmc_url, mmc_url.replace('/flash.json', '/html5.json')):
39 mmc = self._download_json(
40 m_url, video_id, 'Downloading mmc JSON')
42 duration = int_or_none(mmc.get('duration'))
43 for location in mmc['locations']:
44 gat = self._proto_relative_url(location.get('gat'), 'http:')
45 gcp = location.get('gcp')
46 ogn = location.get('ogn')
47 if None in (gat, gcp, ogn):
54 media = self._download_json(
55 gat, video_id, data=json.dumps(token_data).encode('utf-8'),
57 'Content-Type': 'application/json;charset=utf-8',
60 stream = media.get('stream') or media.get('file')
63 ext = determine_ext(stream)
65 formats.extend(self._extract_f4m_formats(
66 stream + '&hdcore=3.2.0&plugin=aasp-3.2.0.77.18',
67 video_id, f4m_id='hds', fatal=False))
69 formats.extend(self._extract_m3u8_formats(
70 stream, video_id, 'mp4', 'm3u8_native',
71 m3u8_id='hls', fatal=False))
72 self._sort_formats(formats)
77 'thumbnail': player_data.get('data-poster') or config.get('poster', {}).get('imageUrl'),
82 class MiTeleIE(InfoExtractor):
84 _VALID_URL = r'https?://(?:www\.)?mitele\.es/(?:[^/]+/)+(?P<id>[^/]+)/player'
87 'url': 'http://www.mitele.es/programas-tv/diario-de/57b0dfb9c715da65618b4afa/player',
89 'id': '57b0dfb9c715da65618b4afa',
91 'title': 'Tor, la web invisible',
92 'description': 'md5:3b6fce7eaa41b2d97358726378d9369f',
93 'series': 'Diario de',
94 'season': 'La redacción',
96 'season_id': 'diario_de_t14_11981',
97 'episode': 'Programa 144',
99 'thumbnail': r're:(?i)^https?://.*\.jpg$',
102 'add_ie': ['Ooyala'],
105 'url': 'http://www.mitele.es/programas-tv/cuarto-milenio/57b0de3dc915da14058b4876/player',
107 'id': '57b0de3dc915da14058b4876',
109 'title': 'Cuarto Milenio Temporada 6 Programa 226',
110 'description': 'md5:5ff132013f0cd968ffbf1f5f3538a65f',
111 'series': 'Cuarto Milenio',
112 'season': 'Temporada 6',
114 'season_id': 'cuarto_milenio_t06_12715',
115 'episode': 'Programa 226',
116 'episode_number': 24,
117 'thumbnail': r're:(?i)^https?://.*\.jpg$',
121 'skip_download': True,
123 'add_ie': ['Ooyala'],
125 'url': 'http://www.mitele.es/series-online/la-que-se-avecina/57aac5c1c915da951a8b45ed/player',
126 'only_matching': True,
129 def _real_extract(self, url):
130 video_id = self._match_id(url)
131 webpage = self._download_webpage(url, video_id)
133 gigya_url = self._search_regex(
134 r'<gigya-api>[^>]*</gigya-api>[^>]*<script\s+src="([^"]*)">[^>]*</script>',
135 webpage, 'gigya', default=None)
136 gigya_sc = self._download_webpage(
137 compat_urlparse.urljoin('http://www.mitele.es/', gigya_url),
138 video_id, 'Downloading gigya script')
140 # Get a appKey/uuid for getting the session key
141 appKey = self._search_regex(
142 r'constant\s*\(\s*["\']_appGridApplicationKey["\']\s*,\s*["\']([0-9a-f]+)',
145 session_json = self._download_json(
146 'https://appgrid-api.cloud.accedo.tv/session',
147 video_id, 'Downloading session keys', query={
149 'uuid': compat_str(uuid.uuid4()),
152 paths = self._download_json(
153 'https://appgrid-api.cloud.accedo.tv/metadata/general_configuration,%20web_configuration',
154 video_id, 'Downloading paths JSON',
155 query={'sessionKey': compat_str(session_json['sessionKey'])})
157 ooyala_s = paths['general_configuration']['api_configuration']['ooyala_search']
158 source = self._download_json(
159 'http://%s%s%s/docs/%s' % (
160 ooyala_s['base_url'], ooyala_s['full_path'],
161 ooyala_s['provider_id'], video_id),
162 video_id, 'Downloading data JSON', query={
163 'include_titles': 'Series,Season',
164 'product_name': 'test',
166 })['hits']['hits'][0]['_source']
168 embedCode = source['offers'][0]['embed_codes'][0]
169 titles = source['localizable_titles'][0]
171 title = titles.get('title_medium') or titles['title_long']
173 description = titles.get('summary_long') or titles.get('summary_medium')
176 value1 = source.get(key1)
177 if not value1 or not isinstance(value1, list):
179 if not isinstance(value1[0], dict):
181 return value1[0].get(key2)
183 series = get('localizable_titles_series', 'title_medium')
185 season = get('localizable_titles_season', 'title_medium')
186 season_number = int_or_none(source.get('season_number'))
187 season_id = source.get('season_id')
189 episode = titles.get('title_sort_name')
190 episode_number = int_or_none(source.get('episode_number'))
192 duration = parse_duration(get('videos', 'duration'))
195 '_type': 'url_transparent',
196 # for some reason only HLS is supported
197 'url': smuggle_url('ooyala:' + embedCode, {'supportedformats': 'm3u8,dash'}),
200 'description': description,
203 'season_number': season_number,
204 'season_id': season_id,
206 'episode_number': episode_number,
207 'duration': duration,
208 'thumbnail': get('images', 'url'),