Use self._download_webpage everywhere
[youtube-dl] / youtube_dl / extractor / youtube.py
1 # coding: utf-8
2
3 import json
4 import netrc
5 import re
6 import socket
7 import itertools
8 import xml.etree.ElementTree
9
10 from .common import InfoExtractor, SearchInfoExtractor
11 from .subtitles import SubtitlesInfoExtractor
12 from ..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,
25     orderedSet,
26 )
27
28 class YoutubeBaseInfoExtractor(InfoExtractor):
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)
74
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()
134
135
136 class YoutubeIE(YoutubeBaseInfoExtractor, SubtitlesInfoExtractor):
137     IE_DESC = u'YouTube.com'
138     _VALID_URL = r"""^
139                      (
140                          (?:https?://)?                                       # http(s):// (optional)
141                          (?:(?:(?:(?:\w+\.)?youtube(?:-nocookie)?\.com/|
142                             tube\.majestyc\.net/|
143                             youtube\.googleapis\.com/)                        # the various hostnames, with wildcard subdomains
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
148                                  (?:(?:watch|movie)(?:_popup)?(?:\.php)?)?    # preceding watch(_popup|.php) or nothing (like /?v=xxxx)
149                                  (?:\?|\#!?)                                  # the params delimiter ? or # or #!
150                                  (?:.*?&)?                                    # any other preceding param (like /?s=tuff&v=xxxx)
151                                  v=
152                              )
153                          ))
154                          |youtu\.be/                                          # just youtu.be/xxxx
155                          )
156                      )?                                                       # all until now is optional -> you can pass the naked ID
157                      ([0-9A-Za-z_-]{11})                                      # here is it! the YouTube video ID
158                      (?(1).+)?                                                # if we found the ID, everything can follow
159                      $"""
160     _NEXT_URL_RE = r'[\?&]next_url=([^&]+)'
161     # Listed in order of quality
162     _available_formats = ['38', '37', '46', '22', '45', '35', '44', '34', '18', '43', '6', '5', '36', '17', '13',
163                           # Apple HTTP Live Streaming
164                           '96', '95', '94', '93', '92', '132', '151',
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',
172                           ]
173     _available_formats_prefer_free = ['38', '46', '37', '45', '22', '44', '35', '43', '34', '18', '6', '5', '36', '17', '13',
174                                       # Apple HTTP Live Streaming
175                                       '96', '95', '94', '93', '92', '132', '151',
176                                       # 3D
177                                       '85', '102', '84', '101', '83', '100', '82',
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',
183                                       ]
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     }
190     _video_extensions = {
191         '13': '3gp',
192         '17': '3gp',
193         '18': 'mp4',
194         '22': 'mp4',
195         '36': '3gp',
196         '37': 'mp4',
197         '38': 'mp4',
198         '43': 'webm',
199         '44': 'webm',
200         '45': 'webm',
201         '46': 'webm',
202
203         # 3d videos
204         '82': 'mp4',
205         '83': 'mp4',
206         '84': 'mp4',
207         '85': 'mp4',
208         '100': 'webm',
209         '101': 'webm',
210         '102': 'webm',
211
212         # Apple HTTP Live Streaming
213         '92': 'mp4',
214         '93': 'mp4',
215         '94': 'mp4',
216         '95': 'mp4',
217         '96': 'mp4',
218         '132': 'mp4',
219         '151': 'mp4',
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',
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',
253         '36': '240x320',
254         '37': '1080x1920',
255         '38': '3072x4096',
256         '43': '360x640',
257         '44': '480x854',
258         '45': '720x1280',
259         '46': '1080x1920',
260         '82': '360p',
261         '83': '480p',
262         '84': '720p',
263         '85': '1080p',
264         '92': '240p',
265         '93': '360p',
266         '94': '480p',
267         '95': '720p',
268         '96': '1080p',
269         '100': '360p',
270         '101': '480p',
271         '102': '720p',
272         '132': '240p',
273         '151': '72p',
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',
293     }
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',
321     }
322
323     IE_NAME = u'youtube'
324     _TESTS = [
325         {
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 ."
334             }
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"
346             }
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]",
355                 u"description": u"md5:3e2666e0a55044490499ea45fe9037b7",
356                 u"uploader": u"Icona Pop",
357                 u"uploader_id": u"IconaPop"
358             }
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         },
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         },
387     ]
388
389
390     @classmethod
391     def suitable(cls, url):
392         """Receives a URL and returns True if suitable for this IE."""
393         if YoutubePlaylistIE.suitable(url): return False
394         return re.match(cls._VALID_URL, url, re.VERBOSE) is not None
395
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
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
416     def _decrypt_signature(self, s):
417         """Turn the encrypted s field into a working signature"""
418
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]
423         elif len(s) == 89:
424             return s[84:78:-1] + s[87] + s[77:60:-1] + s[0] + s[59:3:-1]
425         elif len(s) == 88:
426             return s[7:28] + s[87] + s[29:45] + s[55] + s[46:55] + s[2] + s[56:87] + s[28]
427         elif len(s) == 87:
428             return s[6:27] + s[4] + s[28:39] + s[27] + s[40:59] + s[2] + s[60:]
429         elif len(s) == 86:
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]
431         elif len(s) == 85:
432             return s[3:11] + s[0] + s[12:55] + s[84] + s[56:84]
433         elif len(s) == 84:
434             return s[81:36:-1] + s[0] + s[35:2:-1]
435         elif len(s) == 83:
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]
437         elif len(s) == 82:
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]
439         elif len(s) == 81:
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]
441         elif len(s) == 80:
442             return s[1:19] + s[0] + s[20:68] + s[19] + s[69:80]
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]
445
446         else:
447             raise ExtractorError(u'Unable to decrypt signature, key length %d not supported; retrying might work' % (len(s)))
448
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
456             return self._decrypt_signature(s)
457
458     def _get_available_subtitles(self, video_id):
459         try:
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:
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
483     def _get_available_automatic_caption(self, video_id, webpage):
484         """We need the webpage for getting the captions url, pass it as an
485            argument to speed up the process."""
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)
489         err_msg = u'Couldn\'t find automatic captions for %s' % video_id
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']
498             # We get the available subtitles
499             list_params = compat_urllib_parse.urlencode({
500                 'type': 'list',
501                 'tlangs': 1,
502                 'asrs': 1,
503             })
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'))
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']
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
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
531     def _print_formats(self, formats):
532         print('Available formats:')
533         for x in formats:
534             print('%s\t:\t%s\t[%s]%s' %(x, self._video_extensions.get(x, 'flv'),
535                                         self._video_dimensions.get(x, '???'),
536                                         ' ('+self._special_itags[x]+')' if x in self._special_itags else ''))
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
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.
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'.
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
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
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:
604             itag = self._search_regex(r'itag/(\d+?)/', format_url, 'itag')
605             url_map[itag] = format_url
606         return url_map
607
608     def _real_extract(self, url):
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
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)
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
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)
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
667         if 'token' not in video_info:
668             if 'reason' in video_info:
669                 raise ExtractorError(u'YouTube said: %s' % video_info['reason'][0], expected=True)
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
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:
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
729         video_subtitles = self.extract_subtitles(video_id, video_webpage)
730
731         if self._downloader.params.get('listsubtitles', False):
732             self._list_available_subtitles(video_id, video_webpage)
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
741         # Decide which formats to download
742
743         try:
744             mobj = re.search(r';ytplayer.config = ({.*?});', video_webpage)
745             if not mobj:
746                 raise ValueError('Could not find vevo ID')
747             info = json.loads(mobj.group(1))
748             args = info['args']
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)
754                 video_info['url_encoded_fmt_stream_map'] = [args['url_encoded_fmt_stream_map']]
755             m_s = re.search(r'[&,]s=', args.get('adaptive_fmts', u''))
756             if m_s is not None:
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']]
761             elif 'adaptive_fmts' in video_info:
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']
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:
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)
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:
783                         if self._downloader.params.get('verbose'):
784                             s = url_data['s'][0]
785                             if age_gate:
786                                 player = 'flash player'
787                             else:
788                                 player = u'html5 player %s' % self._search_regex(r'html5player-(.+?)\.js', video_webpage,
789                                     'html5 player', fatal=False)
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))
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)
798                         url += '&signature=' + signature
799                     if 'ratebypass' not in url:
800                         url += '&ratebypass=yes'
801                     url_map[url_data['itag'][0]] = url
802             video_url_list = self._get_video_url_list(url_map)
803             if not video_url_list:
804                 return
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
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
820             video_format = '{0} - {1}{2}'.format(format_param if format_param else video_extension,
821                                               self._video_dimensions.get(format_param, '???'),
822                                               ' ('+self._special_itags[format_param]+')' if format_param in self._special_itags else '')
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
841 class YoutubePlaylistIE(InfoExtractor):
842     IE_DESC = u'YouTube.com playlists'
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                         )
852                         ((?:PL|EC|UU|FL)?[0-9A-Za-z-_]{10,})
853                         .*
854                      |
855                         ((?:PL|EC|UU|FL)[0-9A-Za-z-_]{10,})
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)
874         videos = []
875
876         for page_num in itertools.count(1):
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)
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']
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                     ))
903
904         videos = [v[1] for v in sorted(videos)]
905
906         url_results = [self.url_result(vurl, 'Youtube') for vurl in videos]
907         return [self.playlist_result(url_results, playlist_id, playlist_title)]
908
909
910 class YoutubeChannelIE(InfoExtractor):
911     IE_DESC = u'YouTube.com channels'
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'
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'
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:
946             for pagenum in itertools.count(1):
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]
962         url_entries = [self.url_result(eurl, 'Youtube') for eurl in urls]
963         return [self.playlist_result(url_entries, channel_id)]
964
965
966 class YoutubeUserIE(InfoExtractor):
967     IE_DESC = u'YouTube.com user videos (URL or "ytuser" keyword)'
968     _VALID_URL = r'(?:(?:(?:https?://)?(?:\w+\.)?youtube\.com/(?:user/)?)|ytuser:)(?!feed/)([A-Za-z0-9_-]+)'
969     _TEMPLATE_URL = 'http://gdata.youtube.com/feeds/api/users/%s'
970     _GDATA_PAGE_SIZE = 50
971     _GDATA_URL = 'http://gdata.youtube.com/feeds/api/users/%s/uploads?max-results=%d&start-index=%d&alt=json'
972     IE_NAME = u'youtube:user'
973
974     @classmethod
975     def suitable(cls, url):
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
980         else: return super(YoutubeUserIE, cls).suitable(url)
981
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 = []
996
997         for pagenum in itertools.count(0):
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
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
1009             # Extract video identifiers
1010             ids_in_page = []
1011             for entry in response['feed']['entry']:
1012                 ids_in_page.append(entry['id']['$t'].split('/')[-1])
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
1024         urls = ['http://www.youtube.com/watch?v=%s' % video_id for video_id in video_ids]
1025         url_results = [self.url_result(rurl, 'Youtube') for rurl in urls]
1026         return [self.playlist_result(url_results, playlist_title = username)]
1027
1028 class YoutubeSearchIE(SearchInfoExtractor):
1029     IE_DESC = u'YouTube.com searches'
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)
1069
1070
1071 class YoutubeShowIE(InfoExtractor):
1072     IE_DESC = u'YouTube.com (multi-season) shows'
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]
1084
1085
1086 class YoutubeFeedsInfoExtractor(YoutubeBaseInfoExtractor):
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     """
1092     _LOGIN_REQUIRED = True
1093     _PAGING_STEP = 30
1094     # use action_load_personal_feed instead of action_load_system_feed
1095     _PERSONAL_FEED = False
1096
1097     @property
1098     def _FEED_TEMPLATE(self):
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)
1103
1104     @property
1105     def IE_NAME(self):
1106         return u'youtube:%s' % self._FEED_NAME
1107
1108     def _real_initialize(self):
1109         self._login()
1110
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
1116             info = self._download_webpage(self._FEED_TEMPLATE % paging,
1117                                           u'%s feed' % self._FEED_NAME,
1118                                           u'Downloading page %s' % i)
1119             info = json.loads(info)
1120             feed_html = info['feed_html']
1121             m_ids = re.finditer(r'"/watch\?v=(.*?)["&]', feed_html)
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
1126         return self.playlist_result(feed_entries, playlist_title=self._PLAYLIST_TITLE)
1127
1128 class 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
1134 class 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'
1139
1140 class 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
1147
1148 class YoutubeFavouritesIE(YoutubeBaseInfoExtractor):
1149     IE_NAME = u'youtube:favorites'
1150     IE_DESC = u'YouTube.com favourite videos, "ytfav" keyword (requires authentication)'
1151     _VALID_URL = r'https?://www\.youtube\.com/my_favorites|:ytfav(?:ou?rites)?'
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')