2 from __future__
import unicode_literals
6 from .common
import InfoExtractor
7 from ..compat
import compat_urllib_parse_unquote
16 class NRKBaseIE(InfoExtractor
):
17 _GEO_COUNTRIES
= ['NO']
19 def _real_extract(self
, url
):
20 video_id
= self
._match
_id
(url
)
22 data
= self
._download
_json
(
23 'http://%s/mediaelement/%s' % (self
._API
_HOST
, video_id
),
24 video_id
, 'Downloading mediaelement JSON')
26 title
= data
.get('fullTitle') or data
.get('mainTitle') or data
['title']
27 video_id
= data
.get('id') or video_id
31 conviva
= data
.get('convivaStatistics') or {}
32 live
= (data
.get('mediaElementType') == 'Live' or
33 data
.get('isLive') is True or conviva
.get('isLive'))
36 return self
._live
_title
(t
) if live
else t
38 media_assets
= data
.get('mediaAssets')
39 if media_assets
and isinstance(media_assets
, list):
40 def video_id_and_title(idx
):
41 return ((video_id
, title
) if len(media_assets
) == 1
42 else ('%s-%d' % (video_id
, idx
), '%s (Part %d)' % (title
, idx
)))
43 for num
, asset
in enumerate(media_assets
, 1):
44 asset_url
= asset
.get('url')
47 formats
= self
._extract
_akamai
_formats
(asset_url
, video_id
)
50 self
._sort
_formats
(formats
)
52 # Some f4m streams may not work with hdcore in fragments' URLs
54 extra_param
= f
.get('extra_param_to_segment_url')
55 if extra_param
and 'hdcore' in extra_param
:
56 del f
['extra_param_to_segment_url']
58 entry_id
, entry_title
= video_id_and_title(num
)
59 duration
= parse_duration(asset
.get('duration'))
61 for subtitle
in ('webVtt', 'timedText'):
62 subtitle_url
= asset
.get('%sSubtitlesUrl' % subtitle
)
64 subtitles
.setdefault('no', []).append({
65 'url': compat_urllib_parse_unquote(subtitle_url
)
68 'id': asset
.get('carrierId') or entry_id
,
69 'title': make_title(entry_title
),
71 'subtitles': subtitles
,
76 media_url
= data
.get('mediaUrl')
78 formats
= self
._extract
_akamai
_formats
(media_url
, video_id
)
79 self
._sort
_formats
(formats
)
80 duration
= parse_duration(data
.get('duration'))
83 'title': make_title(title
),
90 'ProgramRightsAreNotReady': 'Du kan dessverre ikke se eller høre programmet',
91 'ProgramRightsHasExpired': 'Programmet har gått ut',
92 'ProgramIsGeoBlocked': 'NRK har ikke rettigheter til å vise dette programmet utenfor Norge',
94 message_type
= data
.get('messageType', '')
95 # Can be ProgramIsGeoBlocked or ChannelIsGeoBlocked*
96 if 'IsGeoBlocked' in message_type
:
97 self
.raise_geo_restricted(
98 msg
=MESSAGES
.get('ProgramIsGeoBlocked'),
99 countries
=self
._GEO
_COUNTRIES
)
100 raise ExtractorError(
101 '%s said: %s' % (self
.IE_NAME
, MESSAGES
.get(
102 message_type
, message_type
)),
105 series
= conviva
.get('seriesName') or data
.get('seriesTitle')
106 episode
= conviva
.get('episodeName') or data
.get('episodeNumberOrDate')
109 episode_number
= None
110 if data
.get('mediaElementType') == 'Episode':
111 _season_episode
= data
.get('scoresStatistics', {}).get('springStreamStream') or \
112 data
.get('relativeOriginUrl', '')
114 r
'/s(?P<season>\d{,2})e(?P<episode>\d{,2})\.',
115 r
'/sesong-(?P<season>\d{,2})/episode-(?P<episode>\d{,2})',
117 season_number
= int_or_none(self
._search
_regex
(
118 EPISODENUM_RE
, _season_episode
, 'season number',
119 default
=None, group
='season'))
120 episode_number
= int_or_none(self
._search
_regex
(
121 EPISODENUM_RE
, _season_episode
, 'episode number',
122 default
=None, group
='episode'))
125 images
= data
.get('images')
126 if images
and isinstance(images
, dict):
127 web_images
= images
.get('webImages')
128 if isinstance(web_images
, list):
130 'url': image
['imageUrl'],
131 'width': int_or_none(image
.get('width')),
132 'height': int_or_none(image
.get('height')),
133 } for image
in web_images
if image
.get('imageUrl')]
135 description
= data
.get('description')
136 category
= data
.get('mediaAnalytics', {}).get('category')
139 'description': description
,
142 'season_number': season_number
,
143 'episode_number': episode_number
,
144 'categories': [category
] if category
else None,
145 'age_limit': parse_age_limit(data
.get('legalAge')),
146 'thumbnails': thumbnails
,
149 vcodec
= 'none' if data
.get('mediaType') == 'Audio' else None
151 # TODO: extract chapters when https://github.com/rg3/youtube-dl/pull/9409 is merged
153 for entry
in entries
:
154 entry
.update(common_info
)
155 for f
in entry
['formats']:
158 return self
.playlist_result(entries
, video_id
, title
, description
)
161 class NRKIE(NRKBaseIE
):
162 _VALID_URL
= r
'''(?x)
167 (?:www\.)?nrk\.no/video/PS\*|
168 v8[-.]psapi\.nrk\.no/mediaelement/
173 _API_HOST
= 'v8-psapi.nrk.no'
176 'url': 'http://www.nrk.no/video/PS*150533',
177 'md5': '2f7f6eeb2aacdd99885f355428715cfa',
181 'title': 'Dompap og andre fugler i Piip-Show',
182 'description': 'md5:d9261ba34c43b61c812cb6b0269a5c8f',
187 'url': 'http://www.nrk.no/video/PS*154915',
192 'title': 'Slik høres internett ut når du er blind',
193 'description': 'md5:a621f5cc1bd75c8d5104cb048c6b8568',
197 'url': 'nrk:ecc1b952-96dc-4a98-81b9-5296dc7a98d9',
198 'only_matching': True,
200 'url': 'nrk:clip/7707d5a3-ebe7-434a-87d5-a3ebe7a34a70',
201 'only_matching': True,
203 'url': 'https://v8-psapi.nrk.no/mediaelement/ecc1b952-96dc-4a98-81b9-5296dc7a98d9',
204 'only_matching': True,
208 class NRKTVIE(NRKBaseIE
):
209 IE_DESC
= 'NRK TV and NRK Radio'
210 _EPISODE_RE
= r
'(?P<id>[a-zA-Z]{4}\d{8})'
211 _VALID_URL
= r
'''(?x)
213 (?:tv|radio)\.nrk(?:super)?\.no/
214 (?:serie/[^/]+|program)/
216 (?:/\d{2}-\d{2}-\d{4})?
217 (?:\#del=(?P<part_id>\d+))?
219 _API_HOST
= 'psapi-we.nrk.no'
222 'url': 'https://tv.nrk.no/serie/20-spoersmaal-tv/MUHH48000314/23-05-2014',
223 'md5': '4e9ca6629f09e588ed240fb11619922a',
225 'id': 'MUHH48000314AA',
227 'title': '20 spørsmål 23.05.2014',
228 'description': 'md5:bdea103bc35494c143c6a9acdd84887a',
230 'series': '20 spørsmål - TV',
231 'episode': '23.05.2014',
234 'url': 'https://tv.nrk.no/program/mdfp15000514',
236 'id': 'MDFP15000514CA',
238 'title': 'Grunnlovsjubiléet - Stor ståhei for ingenting 24.05.2014',
239 'description': 'md5:89290c5ccde1b3a24bb8050ab67fe1db',
241 'series': 'Kunnskapskanalen',
242 'episode': '24.05.2014',
245 'skip_download': True,
248 # single playlist video
249 'url': 'https://tv.nrk.no/serie/tour-de-ski/MSPO40010515/06-01-2015#del=2',
251 'id': 'MSPO40010515-part2',
253 'title': 'Tour de Ski: Sprint fri teknikk, kvinner og menn 06.01.2015 (del 2:2)',
254 'description': 'md5:238b67b97a4ac7d7b4bf0edf8cc57d26',
257 'skip_download': True,
259 'expected_warnings': ['Video is geo restricted'],
260 'skip': 'particular part is not supported currently',
262 'url': 'https://tv.nrk.no/serie/tour-de-ski/MSPO40010515/06-01-2015',
265 'id': 'MSPO40010515AH',
267 'title': 'Sprint fri teknikk, kvinner og menn 06.01.2015 (Part 1)',
268 'description': 'md5:c03aba1e917561eface5214020551b7a',
270 'series': 'Tour de Ski',
271 'episode': '06.01.2015',
274 'skip_download': True,
278 'id': 'MSPO40010515BH',
280 'title': 'Sprint fri teknikk, kvinner og menn 06.01.2015 (Part 2)',
281 'description': 'md5:c03aba1e917561eface5214020551b7a',
283 'series': 'Tour de Ski',
284 'episode': '06.01.2015',
287 'skip_download': True,
291 'id': 'MSPO40010515',
292 'title': 'Sprint fri teknikk, kvinner og menn 06.01.2015',
293 'description': 'md5:c03aba1e917561eface5214020551b7a',
295 'expected_warnings': ['Video is geo restricted'],
297 'url': 'https://tv.nrk.no/serie/anno/KMTE50001317/sesong-3/episode-13',
299 'id': 'KMTE50001317AA',
301 'title': 'Anno 13:30',
302 'description': 'md5:11d9613661a8dbe6f9bef54e3a4cbbfa',
307 'episode_number': 13,
310 'skip_download': True,
313 'url': 'https://tv.nrk.no/serie/nytt-paa-nytt/MUHH46000317/27-01-2017',
315 'id': 'MUHH46000317AA',
317 'title': 'Nytt på Nytt 27.01.2017',
318 'description': 'md5:5358d6388fba0ea6f0b6d11c48b9eb4b',
320 'series': 'Nytt på nytt',
321 'episode': '27.01.2017',
324 'skip_download': True,
327 'url': 'https://radio.nrk.no/serie/dagsnytt/NPUB21019315/12-07-2015#',
328 'only_matching': True,
332 class NRKTVDirekteIE(NRKTVIE
):
333 IE_DESC
= 'NRK TV Direkte and NRK Radio Direkte'
334 _VALID_URL
= r
'https?://(?:tv|radio)\.nrk\.no/direkte/(?P<id>[^/?#&]+)'
337 'url': 'https://tv.nrk.no/direkte/nrk1',
338 'only_matching': True,
340 'url': 'https://radio.nrk.no/direkte/p1_oslo_akershus',
341 'only_matching': True,
345 class NRKPlaylistBaseIE(InfoExtractor
):
346 def _extract_description(self
, webpage
):
349 def _real_extract(self
, url
):
350 playlist_id
= self
._match
_id
(url
)
352 webpage
= self
._download
_webpage
(url
, playlist_id
)
355 self
.url_result('nrk:%s' % video_id
, NRKIE
.ie_key())
356 for video_id
in re
.findall(self
._ITEM
_RE
, webpage
)
359 playlist_title
= self
. _extract_title(webpage
)
360 playlist_description
= self
._extract
_description
(webpage
)
362 return self
.playlist_result(
363 entries
, playlist_id
, playlist_title
, playlist_description
)
366 class NRKPlaylistIE(NRKPlaylistBaseIE
):
367 _VALID_URL
= r
'https?://(?:www\.)?nrk\.no/(?!video|skole)(?:[^/]+/)+(?P<id>[^/]+)'
368 _ITEM_RE
= r
'class="[^"]*\brich\b[^"]*"[^>]+data-video-id="([^"]+)"'
370 'url': 'http://www.nrk.no/troms/gjenopplev-den-historiske-solformorkelsen-1.12270763',
372 'id': 'gjenopplev-den-historiske-solformorkelsen-1.12270763',
373 'title': 'Gjenopplev den historiske solformørkelsen',
374 'description': 'md5:c2df8ea3bac5654a26fc2834a542feed',
378 'url': 'http://www.nrk.no/kultur/bok/rivertonprisen-til-karin-fossum-1.12266449',
380 'id': 'rivertonprisen-til-karin-fossum-1.12266449',
381 'title': 'Rivertonprisen til Karin Fossum',
382 'description': 'Første kvinne på 15 år til å vinne krimlitteraturprisen.',
387 def _extract_title(self
, webpage
):
388 return self
._og
_search
_title
(webpage
, fatal
=False)
390 def _extract_description(self
, webpage
):
391 return self
._og
_search
_description
(webpage
)
394 class NRKTVEpisodesIE(NRKPlaylistBaseIE
):
395 _VALID_URL
= r
'https?://tv\.nrk\.no/program/[Ee]pisodes/[^/]+/(?P<id>\d+)'
396 _ITEM_RE
= r
'data-episode=["\']%s' % NRKTVIE._EPISODE_RE
398 'url
': 'https
://tv
.nrk
.no
/program
/episodes
/nytt
-paa
-nytt
/69031',
401 'title
': 'Nytt på nytt
, sesong
: 201210',
406 def _extract_title(self, webpage):
407 return self._html_search_regex(
408 r'<h1
>([^
<]+)</h1
>', webpage, 'title
', fatal=False)
411 class NRKTVSeriesIE(InfoExtractor):
412 _VALID_URL = r'https?
://(?
:tv|radio
)\
.nrk(?
:super)?\
.no
/serie
/(?P
<id>[^
/]+)'
413 _ITEM_RE = r'(?
:data
-season
=["\']|id=["\']season
-)(?P
<id>\d
+)'
415 'url
': 'https
://tv
.nrk
.no
/serie
/groenn
-glede
',
417 'id': 'groenn
-glede
',
418 'title
': 'Grønn glede
',
419 'description
': 'md5
:7576e92ae7f65da6993cf90ee29e4608
',
421 'playlist_mincount
': 9,
423 'url
': 'http
://tv
.nrksuper
.no
/serie
/labyrint
',
427 'description
': 'md5
:58afd450974c89e27d5a19212eee7115
',
429 'playlist_mincount
': 3,
431 'url
': 'https
://tv
.nrk
.no
/serie
/broedrene
-dal
-og
-spektralsteinene
',
432 'only_matching
': True,
434 'url
': 'https
://tv
.nrk
.no
/serie
/saving
-the
-human
-race
',
435 'only_matching
': True,
437 'url
': 'https
://tv
.nrk
.no
/serie
/postmann
-pat
',
438 'only_matching
': True,
442 def suitable(cls, url):
443 return False if NRKTVIE.suitable(url) else super(NRKTVSeriesIE, cls).suitable(url)
445 def _real_extract(self, url):
446 series_id = self._match_id(url)
448 webpage = self._download_webpage(url, series_id)
452 'https
://tv
.nrk
.no
/program
/Episodes
/{series}
/{season}
'.format(
453 series=series_id, season=season_id))
454 for season_id in re.findall(self._ITEM_RE, webpage)
457 title = self._html_search_meta(
458 'seriestitle
', webpage,
459 'title
', default=None) or self._og_search_title(
460 webpage, fatal=False)
462 description = self._html_search_meta(
463 'series_description
', webpage,
464 'description
', default=None) or self._og_search_description(webpage)
466 return self.playlist_result(entries, series_id, title, description)
469 class NRKSkoleIE(InfoExtractor):
470 IE_DESC = 'NRK Skole
'
471 _VALID_URL = r'https?
://(?
:www\
.)?nrk\
.no
/skole
/?
\?.*\bmediaId
=(?P
<id>\d
+)'
474 'url
': 'https
://www
.nrk
.no
/skole
/?page
=search
&q
=&mediaId
=14099',
475 'md5
': '6bc936b01f9dd8ed45bc58b252b2d9b6
',
479 'title
': 'Genetikk og eneggede tvillinger
',
480 'description
': 'md5
:3aca25dcf38ec30f0363428d2b265f8d
',
484 'url
': 'https
://www
.nrk
.no
/skole
/?page
=objectives
&subject
=naturfag
&objective
=K15114
&mediaId
=19355',
485 'only_matching
': True,
488 def _real_extract(self, url):
489 video_id = self._match_id(url)
491 webpage = self._download_webpage(
492 'https
://mimir
.nrk
.no
/plugin
/1.0/static?mediaId
=%s' % video_id,
495 nrk_id = self._parse_json(
497 r'<script
[^
>]+type=["\']application/json["\'][^
>]*>({.+?
})</script
>',
498 webpage, 'application json
'),
499 video_id)['activeMedia
']['psId
']
501 return self.url_result('nrk
:%s' % nrk_id)