You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

869 lines
39 KiB

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