Merge pull request #6132 from alarig/master
[youtube-dl] / youtube_dl / extractor / youtube.py
1 # coding: utf-8
2
3 from __future__ import unicode_literals
4
5
6 import itertools
7 import json
8 import os.path
9 import re
10 import time
11 import traceback
12
13 from .common import InfoExtractor, SearchInfoExtractor
14 from ..jsinterp import JSInterpreter
15 from ..swfinterp import SWFInterpreter
16 from ..compat import (
17     compat_chr,
18     compat_parse_qs,
19     compat_urllib_parse,
20     compat_urllib_request,
21     compat_urlparse,
22     compat_str,
23 )
24 from ..utils import (
25     clean_html,
26     ExtractorError,
27     float_or_none,
28     get_element_by_attribute,
29     get_element_by_id,
30     int_or_none,
31     orderedSet,
32     str_to_int,
33     unescapeHTML,
34     unified_strdate,
35     uppercase_escape,
36     ISO3166Utils,
37 )
38
39
40 class YoutubeBaseInfoExtractor(InfoExtractor):
41     """Provide base functions for Youtube extractors"""
42     _LOGIN_URL = 'https://accounts.google.com/ServiceLogin'
43     _TWOFACTOR_URL = 'https://accounts.google.com/SecondFactor'
44     _NETRC_MACHINE = 'youtube'
45     # If True it will raise an error if no login info is provided
46     _LOGIN_REQUIRED = False
47
48     def _set_language(self):
49         self._set_cookie(
50             '.youtube.com', 'PREF', 'f1=50000000&hl=en',
51             # YouTube sets the expire time to about two months
52             expire_time=time.time() + 2 * 30 * 24 * 3600)
53
54     def _ids_to_results(self, ids):
55         return [
56             self.url_result(vid_id, 'Youtube', video_id=vid_id)
57             for vid_id in ids]
58
59     def _login(self):
60         """
61         Attempt to log in to YouTube.
62         True is returned if successful or skipped.
63         False is returned if login failed.
64
65         If _LOGIN_REQUIRED is set and no authentication was provided, an error is raised.
66         """
67         (username, password) = self._get_login_info()
68         # No authentication to be performed
69         if username is None:
70             if self._LOGIN_REQUIRED:
71                 raise ExtractorError('No login info available, needed for using %s.' % self.IE_NAME, expected=True)
72             return True
73
74         login_page = self._download_webpage(
75             self._LOGIN_URL, None,
76             note='Downloading login page',
77             errnote='unable to fetch login page', fatal=False)
78         if login_page is False:
79             return
80
81         galx = self._search_regex(r'(?s)<input.+?name="GALX".+?value="(.+?)"',
82                                   login_page, 'Login GALX parameter')
83
84         # Log in
85         login_form_strs = {
86             'continue': 'https://www.youtube.com/signin?action_handle_signin=true&feature=sign_in_button&hl=en_US&nomobiletemp=1',
87             'Email': username,
88             'GALX': galx,
89             'Passwd': password,
90
91             'PersistentCookie': 'yes',
92             '_utf8': '霱',
93             'bgresponse': 'js_disabled',
94             'checkConnection': '',
95             'checkedDomains': 'youtube',
96             'dnConn': '',
97             'pstMsg': '0',
98             'rmShown': '1',
99             'secTok': '',
100             'signIn': 'Sign in',
101             'timeStmp': '',
102             'service': 'youtube',
103             'uilel': '3',
104             'hl': 'en_US',
105         }
106
107         # Convert to UTF-8 *before* urlencode because Python 2.x's urlencode
108         # chokes on unicode
109         login_form = dict((k.encode('utf-8'), v.encode('utf-8')) for k, v in login_form_strs.items())
110         login_data = compat_urllib_parse.urlencode(login_form).encode('ascii')
111
112         req = compat_urllib_request.Request(self._LOGIN_URL, login_data)
113         login_results = self._download_webpage(
114             req, None,
115             note='Logging in', errnote='unable to log in', fatal=False)
116         if login_results is False:
117             return False
118
119         if re.search(r'id="errormsg_0_Passwd"', login_results) is not None:
120             raise ExtractorError('Please use your account password and a two-factor code instead of an application-specific password.', expected=True)
121
122         # Two-Factor
123         # TODO add SMS and phone call support - these require making a request and then prompting the user
124
125         if re.search(r'(?i)<form[^>]* id="gaia_secondfactorform"', login_results) is not None:
126             tfa_code = self._get_tfa_info()
127
128             if tfa_code is None:
129                 self._downloader.report_warning('Two-factor authentication required. Provide it with --twofactor <code>')
130                 self._downloader.report_warning('(Note that only TOTP (Google Authenticator App) codes work at this time.)')
131                 return False
132
133             # Unlike the first login form, secTok and timeStmp are both required for the TFA form
134
135             match = re.search(r'id="secTok"\n\s+value=\'(.+)\'/>', login_results, re.M | re.U)
136             if match is None:
137                 self._downloader.report_warning('Failed to get secTok - did the page structure change?')
138             secTok = match.group(1)
139             match = re.search(r'id="timeStmp"\n\s+value=\'(.+)\'/>', login_results, re.M | re.U)
140             if match is None:
141                 self._downloader.report_warning('Failed to get timeStmp - did the page structure change?')
142             timeStmp = match.group(1)
143
144             tfa_form_strs = {
145                 'continue': 'https://www.youtube.com/signin?action_handle_signin=true&feature=sign_in_button&hl=en_US&nomobiletemp=1',
146                 'smsToken': '',
147                 'smsUserPin': tfa_code,
148                 'smsVerifyPin': 'Verify',
149
150                 'PersistentCookie': 'yes',
151                 'checkConnection': '',
152                 'checkedDomains': 'youtube',
153                 'pstMsg': '1',
154                 'secTok': secTok,
155                 'timeStmp': timeStmp,
156                 'service': 'youtube',
157                 'hl': 'en_US',
158             }
159             tfa_form = dict((k.encode('utf-8'), v.encode('utf-8')) for k, v in tfa_form_strs.items())
160             tfa_data = compat_urllib_parse.urlencode(tfa_form).encode('ascii')
161
162             tfa_req = compat_urllib_request.Request(self._TWOFACTOR_URL, tfa_data)
163             tfa_results = self._download_webpage(
164                 tfa_req, None,
165                 note='Submitting TFA code', errnote='unable to submit tfa', fatal=False)
166
167             if tfa_results is False:
168                 return False
169
170             if re.search(r'(?i)<form[^>]* id="gaia_secondfactorform"', tfa_results) is not None:
171                 self._downloader.report_warning('Two-factor code expired. Please try again, or use a one-use backup code instead.')
172                 return False
173             if re.search(r'(?i)<form[^>]* id="gaia_loginform"', tfa_results) is not None:
174                 self._downloader.report_warning('unable to log in - did the page structure change?')
175                 return False
176             if re.search(r'smsauth-interstitial-reviewsettings', tfa_results) is not None:
177                 self._downloader.report_warning('Your Google account has a security notice. Please log in on your web browser, resolve the notice, and try again.')
178                 return False
179
180         if re.search(r'(?i)<form[^>]* id="gaia_loginform"', login_results) is not None:
181             self._downloader.report_warning('unable to log in: bad username or password')
182             return False
183         return True
184
185     def _real_initialize(self):
186         if self._downloader is None:
187             return
188         self._set_language()
189         if not self._login():
190             return
191
192
193 class YoutubeIE(YoutubeBaseInfoExtractor):
194     IE_DESC = 'YouTube.com'
195     _VALID_URL = r"""(?x)^
196                      (
197                          (?:https?://|//)                                    # http(s):// or protocol-independent URL
198                          (?:(?:(?:(?:\w+\.)?[yY][oO][uU][tT][uU][bB][eE](?:-nocookie)?\.com/|
199                             (?:www\.)?deturl\.com/www\.youtube\.com/|
200                             (?:www\.)?pwnyoutube\.com/|
201                             (?:www\.)?yourepeat\.com/|
202                             tube\.majestyc\.net/|
203                             youtube\.googleapis\.com/)                        # the various hostnames, with wildcard subdomains
204                          (?:.*?\#/)?                                          # handle anchor (#/) redirect urls
205                          (?:                                                  # the various things that can precede the ID:
206                              (?:(?:v|embed|e)/(?!videoseries))                # v/ or embed/ or e/
207                              |(?:                                             # or the v= param in all its forms
208                                  (?:(?:watch|movie)(?:_popup)?(?:\.php)?/?)?  # preceding watch(_popup|.php) or nothing (like /?v=xxxx)
209                                  (?:\?|\#!?)                                  # the params delimiter ? or # or #!
210                                  (?:.*?&)?                                    # any other preceding param (like /?s=tuff&v=xxxx)
211                                  v=
212                              )
213                          ))
214                          |youtu\.be/                                          # just youtu.be/xxxx
215                          |(?:www\.)?cleanvideosearch\.com/media/action/yt/watch\?videoId=
216                          )
217                      )?                                                       # all until now is optional -> you can pass the naked ID
218                      ([0-9A-Za-z_-]{11})                                      # here is it! the YouTube video ID
219                      (?!.*?&list=)                                            # combined list/video URLs are handled by the playlist IE
220                      (?(1).+)?                                                # if we found the ID, everything can follow
221                      $"""
222     _NEXT_URL_RE = r'[\?&]next_url=([^&]+)'
223     _formats = {
224         '5': {'ext': 'flv', 'width': 400, 'height': 240},
225         '6': {'ext': 'flv', 'width': 450, 'height': 270},
226         '13': {'ext': '3gp'},
227         '17': {'ext': '3gp', 'width': 176, 'height': 144},
228         '18': {'ext': 'mp4', 'width': 640, 'height': 360},
229         '22': {'ext': 'mp4', 'width': 1280, 'height': 720},
230         '34': {'ext': 'flv', 'width': 640, 'height': 360},
231         '35': {'ext': 'flv', 'width': 854, 'height': 480},
232         '36': {'ext': '3gp', 'width': 320, 'height': 240},
233         '37': {'ext': 'mp4', 'width': 1920, 'height': 1080},
234         '38': {'ext': 'mp4', 'width': 4096, 'height': 3072},
235         '43': {'ext': 'webm', 'width': 640, 'height': 360},
236         '44': {'ext': 'webm', 'width': 854, 'height': 480},
237         '45': {'ext': 'webm', 'width': 1280, 'height': 720},
238         '46': {'ext': 'webm', 'width': 1920, 'height': 1080},
239         '59': {'ext': 'mp4', 'width': 854, 'height': 480},
240         '78': {'ext': 'mp4', 'width': 854, 'height': 480},
241
242
243         # 3d videos
244         '82': {'ext': 'mp4', 'height': 360, 'format_note': '3D', 'preference': -20},
245         '83': {'ext': 'mp4', 'height': 480, 'format_note': '3D', 'preference': -20},
246         '84': {'ext': 'mp4', 'height': 720, 'format_note': '3D', 'preference': -20},
247         '85': {'ext': 'mp4', 'height': 1080, 'format_note': '3D', 'preference': -20},
248         '100': {'ext': 'webm', 'height': 360, 'format_note': '3D', 'preference': -20},
249         '101': {'ext': 'webm', 'height': 480, 'format_note': '3D', 'preference': -20},
250         '102': {'ext': 'webm', 'height': 720, 'format_note': '3D', 'preference': -20},
251
252         # Apple HTTP Live Streaming
253         '92': {'ext': 'mp4', 'height': 240, 'format_note': 'HLS', 'preference': -10},
254         '93': {'ext': 'mp4', 'height': 360, 'format_note': 'HLS', 'preference': -10},
255         '94': {'ext': 'mp4', 'height': 480, 'format_note': 'HLS', 'preference': -10},
256         '95': {'ext': 'mp4', 'height': 720, 'format_note': 'HLS', 'preference': -10},
257         '96': {'ext': 'mp4', 'height': 1080, 'format_note': 'HLS', 'preference': -10},
258         '132': {'ext': 'mp4', 'height': 240, 'format_note': 'HLS', 'preference': -10},
259         '151': {'ext': 'mp4', 'height': 72, 'format_note': 'HLS', 'preference': -10},
260
261         # DASH mp4 video
262         '133': {'ext': 'mp4', 'height': 240, 'format_note': 'DASH video', 'acodec': 'none', 'preference': -40},
263         '134': {'ext': 'mp4', 'height': 360, 'format_note': 'DASH video', 'acodec': 'none', 'preference': -40},
264         '135': {'ext': 'mp4', 'height': 480, 'format_note': 'DASH video', 'acodec': 'none', 'preference': -40},
265         '136': {'ext': 'mp4', 'height': 720, 'format_note': 'DASH video', 'acodec': 'none', 'preference': -40},
266         '137': {'ext': 'mp4', 'height': 1080, 'format_note': 'DASH video', 'acodec': 'none', 'preference': -40},
267         '138': {'ext': 'mp4', 'format_note': 'DASH video', 'acodec': 'none', 'preference': -40},  # Height can vary (https://github.com/rg3/youtube-dl/issues/4559)
268         '160': {'ext': 'mp4', 'height': 144, 'format_note': 'DASH video', 'acodec': 'none', 'preference': -40},
269         '264': {'ext': 'mp4', 'height': 1440, 'format_note': 'DASH video', 'acodec': 'none', 'preference': -40},
270         '298': {'ext': 'mp4', 'height': 720, 'format_note': 'DASH video', 'acodec': 'none', 'preference': -40, 'fps': 60, 'vcodec': 'h264'},
271         '299': {'ext': 'mp4', 'height': 1080, 'format_note': 'DASH video', 'acodec': 'none', 'preference': -40, 'fps': 60, 'vcodec': 'h264'},
272         '266': {'ext': 'mp4', 'height': 2160, 'format_note': 'DASH video', 'acodec': 'none', 'preference': -40, 'vcodec': 'h264'},
273
274         # Dash mp4 audio
275         '139': {'ext': 'm4a', 'format_note': 'DASH audio', 'acodec': 'aac', 'vcodec': 'none', 'abr': 48, 'preference': -50, 'container': 'm4a_dash'},
276         '140': {'ext': 'm4a', 'format_note': 'DASH audio', 'acodec': 'aac', 'vcodec': 'none', 'abr': 128, 'preference': -50, 'container': 'm4a_dash'},
277         '141': {'ext': 'm4a', 'format_note': 'DASH audio', 'acodec': 'aac', 'vcodec': 'none', 'abr': 256, 'preference': -50, 'container': 'm4a_dash'},
278
279         # Dash webm
280         '167': {'ext': 'webm', 'height': 360, 'width': 640, 'format_note': 'DASH video', 'acodec': 'none', 'container': 'webm', 'vcodec': 'VP8', 'preference': -40},
281         '168': {'ext': 'webm', 'height': 480, 'width': 854, 'format_note': 'DASH video', 'acodec': 'none', 'container': 'webm', 'vcodec': 'VP8', 'preference': -40},
282         '169': {'ext': 'webm', 'height': 720, 'width': 1280, 'format_note': 'DASH video', 'acodec': 'none', 'container': 'webm', 'vcodec': 'VP8', 'preference': -40},
283         '170': {'ext': 'webm', 'height': 1080, 'width': 1920, 'format_note': 'DASH video', 'acodec': 'none', 'container': 'webm', 'vcodec': 'VP8', 'preference': -40},
284         '218': {'ext': 'webm', 'height': 480, 'width': 854, 'format_note': 'DASH video', 'acodec': 'none', 'container': 'webm', 'vcodec': 'VP8', 'preference': -40},
285         '219': {'ext': 'webm', 'height': 480, 'width': 854, 'format_note': 'DASH video', 'acodec': 'none', 'container': 'webm', 'vcodec': 'VP8', 'preference': -40},
286         '278': {'ext': 'webm', 'height': 144, 'format_note': 'DASH video', 'acodec': 'none', 'preference': -40, 'container': 'webm', 'vcodec': 'VP9'},
287         '242': {'ext': 'webm', 'height': 240, 'format_note': 'DASH video', 'acodec': 'none', 'preference': -40},
288         '243': {'ext': 'webm', 'height': 360, 'format_note': 'DASH video', 'acodec': 'none', 'preference': -40},
289         '244': {'ext': 'webm', 'height': 480, 'format_note': 'DASH video', 'acodec': 'none', 'preference': -40},
290         '245': {'ext': 'webm', 'height': 480, 'format_note': 'DASH video', 'acodec': 'none', 'preference': -40},
291         '246': {'ext': 'webm', 'height': 480, 'format_note': 'DASH video', 'acodec': 'none', 'preference': -40},
292         '247': {'ext': 'webm', 'height': 720, 'format_note': 'DASH video', 'acodec': 'none', 'preference': -40},
293         '248': {'ext': 'webm', 'height': 1080, 'format_note': 'DASH video', 'acodec': 'none', 'preference': -40},
294         '271': {'ext': 'webm', 'height': 1440, 'format_note': 'DASH video', 'acodec': 'none', 'preference': -40},
295         '272': {'ext': 'webm', 'height': 2160, 'format_note': 'DASH video', 'acodec': 'none', 'preference': -40},
296         '302': {'ext': 'webm', 'height': 720, 'format_note': 'DASH video', 'acodec': 'none', 'preference': -40, 'fps': 60, 'vcodec': 'VP9'},
297         '303': {'ext': 'webm', 'height': 1080, 'format_note': 'DASH video', 'acodec': 'none', 'preference': -40, 'fps': 60, 'vcodec': 'VP9'},
298         '308': {'ext': 'webm', 'height': 1440, 'format_note': 'DASH video', 'acodec': 'none', 'preference': -40, 'fps': 60, 'vcodec': 'VP9'},
299         '313': {'ext': 'webm', 'height': 2160, 'format_note': 'DASH video', 'acodec': 'none', 'preference': -40, 'vcodec': 'VP9'},
300         '315': {'ext': 'webm', 'height': 2160, 'format_note': 'DASH video', 'acodec': 'none', 'preference': -40, 'fps': 60, 'vcodec': 'VP9'},
301
302         # Dash webm audio
303         '171': {'ext': 'webm', 'vcodec': 'none', 'format_note': 'DASH audio', 'abr': 128, 'preference': -50},
304         '172': {'ext': 'webm', 'vcodec': 'none', 'format_note': 'DASH audio', 'abr': 256, 'preference': -50},
305
306         # Dash webm audio with opus inside
307         '249': {'ext': 'webm', 'vcodec': 'none', 'format_note': 'DASH audio', 'acodec': 'opus', 'abr': 50, 'preference': -50},
308         '250': {'ext': 'webm', 'vcodec': 'none', 'format_note': 'DASH audio', 'acodec': 'opus', 'abr': 70, 'preference': -50},
309         '251': {'ext': 'webm', 'vcodec': 'none', 'format_note': 'DASH audio', 'acodec': 'opus', 'abr': 160, 'preference': -50},
310
311         # RTMP (unnamed)
312         '_rtmp': {'protocol': 'rtmp'},
313     }
314
315     IE_NAME = 'youtube'
316     _TESTS = [
317         {
318             'url': 'http://www.youtube.com/watch?v=BaW_jenozKc',
319             'info_dict': {
320                 'id': 'BaW_jenozKc',
321                 'ext': 'mp4',
322                 'title': 'youtube-dl test video "\'/\\ä↭𝕐',
323                 'uploader': 'Philipp Hagemeister',
324                 'uploader_id': 'phihag',
325                 'upload_date': '20121002',
326                 'description': 'test chars:  "\'/\\ä↭𝕐\ntest URL: https://github.com/rg3/youtube-dl/issues/1892\n\nThis is a test video for youtube-dl.\n\nFor more information, contact phihag@phihag.de .',
327                 'categories': ['Science & Technology'],
328                 'like_count': int,
329                 'dislike_count': int,
330             }
331         },
332         {
333             'url': 'http://www.youtube.com/watch?v=UxxajLWwzqY',
334             'note': 'Test generic use_cipher_signature video (#897)',
335             'info_dict': {
336                 'id': 'UxxajLWwzqY',
337                 'ext': 'mp4',
338                 'upload_date': '20120506',
339                 'title': 'Icona Pop - I Love It (feat. Charli XCX) [OFFICIAL VIDEO]',
340                 'description': 'md5:fea86fda2d5a5784273df5c7cc994d9f',
341                 'uploader': 'Icona Pop',
342                 'uploader_id': 'IconaPop',
343             }
344         },
345         {
346             'url': 'https://www.youtube.com/watch?v=07FYdnEawAQ',
347             'note': 'Test VEVO video with age protection (#956)',
348             'info_dict': {
349                 'id': '07FYdnEawAQ',
350                 'ext': 'mp4',
351                 'upload_date': '20130703',
352                 'title': 'Justin Timberlake - Tunnel Vision (Explicit)',
353                 'description': 'md5:64249768eec3bc4276236606ea996373',
354                 'uploader': 'justintimberlakeVEVO',
355                 'uploader_id': 'justintimberlakeVEVO',
356             }
357         },
358         {
359             'url': '//www.YouTube.com/watch?v=yZIXLfi8CZQ',
360             'note': 'Embed-only video (#1746)',
361             'info_dict': {
362                 'id': 'yZIXLfi8CZQ',
363                 'ext': 'mp4',
364                 'upload_date': '20120608',
365                 'title': 'Principal Sexually Assaults A Teacher - Episode 117 - 8th June 2012',
366                 'description': 'md5:09b78bd971f1e3e289601dfba15ca4f7',
367                 'uploader': 'SET India',
368                 'uploader_id': 'setindia'
369             }
370         },
371         {
372             'url': 'http://www.youtube.com/watch?v=a9LDPn-MO4I',
373             'note': '256k DASH audio (format 141) via DASH manifest',
374             'info_dict': {
375                 'id': 'a9LDPn-MO4I',
376                 'ext': 'm4a',
377                 'upload_date': '20121002',
378                 'uploader_id': '8KVIDEO',
379                 'description': '',
380                 'uploader': '8KVIDEO',
381                 'title': 'UHDTV TEST 8K VIDEO.mp4'
382             },
383             'params': {
384                 'youtube_include_dash_manifest': True,
385                 'format': '141',
386             },
387         },
388         # DASH manifest with encrypted signature
389         {
390             'url': 'https://www.youtube.com/watch?v=IB3lcPjvWLA',
391             'info_dict': {
392                 'id': 'IB3lcPjvWLA',
393                 'ext': 'm4a',
394                 'title': 'Afrojack, Spree Wilson - The Spark ft. Spree Wilson',
395                 'description': 'md5:12e7067fa6735a77bdcbb58cb1187d2d',
396                 'uploader': 'AfrojackVEVO',
397                 'uploader_id': 'AfrojackVEVO',
398                 'upload_date': '20131011',
399             },
400             'params': {
401                 'youtube_include_dash_manifest': True,
402                 'format': '141',
403             },
404         },
405         # JS player signature function name containing $
406         {
407             'url': 'https://www.youtube.com/watch?v=nfWlot6h_JM',
408             'info_dict': {
409                 'id': 'nfWlot6h_JM',
410                 'ext': 'm4a',
411                 'title': 'Taylor Swift - Shake It Off',
412                 'description': 'md5:2acfda1b285bdd478ccec22f9918199d',
413                 'uploader': 'TaylorSwiftVEVO',
414                 'uploader_id': 'TaylorSwiftVEVO',
415                 'upload_date': '20140818',
416             },
417             'params': {
418                 'youtube_include_dash_manifest': True,
419                 'format': '141',
420             },
421         },
422         # Controversy video
423         {
424             'url': 'https://www.youtube.com/watch?v=T4XJQO3qol8',
425             'info_dict': {
426                 'id': 'T4XJQO3qol8',
427                 'ext': 'mp4',
428                 'upload_date': '20100909',
429                 'uploader': 'The Amazing Atheist',
430                 'uploader_id': 'TheAmazingAtheist',
431                 'title': 'Burning Everyone\'s Koran',
432                 'description': 'SUBSCRIBE: http://www.youtube.com/saturninefilms\n\nEven Obama has taken a stand against freedom on this issue: http://www.huffingtonpost.com/2010/09/09/obama-gma-interview-quran_n_710282.html',
433             }
434         },
435         # Normal age-gate video (No vevo, embed allowed)
436         {
437             'url': 'http://youtube.com/watch?v=HtVdAasjOgU',
438             'info_dict': {
439                 'id': 'HtVdAasjOgU',
440                 'ext': 'mp4',
441                 'title': 'The Witcher 3: Wild Hunt - The Sword Of Destiny Trailer',
442                 'description': 're:(?s).{100,}About the Game\n.*?The Witcher 3: Wild Hunt.{100,}',
443                 'uploader': 'The Witcher',
444                 'uploader_id': 'WitcherGame',
445                 'upload_date': '20140605',
446             },
447         },
448         # Age-gate video with encrypted signature
449         {
450             'url': 'http://www.youtube.com/watch?v=6kLq3WMV1nU',
451             'info_dict': {
452                 'id': '6kLq3WMV1nU',
453                 'ext': 'mp4',
454                 'title': 'Dedication To My Ex (Miss That) (Lyric Video)',
455                 'description': 'md5:33765bb339e1b47e7e72b5490139bb41',
456                 'uploader': 'LloydVEVO',
457                 'uploader_id': 'LloydVEVO',
458                 'upload_date': '20110629',
459             },
460         },
461         # video_info is None (https://github.com/rg3/youtube-dl/issues/4421)
462         {
463             'url': '__2ABJjxzNo',
464             'info_dict': {
465                 'id': '__2ABJjxzNo',
466                 'ext': 'mp4',
467                 'upload_date': '20100430',
468                 'uploader_id': 'deadmau5',
469                 'description': 'md5:12c56784b8032162bb936a5f76d55360',
470                 'uploader': 'deadmau5',
471                 'title': 'Deadmau5 - Some Chords (HD)',
472             },
473             'expected_warnings': [
474                 'DASH manifest missing',
475             ]
476         },
477         # Olympics (https://github.com/rg3/youtube-dl/issues/4431)
478         {
479             'url': 'lqQg6PlCWgI',
480             'info_dict': {
481                 'id': 'lqQg6PlCWgI',
482                 'ext': 'mp4',
483                 'upload_date': '20120731',
484                 'uploader_id': 'olympic',
485                 'description': 'HO09  - Women -  GER-AUS - Hockey - 31 July 2012 - London 2012 Olympic Games',
486                 'uploader': 'Olympics',
487                 'title': 'Hockey - Women -  GER-AUS - London 2012 Olympic Games',
488             },
489             'params': {
490                 'skip_download': 'requires avconv',
491             }
492         },
493         # Non-square pixels
494         {
495             'url': 'https://www.youtube.com/watch?v=_b-2C3KPAM0',
496             'info_dict': {
497                 'id': '_b-2C3KPAM0',
498                 'ext': 'mp4',
499                 'stretched_ratio': 16 / 9.,
500                 'upload_date': '20110310',
501                 'uploader_id': 'AllenMeow',
502                 'description': 'made by Wacom from Korea | 字幕&加油添醋 by TY\'s Allen | 感謝heylisa00cavey1001同學熱情提供梗及翻譯',
503                 'uploader': '孫艾倫',
504                 'title': '[A-made] 變態妍字幕版 太妍 我就是這樣的人',
505             },
506         },
507         # url_encoded_fmt_stream_map is empty string
508         {
509             'url': 'qEJwOuvDf7I',
510             'info_dict': {
511                 'id': 'qEJwOuvDf7I',
512                 'ext': 'mp4',
513                 'title': 'Обсуждение судебной практики по выборам 14 сентября 2014 года в Санкт-Петербурге',
514                 'description': '',
515                 'upload_date': '20150404',
516                 'uploader_id': 'spbelect',
517                 'uploader': 'Наблюдатели Петербурга',
518             },
519             'params': {
520                 'skip_download': 'requires avconv',
521             }
522         },
523         # Extraction from multiple DASH manifests (https://github.com/rg3/youtube-dl/pull/6097)
524         {
525             'url': 'https://www.youtube.com/watch?v=FIl7x6_3R5Y',
526             'info_dict': {
527                 'id': 'FIl7x6_3R5Y',
528                 'ext': 'mp4',
529                 'title': 'md5:7b81415841e02ecd4313668cde88737a',
530                 'description': 'md5:116377fd2963b81ec4ce64b542173306',
531                 'upload_date': '20150625',
532                 'uploader_id': 'dorappi2000',
533                 'uploader': 'dorappi2000',
534                 'formats': 'mincount:33',
535             },
536         }
537     ]
538
539     def __init__(self, *args, **kwargs):
540         super(YoutubeIE, self).__init__(*args, **kwargs)
541         self._player_cache = {}
542
543     def report_video_info_webpage_download(self, video_id):
544         """Report attempt to download video info webpage."""
545         self.to_screen('%s: Downloading video info webpage' % video_id)
546
547     def report_information_extraction(self, video_id):
548         """Report attempt to extract video information."""
549         self.to_screen('%s: Extracting video information' % video_id)
550
551     def report_unavailable_format(self, video_id, format):
552         """Report extracted video URL."""
553         self.to_screen('%s: Format %s not available' % (video_id, format))
554
555     def report_rtmp_download(self):
556         """Indicate the download will use the RTMP protocol."""
557         self.to_screen('RTMP download detected')
558
559     def _signature_cache_id(self, example_sig):
560         """ Return a string representation of a signature """
561         return '.'.join(compat_str(len(part)) for part in example_sig.split('.'))
562
563     def _extract_signature_function(self, video_id, player_url, example_sig):
564         id_m = re.match(
565             r'.*?-(?P<id>[a-zA-Z0-9_-]+)(?:/watch_as3|/html5player)?\.(?P<ext>[a-z]+)$',
566             player_url)
567         if not id_m:
568             raise ExtractorError('Cannot identify player %r' % player_url)
569         player_type = id_m.group('ext')
570         player_id = id_m.group('id')
571
572         # Read from filesystem cache
573         func_id = '%s_%s_%s' % (
574             player_type, player_id, self._signature_cache_id(example_sig))
575         assert os.path.basename(func_id) == func_id
576
577         cache_spec = self._downloader.cache.load('youtube-sigfuncs', func_id)
578         if cache_spec is not None:
579             return lambda s: ''.join(s[i] for i in cache_spec)
580
581         download_note = (
582             'Downloading player %s' % player_url
583             if self._downloader.params.get('verbose') else
584             'Downloading %s player %s' % (player_type, player_id)
585         )
586         if player_type == 'js':
587             code = self._download_webpage(
588                 player_url, video_id,
589                 note=download_note,
590                 errnote='Download of %s failed' % player_url)
591             res = self._parse_sig_js(code)
592         elif player_type == 'swf':
593             urlh = self._request_webpage(
594                 player_url, video_id,
595                 note=download_note,
596                 errnote='Download of %s failed' % player_url)
597             code = urlh.read()
598             res = self._parse_sig_swf(code)
599         else:
600             assert False, 'Invalid player type %r' % player_type
601
602         test_string = ''.join(map(compat_chr, range(len(example_sig))))
603         cache_res = res(test_string)
604         cache_spec = [ord(c) for c in cache_res]
605
606         self._downloader.cache.store('youtube-sigfuncs', func_id, cache_spec)
607         return res
608
609     def _print_sig_code(self, func, example_sig):
610         def gen_sig_code(idxs):
611             def _genslice(start, end, step):
612                 starts = '' if start == 0 else str(start)
613                 ends = (':%d' % (end + step)) if end + step >= 0 else ':'
614                 steps = '' if step == 1 else (':%d' % step)
615                 return 's[%s%s%s]' % (starts, ends, steps)
616
617             step = None
618             # Quelch pyflakes warnings - start will be set when step is set
619             start = '(Never used)'
620             for i, prev in zip(idxs[1:], idxs[:-1]):
621                 if step is not None:
622                     if i - prev == step:
623                         continue
624                     yield _genslice(start, prev, step)
625                     step = None
626                     continue
627                 if i - prev in [-1, 1]:
628                     step = i - prev
629                     start = prev
630                     continue
631                 else:
632                     yield 's[%d]' % prev
633             if step is None:
634                 yield 's[%d]' % i
635             else:
636                 yield _genslice(start, i, step)
637
638         test_string = ''.join(map(compat_chr, range(len(example_sig))))
639         cache_res = func(test_string)
640         cache_spec = [ord(c) for c in cache_res]
641         expr_code = ' + '.join(gen_sig_code(cache_spec))
642         signature_id_tuple = '(%s)' % (
643             ', '.join(compat_str(len(p)) for p in example_sig.split('.')))
644         code = ('if tuple(len(p) for p in s.split(\'.\')) == %s:\n'
645                 '    return %s\n') % (signature_id_tuple, expr_code)
646         self.to_screen('Extracted signature function:\n' + code)
647
648     def _parse_sig_js(self, jscode):
649         funcname = self._search_regex(
650             r'\.sig\|\|([a-zA-Z0-9$]+)\(', jscode,
651             'Initial JS player signature function name')
652
653         jsi = JSInterpreter(jscode)
654         initial_function = jsi.extract_function(funcname)
655         return lambda s: initial_function([s])
656
657     def _parse_sig_swf(self, file_contents):
658         swfi = SWFInterpreter(file_contents)
659         TARGET_CLASSNAME = 'SignatureDecipher'
660         searched_class = swfi.extract_class(TARGET_CLASSNAME)
661         initial_function = swfi.extract_function(searched_class, 'decipher')
662         return lambda s: initial_function([s])
663
664     def _decrypt_signature(self, s, video_id, player_url, age_gate=False):
665         """Turn the encrypted s field into a working signature"""
666
667         if player_url is None:
668             raise ExtractorError('Cannot decrypt signature without player_url')
669
670         if player_url.startswith('//'):
671             player_url = 'https:' + player_url
672         try:
673             player_id = (player_url, self._signature_cache_id(s))
674             if player_id not in self._player_cache:
675                 func = self._extract_signature_function(
676                     video_id, player_url, s
677                 )
678                 self._player_cache[player_id] = func
679             func = self._player_cache[player_id]
680             if self._downloader.params.get('youtube_print_sig_code'):
681                 self._print_sig_code(func, s)
682             return func(s)
683         except Exception as e:
684             tb = traceback.format_exc()
685             raise ExtractorError(
686                 'Signature extraction failed: ' + tb, cause=e)
687
688     def _get_subtitles(self, video_id, webpage):
689         try:
690             subs_doc = self._download_xml(
691                 'https://video.google.com/timedtext?hl=en&type=list&v=%s' % video_id,
692                 video_id, note=False)
693         except ExtractorError as err:
694             self._downloader.report_warning('unable to download video subtitles: %s' % compat_str(err))
695             return {}
696
697         sub_lang_list = {}
698         for track in subs_doc.findall('track'):
699             lang = track.attrib['lang_code']
700             if lang in sub_lang_list:
701                 continue
702             sub_formats = []
703             for ext in ['sbv', 'vtt', 'srt']:
704                 params = compat_urllib_parse.urlencode({
705                     'lang': lang,
706                     'v': video_id,
707                     'fmt': ext,
708                     'name': track.attrib['name'].encode('utf-8'),
709                 })
710                 sub_formats.append({
711                     'url': 'https://www.youtube.com/api/timedtext?' + params,
712                     'ext': ext,
713                 })
714             sub_lang_list[lang] = sub_formats
715         if not sub_lang_list:
716             self._downloader.report_warning('video doesn\'t have subtitles')
717             return {}
718         return sub_lang_list
719
720     def _get_automatic_captions(self, video_id, webpage):
721         """We need the webpage for getting the captions url, pass it as an
722            argument to speed up the process."""
723         self.to_screen('%s: Looking for automatic captions' % video_id)
724         mobj = re.search(r';ytplayer.config = ({.*?});', webpage)
725         err_msg = 'Couldn\'t find automatic captions for %s' % video_id
726         if mobj is None:
727             self._downloader.report_warning(err_msg)
728             return {}
729         player_config = json.loads(mobj.group(1))
730         try:
731             args = player_config['args']
732             caption_url = args['ttsurl']
733             timestamp = args['timestamp']
734             # We get the available subtitles
735             list_params = compat_urllib_parse.urlencode({
736                 'type': 'list',
737                 'tlangs': 1,
738                 'asrs': 1,
739             })
740             list_url = caption_url + '&' + list_params
741             caption_list = self._download_xml(list_url, video_id)
742             original_lang_node = caption_list.find('track')
743             if original_lang_node is None:
744                 self._downloader.report_warning('Video doesn\'t have automatic captions')
745                 return {}
746             original_lang = original_lang_node.attrib['lang_code']
747             caption_kind = original_lang_node.attrib.get('kind', '')
748
749             sub_lang_list = {}
750             for lang_node in caption_list.findall('target'):
751                 sub_lang = lang_node.attrib['lang_code']
752                 sub_formats = []
753                 for ext in ['sbv', 'vtt', 'srt']:
754                     params = compat_urllib_parse.urlencode({
755                         'lang': original_lang,
756                         'tlang': sub_lang,
757                         'fmt': ext,
758                         'ts': timestamp,
759                         'kind': caption_kind,
760                     })
761                     sub_formats.append({
762                         'url': caption_url + '&' + params,
763                         'ext': ext,
764                     })
765                 sub_lang_list[sub_lang] = sub_formats
766             return sub_lang_list
767         # An extractor error can be raise by the download process if there are
768         # no automatic captions but there are subtitles
769         except (KeyError, ExtractorError):
770             self._downloader.report_warning(err_msg)
771             return {}
772
773     @classmethod
774     def extract_id(cls, url):
775         mobj = re.match(cls._VALID_URL, url, re.VERBOSE)
776         if mobj is None:
777             raise ExtractorError('Invalid URL: %s' % url)
778         video_id = mobj.group(2)
779         return video_id
780
781     def _extract_from_m3u8(self, manifest_url, video_id):
782         url_map = {}
783
784         def _get_urls(_manifest):
785             lines = _manifest.split('\n')
786             urls = filter(lambda l: l and not l.startswith('#'),
787                           lines)
788             return urls
789         manifest = self._download_webpage(manifest_url, video_id, 'Downloading formats manifest')
790         formats_urls = _get_urls(manifest)
791         for format_url in formats_urls:
792             itag = self._search_regex(r'itag/(\d+?)/', format_url, 'itag')
793             url_map[itag] = format_url
794         return url_map
795
796     def _extract_annotations(self, video_id):
797         url = 'https://www.youtube.com/annotations_invideo?features=1&legacy=1&video_id=%s' % video_id
798         return self._download_webpage(url, video_id, note='Searching for annotations.', errnote='Unable to download video annotations.')
799
800     def _parse_dash_manifest(
801             self, video_id, dash_manifest_url, player_url, age_gate):
802         def decrypt_sig(mobj):
803             s = mobj.group(1)
804             dec_s = self._decrypt_signature(s, video_id, player_url, age_gate)
805             return '/signature/%s' % dec_s
806         dash_manifest_url = re.sub(r'/s/([a-fA-F0-9\.]+)', decrypt_sig, dash_manifest_url)
807         dash_doc = self._download_xml(
808             dash_manifest_url, video_id,
809             note='Downloading DASH manifest',
810             errnote='Could not download DASH manifest')
811
812         formats = []
813         for a in dash_doc.findall('.//{urn:mpeg:DASH:schema:MPD:2011}AdaptationSet'):
814             mime_type = a.attrib.get('mimeType')
815             for r in a.findall('{urn:mpeg:DASH:schema:MPD:2011}Representation'):
816                 url_el = r.find('{urn:mpeg:DASH:schema:MPD:2011}BaseURL')
817                 if url_el is None:
818                     continue
819                 if mime_type == 'text/vtt':
820                     # TODO implement WebVTT downloading
821                     pass
822                 elif mime_type.startswith('audio/') or mime_type.startswith('video/'):
823                     format_id = r.attrib['id']
824                     video_url = url_el.text
825                     filesize = int_or_none(url_el.attrib.get('{http://youtube.com/yt/2012/10/10}contentLength'))
826                     f = {
827                         'format_id': format_id,
828                         'url': video_url,
829                         'width': int_or_none(r.attrib.get('width')),
830                         'height': int_or_none(r.attrib.get('height')),
831                         'tbr': int_or_none(r.attrib.get('bandwidth'), 1000),
832                         'asr': int_or_none(r.attrib.get('audioSamplingRate')),
833                         'filesize': filesize,
834                         'fps': int_or_none(r.attrib.get('frameRate')),
835                     }
836                     try:
837                         existing_format = next(
838                             fo for fo in formats
839                             if fo['format_id'] == format_id)
840                     except StopIteration:
841                         full_info = self._formats.get(format_id, {}).copy()
842                         full_info.update(f)
843                         codecs = r.attrib.get('codecs')
844                         if codecs:
845                             if full_info.get('acodec') == 'none' and 'vcodec' not in full_info:
846                                 full_info['vcodec'] = codecs
847                             elif full_info.get('vcodec') == 'none' and 'acodec' not in full_info:
848                                 full_info['acodec'] = codecs
849                         formats.append(full_info)
850                     else:
851                         existing_format.update(f)
852                 else:
853                     self.report_warning('Unknown MIME type %s in DASH manifest' % mime_type)
854         return formats
855
856     def _real_extract(self, url):
857         proto = (
858             'http' if self._downloader.params.get('prefer_insecure', False)
859             else 'https')
860
861         # Extract original video URL from URL with redirection, like age verification, using next_url parameter
862         mobj = re.search(self._NEXT_URL_RE, url)
863         if mobj:
864             url = proto + '://www.youtube.com/' + compat_urllib_parse.unquote(mobj.group(1)).lstrip('/')
865         video_id = self.extract_id(url)
866
867         # Get video webpage
868         url = proto + '://www.youtube.com/watch?v=%s&gl=US&hl=en&has_verified=1&bpctr=9999999999' % video_id
869         video_webpage = self._download_webpage(url, video_id)
870
871         # Attempt to extract SWF player URL
872         mobj = re.search(r'swfConfig.*?"(https?:\\/\\/.*?watch.*?-.*?\.swf)"', video_webpage)
873         if mobj is not None:
874             player_url = re.sub(r'\\(.)', r'\1', mobj.group(1))
875         else:
876             player_url = None
877
878         dash_mpds = []
879
880         def add_dash_mpd(video_info):
881             dash_mpd = video_info.get('dashmpd')
882             if dash_mpd and dash_mpd[0] not in dash_mpds:
883                 dash_mpds.append(dash_mpd[0])
884
885         # Get video info
886         embed_webpage = None
887         if re.search(r'player-age-gate-content">', video_webpage) is not None:
888             age_gate = True
889             # We simulate the access to the video from www.youtube.com/v/{video_id}
890             # this can be viewed without login into Youtube
891             url = proto + '://www.youtube.com/embed/%s' % video_id
892             embed_webpage = self._download_webpage(url, video_id, 'Downloading embed webpage')
893             data = compat_urllib_parse.urlencode({
894                 'video_id': video_id,
895                 'eurl': 'https://youtube.googleapis.com/v/' + video_id,
896                 'sts': self._search_regex(
897                     r'"sts"\s*:\s*(\d+)', embed_webpage, 'sts', default=''),
898             })
899             video_info_url = proto + '://www.youtube.com/get_video_info?' + data
900             video_info_webpage = self._download_webpage(
901                 video_info_url, video_id,
902                 note='Refetching age-gated info webpage',
903                 errnote='unable to download video info webpage')
904             video_info = compat_parse_qs(video_info_webpage)
905             add_dash_mpd(video_info)
906         else:
907             age_gate = False
908             video_info = None
909             # Try looking directly into the video webpage
910             mobj = re.search(r';ytplayer\.config\s*=\s*({.*?});', video_webpage)
911             if mobj:
912                 json_code = uppercase_escape(mobj.group(1))
913                 ytplayer_config = json.loads(json_code)
914                 args = ytplayer_config['args']
915                 if args.get('url_encoded_fmt_stream_map'):
916                     # Convert to the same format returned by compat_parse_qs
917                     video_info = dict((k, [v]) for k, v in args.items())
918                     add_dash_mpd(video_info)
919             if not video_info or self._downloader.params.get('youtube_include_dash_manifest', True):
920                 # We also try looking in get_video_info since it may contain different dashmpd
921                 # URL that points to a DASH manifest with possibly different itag set (some itags
922                 # are missing from DASH manifest pointed by webpage's dashmpd, some - from DASH
923                 # manifest pointed by get_video_info's dashmpd).
924                 # The general idea is to take a union of itags of both DASH manifests (for example
925                 # video with such 'manifest behavior' see https://github.com/rg3/youtube-dl/issues/6093)
926                 self.report_video_info_webpage_download(video_id)
927                 for el_type in ['&el=info', '&el=embedded', '&el=detailpage', '&el=vevo', '']:
928                     video_info_url = (
929                         '%s://www.youtube.com/get_video_info?&video_id=%s%s&ps=default&eurl=&gl=US&hl=en'
930                         % (proto, video_id, el_type))
931                     video_info_webpage = self._download_webpage(
932                         video_info_url,
933                         video_id, note=False,
934                         errnote='unable to download video info webpage')
935                     get_video_info = compat_parse_qs(video_info_webpage)
936                     add_dash_mpd(get_video_info)
937                     if not video_info:
938                         video_info = get_video_info
939                     if 'token' in get_video_info:
940                         break
941         if 'token' not in video_info:
942             if 'reason' in video_info:
943                 if 'The uploader has not made this video available in your country.' in video_info['reason']:
944                     regions_allowed = self._html_search_meta('regionsAllowed', video_webpage, default=None)
945                     if regions_allowed is not None:
946                         raise ExtractorError('YouTube said: This video is available in %s only' % (
947                             ', '.join(map(ISO3166Utils.short2full, regions_allowed.split(',')))),
948                             expected=True)
949                 raise ExtractorError(
950                     'YouTube said: %s' % video_info['reason'][0],
951                     expected=True, video_id=video_id)
952             else:
953                 raise ExtractorError(
954                     '"token" parameter not in video info for unknown reason',
955                     video_id=video_id)
956
957         if 'view_count' in video_info:
958             view_count = int(video_info['view_count'][0])
959         else:
960             view_count = None
961
962         # Check for "rental" videos
963         if 'ypc_video_rental_bar_text' in video_info and 'author' not in video_info:
964             raise ExtractorError('"rental" videos not supported')
965
966         # Start extracting information
967         self.report_information_extraction(video_id)
968
969         # uploader
970         if 'author' not in video_info:
971             raise ExtractorError('Unable to extract uploader name')
972         video_uploader = compat_urllib_parse.unquote_plus(video_info['author'][0])
973
974         # uploader_id
975         video_uploader_id = None
976         mobj = re.search(r'<link itemprop="url" href="http://www.youtube.com/(?:user|channel)/([^"]+)">', video_webpage)
977         if mobj is not None:
978             video_uploader_id = mobj.group(1)
979         else:
980             self._downloader.report_warning('unable to extract uploader nickname')
981
982         # title
983         if 'title' in video_info:
984             video_title = video_info['title'][0]
985         else:
986             self._downloader.report_warning('Unable to extract video title')
987             video_title = '_'
988
989         # thumbnail image
990         # We try first to get a high quality image:
991         m_thumb = re.search(r'<span itemprop="thumbnail".*?href="(.*?)">',
992                             video_webpage, re.DOTALL)
993         if m_thumb is not None:
994             video_thumbnail = m_thumb.group(1)
995         elif 'thumbnail_url' not in video_info:
996             self._downloader.report_warning('unable to extract video thumbnail')
997             video_thumbnail = None
998         else:   # don't panic if we can't find it
999             video_thumbnail = compat_urllib_parse.unquote_plus(video_info['thumbnail_url'][0])
1000
1001         # upload date
1002         upload_date = self._html_search_meta(
1003             'datePublished', video_webpage, 'upload date', default=None)
1004         if not upload_date:
1005             upload_date = self._search_regex(
1006                 [r'(?s)id="eow-date.*?>(.*?)</span>',
1007                  r'id="watch-uploader-info".*?>.*?(?:Published|Uploaded|Streamed live|Started) on (.+?)</strong>'],
1008                 video_webpage, 'upload date', default=None)
1009             if upload_date:
1010                 upload_date = ' '.join(re.sub(r'[/,-]', r' ', mobj.group(1)).split())
1011         upload_date = unified_strdate(upload_date)
1012
1013         m_cat_container = self._search_regex(
1014             r'(?s)<h4[^>]*>\s*Category\s*</h4>\s*<ul[^>]*>(.*?)</ul>',
1015             video_webpage, 'categories', default=None)
1016         if m_cat_container:
1017             category = self._html_search_regex(
1018                 r'(?s)<a[^<]+>(.*?)</a>', m_cat_container, 'category',
1019                 default=None)
1020             video_categories = None if category is None else [category]
1021         else:
1022             video_categories = None
1023
1024         # description
1025         video_description = get_element_by_id("eow-description", video_webpage)
1026         if video_description:
1027             video_description = re.sub(r'''(?x)
1028                 <a\s+
1029                     (?:[a-zA-Z-]+="[^"]+"\s+)*?
1030                     title="([^"]+)"\s+
1031                     (?:[a-zA-Z-]+="[^"]+"\s+)*?
1032                     class="yt-uix-redirect-link"\s*>
1033                 [^<]+
1034                 </a>
1035             ''', r'\1', video_description)
1036             video_description = clean_html(video_description)
1037         else:
1038             fd_mobj = re.search(r'<meta name="description" content="([^"]+)"', video_webpage)
1039             if fd_mobj:
1040                 video_description = unescapeHTML(fd_mobj.group(1))
1041             else:
1042                 video_description = ''
1043
1044         def _extract_count(count_name):
1045             return str_to_int(self._search_regex(
1046                 r'-%s-button[^>]+><span[^>]+class="yt-uix-button-content"[^>]*>([\d,]+)</span>'
1047                 % re.escape(count_name),
1048                 video_webpage, count_name, default=None))
1049
1050         like_count = _extract_count('like')
1051         dislike_count = _extract_count('dislike')
1052
1053         # subtitles
1054         video_subtitles = self.extract_subtitles(video_id, video_webpage)
1055         automatic_captions = self.extract_automatic_captions(video_id, video_webpage)
1056
1057         if 'length_seconds' not in video_info:
1058             self._downloader.report_warning('unable to extract video duration')
1059             video_duration = None
1060         else:
1061             video_duration = int(compat_urllib_parse.unquote_plus(video_info['length_seconds'][0]))
1062
1063         # annotations
1064         video_annotations = None
1065         if self._downloader.params.get('writeannotations', False):
1066             video_annotations = self._extract_annotations(video_id)
1067
1068         def _map_to_format_list(urlmap):
1069             formats = []
1070             for itag, video_real_url in urlmap.items():
1071                 dct = {
1072                     'format_id': itag,
1073                     'url': video_real_url,
1074                     'player_url': player_url,
1075                 }
1076                 if itag in self._formats:
1077                     dct.update(self._formats[itag])
1078                 formats.append(dct)
1079             return formats
1080
1081         if 'conn' in video_info and video_info['conn'][0].startswith('rtmp'):
1082             self.report_rtmp_download()
1083             formats = [{
1084                 'format_id': '_rtmp',
1085                 'protocol': 'rtmp',
1086                 'url': video_info['conn'][0],
1087                 'player_url': player_url,
1088             }]
1089         elif len(video_info.get('url_encoded_fmt_stream_map', [''])[0]) >= 1 or len(video_info.get('adaptive_fmts', [''])[0]) >= 1:
1090             encoded_url_map = video_info.get('url_encoded_fmt_stream_map', [''])[0] + ',' + video_info.get('adaptive_fmts', [''])[0]
1091             if 'rtmpe%3Dyes' in encoded_url_map:
1092                 raise ExtractorError('rtmpe downloads are not supported, see https://github.com/rg3/youtube-dl/issues/343 for more information.', expected=True)
1093             url_map = {}
1094             for url_data_str in encoded_url_map.split(','):
1095                 url_data = compat_parse_qs(url_data_str)
1096                 if 'itag' not in url_data or 'url' not in url_data:
1097                     continue
1098                 format_id = url_data['itag'][0]
1099                 url = url_data['url'][0]
1100
1101                 if 'sig' in url_data:
1102                     url += '&signature=' + url_data['sig'][0]
1103                 elif 's' in url_data:
1104                     encrypted_sig = url_data['s'][0]
1105                     ASSETS_RE = r'"assets":.+?"js":\s*("[^"]+")'
1106
1107                     jsplayer_url_json = self._search_regex(
1108                         ASSETS_RE,
1109                         embed_webpage if age_gate else video_webpage,
1110                         'JS player URL (1)', default=None)
1111                     if not jsplayer_url_json and not age_gate:
1112                         # We need the embed website after all
1113                         if embed_webpage is None:
1114                             embed_url = proto + '://www.youtube.com/embed/%s' % video_id
1115                             embed_webpage = self._download_webpage(
1116                                 embed_url, video_id, 'Downloading embed webpage')
1117                         jsplayer_url_json = self._search_regex(
1118                             ASSETS_RE, embed_webpage, 'JS player URL')
1119
1120                     player_url = json.loads(jsplayer_url_json)
1121                     if player_url is None:
1122                         player_url_json = self._search_regex(
1123                             r'ytplayer\.config.*?"url"\s*:\s*("[^"]+")',
1124                             video_webpage, 'age gate player URL')
1125                         player_url = json.loads(player_url_json)
1126
1127                     if self._downloader.params.get('verbose'):
1128                         if player_url is None:
1129                             player_version = 'unknown'
1130                             player_desc = 'unknown'
1131                         else:
1132                             if player_url.endswith('swf'):
1133                                 player_version = self._search_regex(
1134                                     r'-(.+?)(?:/watch_as3)?\.swf$', player_url,
1135                                     'flash player', fatal=False)
1136                                 player_desc = 'flash player %s' % player_version
1137                             else:
1138                                 player_version = self._search_regex(
1139                                     r'html5player-([^/]+?)(?:/html5player)?\.js',
1140                                     player_url,
1141                                     'html5 player', fatal=False)
1142                                 player_desc = 'html5 player %s' % player_version
1143
1144                         parts_sizes = self._signature_cache_id(encrypted_sig)
1145                         self.to_screen('{%s} signature length %s, %s' %
1146                                        (format_id, parts_sizes, player_desc))
1147
1148                     signature = self._decrypt_signature(
1149                         encrypted_sig, video_id, player_url, age_gate)
1150                     url += '&signature=' + signature
1151                 if 'ratebypass' not in url:
1152                     url += '&ratebypass=yes'
1153                 url_map[format_id] = url
1154             formats = _map_to_format_list(url_map)
1155         elif video_info.get('hlsvp'):
1156             manifest_url = video_info['hlsvp'][0]
1157             url_map = self._extract_from_m3u8(manifest_url, video_id)
1158             formats = _map_to_format_list(url_map)
1159         else:
1160             raise ExtractorError('no conn, hlsvp or url_encoded_fmt_stream_map information found in video info')
1161
1162         # Look for the DASH manifest
1163         if self._downloader.params.get('youtube_include_dash_manifest', True):
1164             for dash_manifest_url in dash_mpds:
1165                 dash_formats = {}
1166                 try:
1167                     for df in self._parse_dash_manifest(
1168                             video_id, dash_manifest_url, player_url, age_gate):
1169                         # Do not overwrite DASH format found in some previous DASH manifest
1170                         if df['format_id'] not in dash_formats:
1171                             dash_formats[df['format_id']] = df
1172                 except (ExtractorError, KeyError) as e:
1173                     self.report_warning(
1174                         'Skipping DASH manifest: %r' % e, video_id)
1175                 if dash_formats:
1176                     # Remove the formats we found through non-DASH, they
1177                     # contain less info and it can be wrong, because we use
1178                     # fixed values (for example the resolution). See
1179                     # https://github.com/rg3/youtube-dl/issues/5774 for an
1180                     # example.
1181                     formats = [f for f in formats if f['format_id'] not in dash_formats.keys()]
1182                     formats.extend(dash_formats.values())
1183
1184         # Check for malformed aspect ratio
1185         stretched_m = re.search(
1186             r'<meta\s+property="og:video:tag".*?content="yt:stretch=(?P<w>[0-9]+):(?P<h>[0-9]+)">',
1187             video_webpage)
1188         if stretched_m:
1189             ratio = float(stretched_m.group('w')) / float(stretched_m.group('h'))
1190             for f in formats:
1191                 if f.get('vcodec') != 'none':
1192                     f['stretched_ratio'] = ratio
1193
1194         self._sort_formats(formats)
1195
1196         return {
1197             'id': video_id,
1198             'uploader': video_uploader,
1199             'uploader_id': video_uploader_id,
1200             'upload_date': upload_date,
1201             'title': video_title,
1202             'thumbnail': video_thumbnail,
1203             'description': video_description,
1204             'categories': video_categories,
1205             'subtitles': video_subtitles,
1206             'automatic_captions': automatic_captions,
1207             'duration': video_duration,
1208             'age_limit': 18 if age_gate else 0,
1209             'annotations': video_annotations,
1210             'webpage_url': proto + '://www.youtube.com/watch?v=%s' % video_id,
1211             'view_count': view_count,
1212             'like_count': like_count,
1213             'dislike_count': dislike_count,
1214             'average_rating': float_or_none(video_info.get('avg_rating', [None])[0]),
1215             'formats': formats,
1216         }
1217
1218
1219 class YoutubePlaylistIE(YoutubeBaseInfoExtractor):
1220     IE_DESC = 'YouTube.com playlists'
1221     _VALID_URL = r"""(?x)(?:
1222                         (?:https?://)?
1223                         (?:\w+\.)?
1224                         youtube\.com/
1225                         (?:
1226                            (?:course|view_play_list|my_playlists|artist|playlist|watch|embed/videoseries)
1227                            \? (?:.*?&)*? (?:p|a|list)=
1228                         |  p/
1229                         )
1230                         (
1231                             (?:PL|LL|EC|UU|FL|RD|UL)?[0-9A-Za-z-_]{10,}
1232                             # Top tracks, they can also include dots
1233                             |(?:MC)[\w\.]*
1234                         )
1235                         .*
1236                      |
1237                         ((?:PL|LL|EC|UU|FL|RD|UL)[0-9A-Za-z-_]{10,})
1238                      )"""
1239     _TEMPLATE_URL = 'https://www.youtube.com/playlist?list=%s'
1240     _VIDEO_RE = r'href="\s*/watch\?v=(?P<id>[0-9A-Za-z_-]{11})&amp;[^"]*?index=(?P<index>\d+)'
1241     IE_NAME = 'youtube:playlist'
1242     _TESTS = [{
1243         'url': 'https://www.youtube.com/playlist?list=PLwiyx1dc3P2JR9N8gQaQN_BCvlSlap7re',
1244         'info_dict': {
1245             'title': 'ytdl test PL',
1246             'id': 'PLwiyx1dc3P2JR9N8gQaQN_BCvlSlap7re',
1247         },
1248         'playlist_count': 3,
1249     }, {
1250         'url': 'https://www.youtube.com/playlist?list=PLtPgu7CB4gbZDA7i_euNxn75ISqxwZPYx',
1251         'info_dict': {
1252             'id': 'PLtPgu7CB4gbZDA7i_euNxn75ISqxwZPYx',
1253             'title': 'YDL_Empty_List',
1254         },
1255         'playlist_count': 0,
1256     }, {
1257         'note': 'Playlist with deleted videos (#651). As a bonus, the video #51 is also twice in this list.',
1258         'url': 'https://www.youtube.com/playlist?list=PLwP_SiAcdui0KVebT0mU9Apz359a4ubsC',
1259         'info_dict': {
1260             'title': '29C3: Not my department',
1261             'id': 'PLwP_SiAcdui0KVebT0mU9Apz359a4ubsC',
1262         },
1263         'playlist_count': 95,
1264     }, {
1265         'note': 'issue #673',
1266         'url': 'PLBB231211A4F62143',
1267         'info_dict': {
1268             'title': '[OLD]Team Fortress 2 (Class-based LP)',
1269             'id': 'PLBB231211A4F62143',
1270         },
1271         'playlist_mincount': 26,
1272     }, {
1273         'note': 'Large playlist',
1274         'url': 'https://www.youtube.com/playlist?list=UUBABnxM4Ar9ten8Mdjj1j0Q',
1275         'info_dict': {
1276             'title': 'Uploads from Cauchemar',
1277             'id': 'UUBABnxM4Ar9ten8Mdjj1j0Q',
1278         },
1279         'playlist_mincount': 799,
1280     }, {
1281         'url': 'PLtPgu7CB4gbY9oDN3drwC3cMbJggS7dKl',
1282         'info_dict': {
1283             'title': 'YDL_safe_search',
1284             'id': 'PLtPgu7CB4gbY9oDN3drwC3cMbJggS7dKl',
1285         },
1286         'playlist_count': 2,
1287     }, {
1288         'note': 'embedded',
1289         'url': 'http://www.youtube.com/embed/videoseries?list=PL6IaIsEjSbf96XFRuNccS_RuEXwNdsoEu',
1290         'playlist_count': 4,
1291         'info_dict': {
1292             'title': 'JODA15',
1293             'id': 'PL6IaIsEjSbf96XFRuNccS_RuEXwNdsoEu',
1294         }
1295     }, {
1296         'note': 'Embedded SWF player',
1297         'url': 'http://www.youtube.com/p/YN5VISEtHet5D4NEvfTd0zcgFk84NqFZ?hl=en_US&fs=1&rel=0',
1298         'playlist_count': 4,
1299         'info_dict': {
1300             'title': 'JODA7',
1301             'id': 'YN5VISEtHet5D4NEvfTd0zcgFk84NqFZ',
1302         }
1303     }, {
1304         'note': 'Buggy playlist: the webpage has a "Load more" button but it doesn\'t have more videos',
1305         'url': 'https://www.youtube.com/playlist?list=UUXw-G3eDE9trcvY2sBMM_aA',
1306         'info_dict': {
1307             'title': 'Uploads from Interstellar Movie',
1308             'id': 'UUXw-G3eDE9trcvY2sBMM_aA',
1309         },
1310         'playlist_mincout': 21,
1311     }]
1312
1313     def _real_initialize(self):
1314         self._login()
1315
1316     def _extract_mix(self, playlist_id):
1317         # The mixes are generated from a single video
1318         # the id of the playlist is just 'RD' + video_id
1319         url = 'https://youtube.com/watch?v=%s&list=%s' % (playlist_id[-11:], playlist_id)
1320         webpage = self._download_webpage(
1321             url, playlist_id, 'Downloading Youtube mix')
1322         search_title = lambda class_name: get_element_by_attribute('class', class_name, webpage)
1323         title_span = (
1324             search_title('playlist-title') or
1325             search_title('title long-title') or
1326             search_title('title'))
1327         title = clean_html(title_span)
1328         ids = orderedSet(re.findall(
1329             r'''(?xs)data-video-username=".*?".*?
1330                        href="/watch\?v=([0-9A-Za-z_-]{11})&amp;[^"]*?list=%s''' % re.escape(playlist_id),
1331             webpage))
1332         url_results = self._ids_to_results(ids)
1333
1334         return self.playlist_result(url_results, playlist_id, title)
1335
1336     def _extract_playlist(self, playlist_id):
1337         url = self._TEMPLATE_URL % playlist_id
1338         page = self._download_webpage(url, playlist_id)
1339
1340         for match in re.findall(r'<div class="yt-alert-message">([^<]+)</div>', page):
1341             match = match.strip()
1342             # Check if the playlist exists or is private
1343             if re.match(r'[^<]*(The|This) playlist (does not exist|is private)[^<]*', match):
1344                 raise ExtractorError(
1345                     'The playlist doesn\'t exist or is private, use --username or '
1346                     '--netrc to access it.',
1347                     expected=True)
1348             elif re.match(r'[^<]*Invalid parameters[^<]*', match):
1349                 raise ExtractorError(
1350                     'Invalid parameters. Maybe URL is incorrect.',
1351                     expected=True)
1352             elif re.match(r'[^<]*Choose your language[^<]*', match):
1353                 continue
1354             else:
1355                 self.report_warning('Youtube gives an alert message: ' + match)
1356
1357         # Extract the video ids from the playlist pages
1358         def _entries():
1359             more_widget_html = content_html = page
1360             for page_num in itertools.count(1):
1361                 matches = re.finditer(self._VIDEO_RE, content_html)
1362                 # We remove the duplicates and the link with index 0
1363                 # (it's not the first video of the playlist)
1364                 new_ids = orderedSet(m.group('id') for m in matches if m.group('index') != '0')
1365                 for vid_id in new_ids:
1366                     yield self.url_result(vid_id, 'Youtube', video_id=vid_id)
1367
1368                 mobj = re.search(r'data-uix-load-more-href="/?(?P<more>[^"]+)"', more_widget_html)
1369                 if not mobj:
1370                     break
1371
1372                 more = self._download_json(
1373                     'https://youtube.com/%s' % mobj.group('more'), playlist_id,
1374                     'Downloading page #%s' % page_num,
1375                     transform_source=uppercase_escape)
1376                 content_html = more['content_html']
1377                 if not content_html.strip():
1378                     # Some webpages show a "Load more" button but they don't
1379                     # have more videos
1380                     break
1381                 more_widget_html = more['load_more_widget_html']
1382
1383         playlist_title = self._html_search_regex(
1384             r'(?s)<h1 class="pl-header-title[^"]*">\s*(.*?)\s*</h1>',
1385             page, 'title')
1386
1387         return self.playlist_result(_entries(), playlist_id, playlist_title)
1388
1389     def _real_extract(self, url):
1390         # Extract playlist id
1391         mobj = re.match(self._VALID_URL, url)
1392         if mobj is None:
1393             raise ExtractorError('Invalid URL: %s' % url)
1394         playlist_id = mobj.group(1) or mobj.group(2)
1395
1396         # Check if it's a video-specific URL
1397         query_dict = compat_urlparse.parse_qs(compat_urlparse.urlparse(url).query)
1398         if 'v' in query_dict:
1399             video_id = query_dict['v'][0]
1400             if self._downloader.params.get('noplaylist'):
1401                 self.to_screen('Downloading just video %s because of --no-playlist' % video_id)
1402                 return self.url_result(video_id, 'Youtube', video_id=video_id)
1403             else:
1404                 self.to_screen('Downloading playlist %s - add --no-playlist to just download video %s' % (playlist_id, video_id))
1405
1406         if playlist_id.startswith('RD') or playlist_id.startswith('UL'):
1407             # Mixes require a custom extraction process
1408             return self._extract_mix(playlist_id)
1409
1410         return self._extract_playlist(playlist_id)
1411
1412
1413 class YoutubeChannelIE(InfoExtractor):
1414     IE_DESC = 'YouTube.com channels'
1415     _VALID_URL = r'https?://(?:youtu\.be|(?:\w+\.)?youtube(?:-nocookie)?\.com)/channel/(?P<id>[0-9A-Za-z_-]+)'
1416     _TEMPLATE_URL = 'https://www.youtube.com/channel/%s/videos'
1417     IE_NAME = 'youtube:channel'
1418     _TESTS = [{
1419         'note': 'paginated channel',
1420         'url': 'https://www.youtube.com/channel/UCKfVa3S1e4PHvxWcwyMMg8w',
1421         'playlist_mincount': 91,
1422         'info_dict': {
1423             'id': 'UCKfVa3S1e4PHvxWcwyMMg8w',
1424         }
1425     }]
1426
1427     @staticmethod
1428     def extract_videos_from_page(page):
1429         ids_in_page = []
1430         titles_in_page = []
1431         for mobj in re.finditer(r'(?:title="(?P<title>[^"]+)"[^>]+)?href="/watch\?v=(?P<id>[0-9A-Za-z_-]+)&?', page):
1432             video_id = mobj.group('id')
1433             video_title = unescapeHTML(mobj.group('title'))
1434             try:
1435                 idx = ids_in_page.index(video_id)
1436                 if video_title and not titles_in_page[idx]:
1437                     titles_in_page[idx] = video_title
1438             except ValueError:
1439                 ids_in_page.append(video_id)
1440                 titles_in_page.append(video_title)
1441         return zip(ids_in_page, titles_in_page)
1442
1443     def _real_extract(self, url):
1444         channel_id = self._match_id(url)
1445
1446         url = self._TEMPLATE_URL % channel_id
1447
1448         # Channel by page listing is restricted to 35 pages of 30 items, i.e. 1050 videos total (see #5778)
1449         # Workaround by extracting as a playlist if managed to obtain channel playlist URL
1450         # otherwise fallback on channel by page extraction
1451         channel_page = self._download_webpage(
1452             url + '?view=57', channel_id,
1453             'Downloading channel page', fatal=False)
1454         channel_playlist_id = self._html_search_meta(
1455             'channelId', channel_page, 'channel id', default=None)
1456         if not channel_playlist_id:
1457             channel_playlist_id = self._search_regex(
1458                 r'data-channel-external-id="([^"]+)"',
1459                 channel_page, 'channel id', default=None)
1460         if channel_playlist_id and channel_playlist_id.startswith('UC'):
1461             playlist_id = 'UU' + channel_playlist_id[2:]
1462             return self.url_result(
1463                 compat_urlparse.urljoin(url, '/playlist?list=%s' % playlist_id), 'YoutubePlaylist')
1464
1465         channel_page = self._download_webpage(url, channel_id, 'Downloading page #1')
1466         autogenerated = re.search(r'''(?x)
1467                 class="[^"]*?(?:
1468                     channel-header-autogenerated-label|
1469                     yt-channel-title-autogenerated
1470                 )[^"]*"''', channel_page) is not None
1471
1472         if autogenerated:
1473             # The videos are contained in a single page
1474             # the ajax pages can't be used, they are empty
1475             entries = [
1476                 self.url_result(
1477                     video_id, 'Youtube', video_id=video_id,
1478                     video_title=video_title)
1479                 for video_id, video_title in self.extract_videos_from_page(channel_page)]
1480             return self.playlist_result(entries, channel_id)
1481
1482         def _entries():
1483             more_widget_html = content_html = channel_page
1484             for pagenum in itertools.count(1):
1485
1486                 for video_id, video_title in self.extract_videos_from_page(content_html):
1487                     yield self.url_result(
1488                         video_id, 'Youtube', video_id=video_id,
1489                         video_title=video_title)
1490
1491                 mobj = re.search(
1492                     r'data-uix-load-more-href="/?(?P<more>[^"]+)"',
1493                     more_widget_html)
1494                 if not mobj:
1495                     break
1496
1497                 more = self._download_json(
1498                     'https://youtube.com/%s' % mobj.group('more'), channel_id,
1499                     'Downloading page #%s' % (pagenum + 1),
1500                     transform_source=uppercase_escape)
1501                 content_html = more['content_html']
1502                 more_widget_html = more['load_more_widget_html']
1503
1504         return self.playlist_result(_entries(), channel_id)
1505
1506
1507 class YoutubeUserIE(YoutubeChannelIE):
1508     IE_DESC = 'YouTube.com user videos (URL or "ytuser" keyword)'
1509     _VALID_URL = r'(?:(?:(?:https?://)?(?:\w+\.)?youtube\.com/(?:user/)?(?!(?:attribution_link|watch|results)(?:$|[^a-z_A-Z0-9-])))|ytuser:)(?!feed/)(?P<id>[A-Za-z0-9_-]+)'
1510     _TEMPLATE_URL = 'https://www.youtube.com/user/%s/videos'
1511     IE_NAME = 'youtube:user'
1512
1513     _TESTS = [{
1514         'url': 'https://www.youtube.com/user/TheLinuxFoundation',
1515         'playlist_mincount': 320,
1516         'info_dict': {
1517             'title': 'TheLinuxFoundation',
1518         }
1519     }, {
1520         'url': 'ytuser:phihag',
1521         'only_matching': True,
1522     }]
1523
1524     @classmethod
1525     def suitable(cls, url):
1526         # Don't return True if the url can be extracted with other youtube
1527         # extractor, the regex would is too permissive and it would match.
1528         other_ies = iter(klass for (name, klass) in globals().items() if name.endswith('IE') and klass is not cls)
1529         if any(ie.suitable(url) for ie in other_ies):
1530             return False
1531         else:
1532             return super(YoutubeUserIE, cls).suitable(url)
1533
1534
1535 class YoutubeSearchIE(SearchInfoExtractor, YoutubePlaylistIE):
1536     IE_DESC = 'YouTube.com searches'
1537     # there doesn't appear to be a real limit, for example if you search for
1538     # 'python' you get more than 8.000.000 results
1539     _MAX_RESULTS = float('inf')
1540     IE_NAME = 'youtube:search'
1541     _SEARCH_KEY = 'ytsearch'
1542     _EXTRA_QUERY_ARGS = {}
1543     _TESTS = []
1544
1545     def _get_n_results(self, query, n):
1546         """Get a specified number of results for a query"""
1547
1548         videos = []
1549         limit = n
1550
1551         for pagenum in itertools.count(1):
1552             url_query = {
1553                 'search_query': query.encode('utf-8'),
1554                 'page': pagenum,
1555                 'spf': 'navigate',
1556             }
1557             url_query.update(self._EXTRA_QUERY_ARGS)
1558             result_url = 'https://www.youtube.com/results?' + compat_urllib_parse.urlencode(url_query)
1559             data = self._download_json(
1560                 result_url, video_id='query "%s"' % query,
1561                 note='Downloading page %s' % pagenum,
1562                 errnote='Unable to download API page')
1563             html_content = data[1]['body']['content']
1564
1565             if 'class="search-message' in html_content:
1566                 raise ExtractorError(
1567                     '[youtube] No video results', expected=True)
1568
1569             new_videos = self._ids_to_results(orderedSet(re.findall(
1570                 r'href="/watch\?v=(.{11})', html_content)))
1571             videos += new_videos
1572             if not new_videos or len(videos) > limit:
1573                 break
1574
1575         if len(videos) > n:
1576             videos = videos[:n]
1577         return self.playlist_result(videos, query)
1578
1579
1580 class YoutubeSearchDateIE(YoutubeSearchIE):
1581     IE_NAME = YoutubeSearchIE.IE_NAME + ':date'
1582     _SEARCH_KEY = 'ytsearchdate'
1583     IE_DESC = 'YouTube.com searches, newest videos first'
1584     _EXTRA_QUERY_ARGS = {'search_sort': 'video_date_uploaded'}
1585
1586
1587 class YoutubeSearchURLIE(InfoExtractor):
1588     IE_DESC = 'YouTube.com search URLs'
1589     IE_NAME = 'youtube:search_url'
1590     _VALID_URL = r'https?://(?:www\.)?youtube\.com/results\?(.*?&)?search_query=(?P<query>[^&]+)(?:[&]|$)'
1591     _TESTS = [{
1592         'url': 'https://www.youtube.com/results?baz=bar&search_query=youtube-dl+test+video&filters=video&lclk=video',
1593         'playlist_mincount': 5,
1594         'info_dict': {
1595             'title': 'youtube-dl test video',
1596         }
1597     }]
1598
1599     def _real_extract(self, url):
1600         mobj = re.match(self._VALID_URL, url)
1601         query = compat_urllib_parse.unquote_plus(mobj.group('query'))
1602
1603         webpage = self._download_webpage(url, query)
1604         result_code = self._search_regex(
1605             r'(?s)<ol[^>]+class="item-section"(.*?)</ol>', webpage, 'result HTML')
1606
1607         part_codes = re.findall(
1608             r'(?s)<h3 class="yt-lockup-title">(.*?)</h3>', result_code)
1609         entries = []
1610         for part_code in part_codes:
1611             part_title = self._html_search_regex(
1612                 [r'(?s)title="([^"]+)"', r'>([^<]+)</a>'], part_code, 'item title', fatal=False)
1613             part_url_snippet = self._html_search_regex(
1614                 r'(?s)href="([^"]+)"', part_code, 'item URL')
1615             part_url = compat_urlparse.urljoin(
1616                 'https://www.youtube.com/', part_url_snippet)
1617             entries.append({
1618                 '_type': 'url',
1619                 'url': part_url,
1620                 'title': part_title,
1621             })
1622
1623         return {
1624             '_type': 'playlist',
1625             'entries': entries,
1626             'title': query,
1627         }
1628
1629
1630 class YoutubeShowIE(InfoExtractor):
1631     IE_DESC = 'YouTube.com (multi-season) shows'
1632     _VALID_URL = r'https?://www\.youtube\.com/show/(?P<id>[^?#]*)'
1633     IE_NAME = 'youtube:show'
1634     _TESTS = [{
1635         'url': 'http://www.youtube.com/show/airdisasters',
1636         'playlist_mincount': 3,
1637         'info_dict': {
1638             'id': 'airdisasters',
1639             'title': 'Air Disasters',
1640         }
1641     }]
1642
1643     def _real_extract(self, url):
1644         mobj = re.match(self._VALID_URL, url)
1645         playlist_id = mobj.group('id')
1646         webpage = self._download_webpage(
1647             url, playlist_id, 'Downloading show webpage')
1648         # There's one playlist for each season of the show
1649         m_seasons = list(re.finditer(r'href="(/playlist\?list=.*?)"', webpage))
1650         self.to_screen('%s: Found %s seasons' % (playlist_id, len(m_seasons)))
1651         entries = [
1652             self.url_result(
1653                 'https://www.youtube.com' + season.group(1), 'YoutubePlaylist')
1654             for season in m_seasons
1655         ]
1656         title = self._og_search_title(webpage, fatal=False)
1657
1658         return {
1659             '_type': 'playlist',
1660             'id': playlist_id,
1661             'title': title,
1662             'entries': entries,
1663         }
1664
1665
1666 class YoutubeFeedsInfoExtractor(YoutubeBaseInfoExtractor):
1667     """
1668     Base class for feed extractors
1669     Subclasses must define the _FEED_NAME and _PLAYLIST_TITLE properties.
1670     """
1671     _LOGIN_REQUIRED = True
1672
1673     @property
1674     def IE_NAME(self):
1675         return 'youtube:%s' % self._FEED_NAME
1676
1677     def _real_initialize(self):
1678         self._login()
1679
1680     def _real_extract(self, url):
1681         page = self._download_webpage(
1682             'https://www.youtube.com/feed/%s' % self._FEED_NAME, self._PLAYLIST_TITLE)
1683
1684         # The extraction process is the same as for playlists, but the regex
1685         # for the video ids doesn't contain an index
1686         ids = []
1687         more_widget_html = content_html = page
1688         for page_num in itertools.count(1):
1689             matches = re.findall(r'href="\s*/watch\?v=([0-9A-Za-z_-]{11})', content_html)
1690
1691             # 'recommended' feed has infinite 'load more' and each new portion spins
1692             # the same videos in (sometimes) slightly different order, so we'll check
1693             # for unicity and break when portion has no new videos
1694             new_ids = filter(lambda video_id: video_id not in ids, orderedSet(matches))
1695             if not new_ids:
1696                 break
1697
1698             ids.extend(new_ids)
1699
1700             mobj = re.search(r'data-uix-load-more-href="/?(?P<more>[^"]+)"', more_widget_html)
1701             if not mobj:
1702                 break
1703
1704             more = self._download_json(
1705                 'https://youtube.com/%s' % mobj.group('more'), self._PLAYLIST_TITLE,
1706                 'Downloading page #%s' % page_num,
1707                 transform_source=uppercase_escape)
1708             content_html = more['content_html']
1709             more_widget_html = more['load_more_widget_html']
1710
1711         return self.playlist_result(
1712             self._ids_to_results(ids), playlist_title=self._PLAYLIST_TITLE)
1713
1714
1715 class YoutubeWatchLaterIE(YoutubePlaylistIE):
1716     IE_NAME = 'youtube:watchlater'
1717     IE_DESC = 'Youtube watch later list, ":ytwatchlater" for short (requires authentication)'
1718     _VALID_URL = r'https?://www\.youtube\.com/(?:feed/watch_later|playlist\?list=WL)|:ytwatchlater'
1719
1720     _TESTS = []  # override PlaylistIE tests
1721
1722     def _real_extract(self, url):
1723         return self._extract_playlist('WL')
1724
1725
1726 class YoutubeFavouritesIE(YoutubeBaseInfoExtractor):
1727     IE_NAME = 'youtube:favorites'
1728     IE_DESC = 'YouTube.com favourite videos, ":ytfav" for short (requires authentication)'
1729     _VALID_URL = r'https?://www\.youtube\.com/my_favorites|:ytfav(?:ou?rites)?'
1730     _LOGIN_REQUIRED = True
1731
1732     def _real_extract(self, url):
1733         webpage = self._download_webpage('https://www.youtube.com/my_favorites', 'Youtube Favourites videos')
1734         playlist_id = self._search_regex(r'list=(.+?)["&]', webpage, 'favourites playlist id')
1735         return self.url_result(playlist_id, 'YoutubePlaylist')
1736
1737
1738 class YoutubeRecommendedIE(YoutubeFeedsInfoExtractor):
1739     IE_DESC = 'YouTube.com recommended videos, ":ytrec" for short (requires authentication)'
1740     _VALID_URL = r'https?://www\.youtube\.com/feed/recommended|:ytrec(?:ommended)?'
1741     _FEED_NAME = 'recommended'
1742     _PLAYLIST_TITLE = 'Youtube Recommended videos'
1743
1744
1745 class YoutubeSubscriptionsIE(YoutubeFeedsInfoExtractor):
1746     IE_DESC = 'YouTube.com subscriptions feed, "ytsubs" keyword (requires authentication)'
1747     _VALID_URL = r'https?://www\.youtube\.com/feed/subscriptions|:ytsubs(?:criptions)?'
1748     _FEED_NAME = 'subscriptions'
1749     _PLAYLIST_TITLE = 'Youtube Subscriptions'
1750
1751
1752 class YoutubeHistoryIE(YoutubeFeedsInfoExtractor):
1753     IE_DESC = 'Youtube watch history, ":ythistory" for short (requires authentication)'
1754     _VALID_URL = 'https?://www\.youtube\.com/feed/history|:ythistory'
1755     _FEED_NAME = 'history'
1756     _PLAYLIST_TITLE = 'Youtube History'
1757
1758
1759 class YoutubeTruncatedURLIE(InfoExtractor):
1760     IE_NAME = 'youtube:truncated_url'
1761     IE_DESC = False  # Do not list
1762     _VALID_URL = r'''(?x)
1763         (?:https?://)?
1764         (?:\w+\.)?[yY][oO][uU][tT][uU][bB][eE](?:-nocookie)?\.com/
1765         (?:watch\?(?:
1766             feature=[a-z_]+|
1767             annotation_id=annotation_[^&]+|
1768             x-yt-cl=[0-9]+|
1769             hl=[^&]*|
1770         )?
1771         |
1772             attribution_link\?a=[^&]+
1773         )
1774         $
1775     '''
1776
1777     _TESTS = [{
1778         'url': 'http://www.youtube.com/watch?annotation_id=annotation_3951667041',
1779         'only_matching': True,
1780     }, {
1781         'url': 'http://www.youtube.com/watch?',
1782         'only_matching': True,
1783     }, {
1784         'url': 'https://www.youtube.com/watch?x-yt-cl=84503534',
1785         'only_matching': True,
1786     }, {
1787         'url': 'https://www.youtube.com/watch?feature=foo',
1788         'only_matching': True,
1789     }, {
1790         'url': 'https://www.youtube.com/watch?hl=en-GB',
1791         'only_matching': True,
1792     }]
1793
1794     def _real_extract(self, url):
1795         raise ExtractorError(
1796             'Did you forget to quote the URL? Remember that & is a meta '
1797             'character in most shells, so you want to put the URL in quotes, '
1798             'like  youtube-dl '
1799             '"http://www.youtube.com/watch?feature=foo&v=BaW_jenozKc" '
1800             ' or simply  youtube-dl BaW_jenozKc  .',
1801             expected=True)
1802
1803
1804 class YoutubeTruncatedIDIE(InfoExtractor):
1805     IE_NAME = 'youtube:truncated_id'
1806     IE_DESC = False  # Do not list
1807     _VALID_URL = r'https?://(?:www\.)?youtube\.com/watch\?v=(?P<id>[0-9A-Za-z_-]{1,10})$'
1808
1809     _TESTS = [{
1810         'url': 'https://www.youtube.com/watch?v=N_708QY7Ob',
1811         'only_matching': True,
1812     }]
1813
1814     def _real_extract(self, url):
1815         video_id = self._match_id(url)
1816         raise ExtractorError(
1817             'Incomplete YouTube ID %s. URL %s looks truncated.' % (video_id, url),
1818             expected=True)