Updated the 84 length signature decryption
[youtube-dl] / youtube_dl / extractor / youtube.py
1 # coding: utf-8
2
3 import json
4 import netrc
5 import re
6 import socket
7 import itertools
8
9 from .common import InfoExtractor, SearchInfoExtractor
10 from ..utils import (
11     compat_http_client,
12     compat_parse_qs,
13     compat_urllib_error,
14     compat_urllib_parse,
15     compat_urllib_request,
16     compat_str,
17
18     clean_html,
19     get_element_by_id,
20     ExtractorError,
21     unescapeHTML,
22     unified_strdate,
23     orderedSet,
24 )
25
26
27 class YoutubeIE(InfoExtractor):
28     IE_DESC = u'YouTube.com'
29     _VALID_URL = r"""^
30                      (
31                          (?:https?://)?                                       # http(s):// (optional)
32                          (?:youtu\.be/|(?:\w+\.)?youtube(?:-nocookie)?\.com/|
33                             tube\.majestyc\.net/)                             # the various hostnames, with wildcard subdomains
34                          (?:.*?\#/)?                                          # handle anchor (#/) redirect urls
35                          (?:                                                  # the various things that can precede the ID:
36                              (?:(?:v|embed|e)/)                               # v/ or embed/ or e/
37                              |(?:                                             # or the v= param in all its forms
38                                  (?:watch|movie(?:_popup)?(?:\.php)?)?              # preceding watch(_popup|.php) or nothing (like /?v=xxxx)
39                                  (?:\?|\#!?)                                  # the params delimiter ? or # or #!
40                                  (?:.*?&)?                                    # any other preceding param (like /?s=tuff&v=xxxx)
41                                  v=
42                              )
43                          )?                                                   # optional -> youtube.com/xxxx is OK
44                      )?                                                       # all until now is optional -> you can pass the naked ID
45                      ([0-9A-Za-z_-]+)                                         # here is it! the YouTube video ID
46                      (?(1).+)?                                                # if we found the ID, everything can follow
47                      $"""
48     _LANG_URL = r'https://www.youtube.com/?hl=en&persist_hl=1&gl=US&persist_gl=1&opt_out_ackd=1'
49     _LOGIN_URL = 'https://accounts.google.com/ServiceLogin'
50     _AGE_URL = 'http://www.youtube.com/verify_age?next_url=/&gl=US&hl=en'
51     _NEXT_URL_RE = r'[\?&]next_url=([^&]+)'
52     _NETRC_MACHINE = 'youtube'
53     # Listed in order of quality
54     _available_formats = ['38', '37', '46', '22', '45', '35', '44', '34', '18', '43', '6', '5', '17', '13']
55     _available_formats_prefer_free = ['38', '46', '37', '45', '22', '44', '35', '43', '34', '18', '6', '5', '17', '13']
56     _video_extensions = {
57         '13': '3gp',
58         '17': 'mp4',
59         '18': 'mp4',
60         '22': 'mp4',
61         '37': 'mp4',
62         '38': 'mp4',
63         '43': 'webm',
64         '44': 'webm',
65         '45': 'webm',
66         '46': 'webm',
67     }
68     _video_dimensions = {
69         '5': '240x400',
70         '6': '???',
71         '13': '???',
72         '17': '144x176',
73         '18': '360x640',
74         '22': '720x1280',
75         '34': '360x640',
76         '35': '480x854',
77         '37': '1080x1920',
78         '38': '3072x4096',
79         '43': '360x640',
80         '44': '480x854',
81         '45': '720x1280',
82         '46': '1080x1920',
83     }
84     IE_NAME = u'youtube'
85     _TESTS = [
86         {
87             u"url":  u"http://www.youtube.com/watch?v=BaW_jenozKc",
88             u"file":  u"BaW_jenozKc.mp4",
89             u"info_dict": {
90                 u"title": u"youtube-dl test video \"'/\\ä↭𝕐",
91                 u"uploader": u"Philipp Hagemeister",
92                 u"uploader_id": u"phihag",
93                 u"upload_date": u"20121002",
94                 u"description": u"test chars:  \"'/\\ä↭𝕐\n\nThis is a test video for youtube-dl.\n\nFor more information, contact phihag@phihag.de ."
95             }
96         },
97         {
98             u"url":  u"http://www.youtube.com/watch?v=1ltcDfZMA3U",
99             u"file":  u"1ltcDfZMA3U.flv",
100             u"note": u"Test VEVO video (#897)",
101             u"info_dict": {
102                 u"upload_date": u"20070518",
103                 u"title": u"Maps - It Will Find You",
104                 u"description": u"Music video by Maps performing It Will Find You.",
105                 u"uploader": u"MuteUSA",
106                 u"uploader_id": u"MuteUSA"
107             }
108         },
109         {
110             u"url":  u"http://www.youtube.com/watch?v=UxxajLWwzqY",
111             u"file":  u"UxxajLWwzqY.mp4",
112             u"note": u"Test generic use_cipher_signature video (#897)",
113             u"info_dict": {
114                 u"upload_date": u"20120506",
115                 u"title": u"Icona Pop - I Love It (feat. Charli XCX) [OFFICIAL VIDEO]",
116                 u"description": u"md5:b085c9804f5ab69f4adea963a2dceb3c",
117                 u"uploader": u"IconaPop",
118                 u"uploader_id": u"IconaPop"
119             }
120         },
121         {
122             u"url":  u"https://www.youtube.com/watch?v=07FYdnEawAQ",
123             u"file":  u"07FYdnEawAQ.mp4",
124             u"note": u"Test VEVO video with age protection (#956)",
125             u"info_dict": {
126                 u"upload_date": u"20130703",
127                 u"title": u"Justin Timberlake - Tunnel Vision (Explicit)",
128                 u"description": u"md5:64249768eec3bc4276236606ea996373",
129                 u"uploader": u"justintimberlakeVEVO",
130                 u"uploader_id": u"justintimberlakeVEVO"
131             }
132         },
133     ]
134
135
136     @classmethod
137     def suitable(cls, url):
138         """Receives a URL and returns True if suitable for this IE."""
139         if YoutubePlaylistIE.suitable(url) or YoutubeSubscriptionsIE.suitable(url): return False
140         return re.match(cls._VALID_URL, url, re.VERBOSE) is not None
141
142     def report_lang(self):
143         """Report attempt to set language."""
144         self.to_screen(u'Setting language')
145
146     def report_video_webpage_download(self, video_id):
147         """Report attempt to download video webpage."""
148         self.to_screen(u'%s: Downloading video webpage' % video_id)
149
150     def report_video_info_webpage_download(self, video_id):
151         """Report attempt to download video info webpage."""
152         self.to_screen(u'%s: Downloading video info webpage' % video_id)
153
154     def report_video_subtitles_download(self, video_id):
155         """Report attempt to download video info webpage."""
156         self.to_screen(u'%s: Checking available subtitles' % video_id)
157
158     def report_video_subtitles_request(self, video_id, sub_lang, format):
159         """Report attempt to download video info webpage."""
160         self.to_screen(u'%s: Downloading video subtitles for %s.%s' % (video_id, sub_lang, format))
161
162     def report_video_subtitles_available(self, video_id, sub_lang_list):
163         """Report available subtitles."""
164         sub_lang = ",".join(list(sub_lang_list.keys()))
165         self.to_screen(u'%s: Available subtitles for video: %s' % (video_id, sub_lang))
166
167     def report_information_extraction(self, video_id):
168         """Report attempt to extract video information."""
169         self.to_screen(u'%s: Extracting video information' % video_id)
170
171     def report_unavailable_format(self, video_id, format):
172         """Report extracted video URL."""
173         self.to_screen(u'%s: Format %s not available' % (video_id, format))
174
175     def report_rtmp_download(self):
176         """Indicate the download will use the RTMP protocol."""
177         self.to_screen(u'RTMP download detected')
178
179     def _decrypt_signature(self, s):
180         """Turn the encrypted s field into a working signature"""
181
182         if len(s) == 88:
183             return s[48] + s[81:67:-1] + s[82] + s[66:62:-1] + s[85] + s[61:48:-1] + s[67] + s[47:12:-1] + s[3] + s[11:3:-1] + s[2] + s[12]
184         elif len(s) == 87:
185             return s[62] + s[82:62:-1] + s[83] + s[61:52:-1] + s[0] + s[51:2:-1]
186         elif len(s) == 86:
187             return s[2:63] + s[82] + s[64:82] + s[63]
188         elif len(s) == 85:
189             return s[76] + s[82:76:-1] + s[83] + s[75:60:-1] + s[0] + s[59:50:-1] + s[1] + s[49:2:-1]
190         elif len(s) == 84:
191             return s[83:27:-1] + s[0] + s[26:5:-1] + s[2:0:-1] + s[27]
192         elif len(s) == 83:
193             return s[6] + s[3:6] + s[33] + s[7:24] + s[0] + s[25:33] + s[53] + s[34:53] + s[24] + s[54:]
194         elif len(s) == 82:
195             return s[36] + s[79:67:-1] + s[81] + s[66:40:-1] + s[33] + s[39:36:-1] + s[40] + s[35] + s[0] + s[67] + s[32:0:-1] + s[34]
196         elif len(s) == 81:
197             return s[6] + s[3:6] + s[33] + s[7:24] + s[0] + s[25:33] + s[2] + s[34:53] + s[24] + s[54:81]
198         elif len(s) == 92:
199             return s[25] + s[3:25] + s[0] + s[26:42] + s[79] + s[43:79] + s[91] + s[80:83];
200
201         else:
202             raise ExtractorError(u'Unable to decrypt signature, key length %d not supported; retrying might work' % (len(s)))
203
204     def _get_available_subtitles(self, video_id):
205         self.report_video_subtitles_download(video_id)
206         request = compat_urllib_request.Request('http://video.google.com/timedtext?hl=en&type=list&v=%s' % video_id)
207         try:
208             sub_list = compat_urllib_request.urlopen(request).read().decode('utf-8')
209         except (compat_urllib_error.URLError, compat_http_client.HTTPException, socket.error) as err:
210             return (u'unable to download video subtitles: %s' % compat_str(err), None)
211         sub_lang_list = re.findall(r'name="([^"]*)"[^>]+lang_code="([\w\-]+)"', sub_list)
212         sub_lang_list = dict((l[1], l[0]) for l in sub_lang_list)
213         if not sub_lang_list:
214             return (u'video doesn\'t have subtitles', None)
215         return sub_lang_list
216
217     def _list_available_subtitles(self, video_id):
218         sub_lang_list = self._get_available_subtitles(video_id)
219         self.report_video_subtitles_available(video_id, sub_lang_list)
220
221     def _request_subtitle(self, sub_lang, sub_name, video_id, format):
222         """
223         Return tuple:
224         (error_message, sub_lang, sub)
225         """
226         self.report_video_subtitles_request(video_id, sub_lang, format)
227         params = compat_urllib_parse.urlencode({
228             'lang': sub_lang,
229             'name': sub_name,
230             'v': video_id,
231             'fmt': format,
232         })
233         url = 'http://www.youtube.com/api/timedtext?' + params
234         try:
235             sub = compat_urllib_request.urlopen(url).read().decode('utf-8')
236         except (compat_urllib_error.URLError, compat_http_client.HTTPException, socket.error) as err:
237             return (u'unable to download video subtitles: %s' % compat_str(err), None, None)
238         if not sub:
239             return (u'Did not fetch video subtitles', None, None)
240         return (None, sub_lang, sub)
241
242     def _request_automatic_caption(self, video_id, webpage):
243         """We need the webpage for getting the captions url, pass it as an
244            argument to speed up the process."""
245         sub_lang = self._downloader.params.get('subtitleslang') or 'en'
246         sub_format = self._downloader.params.get('subtitlesformat')
247         self.to_screen(u'%s: Looking for automatic captions' % video_id)
248         mobj = re.search(r';ytplayer.config = ({.*?});', webpage)
249         err_msg = u'Couldn\'t find automatic captions for "%s"' % sub_lang
250         if mobj is None:
251             return [(err_msg, None, None)]
252         player_config = json.loads(mobj.group(1))
253         try:
254             args = player_config[u'args']
255             caption_url = args[u'ttsurl']
256             timestamp = args[u'timestamp']
257             params = compat_urllib_parse.urlencode({
258                 'lang': 'en',
259                 'tlang': sub_lang,
260                 'fmt': sub_format,
261                 'ts': timestamp,
262                 'kind': 'asr',
263             })
264             subtitles_url = caption_url + '&' + params
265             sub = self._download_webpage(subtitles_url, video_id, u'Downloading automatic captions')
266             return [(None, sub_lang, sub)]
267         except KeyError:
268             return [(err_msg, None, None)]
269
270     def _extract_subtitle(self, video_id):
271         """
272         Return a list with a tuple:
273         [(error_message, sub_lang, sub)]
274         """
275         sub_lang_list = self._get_available_subtitles(video_id)
276         sub_format = self._downloader.params.get('subtitlesformat')
277         if  isinstance(sub_lang_list,tuple): #There was some error, it didn't get the available subtitles
278             return [(sub_lang_list[0], None, None)]
279         if self._downloader.params.get('subtitleslang', False):
280             sub_lang = self._downloader.params.get('subtitleslang')
281         elif 'en' in sub_lang_list:
282             sub_lang = 'en'
283         else:
284             sub_lang = list(sub_lang_list.keys())[0]
285         if not sub_lang in sub_lang_list:
286             return [(u'no closed captions found in the specified language "%s"' % sub_lang, None, None)]
287
288         subtitle = self._request_subtitle(sub_lang, sub_lang_list[sub_lang].encode('utf-8'), video_id, sub_format)
289         return [subtitle]
290
291     def _extract_all_subtitles(self, video_id):
292         sub_lang_list = self._get_available_subtitles(video_id)
293         sub_format = self._downloader.params.get('subtitlesformat')
294         if  isinstance(sub_lang_list,tuple): #There was some error, it didn't get the available subtitles
295             return [(sub_lang_list[0], None, None)]
296         subtitles = []
297         for sub_lang in sub_lang_list:
298             subtitle = self._request_subtitle(sub_lang, sub_lang_list[sub_lang].encode('utf-8'), video_id, sub_format)
299             subtitles.append(subtitle)
300         return subtitles
301
302     def _print_formats(self, formats):
303         print('Available formats:')
304         for x in formats:
305             print('%s\t:\t%s\t[%s]' %(x, self._video_extensions.get(x, 'flv'), self._video_dimensions.get(x, '???')))
306
307     def _real_initialize(self):
308         if self._downloader is None:
309             return
310
311         # Set language
312         request = compat_urllib_request.Request(self._LANG_URL)
313         try:
314             self.report_lang()
315             compat_urllib_request.urlopen(request).read()
316         except (compat_urllib_error.URLError, compat_http_client.HTTPException, socket.error) as err:
317             self._downloader.report_warning(u'unable to set language: %s' % compat_str(err))
318             return
319
320         (username, password) = self._get_login_info()
321
322         # No authentication to be performed
323         if username is None:
324             return
325
326         request = compat_urllib_request.Request(self._LOGIN_URL)
327         try:
328             login_page = compat_urllib_request.urlopen(request).read().decode('utf-8')
329         except (compat_urllib_error.URLError, compat_http_client.HTTPException, socket.error) as err:
330             self._downloader.report_warning(u'unable to fetch login page: %s' % compat_str(err))
331             return
332
333         galx = None
334         dsh = None
335         match = re.search(re.compile(r'<input.+?name="GALX".+?value="(.+?)"', re.DOTALL), login_page)
336         if match:
337           galx = match.group(1)
338
339         match = re.search(re.compile(r'<input.+?name="dsh".+?value="(.+?)"', re.DOTALL), login_page)
340         if match:
341           dsh = match.group(1)
342
343         # Log in
344         login_form_strs = {
345                 u'continue': u'https://www.youtube.com/signin?action_handle_signin=true&feature=sign_in_button&hl=en_US&nomobiletemp=1',
346                 u'Email': username,
347                 u'GALX': galx,
348                 u'Passwd': password,
349                 u'PersistentCookie': u'yes',
350                 u'_utf8': u'霱',
351                 u'bgresponse': u'js_disabled',
352                 u'checkConnection': u'',
353                 u'checkedDomains': u'youtube',
354                 u'dnConn': u'',
355                 u'dsh': dsh,
356                 u'pstMsg': u'0',
357                 u'rmShown': u'1',
358                 u'secTok': u'',
359                 u'signIn': u'Sign in',
360                 u'timeStmp': u'',
361                 u'service': u'youtube',
362                 u'uilel': u'3',
363                 u'hl': u'en_US',
364         }
365         # Convert to UTF-8 *before* urlencode because Python 2.x's urlencode
366         # chokes on unicode
367         login_form = dict((k.encode('utf-8'), v.encode('utf-8')) for k,v in login_form_strs.items())
368         login_data = compat_urllib_parse.urlencode(login_form).encode('ascii')
369         request = compat_urllib_request.Request(self._LOGIN_URL, login_data)
370         try:
371             self.report_login()
372             login_results = compat_urllib_request.urlopen(request).read().decode('utf-8')
373             if re.search(r'(?i)<form[^>]* id="gaia_loginform"', login_results) is not None:
374                 self._downloader.report_warning(u'unable to log in: bad username or password')
375                 return
376         except (compat_urllib_error.URLError, compat_http_client.HTTPException, socket.error) as err:
377             self._downloader.report_warning(u'unable to log in: %s' % compat_str(err))
378             return
379
380         # Confirm age
381         age_form = {
382                 'next_url':     '/',
383                 'action_confirm':   'Confirm',
384                 }
385         request = compat_urllib_request.Request(self._AGE_URL, compat_urllib_parse.urlencode(age_form))
386         try:
387             self.report_age_confirmation()
388             compat_urllib_request.urlopen(request).read().decode('utf-8')
389         except (compat_urllib_error.URLError, compat_http_client.HTTPException, socket.error) as err:
390             raise ExtractorError(u'Unable to confirm age: %s' % compat_str(err))
391
392     def _extract_id(self, url):
393         mobj = re.match(self._VALID_URL, url, re.VERBOSE)
394         if mobj is None:
395             raise ExtractorError(u'Invalid URL: %s' % url)
396         video_id = mobj.group(2)
397         return video_id
398
399     def _real_extract(self, url):
400         if re.match(r'(?:https?://)?[^/]+/watch\?feature=[a-z_]+$', url):
401             self._downloader.report_warning(u'Did you forget to quote the URL? Remember that & is a meta-character in most shells, so you want to put the URL in quotes, like  youtube-dl \'http://www.youtube.com/watch?feature=foo&v=BaW_jenozKc\' (or simply  youtube-dl BaW_jenozKc  ).')
402
403         # Extract original video URL from URL with redirection, like age verification, using next_url parameter
404         mobj = re.search(self._NEXT_URL_RE, url)
405         if mobj:
406             url = 'https://www.youtube.com/' + compat_urllib_parse.unquote(mobj.group(1)).lstrip('/')
407         video_id = self._extract_id(url)
408
409         # Get video webpage
410         self.report_video_webpage_download(video_id)
411         url = 'https://www.youtube.com/watch?v=%s&gl=US&hl=en&has_verified=1' % video_id
412         request = compat_urllib_request.Request(url)
413         try:
414             video_webpage_bytes = compat_urllib_request.urlopen(request).read()
415         except (compat_urllib_error.URLError, compat_http_client.HTTPException, socket.error) as err:
416             raise ExtractorError(u'Unable to download video webpage: %s' % compat_str(err))
417
418         video_webpage = video_webpage_bytes.decode('utf-8', 'ignore')
419
420         # Attempt to extract SWF player URL
421         mobj = re.search(r'swfConfig.*?"(http:\\/\\/.*?watch.*?-.*?\.swf)"', video_webpage)
422         if mobj is not None:
423             player_url = re.sub(r'\\(.)', r'\1', mobj.group(1))
424         else:
425             player_url = None
426
427         # Get video info
428         self.report_video_info_webpage_download(video_id)
429         if re.search(r'player-age-gate-content">', video_webpage) is not None:
430             self.report_age_confirmation()
431             age_gate = True
432             # We simulate the access to the video from www.youtube.com/v/{video_id}
433             # this can be viewed without login into Youtube
434             data = compat_urllib_parse.urlencode({'video_id': video_id,
435                                                   'el': 'embedded',
436                                                   'gl': 'US',
437                                                   'hl': 'en',
438                                                   'eurl': 'https://youtube.googleapis.com/v/' + video_id,
439                                                   'asv': 3,
440                                                   'sts':'1588',
441                                                   })
442             video_info_url = 'https://www.youtube.com/get_video_info?' + data
443             video_info_webpage = self._download_webpage(video_info_url, video_id,
444                                     note=False,
445                                     errnote='unable to download video info webpage')
446             video_info = compat_parse_qs(video_info_webpage)
447         else:
448             age_gate = False
449             for el_type in ['&el=embedded', '&el=detailpage', '&el=vevo', '']:
450                 video_info_url = ('https://www.youtube.com/get_video_info?&video_id=%s%s&ps=default&eurl=&gl=US&hl=en'
451                         % (video_id, el_type))
452                 video_info_webpage = self._download_webpage(video_info_url, video_id,
453                                         note=False,
454                                         errnote='unable to download video info webpage')
455                 video_info = compat_parse_qs(video_info_webpage)
456                 if 'token' in video_info:
457                     break
458         if 'token' not in video_info:
459             if 'reason' in video_info:
460                 raise ExtractorError(u'YouTube said: %s' % video_info['reason'][0], expected=True)
461             else:
462                 raise ExtractorError(u'"token" parameter not in video info for unknown reason')
463
464         # Check for "rental" videos
465         if 'ypc_video_rental_bar_text' in video_info and 'author' not in video_info:
466             raise ExtractorError(u'"rental" videos not supported')
467
468         # Start extracting information
469         self.report_information_extraction(video_id)
470
471         # uploader
472         if 'author' not in video_info:
473             raise ExtractorError(u'Unable to extract uploader name')
474         video_uploader = compat_urllib_parse.unquote_plus(video_info['author'][0])
475
476         # uploader_id
477         video_uploader_id = None
478         mobj = re.search(r'<link itemprop="url" href="http://www.youtube.com/(?:user|channel)/([^"]+)">', video_webpage)
479         if mobj is not None:
480             video_uploader_id = mobj.group(1)
481         else:
482             self._downloader.report_warning(u'unable to extract uploader nickname')
483
484         # title
485         if 'title' not in video_info:
486             raise ExtractorError(u'Unable to extract video title')
487         video_title = compat_urllib_parse.unquote_plus(video_info['title'][0])
488
489         # thumbnail image
490         # We try first to get a high quality image:
491         m_thumb = re.search(r'<span itemprop="thumbnail".*?href="(.*?)">',
492                             video_webpage, re.DOTALL)
493         if m_thumb is not None:
494             video_thumbnail = m_thumb.group(1)
495         elif 'thumbnail_url' not in video_info:
496             self._downloader.report_warning(u'unable to extract video thumbnail')
497             video_thumbnail = ''
498         else:   # don't panic if we can't find it
499             video_thumbnail = compat_urllib_parse.unquote_plus(video_info['thumbnail_url'][0])
500
501         # upload date
502         upload_date = None
503         mobj = re.search(r'id="eow-date.*?>(.*?)</span>', video_webpage, re.DOTALL)
504         if mobj is not None:
505             upload_date = ' '.join(re.sub(r'[/,-]', r' ', mobj.group(1)).split())
506             upload_date = unified_strdate(upload_date)
507
508         # description
509         video_description = get_element_by_id("eow-description", video_webpage)
510         if video_description:
511             video_description = clean_html(video_description)
512         else:
513             fd_mobj = re.search(r'<meta name="description" content="([^"]+)"', video_webpage)
514             if fd_mobj:
515                 video_description = unescapeHTML(fd_mobj.group(1))
516             else:
517                 video_description = u''
518
519         # subtitles
520         video_subtitles = None
521
522         if self._downloader.params.get('writesubtitles', False):
523             video_subtitles = self._extract_subtitle(video_id)
524             if video_subtitles:
525                 (sub_error, sub_lang, sub) = video_subtitles[0]
526                 if sub_error:
527                     self._downloader.report_warning(sub_error)
528         
529         if self._downloader.params.get('writeautomaticsub', False):
530             video_subtitles = self._request_automatic_caption(video_id, video_webpage)
531             (sub_error, sub_lang, sub) = video_subtitles[0]
532             if sub_error:
533                 self._downloader.report_warning(sub_error)
534
535         if self._downloader.params.get('allsubtitles', False):
536             video_subtitles = self._extract_all_subtitles(video_id)
537             for video_subtitle in video_subtitles:
538                 (sub_error, sub_lang, sub) = video_subtitle
539                 if sub_error:
540                     self._downloader.report_warning(sub_error)
541
542         if self._downloader.params.get('listsubtitles', False):
543             self._list_available_subtitles(video_id)
544             return
545
546         if 'length_seconds' not in video_info:
547             self._downloader.report_warning(u'unable to extract video duration')
548             video_duration = ''
549         else:
550             video_duration = compat_urllib_parse.unquote_plus(video_info['length_seconds'][0])
551
552         # Decide which formats to download
553         req_format = self._downloader.params.get('format', None)
554
555         try:
556             mobj = re.search(r';ytplayer.config = ({.*?});', video_webpage)
557             if not mobj:
558                 raise ValueError('Could not find vevo ID')
559             info = json.loads(mobj.group(1))
560             args = info['args']
561             # Easy way to know if the 's' value is in url_encoded_fmt_stream_map
562             # this signatures are encrypted
563             m_s = re.search(r'[&,]s=', args['url_encoded_fmt_stream_map'])
564             if m_s is not None:
565                 self.to_screen(u'%s: Encrypted signatures detected.' % video_id)
566                 video_info['url_encoded_fmt_stream_map'] = [args['url_encoded_fmt_stream_map']]
567         except ValueError:
568             pass
569
570         if 'conn' in video_info and video_info['conn'][0].startswith('rtmp'):
571             self.report_rtmp_download()
572             video_url_list = [(None, video_info['conn'][0])]
573         elif 'url_encoded_fmt_stream_map' in video_info and len(video_info['url_encoded_fmt_stream_map']) >= 1:
574             if 'rtmpe%3Dyes' in video_info['url_encoded_fmt_stream_map'][0]:
575                 raise ExtractorError('rtmpe downloads are not supported, see https://github.com/rg3/youtube-dl/issues/343 for more information.', expected=True)
576             url_map = {}
577             for url_data_str in video_info['url_encoded_fmt_stream_map'][0].split(','):
578                 url_data = compat_parse_qs(url_data_str)
579                 if 'itag' in url_data and 'url' in url_data:
580                     url = url_data['url'][0]
581                     if 'sig' in url_data:
582                         url += '&signature=' + url_data['sig'][0]
583                     elif 's' in url_data:
584                         if self._downloader.params.get('verbose'):
585                             s = url_data['s'][0]
586                             if age_gate:
587                                 player_version = self._search_regex(r'ad3-(.+?)\.swf',
588                                     video_info['ad3_module'][0], 'flash player',
589                                     fatal=False)
590                                 player = 'flash player %s' % player_version
591                             else:
592                                 player = u'html5 player %s' % self._search_regex(r'html5player-(.+?)\.js', video_webpage,
593                                     'html5 player', fatal=False)
594                             parts_sizes = u'.'.join(compat_str(len(part)) for part in s.split('.'))
595                             self.to_screen(u'encrypted signature length %d (%s), itag %s, %s' %
596                                 (len(s), parts_sizes, url_data['itag'][0], player))
597                         signature = self._decrypt_signature(url_data['s'][0])
598                         url += '&signature=' + signature
599                     if 'ratebypass' not in url:
600                         url += '&ratebypass=yes'
601                     url_map[url_data['itag'][0]] = url
602
603             format_limit = self._downloader.params.get('format_limit', None)
604             available_formats = self._available_formats_prefer_free if self._downloader.params.get('prefer_free_formats', False) else self._available_formats
605             if format_limit is not None and format_limit in available_formats:
606                 format_list = available_formats[available_formats.index(format_limit):]
607             else:
608                 format_list = available_formats
609             existing_formats = [x for x in format_list if x in url_map]
610             if len(existing_formats) == 0:
611                 raise ExtractorError(u'no known formats available for video')
612             if self._downloader.params.get('listformats', None):
613                 self._print_formats(existing_formats)
614                 return
615             if req_format is None or req_format == 'best':
616                 video_url_list = [(existing_formats[0], url_map[existing_formats[0]])] # Best quality
617             elif req_format == 'worst':
618                 video_url_list = [(existing_formats[-1], url_map[existing_formats[-1]])] # worst quality
619             elif req_format in ('-1', 'all'):
620                 video_url_list = [(f, url_map[f]) for f in existing_formats] # All formats
621             else:
622                 # Specific formats. We pick the first in a slash-delimeted sequence.
623                 # For example, if '1/2/3/4' is requested and '2' and '4' are available, we pick '2'.
624                 req_formats = req_format.split('/')
625                 video_url_list = None
626                 for rf in req_formats:
627                     if rf in url_map:
628                         video_url_list = [(rf, url_map[rf])]
629                         break
630                 if video_url_list is None:
631                     raise ExtractorError(u'requested format not available')
632         else:
633             raise ExtractorError(u'no conn or url_encoded_fmt_stream_map information found in video info')
634
635         results = []
636         for format_param, video_real_url in video_url_list:
637             # Extension
638             video_extension = self._video_extensions.get(format_param, 'flv')
639
640             video_format = '{0} - {1}'.format(format_param if format_param else video_extension,
641                                               self._video_dimensions.get(format_param, '???'))
642
643             results.append({
644                 'id':       video_id,
645                 'url':      video_real_url,
646                 'uploader': video_uploader,
647                 'uploader_id': video_uploader_id,
648                 'upload_date':  upload_date,
649                 'title':    video_title,
650                 'ext':      video_extension,
651                 'format':   video_format,
652                 'thumbnail':    video_thumbnail,
653                 'description':  video_description,
654                 'player_url':   player_url,
655                 'subtitles':    video_subtitles,
656                 'duration':     video_duration
657             })
658         return results
659
660 class YoutubePlaylistIE(InfoExtractor):
661     IE_DESC = u'YouTube.com playlists'
662     _VALID_URL = r"""(?:
663                         (?:https?://)?
664                         (?:\w+\.)?
665                         youtube\.com/
666                         (?:
667                            (?:course|view_play_list|my_playlists|artist|playlist|watch)
668                            \? (?:.*?&)*? (?:p|a|list)=
669                         |  p/
670                         )
671                         ((?:PL|EC|UU)?[0-9A-Za-z-_]{10,})
672                         .*
673                      |
674                         ((?:PL|EC|UU)[0-9A-Za-z-_]{10,})
675                      )"""
676     _TEMPLATE_URL = 'https://gdata.youtube.com/feeds/api/playlists/%s?max-results=%i&start-index=%i&v=2&alt=json&safeSearch=none'
677     _MAX_RESULTS = 50
678     IE_NAME = u'youtube:playlist'
679
680     @classmethod
681     def suitable(cls, url):
682         """Receives a URL and returns True if suitable for this IE."""
683         return re.match(cls._VALID_URL, url, re.VERBOSE) is not None
684
685     def _real_extract(self, url):
686         # Extract playlist id
687         mobj = re.match(self._VALID_URL, url, re.VERBOSE)
688         if mobj is None:
689             raise ExtractorError(u'Invalid URL: %s' % url)
690
691         # Download playlist videos from API
692         playlist_id = mobj.group(1) or mobj.group(2)
693         page_num = 1
694         videos = []
695
696         while True:
697             url = self._TEMPLATE_URL % (playlist_id, self._MAX_RESULTS, self._MAX_RESULTS * (page_num - 1) + 1)
698             page = self._download_webpage(url, playlist_id, u'Downloading page #%s' % page_num)
699
700             try:
701                 response = json.loads(page)
702             except ValueError as err:
703                 raise ExtractorError(u'Invalid JSON in API response: ' + compat_str(err))
704
705             if 'feed' not in response:
706                 raise ExtractorError(u'Got a malformed response from YouTube API')
707             playlist_title = response['feed']['title']['$t']
708             if 'entry' not in response['feed']:
709                 # Number of videos is a multiple of self._MAX_RESULTS
710                 break
711
712             for entry in response['feed']['entry']:
713                 index = entry['yt$position']['$t']
714                 if 'media$group' in entry and 'media$player' in entry['media$group']:
715                     videos.append((index, entry['media$group']['media$player']['url']))
716
717             if len(response['feed']['entry']) < self._MAX_RESULTS:
718                 break
719             page_num += 1
720
721         videos = [v[1] for v in sorted(videos)]
722
723         url_results = [self.url_result(vurl, 'Youtube') for vurl in videos]
724         return [self.playlist_result(url_results, playlist_id, playlist_title)]
725
726
727 class YoutubeChannelIE(InfoExtractor):
728     IE_DESC = u'YouTube.com channels'
729     _VALID_URL = r"^(?:https?://)?(?:youtu\.be|(?:\w+\.)?youtube(?:-nocookie)?\.com)/channel/([0-9A-Za-z_-]+)"
730     _TEMPLATE_URL = 'http://www.youtube.com/channel/%s/videos?sort=da&flow=list&view=0&page=%s&gl=US&hl=en'
731     _MORE_PAGES_INDICATOR = 'yt-uix-load-more'
732     _MORE_PAGES_URL = 'http://www.youtube.com/channel_ajax?action_load_more_videos=1&flow=list&paging=%s&view=0&sort=da&channel_id=%s'
733     IE_NAME = u'youtube:channel'
734
735     def extract_videos_from_page(self, page):
736         ids_in_page = []
737         for mobj in re.finditer(r'href="/watch\?v=([0-9A-Za-z_-]+)&?', page):
738             if mobj.group(1) not in ids_in_page:
739                 ids_in_page.append(mobj.group(1))
740         return ids_in_page
741
742     def _real_extract(self, url):
743         # Extract channel id
744         mobj = re.match(self._VALID_URL, url)
745         if mobj is None:
746             raise ExtractorError(u'Invalid URL: %s' % url)
747
748         # Download channel page
749         channel_id = mobj.group(1)
750         video_ids = []
751         pagenum = 1
752
753         url = self._TEMPLATE_URL % (channel_id, pagenum)
754         page = self._download_webpage(url, channel_id,
755                                       u'Downloading page #%s' % pagenum)
756
757         # Extract video identifiers
758         ids_in_page = self.extract_videos_from_page(page)
759         video_ids.extend(ids_in_page)
760
761         # Download any subsequent channel pages using the json-based channel_ajax query
762         if self._MORE_PAGES_INDICATOR in page:
763             while True:
764                 pagenum = pagenum + 1
765
766                 url = self._MORE_PAGES_URL % (pagenum, channel_id)
767                 page = self._download_webpage(url, channel_id,
768                                               u'Downloading page #%s' % pagenum)
769
770                 page = json.loads(page)
771
772                 ids_in_page = self.extract_videos_from_page(page['content_html'])
773                 video_ids.extend(ids_in_page)
774
775                 if self._MORE_PAGES_INDICATOR  not in page['load_more_widget_html']:
776                     break
777
778         self._downloader.to_screen(u'[youtube] Channel %s: Found %i videos' % (channel_id, len(video_ids)))
779
780         urls = ['http://www.youtube.com/watch?v=%s' % id for id in video_ids]
781         url_entries = [self.url_result(eurl, 'Youtube') for eurl in urls]
782         return [self.playlist_result(url_entries, channel_id)]
783
784
785 class YoutubeUserIE(InfoExtractor):
786     IE_DESC = u'YouTube.com user videos (URL or "ytuser" keyword)'
787     _VALID_URL = r'(?:(?:(?:https?://)?(?:\w+\.)?youtube\.com/user/)|ytuser:)([A-Za-z0-9_-]+)'
788     _TEMPLATE_URL = 'http://gdata.youtube.com/feeds/api/users/%s'
789     _GDATA_PAGE_SIZE = 50
790     _GDATA_URL = 'http://gdata.youtube.com/feeds/api/users/%s/uploads?max-results=%d&start-index=%d'
791     _VIDEO_INDICATOR = r'/watch\?v=(.+?)[\<&]'
792     IE_NAME = u'youtube:user'
793
794     def _real_extract(self, url):
795         # Extract username
796         mobj = re.match(self._VALID_URL, url)
797         if mobj is None:
798             raise ExtractorError(u'Invalid URL: %s' % url)
799
800         username = mobj.group(1)
801
802         # Download video ids using YouTube Data API. Result size per
803         # query is limited (currently to 50 videos) so we need to query
804         # page by page until there are no video ids - it means we got
805         # all of them.
806
807         video_ids = []
808         pagenum = 0
809
810         while True:
811             start_index = pagenum * self._GDATA_PAGE_SIZE + 1
812
813             gdata_url = self._GDATA_URL % (username, self._GDATA_PAGE_SIZE, start_index)
814             page = self._download_webpage(gdata_url, username,
815                                           u'Downloading video ids from %d to %d' % (start_index, start_index + self._GDATA_PAGE_SIZE))
816
817             # Extract video identifiers
818             ids_in_page = []
819
820             for mobj in re.finditer(self._VIDEO_INDICATOR, page):
821                 if mobj.group(1) not in ids_in_page:
822                     ids_in_page.append(mobj.group(1))
823
824             video_ids.extend(ids_in_page)
825
826             # A little optimization - if current page is not
827             # "full", ie. does not contain PAGE_SIZE video ids then
828             # we can assume that this page is the last one - there
829             # are no more ids on further pages - no need to query
830             # again.
831
832             if len(ids_in_page) < self._GDATA_PAGE_SIZE:
833                 break
834
835             pagenum += 1
836
837         urls = ['http://www.youtube.com/watch?v=%s' % video_id for video_id in video_ids]
838         url_results = [self.url_result(rurl, 'Youtube') for rurl in urls]
839         return [self.playlist_result(url_results, playlist_title = username)]
840
841 class YoutubeSearchIE(SearchInfoExtractor):
842     IE_DESC = u'YouTube.com searches'
843     _API_URL = 'https://gdata.youtube.com/feeds/api/videos?q=%s&start-index=%i&max-results=50&v=2&alt=jsonc'
844     _MAX_RESULTS = 1000
845     IE_NAME = u'youtube:search'
846     _SEARCH_KEY = 'ytsearch'
847
848     def report_download_page(self, query, pagenum):
849         """Report attempt to download search page with given number."""
850         self._downloader.to_screen(u'[youtube] query "%s": Downloading page %s' % (query, pagenum))
851
852     def _get_n_results(self, query, n):
853         """Get a specified number of results for a query"""
854
855         video_ids = []
856         pagenum = 0
857         limit = n
858
859         while (50 * pagenum) < limit:
860             self.report_download_page(query, pagenum+1)
861             result_url = self._API_URL % (compat_urllib_parse.quote_plus(query), (50*pagenum)+1)
862             request = compat_urllib_request.Request(result_url)
863             try:
864                 data = compat_urllib_request.urlopen(request).read().decode('utf-8')
865             except (compat_urllib_error.URLError, compat_http_client.HTTPException, socket.error) as err:
866                 raise ExtractorError(u'Unable to download API page: %s' % compat_str(err))
867             api_response = json.loads(data)['data']
868
869             if not 'items' in api_response:
870                 raise ExtractorError(u'[youtube] No video results')
871
872             new_ids = list(video['id'] for video in api_response['items'])
873             video_ids += new_ids
874
875             limit = min(n, api_response['totalItems'])
876             pagenum += 1
877
878         if len(video_ids) > n:
879             video_ids = video_ids[:n]
880         videos = [self.url_result('http://www.youtube.com/watch?v=%s' % id, 'Youtube') for id in video_ids]
881         return self.playlist_result(videos, query)
882
883
884 class YoutubeShowIE(InfoExtractor):
885     IE_DESC = u'YouTube.com (multi-season) shows'
886     _VALID_URL = r'https?://www\.youtube\.com/show/(.*)'
887     IE_NAME = u'youtube:show'
888
889     def _real_extract(self, url):
890         mobj = re.match(self._VALID_URL, url)
891         show_name = mobj.group(1)
892         webpage = self._download_webpage(url, show_name, u'Downloading show webpage')
893         # There's one playlist for each season of the show
894         m_seasons = list(re.finditer(r'href="(/playlist\?list=.*?)"', webpage))
895         self.to_screen(u'%s: Found %s seasons' % (show_name, len(m_seasons)))
896         return [self.url_result('https://www.youtube.com' + season.group(1), 'YoutubePlaylist') for season in m_seasons]
897
898
899 class YoutubeSubscriptionsIE(YoutubeIE):
900     """It's a subclass of YoutubeIE because we need to login"""
901     IE_DESC = u'YouTube.com subscriptions feed, "ytsubs" keyword(requires authentication)'
902     _VALID_URL = r'https?://www\.youtube\.com/feed/subscriptions|:ytsubs(?:criptions)?'
903     IE_NAME = u'youtube:subscriptions'
904     _FEED_TEMPLATE = 'http://www.youtube.com/feed_ajax?action_load_system_feed=1&feed_name=subscriptions&paging=%s'
905     _PAGING_STEP = 30
906
907     # Overwrite YoutubeIE properties we don't want
908     _TESTS = []
909     @classmethod
910     def suitable(cls, url):
911         return re.match(cls._VALID_URL, url) is not None
912
913     def _real_initialize(self):
914         (username, password) = self._get_login_info()
915         if username is None:
916             raise ExtractorError(u'No login info available, needed for downloading the Youtube subscriptions.', expected=True)
917         super(YoutubeSubscriptionsIE, self)._real_initialize()
918
919     def _real_extract(self, url):
920         feed_entries = []
921         # The step argument is available only in 2.7 or higher
922         for i in itertools.count(0):
923             paging = i*self._PAGING_STEP
924             info = self._download_webpage(self._FEED_TEMPLATE % paging, 'feed',
925                                           u'Downloading page %s' % i)
926             info = json.loads(info)
927             feed_html = info['feed_html']
928             m_ids = re.finditer(r'"/watch\?v=(.*?)"', feed_html)
929             ids = orderedSet(m.group(1) for m in m_ids)
930             feed_entries.extend(self.url_result(id, 'Youtube') for id in ids)
931             if info['paging'] is None:
932                 break
933         return self.playlist_result(feed_entries, playlist_title='Youtube Subscriptions')