2 from __future__
import unicode_literals
8 from .common
import InfoExtractor
12 compat_urllib_request
,
20 class TwitchBaseIE(InfoExtractor
):
21 _VALID_URL_BASE
= r
'https?://(?:www\.)?twitch\.tv'
23 _API_BASE
= 'https://api.twitch.tv'
24 _USHER_BASE
= 'http://usher.twitch.tv'
25 _LOGIN_URL
= 'https://secure.twitch.tv/user/login'
27 def _handle_error(self
, response
):
28 if not isinstance(response
, dict):
30 error
= response
.get('error')
33 '%s returned error: %s - %s' % (self
.IE_NAME
, error
, response
.get('message')),
36 def _download_json(self
, url
, video_id
, note
='Downloading JSON metadata'):
38 'Referer': 'http://api.twitch.tv/crossdomain/receiver.html?v=2',
39 'X-Requested-With': 'XMLHttpRequest',
41 for cookie
in self
._downloader
.cookiejar
:
42 if cookie
.name
== 'api_token':
43 headers
['Twitch-Api-Token'] = cookie
.value
44 request
= compat_urllib_request
.Request(url
, headers
=headers
)
45 response
= super(TwitchBaseIE
, self
)._download
_json
(request
, video_id
, note
)
46 self
._handle
_error
(response
)
49 def _real_initialize(self
):
53 (username
, password
) = self
._get
_login
_info
()
57 login_page
= self
._download
_webpage
(
58 self
._LOGIN
_URL
, None, 'Downloading login page')
60 authenticity_token
= self
._search
_regex
(
61 r
'<input name="authenticity_token" type="hidden" value="([^"]+)"',
62 login_page
, 'authenticity token')
65 'utf8': '✓'.encode('utf-8'),
66 'authenticity_token': authenticity_token
,
67 'redirect_on_login': '',
68 'embed_form': 'false',
69 'mp_source_action': '',
71 'user[login]': username
,
72 'user[password]': password
,
75 request
= compat_urllib_request
.Request(
76 self
._LOGIN
_URL
, compat_urllib_parse
.urlencode(login_form
).encode('utf-8'))
77 request
.add_header('Referer', self
._LOGIN
_URL
)
78 response
= self
._download
_webpage
(
79 request
, None, 'Logging in as %s' % username
)
82 r
"id=([\"'])login_error_message\1[^>]*>(?P<msg>[^<]+)", response)
85 'Unable to login
: %s' % m.group('msg
').strip(), expected=True)
88 class TwitchItemBaseIE(TwitchBaseIE):
89 def _download_info(self, item, item_id):
90 return self._extract_info(self._download_json(
91 '%s/kraken
/videos
/%s%s' % (self._API_BASE, item, item_id), item_id,
92 'Downloading
%s info JSON
' % self._ITEM_TYPE))
94 def _extract_media(self, item_id):
95 info = self._download_info(self._ITEM_SHORTCUT, item_id)
96 response = self._download_json(
97 '%s/api
/videos
/%s%s' % (self._API_BASE, self._ITEM_SHORTCUT, item_id), item_id,
98 'Downloading
%s playlist JSON
' % self._ITEM_TYPE)
100 chunks = response['chunks
']
101 qualities = list(chunks.keys())
102 for num, fragment in enumerate(zip(*chunks.values()), start=1):
104 for fmt_num, fragment_fmt in enumerate(fragment):
105 format_id = qualities[fmt_num]
107 'url
': fragment_fmt['url
'],
108 'format_id
': format_id,
109 'quality
': 1 if format_id == 'live
' else 0,
111 m = re.search(r'^
(?P
<height
>\d
+)[Pp
]', format_id)
113 fmt['height
'] = int(m.group('height
'))
115 self._sort_formats(formats)
117 entry['id'] = '%s_%d' % (entry['id'], num)
118 entry['title
'] = '%s part
%d' % (entry['title
'], num)
119 entry['formats
'] = formats
120 entries.append(entry)
121 return self.playlist_result(entries, info['id'], info['title
'])
123 def _extract_info(self, info):
126 'title
': info['title
'],
127 'description
': info['description
'],
128 'duration
': info['length
'],
129 'thumbnail
': info['preview
'],
130 'uploader
': info['channel
']['display_name
'],
131 'uploader_id
': info['channel
']['name
'],
132 'timestamp
': parse_iso8601(info['recorded_at
']),
133 'view_count
': info['views
'],
136 def _real_extract(self, url):
137 return self._extract_media(self._match_id(url))
140 class TwitchVideoIE(TwitchItemBaseIE):
141 IE_NAME = 'twitch
:video
'
142 _VALID_URL = r'%s/[^
/]+/b
/(?P
<id>[^
/]+)' % TwitchBaseIE._VALID_URL_BASE
147 'url
': 'http
://www
.twitch
.tv
/riotgames
/b
/577357806',
150 'title
': 'Worlds Semifinals
- Star Horn Royal Club vs
. OMG
',
152 'playlist_mincount
': 12,
156 class TwitchChapterIE(TwitchItemBaseIE):
157 IE_NAME = 'twitch
:chapter
'
158 _VALID_URL = r'%s/[^
/]+/c
/(?P
<id>[^
/]+)' % TwitchBaseIE._VALID_URL_BASE
159 _ITEM_TYPE = 'chapter
'
163 'url
': 'http
://www
.twitch
.tv
/acracingleague
/c
/5285812',
166 'title
': 'ACRL Off Season
- Sports Cars
@ Nordschleife
',
168 'playlist_mincount
': 3,
170 'url
': 'http
://www
.twitch
.tv
/tsm_theoddone
/c
/2349361',
171 'only_matching
': True,
175 class TwitchVodIE(TwitchItemBaseIE):
176 IE_NAME = 'twitch
:vod
'
177 _VALID_URL = r'%s/[^
/]+/v
/(?P
<id>[^
/]+)' % TwitchBaseIE._VALID_URL_BASE
182 'url
': 'http
://www
.twitch
.tv
/ksptv
/v
/3622000',
186 'title
': '''KSPTV: Squadcast: "Everyone's on vacation so here
's Dahud" Edition!''',
187 'thumbnail
': 're
:^https?
://.*\
.jpg$
',
189 'timestamp
': 1419028564,
190 'upload_date
': '20141219',
192 'uploader_id
': 'ksptv
',
197 'skip_download
': True,
201 def _real_extract(self, url):
202 item_id = self._match_id(url)
203 info = self._download_info(self._ITEM_SHORTCUT, item_id)
204 access_token = self._download_json(
205 '%s/api
/vods
/%s/access_token
' % (self._API_BASE, item_id), item_id,
206 'Downloading
%s access token
' % self._ITEM_TYPE)
207 formats = self._extract_m3u8_formats(
208 '%s/vod
/%s?nauth
=%s&nauthsig
=%s'
209 % (self._USHER_BASE, item_id, access_token['token
'], access_token['sig
']),
211 info['formats
'] = formats
215 class TwitchPlaylistBaseIE(TwitchBaseIE):
216 _PLAYLIST_URL = '%s/kraken
/channels
/%%s/videos
/?offset
=%%d&limit
=%%d' % TwitchBaseIE._API_BASE
219 def _extract_playlist(self, channel_id):
220 info = self._download_json(
221 '%s/kraken
/channels
/%s' % (self._API_BASE, channel_id),
222 channel_id, 'Downloading channel info JSON
')
223 channel_name = info.get('display_name
') or info.get('name
')
226 limit = self._PAGE_LIMIT
227 for counter in itertools.count(1):
228 response = self._download_json(
229 self._PLAYLIST_URL % (channel_id, offset, limit),
230 channel_id, 'Downloading
%s videos JSON page
%d' % (self._PLAYLIST_TYPE, counter))
231 page_entries = self._extract_playlist_page(response)
234 entries.extend(page_entries)
236 return self.playlist_result(
237 [self.url_result(entry) for entry in set(entries)],
238 channel_id, channel_name)
240 def _extract_playlist_page(self, response):
241 videos = response.get('videos
')
242 return [video['url
'] for video in videos] if videos else []
244 def _real_extract(self, url):
245 return self._extract_playlist(self._match_id(url))
248 class TwitchProfileIE(TwitchPlaylistBaseIE):
249 IE_NAME = 'twitch
:profile
'
250 _VALID_URL = r'%s/(?P
<id>[^
/]+)/profile
/?
(?
:\
#.*)?$' % TwitchBaseIE._VALID_URL_BASE
251 _PLAYLIST_TYPE
= 'profile'
254 'url': 'http://www.twitch.tv/vanillatv/profile',
257 'title': 'VanillaTV',
259 'playlist_mincount': 412,
263 class TwitchPastBroadcastsIE(TwitchPlaylistBaseIE
):
264 IE_NAME
= 'twitch:past_broadcasts'
265 _VALID_URL
= r
'%s/(?P<id>[^/]+)/profile/past_broadcasts/?(?:\#.*)?$' % TwitchBaseIE
._VALID
_URL
_BASE
266 _PLAYLIST_URL
= TwitchPlaylistBaseIE
._PLAYLIST
_URL
+ '&broadcasts=true'
267 _PLAYLIST_TYPE
= 'past broadcasts'
270 'url': 'http://www.twitch.tv/spamfish/profile/past_broadcasts',
275 'playlist_mincount': 54,
279 class TwitchBookmarksIE(TwitchPlaylistBaseIE
):
280 IE_NAME
= 'twitch:bookmarks'
281 _VALID_URL
= r
'%s/(?P<id>[^/]+)/profile/bookmarks/?(?:\#.*)?$' % TwitchBaseIE
._VALID
_URL
_BASE
282 _PLAYLIST_URL
= '%s/api/bookmark/?user=%%s&offset=%%d&limit=%%d' % TwitchBaseIE
._API
_BASE
283 _PLAYLIST_TYPE
= 'bookmarks'
286 'url': 'http://www.twitch.tv/ognos/profile/bookmarks',
291 'playlist_mincount': 3,
294 def _extract_playlist_page(self
, response
):
296 for bookmark
in response
.get('bookmarks', []):
297 video
= bookmark
.get('video')
300 entries
.append(video
['url'])
304 class TwitchStreamIE(TwitchBaseIE
):
305 IE_NAME
= 'twitch:stream'
306 _VALID_URL
= r
'%s/(?P<id>[^/]+)/?(?:\#.*)?$' % TwitchBaseIE
._VALID
_URL
_BASE
309 'url': 'http://www.twitch.tv/shroomztv',
312 'display_id': 'shroomztv',
314 'title': 're:^ShroomzTV [0-9]{4}-[0-9]{2}-[0-9]{2} [0-9]{2}:[0-9]{2}$',
315 'description': 'H1Z1 - lonewolfing with ShroomzTV | A3 Battle Royale later - @ShroomzTV',
317 'timestamp': 1421928037,
318 'upload_date': '20150122',
319 'uploader': 'ShroomzTV',
320 'uploader_id': 'shroomztv',
325 'skip_download': True,
329 def _real_extract(self
, url
):
330 channel_id
= self
._match
_id
(url
)
332 stream
= self
._download
_json
(
333 '%s/kraken/streams/%s' % (self
._API
_BASE
, channel_id
), channel_id
,
334 'Downloading stream JSON').get('stream')
336 # Fallback on profile extraction if stream is offline
338 return self
.url_result(
339 'http://www.twitch.tv/%s/profile' % channel_id
,
340 'TwitchProfile', channel_id
)
342 access_token
= self
._download
_json
(
343 '%s/api/channels/%s/access_token' % (self
._API
_BASE
, channel_id
), channel_id
,
344 'Downloading channel access token')
347 'allow_source': 'true',
348 'p': random
.randint(1000000, 10000000),
349 'player': 'twitchweb',
350 'segment_preference': '4',
351 'sig': access_token
['sig'],
352 'token': access_token
['token'],
355 formats
= self
._extract
_m
3u8_formats
(
356 '%s/api/channel/hls/%s.m3u8?%s'
357 % (self
._USHER
_BASE
, channel_id
, compat_urllib_parse
.urlencode(query
).encode('utf-8')),
360 # prefer the 'source' stream, the others are limited to 30 fps
362 if f
.get('m3u8_media') is not None and f
['m3u8_media'].get('NAME') == 'Source':
365 formats
= sorted(formats
, key
=_sort_source
)
367 view_count
= stream
.get('viewers')
368 timestamp
= parse_iso8601(stream
.get('created_at'))
370 channel
= stream
['channel']
371 title
= self
._live
_title
(channel
.get('display_name') or channel
.get('name'))
372 description
= channel
.get('status')
375 for thumbnail_key
, thumbnail_url
in stream
['preview'].items():
376 m
= re
.search(r
'(?P<width>\d+)x(?P<height>\d+)\.jpg$', thumbnail_key
)
380 'url': thumbnail_url
,
381 'width': int(m
.group('width')),
382 'height': int(m
.group('height')),
386 'id': compat_str(stream
['_id']),
387 'display_id': channel_id
,
389 'description': description
,
390 'thumbnails': thumbnails
,
391 'uploader': channel
.get('display_name'),
392 'uploader_id': channel
.get('name'),
393 'timestamp': timestamp
,
394 'view_count': view_count
,