8 from .common
import InfoExtractor
, SearchInfoExtractor
14 compat_urllib_request
,
25 class YoutubeIE(InfoExtractor
):
26 IE_DESC
= u
'YouTube.com'
29 (?:https?://)? # http(s):// (optional)
30 (?:youtu\.be/|(?:\w+\.)?youtube(?:-nocookie)?\.com/|
31 tube\.majestyc\.net/) # the various hostnames, with wildcard subdomains
32 (?:.*?\#/)? # handle anchor (#/) redirect urls
33 (?: # the various things that can precede the ID:
34 (?:(?:v|embed|e)/) # v/ or embed/ or e/
35 |(?: # or the v= param in all its forms
36 (?:watch|movie(?:_popup)?(?:\.php)?)? # preceding watch(_popup|.php) or nothing (like /?v=xxxx)
37 (?:\?|\#!?) # the params delimiter ? or # or #!
38 (?:.*?&)? # any other preceding param (like /?s=tuff&v=xxxx)
41 )? # optional -> youtube.com/xxxx is OK
42 )? # all until now is optional -> you can pass the naked ID
43 ([0-9A-Za-z_-]+) # here is it! the YouTube video ID
44 (?(1).+)? # if we found the ID, everything can follow
46 _LANG_URL
= r
'https://www.youtube.com/?hl=en&persist_hl=1&gl=US&persist_gl=1&opt_out_ackd=1'
47 _LOGIN_URL
= 'https://accounts.google.com/ServiceLogin'
48 _AGE_URL
= 'http://www.youtube.com/verify_age?next_url=/&gl=US&hl=en'
49 _NEXT_URL_RE
= r
'[\?&]next_url=([^&]+)'
50 _NETRC_MACHINE
= 'youtube'
51 # Listed in order of quality
52 _available_formats
= ['38', '37', '46', '22', '45', '35', '44', '34', '18', '43', '6', '5', '17', '13']
53 _available_formats_prefer_free
= ['38', '46', '37', '45', '22', '44', '35', '43', '34', '18', '6', '5', '17', '13']
85 u
"url": u
"http://www.youtube.com/watch?v=BaW_jenozKc",
86 u
"file": u
"BaW_jenozKc.mp4",
88 u
"title": u
"youtube-dl test video \"'/\\ä↭𝕐",
89 u
"uploader": u
"Philipp Hagemeister",
90 u
"uploader_id": u
"phihag",
91 u
"upload_date": u
"20121002",
92 u
"description": u
"test chars: \"'/\\ä↭𝕐\n\nThis is a test video for youtube-dl.\n\nFor more information, contact phihag@phihag.de ."
96 u
"url": u
"http://www.youtube.com/watch?v=1ltcDfZMA3U",
97 u
"file": u
"1ltcDfZMA3U.flv",
98 u
"note": u
"Test VEVO video (#897)",
100 u
"upload_date": u
"20070518",
101 u
"title": u
"Maps - It Will Find You",
102 u
"description": u
"Music video by Maps performing It Will Find You.",
103 u
"uploader": u
"MuteUSA",
104 u
"uploader_id": u
"MuteUSA"
108 u
"url": u
"http://www.youtube.com/watch?v=UxxajLWwzqY",
109 u
"file": u
"UxxajLWwzqY.mp4",
110 u
"note": u
"Test generic use_cipher_signature video (#897)",
112 u
"upload_date": u
"20120506",
113 u
"title": u
"Icona Pop - I Love It (feat. Charli XCX) [OFFICIAL VIDEO]",
114 u
"description": u
"md5:b085c9804f5ab69f4adea963a2dceb3c",
115 u
"uploader": u
"IconaPop",
116 u
"uploader_id": u
"IconaPop"
123 def suitable(cls
, url
):
124 """Receives a URL and returns True if suitable for this IE."""
125 if YoutubePlaylistIE
.suitable(url
): return False
126 return re
.match(cls
._VALID
_URL
, url
, re
.VERBOSE
) is not None
128 def report_lang(self
):
129 """Report attempt to set language."""
130 self
.to_screen(u
'Setting language')
132 def report_login(self
):
133 """Report attempt to log in."""
134 self
.to_screen(u
'Logging in')
136 def report_video_webpage_download(self
, video_id
):
137 """Report attempt to download video webpage."""
138 self
.to_screen(u
'%s: Downloading video webpage' % video_id
)
140 def report_video_info_webpage_download(self
, video_id
):
141 """Report attempt to download video info webpage."""
142 self
.to_screen(u
'%s: Downloading video info webpage' % video_id
)
144 def report_video_subtitles_download(self
, video_id
):
145 """Report attempt to download video info webpage."""
146 self
.to_screen(u
'%s: Checking available subtitles' % video_id
)
148 def report_video_subtitles_request(self
, video_id
, sub_lang
, format
):
149 """Report attempt to download video info webpage."""
150 self
.to_screen(u
'%s: Downloading video subtitles for %s.%s' % (video_id
, sub_lang
, format
))
152 def report_video_subtitles_available(self
, video_id
, sub_lang_list
):
153 """Report available subtitles."""
154 sub_lang
= ",".join(list(sub_lang_list
.keys()))
155 self
.to_screen(u
'%s: Available subtitles for video: %s' % (video_id
, sub_lang
))
157 def report_information_extraction(self
, video_id
):
158 """Report attempt to extract video information."""
159 self
.to_screen(u
'%s: Extracting video information' % video_id
)
161 def report_unavailable_format(self
, video_id
, format
):
162 """Report extracted video URL."""
163 self
.to_screen(u
'%s: Format %s not available' % (video_id
, format
))
165 def report_rtmp_download(self
):
166 """Indicate the download will use the RTMP protocol."""
167 self
.to_screen(u
'RTMP download detected')
169 def _decrypt_signature(self
, s
):
170 """Turn the encrypted s field into a working signature"""
173 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]
175 return s
[62] + s
[82:62:-1] + s
[83] + s
[61:52:-1] + s
[0] + s
[51:2:-1]
177 return s
[2:63] + s
[82] + s
[64:82] + s
[63]
179 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]
181 return s
[83:36:-1] + s
[2] + s
[35:26:-1] + s
[3] + s
[25:3:-1] + s
[26]
183 return s
[52] + s
[81:55:-1] + s
[2] + s
[54:52:-1] + s
[82] + s
[51:36:-1] + s
[55] + s
[35:2:-1] + s
[36]
185 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]
188 raise ExtractorError(u
'Unable to decrypt signature, key length %d not supported; retrying might work' % (len(s
)))
190 def _get_available_subtitles(self
, video_id
):
191 self
.report_video_subtitles_download(video_id
)
192 request
= compat_urllib_request
.Request('http://video.google.com/timedtext?hl=en&type=list&v=%s' % video_id
)
194 sub_list
= compat_urllib_request
.urlopen(request
).read().decode('utf-8')
195 except (compat_urllib_error
.URLError
, compat_http_client
.HTTPException
, socket
.error
) as err
:
196 return (u
'unable to download video subtitles: %s' % compat_str(err
), None)
197 sub_lang_list
= re
.findall(r
'name="([^"]*)"[^>]+lang_code="([\w\-]+)"', sub_list
)
198 sub_lang_list
= dict((l
[1], l
[0]) for l
in sub_lang_list
)
199 if not sub_lang_list
:
200 return (u
'video doesn\'t have subtitles', None)
203 def _list_available_subtitles(self
, video_id
):
204 sub_lang_list
= self
._get
_available
_subtitles
(video_id
)
205 self
.report_video_subtitles_available(video_id
, sub_lang_list
)
207 def _request_subtitle(self
, sub_lang
, sub_name
, video_id
, format
):
210 (error_message, sub_lang, sub)
212 self
.report_video_subtitles_request(video_id
, sub_lang
, format
)
213 params
= compat_urllib_parse
.urlencode({
219 url
= 'http://www.youtube.com/api/timedtext?' + params
221 sub
= compat_urllib_request
.urlopen(url
).read().decode('utf-8')
222 except (compat_urllib_error
.URLError
, compat_http_client
.HTTPException
, socket
.error
) as err
:
223 return (u
'unable to download video subtitles: %s' % compat_str(err
), None, None)
225 return (u
'Did not fetch video subtitles', None, None)
226 return (None, sub_lang
, sub
)
228 def _request_automatic_caption(self
, video_id
, webpage
):
229 """We need the webpage for getting the captions url, pass it as an
230 argument to speed up the process."""
231 sub_lang
= self
._downloader
.params
.get('subtitleslang') or 'en'
232 sub_format
= self
._downloader
.params
.get('subtitlesformat')
233 self
.to_screen(u
'%s: Looking for automatic captions' % video_id
)
234 mobj
= re
.search(r
';ytplayer.config = ({.*?});', webpage
)
235 err_msg
= u
'Couldn\'t find automatic captions for "%s"' % sub_lang
237 return [(err_msg
, None, None)]
238 player_config
= json
.loads(mobj
.group(1))
240 args
= player_config
[u
'args']
241 caption_url
= args
[u
'ttsurl']
242 timestamp
= args
[u
'timestamp']
243 params
= compat_urllib_parse
.urlencode({
250 subtitles_url
= caption_url
+ '&' + params
251 sub
= self
._download
_webpage
(subtitles_url
, video_id
, u
'Downloading automatic captions')
252 return [(None, sub_lang
, sub
)]
254 return [(err_msg
, None, None)]
256 def _extract_subtitle(self
, video_id
):
258 Return a list with a tuple:
259 [(error_message, sub_lang, sub)]
261 sub_lang_list
= self
._get
_available
_subtitles
(video_id
)
262 sub_format
= self
._downloader
.params
.get('subtitlesformat')
263 if isinstance(sub_lang_list
,tuple): #There was some error, it didn't get the available subtitles
264 return [(sub_lang_list
[0], None, None)]
265 if self
._downloader
.params
.get('subtitleslang', False):
266 sub_lang
= self
._downloader
.params
.get('subtitleslang')
267 elif 'en' in sub_lang_list
:
270 sub_lang
= list(sub_lang_list
.keys())[0]
271 if not sub_lang
in sub_lang_list
:
272 return [(u
'no closed captions found in the specified language "%s"' % sub_lang
, None, None)]
274 subtitle
= self
._request
_subtitle
(sub_lang
, sub_lang_list
[sub_lang
].encode('utf-8'), video_id
, sub_format
)
277 def _extract_all_subtitles(self
, video_id
):
278 sub_lang_list
= self
._get
_available
_subtitles
(video_id
)
279 sub_format
= self
._downloader
.params
.get('subtitlesformat')
280 if isinstance(sub_lang_list
,tuple): #There was some error, it didn't get the available subtitles
281 return [(sub_lang_list
[0], None, None)]
283 for sub_lang
in sub_lang_list
:
284 subtitle
= self
._request
_subtitle
(sub_lang
, sub_lang_list
[sub_lang
].encode('utf-8'), video_id
, sub_format
)
285 subtitles
.append(subtitle
)
288 def _print_formats(self
, formats
):
289 print('Available formats:')
291 print('%s\t:\t%s\t[%s]' %(x
, self
._video
_extensions
.get(x
, 'flv'), self
._video
_dimensions
.get(x
, '???')))
293 def _real_initialize(self
):
294 if self
._downloader
is None:
299 downloader_params
= self
._downloader
.params
301 # Attempt to use provided username and password or .netrc data
302 if downloader_params
.get('username', None) is not None:
303 username
= downloader_params
['username']
304 password
= downloader_params
['password']
305 elif downloader_params
.get('usenetrc', False):
307 info
= netrc
.netrc().authenticators(self
._NETRC
_MACHINE
)
312 raise netrc
.NetrcParseError('No authenticators for %s' % self
._NETRC
_MACHINE
)
313 except (IOError, netrc
.NetrcParseError
) as err
:
314 self
._downloader
.report_warning(u
'parsing .netrc: %s' % compat_str(err
))
318 request
= compat_urllib_request
.Request(self
._LANG
_URL
)
321 compat_urllib_request
.urlopen(request
).read()
322 except (compat_urllib_error
.URLError
, compat_http_client
.HTTPException
, socket
.error
) as err
:
323 self
._downloader
.report_warning(u
'unable to set language: %s' % compat_str(err
))
326 # No authentication to be performed
330 request
= compat_urllib_request
.Request(self
._LOGIN
_URL
)
332 login_page
= compat_urllib_request
.urlopen(request
).read().decode('utf-8')
333 except (compat_urllib_error
.URLError
, compat_http_client
.HTTPException
, socket
.error
) as err
:
334 self
._downloader
.report_warning(u
'unable to fetch login page: %s' % compat_str(err
))
339 match
= re
.search(re
.compile(r
'<input.+?name="GALX".+?value="(.+?)"', re
.DOTALL
), login_page
)
341 galx
= match
.group(1)
343 match
= re
.search(re
.compile(r
'<input.+?name="dsh".+?value="(.+?)"', re
.DOTALL
), login_page
)
349 u
'continue': u
'https://www.youtube.com/signin?action_handle_signin=true&feature=sign_in_button&hl=en_US&nomobiletemp=1',
353 u
'PersistentCookie': u
'yes',
355 u
'bgresponse': u
'js_disabled',
356 u
'checkConnection': u
'',
357 u
'checkedDomains': u
'youtube',
363 u
'signIn': u
'Sign in',
365 u
'service': u
'youtube',
369 # Convert to UTF-8 *before* urlencode because Python 2.x's urlencode
371 login_form
= dict((k
.encode('utf-8'), v
.encode('utf-8')) for k
,v
in login_form_strs
.items())
372 login_data
= compat_urllib_parse
.urlencode(login_form
).encode('ascii')
373 request
= compat_urllib_request
.Request(self
._LOGIN
_URL
, login_data
)
376 login_results
= compat_urllib_request
.urlopen(request
).read().decode('utf-8')
377 if re
.search(r
'(?i)<form[^>]* id="gaia_loginform"', login_results
) is not None:
378 self
._downloader
.report_warning(u
'unable to log in: bad username or password')
380 except (compat_urllib_error
.URLError
, compat_http_client
.HTTPException
, socket
.error
) as err
:
381 self
._downloader
.report_warning(u
'unable to log in: %s' % compat_str(err
))
387 'action_confirm': 'Confirm',
389 request
= compat_urllib_request
.Request(self
._AGE
_URL
, compat_urllib_parse
.urlencode(age_form
))
391 self
.report_age_confirmation()
392 compat_urllib_request
.urlopen(request
).read().decode('utf-8')
393 except (compat_urllib_error
.URLError
, compat_http_client
.HTTPException
, socket
.error
) as err
:
394 raise ExtractorError(u
'Unable to confirm age: %s' % compat_str(err
))
396 def _extract_id(self
, url
):
397 mobj
= re
.match(self
._VALID
_URL
, url
, re
.VERBOSE
)
399 raise ExtractorError(u
'Invalid URL: %s' % url
)
400 video_id
= mobj
.group(2)
403 def _real_extract(self
, url
):
404 if re
.match(r
'(?:https?://)?[^/]+/watch\?feature=[a-z_]+$', url
):
405 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 ).')
407 # Extract original video URL from URL with redirection, like age verification, using next_url parameter
408 mobj
= re
.search(self
._NEXT
_URL
_RE
, url
)
410 url
= 'https://www.youtube.com/' + compat_urllib_parse
.unquote(mobj
.group(1)).lstrip('/')
411 video_id
= self
._extract
_id
(url
)
414 self
.report_video_webpage_download(video_id
)
415 url
= 'https://www.youtube.com/watch?v=%s&gl=US&hl=en&has_verified=1' % video_id
416 request
= compat_urllib_request
.Request(url
)
418 video_webpage_bytes
= compat_urllib_request
.urlopen(request
).read()
419 except (compat_urllib_error
.URLError
, compat_http_client
.HTTPException
, socket
.error
) as err
:
420 raise ExtractorError(u
'Unable to download video webpage: %s' % compat_str(err
))
422 video_webpage
= video_webpage_bytes
.decode('utf-8', 'ignore')
424 # Attempt to extract SWF player URL
425 mobj
= re
.search(r
'swfConfig.*?"(http:\\/\\/.*?watch.*?-.*?\.swf)"', video_webpage
)
427 player_url
= re
.sub(r
'\\(.)', r
'\1', mobj
.group(1))
432 self
.report_video_info_webpage_download(video_id
)
433 for el_type
in ['&el=embedded', '&el=detailpage', '&el=vevo', '']:
434 video_info_url
= ('https://www.youtube.com/get_video_info?&video_id=%s%s&ps=default&eurl=&gl=US&hl=en'
435 % (video_id
, el_type
))
436 video_info_webpage
= self
._download
_webpage
(video_info_url
, video_id
,
438 errnote
='unable to download video info webpage')
439 video_info
= compat_parse_qs(video_info_webpage
)
440 if 'token' in video_info
:
442 if 'token' not in video_info
:
443 if 'reason' in video_info
:
444 raise ExtractorError(u
'YouTube said: %s' % video_info
['reason'][0], expected
=True)
446 raise ExtractorError(u
'"token" parameter not in video info for unknown reason')
448 # Check for "rental" videos
449 if 'ypc_video_rental_bar_text' in video_info
and 'author' not in video_info
:
450 raise ExtractorError(u
'"rental" videos not supported')
452 # Start extracting information
453 self
.report_information_extraction(video_id
)
456 if 'author' not in video_info
:
457 raise ExtractorError(u
'Unable to extract uploader name')
458 video_uploader
= compat_urllib_parse
.unquote_plus(video_info
['author'][0])
461 video_uploader_id
= None
462 mobj
= re
.search(r
'<link itemprop="url" href="http://www.youtube.com/(?:user|channel)/([^"]+)">', video_webpage
)
464 video_uploader_id
= mobj
.group(1)
466 self
._downloader
.report_warning(u
'unable to extract uploader nickname')
469 if 'title' not in video_info
:
470 raise ExtractorError(u
'Unable to extract video title')
471 video_title
= compat_urllib_parse
.unquote_plus(video_info
['title'][0])
474 if 'thumbnail_url' not in video_info
:
475 self
._downloader
.report_warning(u
'unable to extract video thumbnail')
477 else: # don't panic if we can't find it
478 video_thumbnail
= compat_urllib_parse
.unquote_plus(video_info
['thumbnail_url'][0])
482 mobj
= re
.search(r
'id="eow-date.*?>(.*?)</span>', video_webpage
, re
.DOTALL
)
484 upload_date
= ' '.join(re
.sub(r
'[/,-]', r
' ', mobj
.group(1)).split())
485 upload_date
= unified_strdate(upload_date
)
488 video_description
= get_element_by_id("eow-description", video_webpage
)
489 if video_description
:
490 video_description
= clean_html(video_description
)
492 fd_mobj
= re
.search(r
'<meta name="description" content="([^"]+)"', video_webpage
)
494 video_description
= unescapeHTML(fd_mobj
.group(1))
496 video_description
= u
''
499 video_subtitles
= None
501 if self
._downloader
.params
.get('writesubtitles', False):
502 video_subtitles
= self
._extract
_subtitle
(video_id
)
504 (sub_error
, sub_lang
, sub
) = video_subtitles
[0]
506 self
._downloader
.report_warning(sub_error
)
508 if self
._downloader
.params
.get('writeautomaticsub', False):
509 video_subtitles
= self
._request
_automatic
_caption
(video_id
, video_webpage
)
510 (sub_error
, sub_lang
, sub
) = video_subtitles
[0]
512 self
._downloader
.report_warning(sub_error
)
514 if self
._downloader
.params
.get('allsubtitles', False):
515 video_subtitles
= self
._extract
_all
_subtitles
(video_id
)
516 for video_subtitle
in video_subtitles
:
517 (sub_error
, sub_lang
, sub
) = video_subtitle
519 self
._downloader
.report_warning(sub_error
)
521 if self
._downloader
.params
.get('listsubtitles', False):
522 self
._list
_available
_subtitles
(video_id
)
525 if 'length_seconds' not in video_info
:
526 self
._downloader
.report_warning(u
'unable to extract video duration')
529 video_duration
= compat_urllib_parse
.unquote_plus(video_info
['length_seconds'][0])
531 # Decide which formats to download
532 req_format
= self
._downloader
.params
.get('format', None)
535 mobj
= re
.search(r
';ytplayer.config = ({.*?});', video_webpage
)
537 raise ValueError('Could not find vevo ID')
538 info
= json
.loads(mobj
.group(1))
540 # Easy way to know if the 's' value is in url_encoded_fmt_stream_map
541 # this signatures are encrypted
542 m_s
= re
.search(r
'[&,]s=', args
['url_encoded_fmt_stream_map'])
544 self
.to_screen(u
'%s: Encrypted signatures detected.' % video_id
)
545 video_info
['url_encoded_fmt_stream_map'] = [args
['url_encoded_fmt_stream_map']]
549 if 'conn' in video_info
and video_info
['conn'][0].startswith('rtmp'):
550 self
.report_rtmp_download()
551 video_url_list
= [(None, video_info
['conn'][0])]
552 elif 'url_encoded_fmt_stream_map' in video_info
and len(video_info
['url_encoded_fmt_stream_map']) >= 1:
554 for url_data_str
in video_info
['url_encoded_fmt_stream_map'][0].split(','):
555 url_data
= compat_parse_qs(url_data_str
)
556 if 'itag' in url_data
and 'url' in url_data
:
557 url
= url_data
['url'][0]
558 if 'sig' in url_data
:
559 url
+= '&signature=' + url_data
['sig'][0]
560 elif 's' in url_data
:
561 if self
._downloader
.params
.get('verbose'):
563 player
= self
._search
_regex
(r
'html5player-(.+?)\.js', video_webpage
,
564 'html5 player', fatal
=False)
565 self
.to_screen('encrypted signature length %d (%d.%d), itag %s, html5 player %s' %
566 (len(s
), len(s
.split('.')[0]), len(s
.split('.')[1]), url_data
['itag'][0], player
))
567 signature
= self
._decrypt
_signature
(url_data
['s'][0])
568 url
+= '&signature=' + signature
569 if 'ratebypass' not in url
:
570 url
+= '&ratebypass=yes'
571 url_map
[url_data
['itag'][0]] = url
573 format_limit
= self
._downloader
.params
.get('format_limit', None)
574 available_formats
= self
._available
_formats
_prefer
_free
if self
._downloader
.params
.get('prefer_free_formats', False) else self
._available
_formats
575 if format_limit
is not None and format_limit
in available_formats
:
576 format_list
= available_formats
[available_formats
.index(format_limit
):]
578 format_list
= available_formats
579 existing_formats
= [x
for x
in format_list
if x
in url_map
]
580 if len(existing_formats
) == 0:
581 raise ExtractorError(u
'no known formats available for video')
582 if self
._downloader
.params
.get('listformats', None):
583 self
._print
_formats
(existing_formats
)
585 if req_format
is None or req_format
== 'best':
586 video_url_list
= [(existing_formats
[0], url_map
[existing_formats
[0]])] # Best quality
587 elif req_format
== 'worst':
588 video_url_list
= [(existing_formats
[-1], url_map
[existing_formats
[-1]])] # worst quality
589 elif req_format
in ('-1', 'all'):
590 video_url_list
= [(f
, url_map
[f
]) for f
in existing_formats
] # All formats
592 # Specific formats. We pick the first in a slash-delimeted sequence.
593 # For example, if '1/2/3/4' is requested and '2' and '4' are available, we pick '2'.
594 req_formats
= req_format
.split('/')
595 video_url_list
= None
596 for rf
in req_formats
:
598 video_url_list
= [(rf
, url_map
[rf
])]
600 if video_url_list
is None:
601 raise ExtractorError(u
'requested format not available')
603 raise ExtractorError(u
'no conn or url_encoded_fmt_stream_map information found in video info')
606 for format_param
, video_real_url
in video_url_list
:
608 video_extension
= self
._video
_extensions
.get(format_param
, 'flv')
610 video_format
= '{0} - {1}'.format(format_param
if format_param
else video_extension
,
611 self
._video
_dimensions
.get(format_param
, '???'))
615 'url': video_real_url
,
616 'uploader': video_uploader
,
617 'uploader_id': video_uploader_id
,
618 'upload_date': upload_date
,
619 'title': video_title
,
620 'ext': video_extension
,
621 'format': video_format
,
622 'thumbnail': video_thumbnail
,
623 'description': video_description
,
624 'player_url': player_url
,
625 'subtitles': video_subtitles
,
626 'duration': video_duration
630 class YoutubePlaylistIE(InfoExtractor
):
631 IE_DESC
= u
'YouTube.com playlists'
637 (?:course|view_play_list|my_playlists|artist|playlist|watch)
638 \? (?:.*?&)*? (?:p|a|list)=
641 ((?:PL|EC|UU)?[0-9A-Za-z-_]{10,})
644 ((?:PL|EC|UU)[0-9A-Za-z-_]{10,})
646 _TEMPLATE_URL
= 'https://gdata.youtube.com/feeds/api/playlists/%s?max-results=%i&start-index=%i&v=2&alt=json&safeSearch=none'
648 IE_NAME
= u
'youtube:playlist'
651 def suitable(cls
, url
):
652 """Receives a URL and returns True if suitable for this IE."""
653 return re
.match(cls
._VALID
_URL
, url
, re
.VERBOSE
) is not None
655 def _real_extract(self
, url
):
656 # Extract playlist id
657 mobj
= re
.match(self
._VALID
_URL
, url
, re
.VERBOSE
)
659 raise ExtractorError(u
'Invalid URL: %s' % url
)
661 # Download playlist videos from API
662 playlist_id
= mobj
.group(1) or mobj
.group(2)
667 url
= self
._TEMPLATE
_URL
% (playlist_id
, self
._MAX
_RESULTS
, self
._MAX
_RESULTS
* (page_num
- 1) + 1)
668 page
= self
._download
_webpage
(url
, playlist_id
, u
'Downloading page #%s' % page_num
)
671 response
= json
.loads(page
)
672 except ValueError as err
:
673 raise ExtractorError(u
'Invalid JSON in API response: ' + compat_str(err
))
675 if 'feed' not in response
:
676 raise ExtractorError(u
'Got a malformed response from YouTube API')
677 playlist_title
= response
['feed']['title']['$t']
678 if 'entry' not in response
['feed']:
679 # Number of videos is a multiple of self._MAX_RESULTS
682 for entry
in response
['feed']['entry']:
683 index
= entry
['yt$position']['$t']
684 if 'media$group' in entry
and 'media$player' in entry
['media$group']:
685 videos
.append((index
, entry
['media$group']['media$player']['url']))
687 if len(response
['feed']['entry']) < self
._MAX
_RESULTS
:
691 videos
= [v
[1] for v
in sorted(videos
)]
693 url_results
= [self
.url_result(url
, 'Youtube') for url
in videos
]
694 return [self
.playlist_result(url_results
, playlist_id
, playlist_title
)]
697 class YoutubeChannelIE(InfoExtractor
):
698 IE_DESC
= u
'YouTube.com channels'
699 _VALID_URL
= r
"^(?:https?://)?(?:youtu\.be|(?:\w+\.)?youtube(?:-nocookie)?\.com)/channel/([0-9A-Za-z_-]+)"
700 _TEMPLATE_URL
= 'http://www.youtube.com/channel/%s/videos?sort=da&flow=list&view=0&page=%s&gl=US&hl=en'
701 _MORE_PAGES_INDICATOR
= 'yt-uix-load-more'
702 _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'
703 IE_NAME
= u
'youtube:channel'
705 def extract_videos_from_page(self
, page
):
707 for mobj
in re
.finditer(r
'href="/watch\?v=([0-9A-Za-z_-]+)&?', page
):
708 if mobj
.group(1) not in ids_in_page
:
709 ids_in_page
.append(mobj
.group(1))
712 def _real_extract(self
, url
):
714 mobj
= re
.match(self
._VALID
_URL
, url
)
716 raise ExtractorError(u
'Invalid URL: %s' % url
)
718 # Download channel page
719 channel_id
= mobj
.group(1)
723 url
= self
._TEMPLATE
_URL
% (channel_id
, pagenum
)
724 page
= self
._download
_webpage
(url
, channel_id
,
725 u
'Downloading page #%s' % pagenum
)
727 # Extract video identifiers
728 ids_in_page
= self
.extract_videos_from_page(page
)
729 video_ids
.extend(ids_in_page
)
731 # Download any subsequent channel pages using the json-based channel_ajax query
732 if self
._MORE
_PAGES
_INDICATOR
in page
:
734 pagenum
= pagenum
+ 1
736 url
= self
._MORE
_PAGES
_URL
% (pagenum
, channel_id
)
737 page
= self
._download
_webpage
(url
, channel_id
,
738 u
'Downloading page #%s' % pagenum
)
740 page
= json
.loads(page
)
742 ids_in_page
= self
.extract_videos_from_page(page
['content_html'])
743 video_ids
.extend(ids_in_page
)
745 if self
._MORE
_PAGES
_INDICATOR
not in page
['load_more_widget_html']:
748 self
._downloader
.to_screen(u
'[youtube] Channel %s: Found %i videos' % (channel_id
, len(video_ids
)))
750 urls
= ['http://www.youtube.com/watch?v=%s' % id for id in video_ids
]
751 url_entries
= [self
.url_result(url
, 'Youtube') for url
in urls
]
752 return [self
.playlist_result(url_entries
, channel_id
)]
755 class YoutubeUserIE(InfoExtractor
):
756 IE_DESC
= u
'YouTube.com user videos (URL or "ytuser" keyword)'
757 _VALID_URL
= r
'(?:(?:(?:https?://)?(?:\w+\.)?youtube\.com/user/)|ytuser:)([A-Za-z0-9_-]+)'
758 _TEMPLATE_URL
= 'http://gdata.youtube.com/feeds/api/users/%s'
759 _GDATA_PAGE_SIZE
= 50
760 _GDATA_URL
= 'http://gdata.youtube.com/feeds/api/users/%s/uploads?max-results=%d&start-index=%d'
761 _VIDEO_INDICATOR
= r
'/watch\?v=(.+?)[\<&]'
762 IE_NAME
= u
'youtube:user'
764 def _real_extract(self
, url
):
766 mobj
= re
.match(self
._VALID
_URL
, url
)
768 raise ExtractorError(u
'Invalid URL: %s' % url
)
770 username
= mobj
.group(1)
772 # Download video ids using YouTube Data API. Result size per
773 # query is limited (currently to 50 videos) so we need to query
774 # page by page until there are no video ids - it means we got
781 start_index
= pagenum
* self
._GDATA
_PAGE
_SIZE
+ 1
783 gdata_url
= self
._GDATA
_URL
% (username
, self
._GDATA
_PAGE
_SIZE
, start_index
)
784 page
= self
._download
_webpage
(gdata_url
, username
,
785 u
'Downloading video ids from %d to %d' % (start_index
, start_index
+ self
._GDATA
_PAGE
_SIZE
))
787 # Extract video identifiers
790 for mobj
in re
.finditer(self
._VIDEO
_INDICATOR
, page
):
791 if mobj
.group(1) not in ids_in_page
:
792 ids_in_page
.append(mobj
.group(1))
794 video_ids
.extend(ids_in_page
)
796 # A little optimization - if current page is not
797 # "full", ie. does not contain PAGE_SIZE video ids then
798 # we can assume that this page is the last one - there
799 # are no more ids on further pages - no need to query
802 if len(ids_in_page
) < self
._GDATA
_PAGE
_SIZE
:
807 urls
= ['http://www.youtube.com/watch?v=%s' % video_id
for video_id
in video_ids
]
808 url_results
= [self
.url_result(url
, 'Youtube') for url
in urls
]
809 return [self
.playlist_result(url_results
, playlist_title
= username
)]
811 class YoutubeSearchIE(SearchInfoExtractor
):
812 IE_DESC
= u
'YouTube.com searches'
813 _API_URL
= 'https://gdata.youtube.com/feeds/api/videos?q=%s&start-index=%i&max-results=50&v=2&alt=jsonc'
815 IE_NAME
= u
'youtube:search'
816 _SEARCH_KEY
= 'ytsearch'
818 def report_download_page(self
, query
, pagenum
):
819 """Report attempt to download search page with given number."""
820 self
._downloader
.to_screen(u
'[youtube] query "%s": Downloading page %s' % (query
, pagenum
))
822 def _get_n_results(self
, query
, n
):
823 """Get a specified number of results for a query"""
829 while (50 * pagenum
) < limit
:
830 self
.report_download_page(query
, pagenum
+1)
831 result_url
= self
._API
_URL
% (compat_urllib_parse
.quote_plus(query
), (50*pagenum
)+1)
832 request
= compat_urllib_request
.Request(result_url
)
834 data
= compat_urllib_request
.urlopen(request
).read().decode('utf-8')
835 except (compat_urllib_error
.URLError
, compat_http_client
.HTTPException
, socket
.error
) as err
:
836 raise ExtractorError(u
'Unable to download API page: %s' % compat_str(err
))
837 api_response
= json
.loads(data
)['data']
839 if not 'items' in api_response
:
840 raise ExtractorError(u
'[youtube] No video results')
842 new_ids
= list(video
['id'] for video
in api_response
['items'])
845 limit
= min(n
, api_response
['totalItems'])
848 if len(video_ids
) > n
:
849 video_ids
= video_ids
[:n
]
850 videos
= [self
.url_result('http://www.youtube.com/watch?v=%s' % id, 'Youtube') for id in video_ids
]
851 return self
.playlist_result(videos
, query
)
854 class YoutubeShowIE(InfoExtractor
):
855 IE_DESC
= u
'YouTube.com (multi-season) shows'
856 _VALID_URL
= r
'https?://www\.youtube\.com/show/(.*)'
857 IE_NAME
= u
'youtube:show'
859 def _real_extract(self
, url
):
860 mobj
= re
.match(self
._VALID
_URL
, url
)
861 show_name
= mobj
.group(1)
862 webpage
= self
._download
_webpage
(url
, show_name
, u
'Downloading show webpage')
863 # There's one playlist for each season of the show
864 m_seasons
= list(re
.finditer(r
'href="(/playlist\?list=.*?)"', webpage
))
865 self
.to_screen(u
'%s: Found %s seasons' % (show_name
, len(m_seasons
)))
866 return [self
.url_result('https://www.youtube.com' + season
.group(1), 'YoutubePlaylist') for season
in m_seasons
]