]> jfr.im git - yt-dlp.git/blame - yt_dlp/extractor/twitch.py
[ie/matchtv] Fix extractor (#10190)
[yt-dlp.git] / yt_dlp / extractor / twitch.py
CommitLineData
841b6838 1import collections
3182f3e2 2import itertools
48afc6ca 3import json
841b6838
S
4import random
5import re
add96eb9 6import urllib.parse
79e93125
PH
7
8from .common import InfoExtractor
1cc79574 9from ..utils import (
693f0600 10 ExtractorError,
11 UserNotLive,
418bbfd7 12 base_url,
efe470e2 13 clean_html,
30a074c2 14 dict_get,
841b6838 15 float_or_none,
7a6e8a1b 16 int_or_none,
0647d925 17 make_archive_id,
e704f87f 18 parse_duration,
355d074f 19 parse_iso8601,
4dfbf869 20 parse_qs,
a0455d0f 21 qualities,
639f80c1 22 str_or_none,
23 traverse_obj,
49fa7de3
S
24 try_get,
25 unified_timestamp,
264e77c4 26 update_url_query,
3052a30d 27 url_or_none,
c64c03be 28 urljoin,
79e93125
PH
29)
30
31
c5db6bb3 32class TwitchBaseIE(InfoExtractor):
fce79626 33 _VALID_URL_BASE = r'https?://(?:(?:www|go|m)\.)?twitch\.tv'
c5db6bb3 34
46fd0dd5 35 _API_BASE = 'https://api.twitch.tv'
9f4576a7 36 _USHER_BASE = 'https://usher.ttvnw.net'
48afc6ca
TB
37 _LOGIN_FORM_URL = 'https://www.twitch.tv/login'
38 _LOGIN_POST_URL = 'https://passport.twitch.tv/login'
499bfcbf 39 _NETRC_MACHINE = 'twitch'
79e93125 40
00dd0cd5 41 _OPERATION_HASHES = {
42 'CollectionSideBar': '27111f1b382effad0b6def325caef1909c733fe6a4fbabf54f8d491ef2cf2f14',
43 'FilterableVideoTower_Videos': 'a937f1d22e269e39a03b509f65a7490f9fc247d7f83d6ac1421523e3b68042cb',
44 'ClipsCards__User': 'b73ad2bfaecfd30a9e6c28fada15bd97032c83ec77a0440766a56fe0bd632777',
4a6272c6
E
45 'ChannelCollectionsContent': '447aec6a0cc1e8d0a8d7732d47eb0762c336a2294fdb009e9c9d854e49d484b9',
46 'StreamMetadata': 'a647c2a13599e5991e175155f798ca7f1ecddde73f7f341f39009c14dbf59962',
00dd0cd5 47 'ComscoreStreamingQuery': 'e1edae8122517d013405f237ffcc124515dc6ded82480a88daef69c83b53ac01',
14eb1ee1 48 'VideoAccessToken_Clip': '36b89d2507fce29e5ca551df756d27c1cfe079e2609642b4390aa4c35796eb11',
00dd0cd5 49 'VideoPreviewOverlay': '3006e77e51b128d838fa4e835723ca4dc9a05c5efd4466c1085215c6e437e65c',
4a6272c6 50 'VideoMetadata': '49b5b8f268cdeb259d75b58dcb0c1a748e3b575003448a2333dc5cdafd49adad',
639f80c1 51 'VideoPlayer_ChapterSelectButtonVideo': '8d2793384aac3773beab5e59bd5d6f585aedb923d292800119e03d40cd0f9b41',
418bbfd7 52 'VideoPlayer_VODSeekbarPreviewVideo': '07e99e4d56c5a7c67117a154777b0baf85a5ffefa393b213f4bc712ccaf85dd6',
00dd0cd5 53 }
355d074f 54
01231feb 55 @property
56 def _CLIENT_ID(self):
57 return self._configuration_arg(
7f9c6a63 58 'client_id', ['ue6666qo983tsx6so1t0vnawi233wa'], ie_key='Twitch', casesense=True)[0]
01231feb 59
52efa4b3 60 def _perform_login(self, username, password):
efe470e2
S
61 def fail(message):
62 raise ExtractorError(
add96eb9 63 f'Unable to login. Twitch said: {message}', expected=True)
efe470e2 64
5316566e 65 def login_step(page, urlh, note, data):
c64c03be
XDG
66 form = self._hidden_inputs(page)
67 form.update(data)
68
3d2623a8 69 page_url = urlh.url
c64c03be
XDG
70 post_url = self._search_regex(
71 r'<form[^>]+action=(["\'])(?P<url>.+?)\1', page,
48afc6ca 72 'post url', default=self._LOGIN_POST_URL, group='url')
c64c03be
XDG
73 post_url = urljoin(page_url, post_url)
74
48afc6ca
TB
75 headers = {
76 'Referer': page_url,
30a074c2 77 'Origin': 'https://www.twitch.tv',
cb1c3a3c 78 'Content-Type': 'text/plain;charset=UTF-8',
48afc6ca 79 }
c64c03be 80
cb1c3a3c
S
81 response = self._download_json(
82 post_url, None, note, data=json.dumps(form).encode(),
83 headers=headers, expected_status=400)
30a074c2 84 error = dict_get(response, ('error', 'error_description', 'error_code'))
cb1c3a3c
S
85 if error:
86 fail(error)
c64c03be 87
1370dba5
S
88 if 'Authenticated successfully' in response.get('message', ''):
89 return None, None
90
91 redirect_url = urljoin(
92 post_url,
93 response.get('redirect') or response['redirect_path'])
5316566e
S
94 return self._download_webpage_handle(
95 redirect_url, None, 'Downloading login redirect page',
96 headers=headers)
c64c03be 97
fbd9f6ea 98 login_page, handle = self._download_webpage_handle(
48afc6ca 99 self._LOGIN_FORM_URL, None, 'Downloading login page')
c5db6bb3 100
efe470e2
S
101 # Some TOR nodes and public proxies are blocked completely
102 if 'blacklist_message' in login_page:
103 fail(clean_html(login_page))
104
5316566e 105 redirect_page, handle = login_step(
e4d95865 106 login_page, handle, 'Logging in', {
5316566e
S
107 'username': username,
108 'password': password,
48afc6ca 109 'client_id': self._CLIENT_ID,
fe646a2f 110 })
c64c03be 111
1370dba5
S
112 # Successful login
113 if not redirect_page:
114 return
115
c64c03be
XDG
116 if re.search(r'(?i)<form[^>]+id="two-factor-submit"', redirect_page) is not None:
117 # TODO: Add mechanism to request an SMS or phone call
118 tfa_token = self._get_tfa_info('two-factor authentication token')
5316566e 119 login_step(redirect_page, handle, 'Submitting TFA token', {
c64c03be
XDG
120 'authy_token': tfa_token,
121 'remember_2fa': 'true',
5316566e 122 })
17b41a33 123
d0e958c7
PH
124 def _prefer_source(self, formats):
125 try:
126 source = next(f for f in formats if f['format_id'] == 'Source')
60e67c5b 127 source['quality'] = 10
d0e958c7 128 except StopIteration:
985637cb
S
129 for f in formats:
130 if '/chunked/' in f['url']:
131 f.update({
60e67c5b 132 'quality': 10,
985637cb
S
133 'format_note': 'Source',
134 })
d0e958c7 135
00dd0cd5 136 def _download_base_gql(self, video_id, ops, note, fatal=True):
30a074c2 137 headers = {
138 'Content-Type': 'text/plain;charset=UTF-8',
139 'Client-ID': self._CLIENT_ID,
140 }
141 gql_auth = self._get_cookies('https://gql.twitch.tv').get('auth-token')
142 if gql_auth:
143 headers['Authorization'] = 'OAuth ' + gql_auth.value
00dd0cd5 144 return self._download_json(
145 'https://gql.twitch.tv/gql', video_id, note,
146 data=json.dumps(ops).encode(),
30a074c2 147 headers=headers, fatal=fatal)
c5db6bb3 148
00dd0cd5 149 def _download_gql(self, video_id, ops, note, fatal=True):
150 for op in ops:
151 op['extensions'] = {
152 'persistedQuery': {
153 'version': 1,
154 'sha256Hash': self._OPERATION_HASHES[op['operationName']],
add96eb9 155 },
00dd0cd5 156 }
157 return self._download_base_gql(video_id, ops, note)
158
159 def _download_access_token(self, video_id, token_kind, param_name):
add96eb9 160 method = f'{token_kind}PlaybackAccessToken'
00dd0cd5 161 ops = {
162 'query': '''{
163 %s(
164 %s: "%s",
165 params: {
166 platform: "web",
167 playerBackend: "mediaplayer",
168 playerType: "site"
169 }
170 )
171 {
172 value
173 signature
174 }
add96eb9 175 }''' % (method, param_name, video_id), # noqa: UP031
00dd0cd5 176 }
177 return self._download_base_gql(
178 video_id, ops,
add96eb9 179 f'Downloading {token_kind} access token GraphQL')['data'][method]
04d02a9d 180
80b732b7
JC
181 def _get_thumbnails(self, thumbnail):
182 return [{
183 'url': re.sub(r'\d+x\d+(\.\w+)($|(?=[?#]))', r'0x0\g<1>', thumbnail),
184 'preference': 1,
185 }, {
186 'url': thumbnail,
187 }] if thumbnail else None
188
615a8444 189 def _extract_twitch_m3u8_formats(self, path, video_id, token, signature):
02f93ff5 190 formats = self._extract_m3u8_formats(
615a8444 191 f'{self._USHER_BASE}/{path}/{video_id}.m3u8', video_id, 'mp4', query={
5b8c69ae
D
192 'allow_source': 'true',
193 'allow_audio_only': 'true',
194 'allow_spectre': 'true',
195 'p': random.randint(1000000, 10000000),
02f93ff5 196 'platform': 'web',
5b8c69ae 197 'player': 'twitchweb',
02f93ff5 198 'supported_codecs': 'av1,h265,h264',
5b8c69ae
D
199 'playlist_include_framerate': 'true',
200 'sig': signature,
201 'token': token,
202 })
02f93ff5
KM
203 for fmt in formats:
204 if fmt.get('vcodec') and fmt['vcodec'].startswith('av01'):
205 # mpegts does not yet have proper support for av1
206 fmt['downloader_options'] = {'ffmpeg_args_out': ['-f', 'mp4']}
207
208 return formats
5b8c69ae 209
04d02a9d 210
841b6838 211class TwitchVodIE(TwitchBaseIE):
c5db6bb3 212 IE_NAME = 'twitch:vod'
3f1ce168
S
213 _VALID_URL = r'''(?x)
214 https?://
215 (?:
644921b3 216 (?:(?:www|go|m)\.)?twitch\.tv/(?:[^/]+/v(?:ideo)?|videos)/|
dbce5afa
FA
217 player\.twitch\.tv/\?.*?\bvideo=v?|
218 www\.twitch\.tv/[^/]+/schedule\?vodID=
3f1ce168
S
219 )
220 (?P<id>\d+)
221 '''
c5db6bb3 222
9c724a98 223 _TESTS = [{
e704f87f 224 'url': 'http://www.twitch.tv/riotgames/v/6528877?t=5m10s',
c5db6bb3 225 'info_dict': {
ac0474f8 226 'id': 'v6528877',
c5db6bb3 227 'ext': 'mp4',
ac0474f8 228 'title': 'LCK Summer Split - Week 6 Day 1',
ec85ded8 229 'thumbnail': r're:^https?://.*\.jpg$',
ac0474f8 230 'duration': 17208,
00dd0cd5 231 'timestamp': 1435131734,
ac0474f8
YCH
232 'upload_date': '20150624',
233 'uploader': 'Riot Games',
234 'uploader_id': 'riotgames',
c5db6bb3 235 'view_count': int,
e704f87f 236 'start_time': 310,
1cdf69c5 237 'chapters': [
238 {
239 'start_time': 0,
240 'end_time': 17208,
add96eb9 241 'title': 'League of Legends',
242 },
1cdf69c5 243 ],
418bbfd7 244 'live_status': 'was_live',
c5db6bb3
S
245 },
246 'params': {
247 # m3u8 download
248 'skip_download': True,
249 },
9c724a98
S
250 }, {
251 # Untitled broadcast (title is None)
252 'url': 'http://www.twitch.tv/belkao_o/v/11230755',
253 'info_dict': {
254 'id': 'v11230755',
255 'ext': 'mp4',
256 'title': 'Untitled Broadcast',
ec85ded8 257 'thumbnail': r're:^https?://.*\.jpg$',
9c724a98
S
258 'duration': 1638,
259 'timestamp': 1439746708,
260 'upload_date': '20150816',
261 'uploader': 'BelkAO_o',
262 'uploader_id': 'belkao_o',
263 'view_count': int,
264 },
265 'params': {
266 # m3u8 download
267 'skip_download': True,
268 },
9bd7bd0b 269 'skip': 'HTTP Error 404: Not Found',
3f1ce168
S
270 }, {
271 'url': 'http://player.twitch.tv/?t=5m10s&video=v6528877',
272 'only_matching': True,
0b23c222
S
273 }, {
274 'url': 'https://www.twitch.tv/videos/6528877',
275 'only_matching': True,
fce79626
S
276 }, {
277 'url': 'https://m.twitch.tv/beagsandjam/v/247478721',
278 'only_matching': True,
644921b3
S
279 }, {
280 'url': 'https://www.twitch.tv/northernlion/video/291940395',
281 'only_matching': True,
bc48773e
M
282 }, {
283 'url': 'https://player.twitch.tv/?video=480452374',
284 'only_matching': True,
639f80c1 285 }, {
286 'url': 'https://www.twitch.tv/videos/635475444',
287 'info_dict': {
288 'id': 'v635475444',
289 'ext': 'mp4',
290 'title': 'Riot Games',
291 'duration': 11643,
292 'uploader': 'Riot Games',
293 'uploader_id': 'riotgames',
294 'timestamp': 1590770569,
295 'upload_date': '20200529',
296 'chapters': [
297 {
298 'start_time': 0,
299 'end_time': 573,
add96eb9 300 'title': 'League of Legends',
639f80c1 301 },
302 {
303 'start_time': 573,
304 'end_time': 3922,
add96eb9 305 'title': 'Legends of Runeterra',
639f80c1 306 },
307 {
308 'start_time': 3922,
309 'end_time': 11643,
add96eb9 310 'title': 'Art',
311 },
639f80c1 312 ],
418bbfd7 313 'live_status': 'was_live',
314 'thumbnail': r're:^https?://.*\.jpg$',
315 'view_count': int,
316 },
317 'params': {
add96eb9 318 'skip_download': True,
418bbfd7 319 },
320 }, {
321 'note': 'Storyboards',
322 'url': 'https://www.twitch.tv/videos/635475444',
323 'info_dict': {
324 'id': 'v635475444',
325 'format_id': 'sb0',
326 'ext': 'mhtml',
327 'title': 'Riot Games',
328 'duration': 11643,
329 'uploader': 'Riot Games',
330 'uploader_id': 'riotgames',
331 'timestamp': 1590770569,
332 'upload_date': '20200529',
333 'chapters': [
334 {
335 'start_time': 0,
336 'end_time': 573,
add96eb9 337 'title': 'League of Legends',
418bbfd7 338 },
339 {
340 'start_time': 573,
341 'end_time': 3922,
add96eb9 342 'title': 'Legends of Runeterra',
418bbfd7 343 },
344 {
345 'start_time': 3922,
346 'end_time': 11643,
add96eb9 347 'title': 'Art',
348 },
418bbfd7 349 ],
350 'live_status': 'was_live',
351 'thumbnail': r're:^https?://.*\.jpg$',
352 'view_count': int,
353 'columns': int,
354 'rows': int,
639f80c1 355 },
356 'params': {
418bbfd7 357 'format': 'mhtml',
add96eb9 358 'skip_download': True,
359 },
1cdf69c5 360 }, {
361 'note': 'VOD with single chapter',
362 'url': 'https://www.twitch.tv/videos/1536751224',
363 'info_dict': {
364 'id': 'v1536751224',
365 'ext': 'mp4',
366 'title': 'Porter Robinson Star Guardian Stream Tour with LilyPichu',
367 'duration': 8353,
368 'uploader': 'Riot Games',
369 'uploader_id': 'riotgames',
370 'timestamp': 1658267731,
371 'upload_date': '20220719',
372 'chapters': [
373 {
374 'start_time': 0,
375 'end_time': 8353,
add96eb9 376 'title': 'League of Legends',
377 },
1cdf69c5 378 ],
379 'live_status': 'was_live',
380 'thumbnail': r're:^https?://.*\.jpg$',
381 'view_count': int,
382 },
383 'params': {
add96eb9 384 'skip_download': True,
1cdf69c5 385 },
add96eb9 386 'expected_warnings': ['Unable to download JSON metadata: HTTP Error 403: Forbidden'],
dbce5afa
FA
387 }, {
388 'url': 'https://www.twitch.tv/tangotek/schedule?vodID=1822395420',
389 'only_matching': True,
9c724a98 390 }]
04d02a9d 391
841b6838 392 def _download_info(self, item_id):
00dd0cd5 393 data = self._download_gql(
394 item_id, [{
395 'operationName': 'VideoMetadata',
396 'variables': {
397 'channelLogin': '',
398 'videoID': item_id,
399 },
639f80c1 400 }, {
401 'operationName': 'VideoPlayer_ChapterSelectButtonVideo',
402 'variables': {
403 'includePrivate': False,
404 'videoID': item_id,
405 },
418bbfd7 406 }, {
407 'operationName': 'VideoPlayer_VODSeekbarPreviewVideo',
408 'variables': {
409 'includePrivate': False,
410 'videoID': item_id,
411 },
00dd0cd5 412 }],
639f80c1 413 'Downloading stream metadata GraphQL')
414
4a6272c6 415 video = traverse_obj(data, (..., 'data', 'video'), get_all=False)
00dd0cd5 416 if video is None:
4a6272c6
E
417 raise ExtractorError(f'Video {item_id} does not exist', expected=True)
418
419 video['moments'] = traverse_obj(data, (..., 'data', 'video', 'moments', 'edges', ..., 'node'))
420 video['storyboard'] = traverse_obj(
421 data, (..., 'data', 'video', 'seekPreviewsURL', {url_or_none}), get_all=False)
422
418bbfd7 423 return video
841b6838 424
639f80c1 425 def _extract_info(self, info):
841b6838
S
426 status = info.get('status')
427 if status == 'recording':
428 is_live = True
429 elif status == 'recorded':
430 is_live = False
431 else:
432 is_live = None
433 _QUALITIES = ('small', 'medium', 'large')
434 quality_key = qualities(_QUALITIES)
435 thumbnails = []
436 preview = info.get('preview')
437 if isinstance(preview, dict):
438 for thumbnail_id, thumbnail_url in preview.items():
439 thumbnail_url = url_or_none(thumbnail_url)
440 if not thumbnail_url:
441 continue
442 if thumbnail_id not in _QUALITIES:
443 continue
444 thumbnails.append({
445 'url': thumbnail_url,
446 'preference': quality_key(thumbnail_id),
447 })
448 return {
449 'id': info['_id'],
450 'title': info.get('title') or 'Untitled Broadcast',
451 'description': info.get('description'),
452 'duration': int_or_none(info.get('length')),
453 'thumbnails': thumbnails,
454 'uploader': info.get('channel', {}).get('display_name'),
455 'uploader_id': info.get('channel', {}).get('name'),
456 'timestamp': parse_iso8601(info.get('recorded_at')),
457 'view_count': int_or_none(info.get('views')),
458 'is_live': is_live,
a33c0d9c 459 'was_live': True,
841b6838
S
460 }
461
1cdf69c5 462 def _extract_chapters(self, info, item_id):
463 if not info.get('moments'):
464 game = traverse_obj(info, ('game', 'displayName'))
465 if game:
466 yield {'title': game}
467 return
468
469 for moment in info['moments']:
639f80c1 470 start_time = int_or_none(moment.get('positionMilliseconds'), 1000)
471 duration = int_or_none(moment.get('durationMilliseconds'), 1000)
472 name = str_or_none(moment.get('description'))
473
474 if start_time is None or duration is None:
475 self.report_warning(f'Important chapter information missing for chapter {name}', item_id)
476 continue
477 yield {
478 'start_time': start_time,
479 'end_time': start_time + duration,
480 'title': name,
481 }
482
483 def _extract_info_gql(self, info, item_id):
00dd0cd5 484 vod_id = info.get('id') or item_id
485 # id backward compatibility for download archives
486 if vod_id[0] != 'v':
add96eb9 487 vod_id = f'v{vod_id}'
00dd0cd5 488 thumbnail = url_or_none(info.get('previewThumbnailURL'))
a33c0d9c 489 is_live = None
00dd0cd5 490 if thumbnail:
0551511b 491 if re.findall(r'/404_processing_[^.?#]+\.png', thumbnail):
a33c0d9c
D
492 is_live, thumbnail = True, None
493 else:
494 is_live = False
639f80c1 495
00dd0cd5 496 return {
497 'id': vod_id,
498 'title': info.get('title') or 'Untitled Broadcast',
499 'description': info.get('description'),
500 'duration': int_or_none(info.get('lengthSeconds')),
80b732b7 501 'thumbnails': self._get_thumbnails(thumbnail),
add96eb9 502 'uploader': try_get(info, lambda x: x['owner']['displayName'], str),
503 'uploader_id': try_get(info, lambda x: x['owner']['login'], str),
00dd0cd5 504 'timestamp': unified_timestamp(info.get('publishedAt')),
505 'view_count': int_or_none(info.get('viewCount')),
1cdf69c5 506 'chapters': list(self._extract_chapters(info, item_id)),
a33c0d9c
D
507 'is_live': is_live,
508 'was_live': True,
00dd0cd5 509 }
510
418bbfd7 511 def _extract_storyboard(self, item_id, storyboard_json_url, duration):
512 if not duration or not storyboard_json_url:
513 return
514 spec = self._download_json(storyboard_json_url, item_id, 'Downloading storyboard metadata JSON', fatal=False) or []
515 # sort from highest quality to lowest
516 # This makes sb0 the highest-quality format, sb1 - lower, etc which is consistent with youtube sb ordering
517 spec.sort(key=lambda x: int_or_none(x.get('width')) or 0, reverse=True)
518 base = base_url(storyboard_json_url)
519 for i, s in enumerate(spec):
520 count = int_or_none(s.get('count'))
521 images = s.get('images')
522 if not (images and count):
523 continue
524 fragment_duration = duration / len(images)
525 yield {
526 'format_id': f'sb{i}',
527 'format_note': 'storyboard',
528 'ext': 'mhtml',
529 'protocol': 'mhtml',
530 'acodec': 'none',
531 'vcodec': 'none',
532 'url': urljoin(base, images[0]),
533 'width': int_or_none(s.get('width')),
534 'height': int_or_none(s.get('height')),
535 'fps': count / duration,
536 'rows': int_or_none(s.get('rows')),
537 'columns': int_or_none(s.get('cols')),
538 'fragments': [{
539 'url': urljoin(base, path),
540 'duration': fragment_duration,
541 } for path in images],
542 }
543
79e93125 544 def _real_extract(self, url):
841b6838 545 vod_id = self._match_id(url)
e5e99661 546
418bbfd7 547 video = self._download_info(vod_id)
548 info = self._extract_info_gql(video, vod_id)
00dd0cd5 549 access_token = self._download_access_token(vod_id, 'video', 'id')
e5e99661 550
5b8c69ae 551 formats = self._extract_twitch_m3u8_formats(
615a8444 552 'vod', vod_id, access_token['value'], access_token['signature'])
418bbfd7 553 formats.extend(self._extract_storyboard(vod_id, video.get('storyboard'), info.get('duration')))
554
d0e958c7 555 self._prefer_source(formats)
c5db6bb3 556 info['formats'] = formats
e704f87f 557
add96eb9 558 parsed_url = urllib.parse.urlparse(url)
559 query = urllib.parse.parse_qs(parsed_url.query)
e704f87f
NH
560 if 't' in query:
561 info['start_time'] = parse_duration(query['t'][0])
562
264e77c4
S
563 if info.get('timestamp') is not None:
564 info['subtitles'] = {
565 'rechat': [{
566 'url': update_url_query(
add96eb9 567 f'https://api.twitch.tv/v5/videos/{vod_id}/comments', {
ce112a8c 568 'client_id': self._CLIENT_ID,
264e77c4
S
569 }),
570 'ext': 'json',
571 }],
572 }
573
c5db6bb3
S
574 return info
575
576
841b6838
S
577def _make_video_result(node):
578 assert isinstance(node, dict)
579 video_id = node.get('id')
580 if not video_id:
581 return
582 return {
583 '_type': 'url_transparent',
584 'ie_key': TwitchVodIE.ie_key(),
c76eb41b 585 'id': 'v' + video_id,
add96eb9 586 'url': f'https://www.twitch.tv/videos/{video_id}',
841b6838
S
587 'title': node.get('title'),
588 'thumbnail': node.get('previewThumbnailURL'),
589 'duration': float_or_none(node.get('lengthSeconds')),
590 'view_count': int_or_none(node.get('viewCount')),
591 }
592
593
00dd0cd5 594class TwitchCollectionIE(TwitchBaseIE):
841b6838
S
595 _VALID_URL = r'https?://(?:(?:www|go|m)\.)?twitch\.tv/collections/(?P<id>[^/]+)'
596
597 _TESTS = [{
598 'url': 'https://www.twitch.tv/collections/wlDCoH0zEBZZbQ',
599 'info_dict': {
600 'id': 'wlDCoH0zEBZZbQ',
601 'title': 'Overthrow Nook, capitalism for children',
602 },
603 'playlist_mincount': 13,
604 }]
605
606 _OPERATION_NAME = 'CollectionSideBar'
841b6838
S
607
608 def _real_extract(self, url):
609 collection_id = self._match_id(url)
610 collection = self._download_gql(
defc820b
S
611 collection_id, [{
612 'operationName': self._OPERATION_NAME,
613 'variables': {'collectionID': collection_id},
614 }],
615 'Downloading collection GraphQL')[0]['data']['collection']
841b6838 616 title = collection.get('title')
c5db6bb3 617 entries = []
841b6838
S
618 for edge in collection['items']['edges']:
619 if not isinstance(edge, dict):
620 continue
621 node = edge.get('node')
622 if not isinstance(node, dict):
623 continue
624 video = _make_video_result(node)
625 if video:
626 entries.append(video)
627 return self.playlist_result(
628 entries, playlist_id=collection_id, playlist_title=title)
629
630
00dd0cd5 631class TwitchPlaylistBaseIE(TwitchBaseIE):
632 _PAGE_LIMIT = 100
633
841b6838
S
634 def _entries(self, channel_name, *args):
635 cursor = None
636 variables_common = self._make_variables(channel_name, *args)
add96eb9 637 entries_key = f'{self._ENTRY_KIND}s'
841b6838
S
638 for page_num in itertools.count(1):
639 variables = variables_common.copy()
640 variables['limit'] = self._PAGE_LIMIT
641 if cursor:
642 variables['cursor'] = cursor
643 page = self._download_gql(
defc820b
S
644 channel_name, [{
645 'operationName': self._OPERATION_NAME,
646 'variables': variables,
647 }],
add96eb9 648 f'Downloading {self._NODE_KIND}s GraphQL page {page_num}',
841b6838
S
649 fatal=False)
650 if not page:
651 break
652 edges = try_get(
defc820b 653 page, lambda x: x[0]['data']['user'][entries_key]['edges'], list)
841b6838
S
654 if not edges:
655 break
656 for edge in edges:
657 if not isinstance(edge, dict):
658 continue
659 if edge.get('__typename') != self._EDGE_KIND:
660 continue
661 node = edge.get('node')
662 if not isinstance(node, dict):
663 continue
664 if node.get('__typename') != self._NODE_KIND:
665 continue
666 entry = self._extract_entry(node)
667 if entry:
668 cursor = edge.get('cursor')
669 yield entry
add96eb9 670 if not cursor or not isinstance(cursor, str):
841b6838
S
671 break
672
c5db6bb3 673
841b6838
S
674class TwitchVideosIE(TwitchPlaylistBaseIE):
675 _VALID_URL = r'https?://(?:(?:www|go|m)\.)?twitch\.tv/(?P<id>[^/]+)/(?:videos|profile)'
c5db6bb3 676
fce79626 677 _TESTS = [{
841b6838
S
678 # All Videos sorted by Date
679 'url': 'https://www.twitch.tv/spamfish/videos?filter=all',
c5db6bb3 680 'info_dict': {
841b6838
S
681 'id': 'spamfish',
682 'title': 'spamfish - All Videos sorted by Date',
c5db6bb3 683 },
841b6838 684 'playlist_mincount': 924,
fce79626 685 }, {
841b6838
S
686 # All Videos sorted by Popular
687 'url': 'https://www.twitch.tv/spamfish/videos?filter=all&sort=views',
93753aad
S
688 'info_dict': {
689 'id': 'spamfish',
841b6838 690 'title': 'spamfish - All Videos sorted by Popular',
93753aad 691 },
841b6838 692 'playlist_mincount': 931,
fce79626 693 }, {
841b6838
S
694 # Past Broadcasts sorted by Date
695 'url': 'https://www.twitch.tv/spamfish/videos?filter=archives',
696 'info_dict': {
697 'id': 'spamfish',
698 'title': 'spamfish - Past Broadcasts sorted by Date',
699 },
700 'playlist_mincount': 27,
701 }, {
702 # Highlights sorted by Date
703 'url': 'https://www.twitch.tv/spamfish/videos?filter=highlights',
704 'info_dict': {
705 'id': 'spamfish',
706 'title': 'spamfish - Highlights sorted by Date',
707 },
708 'playlist_mincount': 901,
709 }, {
710 # Uploads sorted by Date
711 'url': 'https://www.twitch.tv/esl_csgo/videos?filter=uploads&sort=time',
712 'info_dict': {
713 'id': 'esl_csgo',
714 'title': 'esl_csgo - Uploads sorted by Date',
715 },
716 'playlist_mincount': 5,
717 }, {
718 # Past Premieres sorted by Date
719 'url': 'https://www.twitch.tv/spamfish/videos?filter=past_premieres',
93753aad
S
720 'info_dict': {
721 'id': 'spamfish',
841b6838 722 'title': 'spamfish - Past Premieres sorted by Date',
93753aad 723 },
841b6838 724 'playlist_mincount': 1,
fce79626 725 }, {
841b6838
S
726 'url': 'https://www.twitch.tv/spamfish/videos/all',
727 'only_matching': True,
728 }, {
729 'url': 'https://m.twitch.tv/spamfish/videos/all',
730 'only_matching': True,
731 }, {
732 'url': 'https://www.twitch.tv/spamfish/videos',
fce79626
S
733 'only_matching': True,
734 }]
93753aad 735
841b6838
S
736 Broadcast = collections.namedtuple('Broadcast', ['type', 'label'])
737
738 _DEFAULT_BROADCAST = Broadcast(None, 'All Videos')
739 _BROADCASTS = {
740 'archives': Broadcast('ARCHIVE', 'Past Broadcasts'),
741 'highlights': Broadcast('HIGHLIGHT', 'Highlights'),
742 'uploads': Broadcast('UPLOAD', 'Uploads'),
743 'past_premieres': Broadcast('PAST_PREMIERE', 'Past Premieres'),
744 'all': _DEFAULT_BROADCAST,
745 }
746
747 _DEFAULT_SORTED_BY = 'Date'
748 _SORTED_BY = {
749 'time': _DEFAULT_SORTED_BY,
750 'views': 'Popular',
751 }
752
841b6838
S
753 _OPERATION_NAME = 'FilterableVideoTower_Videos'
754 _ENTRY_KIND = 'video'
755 _EDGE_KIND = 'VideoEdge'
756 _NODE_KIND = 'Video'
757
758 @classmethod
759 def suitable(cls, url):
760 return (False
761 if any(ie.suitable(url) for ie in (
762 TwitchVideosClipsIE,
763 TwitchVideosCollectionsIE))
add96eb9 764 else super().suitable(url))
841b6838
S
765
766 @staticmethod
767 def _make_variables(channel_name, broadcast_type, sort):
768 return {
769 'channelOwnerLogin': channel_name,
770 'broadcastType': broadcast_type,
771 'videoSort': sort.upper(),
772 }
773
774 @staticmethod
775 def _extract_entry(node):
776 return _make_video_result(node)
93753aad 777
841b6838
S
778 def _real_extract(self, url):
779 channel_name = self._match_id(url)
4dfbf869 780 qs = parse_qs(url)
add96eb9 781 video_filter = qs.get('filter', ['all'])[0]
841b6838 782 sort = qs.get('sort', ['time'])[0]
add96eb9 783 broadcast = self._BROADCASTS.get(video_filter, self._DEFAULT_BROADCAST)
841b6838
S
784 return self.playlist_result(
785 self._entries(channel_name, broadcast.type, sort),
786 playlist_id=channel_name,
add96eb9 787 playlist_title=(
788 f'{channel_name} - {broadcast.label} '
789 f'sorted by {self._SORTED_BY.get(sort, self._DEFAULT_SORTED_BY)}'))
841b6838
S
790
791
792class TwitchVideosClipsIE(TwitchPlaylistBaseIE):
793 _VALID_URL = r'https?://(?:(?:www|go|m)\.)?twitch\.tv/(?P<id>[^/]+)/(?:clips|videos/*?\?.*?\bfilter=clips)'
c5db6bb3 794
fce79626 795 _TESTS = [{
841b6838
S
796 # Clips
797 'url': 'https://www.twitch.tv/vanillatv/clips?filter=clips&range=all',
93753aad 798 'info_dict': {
841b6838
S
799 'id': 'vanillatv',
800 'title': 'vanillatv - Clips Top All',
93753aad 801 },
841b6838 802 'playlist_mincount': 1,
fce79626 803 }, {
841b6838 804 'url': 'https://www.twitch.tv/dota2ruhub/videos?filter=clips&range=7d',
fce79626
S
805 'only_matching': True,
806 }]
93753aad 807
841b6838
S
808 Clip = collections.namedtuple('Clip', ['filter', 'label'])
809
810 _DEFAULT_CLIP = Clip('LAST_WEEK', 'Top 7D')
811 _RANGE = {
812 '24hr': Clip('LAST_DAY', 'Top 24H'),
813 '7d': _DEFAULT_CLIP,
814 '30d': Clip('LAST_MONTH', 'Top 30D'),
815 'all': Clip('ALL_TIME', 'Top All'),
816 }
817
818 # NB: values other than 20 result in skipped videos
819 _PAGE_LIMIT = 20
820
841b6838
S
821 _OPERATION_NAME = 'ClipsCards__User'
822 _ENTRY_KIND = 'clip'
823 _EDGE_KIND = 'ClipEdge'
824 _NODE_KIND = 'Clip'
825
826 @staticmethod
add96eb9 827 def _make_variables(channel_name, channel_filter):
841b6838
S
828 return {
829 'login': channel_name,
830 'criteria': {
add96eb9 831 'filter': channel_filter,
841b6838
S
832 },
833 }
834
835 @staticmethod
836 def _extract_entry(node):
837 assert isinstance(node, dict)
838 clip_url = url_or_none(node.get('url'))
839 if not clip_url:
840 return
841 return {
842 '_type': 'url_transparent',
843 'ie_key': TwitchClipsIE.ie_key(),
844 'id': node.get('id'),
845 'url': clip_url,
846 'title': node.get('title'),
847 'thumbnail': node.get('thumbnailURL'),
848 'duration': float_or_none(node.get('durationSeconds')),
849 'timestamp': unified_timestamp(node.get('createdAt')),
850 'view_count': int_or_none(node.get('viewCount')),
851 'language': node.get('language'),
852 }
853
854 def _real_extract(self, url):
855 channel_name = self._match_id(url)
4dfbf869 856 qs = parse_qs(url)
add96eb9 857 date_range = qs.get('range', ['7d'])[0]
858 clip = self._RANGE.get(date_range, self._DEFAULT_CLIP)
841b6838
S
859 return self.playlist_result(
860 self._entries(channel_name, clip.filter),
861 playlist_id=channel_name,
add96eb9 862 playlist_title=f'{channel_name} - Clips {clip.label}')
841b6838 863
93753aad 864
841b6838
S
865class TwitchVideosCollectionsIE(TwitchPlaylistBaseIE):
866 _VALID_URL = r'https?://(?:(?:www|go|m)\.)?twitch\.tv/(?P<id>[^/]+)/videos/*?\?.*?\bfilter=collections'
93753aad 867
fce79626 868 _TESTS = [{
841b6838
S
869 # Collections
870 'url': 'https://www.twitch.tv/spamfish/videos?filter=collections',
c5db6bb3
S
871 'info_dict': {
872 'id': 'spamfish',
841b6838 873 'title': 'spamfish - Collections',
c5db6bb3 874 },
841b6838 875 'playlist_mincount': 3,
4a6272c6
E
876 }, {
877 'url': 'https://www.twitch.tv/monstercat/videos?filter=collections',
878 'info_dict': {
879 'id': 'monstercat',
880 'title': 'monstercat - Collections',
881 },
882 'playlist_mincount': 13,
fce79626 883 }]
240b9b7a 884
841b6838
S
885 _OPERATION_NAME = 'ChannelCollectionsContent'
886 _ENTRY_KIND = 'collection'
887 _EDGE_KIND = 'CollectionsItemEdge'
888 _NODE_KIND = 'Collection'
889
890 @staticmethod
891 def _make_variables(channel_name):
892 return {
893 'ownerLogin': channel_name,
894 }
895
896 @staticmethod
897 def _extract_entry(node):
898 assert isinstance(node, dict)
899 collection_id = node.get('id')
900 if not collection_id:
901 return
902 return {
903 '_type': 'url_transparent',
904 'ie_key': TwitchCollectionIE.ie_key(),
905 'id': collection_id,
add96eb9 906 'url': f'https://www.twitch.tv/collections/{collection_id}',
841b6838
S
907 'title': node.get('title'),
908 'thumbnail': node.get('thumbnailURL'),
909 'duration': float_or_none(node.get('lengthSeconds')),
910 'timestamp': unified_timestamp(node.get('updatedAt')),
911 'view_count': int_or_none(node.get('viewCount')),
912 }
913
914 def _real_extract(self, url):
915 channel_name = self._match_id(url)
916 return self.playlist_result(
917 self._entries(channel_name), playlist_id=channel_name,
add96eb9 918 playlist_title=f'{channel_name} - Collections')
841b6838 919
240b9b7a 920
00dd0cd5 921class TwitchStreamIE(TwitchBaseIE):
240b9b7a 922 IE_NAME = 'twitch:stream'
9db8f6c5
S
923 _VALID_URL = r'''(?x)
924 https?://
925 (?:
fce79626 926 (?:(?:www|go|m)\.)?twitch\.tv/|
9db8f6c5
S
927 player\.twitch\.tv/\?.*?\bchannel=
928 )
929 (?P<id>[^/#?]+)
930 '''
240b9b7a 931
faa1f83a 932 _TESTS = [{
240b9b7a
S
933 'url': 'http://www.twitch.tv/shroomztv',
934 'info_dict': {
935 'id': '12772022048',
936 'display_id': 'shroomztv',
937 'ext': 'mp4',
938 'title': 're:^ShroomzTV [0-9]{4}-[0-9]{2}-[0-9]{2} [0-9]{2}:[0-9]{2}$',
939 'description': 'H1Z1 - lonewolfing with ShroomzTV | A3 Battle Royale later - @ShroomzTV',
940 'is_live': True,
941 'timestamp': 1421928037,
942 'upload_date': '20150122',
943 'uploader': 'ShroomzTV',
944 'uploader_id': 'shroomztv',
945 'view_count': int,
946 },
947 'params': {
948 # m3u8 download
949 'skip_download': True,
950 },
4a6272c6 951 'skip': 'User does not exist',
faa1f83a
S
952 }, {
953 'url': 'http://www.twitch.tv/miracle_doto#profile-0',
954 'only_matching': True,
9db8f6c5
S
955 }, {
956 'url': 'https://player.twitch.tv/?channel=lotsofs',
957 'only_matching': True,
b763e1d6
S
958 }, {
959 'url': 'https://go.twitch.tv/food',
960 'only_matching': True,
fce79626
S
961 }, {
962 'url': 'https://m.twitch.tv/food',
963 'only_matching': True,
4a6272c6
E
964 }, {
965 'url': 'https://www.twitch.tv/monstercat',
966 'info_dict': {
967 'id': '40500071752',
968 'display_id': 'monstercat',
969 'title': 're:Monstercat',
970 'description': 'md5:0945ad625e615bc8f0469396537d87d9',
971 'is_live': True,
972 'timestamp': 1677107190,
973 'upload_date': '20230222',
974 'uploader': 'Monstercat',
975 'uploader_id': 'monstercat',
976 'live_status': 'is_live',
977 'thumbnail': 're:https://.*.jpg',
978 'ext': 'mp4',
979 },
980 'params': {
981 'skip_download': 'Livestream',
982 },
faa1f83a 983 }]
240b9b7a 984
9db8f6c5
S
985 @classmethod
986 def suitable(cls, url):
987 return (False
988 if any(ie.suitable(url) for ie in (
9db8f6c5 989 TwitchVodIE,
841b6838
S
990 TwitchCollectionIE,
991 TwitchVideosIE,
992 TwitchVideosClipsIE,
993 TwitchVideosCollectionsIE,
db348e88 994 TwitchClipsIE))
add96eb9 995 else super().suitable(url))
9db8f6c5 996
240b9b7a 997 def _real_extract(self, url):
defc820b
S
998 channel_name = self._match_id(url).lower()
999
1000 gql = self._download_gql(
1001 channel_name, [{
1002 'operationName': 'StreamMetadata',
1003 'variables': {'channelLogin': channel_name},
1004 }, {
1005 'operationName': 'ComscoreStreamingQuery',
1006 'variables': {
1007 'channel': channel_name,
1008 'clipSlug': '',
1009 'isClip': False,
1010 'isLive': True,
1011 'isVodOrCollection': False,
1012 'vodID': '',
1013 },
1014 }, {
1015 'operationName': 'VideoPreviewOverlay',
1016 'variables': {'login': channel_name},
1017 }],
1018 'Downloading stream GraphQL')
1019
1020 user = gql[0]['data']['user']
1021
1022 if not user:
1023 raise ExtractorError(
add96eb9 1024 f'{channel_name} does not exist', expected=True)
240b9b7a 1025
defc820b 1026 stream = user['stream']
240b9b7a 1027
240b9b7a 1028 if not stream:
693f0600 1029 raise UserNotLive(video_id=channel_name)
240b9b7a 1030
00dd0cd5 1031 access_token = self._download_access_token(
1032 channel_name, 'stream', 'channelName')
240b9b7a 1033
defc820b 1034 stream_id = stream.get('id') or channel_name
5b8c69ae 1035 formats = self._extract_twitch_m3u8_formats(
615a8444 1036 'api/channel/hls', channel_name, access_token['value'], access_token['signature'])
d0e958c7 1037 self._prefer_source(formats)
240b9b7a
S
1038
1039 view_count = stream.get('viewers')
defc820b 1040 timestamp = unified_timestamp(stream.get('createdAt'))
240b9b7a 1041
defc820b
S
1042 sq_user = try_get(gql, lambda x: x[1]['data']['user'], dict) or {}
1043 uploader = sq_user.get('displayName')
1044 description = try_get(
add96eb9 1045 sq_user, lambda x: x['broadcastSettings']['title'], str)
240b9b7a 1046
defc820b
S
1047 thumbnail = url_or_none(try_get(
1048 gql, lambda x: x[2]['data']['user']['stream']['previewImageURL'],
add96eb9 1049 str))
defc820b
S
1050
1051 title = uploader or channel_name
1052 stream_type = stream.get('type')
1053 if stream_type in ['rerun', 'live']:
add96eb9 1054 title += f' ({stream_type})'
240b9b7a
S
1055
1056 return {
defc820b 1057 'id': stream_id,
ce3735df 1058 'display_id': channel_name,
39ca3b5c 1059 'title': title,
240b9b7a 1060 'description': description,
80b732b7 1061 'thumbnails': self._get_thumbnails(thumbnail),
defc820b
S
1062 'uploader': uploader,
1063 'uploader_id': channel_name,
240b9b7a
S
1064 'timestamp': timestamp,
1065 'view_count': view_count,
1066 'formats': formats,
defc820b 1067 'is_live': stream_type == 'live',
12d1fb5a 1068 }
778f9694
S
1069
1070
49fa7de3 1071class TwitchClipsIE(TwitchBaseIE):
778f9694 1072 IE_NAME = 'twitch:clips'
c9595ee7
FS
1073 _VALID_URL = r'''(?x)
1074 https?://
1075 (?:
1076 clips\.twitch\.tv/(?:embed\?.*?\bclip=|(?:[^/]+/)*)|
02312c03 1077 (?:(?:www|go|m)\.)?twitch\.tv/(?:[^/]+/)?clip/
c9595ee7
FS
1078 )
1079 (?P<id>[^/?#&]+)
1080 '''
778f9694 1081
74ba450a 1082 _TESTS = [{
49fa7de3 1083 'url': 'https://clips.twitch.tv/FaintLightGullWholeWheat',
778f9694
S
1084 'md5': '761769e1eafce0ffebfb4089cb3847cd',
1085 'info_dict': {
49fa7de3 1086 'id': '42850523',
678da2f2 1087 'display_id': 'FaintLightGullWholeWheat',
778f9694
S
1088 'ext': 'mp4',
1089 'title': 'EA Play 2016 Live from the Novo Theatre',
ec85ded8 1090 'thumbnail': r're:^https?://.*\.jpg',
49fa7de3
S
1091 'timestamp': 1465767393,
1092 'upload_date': '20160612',
778f9694
S
1093 'creator': 'EA',
1094 'uploader': 'stereotype_',
49fa7de3 1095 'uploader_id': '43566419',
778f9694 1096 },
74ba450a
S
1097 }, {
1098 # multiple formats
1099 'url': 'https://clips.twitch.tv/rflegendary/UninterestedBeeDAESuppy',
1100 'only_matching': True,
db348e88
S
1101 }, {
1102 'url': 'https://www.twitch.tv/sergeynixon/clip/StormyThankfulSproutFutureMan',
1103 'only_matching': True,
0b16b3c2
RA
1104 }, {
1105 'url': 'https://clips.twitch.tv/embed?clip=InquisitiveBreakableYogurtJebaited',
1106 'only_matching': True,
c9595ee7
FS
1107 }, {
1108 'url': 'https://m.twitch.tv/rossbroadcast/clip/ConfidentBraveHumanChefFrank',
1109 'only_matching': True,
1110 }, {
1111 'url': 'https://go.twitch.tv/rossbroadcast/clip/ConfidentBraveHumanChefFrank',
1112 'only_matching': True,
02312c03 1113 }, {
1114 'url': 'https://m.twitch.tv/clip/FaintLightGullWholeWheat',
1115 'only_matching': True,
74ba450a 1116 }]
778f9694
S
1117
1118 def _real_extract(self, url):
1119 video_id = self._match_id(url)
1120
14eb1ee1 1121 clip = self._download_gql(
1122 video_id, [{
1123 'operationName': 'VideoAccessToken_Clip',
1124 'variables': {
1125 'slug': video_id,
1126 },
1127 }],
1128 'Downloading clip access token GraphQL')[0]['data']['clip']
1129
1130 if not clip:
1131 raise ExtractorError(
1132 'This clip is no longer available', expected=True)
1133
1134 access_query = {
1135 'sig': clip['playbackAccessToken']['signature'],
1136 'token': clip['playbackAccessToken']['value'],
1137 }
1138
1139 data = self._download_base_gql(
00dd0cd5 1140 video_id, {
232ed8e6
RA
1141 'query': '''{
1142 clip(slug: "%s") {
1143 broadcaster {
1144 displayName
1145 }
1146 createdAt
1147 curator {
1148 displayName
1149 id
1150 }
1151 durationSeconds
1152 id
1153 tiny: thumbnailURL(width: 86, height: 45)
1154 small: thumbnailURL(width: 260, height: 147)
1155 medium: thumbnailURL(width: 480, height: 272)
1156 title
1157 videoQualities {
1158 frameRate
1159 quality
1160 sourceURL
1161 }
1162 viewCount
1163 }
add96eb9 1164}''' % video_id}, 'Downloading clip GraphQL', fatal=False) # noqa: UP031
232ed8e6 1165
14eb1ee1 1166 if data:
1167 clip = try_get(data, lambda x: x['data']['clip'], dict) or clip
778f9694 1168
49fa7de3 1169 formats = []
232ed8e6 1170 for option in clip.get('videoQualities', []):
49fa7de3
S
1171 if not isinstance(option, dict):
1172 continue
232ed8e6 1173 source = url_or_none(option.get('sourceURL'))
3052a30d 1174 if not source:
49fa7de3
S
1175 continue
1176 formats.append({
14eb1ee1 1177 'url': update_url_query(source, access_query),
49fa7de3
S
1178 'format_id': option.get('quality'),
1179 'height': int_or_none(option.get('quality')),
232ed8e6 1180 'fps': int_or_none(option.get('frameRate')),
49fa7de3 1181 })
07acdc5a 1182
232ed8e6
RA
1183 thumbnails = []
1184 for thumbnail_id in ('tiny', 'small', 'medium'):
1185 thumbnail_url = clip.get(thumbnail_id)
1186 if not thumbnail_url:
1187 continue
1188 thumb = {
1189 'id': thumbnail_id,
1190 'url': thumbnail_url,
1191 }
1192 mobj = re.search(r'-(\d+)x(\d+)\.', thumbnail_url)
1193 if mobj:
1194 thumb.update({
1195 'height': int(mobj.group(2)),
1196 'width': int(mobj.group(1)),
1197 })
1198 thumbnails.append(thumb)
1199
1e8fe57e 1200 old_id = self._search_regex(r'%7C(\d+)(?:-\d+)?.mp4', formats[-1]['url'], 'old id', default=None)
1201
232ed8e6
RA
1202 return {
1203 'id': clip.get('id') or video_id,
0647d925 1204 '_old_archive_ids': [make_archive_id(self, old_id)] if old_id else None,
678da2f2 1205 'display_id': video_id,
1e4fca9a 1206 'title': clip.get('title'),
49fa7de3 1207 'formats': formats,
232ed8e6 1208 'duration': int_or_none(clip.get('durationSeconds')),
be8cd3cb 1209 'view_count': int_or_none(clip.get('viewCount')),
232ed8e6
RA
1210 'timestamp': unified_timestamp(clip.get('createdAt')),
1211 'thumbnails': thumbnails,
add96eb9 1212 'creator': try_get(clip, lambda x: x['broadcaster']['displayName'], str),
1213 'uploader': try_get(clip, lambda x: x['curator']['displayName'], str),
1214 'uploader_id': try_get(clip, lambda x: x['curator']['id'], str),
49fa7de3 1215 }