7 from .common
import InfoExtractor
11 compat_urllib_parse_urlparse
,
36 class TwitchBaseIE(InfoExtractor
):
37 _VALID_URL_BASE
= r
'https?://(?:(?:www|go|m)\.)?twitch\.tv'
39 _API_BASE
= 'https://api.twitch.tv'
40 _USHER_BASE
= 'https://usher.ttvnw.net'
41 _LOGIN_FORM_URL
= 'https://www.twitch.tv/login'
42 _LOGIN_POST_URL
= 'https://passport.twitch.tv/login'
43 _NETRC_MACHINE
= 'twitch'
46 'CollectionSideBar': '27111f1b382effad0b6def325caef1909c733fe6a4fbabf54f8d491ef2cf2f14',
47 'FilterableVideoTower_Videos': 'a937f1d22e269e39a03b509f65a7490f9fc247d7f83d6ac1421523e3b68042cb',
48 'ClipsCards__User': 'b73ad2bfaecfd30a9e6c28fada15bd97032c83ec77a0440766a56fe0bd632777',
49 'ChannelCollectionsContent': '447aec6a0cc1e8d0a8d7732d47eb0762c336a2294fdb009e9c9d854e49d484b9',
50 'StreamMetadata': 'a647c2a13599e5991e175155f798ca7f1ecddde73f7f341f39009c14dbf59962',
51 'ComscoreStreamingQuery': 'e1edae8122517d013405f237ffcc124515dc6ded82480a88daef69c83b53ac01',
52 'VideoAccessToken_Clip': '36b89d2507fce29e5ca551df756d27c1cfe079e2609642b4390aa4c35796eb11',
53 'VideoPreviewOverlay': '3006e77e51b128d838fa4e835723ca4dc9a05c5efd4466c1085215c6e437e65c',
54 'VideoMetadata': '49b5b8f268cdeb259d75b58dcb0c1a748e3b575003448a2333dc5cdafd49adad',
55 'VideoPlayer_ChapterSelectButtonVideo': '8d2793384aac3773beab5e59bd5d6f585aedb923d292800119e03d40cd0f9b41',
56 'VideoPlayer_VODSeekbarPreviewVideo': '07e99e4d56c5a7c67117a154777b0baf85a5ffefa393b213f4bc712ccaf85dd6',
61 return self
._configuration
_arg
(
62 'client_id', ['ue6666qo983tsx6so1t0vnawi233wa'], ie_key
='Twitch', casesense
=True)[0]
64 def _perform_login(self
, username
, password
):
67 'Unable to login. Twitch said: %s' % message
, expected
=True)
69 def login_step(page
, urlh
, note
, data
):
70 form
= self
._hidden
_inputs
(page
)
74 post_url
= self
._search
_regex
(
75 r
'<form[^>]+action=(["\'])(?P
<url
>.+?
)\
1', page,
76 'post url
', default=self._LOGIN_POST_URL, group='url
')
77 post_url = urljoin(page_url, post_url)
81 'Origin
': 'https
://www
.twitch
.tv
',
82 'Content
-Type
': 'text
/plain
;charset
=UTF
-8',
85 response = self._download_json(
86 post_url, None, note, data=json.dumps(form).encode(),
87 headers=headers, expected_status=400)
88 error = dict_get(response, ('error
', 'error_description
', 'error_code
'))
92 if 'Authenticated successfully
' in response.get('message
', ''):
95 redirect_url = urljoin(
97 response.get('redirect
') or response['redirect_path
'])
98 return self._download_webpage_handle(
99 redirect_url, None, 'Downloading login redirect page
',
102 login_page, handle = self._download_webpage_handle(
103 self._LOGIN_FORM_URL, None, 'Downloading login page
')
105 # Some TOR nodes and public proxies are blocked completely
106 if 'blacklist_message
' in login_page:
107 fail(clean_html(login_page))
109 redirect_page, handle = login_step(
110 login_page, handle, 'Logging
in', {
111 'username
': username,
112 'password
': password,
113 'client_id
': self._CLIENT_ID,
117 if not redirect_page:
120 if re.search(r'(?i
)<form
[^
>]+id="two-factor-submit"', redirect_page) is not None:
121 # TODO: Add mechanism to request an SMS or phone call
122 tfa_token = self._get_tfa_info('two
-factor authentication token
')
123 login_step(redirect_page, handle, 'Submitting TFA token
', {
124 'authy_token
': tfa_token,
125 'remember_2fa
': 'true
',
128 def _prefer_source(self, formats):
130 source = next(f for f in formats if f['format_id
'] == 'Source
')
131 source['quality
'] = 10
132 except StopIteration:
134 if '/chunked
/' in f['url
']:
137 'format_note
': 'Source
',
140 def _download_base_gql(self, video_id, ops, note, fatal=True):
142 'Content
-Type
': 'text
/plain
;charset
=UTF
-8',
143 'Client
-ID
': self._CLIENT_ID,
145 gql_auth = self._get_cookies('https
://gql
.twitch
.tv
').get('auth
-token
')
147 headers['Authorization
'] = 'OAuth
' + gql_auth.value
148 return self._download_json(
149 'https
://gql
.twitch
.tv
/gql
', video_id, note,
150 data=json.dumps(ops).encode(),
151 headers=headers, fatal=fatal)
153 def _download_gql(self, video_id, ops, note, fatal=True):
158 'sha256Hash
': self._OPERATION_HASHES[op['operationName
']],
161 return self._download_base_gql(video_id, ops, note)
163 def _download_access_token(self, video_id, token_kind, param_name):
164 method = '%sPlaybackAccessToken
' % token_kind
171 playerBackend: "mediaplayer",
179 }''' % (method, param_name, video_id),
181 return self._download_base_gql(
183 'Downloading
%s access token GraphQL
' % token_kind)['data
'][method]
185 def _get_thumbnails(self, thumbnail):
187 'url
': re.sub(r'\d
+x\d
+(\
.\w
+)($|
(?
=[?
#]))', r'0x0\g<1>', thumbnail),
191 }] if thumbnail
else None
193 def _extract_twitch_m3u8_formats(self
, path
, video_id
, token
, signature
):
194 return self
._extract
_m
3u8_formats
(
195 f
'{self._USHER_BASE}/{path}/{video_id}.m3u8', video_id
, 'mp4', query
={
196 'allow_source': 'true',
197 'allow_audio_only': 'true',
198 'allow_spectre': 'true',
199 'p': random
.randint(1000000, 10000000),
200 'player': 'twitchweb',
201 'playlist_include_framerate': 'true',
207 class TwitchVodIE(TwitchBaseIE
):
208 IE_NAME
= 'twitch:vod'
209 _VALID_URL
= r
'''(?x)
212 (?:(?:www|go|m)\.)?twitch\.tv/(?:[^/]+/v(?:ideo)?|videos)/|
213 player\.twitch\.tv/\?.*?\bvideo=v?|
214 www\.twitch\.tv/[^/]+/schedule\?vodID=
220 'url': 'http://www.twitch.tv/riotgames/v/6528877?t=5m10s',
224 'title': 'LCK Summer Split - Week 6 Day 1',
225 'thumbnail': r
're:^https?://.*\.jpg$',
227 'timestamp': 1435131734,
228 'upload_date': '20150624',
229 'uploader': 'Riot Games',
230 'uploader_id': 'riotgames',
237 'title': 'League of Legends'
240 'live_status': 'was_live',
244 'skip_download': True,
247 # Untitled broadcast (title is None)
248 'url': 'http://www.twitch.tv/belkao_o/v/11230755',
252 'title': 'Untitled Broadcast',
253 'thumbnail': r
're:^https?://.*\.jpg$',
255 'timestamp': 1439746708,
256 'upload_date': '20150816',
257 'uploader': 'BelkAO_o',
258 'uploader_id': 'belkao_o',
263 'skip_download': True,
265 'skip': 'HTTP Error 404: Not Found',
267 'url': 'http://player.twitch.tv/?t=5m10s&video=v6528877',
268 'only_matching': True,
270 'url': 'https://www.twitch.tv/videos/6528877',
271 'only_matching': True,
273 'url': 'https://m.twitch.tv/beagsandjam/v/247478721',
274 'only_matching': True,
276 'url': 'https://www.twitch.tv/northernlion/video/291940395',
277 'only_matching': True,
279 'url': 'https://player.twitch.tv/?video=480452374',
280 'only_matching': True,
282 'url': 'https://www.twitch.tv/videos/635475444',
286 'title': 'Riot Games',
288 'uploader': 'Riot Games',
289 'uploader_id': 'riotgames',
290 'timestamp': 1590770569,
291 'upload_date': '20200529',
296 'title': 'League of Legends'
301 'title': 'Legends of Runeterra'
309 'live_status': 'was_live',
310 'thumbnail': r
're:^https?://.*\.jpg$',
314 'skip_download': True
317 'note': 'Storyboards',
318 'url': 'https://www.twitch.tv/videos/635475444',
323 'title': 'Riot Games',
325 'uploader': 'Riot Games',
326 'uploader_id': 'riotgames',
327 'timestamp': 1590770569,
328 'upload_date': '20200529',
333 'title': 'League of Legends'
338 'title': 'Legends of Runeterra'
346 'live_status': 'was_live',
347 'thumbnail': r
're:^https?://.*\.jpg$',
354 'skip_download': True
357 'note': 'VOD with single chapter',
358 'url': 'https://www.twitch.tv/videos/1536751224',
362 'title': 'Porter Robinson Star Guardian Stream Tour with LilyPichu',
364 'uploader': 'Riot Games',
365 'uploader_id': 'riotgames',
366 'timestamp': 1658267731,
367 'upload_date': '20220719',
372 'title': 'League of Legends'
375 'live_status': 'was_live',
376 'thumbnail': r
're:^https?://.*\.jpg$',
380 'skip_download': True
382 'expected_warnings': ['Unable to download JSON metadata: HTTP Error 403: Forbidden']
384 'url': 'https://www.twitch.tv/tangotek/schedule?vodID=1822395420',
385 'only_matching': True,
388 def _download_info(self
, item_id
):
389 data
= self
._download
_gql
(
391 'operationName': 'VideoMetadata',
397 'operationName': 'VideoPlayer_ChapterSelectButtonVideo',
399 'includePrivate': False,
403 'operationName': 'VideoPlayer_VODSeekbarPreviewVideo',
405 'includePrivate': False,
409 'Downloading stream metadata GraphQL')
411 video
= traverse_obj(data
, (..., 'data', 'video'), get_all
=False)
413 raise ExtractorError(f
'Video {item_id} does not exist', expected
=True)
415 video
['moments'] = traverse_obj(data
, (..., 'data', 'video', 'moments', 'edges', ..., 'node'))
416 video
['storyboard'] = traverse_obj(
417 data
, (..., 'data', 'video', 'seekPreviewsURL', {url_or_none}
), get_all
=False)
421 def _extract_info(self
, info
):
422 status
= info
.get('status')
423 if status
== 'recording':
425 elif status
== 'recorded':
429 _QUALITIES
= ('small', 'medium', 'large')
430 quality_key
= qualities(_QUALITIES
)
432 preview
= info
.get('preview')
433 if isinstance(preview
, dict):
434 for thumbnail_id
, thumbnail_url
in preview
.items():
435 thumbnail_url
= url_or_none(thumbnail_url
)
436 if not thumbnail_url
:
438 if thumbnail_id
not in _QUALITIES
:
441 'url': thumbnail_url
,
442 'preference': quality_key(thumbnail_id
),
446 'title': info
.get('title') or 'Untitled Broadcast',
447 'description': info
.get('description'),
448 'duration': int_or_none(info
.get('length')),
449 'thumbnails': thumbnails
,
450 'uploader': info
.get('channel', {}).get('display_name'),
451 'uploader_id': info
.get('channel', {}).get('name'),
452 'timestamp': parse_iso8601(info
.get('recorded_at')),
453 'view_count': int_or_none(info
.get('views')),
458 def _extract_chapters(self
, info
, item_id
):
459 if not info
.get('moments'):
460 game
= traverse_obj(info
, ('game', 'displayName'))
462 yield {'title': game
}
465 for moment
in info
['moments']:
466 start_time
= int_or_none(moment
.get('positionMilliseconds'), 1000)
467 duration
= int_or_none(moment
.get('durationMilliseconds'), 1000)
468 name
= str_or_none(moment
.get('description'))
470 if start_time
is None or duration
is None:
471 self
.report_warning(f
'Important chapter information missing for chapter {name}', item_id
)
474 'start_time': start_time
,
475 'end_time': start_time
+ duration
,
479 def _extract_info_gql(self
, info
, item_id
):
480 vod_id
= info
.get('id') or item_id
481 # id backward compatibility for download archives
483 vod_id
= 'v%s' % vod_id
484 thumbnail
= url_or_none(info
.get('previewThumbnailURL'))
487 if re
.findall(r
'/404_processing_[^.?#]+\.png', thumbnail
):
488 is_live
, thumbnail
= True, None
494 'title': info
.get('title') or 'Untitled Broadcast',
495 'description': info
.get('description'),
496 'duration': int_or_none(info
.get('lengthSeconds')),
497 'thumbnails': self
._get
_thumbnails
(thumbnail
),
498 'uploader': try_get(info
, lambda x
: x
['owner']['displayName'], compat_str
),
499 'uploader_id': try_get(info
, lambda x
: x
['owner']['login'], compat_str
),
500 'timestamp': unified_timestamp(info
.get('publishedAt')),
501 'view_count': int_or_none(info
.get('viewCount')),
502 'chapters': list(self
._extract
_chapters
(info
, item_id
)),
507 def _extract_storyboard(self
, item_id
, storyboard_json_url
, duration
):
508 if not duration
or not storyboard_json_url
:
510 spec
= self
._download
_json
(storyboard_json_url
, item_id
, 'Downloading storyboard metadata JSON', fatal
=False) or []
511 # sort from highest quality to lowest
512 # This makes sb0 the highest-quality format, sb1 - lower, etc which is consistent with youtube sb ordering
513 spec
.sort(key
=lambda x
: int_or_none(x
.get('width')) or 0, reverse
=True)
514 base
= base_url(storyboard_json_url
)
515 for i
, s
in enumerate(spec
):
516 count
= int_or_none(s
.get('count'))
517 images
= s
.get('images')
518 if not (images
and count
):
520 fragment_duration
= duration
/ len(images
)
522 'format_id': f
'sb{i}',
523 'format_note': 'storyboard',
528 'url': urljoin(base
, images
[0]),
529 'width': int_or_none(s
.get('width')),
530 'height': int_or_none(s
.get('height')),
531 'fps': count
/ duration
,
532 'rows': int_or_none(s
.get('rows')),
533 'columns': int_or_none(s
.get('cols')),
535 'url': urljoin(base
, path
),
536 'duration': fragment_duration
,
537 } for path
in images
],
540 def _real_extract(self
, url
):
541 vod_id
= self
._match
_id
(url
)
543 video
= self
._download
_info
(vod_id
)
544 info
= self
._extract
_info
_gql
(video
, vod_id
)
545 access_token
= self
._download
_access
_token
(vod_id
, 'video', 'id')
547 formats
= self
._extract
_twitch
_m
3u8_formats
(
548 'vod', vod_id
, access_token
['value'], access_token
['signature'])
549 formats
.extend(self
._extract
_storyboard
(vod_id
, video
.get('storyboard'), info
.get('duration')))
551 self
._prefer
_source
(formats
)
552 info
['formats'] = formats
554 parsed_url
= compat_urllib_parse_urlparse(url
)
555 query
= compat_parse_qs(parsed_url
.query
)
557 info
['start_time'] = parse_duration(query
['t'][0])
559 if info
.get('timestamp') is not None:
560 info
['subtitles'] = {
562 'url': update_url_query(
563 'https://api.twitch.tv/v5/videos/%s/comments' % vod_id
, {
564 'client_id': self
._CLIENT
_ID
,
573 def _make_video_result(node
):
574 assert isinstance(node
, dict)
575 video_id
= node
.get('id')
579 '_type': 'url_transparent',
580 'ie_key': TwitchVodIE
.ie_key(),
581 'id': 'v' + video_id
,
582 'url': 'https://www.twitch.tv/videos/%s' % video_id
,
583 'title': node
.get('title'),
584 'thumbnail': node
.get('previewThumbnailURL'),
585 'duration': float_or_none(node
.get('lengthSeconds')),
586 'view_count': int_or_none(node
.get('viewCount')),
590 class TwitchCollectionIE(TwitchBaseIE
):
591 _VALID_URL
= r
'https?://(?:(?:www|go|m)\.)?twitch\.tv/collections/(?P<id>[^/]+)'
594 'url': 'https://www.twitch.tv/collections/wlDCoH0zEBZZbQ',
596 'id': 'wlDCoH0zEBZZbQ',
597 'title': 'Overthrow Nook, capitalism for children',
599 'playlist_mincount': 13,
602 _OPERATION_NAME
= 'CollectionSideBar'
604 def _real_extract(self
, url
):
605 collection_id
= self
._match
_id
(url
)
606 collection
= self
._download
_gql
(
608 'operationName': self
._OPERATION
_NAME
,
609 'variables': {'collectionID': collection_id
},
611 'Downloading collection GraphQL')[0]['data']['collection']
612 title
= collection
.get('title')
614 for edge
in collection
['items']['edges']:
615 if not isinstance(edge
, dict):
617 node
= edge
.get('node')
618 if not isinstance(node
, dict):
620 video
= _make_video_result(node
)
622 entries
.append(video
)
623 return self
.playlist_result(
624 entries
, playlist_id
=collection_id
, playlist_title
=title
)
627 class TwitchPlaylistBaseIE(TwitchBaseIE
):
630 def _entries(self
, channel_name
, *args
):
632 variables_common
= self
._make
_variables
(channel_name
, *args
)
633 entries_key
= '%ss' % self
._ENTRY
_KIND
634 for page_num
in itertools
.count(1):
635 variables
= variables_common
.copy()
636 variables
['limit'] = self
._PAGE
_LIMIT
638 variables
['cursor'] = cursor
639 page
= self
._download
_gql
(
641 'operationName': self
._OPERATION
_NAME
,
642 'variables': variables
,
644 'Downloading %ss GraphQL page %s' % (self
._NODE
_KIND
, page_num
),
649 page
, lambda x
: x
[0]['data']['user'][entries_key
]['edges'], list)
653 if not isinstance(edge
, dict):
655 if edge
.get('__typename') != self
._EDGE
_KIND
:
657 node
= edge
.get('node')
658 if not isinstance(node
, dict):
660 if node
.get('__typename') != self
._NODE
_KIND
:
662 entry
= self
._extract
_entry
(node
)
664 cursor
= edge
.get('cursor')
666 if not cursor
or not isinstance(cursor
, compat_str
):
670 class TwitchVideosIE(TwitchPlaylistBaseIE
):
671 _VALID_URL
= r
'https?://(?:(?:www|go|m)\.)?twitch\.tv/(?P<id>[^/]+)/(?:videos|profile)'
674 # All Videos sorted by Date
675 'url': 'https://www.twitch.tv/spamfish/videos?filter=all',
678 'title': 'spamfish - All Videos sorted by Date',
680 'playlist_mincount': 924,
682 # All Videos sorted by Popular
683 'url': 'https://www.twitch.tv/spamfish/videos?filter=all&sort=views',
686 'title': 'spamfish - All Videos sorted by Popular',
688 'playlist_mincount': 931,
690 # Past Broadcasts sorted by Date
691 'url': 'https://www.twitch.tv/spamfish/videos?filter=archives',
694 'title': 'spamfish - Past Broadcasts sorted by Date',
696 'playlist_mincount': 27,
698 # Highlights sorted by Date
699 'url': 'https://www.twitch.tv/spamfish/videos?filter=highlights',
702 'title': 'spamfish - Highlights sorted by Date',
704 'playlist_mincount': 901,
706 # Uploads sorted by Date
707 'url': 'https://www.twitch.tv/esl_csgo/videos?filter=uploads&sort=time',
710 'title': 'esl_csgo - Uploads sorted by Date',
712 'playlist_mincount': 5,
714 # Past Premieres sorted by Date
715 'url': 'https://www.twitch.tv/spamfish/videos?filter=past_premieres',
718 'title': 'spamfish - Past Premieres sorted by Date',
720 'playlist_mincount': 1,
722 'url': 'https://www.twitch.tv/spamfish/videos/all',
723 'only_matching': True,
725 'url': 'https://m.twitch.tv/spamfish/videos/all',
726 'only_matching': True,
728 'url': 'https://www.twitch.tv/spamfish/videos',
729 'only_matching': True,
732 Broadcast
= collections
.namedtuple('Broadcast', ['type', 'label'])
734 _DEFAULT_BROADCAST
= Broadcast(None, 'All Videos')
736 'archives': Broadcast('ARCHIVE', 'Past Broadcasts'),
737 'highlights': Broadcast('HIGHLIGHT', 'Highlights'),
738 'uploads': Broadcast('UPLOAD', 'Uploads'),
739 'past_premieres': Broadcast('PAST_PREMIERE', 'Past Premieres'),
740 'all': _DEFAULT_BROADCAST
,
743 _DEFAULT_SORTED_BY
= 'Date'
745 'time': _DEFAULT_SORTED_BY
,
749 _OPERATION_NAME
= 'FilterableVideoTower_Videos'
750 _ENTRY_KIND
= 'video'
751 _EDGE_KIND
= 'VideoEdge'
755 def suitable(cls
, url
):
757 if any(ie
.suitable(url
) for ie
in (
759 TwitchVideosCollectionsIE
))
760 else super(TwitchVideosIE
, cls
).suitable(url
))
763 def _make_variables(channel_name
, broadcast_type
, sort
):
765 'channelOwnerLogin': channel_name
,
766 'broadcastType': broadcast_type
,
767 'videoSort': sort
.upper(),
771 def _extract_entry(node
):
772 return _make_video_result(node
)
774 def _real_extract(self
, url
):
775 channel_name
= self
._match
_id
(url
)
777 filter = qs
.get('filter', ['all'])[0]
778 sort
= qs
.get('sort', ['time'])[0]
779 broadcast
= self
._BROADCASTS
.get(filter, self
._DEFAULT
_BROADCAST
)
780 return self
.playlist_result(
781 self
._entries
(channel_name
, broadcast
.type, sort
),
782 playlist_id
=channel_name
,
783 playlist_title
='%s - %s sorted by %s'
784 % (channel_name
, broadcast
.label
,
785 self
._SORTED
_BY
.get(sort
, self
._DEFAULT
_SORTED
_BY
)))
788 class TwitchVideosClipsIE(TwitchPlaylistBaseIE
):
789 _VALID_URL
= r
'https?://(?:(?:www|go|m)\.)?twitch\.tv/(?P<id>[^/]+)/(?:clips|videos/*?\?.*?\bfilter=clips)'
793 'url': 'https://www.twitch.tv/vanillatv/clips?filter=clips&range=all',
796 'title': 'vanillatv - Clips Top All',
798 'playlist_mincount': 1,
800 'url': 'https://www.twitch.tv/dota2ruhub/videos?filter=clips&range=7d',
801 'only_matching': True,
804 Clip
= collections
.namedtuple('Clip', ['filter', 'label'])
806 _DEFAULT_CLIP
= Clip('LAST_WEEK', 'Top 7D')
808 '24hr': Clip('LAST_DAY', 'Top 24H'),
810 '30d': Clip('LAST_MONTH', 'Top 30D'),
811 'all': Clip('ALL_TIME', 'Top All'),
814 # NB: values other than 20 result in skipped videos
817 _OPERATION_NAME
= 'ClipsCards__User'
819 _EDGE_KIND
= 'ClipEdge'
823 def _make_variables(channel_name
, filter):
825 'login': channel_name
,
832 def _extract_entry(node
):
833 assert isinstance(node
, dict)
834 clip_url
= url_or_none(node
.get('url'))
838 '_type': 'url_transparent',
839 'ie_key': TwitchClipsIE
.ie_key(),
840 'id': node
.get('id'),
842 'title': node
.get('title'),
843 'thumbnail': node
.get('thumbnailURL'),
844 'duration': float_or_none(node
.get('durationSeconds')),
845 'timestamp': unified_timestamp(node
.get('createdAt')),
846 'view_count': int_or_none(node
.get('viewCount')),
847 'language': node
.get('language'),
850 def _real_extract(self
, url
):
851 channel_name
= self
._match
_id
(url
)
853 range = qs
.get('range', ['7d'])[0]
854 clip
= self
._RANGE
.get(range, self
._DEFAULT
_CLIP
)
855 return self
.playlist_result(
856 self
._entries
(channel_name
, clip
.filter),
857 playlist_id
=channel_name
,
858 playlist_title
='%s - Clips %s' % (channel_name
, clip
.label
))
861 class TwitchVideosCollectionsIE(TwitchPlaylistBaseIE
):
862 _VALID_URL
= r
'https?://(?:(?:www|go|m)\.)?twitch\.tv/(?P<id>[^/]+)/videos/*?\?.*?\bfilter=collections'
866 'url': 'https://www.twitch.tv/spamfish/videos?filter=collections',
869 'title': 'spamfish - Collections',
871 'playlist_mincount': 3,
873 'url': 'https://www.twitch.tv/monstercat/videos?filter=collections',
876 'title': 'monstercat - Collections',
878 'playlist_mincount': 13,
881 _OPERATION_NAME
= 'ChannelCollectionsContent'
882 _ENTRY_KIND
= 'collection'
883 _EDGE_KIND
= 'CollectionsItemEdge'
884 _NODE_KIND
= 'Collection'
887 def _make_variables(channel_name
):
889 'ownerLogin': channel_name
,
893 def _extract_entry(node
):
894 assert isinstance(node
, dict)
895 collection_id
= node
.get('id')
896 if not collection_id
:
899 '_type': 'url_transparent',
900 'ie_key': TwitchCollectionIE
.ie_key(),
902 'url': 'https://www.twitch.tv/collections/%s' % collection_id
,
903 'title': node
.get('title'),
904 'thumbnail': node
.get('thumbnailURL'),
905 'duration': float_or_none(node
.get('lengthSeconds')),
906 'timestamp': unified_timestamp(node
.get('updatedAt')),
907 'view_count': int_or_none(node
.get('viewCount')),
910 def _real_extract(self
, url
):
911 channel_name
= self
._match
_id
(url
)
912 return self
.playlist_result(
913 self
._entries
(channel_name
), playlist_id
=channel_name
,
914 playlist_title
='%s - Collections' % channel_name
)
917 class TwitchStreamIE(TwitchBaseIE
):
918 IE_NAME
= 'twitch:stream'
919 _VALID_URL
= r
'''(?x)
922 (?:(?:www|go|m)\.)?twitch\.tv/|
923 player\.twitch\.tv/\?.*?\bchannel=
929 'url': 'http://www.twitch.tv/shroomztv',
932 'display_id': 'shroomztv',
934 'title': 're:^ShroomzTV [0-9]{4}-[0-9]{2}-[0-9]{2} [0-9]{2}:[0-9]{2}$',
935 'description': 'H1Z1 - lonewolfing with ShroomzTV | A3 Battle Royale later - @ShroomzTV',
937 'timestamp': 1421928037,
938 'upload_date': '20150122',
939 'uploader': 'ShroomzTV',
940 'uploader_id': 'shroomztv',
945 'skip_download': True,
947 'skip': 'User does not exist',
949 'url': 'http://www.twitch.tv/miracle_doto#profile-0',
950 'only_matching': True,
952 'url': 'https://player.twitch.tv/?channel=lotsofs',
953 'only_matching': True,
955 'url': 'https://go.twitch.tv/food',
956 'only_matching': True,
958 'url': 'https://m.twitch.tv/food',
959 'only_matching': True,
961 'url': 'https://www.twitch.tv/monstercat',
964 'display_id': 'monstercat',
965 'title': 're:Monstercat',
966 'description': 'md5:0945ad625e615bc8f0469396537d87d9',
968 'timestamp': 1677107190,
969 'upload_date': '20230222',
970 'uploader': 'Monstercat',
971 'uploader_id': 'monstercat',
972 'live_status': 'is_live',
973 'thumbnail': 're:https://.*.jpg',
977 'skip_download': 'Livestream',
982 def suitable(cls
, url
):
984 if any(ie
.suitable(url
) for ie
in (
989 TwitchVideosCollectionsIE
,
991 else super(TwitchStreamIE
, cls
).suitable(url
))
993 def _real_extract(self
, url
):
994 channel_name
= self
._match
_id
(url
).lower()
996 gql
= self
._download
_gql
(
998 'operationName': 'StreamMetadata',
999 'variables': {'channelLogin': channel_name
},
1001 'operationName': 'ComscoreStreamingQuery',
1003 'channel': channel_name
,
1007 'isVodOrCollection': False,
1011 'operationName': 'VideoPreviewOverlay',
1012 'variables': {'login': channel_name
},
1014 'Downloading stream GraphQL')
1016 user
= gql
[0]['data']['user']
1019 raise ExtractorError(
1020 '%s does not exist' % channel_name
, expected
=True)
1022 stream
= user
['stream']
1025 raise UserNotLive(video_id
=channel_name
)
1027 access_token
= self
._download
_access
_token
(
1028 channel_name
, 'stream', 'channelName')
1030 stream_id
= stream
.get('id') or channel_name
1031 formats
= self
._extract
_twitch
_m
3u8_formats
(
1032 'api/channel/hls', channel_name
, access_token
['value'], access_token
['signature'])
1033 self
._prefer
_source
(formats
)
1035 view_count
= stream
.get('viewers')
1036 timestamp
= unified_timestamp(stream
.get('createdAt'))
1038 sq_user
= try_get(gql
, lambda x
: x
[1]['data']['user'], dict) or {}
1039 uploader
= sq_user
.get('displayName')
1040 description
= try_get(
1041 sq_user
, lambda x
: x
['broadcastSettings']['title'], compat_str
)
1043 thumbnail
= url_or_none(try_get(
1044 gql
, lambda x
: x
[2]['data']['user']['stream']['previewImageURL'],
1047 title
= uploader
or channel_name
1048 stream_type
= stream
.get('type')
1049 if stream_type
in ['rerun', 'live']:
1050 title
+= ' (%s)' % stream_type
1054 'display_id': channel_name
,
1056 'description': description
,
1057 'thumbnails': self
._get
_thumbnails
(thumbnail
),
1058 'uploader': uploader
,
1059 'uploader_id': channel_name
,
1060 'timestamp': timestamp
,
1061 'view_count': view_count
,
1063 'is_live': stream_type
== 'live',
1067 class TwitchClipsIE(TwitchBaseIE
):
1068 IE_NAME
= 'twitch:clips'
1069 _VALID_URL
= r
'''(?x)
1072 clips\.twitch\.tv/(?:embed\?.*?\bclip=|(?:[^/]+/)*)|
1073 (?:(?:www|go|m)\.)?twitch\.tv/(?:[^/]+/)?clip/
1079 'url': 'https://clips.twitch.tv/FaintLightGullWholeWheat',
1080 'md5': '761769e1eafce0ffebfb4089cb3847cd',
1083 'display_id': 'FaintLightGullWholeWheat',
1085 'title': 'EA Play 2016 Live from the Novo Theatre',
1086 'thumbnail': r
're:^https?://.*\.jpg',
1087 'timestamp': 1465767393,
1088 'upload_date': '20160612',
1090 'uploader': 'stereotype_',
1091 'uploader_id': '43566419',
1095 'url': 'https://clips.twitch.tv/rflegendary/UninterestedBeeDAESuppy',
1096 'only_matching': True,
1098 'url': 'https://www.twitch.tv/sergeynixon/clip/StormyThankfulSproutFutureMan',
1099 'only_matching': True,
1101 'url': 'https://clips.twitch.tv/embed?clip=InquisitiveBreakableYogurtJebaited',
1102 'only_matching': True,
1104 'url': 'https://m.twitch.tv/rossbroadcast/clip/ConfidentBraveHumanChefFrank',
1105 'only_matching': True,
1107 'url': 'https://go.twitch.tv/rossbroadcast/clip/ConfidentBraveHumanChefFrank',
1108 'only_matching': True,
1110 'url': 'https://m.twitch.tv/clip/FaintLightGullWholeWheat',
1111 'only_matching': True,
1114 def _real_extract(self
, url
):
1115 video_id
= self
._match
_id
(url
)
1117 clip
= self
._download
_gql
(
1119 'operationName': 'VideoAccessToken_Clip',
1124 'Downloading clip access token GraphQL')[0]['data']['clip']
1127 raise ExtractorError(
1128 'This clip is no longer available', expected
=True)
1131 'sig': clip
['playbackAccessToken']['signature'],
1132 'token': clip
['playbackAccessToken']['value'],
1135 data
= self
._download
_base
_gql
(
1149 tiny: thumbnailURL(width: 86, height: 45)
1150 small: thumbnailURL(width: 260, height: 147)
1151 medium: thumbnailURL(width: 480, height: 272)
1160 }''' % video_id
}, 'Downloading clip GraphQL', fatal
=False)
1163 clip
= try_get(data
, lambda x
: x
['data']['clip'], dict) or clip
1166 for option
in clip
.get('videoQualities', []):
1167 if not isinstance(option
, dict):
1169 source
= url_or_none(option
.get('sourceURL'))
1173 'url': update_url_query(source
, access_query
),
1174 'format_id': option
.get('quality'),
1175 'height': int_or_none(option
.get('quality')),
1176 'fps': int_or_none(option
.get('frameRate')),
1180 for thumbnail_id
in ('tiny', 'small', 'medium'):
1181 thumbnail_url
= clip
.get(thumbnail_id
)
1182 if not thumbnail_url
:
1186 'url': thumbnail_url
,
1188 mobj
= re
.search(r
'-(\d+)x(\d+)\.', thumbnail_url
)
1191 'height': int(mobj
.group(2)),
1192 'width': int(mobj
.group(1)),
1194 thumbnails
.append(thumb
)
1196 old_id
= self
._search
_regex
(r
'%7C(\d+)(?:-\d+)?.mp4', formats
[-1]['url'], 'old id', default
=None)
1199 'id': clip
.get('id') or video_id
,
1200 '_old_archive_ids': [make_archive_id(self
, old_id
)] if old_id
else None,
1201 'display_id': video_id
,
1202 'title': clip
.get('title'),
1204 'duration': int_or_none(clip
.get('durationSeconds')),
1205 'view_count': int_or_none(clip
.get('viewCount')),
1206 'timestamp': unified_timestamp(clip
.get('createdAt')),
1207 'thumbnails': thumbnails
,
1208 'creator': try_get(clip
, lambda x
: x
['broadcaster']['displayName'], compat_str
),
1209 'uploader': try_get(clip
, lambda x
: x
['curator']['displayName'], compat_str
),
1210 'uploader_id': try_get(clip
, lambda x
: x
['curator']['id'], compat_str
),