2013-11-06 20:05:28 +01:00
|
|
|
# encoding: utf-8
|
2014-09-28 08:49:03 +02:00
|
|
|
from __future__ import unicode_literals
|
|
|
|
|
2013-11-06 20:05:28 +01:00
|
|
|
from .common import InfoExtractor
|
2015-10-31 04:02:49 +01:00
|
|
|
from ..compat import compat_urllib_request
|
|
|
|
from ..utils import (
|
|
|
|
int_or_none,
|
|
|
|
unified_strdate,
|
|
|
|
)
|
2013-11-06 20:05:28 +01:00
|
|
|
|
|
|
|
|
|
|
|
class EitbIE(InfoExtractor):
|
2014-09-28 08:49:03 +02:00
|
|
|
IE_NAME = 'eitb.tv'
|
2015-10-31 04:02:49 +01:00
|
|
|
_VALID_URL = r'https?://www\.eitb\.tv/(eu/bideoa|es/video)/[^/]+/\d+/(?P<id>\d+)'
|
2013-11-06 20:05:28 +01:00
|
|
|
|
|
|
|
_TEST = {
|
2015-10-31 04:02:49 +01:00
|
|
|
'url': 'http://www.eitb.tv/es/video/60-minutos-60-minutos-2013-2014/4104995148001/4090227752001/lasa-y-zabala-30-anos/',
|
2014-09-28 08:49:03 +02:00
|
|
|
'md5': 'edf4436247185adee3ea18ce64c47998',
|
|
|
|
'info_dict': {
|
2015-10-31 04:02:49 +01:00
|
|
|
'id': '4090227752001',
|
2014-09-28 08:49:03 +02:00
|
|
|
'ext': 'mp4',
|
|
|
|
'title': '60 minutos (Lasa y Zabala, 30 años)',
|
2015-10-31 04:02:49 +01:00
|
|
|
'description': '',
|
|
|
|
'duration': 3996760,
|
|
|
|
'upload_date': '20131014',
|
2013-11-06 20:05:28 +01:00
|
|
|
},
|
|
|
|
}
|
|
|
|
|
|
|
|
def _real_extract(self, url):
|
2015-10-31 04:02:49 +01:00
|
|
|
video_id = self._match_id(url)
|
|
|
|
video_data = self._download_json('http://mam.eitb.eus/mam/REST/ServiceMultiweb/Video/MULTIWEBTV/%s/' % video_id, video_id)['web_media'][0]
|
|
|
|
|
|
|
|
formats = []
|
|
|
|
for rendition in video_data['RENDITIONS']:
|
|
|
|
formats.append({
|
|
|
|
'url': rendition['PMD_URL'],
|
|
|
|
'width': int_or_none(rendition.get('FRAME_WIDTH')),
|
|
|
|
'height': int_or_none(rendition.get('FRAME_HEIGHT')),
|
|
|
|
'tbr': int_or_none(rendition.get('ENCODING_RATE')),
|
|
|
|
})
|
|
|
|
|
|
|
|
# TODO: parse f4m manifest
|
|
|
|
request = compat_urllib_request.Request(
|
|
|
|
'http://mam.eitb.eus/mam/REST/ServiceMultiweb/DomainRestrictedSecurity/TokenAuth/',
|
|
|
|
headers={'Referer': url})
|
|
|
|
token_data = self._download_json(request, video_id, fatal=False)
|
|
|
|
if token_data:
|
|
|
|
m3u8_formats = self._extract_m3u8_formats('%s?hdnts=%s' % (video_data['HLS_SURL'], token_data['token']), video_id, m3u8_id='hls', fatal=False)
|
|
|
|
if m3u8_formats:
|
|
|
|
formats.extend(m3u8_formats)
|
|
|
|
|
|
|
|
self._sort_formats(formats)
|
|
|
|
|
|
|
|
return {
|
|
|
|
'id': video_id,
|
|
|
|
'title': video_data['NAME_ES'],
|
|
|
|
'description': video_data.get('SHORT_DESC_ES'),
|
|
|
|
'thumbnail': video_data.get('STILL_URL'),
|
|
|
|
'duration': int_or_none(video_data.get('LENGTH')),
|
|
|
|
'upload_date': unified_strdate(video_data.get('BROADCST_DATE')),
|
|
|
|
'formats': formats,
|
|
|
|
}
|