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.

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