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.

1416 lines
63 KiB

11 years ago
  1. # coding: utf-8
  2. import errno
  3. import io
  4. import itertools
  5. import json
  6. import os.path
  7. import re
  8. import traceback
  9. from .common import InfoExtractor, SearchInfoExtractor
  10. from .subtitles import SubtitlesInfoExtractor
  11. from ..jsinterp import JSInterpreter
  12. from ..swfinterp import SWFInterpreter
  13. from ..utils import (
  14. compat_chr,
  15. compat_parse_qs,
  16. compat_urllib_parse,
  17. compat_urllib_request,
  18. compat_urlparse,
  19. compat_str,
  20. clean_html,
  21. get_cachedir,
  22. get_element_by_id,
  23. get_element_by_attribute,
  24. ExtractorError,
  25. int_or_none,
  26. PagedList,
  27. unescapeHTML,
  28. unified_strdate,
  29. orderedSet,
  30. write_json_file,
  31. uppercase_escape,
  32. )
  33. class YoutubeBaseInfoExtractor(InfoExtractor):
  34. """Provide base functions for Youtube extractors"""
  35. _LOGIN_URL = 'https://accounts.google.com/ServiceLogin'
  36. _LANG_URL = r'https://www.youtube.com/?hl=en&persist_hl=1&gl=US&persist_gl=1&opt_out_ackd=1'
  37. _AGE_URL = 'https://www.youtube.com/verify_age?next_url=/&gl=US&hl=en'
  38. _NETRC_MACHINE = 'youtube'
  39. # If True it will raise an error if no login info is provided
  40. _LOGIN_REQUIRED = False
  41. def _set_language(self):
  42. return bool(self._download_webpage(
  43. self._LANG_URL, None,
  44. note=u'Setting language', errnote='unable to set language',
  45. fatal=False))
  46. def _login(self):
  47. (username, password) = self._get_login_info()
  48. # No authentication to be performed
  49. if username is None:
  50. if self._LOGIN_REQUIRED:
  51. raise ExtractorError(u'No login info available, needed for using %s.' % self.IE_NAME, expected=True)
  52. return False
  53. login_page = self._download_webpage(
  54. self._LOGIN_URL, None,
  55. note=u'Downloading login page',
  56. errnote=u'unable to fetch login page', fatal=False)
  57. if login_page is False:
  58. return
  59. galx = self._search_regex(r'(?s)<input.+?name="GALX".+?value="(.+?)"',
  60. login_page, u'Login GALX parameter')
  61. # Log in
  62. login_form_strs = {
  63. u'continue': u'https://www.youtube.com/signin?action_handle_signin=true&feature=sign_in_button&hl=en_US&nomobiletemp=1',
  64. u'Email': username,
  65. u'GALX': galx,
  66. u'Passwd': password,
  67. u'PersistentCookie': u'yes',
  68. u'_utf8': u'',
  69. u'bgresponse': u'js_disabled',
  70. u'checkConnection': u'',
  71. u'checkedDomains': u'youtube',
  72. u'dnConn': u'',
  73. u'pstMsg': u'0',
  74. u'rmShown': u'1',
  75. u'secTok': u'',
  76. u'signIn': u'Sign in',
  77. u'timeStmp': u'',
  78. u'service': u'youtube',
  79. u'uilel': u'3',
  80. u'hl': u'en_US',
  81. }
  82. # Convert to UTF-8 *before* urlencode because Python 2.x's urlencode
  83. # chokes on unicode
  84. login_form = dict((k.encode('utf-8'), v.encode('utf-8')) for k,v in login_form_strs.items())
  85. login_data = compat_urllib_parse.urlencode(login_form).encode('ascii')
  86. req = compat_urllib_request.Request(self._LOGIN_URL, login_data)
  87. login_results = self._download_webpage(
  88. req, None,
  89. note=u'Logging in', errnote=u'unable to log in', fatal=False)
  90. if login_results is False:
  91. return False
  92. if re.search(r'(?i)<form[^>]* id="gaia_loginform"', login_results) is not None:
  93. self._downloader.report_warning(u'unable to log in: bad username or password')
  94. return False
  95. return True
  96. def _confirm_age(self):
  97. age_form = {
  98. 'next_url': '/',
  99. 'action_confirm': 'Confirm',
  100. }
  101. req = compat_urllib_request.Request(self._AGE_URL,
  102. compat_urllib_parse.urlencode(age_form).encode('ascii'))
  103. self._download_webpage(
  104. req, None,
  105. note=u'Confirming age', errnote=u'Unable to confirm age')
  106. return True
  107. def _real_initialize(self):
  108. if self._downloader is None:
  109. return
  110. if not self._set_language():
  111. return
  112. if not self._login():
  113. return
  114. self._confirm_age()
  115. class YoutubeIE(YoutubeBaseInfoExtractor, SubtitlesInfoExtractor):
  116. IE_DESC = u'YouTube.com'
  117. _VALID_URL = r"""(?x)^
  118. (
  119. (?:https?://|//)? # http(s):// or protocol-independent URL (optional)
  120. (?:(?:(?:(?:\w+\.)?[yY][oO][uU][tT][uU][bB][eE](?:-nocookie)?\.com/|
  121. (?:www\.)?deturl\.com/www\.youtube\.com/|
  122. (?:www\.)?pwnyoutube\.com/|
  123. (?:www\.)?yourepeat\.com/|
  124. tube\.majestyc\.net/|
  125. youtube\.googleapis\.com/) # the various hostnames, with wildcard subdomains
  126. (?:.*?\#/)? # handle anchor (#/) redirect urls
  127. (?: # the various things that can precede the ID:
  128. (?:(?:v|embed|e)/) # v/ or embed/ or e/
  129. |(?: # or the v= param in all its forms
  130. (?:(?:watch|movie)(?:_popup)?(?:\.php)?/?)? # preceding watch(_popup|.php) or nothing (like /?v=xxxx)
  131. (?:\?|\#!?) # the params delimiter ? or # or #!
  132. (?:.*?&)? # any other preceding param (like /?s=tuff&v=xxxx)
  133. v=
  134. )
  135. ))
  136. |youtu\.be/ # just youtu.be/xxxx
  137. |https?://(?:www\.)?cleanvideosearch\.com/media/action/yt/watch\?videoId=
  138. )
  139. )? # all until now is optional -> you can pass the naked ID
  140. ([0-9A-Za-z_-]{11}) # here is it! the YouTube video ID
  141. (?(1).+)? # if we found the ID, everything can follow
  142. $"""
  143. _NEXT_URL_RE = r'[\?&]next_url=([^&]+)'
  144. _formats = {
  145. '5': {'ext': 'flv', 'width': 400, 'height': 240},
  146. '6': {'ext': 'flv', 'width': 450, 'height': 270},
  147. '13': {'ext': '3gp'},
  148. '17': {'ext': '3gp', 'width': 176, 'height': 144},
  149. '18': {'ext': 'mp4', 'width': 640, 'height': 360},
  150. '22': {'ext': 'mp4', 'width': 1280, 'height': 720},
  151. '34': {'ext': 'flv', 'width': 640, 'height': 360},
  152. '35': {'ext': 'flv', 'width': 854, 'height': 480},
  153. '36': {'ext': '3gp', 'width': 320, 'height': 240},
  154. '37': {'ext': 'mp4', 'width': 1920, 'height': 1080},
  155. '38': {'ext': 'mp4', 'width': 4096, 'height': 3072},
  156. '43': {'ext': 'webm', 'width': 640, 'height': 360},
  157. '44': {'ext': 'webm', 'width': 854, 'height': 480},
  158. '45': {'ext': 'webm', 'width': 1280, 'height': 720},
  159. '46': {'ext': 'webm', 'width': 1920, 'height': 1080},
  160. # 3d videos
  161. '82': {'ext': 'mp4', 'height': 360, 'format_note': '3D', 'preference': -20},
  162. '83': {'ext': 'mp4', 'height': 480, 'format_note': '3D', 'preference': -20},
  163. '84': {'ext': 'mp4', 'height': 720, 'format_note': '3D', 'preference': -20},
  164. '85': {'ext': 'mp4', 'height': 1080, 'format_note': '3D', 'preference': -20},
  165. '100': {'ext': 'webm', 'height': 360, 'format_note': '3D', 'preference': -20},
  166. '101': {'ext': 'webm', 'height': 480, 'format_note': '3D', 'preference': -20},
  167. '102': {'ext': 'webm', 'height': 720, 'format_note': '3D', 'preference': -20},
  168. # Apple HTTP Live Streaming
  169. '92': {'ext': 'mp4', 'height': 240, 'format_note': 'HLS', 'preference': -10},
  170. '93': {'ext': 'mp4', 'height': 360, 'format_note': 'HLS', 'preference': -10},
  171. '94': {'ext': 'mp4', 'height': 480, 'format_note': 'HLS', 'preference': -10},
  172. '95': {'ext': 'mp4', 'height': 720, 'format_note': 'HLS', 'preference': -10},
  173. '96': {'ext': 'mp4', 'height': 1080, 'format_note': 'HLS', 'preference': -10},
  174. '132': {'ext': 'mp4', 'height': 240, 'format_note': 'HLS', 'preference': -10},
  175. '151': {'ext': 'mp4', 'height': 72, 'format_note': 'HLS', 'preference': -10},
  176. # DASH mp4 video
  177. '133': {'ext': 'mp4', 'height': 240, 'format_note': 'DASH video', 'acodec': 'none', 'preference': -40},
  178. '134': {'ext': 'mp4', 'height': 360, 'format_note': 'DASH video', 'acodec': 'none', 'preference': -40},
  179. '135': {'ext': 'mp4', 'height': 480, 'format_note': 'DASH video', 'acodec': 'none', 'preference': -40},
  180. '136': {'ext': 'mp4', 'height': 720, 'format_note': 'DASH video', 'acodec': 'none', 'preference': -40},
  181. '137': {'ext': 'mp4', 'height': 1080, 'format_note': 'DASH video', 'acodec': 'none', 'preference': -40},
  182. '138': {'ext': 'mp4', 'height': 2160, 'format_note': 'DASH video', 'acodec': 'none', 'preference': -40},
  183. '160': {'ext': 'mp4', 'height': 144, 'format_note': 'DASH video', 'acodec': 'none', 'preference': -40},
  184. '264': {'ext': 'mp4', 'height': 1440, 'format_note': 'DASH video', 'acodec': 'none', 'preference': -40},
  185. # Dash mp4 audio
  186. '139': {'ext': 'm4a', 'format_note': 'DASH audio', 'vcodec': 'none', 'abr': 48, 'preference': -50},
  187. '140': {'ext': 'm4a', 'format_note': 'DASH audio', 'vcodec': 'none', 'abr': 128, 'preference': -50},
  188. '141': {'ext': 'm4a', 'format_note': 'DASH audio', 'vcodec': 'none', 'abr': 256, 'preference': -50},
  189. # Dash webm
  190. '167': {'ext': 'webm', 'height': 360, 'width': 640, 'format_note': 'DASH video', 'acodec': 'none', 'container': 'webm', 'vcodec': 'VP8', 'preference': -40},
  191. '168': {'ext': 'webm', 'height': 480, 'width': 854, 'format_note': 'DASH video', 'acodec': 'none', 'container': 'webm', 'vcodec': 'VP8', 'preference': -40},
  192. '169': {'ext': 'webm', 'height': 720, 'width': 1280, 'format_note': 'DASH video', 'acodec': 'none', 'container': 'webm', 'vcodec': 'VP8', 'preference': -40},
  193. '170': {'ext': 'webm', 'height': 1080, 'width': 1920, 'format_note': 'DASH video', 'acodec': 'none', 'container': 'webm', 'vcodec': 'VP8', 'preference': -40},
  194. '218': {'ext': 'webm', 'height': 480, 'width': 854, 'format_note': 'DASH video', 'acodec': 'none', 'container': 'webm', 'vcodec': 'VP8', 'preference': -40},
  195. '219': {'ext': 'webm', 'height': 480, 'width': 854, 'format_note': 'DASH video', 'acodec': 'none', 'container': 'webm', 'vcodec': 'VP8', 'preference': -40},
  196. '242': {'ext': 'webm', 'height': 240, 'format_note': 'DASH video', 'acodec': 'none', 'preference': -40},
  197. '243': {'ext': 'webm', 'height': 360, 'format_note': 'DASH video', 'acodec': 'none', 'preference': -40},
  198. '244': {'ext': 'webm', 'height': 480, 'format_note': 'DASH video', 'acodec': 'none', 'preference': -40},
  199. '245': {'ext': 'webm', 'height': 480, 'format_note': 'DASH video', 'acodec': 'none', 'preference': -40},
  200. '246': {'ext': 'webm', 'height': 480, 'format_note': 'DASH video', 'acodec': 'none', 'preference': -40},
  201. '247': {'ext': 'webm', 'height': 720, 'format_note': 'DASH video', 'acodec': 'none', 'preference': -40},
  202. '248': {'ext': 'webm', 'height': 1080, 'format_note': 'DASH video', 'acodec': 'none', 'preference': -40},
  203. '271': {'ext': 'webm', 'height': 1440, 'format_note': 'DASH video', 'acodec': 'none', 'preference': -40},
  204. '272': {'ext': 'webm', 'height': 2160, 'format_note': 'DASH video', 'acodec': 'none', 'preference': -40},
  205. # Dash webm audio
  206. '171': {'ext': 'webm', 'vcodec': 'none', 'format_note': 'DASH audio', 'abr': 48, 'preference': -50},
  207. '172': {'ext': 'webm', 'vcodec': 'none', 'format_note': 'DASH audio', 'abr': 256, 'preference': -50},
  208. # RTMP (unnamed)
  209. '_rtmp': {'protocol': 'rtmp'},
  210. }
  211. IE_NAME = u'youtube'
  212. _TESTS = [
  213. {
  214. u"url": u"http://www.youtube.com/watch?v=BaW_jenozKc",
  215. u"file": u"BaW_jenozKc.mp4",
  216. u"info_dict": {
  217. u"title": u"youtube-dl test video \"'/\\ä↭𝕐",
  218. u"uploader": u"Philipp Hagemeister",
  219. u"uploader_id": u"phihag",
  220. u"upload_date": u"20121002",
  221. u"description": u"test chars: \"'/\\ä↭𝕐\ntest URL: https://github.com/rg3/youtube-dl/issues/1892\n\nThis is a test video for youtube-dl.\n\nFor more information, contact phihag@phihag.de .",
  222. u"categories": [u'Science & Technology'],
  223. }
  224. },
  225. {
  226. u"url": u"http://www.youtube.com/watch?v=UxxajLWwzqY",
  227. u"file": u"UxxajLWwzqY.mp4",
  228. u"note": u"Test generic use_cipher_signature video (#897)",
  229. u"info_dict": {
  230. u"upload_date": u"20120506",
  231. u"title": u"Icona Pop - I Love It (feat. Charli XCX) [OFFICIAL VIDEO]",
  232. u"description": u"md5:fea86fda2d5a5784273df5c7cc994d9f",
  233. u"uploader": u"Icona Pop",
  234. u"uploader_id": u"IconaPop"
  235. }
  236. },
  237. {
  238. u"url": u"https://www.youtube.com/watch?v=07FYdnEawAQ",
  239. u"file": u"07FYdnEawAQ.mp4",
  240. u"note": u"Test VEVO video with age protection (#956)",
  241. u"info_dict": {
  242. u"upload_date": u"20130703",
  243. u"title": u"Justin Timberlake - Tunnel Vision (Explicit)",
  244. u"description": u"md5:64249768eec3bc4276236606ea996373",
  245. u"uploader": u"justintimberlakeVEVO",
  246. u"uploader_id": u"justintimberlakeVEVO"
  247. }
  248. },
  249. {
  250. u"url": u"//www.YouTube.com/watch?v=yZIXLfi8CZQ",
  251. u"file": u"yZIXLfi8CZQ.mp4",
  252. u"note": u"Embed-only video (#1746)",
  253. u"info_dict": {
  254. u"upload_date": u"20120608",
  255. u"title": u"Principal Sexually Assaults A Teacher - Episode 117 - 8th June 2012",
  256. u"description": u"md5:09b78bd971f1e3e289601dfba15ca4f7",
  257. u"uploader": u"SET India",
  258. u"uploader_id": u"setindia"
  259. }
  260. },
  261. {
  262. u"url": u"http://www.youtube.com/watch?v=a9LDPn-MO4I",
  263. u"file": u"a9LDPn-MO4I.m4a",
  264. u"note": u"256k DASH audio (format 141) via DASH manifest",
  265. u"info_dict": {
  266. u"upload_date": "20121002",
  267. u"uploader_id": "8KVIDEO",
  268. u"description": "No description available.",
  269. u"uploader": "8KVIDEO",
  270. u"title": "UHDTV TEST 8K VIDEO.mp4"
  271. },
  272. u"params": {
  273. u"youtube_include_dash_manifest": True,
  274. u"format": "141",
  275. },
  276. },
  277. # DASH manifest with encrypted signature
  278. {
  279. u'url': u'https://www.youtube.com/watch?v=IB3lcPjvWLA',
  280. u'info_dict': {
  281. u'id': u'IB3lcPjvWLA',
  282. u'ext': u'm4a',
  283. u'title': u'Afrojack - The Spark ft. Spree Wilson',
  284. u'description': u'md5:9717375db5a9a3992be4668bbf3bc0a8',
  285. u'uploader': u'AfrojackVEVO',
  286. u'uploader_id': u'AfrojackVEVO',
  287. u'upload_date': u'20131011',
  288. },
  289. u"params": {
  290. u'youtube_include_dash_manifest': True,
  291. u'format': '141',
  292. },
  293. },
  294. ]
  295. @classmethod
  296. def suitable(cls, url):
  297. """Receives a URL and returns True if suitable for this IE."""
  298. if YoutubePlaylistIE.suitable(url): return False
  299. return re.match(cls._VALID_URL, url) is not None
  300. def __init__(self, *args, **kwargs):
  301. super(YoutubeIE, self).__init__(*args, **kwargs)
  302. self._player_cache = {}
  303. def report_video_info_webpage_download(self, video_id):
  304. """Report attempt to download video info webpage."""
  305. self.to_screen(u'%s: Downloading video info webpage' % video_id)
  306. def report_information_extraction(self, video_id):
  307. """Report attempt to extract video information."""
  308. self.to_screen(u'%s: Extracting video information' % video_id)
  309. def report_unavailable_format(self, video_id, format):
  310. """Report extracted video URL."""
  311. self.to_screen(u'%s: Format %s not available' % (video_id, format))
  312. def report_rtmp_download(self):
  313. """Indicate the download will use the RTMP protocol."""
  314. self.to_screen(u'RTMP download detected')
  315. def _signature_cache_id(self, example_sig):
  316. """ Return a string representation of a signature """
  317. return u'.'.join(compat_str(len(part)) for part in example_sig.split('.'))
  318. def _extract_signature_function(self, video_id, player_url, example_sig):
  319. id_m = re.match(
  320. r'.*-(?P<id>[a-zA-Z0-9_-]+)(?:/watch_as3|/html5player)?\.(?P<ext>[a-z]+)$',
  321. player_url)
  322. if not id_m:
  323. raise ExtractorError('Cannot identify player %r' % player_url)
  324. player_type = id_m.group('ext')
  325. player_id = id_m.group('id')
  326. # Read from filesystem cache
  327. func_id = '%s_%s_%s' % (
  328. player_type, player_id, self._signature_cache_id(example_sig))
  329. assert os.path.basename(func_id) == func_id
  330. cache_dir = get_cachedir(self._downloader.params)
  331. cache_enabled = cache_dir is not None
  332. if cache_enabled:
  333. cache_fn = os.path.join(os.path.expanduser(cache_dir),
  334. u'youtube-sigfuncs',
  335. func_id + '.json')
  336. try:
  337. with io.open(cache_fn, 'r', encoding='utf-8') as cachef:
  338. cache_spec = json.load(cachef)
  339. return lambda s: u''.join(s[i] for i in cache_spec)
  340. except IOError:
  341. pass # No cache available
  342. if player_type == 'js':
  343. code = self._download_webpage(
  344. player_url, video_id,
  345. note=u'Downloading %s player %s' % (player_type, player_id),
  346. errnote=u'Download of %s failed' % player_url)
  347. res = self._parse_sig_js(code)
  348. elif player_type == 'swf':
  349. urlh = self._request_webpage(
  350. player_url, video_id,
  351. note=u'Downloading %s player %s' % (player_type, player_id),
  352. errnote=u'Download of %s failed' % player_url)
  353. code = urlh.read()
  354. res = self._parse_sig_swf(code)
  355. else:
  356. assert False, 'Invalid player type %r' % player_type
  357. if cache_enabled:
  358. try:
  359. test_string = u''.join(map(compat_chr, range(len(example_sig))))
  360. cache_res = res(test_string)
  361. cache_spec = [ord(c) for c in cache_res]
  362. try:
  363. os.makedirs(os.path.dirname(cache_fn))
  364. except OSError as ose:
  365. if ose.errno != errno.EEXIST:
  366. raise
  367. write_json_file(cache_spec, cache_fn)
  368. except Exception:
  369. tb = traceback.format_exc()
  370. self._downloader.report_warning(
  371. u'Writing cache to %r failed: %s' % (cache_fn, tb))
  372. return res
  373. def _print_sig_code(self, func, example_sig):
  374. def gen_sig_code(idxs):
  375. def _genslice(start, end, step):
  376. starts = u'' if start == 0 else str(start)
  377. ends = (u':%d' % (end+step)) if end + step >= 0 else u':'
  378. steps = u'' if step == 1 else (u':%d' % step)
  379. return u's[%s%s%s]' % (starts, ends, steps)
  380. step = None
  381. start = '(Never used)' # Quelch pyflakes warnings - start will be
  382. # set as soon as step is set
  383. for i, prev in zip(idxs[1:], idxs[:-1]):
  384. if step is not None:
  385. if i - prev == step:
  386. continue
  387. yield _genslice(start, prev, step)
  388. step = None
  389. continue
  390. if i - prev in [-1, 1]:
  391. step = i - prev
  392. start = prev
  393. continue
  394. else:
  395. yield u's[%d]' % prev
  396. if step is None:
  397. yield u's[%d]' % i
  398. else:
  399. yield _genslice(start, i, step)
  400. test_string = u''.join(map(compat_chr, range(len(example_sig))))
  401. cache_res = func(test_string)
  402. cache_spec = [ord(c) for c in cache_res]
  403. expr_code = u' + '.join(gen_sig_code(cache_spec))
  404. signature_id_tuple = '(%s)' % (
  405. ', '.join(compat_str(len(p)) for p in example_sig.split('.')))
  406. code = (u'if tuple(len(p) for p in s.split(\'.\')) == %s:\n'
  407. u' return %s\n') % (signature_id_tuple, expr_code)
  408. self.to_screen(u'Extracted signature function:\n' + code)
  409. def _parse_sig_js(self, jscode):
  410. funcname = self._search_regex(
  411. r'signature=([$a-zA-Z]+)', jscode,
  412. u'Initial JS player signature function name')
  413. jsi = JSInterpreter(jscode)
  414. initial_function = jsi.extract_function(funcname)
  415. return lambda s: initial_function([s])
  416. def _parse_sig_swf(self, file_contents):
  417. swfi = SWFInterpreter(file_contents)
  418. TARGET_CLASSNAME = u'SignatureDecipher'
  419. searched_class = swfi.extract_class(TARGET_CLASSNAME)
  420. initial_function = swfi.extract_function(searched_class, u'decipher')
  421. return lambda s: initial_function([s])
  422. def _decrypt_signature(self, s, video_id, player_url, age_gate=False):
  423. """Turn the encrypted s field into a working signature"""
  424. if player_url is None:
  425. raise ExtractorError(u'Cannot decrypt signature without player_url')
  426. if player_url.startswith(u'//'):
  427. player_url = u'https:' + player_url
  428. try:
  429. player_id = (player_url, self._signature_cache_id(s))
  430. if player_id not in self._player_cache:
  431. func = self._extract_signature_function(
  432. video_id, player_url, s
  433. )
  434. self._player_cache[player_id] = func
  435. func = self._player_cache[player_id]
  436. if self._downloader.params.get('youtube_print_sig_code'):
  437. self._print_sig_code(func, s)
  438. return func(s)
  439. except Exception as e:
  440. tb = traceback.format_exc()
  441. raise ExtractorError(
  442. u'Signature extraction failed: ' + tb, cause=e)
  443. def _get_available_subtitles(self, video_id, webpage):
  444. try:
  445. sub_list = self._download_webpage(
  446. 'https://video.google.com/timedtext?hl=en&type=list&v=%s' % video_id,
  447. video_id, note=False)
  448. except ExtractorError as err:
  449. self._downloader.report_warning(u'unable to download video subtitles: %s' % compat_str(err))
  450. return {}
  451. lang_list = re.findall(r'name="([^"]*)"[^>]+lang_code="([\w\-]+)"', sub_list)
  452. sub_lang_list = {}
  453. for l in lang_list:
  454. lang = l[1]
  455. params = compat_urllib_parse.urlencode({
  456. 'lang': lang,
  457. 'v': video_id,
  458. 'fmt': self._downloader.params.get('subtitlesformat', 'srt'),
  459. 'name': unescapeHTML(l[0]).encode('utf-8'),
  460. })
  461. url = u'https://www.youtube.com/api/timedtext?' + params
  462. sub_lang_list[lang] = url
  463. if not sub_lang_list:
  464. self._downloader.report_warning(u'video doesn\'t have subtitles')
  465. return {}
  466. return sub_lang_list
  467. def _get_available_automatic_caption(self, video_id, webpage):
  468. """We need the webpage for getting the captions url, pass it as an
  469. argument to speed up the process."""
  470. sub_format = self._downloader.params.get('subtitlesformat', 'srt')
  471. self.to_screen(u'%s: Looking for automatic captions' % video_id)
  472. mobj = re.search(r';ytplayer.config = ({.*?});', webpage)
  473. err_msg = u'Couldn\'t find automatic captions for %s' % video_id
  474. if mobj is None:
  475. self._downloader.report_warning(err_msg)
  476. return {}
  477. player_config = json.loads(mobj.group(1))
  478. try:
  479. args = player_config[u'args']
  480. caption_url = args[u'ttsurl']
  481. timestamp = args[u'timestamp']
  482. # We get the available subtitles
  483. list_params = compat_urllib_parse.urlencode({
  484. 'type': 'list',
  485. 'tlangs': 1,
  486. 'asrs': 1,
  487. })
  488. list_url = caption_url + '&' + list_params
  489. caption_list = self._download_xml(list_url, video_id)
  490. original_lang_node = caption_list.find('track')
  491. if original_lang_node is None or original_lang_node.attrib.get('kind') != 'asr' :
  492. self._downloader.report_warning(u'Video doesn\'t have automatic captions')
  493. return {}
  494. original_lang = original_lang_node.attrib['lang_code']
  495. sub_lang_list = {}
  496. for lang_node in caption_list.findall('target'):
  497. sub_lang = lang_node.attrib['lang_code']
  498. params = compat_urllib_parse.urlencode({
  499. 'lang': original_lang,
  500. 'tlang': sub_lang,
  501. 'fmt': sub_format,
  502. 'ts': timestamp,
  503. 'kind': 'asr',
  504. })
  505. sub_lang_list[sub_lang] = caption_url + '&' + params
  506. return sub_lang_list
  507. # An extractor error can be raise by the download process if there are
  508. # no automatic captions but there are subtitles
  509. except (KeyError, ExtractorError):
  510. self._downloader.report_warning(err_msg)
  511. return {}
  512. @classmethod
  513. def extract_id(cls, url):
  514. mobj = re.match(cls._VALID_URL, url, re.VERBOSE)
  515. if mobj is None:
  516. raise ExtractorError(u'Invalid URL: %s' % url)
  517. video_id = mobj.group(2)
  518. return video_id
  519. def _extract_from_m3u8(self, manifest_url, video_id):
  520. url_map = {}
  521. def _get_urls(_manifest):
  522. lines = _manifest.split('\n')
  523. urls = filter(lambda l: l and not l.startswith('#'),
  524. lines)
  525. return urls
  526. manifest = self._download_webpage(manifest_url, video_id, u'Downloading formats manifest')
  527. formats_urls = _get_urls(manifest)
  528. for format_url in formats_urls:
  529. itag = self._search_regex(r'itag/(\d+?)/', format_url, 'itag')
  530. url_map[itag] = format_url
  531. return url_map
  532. def _extract_annotations(self, video_id):
  533. url = 'https://www.youtube.com/annotations_invideo?features=1&legacy=1&video_id=%s' % video_id
  534. return self._download_webpage(url, video_id, note=u'Searching for annotations.', errnote=u'Unable to download video annotations.')
  535. def _real_extract(self, url):
  536. proto = (
  537. u'http' if self._downloader.params.get('prefer_insecure', False)
  538. else u'https')
  539. # Extract original video URL from URL with redirection, like age verification, using next_url parameter
  540. mobj = re.search(self._NEXT_URL_RE, url)
  541. if mobj:
  542. url = proto + '://www.youtube.com/' + compat_urllib_parse.unquote(mobj.group(1)).lstrip('/')
  543. video_id = self.extract_id(url)
  544. # Get video webpage
  545. url = proto + '://www.youtube.com/watch?v=%s&gl=US&hl=en&has_verified=1' % video_id
  546. video_webpage = self._download_webpage(url, video_id)
  547. # Attempt to extract SWF player URL
  548. mobj = re.search(r'swfConfig.*?"(https?:\\/\\/.*?watch.*?-.*?\.swf)"', video_webpage)
  549. if mobj is not None:
  550. player_url = re.sub(r'\\(.)', r'\1', mobj.group(1))
  551. else:
  552. player_url = None
  553. # Get video info
  554. self.report_video_info_webpage_download(video_id)
  555. if re.search(r'player-age-gate-content">', video_webpage) is not None:
  556. self.report_age_confirmation()
  557. age_gate = True
  558. # We simulate the access to the video from www.youtube.com/v/{video_id}
  559. # this can be viewed without login into Youtube
  560. data = compat_urllib_parse.urlencode({
  561. 'video_id': video_id,
  562. 'eurl': 'https://youtube.googleapis.com/v/' + video_id,
  563. 'sts': self._search_regex(
  564. r'"sts"\s*:\s*(\d+)', video_webpage, 'sts'),
  565. })
  566. video_info_url = proto + '://www.youtube.com/get_video_info?' + data
  567. video_info_webpage = self._download_webpage(video_info_url, video_id,
  568. note=False,
  569. errnote='unable to download video info webpage')
  570. video_info = compat_parse_qs(video_info_webpage)
  571. else:
  572. age_gate = False
  573. for el_type in ['&el=embedded', '&el=detailpage', '&el=vevo', '']:
  574. video_info_url = (proto + '://www.youtube.com/get_video_info?&video_id=%s%s&ps=default&eurl=&gl=US&hl=en'
  575. % (video_id, el_type))
  576. video_info_webpage = self._download_webpage(video_info_url, video_id,
  577. note=False,
  578. errnote='unable to download video info webpage')
  579. video_info = compat_parse_qs(video_info_webpage)
  580. if 'token' in video_info:
  581. break
  582. if 'token' not in video_info:
  583. if 'reason' in video_info:
  584. raise ExtractorError(
  585. u'YouTube said: %s' % video_info['reason'][0],
  586. expected=True, video_id=video_id)
  587. else:
  588. raise ExtractorError(
  589. u'"token" parameter not in video info for unknown reason',
  590. video_id=video_id)
  591. if 'view_count' in video_info:
  592. view_count = int(video_info['view_count'][0])
  593. else:
  594. view_count = None
  595. # Check for "rental" videos
  596. if 'ypc_video_rental_bar_text' in video_info and 'author' not in video_info:
  597. raise ExtractorError(u'"rental" videos not supported')
  598. # Start extracting information
  599. self.report_information_extraction(video_id)
  600. # uploader
  601. if 'author' not in video_info:
  602. raise ExtractorError(u'Unable to extract uploader name')
  603. video_uploader = compat_urllib_parse.unquote_plus(video_info['author'][0])
  604. # uploader_id
  605. video_uploader_id = None
  606. mobj = re.search(r'<link itemprop="url" href="http://www.youtube.com/(?:user|channel)/([^"]+)">', video_webpage)
  607. if mobj is not None:
  608. video_uploader_id = mobj.group(1)
  609. else:
  610. self._downloader.report_warning(u'unable to extract uploader nickname')
  611. # title
  612. if 'title' in video_info:
  613. video_title = video_info['title'][0]
  614. else:
  615. self._downloader.report_warning(u'Unable to extract video title')
  616. video_title = u'_'
  617. # thumbnail image
  618. # We try first to get a high quality image:
  619. m_thumb = re.search(r'<span itemprop="thumbnail".*?href="(.*?)">',
  620. video_webpage, re.DOTALL)
  621. if m_thumb is not None:
  622. video_thumbnail = m_thumb.group(1)
  623. elif 'thumbnail_url' not in video_info:
  624. self._downloader.report_warning(u'unable to extract video thumbnail')
  625. video_thumbnail = None
  626. else: # don't panic if we can't find it
  627. video_thumbnail = compat_urllib_parse.unquote_plus(video_info['thumbnail_url'][0])
  628. # upload date
  629. upload_date = None
  630. mobj = re.search(r'(?s)id="eow-date.*?>(.*?)</span>', video_webpage)
  631. if mobj is None:
  632. mobj = re.search(
  633. r'(?s)id="watch-uploader-info".*?>.*?(?:Published|Uploaded|Streamed live) on (.*?)</strong>',
  634. video_webpage)
  635. if mobj is not None:
  636. upload_date = ' '.join(re.sub(r'[/,-]', r' ', mobj.group(1)).split())
  637. upload_date = unified_strdate(upload_date)
  638. m_cat_container = get_element_by_id("eow-category", video_webpage)
  639. if m_cat_container:
  640. category = self._html_search_regex(
  641. r'(?s)<a[^<]+>(.*?)</a>', m_cat_container, 'category',
  642. default=None)
  643. video_categories = None if category is None else [category]
  644. else:
  645. video_categories = None
  646. # description
  647. video_description = get_element_by_id("eow-description", video_webpage)
  648. if video_description:
  649. video_description = re.sub(r'''(?x)
  650. <a\s+
  651. (?:[a-zA-Z-]+="[^"]+"\s+)*?
  652. title="([^"]+)"\s+
  653. (?:[a-zA-Z-]+="[^"]+"\s+)*?
  654. class="yt-uix-redirect-link"\s*>
  655. [^<]+
  656. </a>
  657. ''', r'\1', video_description)
  658. video_description = clean_html(video_description)
  659. else:
  660. fd_mobj = re.search(r'<meta name="description" content="([^"]+)"', video_webpage)
  661. if fd_mobj:
  662. video_description = unescapeHTML(fd_mobj.group(1))
  663. else:
  664. video_description = u''
  665. def _extract_count(klass):
  666. count = self._search_regex(
  667. r'class="%s">([\d,]+)</span>' % re.escape(klass),
  668. video_webpage, klass, default=None)
  669. if count is not None:
  670. return int(count.replace(',', ''))
  671. return None
  672. like_count = _extract_count(u'likes-count')
  673. dislike_count = _extract_count(u'dislikes-count')
  674. # subtitles
  675. video_subtitles = self.extract_subtitles(video_id, video_webpage)
  676. if self._downloader.params.get('listsubtitles', False):
  677. self._list_available_subtitles(video_id, video_webpage)
  678. return
  679. if 'length_seconds' not in video_info:
  680. self._downloader.report_warning(u'unable to extract video duration')
  681. video_duration = None
  682. else:
  683. video_duration = int(compat_urllib_parse.unquote_plus(video_info['length_seconds'][0]))
  684. # annotations
  685. video_annotations = None
  686. if self._downloader.params.get('writeannotations', False):
  687. video_annotations = self._extract_annotations(video_id)
  688. # Decide which formats to download
  689. try:
  690. mobj = re.search(r';ytplayer\.config\s*=\s*({.*?});', video_webpage)
  691. if not mobj:
  692. raise ValueError('Could not find vevo ID')
  693. json_code = uppercase_escape(mobj.group(1))
  694. ytplayer_config = json.loads(json_code)
  695. args = ytplayer_config['args']
  696. # Easy way to know if the 's' value is in url_encoded_fmt_stream_map
  697. # this signatures are encrypted
  698. if 'url_encoded_fmt_stream_map' not in args:
  699. raise ValueError(u'No stream_map present') # caught below
  700. re_signature = re.compile(r'[&,]s=')
  701. m_s = re_signature.search(args['url_encoded_fmt_stream_map'])
  702. if m_s is not None:
  703. self.to_screen(u'%s: Encrypted signatures detected.' % video_id)
  704. video_info['url_encoded_fmt_stream_map'] = [args['url_encoded_fmt_stream_map']]
  705. m_s = re_signature.search(args.get('adaptive_fmts', u''))
  706. if m_s is not None:
  707. if 'adaptive_fmts' in video_info:
  708. video_info['adaptive_fmts'][0] += ',' + args['adaptive_fmts']
  709. else:
  710. video_info['adaptive_fmts'] = [args['adaptive_fmts']]
  711. except ValueError:
  712. pass
  713. def _map_to_format_list(urlmap):
  714. formats = []
  715. for itag, video_real_url in urlmap.items():
  716. dct = {
  717. 'format_id': itag,
  718. 'url': video_real_url,
  719. 'player_url': player_url,
  720. }
  721. if itag in self._formats:
  722. dct.update(self._formats[itag])
  723. formats.append(dct)
  724. return formats
  725. if 'conn' in video_info and video_info['conn'][0].startswith('rtmp'):
  726. self.report_rtmp_download()
  727. formats = [{
  728. 'format_id': '_rtmp',
  729. 'protocol': 'rtmp',
  730. 'url': video_info['conn'][0],
  731. 'player_url': player_url,
  732. }]
  733. elif len(video_info.get('url_encoded_fmt_stream_map', [])) >= 1 or len(video_info.get('adaptive_fmts', [])) >= 1:
  734. encoded_url_map = video_info.get('url_encoded_fmt_stream_map', [''])[0] + ',' + video_info.get('adaptive_fmts',[''])[0]
  735. if 'rtmpe%3Dyes' in encoded_url_map:
  736. raise ExtractorError('rtmpe downloads are not supported, see https://github.com/rg3/youtube-dl/issues/343 for more information.', expected=True)
  737. url_map = {}
  738. for url_data_str in encoded_url_map.split(','):
  739. url_data = compat_parse_qs(url_data_str)
  740. if 'itag' not in url_data or 'url' not in url_data:
  741. continue
  742. format_id = url_data['itag'][0]
  743. url = url_data['url'][0]
  744. if 'sig' in url_data:
  745. url += '&signature=' + url_data['sig'][0]
  746. elif 's' in url_data:
  747. encrypted_sig = url_data['s'][0]
  748. if not age_gate:
  749. jsplayer_url_json = self._search_regex(
  750. r'"assets":.+?"js":\s*("[^"]+")',
  751. video_webpage, u'JS player URL')
  752. player_url = json.loads(jsplayer_url_json)
  753. if player_url is None:
  754. player_url_json = self._search_regex(
  755. r'ytplayer\.config.*?"url"\s*:\s*("[^"]+")',
  756. video_webpage, u'age gate player URL')
  757. player_url = json.loads(player_url_json)
  758. if self._downloader.params.get('verbose'):
  759. if player_url is None:
  760. player_version = 'unknown'
  761. player_desc = 'unknown'
  762. else:
  763. if player_url.endswith('swf'):
  764. player_version = self._search_regex(
  765. r'-(.+?)(?:/watch_as3)?\.swf$', player_url,
  766. u'flash player', fatal=False)
  767. player_desc = 'flash player %s' % player_version
  768. else:
  769. player_version = self._search_regex(
  770. r'html5player-([^/]+?)(?:/html5player)?\.js',
  771. player_url,
  772. 'html5 player', fatal=False)
  773. player_desc = u'html5 player %s' % player_version
  774. parts_sizes = self._signature_cache_id(encrypted_sig)
  775. self.to_screen(u'{%s} signature length %s, %s' %
  776. (format_id, parts_sizes, player_desc))
  777. signature = self._decrypt_signature(
  778. encrypted_sig, video_id, player_url, age_gate)
  779. url += '&signature=' + signature
  780. if 'ratebypass' not in url:
  781. url += '&ratebypass=yes'
  782. url_map[format_id] = url
  783. formats = _map_to_format_list(url_map)
  784. elif video_info.get('hlsvp'):
  785. manifest_url = video_info['hlsvp'][0]
  786. url_map = self._extract_from_m3u8(manifest_url, video_id)
  787. formats = _map_to_format_list(url_map)
  788. else:
  789. raise ExtractorError(u'no conn, hlsvp or url_encoded_fmt_stream_map information found in video info')
  790. # Look for the DASH manifest
  791. if (self._downloader.params.get('youtube_include_dash_manifest', False)):
  792. try:
  793. # The DASH manifest used needs to be the one from the original video_webpage.
  794. # The one found in get_video_info seems to be using different signatures.
  795. # However, in the case of an age restriction there won't be any embedded dashmpd in the video_webpage.
  796. # Luckily, it seems, this case uses some kind of default signature (len == 86), so the
  797. # combination of get_video_info and the _static_decrypt_signature() decryption fallback will work here.
  798. if age_gate:
  799. dash_manifest_url = video_info.get('dashmpd')[0]
  800. else:
  801. dash_manifest_url = ytplayer_config['args']['dashmpd']
  802. def decrypt_sig(mobj):
  803. s = mobj.group(1)
  804. dec_s = self._decrypt_signature(s, video_id, player_url, age_gate)
  805. return '/signature/%s' % dec_s
  806. dash_manifest_url = re.sub(r'/s/([\w\.]+)', decrypt_sig, dash_manifest_url)
  807. dash_doc = self._download_xml(
  808. dash_manifest_url, video_id,
  809. note=u'Downloading DASH manifest',
  810. errnote=u'Could not download DASH manifest')
  811. for r in dash_doc.findall(u'.//{urn:mpeg:DASH:schema:MPD:2011}Representation'):
  812. url_el = r.find('{urn:mpeg:DASH:schema:MPD:2011}BaseURL')
  813. if url_el is None:
  814. continue
  815. format_id = r.attrib['id']
  816. video_url = url_el.text
  817. filesize = int_or_none(url_el.attrib.get('{http://youtube.com/yt/2012/10/10}contentLength'))
  818. f = {
  819. 'format_id': format_id,
  820. 'url': video_url,
  821. 'width': int_or_none(r.attrib.get('width')),
  822. 'tbr': int_or_none(r.attrib.get('bandwidth'), 1000),
  823. 'asr': int_or_none(r.attrib.get('audioSamplingRate')),
  824. 'filesize': filesize,
  825. }
  826. try:
  827. existing_format = next(
  828. fo for fo in formats
  829. if fo['format_id'] == format_id)
  830. except StopIteration:
  831. f.update(self._formats.get(format_id, {}))
  832. formats.append(f)
  833. else:
  834. existing_format.update(f)
  835. except (ExtractorError, KeyError) as e:
  836. self.report_warning(u'Skipping DASH manifest: %s' % e, video_id)
  837. self._sort_formats(formats)
  838. return {
  839. 'id': video_id,
  840. 'uploader': video_uploader,
  841. 'uploader_id': video_uploader_id,
  842. 'upload_date': upload_date,
  843. 'title': video_title,
  844. 'thumbnail': video_thumbnail,
  845. 'description': video_description,
  846. 'categories': video_categories,
  847. 'subtitles': video_subtitles,
  848. 'duration': video_duration,
  849. 'age_limit': 18 if age_gate else 0,
  850. 'annotations': video_annotations,
  851. 'webpage_url': proto + '://www.youtube.com/watch?v=%s' % video_id,
  852. 'view_count': view_count,
  853. 'like_count': like_count,
  854. 'dislike_count': dislike_count,
  855. 'formats': formats,
  856. }
  857. class YoutubePlaylistIE(YoutubeBaseInfoExtractor):
  858. IE_DESC = u'YouTube.com playlists'
  859. _VALID_URL = r"""(?x)(?:
  860. (?:https?://)?
  861. (?:\w+\.)?
  862. youtube\.com/
  863. (?:
  864. (?:course|view_play_list|my_playlists|artist|playlist|watch)
  865. \? (?:.*?&)*? (?:p|a|list)=
  866. | p/
  867. )
  868. (
  869. (?:PL|LL|EC|UU|FL|RD)?[0-9A-Za-z-_]{10,}
  870. # Top tracks, they can also include dots
  871. |(?:MC)[\w\.]*
  872. )
  873. .*
  874. |
  875. ((?:PL|LL|EC|UU|FL|RD)[0-9A-Za-z-_]{10,})
  876. )"""
  877. _TEMPLATE_URL = 'https://www.youtube.com/playlist?list=%s'
  878. _MORE_PAGES_INDICATOR = r'data-link-type="next"'
  879. _VIDEO_RE = r'href="\s*/watch\?v=(?P<id>[0-9A-Za-z_-]{11})&amp;[^"]*?index=(?P<index>\d+)'
  880. IE_NAME = u'youtube:playlist'
  881. def _real_initialize(self):
  882. self._login()
  883. def _ids_to_results(self, ids):
  884. return [self.url_result(vid_id, 'Youtube', video_id=vid_id)
  885. for vid_id in ids]
  886. def _extract_mix(self, playlist_id):
  887. # The mixes are generated from a a single video
  888. # the id of the playlist is just 'RD' + video_id
  889. url = 'https://youtube.com/watch?v=%s&list=%s' % (playlist_id[-11:], playlist_id)
  890. webpage = self._download_webpage(url, playlist_id, u'Downloading Youtube mix')
  891. search_title = lambda class_name: get_element_by_attribute('class', class_name, webpage)
  892. title_span = (search_title('playlist-title') or
  893. search_title('title long-title') or search_title('title'))
  894. title = clean_html(title_span)
  895. video_re = r'''(?x)data-video-username=".*?".*?
  896. href="/watch\?v=([0-9A-Za-z_-]{11})&amp;[^"]*?list=%s''' % re.escape(playlist_id)
  897. ids = orderedSet(re.findall(video_re, webpage, flags=re.DOTALL))
  898. url_results = self._ids_to_results(ids)
  899. return self.playlist_result(url_results, playlist_id, title)
  900. def _real_extract(self, url):
  901. # Extract playlist id
  902. mobj = re.match(self._VALID_URL, url)
  903. if mobj is None:
  904. raise ExtractorError(u'Invalid URL: %s' % url)
  905. playlist_id = mobj.group(1) or mobj.group(2)
  906. # Check if it's a video-specific URL
  907. query_dict = compat_urlparse.parse_qs(compat_urlparse.urlparse(url).query)
  908. if 'v' in query_dict:
  909. video_id = query_dict['v'][0]
  910. if self._downloader.params.get('noplaylist'):
  911. self.to_screen(u'Downloading just video %s because of --no-playlist' % video_id)
  912. return self.url_result(video_id, 'Youtube', video_id=video_id)
  913. else:
  914. self.to_screen(u'Downloading playlist %s - add --no-playlist to just download video %s' % (playlist_id, video_id))
  915. if playlist_id.startswith('RD'):
  916. # Mixes require a custom extraction process
  917. return self._extract_mix(playlist_id)
  918. if playlist_id.startswith('TL'):
  919. raise ExtractorError(u'For downloading YouTube.com top lists, use '
  920. u'the "yttoplist" keyword, for example "youtube-dl \'yttoplist:music:Top Tracks\'"', expected=True)
  921. url = self._TEMPLATE_URL % playlist_id
  922. page = self._download_webpage(url, playlist_id)
  923. more_widget_html = content_html = page
  924. # Check if the playlist exists or is private
  925. if re.search(r'<div class="yt-alert-message">[^<]*?(The|This) playlist (does not exist|is private)[^<]*?</div>', page) is not None:
  926. raise ExtractorError(
  927. u'The playlist doesn\'t exist or is private, use --username or '
  928. '--netrc to access it.',
  929. expected=True)
  930. # Extract the video ids from the playlist pages
  931. ids = []
  932. for page_num in itertools.count(1):
  933. matches = re.finditer(self._VIDEO_RE, content_html)
  934. # We remove the duplicates and the link with index 0
  935. # (it's not the first video of the playlist)
  936. new_ids = orderedSet(m.group('id') for m in matches if m.group('index') != '0')
  937. ids.extend(new_ids)
  938. mobj = re.search(r'data-uix-load-more-href="/?(?P<more>[^"]+)"', more_widget_html)
  939. if not mobj:
  940. break
  941. more = self._download_json(
  942. 'https://youtube.com/%s' % mobj.group('more'), playlist_id,
  943. 'Downloading page #%s' % page_num,
  944. transform_source=uppercase_escape)
  945. content_html = more['content_html']
  946. more_widget_html = more['load_more_widget_html']
  947. playlist_title = self._html_search_regex(
  948. r'(?s)<h1 class="pl-header-title[^"]*">\s*(.*?)\s*</h1>',
  949. page, u'title')
  950. url_results = self._ids_to_results(ids)
  951. return self.playlist_result(url_results, playlist_id, playlist_title)
  952. class YoutubeTopListIE(YoutubePlaylistIE):
  953. IE_NAME = u'youtube:toplist'
  954. IE_DESC = (u'YouTube.com top lists, "yttoplist:{channel}:{list title}"'
  955. u' (Example: "yttoplist:music:Top Tracks")')
  956. _VALID_URL = r'yttoplist:(?P<chann>.*?):(?P<title>.*?)$'
  957. def _real_extract(self, url):
  958. mobj = re.match(self._VALID_URL, url)
  959. channel = mobj.group('chann')
  960. title = mobj.group('title')
  961. query = compat_urllib_parse.urlencode({'title': title})
  962. playlist_re = 'href="([^"]+?%s.*?)"' % re.escape(query)
  963. channel_page = self._download_webpage('https://www.youtube.com/%s' % channel, title)
  964. link = self._html_search_regex(playlist_re, channel_page, u'list')
  965. url = compat_urlparse.urljoin('https://www.youtube.com/', link)
  966. video_re = r'data-index="\d+".*?data-video-id="([0-9A-Za-z_-]{11})"'
  967. ids = []
  968. # sometimes the webpage doesn't contain the videos
  969. # retry until we get them
  970. for i in itertools.count(0):
  971. msg = u'Downloading Youtube mix'
  972. if i > 0:
  973. msg += ', retry #%d' % i
  974. webpage = self._download_webpage(url, title, msg)
  975. ids = orderedSet(re.findall(video_re, webpage))
  976. if ids:
  977. break
  978. url_results = self._ids_to_results(ids)
  979. return self.playlist_result(url_results, playlist_title=title)
  980. class YoutubeChannelIE(InfoExtractor):
  981. IE_DESC = u'YouTube.com channels'
  982. _VALID_URL = r"^(?:https?://)?(?:youtu\.be|(?:\w+\.)?youtube(?:-nocookie)?\.com)/channel/([0-9A-Za-z_-]+)"
  983. _MORE_PAGES_INDICATOR = 'yt-uix-load-more'
  984. _MORE_PAGES_URL = 'https://www.youtube.com/c4_browse_ajax?action_load_more_videos=1&flow=list&paging=%s&view=0&sort=da&channel_id=%s'
  985. IE_NAME = u'youtube:channel'
  986. def extract_videos_from_page(self, page):
  987. ids_in_page = []
  988. for mobj in re.finditer(r'href="/watch\?v=([0-9A-Za-z_-]+)&?', page):
  989. if mobj.group(1) not in ids_in_page:
  990. ids_in_page.append(mobj.group(1))
  991. return ids_in_page
  992. def _real_extract(self, url):
  993. # Extract channel id
  994. mobj = re.match(self._VALID_URL, url)
  995. if mobj is None:
  996. raise ExtractorError(u'Invalid URL: %s' % url)
  997. # Download channel page
  998. channel_id = mobj.group(1)
  999. video_ids = []
  1000. url = 'https://www.youtube.com/channel/%s/videos' % channel_id
  1001. channel_page = self._download_webpage(url, channel_id)
  1002. autogenerated = re.search(r'''(?x)
  1003. class="[^"]*?(?:
  1004. channel-header-autogenerated-label|
  1005. yt-channel-title-autogenerated
  1006. )[^"]*"''', channel_page) is not None
  1007. if autogenerated:
  1008. # The videos are contained in a single page
  1009. # the ajax pages can't be used, they are empty
  1010. video_ids = self.extract_videos_from_page(channel_page)
  1011. else:
  1012. # Download all channel pages using the json-based channel_ajax query
  1013. for pagenum in itertools.count(1):
  1014. url = self._MORE_PAGES_URL % (pagenum, channel_id)
  1015. page = self._download_json(
  1016. url, channel_id, note=u'Downloading page #%s' % pagenum,
  1017. transform_source=uppercase_escape)
  1018. ids_in_page = self.extract_videos_from_page(page['content_html'])
  1019. video_ids.extend(ids_in_page)
  1020. if self._MORE_PAGES_INDICATOR not in page['load_more_widget_html']:
  1021. break
  1022. self._downloader.to_screen(u'[youtube] Channel %s: Found %i videos' % (channel_id, len(video_ids)))
  1023. url_entries = [self.url_result(video_id, 'Youtube', video_id=video_id)
  1024. for video_id in video_ids]
  1025. return self.playlist_result(url_entries, channel_id)
  1026. class YoutubeUserIE(InfoExtractor):
  1027. IE_DESC = u'YouTube.com user videos (URL or "ytuser" keyword)'
  1028. _VALID_URL = r'(?:(?:(?:https?://)?(?:\w+\.)?youtube\.com/(?:user/)?(?!(?:attribution_link|watch|results)(?:$|[^a-z_A-Z0-9-])))|ytuser:)(?!feed/)([A-Za-z0-9_-]+)'
  1029. _TEMPLATE_URL = 'https://gdata.youtube.com/feeds/api/users/%s'
  1030. _GDATA_PAGE_SIZE = 50
  1031. _GDATA_URL = 'https://gdata.youtube.com/feeds/api/users/%s/uploads?max-results=%d&start-index=%d&alt=json'
  1032. IE_NAME = u'youtube:user'
  1033. @classmethod
  1034. def suitable(cls, url):
  1035. # Don't return True if the url can be extracted with other youtube
  1036. # extractor, the regex would is too permissive and it would match.
  1037. other_ies = iter(klass for (name, klass) in globals().items() if name.endswith('IE') and klass is not cls)
  1038. if any(ie.suitable(url) for ie in other_ies): return False
  1039. else: return super(YoutubeUserIE, cls).suitable(url)
  1040. def _real_extract(self, url):
  1041. # Extract username
  1042. mobj = re.match(self._VALID_URL, url)
  1043. if mobj is None:
  1044. raise ExtractorError(u'Invalid URL: %s' % url)
  1045. username = mobj.group(1)
  1046. # Download video ids using YouTube Data API. Result size per
  1047. # query is limited (currently to 50 videos) so we need to query
  1048. # page by page until there are no video ids - it means we got
  1049. # all of them.
  1050. def download_page(pagenum):
  1051. start_index = pagenum * self._GDATA_PAGE_SIZE + 1
  1052. gdata_url = self._GDATA_URL % (username, self._GDATA_PAGE_SIZE, start_index)
  1053. page = self._download_webpage(
  1054. gdata_url, username,
  1055. u'Downloading video ids from %d to %d' % (
  1056. start_index, start_index + self._GDATA_PAGE_SIZE))
  1057. try:
  1058. response = json.loads(page)
  1059. except ValueError as err:
  1060. raise ExtractorError(u'Invalid JSON in API response: ' + compat_str(err))
  1061. if 'entry' not in response['feed']:
  1062. return
  1063. # Extract video identifiers
  1064. entries = response['feed']['entry']
  1065. for entry in entries:
  1066. title = entry['title']['$t']
  1067. video_id = entry['id']['$t'].split('/')[-1]
  1068. yield {
  1069. '_type': 'url',
  1070. 'url': video_id,
  1071. 'ie_key': 'Youtube',
  1072. 'id': video_id,
  1073. 'title': title,
  1074. }
  1075. url_results = PagedList(download_page, self._GDATA_PAGE_SIZE)
  1076. return self.playlist_result(url_results, playlist_title=username)
  1077. class YoutubeSearchIE(SearchInfoExtractor):
  1078. IE_DESC = u'YouTube.com searches'
  1079. _API_URL = u'https://gdata.youtube.com/feeds/api/videos?q=%s&start-index=%i&max-results=50&v=2&alt=jsonc'
  1080. _MAX_RESULTS = 1000
  1081. IE_NAME = u'youtube:search'
  1082. _SEARCH_KEY = 'ytsearch'
  1083. def _get_n_results(self, query, n):
  1084. """Get a specified number of results for a query"""
  1085. video_ids = []
  1086. pagenum = 0
  1087. limit = n
  1088. PAGE_SIZE = 50
  1089. while (PAGE_SIZE * pagenum) < limit:
  1090. result_url = self._API_URL % (
  1091. compat_urllib_parse.quote_plus(query.encode('utf-8')),
  1092. (PAGE_SIZE * pagenum) + 1)
  1093. data_json = self._download_webpage(
  1094. result_url, video_id=u'query "%s"' % query,
  1095. note=u'Downloading page %s' % (pagenum + 1),
  1096. errnote=u'Unable to download API page')
  1097. data = json.loads(data_json)
  1098. api_response = data['data']
  1099. if 'items' not in api_response:
  1100. raise ExtractorError(
  1101. u'[youtube] No video results', expected=True)
  1102. new_ids = list(video['id'] for video in api_response['items'])
  1103. video_ids += new_ids
  1104. limit = min(n, api_response['totalItems'])
  1105. pagenum += 1
  1106. if len(video_ids) > n:
  1107. video_ids = video_ids[:n]
  1108. videos = [self.url_result(video_id, 'Youtube', video_id=video_id)
  1109. for video_id in video_ids]
  1110. return self.playlist_result(videos, query)
  1111. class YoutubeSearchDateIE(YoutubeSearchIE):
  1112. IE_NAME = YoutubeSearchIE.IE_NAME + ':date'
  1113. _API_URL = 'https://gdata.youtube.com/feeds/api/videos?q=%s&start-index=%i&max-results=50&v=2&alt=jsonc&orderby=published'
  1114. _SEARCH_KEY = 'ytsearchdate'
  1115. IE_DESC = u'YouTube.com searches, newest videos first'
  1116. class YoutubeSearchURLIE(InfoExtractor):
  1117. IE_DESC = u'YouTube.com search URLs'
  1118. IE_NAME = u'youtube:search_url'
  1119. _VALID_URL = r'https?://(?:www\.)?youtube\.com/results\?(.*?&)?search_query=(?P<query>[^&]+)(?:[&]|$)'
  1120. def _real_extract(self, url):
  1121. mobj = re.match(self._VALID_URL, url)
  1122. query = compat_urllib_parse.unquote_plus(mobj.group('query'))
  1123. webpage = self._download_webpage(url, query)
  1124. result_code = self._search_regex(
  1125. r'(?s)<ol class="item-section"(.*?)</ol>', webpage, u'result HTML')
  1126. part_codes = re.findall(
  1127. r'(?s)<h3 class="yt-lockup-title">(.*?)</h3>', result_code)
  1128. entries = []
  1129. for part_code in part_codes:
  1130. part_title = self._html_search_regex(
  1131. [r'(?s)title="([^"]+)"', r'>([^<]+)</a>'], part_code, 'item title', fatal=False)
  1132. part_url_snippet = self._html_search_regex(
  1133. r'(?s)href="([^"]+)"', part_code, 'item URL')
  1134. part_url = compat_urlparse.urljoin(
  1135. 'https://www.youtube.com/', part_url_snippet)
  1136. entries.append({
  1137. '_type': 'url',
  1138. 'url': part_url,
  1139. 'title': part_title,
  1140. })
  1141. return {
  1142. '_type': 'playlist',
  1143. 'entries': entries,
  1144. 'title': query,
  1145. }
  1146. class YoutubeShowIE(InfoExtractor):
  1147. IE_DESC = u'YouTube.com (multi-season) shows'
  1148. _VALID_URL = r'https?://www\.youtube\.com/show/(.*)'
  1149. IE_NAME = u'youtube:show'
  1150. def _real_extract(self, url):
  1151. mobj = re.match(self._VALID_URL, url)
  1152. show_name = mobj.group(1)
  1153. webpage = self._download_webpage(url, show_name, u'Downloading show webpage')
  1154. # There's one playlist for each season of the show
  1155. m_seasons = list(re.finditer(r'href="(/playlist\?list=.*?)"', webpage))
  1156. self.to_screen(u'%s: Found %s seasons' % (show_name, len(m_seasons)))
  1157. return [self.url_result('https://www.youtube.com' + season.group(1), 'YoutubePlaylist') for season in m_seasons]
  1158. class YoutubeFeedsInfoExtractor(YoutubeBaseInfoExtractor):
  1159. """
  1160. Base class for extractors that fetch info from
  1161. http://www.youtube.com/feed_ajax
  1162. Subclasses must define the _FEED_NAME and _PLAYLIST_TITLE properties.
  1163. """
  1164. _LOGIN_REQUIRED = True
  1165. # use action_load_personal_feed instead of action_load_system_feed
  1166. _PERSONAL_FEED = False
  1167. @property
  1168. def _FEED_TEMPLATE(self):
  1169. action = 'action_load_system_feed'
  1170. if self._PERSONAL_FEED:
  1171. action = 'action_load_personal_feed'
  1172. return 'https://www.youtube.com/feed_ajax?%s=1&feed_name=%s&paging=%%s' % (action, self._FEED_NAME)
  1173. @property
  1174. def IE_NAME(self):
  1175. return u'youtube:%s' % self._FEED_NAME
  1176. def _real_initialize(self):
  1177. self._login()
  1178. def _real_extract(self, url):
  1179. feed_entries = []
  1180. paging = 0
  1181. for i in itertools.count(1):
  1182. info = self._download_json(self._FEED_TEMPLATE % paging,
  1183. u'%s feed' % self._FEED_NAME,
  1184. u'Downloading page %s' % i)
  1185. feed_html = info.get('feed_html') or info.get('content_html')
  1186. m_ids = re.finditer(r'"/watch\?v=(.*?)["&]', feed_html)
  1187. ids = orderedSet(m.group(1) for m in m_ids)
  1188. feed_entries.extend(
  1189. self.url_result(video_id, 'Youtube', video_id=video_id)
  1190. for video_id in ids)
  1191. mobj = re.search(
  1192. r'data-uix-load-more-href="/?[^"]+paging=(?P<paging>\d+)',
  1193. feed_html)
  1194. if mobj is None:
  1195. break
  1196. paging = mobj.group('paging')
  1197. return self.playlist_result(feed_entries, playlist_title=self._PLAYLIST_TITLE)
  1198. class YoutubeSubscriptionsIE(YoutubeFeedsInfoExtractor):
  1199. IE_DESC = u'YouTube.com subscriptions feed, "ytsubs" keyword (requires authentication)'
  1200. _VALID_URL = r'https?://www\.youtube\.com/feed/subscriptions|:ytsubs(?:criptions)?'
  1201. _FEED_NAME = 'subscriptions'
  1202. _PLAYLIST_TITLE = u'Youtube Subscriptions'
  1203. class YoutubeRecommendedIE(YoutubeFeedsInfoExtractor):
  1204. IE_DESC = u'YouTube.com recommended videos, "ytrec" keyword (requires authentication)'
  1205. _VALID_URL = r'https?://www\.youtube\.com/feed/recommended|:ytrec(?:ommended)?'
  1206. _FEED_NAME = 'recommended'
  1207. _PLAYLIST_TITLE = u'Youtube Recommended videos'
  1208. class YoutubeWatchLaterIE(YoutubeFeedsInfoExtractor):
  1209. IE_DESC = u'Youtube watch later list, "ytwatchlater" keyword (requires authentication)'
  1210. _VALID_URL = r'https?://www\.youtube\.com/feed/watch_later|:ytwatchlater'
  1211. _FEED_NAME = 'watch_later'
  1212. _PLAYLIST_TITLE = u'Youtube Watch Later'
  1213. _PERSONAL_FEED = True
  1214. class YoutubeHistoryIE(YoutubeFeedsInfoExtractor):
  1215. IE_DESC = u'Youtube watch history, "ythistory" keyword (requires authentication)'
  1216. _VALID_URL = u'https?://www\.youtube\.com/feed/history|:ythistory'
  1217. _FEED_NAME = 'history'
  1218. _PERSONAL_FEED = True
  1219. _PLAYLIST_TITLE = u'Youtube Watch History'
  1220. class YoutubeFavouritesIE(YoutubeBaseInfoExtractor):
  1221. IE_NAME = u'youtube:favorites'
  1222. IE_DESC = u'YouTube.com favourite videos, "ytfav" keyword (requires authentication)'
  1223. _VALID_URL = r'https?://www\.youtube\.com/my_favorites|:ytfav(?:ou?rites)?'
  1224. _LOGIN_REQUIRED = True
  1225. def _real_extract(self, url):
  1226. webpage = self._download_webpage('https://www.youtube.com/my_favorites', 'Youtube Favourites videos')
  1227. playlist_id = self._search_regex(r'list=(.+?)["&]', webpage, u'favourites playlist id')
  1228. return self.url_result(playlist_id, 'YoutubePlaylist')
  1229. class YoutubeTruncatedURLIE(InfoExtractor):
  1230. IE_NAME = 'youtube:truncated_url'
  1231. IE_DESC = False # Do not list
  1232. _VALID_URL = r'''(?x)
  1233. (?:https?://)?[^/]+/watch\?(?:
  1234. feature=[a-z_]+|
  1235. annotation_id=annotation_[^&]+
  1236. )?$|
  1237. (?:https?://)?(?:www\.)?youtube\.com/attribution_link\?a=[^&]+$
  1238. '''
  1239. _TESTS = [{
  1240. 'url': 'http://www.youtube.com/watch?annotation_id=annotation_3951667041',
  1241. 'only_matching': True,
  1242. }, {
  1243. 'url': 'http://www.youtube.com/watch?',
  1244. 'only_matching': True,
  1245. }]
  1246. def _real_extract(self, url):
  1247. raise ExtractorError(
  1248. u'Did you forget to quote the URL? Remember that & is a meta '
  1249. u'character in most shells, so you want to put the URL in quotes, '
  1250. u'like youtube-dl '
  1251. u'"http://www.youtube.com/watch?feature=foo&v=BaW_jenozKc" '
  1252. u' or simply youtube-dl BaW_jenozKc .',
  1253. expected=True)