[nrk] Relax _VALID_URL (closes #10928)
[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 compat_urllib_parse_unquote
8 from ..utils import (
9     ExtractorError,
10     int_or_none,
11     parse_age_limit,
12     parse_duration,
13 )
14
15
16 class NRKBaseIE(InfoExtractor):
17     def _real_extract(self, url):
18         video_id = self._match_id(url)
19
20         data = self._download_json(
21             'http://%s/mediaelement/%s' % (self._API_HOST, video_id),
22             video_id, 'Downloading mediaelement JSON')
23
24         title = data.get('fullTitle') or data.get('mainTitle') or data['title']
25         video_id = data.get('id') or video_id
26
27         entries = []
28
29         media_assets = data.get('mediaAssets')
30         if media_assets and isinstance(media_assets, list):
31             def video_id_and_title(idx):
32                 return ((video_id, title) if len(media_assets) == 1
33                         else ('%s-%d' % (video_id, idx), '%s (Part %d)' % (title, idx)))
34             for num, asset in enumerate(media_assets, 1):
35                 asset_url = asset.get('url')
36                 if not asset_url:
37                     continue
38                 formats = self._extract_akamai_formats(asset_url, video_id)
39                 if not formats:
40                     continue
41                 self._sort_formats(formats)
42                 entry_id, entry_title = video_id_and_title(num)
43                 duration = parse_duration(asset.get('duration'))
44                 subtitles = {}
45                 for subtitle in ('webVtt', 'timedText'):
46                     subtitle_url = asset.get('%sSubtitlesUrl' % subtitle)
47                     if subtitle_url:
48                         subtitles.setdefault('no', []).append({
49                             'url': compat_urllib_parse_unquote(subtitle_url)
50                         })
51                 entries.append({
52                     'id': asset.get('carrierId') or entry_id,
53                     'title': entry_title,
54                     'duration': duration,
55                     'subtitles': subtitles,
56                     'formats': formats,
57                 })
58
59         if not entries:
60             media_url = data.get('mediaUrl')
61             if media_url:
62                 formats = self._extract_akamai_formats(media_url, video_id)
63                 self._sort_formats(formats)
64                 duration = parse_duration(data.get('duration'))
65                 entries = [{
66                     'id': video_id,
67                     'title': title,
68                     'duration': duration,
69                     'formats': formats,
70                 }]
71
72         if not entries:
73             if data.get('usageRights', {}).get('isGeoBlocked'):
74                 raise ExtractorError(
75                     'NRK har ikke rettigheter til å vise dette programmet utenfor Norge',
76                     expected=True)
77
78         conviva = data.get('convivaStatistics') or {}
79         series = conviva.get('seriesName') or data.get('seriesTitle')
80         episode = conviva.get('episodeName') or data.get('episodeNumberOrDate')
81
82         thumbnails = None
83         images = data.get('images')
84         if images and isinstance(images, dict):
85             web_images = images.get('webImages')
86             if isinstance(web_images, list):
87                 thumbnails = [{
88                     'url': image['imageUrl'],
89                     'width': int_or_none(image.get('width')),
90                     'height': int_or_none(image.get('height')),
91                 } for image in web_images if image.get('imageUrl')]
92
93         description = data.get('description')
94
95         common_info = {
96             'description': description,
97             'series': series,
98             'episode': episode,
99             'age_limit': parse_age_limit(data.get('legalAge')),
100             'thumbnails': thumbnails,
101         }
102
103         vcodec = 'none' if data.get('mediaType') == 'Audio' else None
104
105         # TODO: extract chapters when https://github.com/rg3/youtube-dl/pull/9409 is merged
106
107         for entry in entries:
108             entry.update(common_info)
109             for f in entry['formats']:
110                 f['vcodec'] = vcodec
111
112         return self.playlist_result(entries, video_id, title, description)
113
114
115 class NRKIE(NRKBaseIE):
116     _VALID_URL = r'(?:nrk:|https?://(?:www\.)?nrk\.no/video/PS\*)(?P<id>[^/?#&]+)'
117     _API_HOST = 'v8.psapi.nrk.no'
118     _TESTS = [{
119         # video
120         'url': 'http://www.nrk.no/video/PS*150533',
121         'md5': '2f7f6eeb2aacdd99885f355428715cfa',
122         'info_dict': {
123             'id': '150533',
124             'ext': 'mp4',
125             'title': 'Dompap og andre fugler i Piip-Show',
126             'description': 'md5:d9261ba34c43b61c812cb6b0269a5c8f',
127             'duration': 263,
128         }
129     }, {
130         # audio
131         'url': 'http://www.nrk.no/video/PS*154915',
132         # MD5 is unstable
133         'info_dict': {
134             'id': '154915',
135             'ext': 'flv',
136             'title': 'Slik høres internett ut når du er blind',
137             'description': 'md5:a621f5cc1bd75c8d5104cb048c6b8568',
138             'duration': 20,
139         }
140     }, {
141         'url': 'nrk:ecc1b952-96dc-4a98-81b9-5296dc7a98d9',
142         'only_matching': True,
143     }]
144
145
146 class NRKTVIE(NRKBaseIE):
147     IE_DESC = 'NRK TV and NRK Radio'
148     _VALID_URL = r'https?://(?:tv|radio)\.nrk(?:super)?\.no/(?:serie/[^/]+|program)/(?P<id>[a-zA-Z]{4}\d{8})(?:/\d{2}-\d{2}-\d{4})?(?:#del=(?P<part_id>\d+))?'
149     _API_HOST = 'psapi-we.nrk.no'
150
151     _TESTS = [{
152         'url': 'https://tv.nrk.no/serie/20-spoersmaal-tv/MUHH48000314/23-05-2014',
153         'md5': '4e9ca6629f09e588ed240fb11619922a',
154         'info_dict': {
155             'id': 'MUHH48000314AA',
156             'ext': 'mp4',
157             'title': '20 spørsmål 23.05.2014',
158             'description': 'md5:bdea103bc35494c143c6a9acdd84887a',
159             'duration': 1741,
160         },
161     }, {
162         'url': 'https://tv.nrk.no/program/mdfp15000514',
163         'md5': '43d0be26663d380603a9cf0c24366531',
164         'info_dict': {
165             'id': 'MDFP15000514CA',
166             'ext': 'mp4',
167             'title': 'Grunnlovsjubiléet - Stor ståhei for ingenting 24.05.2014',
168             'description': 'md5:89290c5ccde1b3a24bb8050ab67fe1db',
169             'duration': 4605,
170         },
171     }, {
172         # single playlist video
173         'url': 'https://tv.nrk.no/serie/tour-de-ski/MSPO40010515/06-01-2015#del=2',
174         'md5': 'adbd1dbd813edaf532b0a253780719c2',
175         'info_dict': {
176             'id': 'MSPO40010515-part2',
177             'ext': 'flv',
178             'title': 'Tour de Ski: Sprint fri teknikk, kvinner og menn 06.01.2015 (del 2:2)',
179             'description': 'md5:238b67b97a4ac7d7b4bf0edf8cc57d26',
180         },
181         'skip': 'Only works from Norway',
182     }, {
183         'url': 'https://tv.nrk.no/serie/tour-de-ski/MSPO40010515/06-01-2015',
184         'playlist': [{
185             'md5': '9480285eff92d64f06e02a5367970a7a',
186             'info_dict': {
187                 'id': 'MSPO40010515-part1',
188                 'ext': 'flv',
189                 'title': 'Tour de Ski: Sprint fri teknikk, kvinner og menn 06.01.2015 (del 1:2)',
190                 'description': 'md5:238b67b97a4ac7d7b4bf0edf8cc57d26',
191             },
192         }, {
193             'md5': 'adbd1dbd813edaf532b0a253780719c2',
194             'info_dict': {
195                 'id': 'MSPO40010515-part2',
196                 'ext': 'flv',
197                 'title': 'Tour de Ski: Sprint fri teknikk, kvinner og menn 06.01.2015 (del 2:2)',
198                 'description': 'md5:238b67b97a4ac7d7b4bf0edf8cc57d26',
199             },
200         }],
201         'info_dict': {
202             'id': 'MSPO40010515',
203             'title': 'Tour de Ski: Sprint fri teknikk, kvinner og menn',
204             'description': 'md5:238b67b97a4ac7d7b4bf0edf8cc57d26',
205             'duration': 6947.52,
206         },
207         'skip': 'Only works from Norway',
208     }, {
209         'url': 'https://radio.nrk.no/serie/dagsnytt/NPUB21019315/12-07-2015#',
210         'only_matching': True,
211     }]
212
213
214 class NRKPlaylistIE(InfoExtractor):
215     _VALID_URL = r'https?://(?:www\.)?nrk\.no/(?!video|skole)(?:[^/]+/)+(?P<id>[^/]+)'
216
217     _TESTS = [{
218         'url': 'http://www.nrk.no/troms/gjenopplev-den-historiske-solformorkelsen-1.12270763',
219         'info_dict': {
220             'id': 'gjenopplev-den-historiske-solformorkelsen-1.12270763',
221             'title': 'Gjenopplev den historiske solformørkelsen',
222             'description': 'md5:c2df8ea3bac5654a26fc2834a542feed',
223         },
224         'playlist_count': 2,
225     }, {
226         'url': 'http://www.nrk.no/kultur/bok/rivertonprisen-til-karin-fossum-1.12266449',
227         'info_dict': {
228             'id': 'rivertonprisen-til-karin-fossum-1.12266449',
229             'title': 'Rivertonprisen til Karin Fossum',
230             'description': 'Første kvinne på 15 år til å vinne krimlitteraturprisen.',
231         },
232         'playlist_count': 5,
233     }]
234
235     def _real_extract(self, url):
236         playlist_id = self._match_id(url)
237
238         webpage = self._download_webpage(url, playlist_id)
239
240         entries = [
241             self.url_result('nrk:%s' % video_id, 'NRK')
242             for video_id in re.findall(
243                 r'class="[^"]*\brich\b[^"]*"[^>]+data-video-id="([^"]+)"',
244                 webpage)
245         ]
246
247         playlist_title = self._og_search_title(webpage)
248         playlist_description = self._og_search_description(webpage)
249
250         return self.playlist_result(
251             entries, playlist_id, playlist_title, playlist_description)
252
253
254 class NRKSkoleIE(InfoExtractor):
255     IE_DESC = 'NRK Skole'
256     _VALID_URL = r'https?://(?:www\.)?nrk\.no/skole/?\?.*\bmediaId=(?P<id>\d+)'
257
258     _TESTS = [{
259         'url': 'https://www.nrk.no/skole/?page=search&q=&mediaId=14099',
260         'md5': '6bc936b01f9dd8ed45bc58b252b2d9b6',
261         'info_dict': {
262             'id': '6021',
263             'ext': 'mp4',
264             'title': 'Genetikk og eneggede tvillinger',
265             'description': 'md5:3aca25dcf38ec30f0363428d2b265f8d',
266             'duration': 399,
267         },
268     }, {
269         'url': 'https://www.nrk.no/skole/?page=objectives&subject=naturfag&objective=K15114&mediaId=19355',
270         'only_matching': True,
271     }]
272
273     def _real_extract(self, url):
274         video_id = self._match_id(url)
275
276         webpage = self._download_webpage(
277             'https://mimir.nrk.no/plugin/1.0/static?mediaId=%s' % video_id,
278             video_id)
279
280         nrk_id = self._parse_json(
281             self._search_regex(
282                 r'<script[^>]+type=["\']application/json["\'][^>]*>({.+?})</script>',
283                 webpage, 'application json'),
284             video_id)['activeMedia']['psId']
285
286         return self.url_result('nrk:%s' % nrk_id)