2014-08-18 15:39:35 +02:00
|
|
|
from __future__ import unicode_literals
|
|
|
|
|
|
|
|
import re
|
|
|
|
|
|
|
|
from .common import InfoExtractor
|
2014-08-25 12:59:53 +02:00
|
|
|
from ..utils import parse_duration
|
2014-08-18 15:39:35 +02:00
|
|
|
|
|
|
|
|
|
|
|
class RtlXlIE(InfoExtractor):
|
|
|
|
IE_NAME = 'rtlxl.nl'
|
2015-01-05 11:51:24 +01:00
|
|
|
_VALID_URL = r'https?://(www\.)?rtlxl\.nl/#!/[^/]+/(?P<uuid>[^/?]+)'
|
2014-08-18 15:39:35 +02:00
|
|
|
|
|
|
|
_TEST = {
|
|
|
|
'url': 'http://www.rtlxl.nl/#!/rtl-nieuws-132237/6e4203a6-0a5e-3596-8424-c599a59e0677',
|
2014-08-28 17:54:06 +02:00
|
|
|
'md5': 'cc16baa36a6c169391f0764fa6b16654',
|
2014-08-18 15:39:35 +02:00
|
|
|
'info_dict': {
|
|
|
|
'id': '6e4203a6-0a5e-3596-8424-c599a59e0677',
|
2014-08-28 17:54:06 +02:00
|
|
|
'ext': 'mp4',
|
2014-08-18 15:39:35 +02:00
|
|
|
'title': 'RTL Nieuws - Laat',
|
2014-08-28 17:54:06 +02:00
|
|
|
'description': 'md5:6b61f66510c8889923b11f2778c72dc5',
|
2014-08-18 15:39:35 +02:00
|
|
|
'timestamp': 1408051800,
|
|
|
|
'upload_date': '20140814',
|
2014-08-25 12:59:53 +02:00
|
|
|
'duration': 576.880,
|
2014-08-18 15:39:35 +02:00
|
|
|
},
|
|
|
|
}
|
|
|
|
|
|
|
|
def _real_extract(self, url):
|
|
|
|
mobj = re.match(self._VALID_URL, url)
|
|
|
|
uuid = mobj.group('uuid')
|
|
|
|
|
|
|
|
info = self._download_json(
|
2014-11-22 20:06:45 +01:00
|
|
|
'http://www.rtl.nl/system/s4m/vfd/version=2/uuid=%s/fmt=flash/' % uuid,
|
2014-08-18 15:39:35 +02:00
|
|
|
uuid)
|
2014-08-25 12:59:53 +02:00
|
|
|
|
2014-08-18 15:39:35 +02:00
|
|
|
material = info['material'][0]
|
|
|
|
episode_info = info['episodes'][0]
|
|
|
|
|
|
|
|
progname = info['abstracts'][0]['name']
|
|
|
|
subtitle = material['title'] or info['episodes'][0]['name']
|
|
|
|
|
2014-11-22 20:06:45 +01:00
|
|
|
# Use unencrypted m3u8 streams (See https://github.com/rg3/youtube-dl/issues/4118)
|
|
|
|
videopath = material['videopath'].replace('.f4m', '.m3u8')
|
2014-11-18 23:26:44 +01:00
|
|
|
m3u8_url = 'http://manifest.us.rtl.nl' + videopath
|
2014-08-28 17:54:06 +02:00
|
|
|
|
2014-11-18 23:26:44 +01:00
|
|
|
formats = self._extract_m3u8_formats(m3u8_url, uuid, ext='mp4')
|
2014-08-28 17:54:06 +02:00
|
|
|
|
2014-11-23 12:28:09 +01:00
|
|
|
video_urlpart = videopath.split('/flash/')[1][:-5]
|
2014-08-28 17:54:06 +02:00
|
|
|
PG_URL_TEMPLATE = 'http://pg.us.rtl.nl/rtlxl/network/%s/progressive/%s.mp4'
|
|
|
|
|
|
|
|
formats.extend([
|
|
|
|
{
|
|
|
|
'url': PG_URL_TEMPLATE % ('a2m', video_urlpart),
|
|
|
|
'format_id': 'pg-sd',
|
|
|
|
},
|
|
|
|
{
|
|
|
|
'url': PG_URL_TEMPLATE % ('a3m', video_urlpart),
|
|
|
|
'format_id': 'pg-hd',
|
2014-11-19 00:20:42 +01:00
|
|
|
'quality': 0,
|
2014-08-28 17:54:06 +02:00
|
|
|
}
|
|
|
|
])
|
|
|
|
|
2014-11-18 23:26:44 +01:00
|
|
|
self._sort_formats(formats)
|
|
|
|
|
2014-08-18 15:39:35 +02:00
|
|
|
return {
|
|
|
|
'id': uuid,
|
2014-08-25 12:59:53 +02:00
|
|
|
'title': '%s - %s' % (progname, subtitle),
|
2014-08-28 17:54:06 +02:00
|
|
|
'formats': formats,
|
2014-08-18 15:39:35 +02:00
|
|
|
'timestamp': material['original_date'],
|
|
|
|
'description': episode_info['synopsis'],
|
2014-08-25 12:59:53 +02:00
|
|
|
'duration': parse_duration(material.get('duration')),
|
2014-08-18 15:39:35 +02:00
|
|
|
}
|