]> jfr.im git - yt-dlp.git/blame - youtube_dl/extractor/youtube.py
Credit @Ruirize for newgrounds
[yt-dlp.git] / youtube_dl / extractor / youtube.py
CommitLineData
c5e8d7af 1# coding: utf-8
c5e8d7af
PH
2
3import json
4import netrc
5import re
6import socket
04cc9617 7import itertools
055e6f36 8import xml.etree.ElementTree
c5e8d7af 9
b05654f0 10from .common import InfoExtractor, SearchInfoExtractor
54d39d8b 11from .subtitles import SubtitlesInfoExtractor
c5e8d7af
PH
12from ..utils import (
13 compat_http_client,
14 compat_parse_qs,
15 compat_urllib_error,
16 compat_urllib_parse,
17 compat_urllib_request,
18 compat_str,
19
20 clean_html,
21 get_element_by_id,
22 ExtractorError,
23 unescapeHTML,
24 unified_strdate,
04cc9617 25 orderedSet,
c5e8d7af
PH
26)
27
de7f3446 28class YoutubeBaseInfoExtractor(InfoExtractor):
b2e8bc1b
JMF
29 """Provide base functions for Youtube extractors"""
30 _LOGIN_URL = 'https://accounts.google.com/ServiceLogin'
31 _LANG_URL = r'https://www.youtube.com/?hl=en&persist_hl=1&gl=US&persist_gl=1&opt_out_ackd=1'
32 _AGE_URL = 'http://www.youtube.com/verify_age?next_url=/&gl=US&hl=en'
33 _NETRC_MACHINE = 'youtube'
34 # If True it will raise an error if no login info is provided
35 _LOGIN_REQUIRED = False
36
37 def report_lang(self):
38 """Report attempt to set language."""
39 self.to_screen(u'Setting language')
40
41 def _set_language(self):
42 request = compat_urllib_request.Request(self._LANG_URL)
43 try:
44 self.report_lang()
45 compat_urllib_request.urlopen(request).read()
46 except (compat_urllib_error.URLError, compat_http_client.HTTPException, socket.error) as err:
47 self._downloader.report_warning(u'unable to set language: %s' % compat_str(err))
48 return False
49 return True
50
51 def _login(self):
52 (username, password) = self._get_login_info()
53 # No authentication to be performed
54 if username is None:
55 if self._LOGIN_REQUIRED:
56 raise ExtractorError(u'No login info available, needed for using %s.' % self.IE_NAME, expected=True)
57 return False
58
59 request = compat_urllib_request.Request(self._LOGIN_URL)
60 try:
61 login_page = compat_urllib_request.urlopen(request).read().decode('utf-8')
62 except (compat_urllib_error.URLError, compat_http_client.HTTPException, socket.error) as err:
63 self._downloader.report_warning(u'unable to fetch login page: %s' % compat_str(err))
64 return False
65
66 galx = None
67 dsh = None
68 match = re.search(re.compile(r'<input.+?name="GALX".+?value="(.+?)"', re.DOTALL), login_page)
69 if match:
70 galx = match.group(1)
71 match = re.search(re.compile(r'<input.+?name="dsh".+?value="(.+?)"', re.DOTALL), login_page)
72 if match:
73 dsh = match.group(1)
c5e8d7af 74
b2e8bc1b
JMF
75 # Log in
76 login_form_strs = {
77 u'continue': u'https://www.youtube.com/signin?action_handle_signin=true&feature=sign_in_button&hl=en_US&nomobiletemp=1',
78 u'Email': username,
79 u'GALX': galx,
80 u'Passwd': password,
81 u'PersistentCookie': u'yes',
82 u'_utf8': u'霱',
83 u'bgresponse': u'js_disabled',
84 u'checkConnection': u'',
85 u'checkedDomains': u'youtube',
86 u'dnConn': u'',
87 u'dsh': dsh,
88 u'pstMsg': u'0',
89 u'rmShown': u'1',
90 u'secTok': u'',
91 u'signIn': u'Sign in',
92 u'timeStmp': u'',
93 u'service': u'youtube',
94 u'uilel': u'3',
95 u'hl': u'en_US',
96 }
97 # Convert to UTF-8 *before* urlencode because Python 2.x's urlencode
98 # chokes on unicode
99 login_form = dict((k.encode('utf-8'), v.encode('utf-8')) for k,v in login_form_strs.items())
100 login_data = compat_urllib_parse.urlencode(login_form).encode('ascii')
101 request = compat_urllib_request.Request(self._LOGIN_URL, login_data)
102 try:
103 self.report_login()
104 login_results = compat_urllib_request.urlopen(request).read().decode('utf-8')
105 if re.search(r'(?i)<form[^>]* id="gaia_loginform"', login_results) is not None:
106 self._downloader.report_warning(u'unable to log in: bad username or password')
107 return False
108 except (compat_urllib_error.URLError, compat_http_client.HTTPException, socket.error) as err:
109 self._downloader.report_warning(u'unable to log in: %s' % compat_str(err))
110 return False
111 return True
112
113 def _confirm_age(self):
114 age_form = {
115 'next_url': '/',
116 'action_confirm': 'Confirm',
117 }
118 request = compat_urllib_request.Request(self._AGE_URL, compat_urllib_parse.urlencode(age_form))
119 try:
120 self.report_age_confirmation()
121 compat_urllib_request.urlopen(request).read().decode('utf-8')
122 except (compat_urllib_error.URLError, compat_http_client.HTTPException, socket.error) as err:
123 raise ExtractorError(u'Unable to confirm age: %s' % compat_str(err))
124 return True
125
126 def _real_initialize(self):
127 if self._downloader is None:
128 return
129 if not self._set_language():
130 return
131 if not self._login():
132 return
133 self._confirm_age()
c5e8d7af 134
8377574c 135
de7f3446 136class YoutubeIE(YoutubeBaseInfoExtractor, SubtitlesInfoExtractor):
0f818663 137 IE_DESC = u'YouTube.com'
c5e8d7af
PH
138 _VALID_URL = r"""^
139 (
140 (?:https?://)? # http(s):// (optional)
f4b05232 141 (?:(?:(?:(?:\w+\.)?youtube(?:-nocookie)?\.com/|
e69ae5b9
JMF
142 tube\.majestyc\.net/|
143 youtube\.googleapis\.com/) # the various hostnames, with wildcard subdomains
c5e8d7af
PH
144 (?:.*?\#/)? # handle anchor (#/) redirect urls
145 (?: # the various things that can precede the ID:
146 (?:(?:v|embed|e)/) # v/ or embed/ or e/
147 |(?: # or the v= param in all its forms
d741e55a 148 (?:(?:watch|movie)(?:_popup)?(?:\.php)?)? # preceding watch(_popup|.php) or nothing (like /?v=xxxx)
c5e8d7af
PH
149 (?:\?|\#!?) # the params delimiter ? or # or #!
150 (?:.*?&)? # any other preceding param (like /?s=tuff&v=xxxx)
151 v=
152 )
f4b05232
JMF
153 ))
154 |youtu\.be/ # just youtu.be/xxxx
155 )
c5e8d7af 156 )? # all until now is optional -> you can pass the naked ID
8963d9c2 157 ([0-9A-Za-z_-]{11}) # here is it! the YouTube video ID
c5e8d7af
PH
158 (?(1).+)? # if we found the ID, everything can follow
159 $"""
c5e8d7af 160 _NEXT_URL_RE = r'[\?&]next_url=([^&]+)'
c5e8d7af 161 # Listed in order of quality
bdc6b3fc 162 _available_formats = ['38', '37', '46', '22', '45', '35', '44', '34', '18', '43', '6', '5', '36', '17', '13',
96fb5605 163 # Apple HTTP Live Streaming
bdc6b3fc 164 '96', '95', '94', '93', '92', '132', '151',
939fbd26
JMF
165 # 3D
166 '85', '84', '102', '83', '101', '82', '100',
167 # Dash video
168 '138', '137', '248', '136', '247', '135', '246',
169 '245', '244', '134', '243', '133', '242', '160',
170 # Dash audio
171 '141', '172', '140', '171', '139',
1d043b93 172 ]
bdc6b3fc 173 _available_formats_prefer_free = ['38', '46', '37', '45', '22', '44', '35', '43', '34', '18', '6', '5', '36', '17', '13',
96fb5605 174 # Apple HTTP Live Streaming
bdc6b3fc
AZ
175 '96', '95', '94', '93', '92', '132', '151',
176 # 3D
86fe61c8 177 '85', '102', '84', '101', '83', '100', '82',
939fbd26
JMF
178 # Dash video
179 '138', '248', '137', '247', '136', '246', '245',
180 '244', '135', '243', '134', '242', '133', '160',
181 # Dash audio
182 '172', '141', '171', '140', '139',
1d043b93 183 ]
bdc6b3fc
AZ
184 _video_formats_map = {
185 'flv': ['35', '34', '6', '5'],
186 '3gp': ['36', '17', '13'],
187 'mp4': ['38', '37', '22', '18'],
188 'webm': ['46', '45', '44', '43'],
189 }
c5e8d7af
PH
190 _video_extensions = {
191 '13': '3gp',
bdc6b3fc 192 '17': '3gp',
c5e8d7af
PH
193 '18': 'mp4',
194 '22': 'mp4',
bdc6b3fc 195 '36': '3gp',
c5e8d7af 196 '37': 'mp4',
d69cf69a 197 '38': 'mp4',
c5e8d7af
PH
198 '43': 'webm',
199 '44': 'webm',
200 '45': 'webm',
201 '46': 'webm',
1d043b93 202
86fe61c8
AZ
203 # 3d videos
204 '82': 'mp4',
205 '83': 'mp4',
206 '84': 'mp4',
207 '85': 'mp4',
208 '100': 'webm',
209 '101': 'webm',
210 '102': 'webm',
836a086c 211
96fb5605 212 # Apple HTTP Live Streaming
1d043b93
JMF
213 '92': 'mp4',
214 '93': 'mp4',
215 '94': 'mp4',
216 '95': 'mp4',
217 '96': 'mp4',
218 '132': 'mp4',
219 '151': 'mp4',
836a086c
AZ
220
221 # Dash mp4
222 '133': 'mp4',
223 '134': 'mp4',
224 '135': 'mp4',
225 '136': 'mp4',
226 '137': 'mp4',
227 '138': 'mp4',
228 '139': 'mp4',
229 '140': 'mp4',
230 '141': 'mp4',
231 '160': 'mp4',
232
233 # Dash webm
234 '171': 'webm',
235 '172': 'webm',
236 '242': 'webm',
237 '243': 'webm',
238 '244': 'webm',
239 '245': 'webm',
240 '246': 'webm',
241 '247': 'webm',
242 '248': 'webm',
c5e8d7af
PH
243 }
244 _video_dimensions = {
245 '5': '240x400',
246 '6': '???',
247 '13': '???',
248 '17': '144x176',
249 '18': '360x640',
250 '22': '720x1280',
251 '34': '360x640',
252 '35': '480x854',
bdc6b3fc 253 '36': '240x320',
c5e8d7af
PH
254 '37': '1080x1920',
255 '38': '3072x4096',
256 '43': '360x640',
257 '44': '480x854',
258 '45': '720x1280',
259 '46': '1080x1920',
86fe61c8
AZ
260 '82': '360p',
261 '83': '480p',
262 '84': '720p',
263 '85': '1080p',
1d043b93
JMF
264 '92': '240p',
265 '93': '360p',
266 '94': '480p',
267 '95': '720p',
268 '96': '1080p',
86fe61c8
AZ
269 '100': '360p',
270 '101': '480p',
836a086c 271 '102': '720p',
1d043b93
JMF
272 '132': '240p',
273 '151': '72p',
836a086c
AZ
274 '133': '240p',
275 '134': '360p',
276 '135': '480p',
277 '136': '720p',
278 '137': '1080p',
279 '138': '>1080p',
280 '139': '48k',
281 '140': '128k',
282 '141': '256k',
283 '160': '192p',
284 '171': '128k',
285 '172': '256k',
286 '242': '240p',
287 '243': '360p',
288 '244': '480p',
289 '245': '480p',
290 '246': '480p',
291 '247': '720p',
292 '248': '1080p',
c5e8d7af 293 }
836a086c
AZ
294 _special_itags = {
295 '82': '3D',
296 '83': '3D',
297 '84': '3D',
298 '85': '3D',
299 '100': '3D',
300 '101': '3D',
301 '102': '3D',
302 '133': 'DASH Video',
303 '134': 'DASH Video',
304 '135': 'DASH Video',
305 '136': 'DASH Video',
306 '137': 'DASH Video',
307 '138': 'DASH Video',
308 '139': 'DASH Audio',
309 '140': 'DASH Audio',
310 '141': 'DASH Audio',
311 '160': 'DASH Video',
312 '171': 'DASH Audio',
313 '172': 'DASH Audio',
314 '242': 'DASH Video',
315 '243': 'DASH Video',
316 '244': 'DASH Video',
317 '245': 'DASH Video',
318 '246': 'DASH Video',
319 '247': 'DASH Video',
320 '248': 'DASH Video',
c5e8d7af 321 }
836a086c 322
c5e8d7af 323 IE_NAME = u'youtube'
2eb88d95
PH
324 _TESTS = [
325 {
0e853ca4
PH
326 u"url": u"http://www.youtube.com/watch?v=BaW_jenozKc",
327 u"file": u"BaW_jenozKc.mp4",
328 u"info_dict": {
329 u"title": u"youtube-dl test video \"'/\\ä↭𝕐",
330 u"uploader": u"Philipp Hagemeister",
331 u"uploader_id": u"phihag",
332 u"upload_date": u"20121002",
333 u"description": u"test chars: \"'/\\ä↭𝕐\n\nThis is a test video for youtube-dl.\n\nFor more information, contact phihag@phihag.de ."
2eb88d95 334 }
0e853ca4
PH
335 },
336 {
337 u"url": u"http://www.youtube.com/watch?v=1ltcDfZMA3U",
338 u"file": u"1ltcDfZMA3U.flv",
339 u"note": u"Test VEVO video (#897)",
340 u"info_dict": {
341 u"upload_date": u"20070518",
342 u"title": u"Maps - It Will Find You",
343 u"description": u"Music video by Maps performing It Will Find You.",
344 u"uploader": u"MuteUSA",
345 u"uploader_id": u"MuteUSA"
2eb88d95 346 }
0e853ca4
PH
347 },
348 {
349 u"url": u"http://www.youtube.com/watch?v=UxxajLWwzqY",
350 u"file": u"UxxajLWwzqY.mp4",
351 u"note": u"Test generic use_cipher_signature video (#897)",
352 u"info_dict": {
353 u"upload_date": u"20120506",
354 u"title": u"Icona Pop - I Love It (feat. Charli XCX) [OFFICIAL VIDEO]",
c7bf7366 355 u"description": u"md5:3e2666e0a55044490499ea45fe9037b7",
45ed795c 356 u"uploader": u"Icona Pop",
0e853ca4 357 u"uploader_id": u"IconaPop"
2eb88d95 358 }
c108eb73
JMF
359 },
360 {
361 u"url": u"https://www.youtube.com/watch?v=07FYdnEawAQ",
362 u"file": u"07FYdnEawAQ.mp4",
363 u"note": u"Test VEVO video with age protection (#956)",
364 u"info_dict": {
365 u"upload_date": u"20130703",
366 u"title": u"Justin Timberlake - Tunnel Vision (Explicit)",
367 u"description": u"md5:64249768eec3bc4276236606ea996373",
368 u"uploader": u"justintimberlakeVEVO",
369 u"uploader_id": u"justintimberlakeVEVO"
370 }
371 },
1d043b93
JMF
372 {
373 u'url': u'https://www.youtube.com/watch?v=TGi3HqYrWHE',
374 u'file': u'TGi3HqYrWHE.mp4',
375 u'note': u'm3u8 video',
376 u'info_dict': {
377 u'title': u'Triathlon - Men - London 2012 Olympic Games',
378 u'description': u'- Men - TR02 - Triathlon - 07 August 2012 - London 2012 Olympic Games',
379 u'uploader': u'olympic',
380 u'upload_date': u'20120807',
381 u'uploader_id': u'olympic',
382 },
383 u'params': {
384 u'skip_download': True,
385 },
386 },
2eb88d95
PH
387 ]
388
c5e8d7af
PH
389
390 @classmethod
391 def suitable(cls, url):
392 """Receives a URL and returns True if suitable for this IE."""
e3ea4790 393 if YoutubePlaylistIE.suitable(url): return False
c5e8d7af
PH
394 return re.match(cls._VALID_URL, url, re.VERBOSE) is not None
395
c5e8d7af
PH
396 def report_video_webpage_download(self, video_id):
397 """Report attempt to download video webpage."""
398 self.to_screen(u'%s: Downloading video webpage' % video_id)
399
400 def report_video_info_webpage_download(self, video_id):
401 """Report attempt to download video info webpage."""
402 self.to_screen(u'%s: Downloading video info webpage' % video_id)
403
c5e8d7af
PH
404 def report_information_extraction(self, video_id):
405 """Report attempt to extract video information."""
406 self.to_screen(u'%s: Extracting video information' % video_id)
407
408 def report_unavailable_format(self, video_id, format):
409 """Report extracted video URL."""
410 self.to_screen(u'%s: Format %s not available' % (video_id, format))
411
412 def report_rtmp_download(self):
413 """Indicate the download will use the RTMP protocol."""
414 self.to_screen(u'RTMP download detected')
415
98bcd283 416 def _decrypt_signature(self, s):
257a2501 417 """Turn the encrypted s field into a working signature"""
6b37f0be 418
444b1165
JMF
419 if len(s) == 92:
420 return s[25] + s[3:25] + s[0] + s[26:42] + s[79] + s[43:79] + s[91] + s[80:83]
421 elif len(s) == 90:
422 return s[25] + s[3:25] + s[2] + s[26:40] + s[77] + s[41:77] + s[89] + s[78:81]
8a9d86a2 423 elif len(s) == 89:
424 return s[84:78:-1] + s[87] + s[77:60:-1] + s[0] + s[59:3:-1]
444b1165 425 elif len(s) == 88:
3e223834 426 return s[7:28] + s[87] + s[29:45] + s[55] + s[46:55] + s[2] + s[56:87] + s[28]
be547e1d 427 elif len(s) == 87:
3a725669 428 return s[6:27] + s[4] + s[28:39] + s[27] + s[40:59] + s[2] + s[60:]
be547e1d 429 elif len(s) == 86:
1cf911bc 430 return s[5:34] + s[0] + s[35:38] + s[3] + s[39:45] + s[38] + s[46:53] + s[73] + s[54:73] + s[85] + s[74:85] + s[53]
be547e1d 431 elif len(s) == 85:
6ae8ee3f 432 return s[3:11] + s[0] + s[12:55] + s[84] + s[56:84]
be547e1d 433 elif len(s) == 84:
23b00bc0 434 return s[81:36:-1] + s[0] + s[35:2:-1]
be547e1d 435 elif len(s) == 83:
e1842025 436 return s[81:64:-1] + s[82] + s[63:52:-1] + s[45] + s[51:45:-1] + s[1] + s[44:1:-1] + s[0]
be547e1d 437 elif len(s) == 82:
ce85f022 438 return s[80:73:-1] + s[81] + s[72:54:-1] + s[2] + s[53:43:-1] + s[0] + s[42:2:-1] + s[43] + s[1] + s[54]
be547e1d 439 elif len(s) == 81:
aedd6bb9 440 return s[56] + s[79:56:-1] + s[41] + s[55:41:-1] + s[80] + s[40:34:-1] + s[0] + s[33:29:-1] + s[34] + s[28:9:-1] + s[29] + s[8:0:-1] + s[9]
066090dd
JMF
441 elif len(s) == 80:
442 return s[1:19] + s[0] + s[20:68] + s[19] + s[69:80]
5c468ca8
JMF
443 elif len(s) == 79:
444 return s[54] + s[77:54:-1] + s[39] + s[53:39:-1] + s[78] + s[38:34:-1] + s[0] + s[33:29:-1] + s[34] + s[28:9:-1] + s[29] + s[8:0:-1] + s[9]
be547e1d
PH
445
446 else:
447 raise ExtractorError(u'Unable to decrypt signature, key length %d not supported; retrying might work' % (len(s)))
c5e8d7af 448
75952c6e
JMF
449 def _decrypt_signature_age_gate(self, s):
450 # The videos with age protection use another player, so the algorithms
451 # can be different.
452 if len(s) == 86:
453 return s[2:63] + s[82] + s[64:82] + s[63]
454 else:
455 # Fallback to the other algortihms
b072a9de 456 return self._decrypt_signature(s)
c5e8d7af 457
de7f3446 458 def _get_available_subtitles(self, video_id):
de7f3446 459 try:
7fad1c63
JMF
460 sub_list = self._download_webpage(
461 'http://video.google.com/timedtext?hl=en&type=list&v=%s' % video_id,
462 video_id, note=False)
463 except ExtractorError as err:
de7f3446
JMF
464 self._downloader.report_warning(u'unable to download video subtitles: %s' % compat_str(err))
465 return {}
466 lang_list = re.findall(r'name="([^"]*)"[^>]+lang_code="([\w\-]+)"', sub_list)
467
468 sub_lang_list = {}
469 for l in lang_list:
470 lang = l[1]
471 params = compat_urllib_parse.urlencode({
472 'lang': lang,
473 'v': video_id,
474 'fmt': self._downloader.params.get('subtitlesformat'),
475 })
476 url = u'http://www.youtube.com/api/timedtext?' + params
477 sub_lang_list[lang] = url
478 if not sub_lang_list:
479 self._downloader.report_warning(u'video doesn\'t have subtitles')
480 return {}
481 return sub_lang_list
482
055e6f36 483 def _get_available_automatic_caption(self, video_id, webpage):
de7f3446
JMF
484 """We need the webpage for getting the captions url, pass it as an
485 argument to speed up the process."""
de7f3446
JMF
486 sub_format = self._downloader.params.get('subtitlesformat')
487 self.to_screen(u'%s: Looking for automatic captions' % video_id)
488 mobj = re.search(r';ytplayer.config = ({.*?});', webpage)
055e6f36 489 err_msg = u'Couldn\'t find automatic captions for %s' % video_id
de7f3446
JMF
490 if mobj is None:
491 self._downloader.report_warning(err_msg)
492 return {}
493 player_config = json.loads(mobj.group(1))
494 try:
495 args = player_config[u'args']
496 caption_url = args[u'ttsurl']
497 timestamp = args[u'timestamp']
055e6f36
JMF
498 # We get the available subtitles
499 list_params = compat_urllib_parse.urlencode({
500 'type': 'list',
501 'tlangs': 1,
502 'asrs': 1,
de7f3446 503 })
055e6f36
JMF
504 list_url = caption_url + '&' + list_params
505 list_page = self._download_webpage(list_url, video_id)
506 caption_list = xml.etree.ElementTree.fromstring(list_page.encode('utf-8'))
e3dc22ca
JMF
507 original_lang_node = caption_list.find('track')
508 if original_lang_node.attrib.get('kind') != 'asr' :
509 self._downloader.report_warning(u'Video doesn\'t have automatic captions')
510 return {}
511 original_lang = original_lang_node.attrib['lang_code']
055e6f36
JMF
512
513 sub_lang_list = {}
514 for lang_node in caption_list.findall('target'):
515 sub_lang = lang_node.attrib['lang_code']
516 params = compat_urllib_parse.urlencode({
517 'lang': original_lang,
518 'tlang': sub_lang,
519 'fmt': sub_format,
520 'ts': timestamp,
521 'kind': 'asr',
522 })
523 sub_lang_list[sub_lang] = caption_url + '&' + params
524 return sub_lang_list
de7f3446
JMF
525 # An extractor error can be raise by the download process if there are
526 # no automatic captions but there are subtitles
527 except (KeyError, ExtractorError):
528 self._downloader.report_warning(err_msg)
529 return {}
530
c5e8d7af
PH
531 def _print_formats(self, formats):
532 print('Available formats:')
533 for x in formats:
03cc7c20
JMF
534 print('%s\t:\t%s\t[%s]%s' %(x, self._video_extensions.get(x, 'flv'),
535 self._video_dimensions.get(x, '???'),
836a086c 536 ' ('+self._special_itags[x]+')' if x in self._special_itags else ''))
c5e8d7af
PH
537
538 def _extract_id(self, url):
539 mobj = re.match(self._VALID_URL, url, re.VERBOSE)
540 if mobj is None:
541 raise ExtractorError(u'Invalid URL: %s' % url)
542 video_id = mobj.group(2)
543 return video_id
544
1d043b93
JMF
545 def _get_video_url_list(self, url_map):
546 """
547 Transform a dictionary in the format {itag:url} to a list of (itag, url)
548 with the requested formats.
549 """
550 req_format = self._downloader.params.get('format', None)
551 format_limit = self._downloader.params.get('format_limit', None)
552 available_formats = self._available_formats_prefer_free if self._downloader.params.get('prefer_free_formats', False) else self._available_formats
553 if format_limit is not None and format_limit in available_formats:
554 format_list = available_formats[available_formats.index(format_limit):]
555 else:
556 format_list = available_formats
557 existing_formats = [x for x in format_list if x in url_map]
558 if len(existing_formats) == 0:
559 raise ExtractorError(u'no known formats available for video')
560 if self._downloader.params.get('listformats', None):
561 self._print_formats(existing_formats)
562 return
563 if req_format is None or req_format == 'best':
564 video_url_list = [(existing_formats[0], url_map[existing_formats[0]])] # Best quality
565 elif req_format == 'worst':
566 video_url_list = [(existing_formats[-1], url_map[existing_formats[-1]])] # worst quality
567 elif req_format in ('-1', 'all'):
568 video_url_list = [(f, url_map[f]) for f in existing_formats] # All formats
569 else:
570 # Specific formats. We pick the first in a slash-delimeted sequence.
bdc6b3fc
AZ
571 # Format can be specified as itag or 'mp4' or 'flv' etc. We pick the highest quality
572 # available in the specified format. For example,
573 # if '1/2/3/4' is requested and '2' and '4' are available, we pick '2'.
574 # if '1/mp4/3/4' is requested and '1' and '5' (is a mp4) are available, we pick '1'.
575 # if '1/mp4/3/4' is requested and '4' and '5' (is a mp4) are available, we pick '5'.
1d043b93
JMF
576 req_formats = req_format.split('/')
577 video_url_list = None
578 for rf in req_formats:
579 if rf in url_map:
580 video_url_list = [(rf, url_map[rf])]
581 break
bdc6b3fc
AZ
582 if rf in self._video_formats_map:
583 for srf in self._video_formats_map[rf]:
584 if srf in url_map:
585 video_url_list = [(srf, url_map[srf])]
586 break
587 else:
588 continue
589 break
1d043b93
JMF
590 if video_url_list is None:
591 raise ExtractorError(u'requested format not available')
592 return video_url_list
593
594 def _extract_from_m3u8(self, manifest_url, video_id):
595 url_map = {}
596 def _get_urls(_manifest):
597 lines = _manifest.split('\n')
598 urls = filter(lambda l: l and not l.startswith('#'),
599 lines)
600 return urls
601 manifest = self._download_webpage(manifest_url, video_id, u'Downloading formats manifest')
602 formats_urls = _get_urls(manifest)
603 for format_url in formats_urls:
890f62e8 604 itag = self._search_regex(r'itag/(\d+?)/', format_url, 'itag')
1d043b93
JMF
605 url_map[itag] = format_url
606 return url_map
607
c5e8d7af 608 def _real_extract(self, url):
d7f44b5b
PH
609 if re.match(r'(?:https?://)?[^/]+/watch\?feature=[a-z_]+$', url):
610 self._downloader.report_warning(u'Did you forget to quote the URL? Remember that & is a meta-character in most shells, so you want to put the URL in quotes, like youtube-dl \'http://www.youtube.com/watch?feature=foo&v=BaW_jenozKc\' (or simply youtube-dl BaW_jenozKc ).')
611
c5e8d7af
PH
612 # Extract original video URL from URL with redirection, like age verification, using next_url parameter
613 mobj = re.search(self._NEXT_URL_RE, url)
614 if mobj:
615 url = 'https://www.youtube.com/' + compat_urllib_parse.unquote(mobj.group(1)).lstrip('/')
616 video_id = self._extract_id(url)
617
618 # Get video webpage
619 self.report_video_webpage_download(video_id)
620 url = 'https://www.youtube.com/watch?v=%s&gl=US&hl=en&has_verified=1' % video_id
621 request = compat_urllib_request.Request(url)
622 try:
623 video_webpage_bytes = compat_urllib_request.urlopen(request).read()
624 except (compat_urllib_error.URLError, compat_http_client.HTTPException, socket.error) as err:
625 raise ExtractorError(u'Unable to download video webpage: %s' % compat_str(err))
626
627 video_webpage = video_webpage_bytes.decode('utf-8', 'ignore')
628
629 # Attempt to extract SWF player URL
630 mobj = re.search(r'swfConfig.*?"(http:\\/\\/.*?watch.*?-.*?\.swf)"', video_webpage)
631 if mobj is not None:
632 player_url = re.sub(r'\\(.)', r'\1', mobj.group(1))
633 else:
634 player_url = None
635
636 # Get video info
637 self.report_video_info_webpage_download(video_id)
c108eb73
JMF
638 if re.search(r'player-age-gate-content">', video_webpage) is not None:
639 self.report_age_confirmation()
640 age_gate = True
641 # We simulate the access to the video from www.youtube.com/v/{video_id}
642 # this can be viewed without login into Youtube
643 data = compat_urllib_parse.urlencode({'video_id': video_id,
644 'el': 'embedded',
645 'gl': 'US',
646 'hl': 'en',
647 'eurl': 'https://youtube.googleapis.com/v/' + video_id,
648 'asv': 3,
649 'sts':'1588',
650 })
651 video_info_url = 'https://www.youtube.com/get_video_info?' + data
c5e8d7af
PH
652 video_info_webpage = self._download_webpage(video_info_url, video_id,
653 note=False,
654 errnote='unable to download video info webpage')
655 video_info = compat_parse_qs(video_info_webpage)
c108eb73
JMF
656 else:
657 age_gate = False
658 for el_type in ['&el=embedded', '&el=detailpage', '&el=vevo', '']:
659 video_info_url = ('https://www.youtube.com/get_video_info?&video_id=%s%s&ps=default&eurl=&gl=US&hl=en'
660 % (video_id, el_type))
661 video_info_webpage = self._download_webpage(video_info_url, video_id,
662 note=False,
663 errnote='unable to download video info webpage')
664 video_info = compat_parse_qs(video_info_webpage)
665 if 'token' in video_info:
666 break
c5e8d7af
PH
667 if 'token' not in video_info:
668 if 'reason' in video_info:
9a82b238 669 raise ExtractorError(u'YouTube said: %s' % video_info['reason'][0], expected=True)
c5e8d7af
PH
670 else:
671 raise ExtractorError(u'"token" parameter not in video info for unknown reason')
672
673 # Check for "rental" videos
674 if 'ypc_video_rental_bar_text' in video_info and 'author' not in video_info:
675 raise ExtractorError(u'"rental" videos not supported')
676
677 # Start extracting information
678 self.report_information_extraction(video_id)
679
680 # uploader
681 if 'author' not in video_info:
682 raise ExtractorError(u'Unable to extract uploader name')
683 video_uploader = compat_urllib_parse.unquote_plus(video_info['author'][0])
684
685 # uploader_id
686 video_uploader_id = None
687 mobj = re.search(r'<link itemprop="url" href="http://www.youtube.com/(?:user|channel)/([^"]+)">', video_webpage)
688 if mobj is not None:
689 video_uploader_id = mobj.group(1)
690 else:
691 self._downloader.report_warning(u'unable to extract uploader nickname')
692
693 # title
694 if 'title' not in video_info:
695 raise ExtractorError(u'Unable to extract video title')
696 video_title = compat_urllib_parse.unquote_plus(video_info['title'][0])
697
698 # thumbnail image
7763b04e
JMF
699 # We try first to get a high quality image:
700 m_thumb = re.search(r'<span itemprop="thumbnail".*?href="(.*?)">',
701 video_webpage, re.DOTALL)
702 if m_thumb is not None:
703 video_thumbnail = m_thumb.group(1)
704 elif 'thumbnail_url' not in video_info:
c5e8d7af
PH
705 self._downloader.report_warning(u'unable to extract video thumbnail')
706 video_thumbnail = ''
707 else: # don't panic if we can't find it
708 video_thumbnail = compat_urllib_parse.unquote_plus(video_info['thumbnail_url'][0])
709
710 # upload date
711 upload_date = None
712 mobj = re.search(r'id="eow-date.*?>(.*?)</span>', video_webpage, re.DOTALL)
713 if mobj is not None:
714 upload_date = ' '.join(re.sub(r'[/,-]', r' ', mobj.group(1)).split())
715 upload_date = unified_strdate(upload_date)
716
717 # description
718 video_description = get_element_by_id("eow-description", video_webpage)
719 if video_description:
720 video_description = clean_html(video_description)
721 else:
722 fd_mobj = re.search(r'<meta name="description" content="([^"]+)"', video_webpage)
723 if fd_mobj:
724 video_description = unescapeHTML(fd_mobj.group(1))
725 else:
726 video_description = u''
727
728 # subtitles
d82134c3 729 video_subtitles = self.extract_subtitles(video_id, video_webpage)
c5e8d7af 730
c5e8d7af 731 if self._downloader.params.get('listsubtitles', False):
d665f8d3 732 self._list_available_subtitles(video_id, video_webpage)
c5e8d7af
PH
733 return
734
735 if 'length_seconds' not in video_info:
736 self._downloader.report_warning(u'unable to extract video duration')
737 video_duration = ''
738 else:
739 video_duration = compat_urllib_parse.unquote_plus(video_info['length_seconds'][0])
740
c5e8d7af 741 # Decide which formats to download
c5e8d7af
PH
742
743 try:
744 mobj = re.search(r';ytplayer.config = ({.*?});', video_webpage)
50be92c1
PH
745 if not mobj:
746 raise ValueError('Could not find vevo ID')
c5e8d7af
PH
747 info = json.loads(mobj.group(1))
748 args = info['args']
7ce7e394
JMF
749 # Easy way to know if the 's' value is in url_encoded_fmt_stream_map
750 # this signatures are encrypted
751 m_s = re.search(r'[&,]s=', args['url_encoded_fmt_stream_map'])
752 if m_s is not None:
753 self.to_screen(u'%s: Encrypted signatures detected.' % video_id)
c5e8d7af 754 video_info['url_encoded_fmt_stream_map'] = [args['url_encoded_fmt_stream_map']]
cde846b3 755 m_s = re.search(r'[&,]s=', args.get('adaptive_fmts', u''))
b7a68384 756 if m_s is not None:
37b6d5f6
AZ
757 if 'url_encoded_fmt_stream_map' in video_info:
758 video_info['url_encoded_fmt_stream_map'][0] += ',' + args['adaptive_fmts']
759 else:
760 video_info['url_encoded_fmt_stream_map'] = [args['adaptive_fmts']]
211fbc13 761 elif 'adaptive_fmts' in video_info:
37b6d5f6
AZ
762 if 'url_encoded_fmt_stream_map' in video_info:
763 video_info['url_encoded_fmt_stream_map'][0] += ',' + video_info['adaptive_fmts'][0]
764 else:
765 video_info['url_encoded_fmt_stream_map'] = video_info['adaptive_fmts']
c5e8d7af
PH
766 except ValueError:
767 pass
768
769 if 'conn' in video_info and video_info['conn'][0].startswith('rtmp'):
770 self.report_rtmp_download()
771 video_url_list = [(None, video_info['conn'][0])]
772 elif 'url_encoded_fmt_stream_map' in video_info and len(video_info['url_encoded_fmt_stream_map']) >= 1:
a7055eb9
JMF
773 if 'rtmpe%3Dyes' in video_info['url_encoded_fmt_stream_map'][0]:
774 raise ExtractorError('rtmpe downloads are not supported, see https://github.com/rg3/youtube-dl/issues/343 for more information.', expected=True)
c5e8d7af
PH
775 url_map = {}
776 for url_data_str in video_info['url_encoded_fmt_stream_map'][0].split(','):
777 url_data = compat_parse_qs(url_data_str)
778 if 'itag' in url_data and 'url' in url_data:
779 url = url_data['url'][0]
780 if 'sig' in url_data:
781 url += '&signature=' + url_data['sig'][0]
782 elif 's' in url_data:
769fda3c
FV
783 if self._downloader.params.get('verbose'):
784 s = url_data['s'][0]
c108eb73 785 if age_gate:
4a67aafb 786 player = 'flash player'
c108eb73
JMF
787 else:
788 player = u'html5 player %s' % self._search_regex(r'html5player-(.+?)\.js', video_webpage,
789 'html5 player', fatal=False)
5a76c651
JMF
790 parts_sizes = u'.'.join(compat_str(len(part)) for part in s.split('.'))
791 self.to_screen(u'encrypted signature length %d (%s), itag %s, %s' %
792 (len(s), parts_sizes, url_data['itag'][0], player))
75952c6e
JMF
793 encrypted_sig = url_data['s'][0]
794 if age_gate:
795 signature = self._decrypt_signature_age_gate(encrypted_sig)
796 else:
797 signature = self._decrypt_signature(encrypted_sig)
c5e8d7af
PH
798 url += '&signature=' + signature
799 if 'ratebypass' not in url:
800 url += '&ratebypass=yes'
801 url_map[url_data['itag'][0]] = url
1d043b93
JMF
802 video_url_list = self._get_video_url_list(url_map)
803 if not video_url_list:
c5e8d7af 804 return
1d043b93
JMF
805 elif video_info.get('hlsvp'):
806 manifest_url = video_info['hlsvp'][0]
807 url_map = self._extract_from_m3u8(manifest_url, video_id)
808 video_url_list = self._get_video_url_list(url_map)
809 if not video_url_list:
810 return
811
c5e8d7af
PH
812 else:
813 raise ExtractorError(u'no conn or url_encoded_fmt_stream_map information found in video info')
814
815 results = []
816 for format_param, video_real_url in video_url_list:
817 # Extension
818 video_extension = self._video_extensions.get(format_param, 'flv')
819
03cc7c20
JMF
820 video_format = '{0} - {1}{2}'.format(format_param if format_param else video_extension,
821 self._video_dimensions.get(format_param, '???'),
836a086c 822 ' ('+self._special_itags[format_param]+')' if format_param in self._special_itags else '')
c5e8d7af
PH
823
824 results.append({
825 'id': video_id,
826 'url': video_real_url,
827 'uploader': video_uploader,
828 'uploader_id': video_uploader_id,
829 'upload_date': upload_date,
830 'title': video_title,
831 'ext': video_extension,
832 'format': video_format,
833 'thumbnail': video_thumbnail,
834 'description': video_description,
835 'player_url': player_url,
836 'subtitles': video_subtitles,
837 'duration': video_duration
838 })
839 return results
840
841class YoutubePlaylistIE(InfoExtractor):
0f818663 842 IE_DESC = u'YouTube.com playlists'
c5e8d7af
PH
843 _VALID_URL = r"""(?:
844 (?:https?://)?
845 (?:\w+\.)?
846 youtube\.com/
847 (?:
848 (?:course|view_play_list|my_playlists|artist|playlist|watch)
849 \? (?:.*?&)*? (?:p|a|list)=
850 | p/
851 )
c626a3d9 852 ((?:PL|EC|UU|FL)?[0-9A-Za-z-_]{10,})
c5e8d7af
PH
853 .*
854 |
c626a3d9 855 ((?:PL|EC|UU|FL)[0-9A-Za-z-_]{10,})
c5e8d7af
PH
856 )"""
857 _TEMPLATE_URL = 'https://gdata.youtube.com/feeds/api/playlists/%s?max-results=%i&start-index=%i&v=2&alt=json&safeSearch=none'
858 _MAX_RESULTS = 50
859 IE_NAME = u'youtube:playlist'
860
861 @classmethod
862 def suitable(cls, url):
863 """Receives a URL and returns True if suitable for this IE."""
864 return re.match(cls._VALID_URL, url, re.VERBOSE) is not None
865
866 def _real_extract(self, url):
867 # Extract playlist id
868 mobj = re.match(self._VALID_URL, url, re.VERBOSE)
869 if mobj is None:
870 raise ExtractorError(u'Invalid URL: %s' % url)
871
872 # Download playlist videos from API
873 playlist_id = mobj.group(1) or mobj.group(2)
c5e8d7af
PH
874 videos = []
875
755eb032 876 for page_num in itertools.count(1):
771822eb
JMF
877 start_index = self._MAX_RESULTS * (page_num - 1) + 1
878 if start_index >= 1000:
879 self._downloader.report_warning(u'Max number of results reached')
880 break
881 url = self._TEMPLATE_URL % (playlist_id, self._MAX_RESULTS, start_index)
c5e8d7af
PH
882 page = self._download_webpage(url, playlist_id, u'Downloading page #%s' % page_num)
883
884 try:
885 response = json.loads(page)
886 except ValueError as err:
887 raise ExtractorError(u'Invalid JSON in API response: ' + compat_str(err))
888
889 if 'feed' not in response:
890 raise ExtractorError(u'Got a malformed response from YouTube API')
891 playlist_title = response['feed']['title']['$t']
892 if 'entry' not in response['feed']:
893 # Number of videos is a multiple of self._MAX_RESULTS
894 break
895
896 for entry in response['feed']['entry']:
897 index = entry['yt$position']['$t']
c215217e
JMF
898 if 'media$group' in entry and 'yt$videoid' in entry['media$group']:
899 videos.append((
900 index,
901 'https://www.youtube.com/watch?v=' + entry['media$group']['yt$videoid']['$t']
902 ))
c5e8d7af 903
c5e8d7af
PH
904 videos = [v[1] for v in sorted(videos)]
905
20c3893f 906 url_results = [self.url_result(vurl, 'Youtube') for vurl in videos]
c5e8d7af
PH
907 return [self.playlist_result(url_results, playlist_id, playlist_title)]
908
909
910class YoutubeChannelIE(InfoExtractor):
0f818663 911 IE_DESC = u'YouTube.com channels'
c5e8d7af
PH
912 _VALID_URL = r"^(?:https?://)?(?:youtu\.be|(?:\w+\.)?youtube(?:-nocookie)?\.com)/channel/([0-9A-Za-z_-]+)"
913 _TEMPLATE_URL = 'http://www.youtube.com/channel/%s/videos?sort=da&flow=list&view=0&page=%s&gl=US&hl=en'
914 _MORE_PAGES_INDICATOR = 'yt-uix-load-more'
252580c5 915 _MORE_PAGES_URL = 'http://www.youtube.com/c4_browse_ajax?action_load_more_videos=1&flow=list&paging=%s&view=0&sort=da&channel_id=%s'
c5e8d7af
PH
916 IE_NAME = u'youtube:channel'
917
918 def extract_videos_from_page(self, page):
919 ids_in_page = []
920 for mobj in re.finditer(r'href="/watch\?v=([0-9A-Za-z_-]+)&?', page):
921 if mobj.group(1) not in ids_in_page:
922 ids_in_page.append(mobj.group(1))
923 return ids_in_page
924
925 def _real_extract(self, url):
926 # Extract channel id
927 mobj = re.match(self._VALID_URL, url)
928 if mobj is None:
929 raise ExtractorError(u'Invalid URL: %s' % url)
930
931 # Download channel page
932 channel_id = mobj.group(1)
933 video_ids = []
934 pagenum = 1
935
936 url = self._TEMPLATE_URL % (channel_id, pagenum)
937 page = self._download_webpage(url, channel_id,
938 u'Downloading page #%s' % pagenum)
939
940 # Extract video identifiers
941 ids_in_page = self.extract_videos_from_page(page)
942 video_ids.extend(ids_in_page)
943
944 # Download any subsequent channel pages using the json-based channel_ajax query
945 if self._MORE_PAGES_INDICATOR in page:
755eb032 946 for pagenum in itertools.count(1):
c5e8d7af
PH
947 url = self._MORE_PAGES_URL % (pagenum, channel_id)
948 page = self._download_webpage(url, channel_id,
949 u'Downloading page #%s' % pagenum)
950
951 page = json.loads(page)
952
953 ids_in_page = self.extract_videos_from_page(page['content_html'])
954 video_ids.extend(ids_in_page)
955
956 if self._MORE_PAGES_INDICATOR not in page['load_more_widget_html']:
957 break
958
959 self._downloader.to_screen(u'[youtube] Channel %s: Found %i videos' % (channel_id, len(video_ids)))
960
961 urls = ['http://www.youtube.com/watch?v=%s' % id for id in video_ids]
20c3893f 962 url_entries = [self.url_result(eurl, 'Youtube') for eurl in urls]
c5e8d7af
PH
963 return [self.playlist_result(url_entries, channel_id)]
964
965
966class YoutubeUserIE(InfoExtractor):
0f818663 967 IE_DESC = u'YouTube.com user videos (URL or "ytuser" keyword)'
faab1d38 968 _VALID_URL = r'(?:(?:(?:https?://)?(?:\w+\.)?youtube\.com/(?:user/)?)|ytuser:)(?!feed/)([A-Za-z0-9_-]+)'
c5e8d7af
PH
969 _TEMPLATE_URL = 'http://gdata.youtube.com/feeds/api/users/%s'
970 _GDATA_PAGE_SIZE = 50
fd9cf738 971 _GDATA_URL = 'http://gdata.youtube.com/feeds/api/users/%s/uploads?max-results=%d&start-index=%d&alt=json'
c5e8d7af
PH
972 IE_NAME = u'youtube:user'
973
e3ea4790 974 @classmethod
f4b05232 975 def suitable(cls, url):
e3ea4790
JMF
976 # Don't return True if the url can be extracted with other youtube
977 # extractor, the regex would is too permissive and it would match.
978 other_ies = iter(klass for (name, klass) in globals().items() if name.endswith('IE') and klass is not cls)
979 if any(ie.suitable(url) for ie in other_ies): return False
f4b05232
JMF
980 else: return super(YoutubeUserIE, cls).suitable(url)
981
c5e8d7af
PH
982 def _real_extract(self, url):
983 # Extract username
984 mobj = re.match(self._VALID_URL, url)
985 if mobj is None:
986 raise ExtractorError(u'Invalid URL: %s' % url)
987
988 username = mobj.group(1)
989
990 # Download video ids using YouTube Data API. Result size per
991 # query is limited (currently to 50 videos) so we need to query
992 # page by page until there are no video ids - it means we got
993 # all of them.
994
995 video_ids = []
c5e8d7af 996
755eb032 997 for pagenum in itertools.count(0):
c5e8d7af
PH
998 start_index = pagenum * self._GDATA_PAGE_SIZE + 1
999
1000 gdata_url = self._GDATA_URL % (username, self._GDATA_PAGE_SIZE, start_index)
1001 page = self._download_webpage(gdata_url, username,
1002 u'Downloading video ids from %d to %d' % (start_index, start_index + self._GDATA_PAGE_SIZE))
1003
fd9cf738
JMF
1004 try:
1005 response = json.loads(page)
1006 except ValueError as err:
1007 raise ExtractorError(u'Invalid JSON in API response: ' + compat_str(err))
1008
c5e8d7af
PH
1009 # Extract video identifiers
1010 ids_in_page = []
fd9cf738
JMF
1011 for entry in response['feed']['entry']:
1012 ids_in_page.append(entry['id']['$t'].split('/')[-1])
c5e8d7af
PH
1013 video_ids.extend(ids_in_page)
1014
1015 # A little optimization - if current page is not
1016 # "full", ie. does not contain PAGE_SIZE video ids then
1017 # we can assume that this page is the last one - there
1018 # are no more ids on further pages - no need to query
1019 # again.
1020
1021 if len(ids_in_page) < self._GDATA_PAGE_SIZE:
1022 break
1023
c5e8d7af 1024 urls = ['http://www.youtube.com/watch?v=%s' % video_id for video_id in video_ids]
20c3893f 1025 url_results = [self.url_result(rurl, 'Youtube') for rurl in urls]
c5e8d7af 1026 return [self.playlist_result(url_results, playlist_title = username)]
b05654f0
PH
1027
1028class YoutubeSearchIE(SearchInfoExtractor):
0f818663 1029 IE_DESC = u'YouTube.com searches'
b05654f0
PH
1030 _API_URL = 'https://gdata.youtube.com/feeds/api/videos?q=%s&start-index=%i&max-results=50&v=2&alt=jsonc'
1031 _MAX_RESULTS = 1000
1032 IE_NAME = u'youtube:search'
1033 _SEARCH_KEY = 'ytsearch'
1034
1035 def report_download_page(self, query, pagenum):
1036 """Report attempt to download search page with given number."""
1037 self._downloader.to_screen(u'[youtube] query "%s": Downloading page %s' % (query, pagenum))
1038
1039 def _get_n_results(self, query, n):
1040 """Get a specified number of results for a query"""
1041
1042 video_ids = []
1043 pagenum = 0
1044 limit = n
1045
1046 while (50 * pagenum) < limit:
1047 self.report_download_page(query, pagenum+1)
1048 result_url = self._API_URL % (compat_urllib_parse.quote_plus(query), (50*pagenum)+1)
1049 request = compat_urllib_request.Request(result_url)
1050 try:
1051 data = compat_urllib_request.urlopen(request).read().decode('utf-8')
1052 except (compat_urllib_error.URLError, compat_http_client.HTTPException, socket.error) as err:
1053 raise ExtractorError(u'Unable to download API page: %s' % compat_str(err))
1054 api_response = json.loads(data)['data']
1055
1056 if not 'items' in api_response:
1057 raise ExtractorError(u'[youtube] No video results')
1058
1059 new_ids = list(video['id'] for video in api_response['items'])
1060 video_ids += new_ids
1061
1062 limit = min(n, api_response['totalItems'])
1063 pagenum += 1
1064
1065 if len(video_ids) > n:
1066 video_ids = video_ids[:n]
1067 videos = [self.url_result('http://www.youtube.com/watch?v=%s' % id, 'Youtube') for id in video_ids]
1068 return self.playlist_result(videos, query)
75dff0ee
JMF
1069
1070
1071class YoutubeShowIE(InfoExtractor):
0f818663 1072 IE_DESC = u'YouTube.com (multi-season) shows'
75dff0ee
JMF
1073 _VALID_URL = r'https?://www\.youtube\.com/show/(.*)'
1074 IE_NAME = u'youtube:show'
1075
1076 def _real_extract(self, url):
1077 mobj = re.match(self._VALID_URL, url)
1078 show_name = mobj.group(1)
1079 webpage = self._download_webpage(url, show_name, u'Downloading show webpage')
1080 # There's one playlist for each season of the show
1081 m_seasons = list(re.finditer(r'href="(/playlist\?list=.*?)"', webpage))
1082 self.to_screen(u'%s: Found %s seasons' % (show_name, len(m_seasons)))
1083 return [self.url_result('https://www.youtube.com' + season.group(1), 'YoutubePlaylist') for season in m_seasons]
04cc9617
JMF
1084
1085
b2e8bc1b 1086class YoutubeFeedsInfoExtractor(YoutubeBaseInfoExtractor):
d7ae0639
JMF
1087 """
1088 Base class for extractors that fetch info from
1089 http://www.youtube.com/feed_ajax
1090 Subclasses must define the _FEED_NAME and _PLAYLIST_TITLE properties.
1091 """
b2e8bc1b 1092 _LOGIN_REQUIRED = True
04cc9617 1093 _PAGING_STEP = 30
43ba5456
JMF
1094 # use action_load_personal_feed instead of action_load_system_feed
1095 _PERSONAL_FEED = False
04cc9617 1096
d7ae0639
JMF
1097 @property
1098 def _FEED_TEMPLATE(self):
43ba5456
JMF
1099 action = 'action_load_system_feed'
1100 if self._PERSONAL_FEED:
1101 action = 'action_load_personal_feed'
1102 return 'http://www.youtube.com/feed_ajax?%s=1&feed_name=%s&paging=%%s' % (action, self._FEED_NAME)
d7ae0639
JMF
1103
1104 @property
1105 def IE_NAME(self):
1106 return u'youtube:%s' % self._FEED_NAME
04cc9617 1107
81f0259b 1108 def _real_initialize(self):
b2e8bc1b 1109 self._login()
81f0259b 1110
04cc9617
JMF
1111 def _real_extract(self, url):
1112 feed_entries = []
1113 # The step argument is available only in 2.7 or higher
1114 for i in itertools.count(0):
1115 paging = i*self._PAGING_STEP
d7ae0639
JMF
1116 info = self._download_webpage(self._FEED_TEMPLATE % paging,
1117 u'%s feed' % self._FEED_NAME,
04cc9617
JMF
1118 u'Downloading page %s' % i)
1119 info = json.loads(info)
1120 feed_html = info['feed_html']
43ba5456 1121 m_ids = re.finditer(r'"/watch\?v=(.*?)["&]', feed_html)
04cc9617
JMF
1122 ids = orderedSet(m.group(1) for m in m_ids)
1123 feed_entries.extend(self.url_result(id, 'Youtube') for id in ids)
1124 if info['paging'] is None:
1125 break
d7ae0639
JMF
1126 return self.playlist_result(feed_entries, playlist_title=self._PLAYLIST_TITLE)
1127
1128class YoutubeSubscriptionsIE(YoutubeFeedsInfoExtractor):
1129 IE_DESC = u'YouTube.com subscriptions feed, "ytsubs" keyword(requires authentication)'
1130 _VALID_URL = r'https?://www\.youtube\.com/feed/subscriptions|:ytsubs(?:criptions)?'
1131 _FEED_NAME = 'subscriptions'
1132 _PLAYLIST_TITLE = u'Youtube Subscriptions'
1133
1134class YoutubeRecommendedIE(YoutubeFeedsInfoExtractor):
1135 IE_DESC = u'YouTube.com recommended videos, "ytrec" keyword (requires authentication)'
1136 _VALID_URL = r'https?://www\.youtube\.com/feed/recommended|:ytrec(?:ommended)?'
1137 _FEED_NAME = 'recommended'
1138 _PLAYLIST_TITLE = u'Youtube Recommended videos'
c626a3d9 1139
43ba5456
JMF
1140class YoutubeWatchLaterIE(YoutubeFeedsInfoExtractor):
1141 IE_DESC = u'Youtube watch later list, "ytwatchlater" keyword (requires authentication)'
1142 _VALID_URL = r'https?://www\.youtube\.com/feed/watch_later|:ytwatchlater'
1143 _FEED_NAME = 'watch_later'
1144 _PLAYLIST_TITLE = u'Youtube Watch Later'
1145 _PAGING_STEP = 100
1146 _PERSONAL_FEED = True
c626a3d9
JMF
1147
1148class YoutubeFavouritesIE(YoutubeBaseInfoExtractor):
1149 IE_NAME = u'youtube:favorites'
1150 IE_DESC = u'YouTube.com favourite videos, "ytfav" keyword (requires authentication)'
c7a7750d 1151 _VALID_URL = r'https?://www\.youtube\.com/my_favorites|:ytfav(?:ou?rites)?'
c626a3d9
JMF
1152 _LOGIN_REQUIRED = True
1153
1154 def _real_extract(self, url):
1155 webpage = self._download_webpage('https://www.youtube.com/my_favorites', 'Youtube Favourites videos')
1156 playlist_id = self._search_regex(r'list=(.+?)["&]', webpage, u'favourites playlist id')
1157 return self.url_result(playlist_id, 'YoutubePlaylist')