1 from __future__ import unicode_literals
8 from .common import InfoExtractor
9 from ..compat import compat_str
20 class AtresPlayerIE(InfoExtractor):
21 _VALID_URL = r'https?://(?:www\.)?atresplayer\.com/television/[^/]+/[^/]+/[^/]+/(?P<id>.+?)_\d+\.html'
22 _NETRC_MACHINE = 'atresplayer'
25 'url': 'http://www.atresplayer.com/television/programas/el-club-de-la-comedia/temporada-4/capitulo-10-especial-solidario-nochebuena_2014122100174.html',
26 'md5': 'efd56753cda1bb64df52a3074f62e38a',
28 'id': 'capitulo-10-especial-solidario-nochebuena',
30 'title': 'Especial Solidario de Nochebuena',
31 'description': 'md5:e2d52ff12214fa937107d21064075bf1',
33 'thumbnail': 're:^https?://.*\.jpg$',
35 'skip': 'This video is only available for registered users'
38 'url': 'http://www.atresplayer.com/television/especial/videoencuentros/temporada-1/capitulo-112-david-bustamante_2014121600375.html',
39 'md5': '0d0e918533bbd4b263f2de4d197d4aac',
41 'id': 'capitulo-112-david-bustamante',
43 'title': 'David Bustamante',
44 'description': 'md5:f33f1c0a05be57f6708d4dd83a3b81c6',
46 'thumbnail': 're:^https?://.*\.jpg$',
50 'url': 'http://www.atresplayer.com/television/series/el-secreto-de-puente-viejo/el-chico-de-los-tres-lunares/capitulo-977-29-12-14_2014122400174.html',
51 'only_matching': True,
55 _USER_AGENT = 'Dalvik/1.6.0 (Linux; U; Android 4.3; GT-I9300 Build/JSS15J'
56 _MAGIC = 'QWtMLXs414Yo+c#_+Q#K@NN)'
57 _TIMESTAMP_SHIFT = 30000
59 _TIME_API_URL = 'http://servicios.atresplayer.com/api/admin/time.json'
60 _URL_VIDEO_TEMPLATE = 'https://servicios.atresplayer.com/api/urlVideo/{1}/{0}/{1}|{2}|{3}.json'
61 _PLAYER_URL_TEMPLATE = 'https://servicios.atresplayer.com/episode/getplayer.json?episodePk=%s'
62 _EPISODE_URL_TEMPLATE = 'http://www.atresplayer.com/episodexml/%s'
64 _LOGIN_URL = 'https://servicios.atresplayer.com/j_spring_security_check'
67 'UNPUBLISHED': 'We\'re sorry, but this video is not yet available.',
68 'DELETED': 'This video has expired and is no longer available for online streaming.',
69 'GEOUNPUBLISHED': 'We\'re sorry, but this video is not available in your region due to right restrictions.',
70 # 'PREMIUM': 'PREMIUM',
73 def _real_initialize(self):
77 (username, password) = self._get_login_info()
82 'j_username': username,
83 'j_password': password,
86 request = sanitized_Request(
87 self._LOGIN_URL, urlencode_postdata(login_form))
88 request.add_header('Content-Type', 'application/x-www-form-urlencoded')
89 response = self._download_webpage(
90 request, None, 'Logging in as %s' % username)
92 error = self._html_search_regex(
93 r'(?s)<ul class="list_error">(.+?)</ul>', response, 'error', default=None)
96 'Unable to login: %s' % error, expected=True)
98 def _real_extract(self, url):
99 video_id = self._match_id(url)
101 webpage = self._download_webpage(url, video_id)
103 episode_id = self._search_regex(
104 r'episode="([^"]+)"', webpage, 'episode id')
106 request = sanitized_Request(
107 self._PLAYER_URL_TEMPLATE % episode_id,
108 headers={'User-Agent': self._USER_AGENT})
109 player = self._download_json(request, episode_id, 'Downloading player JSON')
111 episode_type = player.get('typeOfEpisode')
112 error_message = self._ERRORS.get(episode_type)
114 raise ExtractorError(
115 '%s returned error: %s' % (self.IE_NAME, error_message), expected=True)
118 video_url = player.get('urlVideo')
124 mobj = re.search(r'(?P<bitrate>\d+)K_(?P<width>\d+)x(?P<height>\d+)', video_url)
127 'width': int_or_none(mobj.group('width')),
128 'height': int_or_none(mobj.group('height')),
129 'tbr': int_or_none(mobj.group('bitrate')),
131 formats.append(format_info)
133 timestamp = int_or_none(self._download_webpage(
135 video_id, 'Downloading timestamp', fatal=False), 1000, time.time())
136 timestamp_shifted = compat_str(timestamp + self._TIMESTAMP_SHIFT)
138 self._MAGIC.encode('ascii'),
139 (episode_id + timestamp_shifted).encode('utf-8'), hashlib.md5
142 request = sanitized_Request(
143 self._URL_VIDEO_TEMPLATE.format('windows', episode_id, timestamp_shifted, token),
144 headers={'User-Agent': self._USER_AGENT})
146 fmt_json = self._download_json(
147 request, video_id, 'Downloading windows video JSON')
149 result = fmt_json.get('resultDes')
150 if result.lower() != 'ok':
151 raise ExtractorError(
152 '%s returned error: %s' % (self.IE_NAME, result), expected=True)
154 for format_id, video_url in fmt_json['resultObject'].items():
155 if format_id == 'token' or not video_url.startswith('http'):
157 if 'geodeswowsmpra3player' in video_url:
158 f4m_path = video_url.split('smil:', 1)[-1].split('free_', 1)[0]
159 f4m_url = 'http://drg.antena3.com/{0}hds/es/sd.f4m'.format(f4m_path)
160 # this videos are protected by DRM, the f4m downloader doesn't support them
163 f4m_url = video_url[:-9] + '/manifest.f4m'
164 formats.extend(self._extract_f4m_formats(f4m_url, video_id, f4m_id='hds', fatal=False))
165 self._sort_formats(formats)
167 path_data = player.get('pathData')
169 episode = self._download_xml(
170 self._EPISODE_URL_TEMPLATE % path_data, video_id,
171 'Downloading episode XML')
173 duration = float_or_none(xpath_text(
174 episode, './media/asset/info/technical/contentDuration', 'duration'))
176 art = episode.find('./media/asset/info/art')
177 title = xpath_text(art, './name', 'title')
178 description = xpath_text(art, './description', 'description')
179 thumbnail = xpath_text(episode, './media/asset/files/background', 'thumbnail')
182 subtitle_url = xpath_text(episode, './media/asset/files/subtitle', 'subtitle')
192 'description': description,
193 'thumbnail': thumbnail,
194 'duration': duration,
196 'subtitles': subtitles,