]> jfr.im git - yt-dlp.git/blame - youtube_dl/extractor/rtlnl.py
[youtube] Add webm audio formats (Fixes #4229)
[yt-dlp.git] / youtube_dl / extractor / rtlnl.py
CommitLineData
6493f5d7
JMF
1from __future__ import unicode_literals
2
3import re
4
5from .common import InfoExtractor
7adcbe75 6from ..utils import parse_duration
6493f5d7
JMF
7
8
9class RtlXlIE(InfoExtractor):
10 IE_NAME = 'rtlxl.nl'
11 _VALID_URL = r'https?://www\.rtlxl\.nl/#!/[^/]+/(?P<uuid>[^/?]+)'
12
13 _TEST = {
14 'url': 'http://www.rtlxl.nl/#!/rtl-nieuws-132237/6e4203a6-0a5e-3596-8424-c599a59e0677',
de2d9f5f 15 'md5': 'cc16baa36a6c169391f0764fa6b16654',
6493f5d7
JMF
16 'info_dict': {
17 'id': '6e4203a6-0a5e-3596-8424-c599a59e0677',
de2d9f5f 18 'ext': 'mp4',
6493f5d7 19 'title': 'RTL Nieuws - Laat',
de2d9f5f 20 'description': 'md5:6b61f66510c8889923b11f2778c72dc5',
6493f5d7
JMF
21 'timestamp': 1408051800,
22 'upload_date': '20140814',
7adcbe75 23 'duration': 576.880,
6493f5d7 24 },
6493f5d7
JMF
25 }
26
27 def _real_extract(self, url):
28 mobj = re.match(self._VALID_URL, url)
29 uuid = mobj.group('uuid')
30
31 info = self._download_json(
32 'http://www.rtl.nl/system/s4m/vfd/version=2/uuid=%s/fmt=flash/' % uuid,
33 uuid)
7adcbe75 34
6493f5d7
JMF
35 material = info['material'][0]
36 episode_info = info['episodes'][0]
37
6493f5d7
JMF
38 progname = info['abstracts'][0]['name']
39 subtitle = material['title'] or info['episodes'][0]['name']
40
de2d9f5f
S
41 videopath = material['videopath']
42 f4m_url = 'http://manifest.us.rtl.nl' + videopath
43
44 formats = self._extract_f4m_formats(f4m_url, uuid)
45
46 video_urlpart = videopath.split('/flash/')[1][:-4]
47 PG_URL_TEMPLATE = 'http://pg.us.rtl.nl/rtlxl/network/%s/progressive/%s.mp4'
48
49 formats.extend([
50 {
51 'url': PG_URL_TEMPLATE % ('a2m', video_urlpart),
52 'format_id': 'pg-sd',
53 },
54 {
55 'url': PG_URL_TEMPLATE % ('a3m', video_urlpart),
56 'format_id': 'pg-hd',
57 }
58 ])
59
6493f5d7
JMF
60 return {
61 'id': uuid,
7adcbe75 62 'title': '%s - %s' % (progname, subtitle),
de2d9f5f 63 'formats': formats,
6493f5d7
JMF
64 'timestamp': material['original_date'],
65 'description': episode_info['synopsis'],
7adcbe75 66 'duration': parse_duration(material.get('duration')),
6493f5d7 67 }