1 from __future__
import unicode_literals
5 from .common
import InfoExtractor
15 class NPOBaseIE(InfoExtractor
):
16 def _get_token(self
, video_id
):
17 token_page
= self
._download
_webpage
(
18 'http://ida.omroep.nl/npoplayer/i.js',
19 video_id
, note
='Downloading token')
20 token
= self
._search
_regex
(
21 r
'npoplayer\.token = "(.+?)"', token_page
, 'token')
22 # Decryption algorithm extracted from http://npoplayer.omroep.nl/csjs/npoplayer-min.js
25 for i
in range(5, len(token_l
) - 4):
26 if token_l
[i
].isdigit():
31 if first
is None or second
is None:
35 token_l
[first
], token_l
[second
] = token_l
[second
], token_l
[first
]
37 return ''.join(token_l
)
40 class NPOIE(NPOBaseIE
):
42 IE_DESC
= 'npo.nl and ntr.nl'
49 npo\.nl/(?!live|radio)(?:[^/]+/){2}|
50 ntr\.nl/(?:[^/]+/){2,}|
51 omroepwnl\.nl/video/fragment/[^/]+__
59 'url': 'http://www.npo.nl/nieuwsuur/22-06-2014/VPWON_1220719',
60 'md5': '4b3f9c429157ec4775f2c9cb7b911016',
62 'id': 'VPWON_1220719',
65 'description': 'Dagelijks tussen tien en elf: nieuws, sport en achtergronden.',
66 'upload_date': '20140622',
70 'url': 'http://www.npo.nl/de-mega-mike-mega-thomas-show/27-02-2009/VARA_101191800',
71 'md5': 'da50a5787dbfc1603c4ad80f31c5120b',
73 'id': 'VARA_101191800',
75 'title': 'De Mega Mike & Mega Thomas show: The best of.',
76 'description': 'md5:3b74c97fc9d6901d5a665aac0e5400f4',
77 'upload_date': '20090227',
82 'url': 'http://www.npo.nl/tegenlicht/25-02-2013/VPWON_1169289',
83 'md5': 'f8065e4e5a7824068ed3c7e783178f2c',
85 'id': 'VPWON_1169289',
87 'title': 'Tegenlicht: De toekomst komt uit Afrika',
88 'description': 'md5:52cf4eefbc96fffcbdc06d024147abea',
89 'upload_date': '20130225',
94 'url': 'http://www.npo.nl/de-nieuwe-mens-deel-1/21-07-2010/WO_VPRO_043706',
96 'id': 'WO_VPRO_043706',
98 'title': 'De nieuwe mens - Deel 1',
99 'description': 'md5:518ae51ba1293ffb80d8d8ce90b74e4b',
103 # mplayer mms download
104 'skip_download': True,
109 'url': 'http://www.npo.nl/hoe-gaat-europa-verder-na-parijs/10-01-2015/WO_NOS_762771',
110 'md5': 'b3da13de374cbe2d5332a7e910bef97f',
112 'id': 'WO_NOS_762771',
114 'title': 'Hoe gaat Europa verder na Parijs?',
118 'url': 'http://www.ntr.nl/Aap-Poot-Pies/27/detail/Aap-poot-pies/VPWON_1233944#content',
119 'md5': '01c6a2841675995da1f0cf776f03a9c3',
121 'id': 'VPWON_1233944',
123 'title': 'Aap, poot, pies',
124 'description': 'md5:c9c8005d1869ae65b858e82c01a91fde',
125 'upload_date': '20150508',
130 'url': 'http://www.omroepwnl.nl/video/fragment/vandaag-de-dag-verkiezingen__POMS_WNL_853698',
131 'md5': 'd30cd8417b8b9bca1fdff27428860d08',
133 'id': 'POW_00996502',
135 'title': '''"Dit is wel een 'landslide'..."''',
136 'description': 'md5:f8d66d537dfb641380226e31ca57b8e8',
137 'upload_date': '20150508',
143 def _real_extract(self
, url
):
144 video_id
= self
._match
_id
(url
)
145 return self
._get
_info
(video_id
)
147 def _get_info(self
, video_id
):
148 metadata
= self
._download
_json
(
149 'http://e.omroep.nl/metadata/%s' % video_id
,
151 # We have to remove the javascript callback
152 transform_source
=strip_jsonp
,
155 # For some videos actual video id (prid) is different (e.g. for
156 # http://www.omroepwnl.nl/video/fragment/vandaag-de-dag-verkiezingen__POMS_WNL_853698
157 # video id is POMS_WNL_853698 but prid is POW_00996502)
158 video_id
= metadata
.get('prid') or video_id
160 # titel is too generic in some cases so utilize aflevering_titel as well
161 # when available (e.g. http://tegenlicht.vpro.nl/afleveringen/2014-2015/access-to-africa.html)
162 title
= metadata
['titel']
163 sub_title
= metadata
.get('aflevering_titel')
164 if sub_title
and sub_title
!= title
:
165 title
+= ': %s' % sub_title
167 token
= self
._get
_token
(video_id
)
171 pubopties
= metadata
.get('pubopties')
173 quality
= qualities(['adaptive', 'wmv_sb', 'h264_sb', 'wmv_bb', 'h264_bb', 'wvc1_std', 'h264_std'])
174 for format_id
in pubopties
:
175 format_info
= self
._download
_json
(
176 'http://ida.omroep.nl/odi/?prid=%s&puboptions=%s&adaptive=yes&token=%s'
177 % (video_id
, format_id
, token
),
178 video_id
, 'Downloading %s JSON' % format_id
)
179 if format_info
.get('error_code', 0) or format_info
.get('errorcode', 0):
181 streams
= format_info
.get('streams')
183 video_info
= self
._download
_json
(
184 streams
[0] + '&type=json',
185 video_id
, 'Downloading %s stream JSON' % format_id
)
187 video_info
= format_info
188 video_url
= video_info
.get('url')
191 if format_id
== 'adaptive':
192 formats
.extend(self
._extract
_m
3u8_formats
(video_url
, video_id
))
196 'format_id': format_id
,
197 'quality': quality(format_id
),
200 streams
= metadata
.get('streams')
202 for i
, stream
in enumerate(streams
):
203 stream_url
= stream
.get('url')
206 if '.asf' not in stream_url
:
209 'quality': stream
.get('kwaliteit'),
212 asx
= self
._download
_xml
(
213 stream_url
, video_id
,
214 'Downloading stream %d ASX playlist' % i
,
215 transform_source
=fix_xml_ampersands
)
216 ref
= asx
.find('./ENTRY/Ref')
219 video_url
= ref
.get('href')
224 'ext': stream
.get('formaat', 'asf'),
225 'quality': stream
.get('kwaliteit'),
228 self
._sort
_formats
(formats
)
231 if metadata
.get('tt888') == 'ja':
234 'url': 'http://e.omroep.nl/tt888/%s' % video_id
,
240 'description': metadata
.get('info'),
241 'thumbnail': metadata
.get('images', [{'url': None}])[-1]['url'],
242 'upload_date': unified_strdate(metadata
.get('gidsdatum')),
243 'duration': parse_duration(metadata
.get('tijdsduur')),
245 'subtitles': subtitles
,
249 class NPOLiveIE(NPOBaseIE
):
250 IE_NAME
= 'npo.nl:live'
251 _VALID_URL
= r
'https?://(?:www\.)?npo\.nl/live/(?P<id>.+)'
254 'url': 'http://www.npo.nl/live/npo-1',
256 'id': 'LI_NEDERLAND1_136692',
257 'display_id': 'npo-1',
259 'title': 're:^Nederland 1 [0-9]{4}-[0-9]{2}-[0-9]{2} [0-9]{2}:[0-9]{2}$',
260 'description': 'Livestream',
264 'skip_download': True,
268 def _real_extract(self
, url
):
269 display_id
= self
._match
_id
(url
)
271 webpage
= self
._download
_webpage
(url
, display_id
)
273 live_id
= self
._search
_regex
(
274 r
'data-prid="([^"]+)"', webpage
, 'live id')
276 metadata
= self
._download
_json
(
277 'http://e.omroep.nl/metadata/%s' % live_id
,
278 display_id
, transform_source
=strip_jsonp
)
280 token
= self
._get
_token
(display_id
)
284 streams
= metadata
.get('streams')
286 for stream
in streams
:
287 stream_type
= stream
.get('type').lower()
288 # smooth streaming is not supported
289 if stream_type
in ['ss', 'ms']:
291 stream_info
= self
._download
_json
(
292 'http://ida.omroep.nl/aapi/?stream=%s&token=%s&type=jsonp'
293 % (stream
.get('url'), token
),
294 display_id
, 'Downloading %s JSON' % stream_type
)
295 if stream_info
.get('error_code', 0) or stream_info
.get('errorcode', 0):
297 stream_url
= self
._download
_json
(
298 stream_info
['stream'], display_id
,
299 'Downloading %s URL' % stream_type
,
300 'Unable to download %s URL' % stream_type
,
301 transform_source
=strip_jsonp
, fatal
=False)
304 if stream_type
== 'hds':
305 f4m_formats
= self
._extract
_f
4m
_formats
(stream_url
, display_id
)
306 # f4m downloader downloads only piece of live stream
307 for f4m_format
in f4m_formats
:
308 f4m_format
['preference'] = -1
309 formats
.extend(f4m_formats
)
310 elif stream_type
== 'hls':
311 formats
.extend(self
._extract
_m
3u8_formats
(stream_url
, display_id
, 'mp4'))
318 self
._sort
_formats
(formats
)
322 'display_id': display_id
,
323 'title': self
._live
_title
(metadata
['titel']),
324 'description': metadata
['info'],
325 'thumbnail': metadata
.get('images', [{'url': None}])[-1]['url'],
331 class NPORadioIE(InfoExtractor
):
332 IE_NAME
= 'npo.nl:radio'
333 _VALID_URL
= r
'https?://(?:www\.)?npo\.nl/radio/(?P<id>[^/]+)/?$'
336 'url': 'http://www.npo.nl/radio/radio-1',
340 'title': 're:^NPO Radio 1 [0-9]{4}-[0-9]{2}-[0-9]{2} [0-9]{2}:[0-9]{2}$',
344 'skip_download': True,
349 def _html_get_attribute_regex(attribute
):
350 return r
'{0}\s*=\s*\'([^
\']+)\''.format(attribute)
352 def _real_extract(self, url):
353 video_id = self._match_id(url)
355 webpage = self._download_webpage(url, video_id)
357 title = self._html_search_regex(
358 self._html_get_attribute_regex('data
-channel
'), webpage, 'title
')
360 stream = self._parse_json(
361 self._html_search_regex(self._html_get_attribute_regex('data
-streams
'), webpage, 'data
-streams
'),
364 codec = stream.get('codec
')
368 'url
': stream['url
'],
369 'title
': self._live_title(title),
376 class NPORadioFragmentIE(InfoExtractor):
377 IE_NAME = 'npo
.nl
:radio
:fragment
'
378 _VALID_URL = r'https?
://(?
:www\
.)?npo\
.nl
/radio
/[^
/]+/fragment
/(?P
<id>\d
+)'
381 'url
': 'http
://www
.npo
.nl
/radio
/radio
-5/fragment
/174356',
382 'md5
': 'dd8cc470dad764d0fdc70a9a1e2d18c2
',
386 'title
': 'Jubileumconcert Willeke Alberti
',
390 def _real_extract(self, url):
391 audio_id = self._match_id(url)
393 webpage = self._download_webpage(url, audio_id)
395 title = self._html_search_regex(
396 r'href
="/radio/[^/]+/fragment/%s" title
="([^"]+)"' % audio_id,
399 audio_url = self._search_regex(
400 r"data
-streams
='([^']+)'", webpage, 'audio url
')
410 _VALID_URL = r'https?
://(?
:www\
.)?
(?
:tegenlicht\
.)?vpro\
.nl
/(?
:[^
/]+/){2,}(?P
<id>[^
/]+)\
.html
'
414 'url
': 'http
://tegenlicht
.vpro
.nl
/afleveringen
/2012-2013/de
-toekomst
-komt
-uit
-afrika
.html
',
415 'md5
': 'f8065e4e5a7824068ed3c7e783178f2c
',
417 'id': 'VPWON_1169289
',
419 'title
': 'De toekomst komt uit Afrika
',
420 'description
': 'md5
:52cf4eefbc96fffcbdc06d024147abea
',
421 'upload_date
': '20130225',
425 'url
': 'http
://www
.vpro
.nl
/programmas
/2doc
/2015/sergio
-herman
.html
',
427 'id': 'sergio
-herman
',
428 'title
': 'Sergio Herman
: Fucking perfect
',
433 # playlist with youtube embed
434 'url
': 'http
://www
.vpro
.nl
/programmas
/2doc
/2015/education
-education
.html
',
436 'id': 'education
-education
',
443 def _real_extract(self, url):
444 playlist_id = self._match_id(url)
446 webpage = self._download_webpage(url, playlist_id)
449 self.url_result('npo
:%s' % video_id if not video_id.startswith('http
') else video_id)
450 for video_id in re.findall(r'data
-media
-id="([^"]+)"', webpage)
453 playlist_title = self._search_regex(
454 r'<title>\s*([^>]+?)\s*-\s*Teledoc\s*-\s*VPRO\s*</title>',
455 webpage, 'playlist title', default=None) or self._og_search_title(webpage)
457 return self.playlist_result(entries, playlist_id, playlist_title)
460 class WNLIE(InfoExtractor):
461 _VALID_URL = r'https?://(?:www\.)?omroepwnl\.nl/video/detail/(?P<id>[^/]+)__\d+'
464 'url': 'http://www.omroepwnl.nl/video/detail/vandaag-de-dag-6-mei__060515',
466 'id': 'vandaag-de-dag-6-mei',
467 'title': 'Vandaag de Dag 6 mei',
472 def _real_extract(self, url):
473 playlist_id = self._match_id(url)
475 webpage = self._download_webpage(url, playlist_id)
478 self.url_result('npo:%s' % video_id, 'NPO')
479 for video_id, part in re.findall(
480 r'<a[^>]+href="([^
"]+)"[^
>]+class="js-mid"[^
>]*>(Deel \d
+)', webpage)
483 playlist_title = self._html_search_regex(
484 r'(?s
)<h1
[^
>]+class="subject"[^
>]*>(.+?
)</h1
>',
485 webpage, 'playlist title
')
487 return self.playlist_result(entries, playlist_id, playlist_title)