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.

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