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