[nrktv] Relax _VALID_URL (closes #18304, closes #18387)
[youtube-dl] / youtube_dl / extractor / nrk.py
1 # coding: utf-8
2 from __future__ import unicode_literals
3
4 import re
5
6 from .common import InfoExtractor
7 from ..compat import (
8     compat_str,
9     compat_urllib_parse_unquote,
10 )
11 from ..utils import (
12     ExtractorError,
13     int_or_none,
14     JSON_LD_RE,
15     NO_DEFAULT,
16     parse_age_limit,
17     parse_duration,
18     try_get,
19 )
20
21
22 class NRKBaseIE(InfoExtractor):
23     _GEO_COUNTRIES = ['NO']
24
25     _api_host = None
26
27     def _real_extract(self, url):
28         video_id = self._match_id(url)
29
30         api_hosts = (self._api_host, ) if self._api_host else self._API_HOSTS
31
32         for api_host in api_hosts:
33             data = self._download_json(
34                 'http://%s/mediaelement/%s' % (api_host, video_id),
35                 video_id, 'Downloading mediaelement JSON',
36                 fatal=api_host == api_hosts[-1])
37             if not data:
38                 continue
39             self._api_host = api_host
40             break
41
42         title = data.get('fullTitle') or data.get('mainTitle') or data['title']
43         video_id = data.get('id') or video_id
44
45         entries = []
46
47         conviva = data.get('convivaStatistics') or {}
48         live = (data.get('mediaElementType') == 'Live' or
49                 data.get('isLive') is True or conviva.get('isLive'))
50
51         def make_title(t):
52             return self._live_title(t) if live else t
53
54         media_assets = data.get('mediaAssets')
55         if media_assets and isinstance(media_assets, list):
56             def video_id_and_title(idx):
57                 return ((video_id, title) if len(media_assets) == 1
58                         else ('%s-%d' % (video_id, idx), '%s (Part %d)' % (title, idx)))
59             for num, asset in enumerate(media_assets, 1):
60                 asset_url = asset.get('url')
61                 if not asset_url:
62                     continue
63                 formats = self._extract_akamai_formats(asset_url, video_id)
64                 if not formats:
65                     continue
66                 self._sort_formats(formats)
67
68                 # Some f4m streams may not work with hdcore in fragments' URLs
69                 for f in formats:
70                     extra_param = f.get('extra_param_to_segment_url')
71                     if extra_param and 'hdcore' in extra_param:
72                         del f['extra_param_to_segment_url']
73
74                 entry_id, entry_title = video_id_and_title(num)
75                 duration = parse_duration(asset.get('duration'))
76                 subtitles = {}
77                 for subtitle in ('webVtt', 'timedText'):
78                     subtitle_url = asset.get('%sSubtitlesUrl' % subtitle)
79                     if subtitle_url:
80                         subtitles.setdefault('no', []).append({
81                             'url': compat_urllib_parse_unquote(subtitle_url)
82                         })
83                 entries.append({
84                     'id': asset.get('carrierId') or entry_id,
85                     'title': make_title(entry_title),
86                     'duration': duration,
87                     'subtitles': subtitles,
88                     'formats': formats,
89                 })
90
91         if not entries:
92             media_url = data.get('mediaUrl')
93             if media_url:
94                 formats = self._extract_akamai_formats(media_url, video_id)
95                 self._sort_formats(formats)
96                 duration = parse_duration(data.get('duration'))
97                 entries = [{
98                     'id': video_id,
99                     'title': make_title(title),
100                     'duration': duration,
101                     'formats': formats,
102                 }]
103
104         if not entries:
105             MESSAGES = {
106                 'ProgramRightsAreNotReady': 'Du kan dessverre ikke se eller høre programmet',
107                 'ProgramRightsHasExpired': 'Programmet har gått ut',
108                 'ProgramIsGeoBlocked': 'NRK har ikke rettigheter til å vise dette programmet utenfor Norge',
109             }
110             message_type = data.get('messageType', '')
111             # Can be ProgramIsGeoBlocked or ChannelIsGeoBlocked*
112             if 'IsGeoBlocked' in message_type:
113                 self.raise_geo_restricted(
114                     msg=MESSAGES.get('ProgramIsGeoBlocked'),
115                     countries=self._GEO_COUNTRIES)
116             raise ExtractorError(
117                 '%s said: %s' % (self.IE_NAME, MESSAGES.get(
118                     message_type, message_type)),
119                 expected=True)
120
121         series = conviva.get('seriesName') or data.get('seriesTitle')
122         episode = conviva.get('episodeName') or data.get('episodeNumberOrDate')
123
124         season_number = None
125         episode_number = None
126         if data.get('mediaElementType') == 'Episode':
127             _season_episode = data.get('scoresStatistics', {}).get('springStreamStream') or \
128                 data.get('relativeOriginUrl', '')
129             EPISODENUM_RE = [
130                 r'/s(?P<season>\d{,2})e(?P<episode>\d{,2})\.',
131                 r'/sesong-(?P<season>\d{,2})/episode-(?P<episode>\d{,2})',
132             ]
133             season_number = int_or_none(self._search_regex(
134                 EPISODENUM_RE, _season_episode, 'season number',
135                 default=None, group='season'))
136             episode_number = int_or_none(self._search_regex(
137                 EPISODENUM_RE, _season_episode, 'episode number',
138                 default=None, group='episode'))
139
140         thumbnails = None
141         images = data.get('images')
142         if images and isinstance(images, dict):
143             web_images = images.get('webImages')
144             if isinstance(web_images, list):
145                 thumbnails = [{
146                     'url': image['imageUrl'],
147                     'width': int_or_none(image.get('width')),
148                     'height': int_or_none(image.get('height')),
149                 } for image in web_images if image.get('imageUrl')]
150
151         description = data.get('description')
152         category = data.get('mediaAnalytics', {}).get('category')
153
154         common_info = {
155             'description': description,
156             'series': series,
157             'episode': episode,
158             'season_number': season_number,
159             'episode_number': episode_number,
160             'categories': [category] if category else None,
161             'age_limit': parse_age_limit(data.get('legalAge')),
162             'thumbnails': thumbnails,
163         }
164
165         vcodec = 'none' if data.get('mediaType') == 'Audio' else None
166
167         for entry in entries:
168             entry.update(common_info)
169             for f in entry['formats']:
170                 f['vcodec'] = vcodec
171
172         points = data.get('shortIndexPoints')
173         if isinstance(points, list):
174             chapters = []
175             for next_num, point in enumerate(points, start=1):
176                 if not isinstance(point, dict):
177                     continue
178                 start_time = parse_duration(point.get('startPoint'))
179                 if start_time is None:
180                     continue
181                 end_time = parse_duration(
182                     data.get('duration')
183                     if next_num == len(points)
184                     else points[next_num].get('startPoint'))
185                 if end_time is None:
186                     continue
187                 chapters.append({
188                     'start_time': start_time,
189                     'end_time': end_time,
190                     'title': point.get('title'),
191                 })
192             if chapters and len(entries) == 1:
193                 entries[0]['chapters'] = chapters
194
195         return self.playlist_result(entries, video_id, title, description)
196
197
198 class NRKIE(NRKBaseIE):
199     _VALID_URL = r'''(?x)
200                         (?:
201                             nrk:|
202                             https?://
203                                 (?:
204                                     (?:www\.)?nrk\.no/video/PS\*|
205                                     v8[-.]psapi\.nrk\.no/mediaelement/
206                                 )
207                             )
208                             (?P<id>[^?#&]+)
209                         '''
210     _API_HOSTS = ('psapi.nrk.no', 'v8-psapi.nrk.no')
211     _TESTS = [{
212         # video
213         'url': 'http://www.nrk.no/video/PS*150533',
214         'md5': '2f7f6eeb2aacdd99885f355428715cfa',
215         'info_dict': {
216             'id': '150533',
217             'ext': 'mp4',
218             'title': 'Dompap og andre fugler i Piip-Show',
219             'description': 'md5:d9261ba34c43b61c812cb6b0269a5c8f',
220             'duration': 263,
221         }
222     }, {
223         # audio
224         'url': 'http://www.nrk.no/video/PS*154915',
225         # MD5 is unstable
226         'info_dict': {
227             'id': '154915',
228             'ext': 'flv',
229             'title': 'Slik høres internett ut når du er blind',
230             'description': 'md5:a621f5cc1bd75c8d5104cb048c6b8568',
231             'duration': 20,
232         }
233     }, {
234         'url': 'nrk:ecc1b952-96dc-4a98-81b9-5296dc7a98d9',
235         'only_matching': True,
236     }, {
237         'url': 'nrk:clip/7707d5a3-ebe7-434a-87d5-a3ebe7a34a70',
238         'only_matching': True,
239     }, {
240         'url': 'https://v8-psapi.nrk.no/mediaelement/ecc1b952-96dc-4a98-81b9-5296dc7a98d9',
241         'only_matching': True,
242     }]
243
244
245 class NRKTVIE(NRKBaseIE):
246     IE_DESC = 'NRK TV and NRK Radio'
247     _EPISODE_RE = r'(?P<id>[a-zA-Z]{4}\d{8})'
248     _VALID_URL = r'''(?x)
249                         https?://
250                             (?:tv|radio)\.nrk(?:super)?\.no/
251                             (?:serie(?:/[^/]+){1,2}|program)/
252                             (?![Ee]pisodes)%s
253                             (?:/\d{2}-\d{2}-\d{4})?
254                             (?:\#del=(?P<part_id>\d+))?
255                     ''' % _EPISODE_RE
256     _API_HOSTS = ('psapi-ne.nrk.no', 'psapi-we.nrk.no')
257     _TESTS = [{
258         'url': 'https://tv.nrk.no/serie/20-spoersmaal-tv/MUHH48000314/23-05-2014',
259         'md5': '4e9ca6629f09e588ed240fb11619922a',
260         'info_dict': {
261             'id': 'MUHH48000314AA',
262             'ext': 'mp4',
263             'title': '20 spørsmål 23.05.2014',
264             'description': 'md5:bdea103bc35494c143c6a9acdd84887a',
265             'duration': 1741,
266             'series': '20 spørsmål - TV',
267             'episode': '23.05.2014',
268         },
269     }, {
270         'url': 'https://tv.nrk.no/program/mdfp15000514',
271         'info_dict': {
272             'id': 'MDFP15000514CA',
273             'ext': 'mp4',
274             'title': 'Grunnlovsjubiléet - Stor ståhei for ingenting 24.05.2014',
275             'description': 'md5:89290c5ccde1b3a24bb8050ab67fe1db',
276             'duration': 4605,
277             'series': 'Kunnskapskanalen',
278             'episode': '24.05.2014',
279         },
280         'params': {
281             'skip_download': True,
282         },
283     }, {
284         # single playlist video
285         'url': 'https://tv.nrk.no/serie/tour-de-ski/MSPO40010515/06-01-2015#del=2',
286         'info_dict': {
287             'id': 'MSPO40010515-part2',
288             'ext': 'flv',
289             'title': 'Tour de Ski: Sprint fri teknikk, kvinner og menn 06.01.2015 (del 2:2)',
290             'description': 'md5:238b67b97a4ac7d7b4bf0edf8cc57d26',
291         },
292         'params': {
293             'skip_download': True,
294         },
295         'expected_warnings': ['Video is geo restricted'],
296         'skip': 'particular part is not supported currently',
297     }, {
298         'url': 'https://tv.nrk.no/serie/tour-de-ski/MSPO40010515/06-01-2015',
299         'playlist': [{
300             'info_dict': {
301                 'id': 'MSPO40010515AH',
302                 'ext': 'mp4',
303                 'title': 'Sprint fri teknikk, kvinner og menn 06.01.2015 (Part 1)',
304                 'description': 'md5:c03aba1e917561eface5214020551b7a',
305                 'duration': 772,
306                 'series': 'Tour de Ski',
307                 'episode': '06.01.2015',
308             },
309             'params': {
310                 'skip_download': True,
311             },
312         }, {
313             'info_dict': {
314                 'id': 'MSPO40010515BH',
315                 'ext': 'mp4',
316                 'title': 'Sprint fri teknikk, kvinner og menn 06.01.2015 (Part 2)',
317                 'description': 'md5:c03aba1e917561eface5214020551b7a',
318                 'duration': 6175,
319                 'series': 'Tour de Ski',
320                 'episode': '06.01.2015',
321             },
322             'params': {
323                 'skip_download': True,
324             },
325         }],
326         'info_dict': {
327             'id': 'MSPO40010515',
328             'title': 'Sprint fri teknikk, kvinner og menn 06.01.2015',
329             'description': 'md5:c03aba1e917561eface5214020551b7a',
330         },
331         'expected_warnings': ['Video is geo restricted'],
332     }, {
333         'url': 'https://tv.nrk.no/serie/anno/KMTE50001317/sesong-3/episode-13',
334         'info_dict': {
335             'id': 'KMTE50001317AA',
336             'ext': 'mp4',
337             'title': 'Anno 13:30',
338             'description': 'md5:11d9613661a8dbe6f9bef54e3a4cbbfa',
339             'duration': 2340,
340             'series': 'Anno',
341             'episode': '13:30',
342             'season_number': 3,
343             'episode_number': 13,
344         },
345         'params': {
346             'skip_download': True,
347         },
348     }, {
349         'url': 'https://tv.nrk.no/serie/nytt-paa-nytt/MUHH46000317/27-01-2017',
350         'info_dict': {
351             'id': 'MUHH46000317AA',
352             'ext': 'mp4',
353             'title': 'Nytt på Nytt 27.01.2017',
354             'description': 'md5:5358d6388fba0ea6f0b6d11c48b9eb4b',
355             'duration': 1796,
356             'series': 'Nytt på nytt',
357             'episode': '27.01.2017',
358         },
359         'params': {
360             'skip_download': True,
361         },
362     }, {
363         'url': 'https://radio.nrk.no/serie/dagsnytt/NPUB21019315/12-07-2015#',
364         'only_matching': True,
365     }, {
366         'url': 'https://tv.nrk.no/serie/lindmo/2018/MUHU11006318/avspiller',
367         'only_matching': True,
368     }]
369
370
371 class NRKTVEpisodeIE(InfoExtractor):
372     _VALID_URL = r'https?://tv\.nrk\.no/serie/(?P<id>[^/]+/sesong/\d+/episode/\d+)'
373     _TEST = {
374         'url': 'https://tv.nrk.no/serie/backstage/sesong/1/episode/8',
375         'info_dict': {
376             'id': 'MSUI14000816AA',
377             'ext': 'mp4',
378             'title': 'Backstage 8:30',
379             'description': 'md5:de6ca5d5a2d56849e4021f2bf2850df4',
380             'duration': 1320,
381             'series': 'Backstage',
382             'season_number': 1,
383             'episode_number': 8,
384             'episode': '8:30',
385         },
386         'params': {
387             'skip_download': True,
388         },
389     }
390
391     def _real_extract(self, url):
392         display_id = self._match_id(url)
393
394         webpage = self._download_webpage(url, display_id)
395
396         nrk_id = self._parse_json(
397             self._search_regex(JSON_LD_RE, webpage, 'JSON-LD', group='json_ld'),
398             display_id)['@id']
399
400         assert re.match(NRKTVIE._EPISODE_RE, nrk_id)
401         return self.url_result(
402             'nrk:%s' % nrk_id, ie=NRKIE.ie_key(), video_id=nrk_id)
403
404
405 class NRKTVSerieBaseIE(InfoExtractor):
406     def _extract_series(self, webpage, display_id, fatal=True):
407         config = self._parse_json(
408             self._search_regex(
409                 r'({.+?})\s*,\s*"[^"]+"\s*\)\s*</script>', webpage, 'config',
410                 default='{}' if not fatal else NO_DEFAULT),
411             display_id, fatal=False)
412         if not config:
413             return
414         return try_get(config, lambda x: x['series'], dict)
415
416     def _extract_episodes(self, season):
417         entries = []
418         if not isinstance(season, dict):
419             return entries
420         episodes = season.get('episodes')
421         if not isinstance(episodes, list):
422             return entries
423         for episode in episodes:
424             nrk_id = episode.get('prfId')
425             if not nrk_id or not isinstance(nrk_id, compat_str):
426                 continue
427             entries.append(self.url_result(
428                 'nrk:%s' % nrk_id, ie=NRKIE.ie_key(), video_id=nrk_id))
429         return entries
430
431
432 class NRKTVSeasonIE(NRKTVSerieBaseIE):
433     _VALID_URL = r'https?://tv\.nrk\.no/serie/[^/]+/sesong/(?P<id>\d+)'
434     _TEST = {
435         'url': 'https://tv.nrk.no/serie/backstage/sesong/1',
436         'info_dict': {
437             'id': '1',
438             'title': 'Sesong 1',
439         },
440         'playlist_mincount': 30,
441     }
442
443     @classmethod
444     def suitable(cls, url):
445         return (False if NRKTVIE.suitable(url) or NRKTVEpisodeIE.suitable(url)
446                 else super(NRKTVSeasonIE, cls).suitable(url))
447
448     def _real_extract(self, url):
449         display_id = self._match_id(url)
450
451         webpage = self._download_webpage(url, display_id)
452
453         series = self._extract_series(webpage, display_id)
454
455         season = next(
456             s for s in series['seasons']
457             if int(display_id) == s.get('seasonNumber'))
458
459         title = try_get(season, lambda x: x['titles']['title'], compat_str)
460         return self.playlist_result(
461             self._extract_episodes(season), display_id, title)
462
463
464 class NRKTVSeriesIE(NRKTVSerieBaseIE):
465     _VALID_URL = r'https?://(?:tv|radio)\.nrk(?:super)?\.no/serie/(?P<id>[^/]+)'
466     _ITEM_RE = r'(?:data-season=["\']|id=["\']season-)(?P<id>\d+)'
467     _TESTS = [{
468         # new layout
469         'url': 'https://tv.nrk.no/serie/backstage',
470         'info_dict': {
471             'id': 'backstage',
472             'title': 'Backstage',
473             'description': 'md5:c3ec3a35736fca0f9e1207b5511143d3',
474         },
475         'playlist_mincount': 60,
476     }, {
477         # old layout
478         'url': 'https://tv.nrk.no/serie/groenn-glede',
479         'info_dict': {
480             'id': 'groenn-glede',
481             'title': 'Grønn glede',
482             'description': 'md5:7576e92ae7f65da6993cf90ee29e4608',
483         },
484         'playlist_mincount': 9,
485     }, {
486         'url': 'http://tv.nrksuper.no/serie/labyrint',
487         'info_dict': {
488             'id': 'labyrint',
489             'title': 'Labyrint',
490             'description': 'md5:58afd450974c89e27d5a19212eee7115',
491         },
492         'playlist_mincount': 3,
493     }, {
494         'url': 'https://tv.nrk.no/serie/broedrene-dal-og-spektralsteinene',
495         'only_matching': True,
496     }, {
497         'url': 'https://tv.nrk.no/serie/saving-the-human-race',
498         'only_matching': True,
499     }, {
500         'url': 'https://tv.nrk.no/serie/postmann-pat',
501         'only_matching': True,
502     }]
503
504     @classmethod
505     def suitable(cls, url):
506         return (
507             False if any(ie.suitable(url)
508                          for ie in (NRKTVIE, NRKTVEpisodeIE, NRKTVSeasonIE))
509             else super(NRKTVSeriesIE, cls).suitable(url))
510
511     def _real_extract(self, url):
512         series_id = self._match_id(url)
513
514         webpage = self._download_webpage(url, series_id)
515
516         # New layout (e.g. https://tv.nrk.no/serie/backstage)
517         series = self._extract_series(webpage, series_id, fatal=False)
518         if series:
519             title = try_get(series, lambda x: x['titles']['title'], compat_str)
520             description = try_get(
521                 series, lambda x: x['titles']['subtitle'], compat_str)
522             entries = []
523             for season in series['seasons']:
524                 entries.extend(self._extract_episodes(season))
525             return self.playlist_result(entries, series_id, title, description)
526
527         # Old layout (e.g. https://tv.nrk.no/serie/groenn-glede)
528         entries = [
529             self.url_result(
530                 'https://tv.nrk.no/program/Episodes/{series}/{season}'.format(
531                     series=series_id, season=season_id))
532             for season_id in re.findall(self._ITEM_RE, webpage)
533         ]
534
535         title = self._html_search_meta(
536             'seriestitle', webpage,
537             'title', default=None) or self._og_search_title(
538             webpage, fatal=False)
539
540         description = self._html_search_meta(
541             'series_description', webpage,
542             'description', default=None) or self._og_search_description(webpage)
543
544         return self.playlist_result(entries, series_id, title, description)
545
546
547 class NRKTVDirekteIE(NRKTVIE):
548     IE_DESC = 'NRK TV Direkte and NRK Radio Direkte'
549     _VALID_URL = r'https?://(?:tv|radio)\.nrk\.no/direkte/(?P<id>[^/?#&]+)'
550
551     _TESTS = [{
552         'url': 'https://tv.nrk.no/direkte/nrk1',
553         'only_matching': True,
554     }, {
555         'url': 'https://radio.nrk.no/direkte/p1_oslo_akershus',
556         'only_matching': True,
557     }]
558
559
560 class NRKPlaylistBaseIE(InfoExtractor):
561     def _extract_description(self, webpage):
562         pass
563
564     def _real_extract(self, url):
565         playlist_id = self._match_id(url)
566
567         webpage = self._download_webpage(url, playlist_id)
568
569         entries = [
570             self.url_result('nrk:%s' % video_id, NRKIE.ie_key())
571             for video_id in re.findall(self._ITEM_RE, webpage)
572         ]
573
574         playlist_title = self. _extract_title(webpage)
575         playlist_description = self._extract_description(webpage)
576
577         return self.playlist_result(
578             entries, playlist_id, playlist_title, playlist_description)
579
580
581 class NRKPlaylistIE(NRKPlaylistBaseIE):
582     _VALID_URL = r'https?://(?:www\.)?nrk\.no/(?!video|skole)(?:[^/]+/)+(?P<id>[^/]+)'
583     _ITEM_RE = r'class="[^"]*\brich\b[^"]*"[^>]+data-video-id="([^"]+)"'
584     _TESTS = [{
585         'url': 'http://www.nrk.no/troms/gjenopplev-den-historiske-solformorkelsen-1.12270763',
586         'info_dict': {
587             'id': 'gjenopplev-den-historiske-solformorkelsen-1.12270763',
588             'title': 'Gjenopplev den historiske solformørkelsen',
589             'description': 'md5:c2df8ea3bac5654a26fc2834a542feed',
590         },
591         'playlist_count': 2,
592     }, {
593         'url': 'http://www.nrk.no/kultur/bok/rivertonprisen-til-karin-fossum-1.12266449',
594         'info_dict': {
595             'id': 'rivertonprisen-til-karin-fossum-1.12266449',
596             'title': 'Rivertonprisen til Karin Fossum',
597             'description': 'Første kvinne på 15 år til å vinne krimlitteraturprisen.',
598         },
599         'playlist_count': 5,
600     }]
601
602     def _extract_title(self, webpage):
603         return self._og_search_title(webpage, fatal=False)
604
605     def _extract_description(self, webpage):
606         return self._og_search_description(webpage)
607
608
609 class NRKTVEpisodesIE(NRKPlaylistBaseIE):
610     _VALID_URL = r'https?://tv\.nrk\.no/program/[Ee]pisodes/[^/]+/(?P<id>\d+)'
611     _ITEM_RE = r'data-episode=["\']%s' % NRKTVIE._EPISODE_RE
612     _TESTS = [{
613         'url': 'https://tv.nrk.no/program/episodes/nytt-paa-nytt/69031',
614         'info_dict': {
615             'id': '69031',
616             'title': 'Nytt på nytt, sesong: 201210',
617         },
618         'playlist_count': 4,
619     }]
620
621     def _extract_title(self, webpage):
622         return self._html_search_regex(
623             r'<h1>([^<]+)</h1>', webpage, 'title', fatal=False)
624
625
626 class NRKSkoleIE(InfoExtractor):
627     IE_DESC = 'NRK Skole'
628     _VALID_URL = r'https?://(?:www\.)?nrk\.no/skole/?\?.*\bmediaId=(?P<id>\d+)'
629
630     _TESTS = [{
631         'url': 'https://www.nrk.no/skole/?page=search&q=&mediaId=14099',
632         'md5': '6bc936b01f9dd8ed45bc58b252b2d9b6',
633         'info_dict': {
634             'id': '6021',
635             'ext': 'mp4',
636             'title': 'Genetikk og eneggede tvillinger',
637             'description': 'md5:3aca25dcf38ec30f0363428d2b265f8d',
638             'duration': 399,
639         },
640     }, {
641         'url': 'https://www.nrk.no/skole/?page=objectives&subject=naturfag&objective=K15114&mediaId=19355',
642         'only_matching': True,
643     }]
644
645     def _real_extract(self, url):
646         video_id = self._match_id(url)
647
648         webpage = self._download_webpage(
649             'https://mimir.nrk.no/plugin/1.0/static?mediaId=%s' % video_id,
650             video_id)
651
652         nrk_id = self._parse_json(
653             self._search_regex(
654                 r'<script[^>]+type=["\']application/json["\'][^>]*>({.+?})</script>',
655                 webpage, 'application json'),
656             video_id)['activeMedia']['psId']
657
658         return self.url_result('nrk:%s' % nrk_id)