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