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.

1425 lines
64 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': 128, '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. except ValueError:
  343. try:
  344. file_size = os.path.getsize(cache_fn)
  345. except (OSError, IOError) as oe:
  346. file_size = str(oe)
  347. self._downloader.report_warning(
  348. u'Cache %s failed (%s)' % (cache_fn, file_size))
  349. if player_type == 'js':
  350. code = self._download_webpage(
  351. player_url, video_id,
  352. note=u'Downloading %s player %s' % (player_type, player_id),
  353. errnote=u'Download of %s failed' % player_url)
  354. res = self._parse_sig_js(code)
  355. elif player_type == 'swf':
  356. urlh = self._request_webpage(
  357. player_url, video_id,
  358. note=u'Downloading %s player %s' % (player_type, player_id),
  359. errnote=u'Download of %s failed' % player_url)
  360. code = urlh.read()
  361. res = self._parse_sig_swf(code)
  362. else:
  363. assert False, 'Invalid player type %r' % player_type
  364. if cache_enabled:
  365. try:
  366. test_string = u''.join(map(compat_chr, range(len(example_sig))))
  367. cache_res = res(test_string)
  368. cache_spec = [ord(c) for c in cache_res]
  369. try:
  370. os.makedirs(os.path.dirname(cache_fn))
  371. except OSError as ose:
  372. if ose.errno != errno.EEXIST:
  373. raise
  374. write_json_file(cache_spec, cache_fn)
  375. except Exception:
  376. tb = traceback.format_exc()
  377. self._downloader.report_warning(
  378. u'Writing cache to %r failed: %s' % (cache_fn, tb))
  379. return res
  380. def _print_sig_code(self, func, example_sig):
  381. def gen_sig_code(idxs):
  382. def _genslice(start, end, step):
  383. starts = u'' if start == 0 else str(start)
  384. ends = (u':%d' % (end+step)) if end + step >= 0 else u':'
  385. steps = u'' if step == 1 else (u':%d' % step)
  386. return u's[%s%s%s]' % (starts, ends, steps)
  387. step = None
  388. start = '(Never used)' # Quelch pyflakes warnings - start will be
  389. # set as soon as step is set
  390. for i, prev in zip(idxs[1:], idxs[:-1]):
  391. if step is not None:
  392. if i - prev == step:
  393. continue
  394. yield _genslice(start, prev, step)
  395. step = None
  396. continue
  397. if i - prev in [-1, 1]:
  398. step = i - prev
  399. start = prev
  400. continue
  401. else:
  402. yield u's[%d]' % prev
  403. if step is None:
  404. yield u's[%d]' % i
  405. else:
  406. yield _genslice(start, i, step)
  407. test_string = u''.join(map(compat_chr, range(len(example_sig))))
  408. cache_res = func(test_string)
  409. cache_spec = [ord(c) for c in cache_res]
  410. expr_code = u' + '.join(gen_sig_code(cache_spec))
  411. signature_id_tuple = '(%s)' % (
  412. ', '.join(compat_str(len(p)) for p in example_sig.split('.')))
  413. code = (u'if tuple(len(p) for p in s.split(\'.\')) == %s:\n'
  414. u' return %s\n') % (signature_id_tuple, expr_code)
  415. self.to_screen(u'Extracted signature function:\n' + code)
  416. def _parse_sig_js(self, jscode):
  417. funcname = self._search_regex(
  418. r'signature=([$a-zA-Z]+)', jscode,
  419. u'Initial JS player signature function name')
  420. jsi = JSInterpreter(jscode)
  421. initial_function = jsi.extract_function(funcname)
  422. return lambda s: initial_function([s])
  423. def _parse_sig_swf(self, file_contents):
  424. swfi = SWFInterpreter(file_contents)
  425. TARGET_CLASSNAME = u'SignatureDecipher'
  426. searched_class = swfi.extract_class(TARGET_CLASSNAME)
  427. initial_function = swfi.extract_function(searched_class, u'decipher')
  428. return lambda s: initial_function([s])
  429. def _decrypt_signature(self, s, video_id, player_url, age_gate=False):
  430. """Turn the encrypted s field into a working signature"""
  431. if player_url is None:
  432. raise ExtractorError(u'Cannot decrypt signature without player_url')
  433. if player_url.startswith(u'//'):
  434. player_url = u'https:' + player_url
  435. try:
  436. player_id = (player_url, self._signature_cache_id(s))
  437. if player_id not in self._player_cache:
  438. func = self._extract_signature_function(
  439. video_id, player_url, s
  440. )
  441. self._player_cache[player_id] = func
  442. func = self._player_cache[player_id]
  443. if self._downloader.params.get('youtube_print_sig_code'):
  444. self._print_sig_code(func, s)
  445. return func(s)
  446. except Exception as e:
  447. tb = traceback.format_exc()
  448. raise ExtractorError(
  449. u'Signature extraction failed: ' + tb, cause=e)
  450. def _get_available_subtitles(self, video_id, webpage):
  451. try:
  452. sub_list = self._download_webpage(
  453. 'https://video.google.com/timedtext?hl=en&type=list&v=%s' % video_id,
  454. video_id, note=False)
  455. except ExtractorError as err:
  456. self._downloader.report_warning(u'unable to download video subtitles: %s' % compat_str(err))
  457. return {}
  458. lang_list = re.findall(r'name="([^"]*)"[^>]+lang_code="([\w\-]+)"', sub_list)
  459. sub_lang_list = {}
  460. for l in lang_list:
  461. lang = l[1]
  462. if lang in sub_lang_list:
  463. continue
  464. params = compat_urllib_parse.urlencode({
  465. 'lang': lang,
  466. 'v': video_id,
  467. 'fmt': self._downloader.params.get('subtitlesformat', 'srt'),
  468. 'name': unescapeHTML(l[0]).encode('utf-8'),
  469. })
  470. url = u'https://www.youtube.com/api/timedtext?' + params
  471. sub_lang_list[lang] = url
  472. if not sub_lang_list:
  473. self._downloader.report_warning(u'video doesn\'t have subtitles')
  474. return {}
  475. return sub_lang_list
  476. def _get_available_automatic_caption(self, video_id, webpage):
  477. """We need the webpage for getting the captions url, pass it as an
  478. argument to speed up the process."""
  479. sub_format = self._downloader.params.get('subtitlesformat', 'srt')
  480. self.to_screen(u'%s: Looking for automatic captions' % video_id)
  481. mobj = re.search(r';ytplayer.config = ({.*?});', webpage)
  482. err_msg = u'Couldn\'t find automatic captions for %s' % video_id
  483. if mobj is None:
  484. self._downloader.report_warning(err_msg)
  485. return {}
  486. player_config = json.loads(mobj.group(1))
  487. try:
  488. args = player_config[u'args']
  489. caption_url = args[u'ttsurl']
  490. timestamp = args[u'timestamp']
  491. # We get the available subtitles
  492. list_params = compat_urllib_parse.urlencode({
  493. 'type': 'list',
  494. 'tlangs': 1,
  495. 'asrs': 1,
  496. })
  497. list_url = caption_url + '&' + list_params
  498. caption_list = self._download_xml(list_url, video_id)
  499. original_lang_node = caption_list.find('track')
  500. if original_lang_node is None or original_lang_node.attrib.get('kind') != 'asr' :
  501. self._downloader.report_warning(u'Video doesn\'t have automatic captions')
  502. return {}
  503. original_lang = original_lang_node.attrib['lang_code']
  504. sub_lang_list = {}
  505. for lang_node in caption_list.findall('target'):
  506. sub_lang = lang_node.attrib['lang_code']
  507. params = compat_urllib_parse.urlencode({
  508. 'lang': original_lang,
  509. 'tlang': sub_lang,
  510. 'fmt': sub_format,
  511. 'ts': timestamp,
  512. 'kind': 'asr',
  513. })
  514. sub_lang_list[sub_lang] = caption_url + '&' + params
  515. return sub_lang_list
  516. # An extractor error can be raise by the download process if there are
  517. # no automatic captions but there are subtitles
  518. except (KeyError, ExtractorError):
  519. self._downloader.report_warning(err_msg)
  520. return {}
  521. @classmethod
  522. def extract_id(cls, url):
  523. mobj = re.match(cls._VALID_URL, url, re.VERBOSE)
  524. if mobj is None:
  525. raise ExtractorError(u'Invalid URL: %s' % url)
  526. video_id = mobj.group(2)
  527. return video_id
  528. def _extract_from_m3u8(self, manifest_url, video_id):
  529. url_map = {}
  530. def _get_urls(_manifest):
  531. lines = _manifest.split('\n')
  532. urls = filter(lambda l: l and not l.startswith('#'),
  533. lines)
  534. return urls
  535. manifest = self._download_webpage(manifest_url, video_id, u'Downloading formats manifest')
  536. formats_urls = _get_urls(manifest)
  537. for format_url in formats_urls:
  538. itag = self._search_regex(r'itag/(\d+?)/', format_url, 'itag')
  539. url_map[itag] = format_url
  540. return url_map
  541. def _extract_annotations(self, video_id):
  542. url = 'https://www.youtube.com/annotations_invideo?features=1&legacy=1&video_id=%s' % video_id
  543. return self._download_webpage(url, video_id, note=u'Searching for annotations.', errnote=u'Unable to download video annotations.')
  544. def _real_extract(self, url):
  545. proto = (
  546. u'http' if self._downloader.params.get('prefer_insecure', False)
  547. else u'https')
  548. # Extract original video URL from URL with redirection, like age verification, using next_url parameter
  549. mobj = re.search(self._NEXT_URL_RE, url)
  550. if mobj:
  551. url = proto + '://www.youtube.com/' + compat_urllib_parse.unquote(mobj.group(1)).lstrip('/')
  552. video_id = self.extract_id(url)
  553. # Get video webpage
  554. url = proto + '://www.youtube.com/watch?v=%s&gl=US&hl=en&has_verified=1' % video_id
  555. video_webpage = self._download_webpage(url, video_id)
  556. # Attempt to extract SWF player URL
  557. mobj = re.search(r'swfConfig.*?"(https?:\\/\\/.*?watch.*?-.*?\.swf)"', video_webpage)
  558. if mobj is not None:
  559. player_url = re.sub(r'\\(.)', r'\1', mobj.group(1))
  560. else:
  561. player_url = None
  562. # Get video info
  563. self.report_video_info_webpage_download(video_id)
  564. if re.search(r'player-age-gate-content">', video_webpage) is not None:
  565. self.report_age_confirmation()
  566. age_gate = True
  567. # We simulate the access to the video from www.youtube.com/v/{video_id}
  568. # this can be viewed without login into Youtube
  569. data = compat_urllib_parse.urlencode({
  570. 'video_id': video_id,
  571. 'eurl': 'https://youtube.googleapis.com/v/' + video_id,
  572. 'sts': self._search_regex(
  573. r'"sts"\s*:\s*(\d+)', video_webpage, 'sts'),
  574. })
  575. video_info_url = proto + '://www.youtube.com/get_video_info?' + data
  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. else:
  581. age_gate = False
  582. for el_type in ['&el=embedded', '&el=detailpage', '&el=vevo', '']:
  583. video_info_url = (proto + '://www.youtube.com/get_video_info?&video_id=%s%s&ps=default&eurl=&gl=US&hl=en'
  584. % (video_id, el_type))
  585. video_info_webpage = self._download_webpage(video_info_url, video_id,
  586. note=False,
  587. errnote='unable to download video info webpage')
  588. video_info = compat_parse_qs(video_info_webpage)
  589. if 'token' in video_info:
  590. break
  591. if 'token' not in video_info:
  592. if 'reason' in video_info:
  593. raise ExtractorError(
  594. u'YouTube said: %s' % video_info['reason'][0],
  595. expected=True, video_id=video_id)
  596. else:
  597. raise ExtractorError(
  598. u'"token" parameter not in video info for unknown reason',
  599. video_id=video_id)
  600. if 'view_count' in video_info:
  601. view_count = int(video_info['view_count'][0])
  602. else:
  603. view_count = None
  604. # Check for "rental" videos
  605. if 'ypc_video_rental_bar_text' in video_info and 'author' not in video_info:
  606. raise ExtractorError(u'"rental" videos not supported')
  607. # Start extracting information
  608. self.report_information_extraction(video_id)
  609. # uploader
  610. if 'author' not in video_info:
  611. raise ExtractorError(u'Unable to extract uploader name')
  612. video_uploader = compat_urllib_parse.unquote_plus(video_info['author'][0])
  613. # uploader_id
  614. video_uploader_id = None
  615. mobj = re.search(r'<link itemprop="url" href="http://www.youtube.com/(?:user|channel)/([^"]+)">', video_webpage)
  616. if mobj is not None:
  617. video_uploader_id = mobj.group(1)
  618. else:
  619. self._downloader.report_warning(u'unable to extract uploader nickname')
  620. # title
  621. if 'title' in video_info:
  622. video_title = video_info['title'][0]
  623. else:
  624. self._downloader.report_warning(u'Unable to extract video title')
  625. video_title = u'_'
  626. # thumbnail image
  627. # We try first to get a high quality image:
  628. m_thumb = re.search(r'<span itemprop="thumbnail".*?href="(.*?)">',
  629. video_webpage, re.DOTALL)
  630. if m_thumb is not None:
  631. video_thumbnail = m_thumb.group(1)
  632. elif 'thumbnail_url' not in video_info:
  633. self._downloader.report_warning(u'unable to extract video thumbnail')
  634. video_thumbnail = None
  635. else: # don't panic if we can't find it
  636. video_thumbnail = compat_urllib_parse.unquote_plus(video_info['thumbnail_url'][0])
  637. # upload date
  638. upload_date = None
  639. mobj = re.search(r'(?s)id="eow-date.*?>(.*?)</span>', video_webpage)
  640. if mobj is None:
  641. mobj = re.search(
  642. r'(?s)id="watch-uploader-info".*?>.*?(?:Published|Uploaded|Streamed live) on (.*?)</strong>',
  643. video_webpage)
  644. if mobj is not None:
  645. upload_date = ' '.join(re.sub(r'[/,-]', r' ', mobj.group(1)).split())
  646. upload_date = unified_strdate(upload_date)
  647. m_cat_container = get_element_by_id("eow-category", video_webpage)
  648. if m_cat_container:
  649. category = self._html_search_regex(
  650. r'(?s)<a[^<]+>(.*?)</a>', m_cat_container, 'category',
  651. default=None)
  652. video_categories = None if category is None else [category]
  653. else:
  654. video_categories = None
  655. # description
  656. video_description = get_element_by_id("eow-description", video_webpage)
  657. if video_description:
  658. video_description = re.sub(r'''(?x)
  659. <a\s+
  660. (?:[a-zA-Z-]+="[^"]+"\s+)*?
  661. title="([^"]+)"\s+
  662. (?:[a-zA-Z-]+="[^"]+"\s+)*?
  663. class="yt-uix-redirect-link"\s*>
  664. [^<]+
  665. </a>
  666. ''', r'\1', video_description)
  667. video_description = clean_html(video_description)
  668. else:
  669. fd_mobj = re.search(r'<meta name="description" content="([^"]+)"', video_webpage)
  670. if fd_mobj:
  671. video_description = unescapeHTML(fd_mobj.group(1))
  672. else:
  673. video_description = u''
  674. def _extract_count(klass):
  675. count = self._search_regex(
  676. r'class="%s">([\d,]+)</span>' % re.escape(klass),
  677. video_webpage, klass, default=None)
  678. if count is not None:
  679. return int(count.replace(',', ''))
  680. return None
  681. like_count = _extract_count(u'likes-count')
  682. dislike_count = _extract_count(u'dislikes-count')
  683. # subtitles
  684. video_subtitles = self.extract_subtitles(video_id, video_webpage)
  685. if self._downloader.params.get('listsubtitles', False):
  686. self._list_available_subtitles(video_id, video_webpage)
  687. return
  688. if 'length_seconds' not in video_info:
  689. self._downloader.report_warning(u'unable to extract video duration')
  690. video_duration = None
  691. else:
  692. video_duration = int(compat_urllib_parse.unquote_plus(video_info['length_seconds'][0]))
  693. # annotations
  694. video_annotations = None
  695. if self._downloader.params.get('writeannotations', False):
  696. video_annotations = self._extract_annotations(video_id)
  697. # Decide which formats to download
  698. try:
  699. mobj = re.search(r';ytplayer\.config\s*=\s*({.*?});', video_webpage)
  700. if not mobj:
  701. raise ValueError('Could not find vevo ID')
  702. json_code = uppercase_escape(mobj.group(1))
  703. ytplayer_config = json.loads(json_code)
  704. args = ytplayer_config['args']
  705. # Easy way to know if the 's' value is in url_encoded_fmt_stream_map
  706. # this signatures are encrypted
  707. if 'url_encoded_fmt_stream_map' not in args:
  708. raise ValueError(u'No stream_map present') # caught below
  709. re_signature = re.compile(r'[&,]s=')
  710. m_s = re_signature.search(args['url_encoded_fmt_stream_map'])
  711. if m_s is not None:
  712. self.to_screen(u'%s: Encrypted signatures detected.' % video_id)
  713. video_info['url_encoded_fmt_stream_map'] = [args['url_encoded_fmt_stream_map']]
  714. m_s = re_signature.search(args.get('adaptive_fmts', u''))
  715. if m_s is not None:
  716. if 'adaptive_fmts' in video_info:
  717. video_info['adaptive_fmts'][0] += ',' + args['adaptive_fmts']
  718. else:
  719. video_info['adaptive_fmts'] = [args['adaptive_fmts']]
  720. except ValueError:
  721. pass
  722. def _map_to_format_list(urlmap):
  723. formats = []
  724. for itag, video_real_url in urlmap.items():
  725. dct = {
  726. 'format_id': itag,
  727. 'url': video_real_url,
  728. 'player_url': player_url,
  729. }
  730. if itag in self._formats:
  731. dct.update(self._formats[itag])
  732. formats.append(dct)
  733. return formats
  734. if 'conn' in video_info and video_info['conn'][0].startswith('rtmp'):
  735. self.report_rtmp_download()
  736. formats = [{
  737. 'format_id': '_rtmp',
  738. 'protocol': 'rtmp',
  739. 'url': video_info['conn'][0],
  740. 'player_url': player_url,
  741. }]
  742. elif len(video_info.get('url_encoded_fmt_stream_map', [])) >= 1 or len(video_info.get('adaptive_fmts', [])) >= 1:
  743. encoded_url_map = video_info.get('url_encoded_fmt_stream_map', [''])[0] + ',' + video_info.get('adaptive_fmts',[''])[0]
  744. if 'rtmpe%3Dyes' in encoded_url_map:
  745. raise ExtractorError('rtmpe downloads are not supported, see https://github.com/rg3/youtube-dl/issues/343 for more information.', expected=True)
  746. url_map = {}
  747. for url_data_str in encoded_url_map.split(','):
  748. url_data = compat_parse_qs(url_data_str)
  749. if 'itag' not in url_data or 'url' not in url_data:
  750. continue
  751. format_id = url_data['itag'][0]
  752. url = url_data['url'][0]
  753. if 'sig' in url_data:
  754. url += '&signature=' + url_data['sig'][0]
  755. elif 's' in url_data:
  756. encrypted_sig = url_data['s'][0]
  757. if not age_gate:
  758. jsplayer_url_json = self._search_regex(
  759. r'"assets":.+?"js":\s*("[^"]+")',
  760. video_webpage, u'JS player URL')
  761. player_url = json.loads(jsplayer_url_json)
  762. if player_url is None:
  763. player_url_json = self._search_regex(
  764. r'ytplayer\.config.*?"url"\s*:\s*("[^"]+")',
  765. video_webpage, u'age gate player URL')
  766. player_url = json.loads(player_url_json)
  767. if self._downloader.params.get('verbose'):
  768. if player_url is None:
  769. player_version = 'unknown'
  770. player_desc = 'unknown'
  771. else:
  772. if player_url.endswith('swf'):
  773. player_version = self._search_regex(
  774. r'-(.+?)(?:/watch_as3)?\.swf$', player_url,
  775. u'flash player', fatal=False)
  776. player_desc = 'flash player %s' % player_version
  777. else:
  778. player_version = self._search_regex(
  779. r'html5player-([^/]+?)(?:/html5player)?\.js',
  780. player_url,
  781. 'html5 player', fatal=False)
  782. player_desc = u'html5 player %s' % player_version
  783. parts_sizes = self._signature_cache_id(encrypted_sig)
  784. self.to_screen(u'{%s} signature length %s, %s' %
  785. (format_id, parts_sizes, player_desc))
  786. signature = self._decrypt_signature(
  787. encrypted_sig, video_id, player_url, age_gate)
  788. url += '&signature=' + signature
  789. if 'ratebypass' not in url:
  790. url += '&ratebypass=yes'
  791. url_map[format_id] = url
  792. formats = _map_to_format_list(url_map)
  793. elif video_info.get('hlsvp'):
  794. manifest_url = video_info['hlsvp'][0]
  795. url_map = self._extract_from_m3u8(manifest_url, video_id)
  796. formats = _map_to_format_list(url_map)
  797. else:
  798. raise ExtractorError(u'no conn, hlsvp or url_encoded_fmt_stream_map information found in video info')
  799. # Look for the DASH manifest
  800. if (self._downloader.params.get('youtube_include_dash_manifest', False)):
  801. try:
  802. # The DASH manifest used needs to be the one from the original video_webpage.
  803. # The one found in get_video_info seems to be using different signatures.
  804. # However, in the case of an age restriction there won't be any embedded dashmpd in the video_webpage.
  805. # Luckily, it seems, this case uses some kind of default signature (len == 86), so the
  806. # combination of get_video_info and the _static_decrypt_signature() decryption fallback will work here.
  807. if age_gate:
  808. dash_manifest_url = video_info.get('dashmpd')[0]
  809. else:
  810. dash_manifest_url = ytplayer_config['args']['dashmpd']
  811. def decrypt_sig(mobj):
  812. s = mobj.group(1)
  813. dec_s = self._decrypt_signature(s, video_id, player_url, age_gate)
  814. return '/signature/%s' % dec_s
  815. dash_manifest_url = re.sub(r'/s/([\w\.]+)', decrypt_sig, dash_manifest_url)
  816. dash_doc = self._download_xml(
  817. dash_manifest_url, video_id,
  818. note=u'Downloading DASH manifest',
  819. errnote=u'Could not download DASH manifest')
  820. for r in dash_doc.findall(u'.//{urn:mpeg:DASH:schema:MPD:2011}Representation'):
  821. url_el = r.find('{urn:mpeg:DASH:schema:MPD:2011}BaseURL')
  822. if url_el is None:
  823. continue
  824. format_id = r.attrib['id']
  825. video_url = url_el.text
  826. filesize = int_or_none(url_el.attrib.get('{http://youtube.com/yt/2012/10/10}contentLength'))
  827. f = {
  828. 'format_id': format_id,
  829. 'url': video_url,
  830. 'width': int_or_none(r.attrib.get('width')),
  831. 'tbr': int_or_none(r.attrib.get('bandwidth'), 1000),
  832. 'asr': int_or_none(r.attrib.get('audioSamplingRate')),
  833. 'filesize': filesize,
  834. }
  835. try:
  836. existing_format = next(
  837. fo for fo in formats
  838. if fo['format_id'] == format_id)
  839. except StopIteration:
  840. f.update(self._formats.get(format_id, {}))
  841. formats.append(f)
  842. else:
  843. existing_format.update(f)
  844. except (ExtractorError, KeyError) as e:
  845. self.report_warning(u'Skipping DASH manifest: %s' % e, video_id)
  846. self._sort_formats(formats)
  847. return {
  848. 'id': video_id,
  849. 'uploader': video_uploader,
  850. 'uploader_id': video_uploader_id,
  851. 'upload_date': upload_date,
  852. 'title': video_title,
  853. 'thumbnail': video_thumbnail,
  854. 'description': video_description,
  855. 'categories': video_categories,
  856. 'subtitles': video_subtitles,
  857. 'duration': video_duration,
  858. 'age_limit': 18 if age_gate else 0,
  859. 'annotations': video_annotations,
  860. 'webpage_url': proto + '://www.youtube.com/watch?v=%s' % video_id,
  861. 'view_count': view_count,
  862. 'like_count': like_count,
  863. 'dislike_count': dislike_count,
  864. 'formats': formats,
  865. }
  866. class YoutubePlaylistIE(YoutubeBaseInfoExtractor):
  867. IE_DESC = u'YouTube.com playlists'
  868. _VALID_URL = r"""(?x)(?:
  869. (?:https?://)?
  870. (?:\w+\.)?
  871. youtube\.com/
  872. (?:
  873. (?:course|view_play_list|my_playlists|artist|playlist|watch)
  874. \? (?:.*?&)*? (?:p|a|list)=
  875. | p/
  876. )
  877. (
  878. (?:PL|LL|EC|UU|FL|RD)?[0-9A-Za-z-_]{10,}
  879. # Top tracks, they can also include dots
  880. |(?:MC)[\w\.]*
  881. )
  882. .*
  883. |
  884. ((?:PL|LL|EC|UU|FL|RD)[0-9A-Za-z-_]{10,})
  885. )"""
  886. _TEMPLATE_URL = 'https://www.youtube.com/playlist?list=%s'
  887. _MORE_PAGES_INDICATOR = r'data-link-type="next"'
  888. _VIDEO_RE = r'href="\s*/watch\?v=(?P<id>[0-9A-Za-z_-]{11})&amp;[^"]*?index=(?P<index>\d+)'
  889. IE_NAME = u'youtube:playlist'
  890. def _real_initialize(self):
  891. self._login()
  892. def _ids_to_results(self, ids):
  893. return [self.url_result(vid_id, 'Youtube', video_id=vid_id)
  894. for vid_id in ids]
  895. def _extract_mix(self, playlist_id):
  896. # The mixes are generated from a a single video
  897. # the id of the playlist is just 'RD' + video_id
  898. url = 'https://youtube.com/watch?v=%s&list=%s' % (playlist_id[-11:], playlist_id)
  899. webpage = self._download_webpage(url, playlist_id, u'Downloading Youtube mix')
  900. search_title = lambda class_name: get_element_by_attribute('class', class_name, webpage)
  901. title_span = (search_title('playlist-title') or
  902. search_title('title long-title') or search_title('title'))
  903. title = clean_html(title_span)
  904. video_re = r'''(?x)data-video-username=".*?".*?
  905. href="/watch\?v=([0-9A-Za-z_-]{11})&amp;[^"]*?list=%s''' % re.escape(playlist_id)
  906. ids = orderedSet(re.findall(video_re, webpage, flags=re.DOTALL))
  907. url_results = self._ids_to_results(ids)
  908. return self.playlist_result(url_results, playlist_id, title)
  909. def _real_extract(self, url):
  910. # Extract playlist id
  911. mobj = re.match(self._VALID_URL, url)
  912. if mobj is None:
  913. raise ExtractorError(u'Invalid URL: %s' % url)
  914. playlist_id = mobj.group(1) or mobj.group(2)
  915. # Check if it's a video-specific URL
  916. query_dict = compat_urlparse.parse_qs(compat_urlparse.urlparse(url).query)
  917. if 'v' in query_dict:
  918. video_id = query_dict['v'][0]
  919. if self._downloader.params.get('noplaylist'):
  920. self.to_screen(u'Downloading just video %s because of --no-playlist' % video_id)
  921. return self.url_result(video_id, 'Youtube', video_id=video_id)
  922. else:
  923. self.to_screen(u'Downloading playlist %s - add --no-playlist to just download video %s' % (playlist_id, video_id))
  924. if playlist_id.startswith('RD'):
  925. # Mixes require a custom extraction process
  926. return self._extract_mix(playlist_id)
  927. if playlist_id.startswith('TL'):
  928. raise ExtractorError(u'For downloading YouTube.com top lists, use '
  929. u'the "yttoplist" keyword, for example "youtube-dl \'yttoplist:music:Top Tracks\'"', expected=True)
  930. url = self._TEMPLATE_URL % playlist_id
  931. page = self._download_webpage(url, playlist_id)
  932. more_widget_html = content_html = page
  933. # Check if the playlist exists or is private
  934. if re.search(r'<div class="yt-alert-message">[^<]*?(The|This) playlist (does not exist|is private)[^<]*?</div>', page) is not None:
  935. raise ExtractorError(
  936. u'The playlist doesn\'t exist or is private, use --username or '
  937. '--netrc to access it.',
  938. expected=True)
  939. # Extract the video ids from the playlist pages
  940. ids = []
  941. for page_num in itertools.count(1):
  942. matches = re.finditer(self._VIDEO_RE, content_html)
  943. # We remove the duplicates and the link with index 0
  944. # (it's not the first video of the playlist)
  945. new_ids = orderedSet(m.group('id') for m in matches if m.group('index') != '0')
  946. ids.extend(new_ids)
  947. mobj = re.search(r'data-uix-load-more-href="/?(?P<more>[^"]+)"', more_widget_html)
  948. if not mobj:
  949. break
  950. more = self._download_json(
  951. 'https://youtube.com/%s' % mobj.group('more'), playlist_id,
  952. 'Downloading page #%s' % page_num,
  953. transform_source=uppercase_escape)
  954. content_html = more['content_html']
  955. more_widget_html = more['load_more_widget_html']
  956. playlist_title = self._html_search_regex(
  957. r'(?s)<h1 class="pl-header-title[^"]*">\s*(.*?)\s*</h1>',
  958. page, u'title')
  959. url_results = self._ids_to_results(ids)
  960. return self.playlist_result(url_results, playlist_id, playlist_title)
  961. class YoutubeTopListIE(YoutubePlaylistIE):
  962. IE_NAME = u'youtube:toplist'
  963. IE_DESC = (u'YouTube.com top lists, "yttoplist:{channel}:{list title}"'
  964. u' (Example: "yttoplist:music:Top Tracks")')
  965. _VALID_URL = r'yttoplist:(?P<chann>.*?):(?P<title>.*?)$'
  966. def _real_extract(self, url):
  967. mobj = re.match(self._VALID_URL, url)
  968. channel = mobj.group('chann')
  969. title = mobj.group('title')
  970. query = compat_urllib_parse.urlencode({'title': title})
  971. playlist_re = 'href="([^"]+?%s.*?)"' % re.escape(query)
  972. channel_page = self._download_webpage('https://www.youtube.com/%s' % channel, title)
  973. link = self._html_search_regex(playlist_re, channel_page, u'list')
  974. url = compat_urlparse.urljoin('https://www.youtube.com/', link)
  975. video_re = r'data-index="\d+".*?data-video-id="([0-9A-Za-z_-]{11})"'
  976. ids = []
  977. # sometimes the webpage doesn't contain the videos
  978. # retry until we get them
  979. for i in itertools.count(0):
  980. msg = u'Downloading Youtube mix'
  981. if i > 0:
  982. msg += ', retry #%d' % i
  983. webpage = self._download_webpage(url, title, msg)
  984. ids = orderedSet(re.findall(video_re, webpage))
  985. if ids:
  986. break
  987. url_results = self._ids_to_results(ids)
  988. return self.playlist_result(url_results, playlist_title=title)
  989. class YoutubeChannelIE(InfoExtractor):
  990. IE_DESC = u'YouTube.com channels'
  991. _VALID_URL = r"^(?:https?://)?(?:youtu\.be|(?:\w+\.)?youtube(?:-nocookie)?\.com)/channel/([0-9A-Za-z_-]+)"
  992. _MORE_PAGES_INDICATOR = 'yt-uix-load-more'
  993. _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'
  994. IE_NAME = u'youtube:channel'
  995. def extract_videos_from_page(self, page):
  996. ids_in_page = []
  997. for mobj in re.finditer(r'href="/watch\?v=([0-9A-Za-z_-]+)&?', page):
  998. if mobj.group(1) not in ids_in_page:
  999. ids_in_page.append(mobj.group(1))
  1000. return ids_in_page
  1001. def _real_extract(self, url):
  1002. # Extract channel id
  1003. mobj = re.match(self._VALID_URL, url)
  1004. if mobj is None:
  1005. raise ExtractorError(u'Invalid URL: %s' % url)
  1006. # Download channel page
  1007. channel_id = mobj.group(1)
  1008. video_ids = []
  1009. url = 'https://www.youtube.com/channel/%s/videos' % channel_id
  1010. channel_page = self._download_webpage(url, channel_id)
  1011. autogenerated = re.search(r'''(?x)
  1012. class="[^"]*?(?:
  1013. channel-header-autogenerated-label|
  1014. yt-channel-title-autogenerated
  1015. )[^"]*"''', channel_page) is not None
  1016. if autogenerated:
  1017. # The videos are contained in a single page
  1018. # the ajax pages can't be used, they are empty
  1019. video_ids = self.extract_videos_from_page(channel_page)
  1020. else:
  1021. # Download all channel pages using the json-based channel_ajax query
  1022. for pagenum in itertools.count(1):
  1023. url = self._MORE_PAGES_URL % (pagenum, channel_id)
  1024. page = self._download_json(
  1025. url, channel_id, note=u'Downloading page #%s' % pagenum,
  1026. transform_source=uppercase_escape)
  1027. ids_in_page = self.extract_videos_from_page(page['content_html'])
  1028. video_ids.extend(ids_in_page)
  1029. if self._MORE_PAGES_INDICATOR not in page['load_more_widget_html']:
  1030. break
  1031. self._downloader.to_screen(u'[youtube] Channel %s: Found %i videos' % (channel_id, len(video_ids)))
  1032. url_entries = [self.url_result(video_id, 'Youtube', video_id=video_id)
  1033. for video_id in video_ids]
  1034. return self.playlist_result(url_entries, channel_id)
  1035. class YoutubeUserIE(InfoExtractor):
  1036. IE_DESC = u'YouTube.com user videos (URL or "ytuser" keyword)'
  1037. _VALID_URL = r'(?:(?:(?:https?://)?(?:\w+\.)?youtube\.com/(?:user/)?(?!(?:attribution_link|watch|results)(?:$|[^a-z_A-Z0-9-])))|ytuser:)(?!feed/)([A-Za-z0-9_-]+)'
  1038. _TEMPLATE_URL = 'https://gdata.youtube.com/feeds/api/users/%s'
  1039. _GDATA_PAGE_SIZE = 50
  1040. _GDATA_URL = 'https://gdata.youtube.com/feeds/api/users/%s/uploads?max-results=%d&start-index=%d&alt=json'
  1041. IE_NAME = u'youtube:user'
  1042. @classmethod
  1043. def suitable(cls, url):
  1044. # Don't return True if the url can be extracted with other youtube
  1045. # extractor, the regex would is too permissive and it would match.
  1046. other_ies = iter(klass for (name, klass) in globals().items() if name.endswith('IE') and klass is not cls)
  1047. if any(ie.suitable(url) for ie in other_ies): return False
  1048. else: return super(YoutubeUserIE, cls).suitable(url)
  1049. def _real_extract(self, url):
  1050. # Extract username
  1051. mobj = re.match(self._VALID_URL, url)
  1052. if mobj is None:
  1053. raise ExtractorError(u'Invalid URL: %s' % url)
  1054. username = mobj.group(1)
  1055. # Download video ids using YouTube Data API. Result size per
  1056. # query is limited (currently to 50 videos) so we need to query
  1057. # page by page until there are no video ids - it means we got
  1058. # all of them.
  1059. def download_page(pagenum):
  1060. start_index = pagenum * self._GDATA_PAGE_SIZE + 1
  1061. gdata_url = self._GDATA_URL % (username, self._GDATA_PAGE_SIZE, start_index)
  1062. page = self._download_webpage(
  1063. gdata_url, username,
  1064. u'Downloading video ids from %d to %d' % (
  1065. start_index, start_index + self._GDATA_PAGE_SIZE))
  1066. try:
  1067. response = json.loads(page)
  1068. except ValueError as err:
  1069. raise ExtractorError(u'Invalid JSON in API response: ' + compat_str(err))
  1070. if 'entry' not in response['feed']:
  1071. return
  1072. # Extract video identifiers
  1073. entries = response['feed']['entry']
  1074. for entry in entries:
  1075. title = entry['title']['$t']
  1076. video_id = entry['id']['$t'].split('/')[-1]
  1077. yield {
  1078. '_type': 'url',
  1079. 'url': video_id,
  1080. 'ie_key': 'Youtube',
  1081. 'id': video_id,
  1082. 'title': title,
  1083. }
  1084. url_results = PagedList(download_page, self._GDATA_PAGE_SIZE)
  1085. return self.playlist_result(url_results, playlist_title=username)
  1086. class YoutubeSearchIE(SearchInfoExtractor):
  1087. IE_DESC = u'YouTube.com searches'
  1088. _API_URL = u'https://gdata.youtube.com/feeds/api/videos?q=%s&start-index=%i&max-results=50&v=2&alt=jsonc'
  1089. _MAX_RESULTS = 1000
  1090. IE_NAME = u'youtube:search'
  1091. _SEARCH_KEY = 'ytsearch'
  1092. def _get_n_results(self, query, n):
  1093. """Get a specified number of results for a query"""
  1094. video_ids = []
  1095. pagenum = 0
  1096. limit = n
  1097. PAGE_SIZE = 50
  1098. while (PAGE_SIZE * pagenum) < limit:
  1099. result_url = self._API_URL % (
  1100. compat_urllib_parse.quote_plus(query.encode('utf-8')),
  1101. (PAGE_SIZE * pagenum) + 1)
  1102. data_json = self._download_webpage(
  1103. result_url, video_id=u'query "%s"' % query,
  1104. note=u'Downloading page %s' % (pagenum + 1),
  1105. errnote=u'Unable to download API page')
  1106. data = json.loads(data_json)
  1107. api_response = data['data']
  1108. if 'items' not in api_response:
  1109. raise ExtractorError(
  1110. u'[youtube] No video results', expected=True)
  1111. new_ids = list(video['id'] for video in api_response['items'])
  1112. video_ids += new_ids
  1113. limit = min(n, api_response['totalItems'])
  1114. pagenum += 1
  1115. if len(video_ids) > n:
  1116. video_ids = video_ids[:n]
  1117. videos = [self.url_result(video_id, 'Youtube', video_id=video_id)
  1118. for video_id in video_ids]
  1119. return self.playlist_result(videos, query)
  1120. class YoutubeSearchDateIE(YoutubeSearchIE):
  1121. IE_NAME = YoutubeSearchIE.IE_NAME + ':date'
  1122. _API_URL = 'https://gdata.youtube.com/feeds/api/videos?q=%s&start-index=%i&max-results=50&v=2&alt=jsonc&orderby=published'
  1123. _SEARCH_KEY = 'ytsearchdate'
  1124. IE_DESC = u'YouTube.com searches, newest videos first'
  1125. class YoutubeSearchURLIE(InfoExtractor):
  1126. IE_DESC = u'YouTube.com search URLs'
  1127. IE_NAME = u'youtube:search_url'
  1128. _VALID_URL = r'https?://(?:www\.)?youtube\.com/results\?(.*?&)?search_query=(?P<query>[^&]+)(?:[&]|$)'
  1129. def _real_extract(self, url):
  1130. mobj = re.match(self._VALID_URL, url)
  1131. query = compat_urllib_parse.unquote_plus(mobj.group('query'))
  1132. webpage = self._download_webpage(url, query)
  1133. result_code = self._search_regex(
  1134. r'(?s)<ol class="item-section"(.*?)</ol>', webpage, u'result HTML')
  1135. part_codes = re.findall(
  1136. r'(?s)<h3 class="yt-lockup-title">(.*?)</h3>', result_code)
  1137. entries = []
  1138. for part_code in part_codes:
  1139. part_title = self._html_search_regex(
  1140. [r'(?s)title="([^"]+)"', r'>([^<]+)</a>'], part_code, 'item title', fatal=False)
  1141. part_url_snippet = self._html_search_regex(
  1142. r'(?s)href="([^"]+)"', part_code, 'item URL')
  1143. part_url = compat_urlparse.urljoin(
  1144. 'https://www.youtube.com/', part_url_snippet)
  1145. entries.append({
  1146. '_type': 'url',
  1147. 'url': part_url,
  1148. 'title': part_title,
  1149. })
  1150. return {
  1151. '_type': 'playlist',
  1152. 'entries': entries,
  1153. 'title': query,
  1154. }
  1155. class YoutubeShowIE(InfoExtractor):
  1156. IE_DESC = u'YouTube.com (multi-season) shows'
  1157. _VALID_URL = r'https?://www\.youtube\.com/show/(.*)'
  1158. IE_NAME = u'youtube:show'
  1159. def _real_extract(self, url):
  1160. mobj = re.match(self._VALID_URL, url)
  1161. show_name = mobj.group(1)
  1162. webpage = self._download_webpage(url, show_name, u'Downloading show webpage')
  1163. # There's one playlist for each season of the show
  1164. m_seasons = list(re.finditer(r'href="(/playlist\?list=.*?)"', webpage))
  1165. self.to_screen(u'%s: Found %s seasons' % (show_name, len(m_seasons)))
  1166. return [self.url_result('https://www.youtube.com' + season.group(1), 'YoutubePlaylist') for season in m_seasons]
  1167. class YoutubeFeedsInfoExtractor(YoutubeBaseInfoExtractor):
  1168. """
  1169. Base class for extractors that fetch info from
  1170. http://www.youtube.com/feed_ajax
  1171. Subclasses must define the _FEED_NAME and _PLAYLIST_TITLE properties.
  1172. """
  1173. _LOGIN_REQUIRED = True
  1174. # use action_load_personal_feed instead of action_load_system_feed
  1175. _PERSONAL_FEED = False
  1176. @property
  1177. def _FEED_TEMPLATE(self):
  1178. action = 'action_load_system_feed'
  1179. if self._PERSONAL_FEED:
  1180. action = 'action_load_personal_feed'
  1181. return 'https://www.youtube.com/feed_ajax?%s=1&feed_name=%s&paging=%%s' % (action, self._FEED_NAME)
  1182. @property
  1183. def IE_NAME(self):
  1184. return u'youtube:%s' % self._FEED_NAME
  1185. def _real_initialize(self):
  1186. self._login()
  1187. def _real_extract(self, url):
  1188. feed_entries = []
  1189. paging = 0
  1190. for i in itertools.count(1):
  1191. info = self._download_json(self._FEED_TEMPLATE % paging,
  1192. u'%s feed' % self._FEED_NAME,
  1193. u'Downloading page %s' % i)
  1194. feed_html = info.get('feed_html') or info.get('content_html')
  1195. m_ids = re.finditer(r'"/watch\?v=(.*?)["&]', feed_html)
  1196. ids = orderedSet(m.group(1) for m in m_ids)
  1197. feed_entries.extend(
  1198. self.url_result(video_id, 'Youtube', video_id=video_id)
  1199. for video_id in ids)
  1200. mobj = re.search(
  1201. r'data-uix-load-more-href="/?[^"]+paging=(?P<paging>\d+)',
  1202. feed_html)
  1203. if mobj is None:
  1204. break
  1205. paging = mobj.group('paging')
  1206. return self.playlist_result(feed_entries, playlist_title=self._PLAYLIST_TITLE)
  1207. class YoutubeSubscriptionsIE(YoutubeFeedsInfoExtractor):
  1208. IE_DESC = u'YouTube.com subscriptions feed, "ytsubs" keyword (requires authentication)'
  1209. _VALID_URL = r'https?://www\.youtube\.com/feed/subscriptions|:ytsubs(?:criptions)?'
  1210. _FEED_NAME = 'subscriptions'
  1211. _PLAYLIST_TITLE = u'Youtube Subscriptions'
  1212. class YoutubeRecommendedIE(YoutubeFeedsInfoExtractor):
  1213. IE_DESC = u'YouTube.com recommended videos, "ytrec" keyword (requires authentication)'
  1214. _VALID_URL = r'https?://www\.youtube\.com/feed/recommended|:ytrec(?:ommended)?'
  1215. _FEED_NAME = 'recommended'
  1216. _PLAYLIST_TITLE = u'Youtube Recommended videos'
  1217. class YoutubeWatchLaterIE(YoutubeFeedsInfoExtractor):
  1218. IE_DESC = u'Youtube watch later list, "ytwatchlater" keyword (requires authentication)'
  1219. _VALID_URL = r'https?://www\.youtube\.com/feed/watch_later|:ytwatchlater'
  1220. _FEED_NAME = 'watch_later'
  1221. _PLAYLIST_TITLE = u'Youtube Watch Later'
  1222. _PERSONAL_FEED = True
  1223. class YoutubeHistoryIE(YoutubeFeedsInfoExtractor):
  1224. IE_DESC = u'Youtube watch history, "ythistory" keyword (requires authentication)'
  1225. _VALID_URL = u'https?://www\.youtube\.com/feed/history|:ythistory'
  1226. _FEED_NAME = 'history'
  1227. _PERSONAL_FEED = True
  1228. _PLAYLIST_TITLE = u'Youtube Watch History'
  1229. class YoutubeFavouritesIE(YoutubeBaseInfoExtractor):
  1230. IE_NAME = u'youtube:favorites'
  1231. IE_DESC = u'YouTube.com favourite videos, "ytfav" keyword (requires authentication)'
  1232. _VALID_URL = r'https?://www\.youtube\.com/my_favorites|:ytfav(?:ou?rites)?'
  1233. _LOGIN_REQUIRED = True
  1234. def _real_extract(self, url):
  1235. webpage = self._download_webpage('https://www.youtube.com/my_favorites', 'Youtube Favourites videos')
  1236. playlist_id = self._search_regex(r'list=(.+?)["&]', webpage, u'favourites playlist id')
  1237. return self.url_result(playlist_id, 'YoutubePlaylist')
  1238. class YoutubeTruncatedURLIE(InfoExtractor):
  1239. IE_NAME = 'youtube:truncated_url'
  1240. IE_DESC = False # Do not list
  1241. _VALID_URL = r'''(?x)
  1242. (?:https?://)?[^/]+/watch\?(?:
  1243. feature=[a-z_]+|
  1244. annotation_id=annotation_[^&]+
  1245. )?$|
  1246. (?:https?://)?(?:www\.)?youtube\.com/attribution_link\?a=[^&]+$
  1247. '''
  1248. _TESTS = [{
  1249. 'url': 'http://www.youtube.com/watch?annotation_id=annotation_3951667041',
  1250. 'only_matching': True,
  1251. }, {
  1252. 'url': 'http://www.youtube.com/watch?',
  1253. 'only_matching': True,
  1254. }]
  1255. def _real_extract(self, url):
  1256. raise ExtractorError(
  1257. u'Did you forget to quote the URL? Remember that & is a meta '
  1258. u'character in most shells, so you want to put the URL in quotes, '
  1259. u'like youtube-dl '
  1260. u'"http://www.youtube.com/watch?feature=foo&v=BaW_jenozKc" '
  1261. u' or simply youtube-dl BaW_jenozKc .',
  1262. expected=True)