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