]> jfr.im git - yt-dlp.git/blame - yt_dlp/extractor/svt.py
[extractor] Fix bug in 617f658b7ec1193749848c1b7343acab125dbc46
[yt-dlp.git] / yt_dlp / extractor / svt.py
CommitLineData
df5ae3eb
S
1import re
2
1309b396 3from .common import InfoExtractor
8e4d3f83 4from ..compat import compat_str
1309b396
PH
5from ..utils import (
6 determine_ext,
e4f90ea0 7 dict_get,
23bdae09 8 int_or_none,
a0566bbf 9 unified_timestamp,
43e79947 10 str_or_none,
7b393f9c 11 strip_or_none,
23bdae09 12 try_get,
1309b396
PH
13)
14
15
79998cd5 16class SVTBaseIE(InfoExtractor):
4248dad9 17 _GEO_COUNTRIES = ['SE']
6d4c2597 18
23bdae09 19 def _extract_video(self, video_info, video_id):
488ff2dd 20 is_live = dict_get(video_info, ('live', 'simulcast'), default=False)
21 m3u8_protocol = 'm3u8' if is_live else 'm3u8_native'
1309b396 22 formats = []
3f047fc4 23 subtitles = {}
1309b396 24 for vr in video_info['videoReferences']:
21d21b0c 25 player_type = vr.get('playerType') or vr.get('format')
1309b396 26 vurl = vr['url']
df5ae3eb
S
27 ext = determine_ext(vurl)
28 if ext == 'm3u8':
3f047fc4 29 fmts, subs = self._extract_m3u8_formats_and_subtitles(
1309b396 30 vurl, video_id,
488ff2dd 31 ext='mp4', entry_protocol=m3u8_protocol,
3f047fc4
F
32 m3u8_id=player_type, fatal=False)
33 formats.extend(fmts)
34 self._merge_subtitles(subs, target=subtitles)
df5ae3eb
S
35 elif ext == 'f4m':
36 formats.extend(self._extract_f4m_formats(
37 vurl + '?hdcore=3.3.0', video_id,
edfd9351 38 f4m_id=player_type, fatal=False))
39 elif ext == 'mpd':
3f047fc4
F
40 fmts, subs = self._extract_mpd_formats_and_subtitles(
41 vurl, video_id, mpd_id=player_type, fatal=False)
42 formats.extend(fmts)
43 self._merge_subtitles(subs, target=subtitles)
1309b396
PH
44 else:
45 formats.append({
edfd9351 46 'format_id': player_type,
1309b396
PH
47 'url': vurl,
48 })
a0566bbf 49 rights = try_get(video_info, lambda x: x['rights'], dict) or {}
50 if not formats and rights.get('geoBlockedSweden'):
04d906ea 51 self.raise_geo_restricted(
4248dad9 52 'This video is only available in Sweden',
b7da73eb 53 countries=self._GEO_COUNTRIES, metadata_available=True)
1309b396
PH
54 self._sort_formats(formats)
55
e4f90ea0 56 subtitle_references = dict_get(video_info, ('subtitles', 'subtitleReferences'))
594c4d79
S
57 if isinstance(subtitle_references, list):
58 for sr in subtitle_references:
59 subtitle_url = sr.get('url')
e4f90ea0 60 subtitle_lang = sr.get('language', 'sv')
594c4d79 61 if subtitle_url:
3f047fc4
F
62 sub = {
63 'url': subtitle_url,
64 }
e4f90ea0 65 if determine_ext(subtitle_url) == 'm3u8':
3f047fc4
F
66 # XXX: no way of testing, is it ever hit?
67 sub['ext'] = 'vtt'
68 subtitles.setdefault(subtitle_lang, []).append(sub)
1f16b958 69
23bdae09
S
70 title = video_info.get('title')
71
72 series = video_info.get('programTitle')
73 season_number = int_or_none(video_info.get('season'))
74 episode = video_info.get('episodeTitle')
75 episode_number = int_or_none(video_info.get('episodeNumber'))
76
a0566bbf 77 timestamp = unified_timestamp(rights.get('validFrom'))
23bdae09
S
78 duration = int_or_none(dict_get(video_info, ('materialLength', 'contentDuration')))
79 age_limit = None
80 adult = dict_get(
81 video_info, ('inappropriateForChildren', 'blockedForChildren'),
82 skip_false_values=False)
83 if adult is not None:
84 age_limit = 18 if adult else 0
1309b396
PH
85
86 return {
87 'id': video_id,
23bdae09 88 'title': title,
1309b396 89 'formats': formats,
1f16b958 90 'subtitles': subtitles,
1309b396 91 'duration': duration,
a0566bbf 92 'timestamp': timestamp,
df5ae3eb 93 'age_limit': age_limit,
23bdae09
S
94 'series': series,
95 'season_number': season_number,
96 'episode': episode,
97 'episode_number': episode_number,
488ff2dd 98 'is_live': is_live,
1309b396 99 }
79998cd5
S
100
101
102class SVTIE(SVTBaseIE):
103 _VALID_URL = r'https?://(?:www\.)?svt\.se/wd\?(?:.*?&)?widgetId=(?P<widget_id>\d+)&.*?\barticleId=(?P<id>\d+)'
104 _TEST = {
105 'url': 'http://www.svt.se/wd?widgetId=23991&sectionId=541&articleId=2900353&type=embed&contextSectionId=123&autostart=false',
e4f90ea0 106 'md5': '33e9a5d8f646523ce0868ecfb0eed77d',
79998cd5
S
107 'info_dict': {
108 'id': '2900353',
e4f90ea0
YCH
109 'ext': 'mp4',
110 'title': 'Stjärnorna skojar till det - under SVT-intervjun',
79998cd5
S
111 'duration': 27,
112 'age_limit': 0,
113 },
114 }
115
bab19a8e
S
116 @staticmethod
117 def _extract_url(webpage):
118 mobj = re.search(
119 r'(?:<iframe src|href)="(?P<url>%s[^"]*)"' % SVTIE._VALID_URL, webpage)
120 if mobj:
121 return mobj.group('url')
122
79998cd5 123 def _real_extract(self, url):
5ad28e7f 124 mobj = self._match_valid_url(url)
79998cd5
S
125 widget_id = mobj.group('widget_id')
126 article_id = mobj.group('id')
e4f90ea0
YCH
127
128 info = self._download_json(
79998cd5
S
129 'http://www.svt.se/wd?widgetId=%s&articleId=%s&format=json&type=embed&output=json' % (widget_id, article_id),
130 article_id)
131
23bdae09 132 info_dict = self._extract_video(info['video'], article_id)
e4f90ea0
YCH
133 info_dict['title'] = info['context']['title']
134 return info_dict
135
79998cd5 136
1236ac6b
S
137class SVTPlayBaseIE(SVTBaseIE):
138 _SVTPLAY_RE = r'root\s*\[\s*(["\'])_*svtplay\1\s*\]\s*=\s*(?P<json>{.+?})\s*;\s*\n'
139
140
141class SVTPlayIE(SVTPlayBaseIE):
79998cd5 142 IE_DESC = 'SVT Play and Öppet arkiv'
7b393f9c
S
143 _VALID_URL = r'''(?x)
144 (?:
a0566bbf 145 (?:
146 svt:|
147 https?://(?:www\.)?svt\.se/barnkanalen/barnplay/[^/]+/
148 )
149 (?P<svt_id>[^/?#&]+)|
7b393f9c 150 https?://(?:www\.)?(?:svtplay|oppetarkiv)\.se/(?:video|klipp|kanaler)/(?P<id>[^/?#&]+)
41d1cca3 151 (?:.*?(?:modalId|id)=(?P<modal_id>[\da-zA-Z-]+))?
7b393f9c
S
152 )
153 '''
23bdae09 154 _TESTS = [{
421a4595 155 'url': 'https://www.svtplay.se/video/30479064',
a0566bbf 156 'md5': '2382036fd6f8c994856c323fe51c426e',
79998cd5 157 'info_dict': {
421a4595 158 'id': '8zVbDPA',
594c4d79 159 'ext': 'mp4',
421a4595 160 'title': 'Designdrömmar i Stenungsund',
161 'timestamp': 1615770000,
162 'upload_date': '20210315',
163 'duration': 3519,
a0566bbf 164 'thumbnail': r're:^https?://(?:.*[\.-]jpg|www.svtstatic.se/image/.*)$',
79998cd5 165 'age_limit': 0,
594c4d79
S
166 'subtitles': {
167 'sv': [{
a0566bbf 168 'ext': 'vtt',
594c4d79
S
169 }]
170 },
79998cd5 171 },
a0566bbf 172 'params': {
a0566bbf 173 # skip for now due to download test asserts that segment is > 10000 bytes and svt uses
174 # init segments that are smaller
175 # AssertionError: Expected test_SVTPlay_jNwpV9P.mp4 to be at least 9.77KiB, but it's only 864.00B
176 'skip_download': True,
177 },
421a4595 178 }, {
179 'url': 'https://www.svtplay.se/video/30479064/husdrommar/husdrommar-sasong-8-designdrommar-i-stenungsund?modalId=8zVbDPA',
180 'only_matching': True,
41d1cca3 181 }, {
182 'url': 'https://www.svtplay.se/video/30684086/rapport/rapport-24-apr-18-00-7?id=e72gVpa',
183 'only_matching': True,
23bdae09
S
184 }, {
185 # geo restricted to Sweden
186 'url': 'http://www.oppetarkiv.se/video/5219710/trollflojten',
187 'only_matching': True,
3b34ab53
S
188 }, {
189 'url': 'http://www.svtplay.se/klipp/9023742/stopptid-om-bjorn-borg',
190 'only_matching': True,
488ff2dd 191 }, {
192 'url': 'https://www.svtplay.se/kanaler/svt1',
193 'only_matching': True,
7b393f9c
S
194 }, {
195 'url': 'svt:1376446-003A',
196 'only_matching': True,
197 }, {
198 'url': 'svt:14278044',
199 'only_matching': True,
a0566bbf 200 }, {
201 'url': 'https://www.svt.se/barnkanalen/barnplay/kar/eWv5MLX/',
202 'only_matching': True,
203 }, {
204 'url': 'svt:eWv5MLX',
205 'only_matching': True,
23bdae09 206 }]
e4f90ea0 207
7b393f9c
S
208 def _extract_by_video_id(self, video_id, webpage=None):
209 data = self._download_json(
e6a25fea 210 'https://api.svt.se/videoplayer-api/video/%s' % video_id,
7b393f9c
S
211 video_id, headers=self.geo_verification_headers())
212 info_dict = self._extract_video(data, video_id)
213 if not info_dict.get('title'):
214 title = dict_get(info_dict, ('episode', 'series'))
215 if not title and webpage:
216 title = re.sub(
217 r'\s*\|\s*.+?$', '', self._og_search_title(webpage))
218 if not title:
219 title = video_id
220 info_dict['title'] = title
7b393f9c
S
221 return info_dict
222
79998cd5 223 def _real_extract(self, url):
5ad28e7f 224 mobj = self._match_valid_url(url)
421a4595 225 video_id = mobj.group('id')
226 svt_id = mobj.group('svt_id') or mobj.group('modal_id')
7b393f9c
S
227
228 if svt_id:
229 return self._extract_by_video_id(svt_id)
e4f90ea0
YCH
230
231 webpage = self._download_webpage(url, video_id)
232
23bdae09
S
233 data = self._parse_json(
234 self._search_regex(
1236ac6b
S
235 self._SVTPLAY_RE, webpage, 'embedded data', default='{}',
236 group='json'),
23bdae09 237 video_id, fatal=False)
e4f90ea0
YCH
238
239 thumbnail = self._og_search_thumbnail(webpage)
240
23bdae09
S
241 if data:
242 video_info = try_get(
243 data, lambda x: x['context']['dispatcher']['stores']['VideoTitlePageStore']['data']['video'],
244 dict)
245 if video_info:
246 info_dict = self._extract_video(video_info, video_id)
247 info_dict.update({
248 'title': data['context']['dispatcher']['stores']['MetaStore']['title'],
249 'thumbnail': thumbnail,
250 })
251 return info_dict
252
5ed05f26
S
253 svt_id = try_get(
254 data, lambda x: x['statistics']['dataLake']['content']['id'],
255 compat_str)
256
257 if not svt_id:
258 svt_id = self._search_regex(
259 (r'<video[^>]+data-video-id=["\']([\da-zA-Z-]+)',
41d1cca3 260 r'<[^>]+\bdata-rt=["\']top-area-play-button["\'][^>]+\bhref=["\'][^"\']*video/%s/[^"\']*\b(?:modalId|id)=([\da-zA-Z-]+)' % re.escape(video_id),
95c98100 261 r'["\']videoSvtId["\']\s*:\s*["\']([\da-zA-Z-]+)',
2181983a 262 r'["\']videoSvtId\\?["\']\s*:\s*\\?["\']([\da-zA-Z-]+)',
95c98100 263 r'"content"\s*:\s*{.*?"id"\s*:\s*"([\da-zA-Z-]+)"',
2181983a 264 r'["\']svtId["\']\s*:\s*["\']([\da-zA-Z-]+)',
265 r'["\']svtId\\?["\']\s*:\s*\\?["\']([\da-zA-Z-]+)'),
5ed05f26 266 webpage, 'video id')
23bdae09 267
a0566bbf 268 info_dict = self._extract_by_video_id(svt_id, webpage)
269 info_dict['thumbnail'] = thumbnail
270
271 return info_dict
fd97fa7b
MW
272
273
1236ac6b 274class SVTSeriesIE(SVTPlayBaseIE):
8e4d3f83 275 _VALID_URL = r'https?://(?:www\.)?svtplay\.se/(?P<id>[^/?&#]+)(?:.+?\btab=(?P<season_slug>[^&#]+))?'
fd97fa7b
MW
276 _TESTS = [{
277 'url': 'https://www.svtplay.se/rederiet',
278 'info_dict': {
8e4d3f83 279 'id': '14445680',
fd97fa7b 280 'title': 'Rederiet',
8e4d3f83 281 'description': 'md5:d9fdfff17f5d8f73468176ecd2836039',
fd97fa7b
MW
282 },
283 'playlist_mincount': 318,
df146eb2 284 }, {
8e4d3f83 285 'url': 'https://www.svtplay.se/rederiet?tab=season-2-14445680',
df146eb2 286 'info_dict': {
8e4d3f83 287 'id': 'season-2-14445680',
df146eb2 288 'title': 'Rederiet - Säsong 2',
8e4d3f83 289 'description': 'md5:d9fdfff17f5d8f73468176ecd2836039',
df146eb2 290 },
8e4d3f83 291 'playlist_mincount': 12,
fd97fa7b
MW
292 }]
293
294 @classmethod
295 def suitable(cls, url):
b71bb3ba 296 return False if SVTIE.suitable(url) or SVTPlayIE.suitable(url) else super(SVTSeriesIE, cls).suitable(url)
fd97fa7b
MW
297
298 def _real_extract(self, url):
5ad28e7f 299 series_slug, season_id = self._match_valid_url(url).groups()
8e4d3f83
RA
300
301 series = self._download_json(
302 'https://api.svt.se/contento/graphql', series_slug,
303 'Downloading series page', query={
304 'query': '''{
305 listablesBySlug(slugs: ["%s"]) {
306 associatedContent(include: [productionPeriod, season]) {
307 items {
308 item {
309 ... on Episode {
310 videoSvtId
311 }
312 }
313 }
314 id
315 name
316 }
317 id
318 longDescription
319 name
320 shortDescription
321 }
322}''' % series_slug,
323 })['data']['listablesBySlug'][0]
df146eb2
S
324
325 season_name = None
fd97fa7b
MW
326
327 entries = []
8e4d3f83 328 for season in series['associatedContent']:
df146eb2
S
329 if not isinstance(season, dict):
330 continue
8e4d3f83
RA
331 if season_id:
332 if season.get('id') != season_id:
df146eb2
S
333 continue
334 season_name = season.get('name')
8e4d3f83
RA
335 items = season.get('items')
336 if not isinstance(items, list):
fd97fa7b 337 continue
8e4d3f83
RA
338 for item in items:
339 video = item.get('item') or {}
340 content_id = video.get('videoSvtId')
341 if not content_id or not isinstance(content_id, compat_str):
fd97fa7b 342 continue
8e4d3f83
RA
343 entries.append(self.url_result(
344 'svt:' + content_id, SVTPlayIE.ie_key(), content_id))
b71bb3ba 345
8e4d3f83
RA
346 title = series.get('name')
347 season_name = season_name or season_id
df146eb2
S
348
349 if title and season_name:
350 title = '%s - %s' % (title, season_name)
8e4d3f83
RA
351 elif season_id:
352 title = season_id
df146eb2 353
fd97fa7b 354 return self.playlist_result(
8e4d3f83
RA
355 entries, season_id or series.get('id'), title,
356 dict_get(series, ('longDescription', 'shortDescription')))
7b393f9c
S
357
358
359class SVTPageIE(InfoExtractor):
43e79947 360 _VALID_URL = r'https?://(?:www\.)?svt\.se/(?P<path>(?:[^/]+/)*(?P<id>[^/?&#]+))'
7b393f9c 361 _TESTS = [{
43e79947 362 'url': 'https://www.svt.se/sport/ishockey/bakom-masken-lehners-kamp-mot-mental-ohalsa',
7b393f9c 363 'info_dict': {
43e79947
RA
364 'id': '25298267',
365 'title': 'Bakom masken – Lehners kamp mot mental ohälsa',
7b393f9c 366 },
43e79947 367 'playlist_count': 4,
7b393f9c 368 }, {
43e79947 369 'url': 'https://www.svt.se/nyheter/utrikes/svenska-andrea-ar-en-mil-fran-branderna-i-kalifornien',
7b393f9c 370 'info_dict': {
43e79947
RA
371 'id': '24243746',
372 'title': 'Svenska Andrea redo att fly sitt hem i Kalifornien',
7b393f9c 373 },
43e79947 374 'playlist_count': 2,
7b393f9c
S
375 }, {
376 # only programTitle
377 'url': 'http://www.svt.se/sport/ishockey/jagr-tacklar-giroux-under-intervjun',
378 'info_dict': {
43e79947 379 'id': '8439V2K',
7b393f9c
S
380 'ext': 'mp4',
381 'title': 'Stjärnorna skojar till det - under SVT-intervjun',
382 'duration': 27,
383 'age_limit': 0,
384 },
385 }, {
386 'url': 'https://www.svt.se/nyheter/lokalt/vast/svt-testar-tar-nagon-upp-skrapet-1',
387 'only_matching': True,
388 }, {
389 'url': 'https://www.svt.se/vader/manadskronikor/maj2018',
390 'only_matching': True,
391 }]
392
393 @classmethod
394 def suitable(cls, url):
a0566bbf 395 return False if SVTIE.suitable(url) or SVTPlayIE.suitable(url) else super(SVTPageIE, cls).suitable(url)
7b393f9c
S
396
397 def _real_extract(self, url):
5ad28e7f 398 path, display_id = self._match_valid_url(url).groups()
7b393f9c 399
43e79947
RA
400 article = self._download_json(
401 'https://api.svt.se/nss-api/page/' + path, display_id,
402 query={'q': 'articles'})['articles']['content'][0]
7b393f9c 403
43e79947 404 entries = []
7b393f9c 405
43e79947
RA
406 def _process_content(content):
407 if content.get('_type') in ('VIDEOCLIP', 'VIDEOEPISODE'):
408 video_id = compat_str(content['image']['svtId'])
409 entries.append(self.url_result(
410 'svt:' + video_id, SVTPlayIE.ie_key(), video_id))
7b393f9c 411
43e79947
RA
412 for media in article.get('media', []):
413 _process_content(media)
414
415 for obj in article.get('structuredBody', []):
416 _process_content(obj.get('content') or {})
417
418 return self.playlist_result(
419 entries, str_or_none(article.get('id')),
420 strip_or_none(article.get('title')))