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.

1810 lines
79 KiB

11 years ago
  1. # coding: utf-8
  2. import collections
  3. import errno
  4. import io
  5. import itertools
  6. import json
  7. import os.path
  8. import re
  9. import struct
  10. import traceback
  11. import zlib
  12. from .common import InfoExtractor, SearchInfoExtractor
  13. from .subtitles import SubtitlesInfoExtractor
  14. from ..jsinterp import JSInterpreter
  15. from ..utils import (
  16. compat_chr,
  17. compat_parse_qs,
  18. compat_urllib_parse,
  19. compat_urllib_request,
  20. compat_urlparse,
  21. compat_str,
  22. clean_html,
  23. get_cachedir,
  24. get_element_by_id,
  25. get_element_by_attribute,
  26. ExtractorError,
  27. int_or_none,
  28. PagedList,
  29. unescapeHTML,
  30. unified_strdate,
  31. orderedSet,
  32. write_json_file,
  33. uppercase_escape,
  34. )
  35. class YoutubeBaseInfoExtractor(InfoExtractor):
  36. """Provide base functions for Youtube extractors"""
  37. _LOGIN_URL = 'https://accounts.google.com/ServiceLogin'
  38. _LANG_URL = r'https://www.youtube.com/?hl=en&persist_hl=1&gl=US&persist_gl=1&opt_out_ackd=1'
  39. _AGE_URL = 'https://www.youtube.com/verify_age?next_url=/&gl=US&hl=en'
  40. _NETRC_MACHINE = 'youtube'
  41. # If True it will raise an error if no login info is provided
  42. _LOGIN_REQUIRED = False
  43. def _set_language(self):
  44. return bool(self._download_webpage(
  45. self._LANG_URL, None,
  46. note=u'Setting language', errnote='unable to set language',
  47. fatal=False))
  48. def _login(self):
  49. (username, password) = self._get_login_info()
  50. # No authentication to be performed
  51. if username is None:
  52. if self._LOGIN_REQUIRED:
  53. raise ExtractorError(u'No login info available, needed for using %s.' % self.IE_NAME, expected=True)
  54. return False
  55. login_page = self._download_webpage(
  56. self._LOGIN_URL, None,
  57. note=u'Downloading login page',
  58. errnote=u'unable to fetch login page', fatal=False)
  59. if login_page is False:
  60. return
  61. galx = self._search_regex(r'(?s)<input.+?name="GALX".+?value="(.+?)"',
  62. login_page, u'Login GALX parameter')
  63. # Log in
  64. login_form_strs = {
  65. u'continue': u'https://www.youtube.com/signin?action_handle_signin=true&feature=sign_in_button&hl=en_US&nomobiletemp=1',
  66. u'Email': username,
  67. u'GALX': galx,
  68. u'Passwd': password,
  69. u'PersistentCookie': u'yes',
  70. u'_utf8': u'',
  71. u'bgresponse': u'js_disabled',
  72. u'checkConnection': u'',
  73. u'checkedDomains': u'youtube',
  74. u'dnConn': u'',
  75. u'pstMsg': u'0',
  76. u'rmShown': u'1',
  77. u'secTok': u'',
  78. u'signIn': u'Sign in',
  79. u'timeStmp': u'',
  80. u'service': u'youtube',
  81. u'uilel': u'3',
  82. u'hl': u'en_US',
  83. }
  84. # Convert to UTF-8 *before* urlencode because Python 2.x's urlencode
  85. # chokes on unicode
  86. login_form = dict((k.encode('utf-8'), v.encode('utf-8')) for k,v in login_form_strs.items())
  87. login_data = compat_urllib_parse.urlencode(login_form).encode('ascii')
  88. req = compat_urllib_request.Request(self._LOGIN_URL, login_data)
  89. login_results = self._download_webpage(
  90. req, None,
  91. note=u'Logging in', errnote=u'unable to log in', fatal=False)
  92. if login_results is False:
  93. return False
  94. if re.search(r'(?i)<form[^>]* id="gaia_loginform"', login_results) is not None:
  95. self._downloader.report_warning(u'unable to log in: bad username or password')
  96. return False
  97. return True
  98. def _confirm_age(self):
  99. age_form = {
  100. 'next_url': '/',
  101. 'action_confirm': 'Confirm',
  102. }
  103. req = compat_urllib_request.Request(self._AGE_URL,
  104. compat_urllib_parse.urlencode(age_form).encode('ascii'))
  105. self._download_webpage(
  106. req, None,
  107. note=u'Confirming age', errnote=u'Unable to confirm age')
  108. return True
  109. def _real_initialize(self):
  110. if self._downloader is None:
  111. return
  112. if not self._set_language():
  113. return
  114. if not self._login():
  115. return
  116. self._confirm_age()
  117. class YoutubeIE(YoutubeBaseInfoExtractor, SubtitlesInfoExtractor):
  118. IE_DESC = u'YouTube.com'
  119. _VALID_URL = r"""(?x)^
  120. (
  121. (?:https?://|//)? # http(s):// or protocol-independent URL (optional)
  122. (?:(?:(?:(?:\w+\.)?[yY][oO][uU][tT][uU][bB][eE](?:-nocookie)?\.com/|
  123. (?:www\.)?deturl\.com/www\.youtube\.com/|
  124. (?:www\.)?pwnyoutube\.com/|
  125. (?:www\.)?yourepeat\.com/|
  126. tube\.majestyc\.net/|
  127. youtube\.googleapis\.com/) # the various hostnames, with wildcard subdomains
  128. (?:.*?\#/)? # handle anchor (#/) redirect urls
  129. (?: # the various things that can precede the ID:
  130. (?:(?:v|embed|e)/) # v/ or embed/ or e/
  131. |(?: # or the v= param in all its forms
  132. (?:(?:watch|movie)(?:_popup)?(?:\.php)?/?)? # preceding watch(_popup|.php) or nothing (like /?v=xxxx)
  133. (?:\?|\#!?) # the params delimiter ? or # or #!
  134. (?:.*?&)? # any other preceding param (like /?s=tuff&v=xxxx)
  135. v=
  136. )
  137. ))
  138. |youtu\.be/ # just youtu.be/xxxx
  139. |https?://(?:www\.)?cleanvideosearch\.com/media/action/yt/watch\?videoId=
  140. )
  141. )? # all until now is optional -> you can pass the naked ID
  142. ([0-9A-Za-z_-]{11}) # here is it! the YouTube video ID
  143. (?(1).+)? # if we found the ID, everything can follow
  144. $"""
  145. _NEXT_URL_RE = r'[\?&]next_url=([^&]+)'
  146. _formats = {
  147. '5': {'ext': 'flv', 'width': 400, 'height': 240},
  148. '6': {'ext': 'flv', 'width': 450, 'height': 270},
  149. '13': {'ext': '3gp'},
  150. '17': {'ext': '3gp', 'width': 176, 'height': 144},
  151. '18': {'ext': 'mp4', 'width': 640, 'height': 360},
  152. '22': {'ext': 'mp4', 'width': 1280, 'height': 720},
  153. '34': {'ext': 'flv', 'width': 640, 'height': 360},
  154. '35': {'ext': 'flv', 'width': 854, 'height': 480},
  155. '36': {'ext': '3gp', 'width': 320, 'height': 240},
  156. '37': {'ext': 'mp4', 'width': 1920, 'height': 1080},
  157. '38': {'ext': 'mp4', 'width': 4096, 'height': 3072},
  158. '43': {'ext': 'webm', 'width': 640, 'height': 360},
  159. '44': {'ext': 'webm', 'width': 854, 'height': 480},
  160. '45': {'ext': 'webm', 'width': 1280, 'height': 720},
  161. '46': {'ext': 'webm', 'width': 1920, 'height': 1080},
  162. # 3d videos
  163. '82': {'ext': 'mp4', 'height': 360, 'format_note': '3D', 'preference': -20},
  164. '83': {'ext': 'mp4', 'height': 480, 'format_note': '3D', 'preference': -20},
  165. '84': {'ext': 'mp4', 'height': 720, 'format_note': '3D', 'preference': -20},
  166. '85': {'ext': 'mp4', 'height': 1080, 'format_note': '3D', 'preference': -20},
  167. '100': {'ext': 'webm', 'height': 360, 'format_note': '3D', 'preference': -20},
  168. '101': {'ext': 'webm', 'height': 480, 'format_note': '3D', 'preference': -20},
  169. '102': {'ext': 'webm', 'height': 720, 'format_note': '3D', 'preference': -20},
  170. # Apple HTTP Live Streaming
  171. '92': {'ext': 'mp4', 'height': 240, 'format_note': 'HLS', 'preference': -10},
  172. '93': {'ext': 'mp4', 'height': 360, 'format_note': 'HLS', 'preference': -10},
  173. '94': {'ext': 'mp4', 'height': 480, 'format_note': 'HLS', 'preference': -10},
  174. '95': {'ext': 'mp4', 'height': 720, 'format_note': 'HLS', 'preference': -10},
  175. '96': {'ext': 'mp4', 'height': 1080, 'format_note': 'HLS', 'preference': -10},
  176. '132': {'ext': 'mp4', 'height': 240, 'format_note': 'HLS', 'preference': -10},
  177. '151': {'ext': 'mp4', 'height': 72, 'format_note': 'HLS', 'preference': -10},
  178. # DASH mp4 video
  179. '133': {'ext': 'mp4', 'height': 240, 'format_note': 'DASH video', 'acodec': 'none', 'preference': -40},
  180. '134': {'ext': 'mp4', 'height': 360, 'format_note': 'DASH video', 'acodec': 'none', 'preference': -40},
  181. '135': {'ext': 'mp4', 'height': 480, 'format_note': 'DASH video', 'acodec': 'none', 'preference': -40},
  182. '136': {'ext': 'mp4', 'height': 720, 'format_note': 'DASH video', 'acodec': 'none', 'preference': -40},
  183. '137': {'ext': 'mp4', 'height': 1080, 'format_note': 'DASH video', 'acodec': 'none', 'preference': -40},
  184. '138': {'ext': 'mp4', 'height': 2160, 'format_note': 'DASH video', 'acodec': 'none', 'preference': -40},
  185. '160': {'ext': 'mp4', 'height': 144, 'format_note': 'DASH video', 'acodec': 'none', 'preference': -40},
  186. '264': {'ext': 'mp4', 'height': 1440, 'format_note': 'DASH video', 'acodec': 'none', 'preference': -40},
  187. # Dash mp4 audio
  188. '139': {'ext': 'm4a', 'format_note': 'DASH audio', 'vcodec': 'none', 'abr': 48, 'preference': -50},
  189. '140': {'ext': 'm4a', 'format_note': 'DASH audio', 'vcodec': 'none', 'abr': 128, 'preference': -50},
  190. '141': {'ext': 'm4a', 'format_note': 'DASH audio', 'vcodec': 'none', 'abr': 256, 'preference': -50},
  191. # Dash webm
  192. '167': {'ext': 'webm', 'height': 360, 'width': 640, 'format_note': 'DASH video', 'acodec': 'none', 'container': 'webm', 'vcodec': 'VP8', 'acodec': 'none', 'preference': -40},
  193. '168': {'ext': 'webm', 'height': 480, 'width': 854, 'format_note': 'DASH video', 'acodec': 'none', 'container': 'webm', 'vcodec': 'VP8', 'acodec': 'none', 'preference': -40},
  194. '169': {'ext': 'webm', 'height': 720, 'width': 1280, 'format_note': 'DASH video', 'acodec': 'none', 'container': 'webm', 'vcodec': 'VP8', 'acodec': 'none', 'preference': -40},
  195. '170': {'ext': 'webm', 'height': 1080, 'width': 1920, 'format_note': 'DASH video', 'acodec': 'none', 'container': 'webm', 'vcodec': 'VP8', 'acodec': 'none', 'preference': -40},
  196. '218': {'ext': 'webm', 'height': 480, 'width': 854, 'format_note': 'DASH video', 'acodec': 'none', 'container': 'webm', 'vcodec': 'VP8', 'acodec': 'none', 'preference': -40},
  197. '219': {'ext': 'webm', 'height': 480, 'width': 854, 'format_note': 'DASH video', 'acodec': 'none', 'container': 'webm', 'vcodec': 'VP8', 'acodec': 'none', 'preference': -40},
  198. '242': {'ext': 'webm', 'height': 240, 'format_note': 'DASH webm', 'preference': -40},
  199. '243': {'ext': 'webm', 'height': 360, 'format_note': 'DASH webm', 'preference': -40},
  200. '244': {'ext': 'webm', 'height': 480, 'format_note': 'DASH webm', 'preference': -40},
  201. '245': {'ext': 'webm', 'height': 480, 'format_note': 'DASH webm', 'preference': -40},
  202. '246': {'ext': 'webm', 'height': 480, 'format_note': 'DASH webm', 'preference': -40},
  203. '247': {'ext': 'webm', 'height': 720, 'format_note': 'DASH webm', 'preference': -40},
  204. '248': {'ext': 'webm', 'height': 1080, 'format_note': 'DASH webm', 'preference': -40},
  205. # Dash webm audio
  206. '171': {'ext': 'webm', 'vcodec': 'none', 'format_note': 'DASH webm audio', 'abr': 48, 'preference': -50},
  207. '172': {'ext': 'webm', 'vcodec': 'none', 'format_note': 'DASH webm 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. }
  223. },
  224. {
  225. u"url": u"http://www.youtube.com/watch?v=UxxajLWwzqY",
  226. u"file": u"UxxajLWwzqY.mp4",
  227. u"note": u"Test generic use_cipher_signature video (#897)",
  228. u"info_dict": {
  229. u"upload_date": u"20120506",
  230. u"title": u"Icona Pop - I Love It (feat. Charli XCX) [OFFICIAL VIDEO]",
  231. u"description": u"md5:5b292926389560516e384ac437c0ec07",
  232. u"uploader": u"Icona Pop",
  233. u"uploader_id": u"IconaPop"
  234. }
  235. },
  236. {
  237. u"url": u"https://www.youtube.com/watch?v=07FYdnEawAQ",
  238. u"file": u"07FYdnEawAQ.mp4",
  239. u"note": u"Test VEVO video with age protection (#956)",
  240. u"info_dict": {
  241. u"upload_date": u"20130703",
  242. u"title": u"Justin Timberlake - Tunnel Vision (Explicit)",
  243. u"description": u"md5:64249768eec3bc4276236606ea996373",
  244. u"uploader": u"justintimberlakeVEVO",
  245. u"uploader_id": u"justintimberlakeVEVO"
  246. }
  247. },
  248. {
  249. u"url": u"//www.YouTube.com/watch?v=yZIXLfi8CZQ",
  250. u"file": u"yZIXLfi8CZQ.mp4",
  251. u"note": u"Embed-only video (#1746)",
  252. u"info_dict": {
  253. u"upload_date": u"20120608",
  254. u"title": u"Principal Sexually Assaults A Teacher - Episode 117 - 8th June 2012",
  255. u"description": u"md5:09b78bd971f1e3e289601dfba15ca4f7",
  256. u"uploader": u"SET India",
  257. u"uploader_id": u"setindia"
  258. }
  259. },
  260. {
  261. u"url": u"http://www.youtube.com/watch?v=a9LDPn-MO4I",
  262. u"file": u"a9LDPn-MO4I.m4a",
  263. u"note": u"256k DASH audio (format 141) via DASH manifest",
  264. u"info_dict": {
  265. u"upload_date": "20121002",
  266. u"uploader_id": "8KVIDEO",
  267. u"description": "No description available.",
  268. u"uploader": "8KVIDEO",
  269. u"title": "UHDTV TEST 8K VIDEO.mp4"
  270. },
  271. u"params": {
  272. u"youtube_include_dash_manifest": True,
  273. u"format": "141",
  274. },
  275. },
  276. # DASH manifest with encrypted signature
  277. {
  278. u'url': u'https://www.youtube.com/watch?v=IB3lcPjvWLA',
  279. u'info_dict': {
  280. u'id': u'IB3lcPjvWLA',
  281. u'ext': u'm4a',
  282. u'title': u'Afrojack - The Spark ft. Spree Wilson',
  283. u'description': u'md5:3199ed45ee8836572865580804d7ac0f',
  284. u'uploader': u'AfrojackVEVO',
  285. u'uploader_id': u'AfrojackVEVO',
  286. u'upload_date': u'20131011',
  287. },
  288. u"params": {
  289. u'youtube_include_dash_manifest': True,
  290. u'format': '141',
  291. },
  292. },
  293. ]
  294. @classmethod
  295. def suitable(cls, url):
  296. """Receives a URL and returns True if suitable for this IE."""
  297. if YoutubePlaylistIE.suitable(url): return False
  298. return re.match(cls._VALID_URL, url) is not None
  299. def __init__(self, *args, **kwargs):
  300. super(YoutubeIE, self).__init__(*args, **kwargs)
  301. self._player_cache = {}
  302. def report_video_info_webpage_download(self, video_id):
  303. """Report attempt to download video info webpage."""
  304. self.to_screen(u'%s: Downloading video info webpage' % video_id)
  305. def report_information_extraction(self, video_id):
  306. """Report attempt to extract video information."""
  307. self.to_screen(u'%s: Extracting video information' % video_id)
  308. def report_unavailable_format(self, video_id, format):
  309. """Report extracted video URL."""
  310. self.to_screen(u'%s: Format %s not available' % (video_id, format))
  311. def report_rtmp_download(self):
  312. """Indicate the download will use the RTMP protocol."""
  313. self.to_screen(u'RTMP download detected')
  314. def _extract_signature_function(self, video_id, player_url, slen):
  315. id_m = re.match(r'.*-(?P<id>[a-zA-Z0-9_-]+)\.(?P<ext>[a-z]+)$',
  316. player_url)
  317. player_type = id_m.group('ext')
  318. player_id = id_m.group('id')
  319. # Read from filesystem cache
  320. func_id = '%s_%s_%d' % (player_type, player_id, slen)
  321. assert os.path.basename(func_id) == func_id
  322. cache_dir = get_cachedir(self._downloader.params)
  323. cache_enabled = cache_dir is not None
  324. if cache_enabled:
  325. cache_fn = os.path.join(os.path.expanduser(cache_dir),
  326. u'youtube-sigfuncs',
  327. func_id + '.json')
  328. try:
  329. with io.open(cache_fn, 'r', encoding='utf-8') as cachef:
  330. cache_spec = json.load(cachef)
  331. return lambda s: u''.join(s[i] for i in cache_spec)
  332. except IOError:
  333. pass # No cache available
  334. if player_type == 'js':
  335. code = self._download_webpage(
  336. player_url, video_id,
  337. note=u'Downloading %s player %s' % (player_type, player_id),
  338. errnote=u'Download of %s failed' % player_url)
  339. res = self._parse_sig_js(code)
  340. elif player_type == 'swf':
  341. urlh = self._request_webpage(
  342. player_url, video_id,
  343. note=u'Downloading %s player %s' % (player_type, player_id),
  344. errnote=u'Download of %s failed' % player_url)
  345. code = urlh.read()
  346. res = self._parse_sig_swf(code)
  347. else:
  348. assert False, 'Invalid player type %r' % player_type
  349. if cache_enabled:
  350. try:
  351. test_string = u''.join(map(compat_chr, range(slen)))
  352. cache_res = res(test_string)
  353. cache_spec = [ord(c) for c in cache_res]
  354. try:
  355. os.makedirs(os.path.dirname(cache_fn))
  356. except OSError as ose:
  357. if ose.errno != errno.EEXIST:
  358. raise
  359. write_json_file(cache_spec, cache_fn)
  360. except Exception:
  361. tb = traceback.format_exc()
  362. self._downloader.report_warning(
  363. u'Writing cache to %r failed: %s' % (cache_fn, tb))
  364. return res
  365. def _print_sig_code(self, func, slen):
  366. def gen_sig_code(idxs):
  367. def _genslice(start, end, step):
  368. starts = u'' if start == 0 else str(start)
  369. ends = (u':%d' % (end+step)) if end + step >= 0 else u':'
  370. steps = u'' if step == 1 else (u':%d' % step)
  371. return u's[%s%s%s]' % (starts, ends, steps)
  372. step = None
  373. start = '(Never used)' # Quelch pyflakes warnings - start will be
  374. # set as soon as step is set
  375. for i, prev in zip(idxs[1:], idxs[:-1]):
  376. if step is not None:
  377. if i - prev == step:
  378. continue
  379. yield _genslice(start, prev, step)
  380. step = None
  381. continue
  382. if i - prev in [-1, 1]:
  383. step = i - prev
  384. start = prev
  385. continue
  386. else:
  387. yield u's[%d]' % prev
  388. if step is None:
  389. yield u's[%d]' % i
  390. else:
  391. yield _genslice(start, i, step)
  392. test_string = u''.join(map(compat_chr, range(slen)))
  393. cache_res = func(test_string)
  394. cache_spec = [ord(c) for c in cache_res]
  395. expr_code = u' + '.join(gen_sig_code(cache_spec))
  396. code = u'if len(s) == %d:\n return %s\n' % (slen, expr_code)
  397. self.to_screen(u'Extracted signature function:\n' + code)
  398. def _parse_sig_js(self, jscode):
  399. funcname = self._search_regex(
  400. r'signature=([a-zA-Z]+)', jscode,
  401. u'Initial JS player signature function name')
  402. jsi = JSInterpreter(jscode)
  403. initial_function = jsi.extract_function(funcname)
  404. return lambda s: initial_function([s])
  405. def _parse_sig_swf(self, file_contents):
  406. if file_contents[1:3] != b'WS':
  407. raise ExtractorError(
  408. u'Not an SWF file; header is %r' % file_contents[:3])
  409. if file_contents[:1] == b'C':
  410. content = zlib.decompress(file_contents[8:])
  411. else:
  412. raise NotImplementedError(u'Unsupported compression format %r' %
  413. file_contents[:1])
  414. def extract_tags(content):
  415. pos = 0
  416. while pos < len(content):
  417. header16 = struct.unpack('<H', content[pos:pos+2])[0]
  418. pos += 2
  419. tag_code = header16 >> 6
  420. tag_len = header16 & 0x3f
  421. if tag_len == 0x3f:
  422. tag_len = struct.unpack('<I', content[pos:pos+4])[0]
  423. pos += 4
  424. assert pos+tag_len <= len(content)
  425. yield (tag_code, content[pos:pos+tag_len])
  426. pos += tag_len
  427. code_tag = next(tag
  428. for tag_code, tag in extract_tags(content)
  429. if tag_code == 82)
  430. p = code_tag.index(b'\0', 4) + 1
  431. code_reader = io.BytesIO(code_tag[p:])
  432. # Parse ABC (AVM2 ByteCode)
  433. def read_int(reader=None):
  434. if reader is None:
  435. reader = code_reader
  436. res = 0
  437. shift = 0
  438. for _ in range(5):
  439. buf = reader.read(1)
  440. assert len(buf) == 1
  441. b = struct.unpack('<B', buf)[0]
  442. res = res | ((b & 0x7f) << shift)
  443. if b & 0x80 == 0:
  444. break
  445. shift += 7
  446. return res
  447. def u30(reader=None):
  448. res = read_int(reader)
  449. assert res & 0xf0000000 == 0
  450. return res
  451. u32 = read_int
  452. def s32(reader=None):
  453. v = read_int(reader)
  454. if v & 0x80000000 != 0:
  455. v = - ((v ^ 0xffffffff) + 1)
  456. return v
  457. def read_string(reader=None):
  458. if reader is None:
  459. reader = code_reader
  460. slen = u30(reader)
  461. resb = reader.read(slen)
  462. assert len(resb) == slen
  463. return resb.decode('utf-8')
  464. def read_bytes(count, reader=None):
  465. if reader is None:
  466. reader = code_reader
  467. resb = reader.read(count)
  468. assert len(resb) == count
  469. return resb
  470. def read_byte(reader=None):
  471. resb = read_bytes(1, reader=reader)
  472. res = struct.unpack('<B', resb)[0]
  473. return res
  474. # minor_version + major_version
  475. read_bytes(2 + 2)
  476. # Constant pool
  477. int_count = u30()
  478. for _c in range(1, int_count):
  479. s32()
  480. uint_count = u30()
  481. for _c in range(1, uint_count):
  482. u32()
  483. double_count = u30()
  484. read_bytes((double_count-1) * 8)
  485. string_count = u30()
  486. constant_strings = [u'']
  487. for _c in range(1, string_count):
  488. s = read_string()
  489. constant_strings.append(s)
  490. namespace_count = u30()
  491. for _c in range(1, namespace_count):
  492. read_bytes(1) # kind
  493. u30() # name
  494. ns_set_count = u30()
  495. for _c in range(1, ns_set_count):
  496. count = u30()
  497. for _c2 in range(count):
  498. u30()
  499. multiname_count = u30()
  500. MULTINAME_SIZES = {
  501. 0x07: 2, # QName
  502. 0x0d: 2, # QNameA
  503. 0x0f: 1, # RTQName
  504. 0x10: 1, # RTQNameA
  505. 0x11: 0, # RTQNameL
  506. 0x12: 0, # RTQNameLA
  507. 0x09: 2, # Multiname
  508. 0x0e: 2, # MultinameA
  509. 0x1b: 1, # MultinameL
  510. 0x1c: 1, # MultinameLA
  511. }
  512. multinames = [u'']
  513. for _c in range(1, multiname_count):
  514. kind = u30()
  515. assert kind in MULTINAME_SIZES, u'Invalid multiname kind %r' % kind
  516. if kind == 0x07:
  517. u30() # namespace_idx
  518. name_idx = u30()
  519. multinames.append(constant_strings[name_idx])
  520. else:
  521. multinames.append('[MULTINAME kind: %d]' % kind)
  522. for _c2 in range(MULTINAME_SIZES[kind]):
  523. u30()
  524. # Methods
  525. method_count = u30()
  526. MethodInfo = collections.namedtuple(
  527. 'MethodInfo',
  528. ['NEED_ARGUMENTS', 'NEED_REST'])
  529. method_infos = []
  530. for method_id in range(method_count):
  531. param_count = u30()
  532. u30() # return type
  533. for _ in range(param_count):
  534. u30() # param type
  535. u30() # name index (always 0 for youtube)
  536. flags = read_byte()
  537. if flags & 0x08 != 0:
  538. # Options present
  539. option_count = u30()
  540. for c in range(option_count):
  541. u30() # val
  542. read_bytes(1) # kind
  543. if flags & 0x80 != 0:
  544. # Param names present
  545. for _ in range(param_count):
  546. u30() # param name
  547. mi = MethodInfo(flags & 0x01 != 0, flags & 0x04 != 0)
  548. method_infos.append(mi)
  549. # Metadata
  550. metadata_count = u30()
  551. for _c in range(metadata_count):
  552. u30() # name
  553. item_count = u30()
  554. for _c2 in range(item_count):
  555. u30() # key
  556. u30() # value
  557. def parse_traits_info():
  558. trait_name_idx = u30()
  559. kind_full = read_byte()
  560. kind = kind_full & 0x0f
  561. attrs = kind_full >> 4
  562. methods = {}
  563. if kind in [0x00, 0x06]: # Slot or Const
  564. u30() # Slot id
  565. u30() # type_name_idx
  566. vindex = u30()
  567. if vindex != 0:
  568. read_byte() # vkind
  569. elif kind in [0x01, 0x02, 0x03]: # Method / Getter / Setter
  570. u30() # disp_id
  571. method_idx = u30()
  572. methods[multinames[trait_name_idx]] = method_idx
  573. elif kind == 0x04: # Class
  574. u30() # slot_id
  575. u30() # classi
  576. elif kind == 0x05: # Function
  577. u30() # slot_id
  578. function_idx = u30()
  579. methods[function_idx] = multinames[trait_name_idx]
  580. else:
  581. raise ExtractorError(u'Unsupported trait kind %d' % kind)
  582. if attrs & 0x4 != 0: # Metadata present
  583. metadata_count = u30()
  584. for _c3 in range(metadata_count):
  585. u30() # metadata index
  586. return methods
  587. # Classes
  588. TARGET_CLASSNAME = u'SignatureDecipher'
  589. searched_idx = multinames.index(TARGET_CLASSNAME)
  590. searched_class_id = None
  591. class_count = u30()
  592. for class_id in range(class_count):
  593. name_idx = u30()
  594. if name_idx == searched_idx:
  595. # We found the class we're looking for!
  596. searched_class_id = class_id
  597. u30() # super_name idx
  598. flags = read_byte()
  599. if flags & 0x08 != 0: # Protected namespace is present
  600. u30() # protected_ns_idx
  601. intrf_count = u30()
  602. for _c2 in range(intrf_count):
  603. u30()
  604. u30() # iinit
  605. trait_count = u30()
  606. for _c2 in range(trait_count):
  607. parse_traits_info()
  608. if searched_class_id is None:
  609. raise ExtractorError(u'Target class %r not found' %
  610. TARGET_CLASSNAME)
  611. method_names = {}
  612. method_idxs = {}
  613. for class_id in range(class_count):
  614. u30() # cinit
  615. trait_count = u30()
  616. for _c2 in range(trait_count):
  617. trait_methods = parse_traits_info()
  618. if class_id == searched_class_id:
  619. method_names.update(trait_methods.items())
  620. method_idxs.update(dict(
  621. (idx, name)
  622. for name, idx in trait_methods.items()))
  623. # Scripts
  624. script_count = u30()
  625. for _c in range(script_count):
  626. u30() # init
  627. trait_count = u30()
  628. for _c2 in range(trait_count):
  629. parse_traits_info()
  630. # Method bodies
  631. method_body_count = u30()
  632. Method = collections.namedtuple('Method', ['code', 'local_count'])
  633. methods = {}
  634. for _c in range(method_body_count):
  635. method_idx = u30()
  636. u30() # max_stack
  637. local_count = u30()
  638. u30() # init_scope_depth
  639. u30() # max_scope_depth
  640. code_length = u30()
  641. code = read_bytes(code_length)
  642. if method_idx in method_idxs:
  643. m = Method(code, local_count)
  644. methods[method_idxs[method_idx]] = m
  645. exception_count = u30()
  646. for _c2 in range(exception_count):
  647. u30() # from
  648. u30() # to
  649. u30() # target
  650. u30() # exc_type
  651. u30() # var_name
  652. trait_count = u30()
  653. for _c2 in range(trait_count):
  654. parse_traits_info()
  655. assert p + code_reader.tell() == len(code_tag)
  656. assert len(methods) == len(method_idxs)
  657. method_pyfunctions = {}
  658. def extract_function(func_name):
  659. if func_name in method_pyfunctions:
  660. return method_pyfunctions[func_name]
  661. if func_name not in methods:
  662. raise ExtractorError(u'Cannot find function %r' % func_name)
  663. m = methods[func_name]
  664. def resfunc(args):
  665. registers = ['(this)'] + list(args) + [None] * m.local_count
  666. stack = []
  667. coder = io.BytesIO(m.code)
  668. while True:
  669. opcode = struct.unpack('!B', coder.read(1))[0]
  670. if opcode == 36: # pushbyte
  671. v = struct.unpack('!B', coder.read(1))[0]
  672. stack.append(v)
  673. elif opcode == 44: # pushstring
  674. idx = u30(coder)
  675. stack.append(constant_strings[idx])
  676. elif opcode == 48: # pushscope
  677. # We don't implement the scope register, so we'll just
  678. # ignore the popped value
  679. stack.pop()
  680. elif opcode == 70: # callproperty
  681. index = u30(coder)
  682. mname = multinames[index]
  683. arg_count = u30(coder)
  684. args = list(reversed(
  685. [stack.pop() for _ in range(arg_count)]))
  686. obj = stack.pop()
  687. if mname == u'split':
  688. assert len(args) == 1
  689. assert isinstance(args[0], compat_str)
  690. assert isinstance(obj, compat_str)
  691. if args[0] == u'':
  692. res = list(obj)
  693. else:
  694. res = obj.split(args[0])
  695. stack.append(res)
  696. elif mname == u'slice':
  697. assert len(args) == 1
  698. assert isinstance(args[0], int)
  699. assert isinstance(obj, list)
  700. res = obj[args[0]:]
  701. stack.append(res)
  702. elif mname == u'join':
  703. assert len(args) == 1
  704. assert isinstance(args[0], compat_str)
  705. assert isinstance(obj, list)
  706. res = args[0].join(obj)
  707. stack.append(res)
  708. elif mname in method_pyfunctions:
  709. stack.append(method_pyfunctions[mname](args))
  710. else:
  711. raise NotImplementedError(
  712. u'Unsupported property %r on %r'
  713. % (mname, obj))
  714. elif opcode == 72: # returnvalue
  715. res = stack.pop()
  716. return res
  717. elif opcode == 79: # callpropvoid
  718. index = u30(coder)
  719. mname = multinames[index]
  720. arg_count = u30(coder)
  721. args = list(reversed(
  722. [stack.pop() for _ in range(arg_count)]))
  723. obj = stack.pop()
  724. if mname == u'reverse':
  725. assert isinstance(obj, list)
  726. obj.reverse()
  727. else:
  728. raise NotImplementedError(
  729. u'Unsupported (void) property %r on %r'
  730. % (mname, obj))
  731. elif opcode == 93: # findpropstrict
  732. index = u30(coder)
  733. mname = multinames[index]
  734. res = extract_function(mname)
  735. stack.append(res)
  736. elif opcode == 97: # setproperty
  737. index = u30(coder)
  738. value = stack.pop()
  739. idx = stack.pop()
  740. obj = stack.pop()
  741. assert isinstance(obj, list)
  742. assert isinstance(idx, int)
  743. obj[idx] = value
  744. elif opcode == 98: # getlocal
  745. index = u30(coder)
  746. stack.append(registers[index])
  747. elif opcode == 99: # setlocal
  748. index = u30(coder)
  749. value = stack.pop()
  750. registers[index] = value
  751. elif opcode == 102: # getproperty
  752. index = u30(coder)
  753. pname = multinames[index]
  754. if pname == u'length':
  755. obj = stack.pop()
  756. assert isinstance(obj, list)
  757. stack.append(len(obj))
  758. else: # Assume attribute access
  759. idx = stack.pop()
  760. assert isinstance(idx, int)
  761. obj = stack.pop()
  762. assert isinstance(obj, list)
  763. stack.append(obj[idx])
  764. elif opcode == 128: # coerce
  765. u30(coder)
  766. elif opcode == 133: # coerce_s
  767. assert isinstance(stack[-1], (type(None), compat_str))
  768. elif opcode == 164: # modulo
  769. value2 = stack.pop()
  770. value1 = stack.pop()
  771. res = value1 % value2
  772. stack.append(res)
  773. elif opcode == 208: # getlocal_0
  774. stack.append(registers[0])
  775. elif opcode == 209: # getlocal_1
  776. stack.append(registers[1])
  777. elif opcode == 210: # getlocal_2
  778. stack.append(registers[2])
  779. elif opcode == 211: # getlocal_3
  780. stack.append(registers[3])
  781. elif opcode == 214: # setlocal_2
  782. registers[2] = stack.pop()
  783. elif opcode == 215: # setlocal_3
  784. registers[3] = stack.pop()
  785. else:
  786. raise NotImplementedError(
  787. u'Unsupported opcode %d' % opcode)
  788. method_pyfunctions[func_name] = resfunc
  789. return resfunc
  790. initial_function = extract_function(u'decipher')
  791. return lambda s: initial_function([s])
  792. def _decrypt_signature(self, s, video_id, player_url, age_gate=False):
  793. """Turn the encrypted s field into a working signature"""
  794. if player_url is not None:
  795. if player_url.startswith(u'//'):
  796. player_url = u'https:' + player_url
  797. try:
  798. player_id = (player_url, len(s))
  799. if player_id not in self._player_cache:
  800. func = self._extract_signature_function(
  801. video_id, player_url, len(s)
  802. )
  803. self._player_cache[player_id] = func
  804. func = self._player_cache[player_id]
  805. if self._downloader.params.get('youtube_print_sig_code'):
  806. self._print_sig_code(func, len(s))
  807. return func(s)
  808. except Exception:
  809. tb = traceback.format_exc()
  810. self._downloader.report_warning(
  811. u'Automatic signature extraction failed: ' + tb)
  812. self._downloader.report_warning(
  813. u'Warning: Falling back to static signature algorithm')
  814. return self._static_decrypt_signature(
  815. s, video_id, player_url, age_gate)
  816. def _static_decrypt_signature(self, s, video_id, player_url, age_gate):
  817. if age_gate:
  818. # The videos with age protection use another player, so the
  819. # algorithms can be different.
  820. if len(s) == 86:
  821. return s[2:63] + s[82] + s[64:82] + s[63]
  822. if len(s) == 93:
  823. return s[86:29:-1] + s[88] + s[28:5:-1]
  824. elif len(s) == 92:
  825. return s[25] + s[3:25] + s[0] + s[26:42] + s[79] + s[43:79] + s[91] + s[80:83]
  826. elif len(s) == 91:
  827. return s[84:27:-1] + s[86] + s[26:5:-1]
  828. elif len(s) == 90:
  829. return s[25] + s[3:25] + s[2] + s[26:40] + s[77] + s[41:77] + s[89] + s[78:81]
  830. elif len(s) == 89:
  831. return s[84:78:-1] + s[87] + s[77:60:-1] + s[0] + s[59:3:-1]
  832. elif len(s) == 88:
  833. return s[7:28] + s[87] + s[29:45] + s[55] + s[46:55] + s[2] + s[56:87] + s[28]
  834. elif len(s) == 87:
  835. return s[6:27] + s[4] + s[28:39] + s[27] + s[40:59] + s[2] + s[60:]
  836. elif len(s) == 86:
  837. return s[80:72:-1] + s[16] + s[71:39:-1] + s[72] + s[38:16:-1] + s[82] + s[15::-1]
  838. elif len(s) == 85:
  839. return s[3:11] + s[0] + s[12:55] + s[84] + s[56:84]
  840. elif len(s) == 84:
  841. return s[78:70:-1] + s[14] + s[69:37:-1] + s[70] + s[36:14:-1] + s[80] + s[:14][::-1]
  842. elif len(s) == 83:
  843. return s[80:63:-1] + s[0] + s[62:0:-1] + s[63]
  844. elif len(s) == 82:
  845. return s[80:37:-1] + s[7] + s[36:7:-1] + s[0] + s[6:0:-1] + s[37]
  846. elif len(s) == 81:
  847. return s[56] + s[79:56:-1] + s[41] + s[55:41:-1] + s[80] + s[40:34:-1] + s[0] + s[33:29:-1] + s[34] + s[28:9:-1] + s[29] + s[8:0:-1] + s[9]
  848. elif len(s) == 80:
  849. return s[1:19] + s[0] + s[20:68] + s[19] + s[69:80]
  850. elif len(s) == 79:
  851. return s[54] + s[77:54:-1] + s[39] + s[53:39:-1] + s[78] + s[38:34:-1] + s[0] + s[33:29:-1] + s[34] + s[28:9:-1] + s[29] + s[8:0:-1] + s[9]
  852. else:
  853. raise ExtractorError(u'Unable to decrypt signature, key length %d not supported; retrying might work' % (len(s)))
  854. def _get_available_subtitles(self, video_id, webpage):
  855. try:
  856. sub_list = self._download_webpage(
  857. 'https://video.google.com/timedtext?hl=en&type=list&v=%s' % video_id,
  858. video_id, note=False)
  859. except ExtractorError as err:
  860. self._downloader.report_warning(u'unable to download video subtitles: %s' % compat_str(err))
  861. return {}
  862. lang_list = re.findall(r'name="([^"]*)"[^>]+lang_code="([\w\-]+)"', sub_list)
  863. sub_lang_list = {}
  864. for l in lang_list:
  865. lang = l[1]
  866. params = compat_urllib_parse.urlencode({
  867. 'lang': lang,
  868. 'v': video_id,
  869. 'fmt': self._downloader.params.get('subtitlesformat', 'srt'),
  870. 'name': unescapeHTML(l[0]).encode('utf-8'),
  871. })
  872. url = u'https://www.youtube.com/api/timedtext?' + params
  873. sub_lang_list[lang] = url
  874. if not sub_lang_list:
  875. self._downloader.report_warning(u'video doesn\'t have subtitles')
  876. return {}
  877. return sub_lang_list
  878. def _get_available_automatic_caption(self, video_id, webpage):
  879. """We need the webpage for getting the captions url, pass it as an
  880. argument to speed up the process."""
  881. sub_format = self._downloader.params.get('subtitlesformat', 'srt')
  882. self.to_screen(u'%s: Looking for automatic captions' % video_id)
  883. mobj = re.search(r';ytplayer.config = ({.*?});', webpage)
  884. err_msg = u'Couldn\'t find automatic captions for %s' % video_id
  885. if mobj is None:
  886. self._downloader.report_warning(err_msg)
  887. return {}
  888. player_config = json.loads(mobj.group(1))
  889. try:
  890. args = player_config[u'args']
  891. caption_url = args[u'ttsurl']
  892. timestamp = args[u'timestamp']
  893. # We get the available subtitles
  894. list_params = compat_urllib_parse.urlencode({
  895. 'type': 'list',
  896. 'tlangs': 1,
  897. 'asrs': 1,
  898. })
  899. list_url = caption_url + '&' + list_params
  900. caption_list = self._download_xml(list_url, video_id)
  901. original_lang_node = caption_list.find('track')
  902. if original_lang_node is None or original_lang_node.attrib.get('kind') != 'asr' :
  903. self._downloader.report_warning(u'Video doesn\'t have automatic captions')
  904. return {}
  905. original_lang = original_lang_node.attrib['lang_code']
  906. sub_lang_list = {}
  907. for lang_node in caption_list.findall('target'):
  908. sub_lang = lang_node.attrib['lang_code']
  909. params = compat_urllib_parse.urlencode({
  910. 'lang': original_lang,
  911. 'tlang': sub_lang,
  912. 'fmt': sub_format,
  913. 'ts': timestamp,
  914. 'kind': 'asr',
  915. })
  916. sub_lang_list[sub_lang] = caption_url + '&' + params
  917. return sub_lang_list
  918. # An extractor error can be raise by the download process if there are
  919. # no automatic captions but there are subtitles
  920. except (KeyError, ExtractorError):
  921. self._downloader.report_warning(err_msg)
  922. return {}
  923. @classmethod
  924. def extract_id(cls, url):
  925. mobj = re.match(cls._VALID_URL, url, re.VERBOSE)
  926. if mobj is None:
  927. raise ExtractorError(u'Invalid URL: %s' % url)
  928. video_id = mobj.group(2)
  929. return video_id
  930. def _extract_from_m3u8(self, manifest_url, video_id):
  931. url_map = {}
  932. def _get_urls(_manifest):
  933. lines = _manifest.split('\n')
  934. urls = filter(lambda l: l and not l.startswith('#'),
  935. lines)
  936. return urls
  937. manifest = self._download_webpage(manifest_url, video_id, u'Downloading formats manifest')
  938. formats_urls = _get_urls(manifest)
  939. for format_url in formats_urls:
  940. itag = self._search_regex(r'itag/(\d+?)/', format_url, 'itag')
  941. url_map[itag] = format_url
  942. return url_map
  943. def _extract_annotations(self, video_id):
  944. url = 'https://www.youtube.com/annotations_invideo?features=1&legacy=1&video_id=%s' % video_id
  945. return self._download_webpage(url, video_id, note=u'Searching for annotations.', errnote=u'Unable to download video annotations.')
  946. def _real_extract(self, url):
  947. proto = (
  948. u'http' if self._downloader.params.get('prefer_insecure', False)
  949. else u'https')
  950. # Extract original video URL from URL with redirection, like age verification, using next_url parameter
  951. mobj = re.search(self._NEXT_URL_RE, url)
  952. if mobj:
  953. url = proto + '://www.youtube.com/' + compat_urllib_parse.unquote(mobj.group(1)).lstrip('/')
  954. video_id = self.extract_id(url)
  955. # Get video webpage
  956. url = proto + '://www.youtube.com/watch?v=%s&gl=US&hl=en&has_verified=1' % video_id
  957. video_webpage = self._download_webpage(url, video_id)
  958. # Attempt to extract SWF player URL
  959. mobj = re.search(r'swfConfig.*?"(https?:\\/\\/.*?watch.*?-.*?\.swf)"', video_webpage)
  960. if mobj is not None:
  961. player_url = re.sub(r'\\(.)', r'\1', mobj.group(1))
  962. else:
  963. player_url = None
  964. # Get video info
  965. self.report_video_info_webpage_download(video_id)
  966. if re.search(r'player-age-gate-content">', video_webpage) is not None:
  967. self.report_age_confirmation()
  968. age_gate = True
  969. # We simulate the access to the video from www.youtube.com/v/{video_id}
  970. # this can be viewed without login into Youtube
  971. data = compat_urllib_parse.urlencode({'video_id': video_id,
  972. 'el': 'player_embedded',
  973. 'gl': 'US',
  974. 'hl': 'en',
  975. 'eurl': 'https://youtube.googleapis.com/v/' + video_id,
  976. 'asv': 3,
  977. 'sts':'1588',
  978. })
  979. video_info_url = proto + '://www.youtube.com/get_video_info?' + data
  980. video_info_webpage = self._download_webpage(video_info_url, video_id,
  981. note=False,
  982. errnote='unable to download video info webpage')
  983. video_info = compat_parse_qs(video_info_webpage)
  984. else:
  985. age_gate = False
  986. for el_type in ['&el=embedded', '&el=detailpage', '&el=vevo', '']:
  987. video_info_url = (proto + '://www.youtube.com/get_video_info?&video_id=%s%s&ps=default&eurl=&gl=US&hl=en'
  988. % (video_id, el_type))
  989. video_info_webpage = self._download_webpage(video_info_url, video_id,
  990. note=False,
  991. errnote='unable to download video info webpage')
  992. video_info = compat_parse_qs(video_info_webpage)
  993. if 'token' in video_info:
  994. break
  995. if 'token' not in video_info:
  996. if 'reason' in video_info:
  997. raise ExtractorError(u'YouTube said: %s' % video_info['reason'][0], expected=True)
  998. else:
  999. raise ExtractorError(u'"token" parameter not in video info for unknown reason')
  1000. if 'view_count' in video_info:
  1001. view_count = int(video_info['view_count'][0])
  1002. else:
  1003. view_count = None
  1004. # Check for "rental" videos
  1005. if 'ypc_video_rental_bar_text' in video_info and 'author' not in video_info:
  1006. raise ExtractorError(u'"rental" videos not supported')
  1007. # Start extracting information
  1008. self.report_information_extraction(video_id)
  1009. # uploader
  1010. if 'author' not in video_info:
  1011. raise ExtractorError(u'Unable to extract uploader name')
  1012. video_uploader = compat_urllib_parse.unquote_plus(video_info['author'][0])
  1013. # uploader_id
  1014. video_uploader_id = None
  1015. mobj = re.search(r'<link itemprop="url" href="http://www.youtube.com/(?:user|channel)/([^"]+)">', video_webpage)
  1016. if mobj is not None:
  1017. video_uploader_id = mobj.group(1)
  1018. else:
  1019. self._downloader.report_warning(u'unable to extract uploader nickname')
  1020. # title
  1021. if 'title' in video_info:
  1022. video_title = compat_urllib_parse.unquote_plus(video_info['title'][0])
  1023. else:
  1024. self._downloader.report_warning(u'Unable to extract video title')
  1025. video_title = u'_'
  1026. # thumbnail image
  1027. # We try first to get a high quality image:
  1028. m_thumb = re.search(r'<span itemprop="thumbnail".*?href="(.*?)">',
  1029. video_webpage, re.DOTALL)
  1030. if m_thumb is not None:
  1031. video_thumbnail = m_thumb.group(1)
  1032. elif 'thumbnail_url' not in video_info:
  1033. self._downloader.report_warning(u'unable to extract video thumbnail')
  1034. video_thumbnail = None
  1035. else: # don't panic if we can't find it
  1036. video_thumbnail = compat_urllib_parse.unquote_plus(video_info['thumbnail_url'][0])
  1037. # upload date
  1038. upload_date = None
  1039. mobj = re.search(r'id="eow-date.*?>(.*?)</span>', video_webpage, re.DOTALL)
  1040. if mobj is not None:
  1041. upload_date = ' '.join(re.sub(r'[/,-]', r' ', mobj.group(1)).split())
  1042. upload_date = unified_strdate(upload_date)
  1043. # description
  1044. video_description = get_element_by_id("eow-description", video_webpage)
  1045. if video_description:
  1046. video_description = re.sub(r'''(?x)
  1047. <a\s+
  1048. (?:[a-zA-Z-]+="[^"]+"\s+)*?
  1049. title="([^"]+)"\s+
  1050. (?:[a-zA-Z-]+="[^"]+"\s+)*?
  1051. class="yt-uix-redirect-link"\s*>
  1052. [^<]+
  1053. </a>
  1054. ''', r'\1', video_description)
  1055. video_description = clean_html(video_description)
  1056. else:
  1057. fd_mobj = re.search(r'<meta name="description" content="([^"]+)"', video_webpage)
  1058. if fd_mobj:
  1059. video_description = unescapeHTML(fd_mobj.group(1))
  1060. else:
  1061. video_description = u''
  1062. def _extract_count(klass):
  1063. count = self._search_regex(
  1064. r'class="%s">([\d,]+)</span>' % re.escape(klass),
  1065. video_webpage, klass, default=None)
  1066. if count is not None:
  1067. return int(count.replace(',', ''))
  1068. return None
  1069. like_count = _extract_count(u'likes-count')
  1070. dislike_count = _extract_count(u'dislikes-count')
  1071. # subtitles
  1072. video_subtitles = self.extract_subtitles(video_id, video_webpage)
  1073. if self._downloader.params.get('listsubtitles', False):
  1074. self._list_available_subtitles(video_id, video_webpage)
  1075. return
  1076. if 'length_seconds' not in video_info:
  1077. self._downloader.report_warning(u'unable to extract video duration')
  1078. video_duration = None
  1079. else:
  1080. video_duration = int(compat_urllib_parse.unquote_plus(video_info['length_seconds'][0]))
  1081. # annotations
  1082. video_annotations = None
  1083. if self._downloader.params.get('writeannotations', False):
  1084. video_annotations = self._extract_annotations(video_id)
  1085. # Decide which formats to download
  1086. try:
  1087. mobj = re.search(r';ytplayer\.config\s*=\s*({.*?});', video_webpage)
  1088. if not mobj:
  1089. raise ValueError('Could not find vevo ID')
  1090. json_code = uppercase_escape(mobj.group(1))
  1091. ytplayer_config = json.loads(json_code)
  1092. args = ytplayer_config['args']
  1093. # Easy way to know if the 's' value is in url_encoded_fmt_stream_map
  1094. # this signatures are encrypted
  1095. if 'url_encoded_fmt_stream_map' not in args:
  1096. raise ValueError(u'No stream_map present') # caught below
  1097. re_signature = re.compile(r'[&,]s=')
  1098. m_s = re_signature.search(args['url_encoded_fmt_stream_map'])
  1099. if m_s is not None:
  1100. self.to_screen(u'%s: Encrypted signatures detected.' % video_id)
  1101. video_info['url_encoded_fmt_stream_map'] = [args['url_encoded_fmt_stream_map']]
  1102. m_s = re_signature.search(args.get('adaptive_fmts', u''))
  1103. if m_s is not None:
  1104. if 'adaptive_fmts' in video_info:
  1105. video_info['adaptive_fmts'][0] += ',' + args['adaptive_fmts']
  1106. else:
  1107. video_info['adaptive_fmts'] = [args['adaptive_fmts']]
  1108. except ValueError:
  1109. pass
  1110. def _map_to_format_list(urlmap):
  1111. formats = []
  1112. for itag, video_real_url in urlmap.items():
  1113. dct = {
  1114. 'format_id': itag,
  1115. 'url': video_real_url,
  1116. 'player_url': player_url,
  1117. }
  1118. if itag in self._formats:
  1119. dct.update(self._formats[itag])
  1120. formats.append(dct)
  1121. return formats
  1122. if 'conn' in video_info and video_info['conn'][0].startswith('rtmp'):
  1123. self.report_rtmp_download()
  1124. formats = [{
  1125. 'format_id': '_rtmp',
  1126. 'protocol': 'rtmp',
  1127. 'url': video_info['conn'][0],
  1128. 'player_url': player_url,
  1129. }]
  1130. elif len(video_info.get('url_encoded_fmt_stream_map', [])) >= 1 or len(video_info.get('adaptive_fmts', [])) >= 1:
  1131. encoded_url_map = video_info.get('url_encoded_fmt_stream_map', [''])[0] + ',' + video_info.get('adaptive_fmts',[''])[0]
  1132. if 'rtmpe%3Dyes' in encoded_url_map:
  1133. raise ExtractorError('rtmpe downloads are not supported, see https://github.com/rg3/youtube-dl/issues/343 for more information.', expected=True)
  1134. url_map = {}
  1135. for url_data_str in encoded_url_map.split(','):
  1136. url_data = compat_parse_qs(url_data_str)
  1137. if 'itag' in url_data and 'url' in url_data:
  1138. url = url_data['url'][0]
  1139. if 'sig' in url_data:
  1140. url += '&signature=' + url_data['sig'][0]
  1141. elif 's' in url_data:
  1142. encrypted_sig = url_data['s'][0]
  1143. if self._downloader.params.get('verbose'):
  1144. if age_gate:
  1145. if player_url is None:
  1146. player_version = 'unknown'
  1147. else:
  1148. player_version = self._search_regex(
  1149. r'-(.+)\.swf$', player_url,
  1150. u'flash player', fatal=False)
  1151. player_desc = 'flash player %s' % player_version
  1152. else:
  1153. player_version = self._search_regex(
  1154. r'html5player-(.+?)\.js', video_webpage,
  1155. 'html5 player', fatal=False)
  1156. player_desc = u'html5 player %s' % player_version
  1157. parts_sizes = u'.'.join(compat_str(len(part)) for part in encrypted_sig.split('.'))
  1158. self.to_screen(u'encrypted signature length %d (%s), itag %s, %s' %
  1159. (len(encrypted_sig), parts_sizes, url_data['itag'][0], player_desc))
  1160. if not age_gate:
  1161. jsplayer_url_json = self._search_regex(
  1162. r'"assets":.+?"js":\s*("[^"]+")',
  1163. video_webpage, u'JS player URL')
  1164. player_url = json.loads(jsplayer_url_json)
  1165. signature = self._decrypt_signature(
  1166. encrypted_sig, video_id, player_url, age_gate)
  1167. url += '&signature=' + signature
  1168. if 'ratebypass' not in url:
  1169. url += '&ratebypass=yes'
  1170. url_map[url_data['itag'][0]] = url
  1171. formats = _map_to_format_list(url_map)
  1172. elif video_info.get('hlsvp'):
  1173. manifest_url = video_info['hlsvp'][0]
  1174. url_map = self._extract_from_m3u8(manifest_url, video_id)
  1175. formats = _map_to_format_list(url_map)
  1176. else:
  1177. raise ExtractorError(u'no conn, hlsvp or url_encoded_fmt_stream_map information found in video info')
  1178. # Look for the DASH manifest
  1179. if (self._downloader.params.get('youtube_include_dash_manifest', False)):
  1180. try:
  1181. # The DASH manifest used needs to be the one from the original video_webpage.
  1182. # The one found in get_video_info seems to be using different signatures.
  1183. # However, in the case of an age restriction there won't be any embedded dashmpd in the video_webpage.
  1184. # Luckily, it seems, this case uses some kind of default signature (len == 86), so the
  1185. # combination of get_video_info and the _static_decrypt_signature() decryption fallback will work here.
  1186. if age_gate:
  1187. dash_manifest_url = video_info.get('dashmpd')[0]
  1188. else:
  1189. dash_manifest_url = ytplayer_config['args']['dashmpd']
  1190. def decrypt_sig(mobj):
  1191. s = mobj.group(1)
  1192. dec_s = self._decrypt_signature(s, video_id, player_url, age_gate)
  1193. return '/signature/%s' % dec_s
  1194. dash_manifest_url = re.sub(r'/s/([\w\.]+)', decrypt_sig, dash_manifest_url)
  1195. dash_doc = self._download_xml(
  1196. dash_manifest_url, video_id,
  1197. note=u'Downloading DASH manifest',
  1198. errnote=u'Could not download DASH manifest')
  1199. for r in dash_doc.findall(u'.//{urn:mpeg:DASH:schema:MPD:2011}Representation'):
  1200. url_el = r.find('{urn:mpeg:DASH:schema:MPD:2011}BaseURL')
  1201. if url_el is None:
  1202. continue
  1203. format_id = r.attrib['id']
  1204. video_url = url_el.text
  1205. filesize = int_or_none(url_el.attrib.get('{http://youtube.com/yt/2012/10/10}contentLength'))
  1206. f = {
  1207. 'format_id': format_id,
  1208. 'url': video_url,
  1209. 'width': int_or_none(r.attrib.get('width')),
  1210. 'tbr': int_or_none(r.attrib.get('bandwidth'), 1000),
  1211. 'asr': int_or_none(r.attrib.get('audioSamplingRate')),
  1212. 'filesize': filesize,
  1213. }
  1214. try:
  1215. existing_format = next(
  1216. fo for fo in formats
  1217. if fo['format_id'] == format_id)
  1218. except StopIteration:
  1219. f.update(self._formats.get(format_id, {}))
  1220. formats.append(f)
  1221. else:
  1222. existing_format.update(f)
  1223. except (ExtractorError, KeyError) as e:
  1224. self.report_warning(u'Skipping DASH manifest: %s' % e, video_id)
  1225. self._sort_formats(formats)
  1226. return {
  1227. 'id': video_id,
  1228. 'uploader': video_uploader,
  1229. 'uploader_id': video_uploader_id,
  1230. 'upload_date': upload_date,
  1231. 'title': video_title,
  1232. 'thumbnail': video_thumbnail,
  1233. 'description': video_description,
  1234. 'subtitles': video_subtitles,
  1235. 'duration': video_duration,
  1236. 'age_limit': 18 if age_gate else 0,
  1237. 'annotations': video_annotations,
  1238. 'webpage_url': proto + '://www.youtube.com/watch?v=%s' % video_id,
  1239. 'view_count': view_count,
  1240. 'like_count': like_count,
  1241. 'dislike_count': dislike_count,
  1242. 'formats': formats,
  1243. }
  1244. class YoutubePlaylistIE(YoutubeBaseInfoExtractor):
  1245. IE_DESC = u'YouTube.com playlists'
  1246. _VALID_URL = r"""(?x)(?:
  1247. (?:https?://)?
  1248. (?:\w+\.)?
  1249. youtube\.com/
  1250. (?:
  1251. (?:course|view_play_list|my_playlists|artist|playlist|watch)
  1252. \? (?:.*?&)*? (?:p|a|list)=
  1253. | p/
  1254. )
  1255. (
  1256. (?:PL|EC|UU|FL|RD)?[0-9A-Za-z-_]{10,}
  1257. # Top tracks, they can also include dots
  1258. |(?:MC)[\w\.]*
  1259. )
  1260. .*
  1261. |
  1262. ((?:PL|EC|UU|FL|RD)[0-9A-Za-z-_]{10,})
  1263. )"""
  1264. _TEMPLATE_URL = 'https://www.youtube.com/playlist?list=%s'
  1265. _MORE_PAGES_INDICATOR = r'data-link-type="next"'
  1266. _VIDEO_RE = r'href="\s*/watch\?v=(?P<id>[0-9A-Za-z_-]{11})&amp;[^"]*?index=(?P<index>\d+)'
  1267. IE_NAME = u'youtube:playlist'
  1268. def _real_initialize(self):
  1269. self._login()
  1270. def _ids_to_results(self, ids):
  1271. return [self.url_result(vid_id, 'Youtube', video_id=vid_id)
  1272. for vid_id in ids]
  1273. def _extract_mix(self, playlist_id):
  1274. # The mixes are generated from a a single video
  1275. # the id of the playlist is just 'RD' + video_id
  1276. url = 'https://youtube.com/watch?v=%s&list=%s' % (playlist_id[-11:], playlist_id)
  1277. webpage = self._download_webpage(url, playlist_id, u'Downloading Youtube mix')
  1278. search_title = lambda class_name: get_element_by_attribute('class', class_name, webpage)
  1279. title_span = (search_title('playlist-title') or
  1280. search_title('title long-title') or search_title('title'))
  1281. title = clean_html(title_span)
  1282. video_re = r'''(?x)data-video-username="(.*?)".*?
  1283. href="/watch\?v=([0-9A-Za-z_-]{11})&amp;[^"]*?list=%s''' % re.escape(playlist_id)
  1284. matches = orderedSet(re.findall(video_re, webpage, flags=re.DOTALL))
  1285. # Some of the videos may have been deleted, their username field is empty
  1286. ids = [video_id for (username, video_id) in matches if username]
  1287. url_results = self._ids_to_results(ids)
  1288. return self.playlist_result(url_results, playlist_id, title)
  1289. def _real_extract(self, url):
  1290. # Extract playlist id
  1291. mobj = re.match(self._VALID_URL, url)
  1292. if mobj is None:
  1293. raise ExtractorError(u'Invalid URL: %s' % url)
  1294. playlist_id = mobj.group(1) or mobj.group(2)
  1295. # Check if it's a video-specific URL
  1296. query_dict = compat_urlparse.parse_qs(compat_urlparse.urlparse(url).query)
  1297. if 'v' in query_dict:
  1298. video_id = query_dict['v'][0]
  1299. if self._downloader.params.get('noplaylist'):
  1300. self.to_screen(u'Downloading just video %s because of --no-playlist' % video_id)
  1301. return self.url_result(video_id, 'Youtube', video_id=video_id)
  1302. else:
  1303. self.to_screen(u'Downloading playlist %s - add --no-playlist to just download video %s' % (playlist_id, video_id))
  1304. if playlist_id.startswith('RD'):
  1305. # Mixes require a custom extraction process
  1306. return self._extract_mix(playlist_id)
  1307. if playlist_id.startswith('TL'):
  1308. raise ExtractorError(u'For downloading YouTube.com top lists, use '
  1309. u'the "yttoplist" keyword, for example "youtube-dl \'yttoplist:music:Top Tracks\'"', expected=True)
  1310. url = self._TEMPLATE_URL % playlist_id
  1311. page = self._download_webpage(url, playlist_id)
  1312. more_widget_html = content_html = page
  1313. # Extract the video ids from the playlist pages
  1314. ids = []
  1315. for page_num in itertools.count(1):
  1316. matches = re.finditer(self._VIDEO_RE, content_html)
  1317. # We remove the duplicates and the link with index 0
  1318. # (it's not the first video of the playlist)
  1319. new_ids = orderedSet(m.group('id') for m in matches if m.group('index') != '0')
  1320. ids.extend(new_ids)
  1321. mobj = re.search(r'data-uix-load-more-href="/?(?P<more>[^"]+)"', more_widget_html)
  1322. if not mobj:
  1323. break
  1324. more = self._download_json(
  1325. 'https://youtube.com/%s' % mobj.group('more'), playlist_id,
  1326. 'Downloading page #%s' % page_num,
  1327. transform_source=uppercase_escape)
  1328. content_html = more['content_html']
  1329. more_widget_html = more['load_more_widget_html']
  1330. playlist_title = self._html_search_regex(
  1331. r'(?s)<h1 class="pl-header-title[^"]*">\s*(.*?)\s*</h1>',
  1332. page, u'title')
  1333. url_results = self._ids_to_results(ids)
  1334. return self.playlist_result(url_results, playlist_id, playlist_title)
  1335. class YoutubeTopListIE(YoutubePlaylistIE):
  1336. IE_NAME = u'youtube:toplist'
  1337. IE_DESC = (u'YouTube.com top lists, "yttoplist:{channel}:{list title}"'
  1338. u' (Example: "yttoplist:music:Top Tracks")')
  1339. _VALID_URL = r'yttoplist:(?P<chann>.*?):(?P<title>.*?)$'
  1340. def _real_extract(self, url):
  1341. mobj = re.match(self._VALID_URL, url)
  1342. channel = mobj.group('chann')
  1343. title = mobj.group('title')
  1344. query = compat_urllib_parse.urlencode({'title': title})
  1345. playlist_re = 'href="([^"]+?%s.*?)"' % re.escape(query)
  1346. channel_page = self._download_webpage('https://www.youtube.com/%s' % channel, title)
  1347. link = self._html_search_regex(playlist_re, channel_page, u'list')
  1348. url = compat_urlparse.urljoin('https://www.youtube.com/', link)
  1349. video_re = r'data-index="\d+".*?data-video-id="([0-9A-Za-z_-]{11})"'
  1350. ids = []
  1351. # sometimes the webpage doesn't contain the videos
  1352. # retry until we get them
  1353. for i in itertools.count(0):
  1354. msg = u'Downloading Youtube mix'
  1355. if i > 0:
  1356. msg += ', retry #%d' % i
  1357. webpage = self._download_webpage(url, title, msg)
  1358. ids = orderedSet(re.findall(video_re, webpage))
  1359. if ids:
  1360. break
  1361. url_results = self._ids_to_results(ids)
  1362. return self.playlist_result(url_results, playlist_title=title)
  1363. class YoutubeChannelIE(InfoExtractor):
  1364. IE_DESC = u'YouTube.com channels'
  1365. _VALID_URL = r"^(?:https?://)?(?:youtu\.be|(?:\w+\.)?youtube(?:-nocookie)?\.com)/channel/([0-9A-Za-z_-]+)"
  1366. _MORE_PAGES_INDICATOR = 'yt-uix-load-more'
  1367. _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'
  1368. IE_NAME = u'youtube:channel'
  1369. def extract_videos_from_page(self, page):
  1370. ids_in_page = []
  1371. for mobj in re.finditer(r'href="/watch\?v=([0-9A-Za-z_-]+)&?', page):
  1372. if mobj.group(1) not in ids_in_page:
  1373. ids_in_page.append(mobj.group(1))
  1374. return ids_in_page
  1375. def _real_extract(self, url):
  1376. # Extract channel id
  1377. mobj = re.match(self._VALID_URL, url)
  1378. if mobj is None:
  1379. raise ExtractorError(u'Invalid URL: %s' % url)
  1380. # Download channel page
  1381. channel_id = mobj.group(1)
  1382. video_ids = []
  1383. url = 'https://www.youtube.com/channel/%s/videos' % channel_id
  1384. channel_page = self._download_webpage(url, channel_id)
  1385. autogenerated = re.search(r'''(?x)
  1386. class="[^"]*?(?:
  1387. channel-header-autogenerated-label|
  1388. yt-channel-title-autogenerated
  1389. )[^"]*"''', channel_page) is not None
  1390. if autogenerated:
  1391. # The videos are contained in a single page
  1392. # the ajax pages can't be used, they are empty
  1393. video_ids = self.extract_videos_from_page(channel_page)
  1394. else:
  1395. # Download all channel pages using the json-based channel_ajax query
  1396. for pagenum in itertools.count(1):
  1397. url = self._MORE_PAGES_URL % (pagenum, channel_id)
  1398. page = self._download_json(
  1399. url, channel_id, note=u'Downloading page #%s' % pagenum,
  1400. transform_source=uppercase_escape)
  1401. ids_in_page = self.extract_videos_from_page(page['content_html'])
  1402. video_ids.extend(ids_in_page)
  1403. if self._MORE_PAGES_INDICATOR not in page['load_more_widget_html']:
  1404. break
  1405. self._downloader.to_screen(u'[youtube] Channel %s: Found %i videos' % (channel_id, len(video_ids)))
  1406. url_entries = [self.url_result(video_id, 'Youtube', video_id=video_id)
  1407. for video_id in video_ids]
  1408. return self.playlist_result(url_entries, channel_id)
  1409. class YoutubeUserIE(InfoExtractor):
  1410. IE_DESC = u'YouTube.com user videos (URL or "ytuser" keyword)'
  1411. _VALID_URL = r'(?:(?:(?:https?://)?(?:\w+\.)?youtube\.com/(?:user/)?(?!(?:attribution_link|watch|results)(?:$|[^a-z_A-Z0-9-])))|ytuser:)(?!feed/)([A-Za-z0-9_-]+)'
  1412. _TEMPLATE_URL = 'https://gdata.youtube.com/feeds/api/users/%s'
  1413. _GDATA_PAGE_SIZE = 50
  1414. _GDATA_URL = 'https://gdata.youtube.com/feeds/api/users/%s/uploads?max-results=%d&start-index=%d&alt=json'
  1415. IE_NAME = u'youtube:user'
  1416. @classmethod
  1417. def suitable(cls, url):
  1418. # Don't return True if the url can be extracted with other youtube
  1419. # extractor, the regex would is too permissive and it would match.
  1420. other_ies = iter(klass for (name, klass) in globals().items() if name.endswith('IE') and klass is not cls)
  1421. if any(ie.suitable(url) for ie in other_ies): return False
  1422. else: return super(YoutubeUserIE, cls).suitable(url)
  1423. def _real_extract(self, url):
  1424. # Extract username
  1425. mobj = re.match(self._VALID_URL, url)
  1426. if mobj is None:
  1427. raise ExtractorError(u'Invalid URL: %s' % url)
  1428. username = mobj.group(1)
  1429. # Download video ids using YouTube Data API. Result size per
  1430. # query is limited (currently to 50 videos) so we need to query
  1431. # page by page until there are no video ids - it means we got
  1432. # all of them.
  1433. def download_page(pagenum):
  1434. start_index = pagenum * self._GDATA_PAGE_SIZE + 1
  1435. gdata_url = self._GDATA_URL % (username, self._GDATA_PAGE_SIZE, start_index)
  1436. page = self._download_webpage(
  1437. gdata_url, username,
  1438. u'Downloading video ids from %d to %d' % (
  1439. start_index, start_index + self._GDATA_PAGE_SIZE))
  1440. try:
  1441. response = json.loads(page)
  1442. except ValueError as err:
  1443. raise ExtractorError(u'Invalid JSON in API response: ' + compat_str(err))
  1444. if 'entry' not in response['feed']:
  1445. return
  1446. # Extract video identifiers
  1447. entries = response['feed']['entry']
  1448. for entry in entries:
  1449. title = entry['title']['$t']
  1450. video_id = entry['id']['$t'].split('/')[-1]
  1451. yield {
  1452. '_type': 'url',
  1453. 'url': video_id,
  1454. 'ie_key': 'Youtube',
  1455. 'id': video_id,
  1456. 'title': title,
  1457. }
  1458. url_results = PagedList(download_page, self._GDATA_PAGE_SIZE)
  1459. return self.playlist_result(url_results, playlist_title=username)
  1460. class YoutubeSearchIE(SearchInfoExtractor):
  1461. IE_DESC = u'YouTube.com searches'
  1462. _API_URL = u'https://gdata.youtube.com/feeds/api/videos?q=%s&start-index=%i&max-results=50&v=2&alt=jsonc'
  1463. _MAX_RESULTS = 1000
  1464. IE_NAME = u'youtube:search'
  1465. _SEARCH_KEY = 'ytsearch'
  1466. def _get_n_results(self, query, n):
  1467. """Get a specified number of results for a query"""
  1468. video_ids = []
  1469. pagenum = 0
  1470. limit = n
  1471. PAGE_SIZE = 50
  1472. while (PAGE_SIZE * pagenum) < limit:
  1473. result_url = self._API_URL % (
  1474. compat_urllib_parse.quote_plus(query.encode('utf-8')),
  1475. (PAGE_SIZE * pagenum) + 1)
  1476. data_json = self._download_webpage(
  1477. result_url, video_id=u'query "%s"' % query,
  1478. note=u'Downloading page %s' % (pagenum + 1),
  1479. errnote=u'Unable to download API page')
  1480. data = json.loads(data_json)
  1481. api_response = data['data']
  1482. if 'items' not in api_response:
  1483. raise ExtractorError(
  1484. u'[youtube] No video results', expected=True)
  1485. new_ids = list(video['id'] for video in api_response['items'])
  1486. video_ids += new_ids
  1487. limit = min(n, api_response['totalItems'])
  1488. pagenum += 1
  1489. if len(video_ids) > n:
  1490. video_ids = video_ids[:n]
  1491. videos = [self.url_result(video_id, 'Youtube', video_id=video_id)
  1492. for video_id in video_ids]
  1493. return self.playlist_result(videos, query)
  1494. class YoutubeSearchDateIE(YoutubeSearchIE):
  1495. IE_NAME = YoutubeSearchIE.IE_NAME + ':date'
  1496. _API_URL = 'https://gdata.youtube.com/feeds/api/videos?q=%s&start-index=%i&max-results=50&v=2&alt=jsonc&orderby=published'
  1497. _SEARCH_KEY = 'ytsearchdate'
  1498. IE_DESC = u'YouTube.com searches, newest videos first'
  1499. class YoutubeSearchURLIE(InfoExtractor):
  1500. IE_DESC = u'YouTube.com search URLs'
  1501. IE_NAME = u'youtube:search_url'
  1502. _VALID_URL = r'https?://(?:www\.)?youtube\.com/results\?(.*?&)?search_query=(?P<query>[^&]+)(?:[&]|$)'
  1503. def _real_extract(self, url):
  1504. mobj = re.match(self._VALID_URL, url)
  1505. query = compat_urllib_parse.unquote_plus(mobj.group('query'))
  1506. webpage = self._download_webpage(url, query)
  1507. result_code = self._search_regex(
  1508. r'(?s)<ol id="search-results"(.*?)</ol>', webpage, u'result HTML')
  1509. part_codes = re.findall(
  1510. r'(?s)<h3 class="yt-lockup-title">(.*?)</h3>', result_code)
  1511. entries = []
  1512. for part_code in part_codes:
  1513. part_title = self._html_search_regex(
  1514. r'(?s)title="([^"]+)"', part_code, 'item title', fatal=False)
  1515. part_url_snippet = self._html_search_regex(
  1516. r'(?s)href="([^"]+)"', part_code, 'item URL')
  1517. part_url = compat_urlparse.urljoin(
  1518. 'https://www.youtube.com/', part_url_snippet)
  1519. entries.append({
  1520. '_type': 'url',
  1521. 'url': part_url,
  1522. 'title': part_title,
  1523. })
  1524. return {
  1525. '_type': 'playlist',
  1526. 'entries': entries,
  1527. 'title': query,
  1528. }
  1529. class YoutubeShowIE(InfoExtractor):
  1530. IE_DESC = u'YouTube.com (multi-season) shows'
  1531. _VALID_URL = r'https?://www\.youtube\.com/show/(.*)'
  1532. IE_NAME = u'youtube:show'
  1533. def _real_extract(self, url):
  1534. mobj = re.match(self._VALID_URL, url)
  1535. show_name = mobj.group(1)
  1536. webpage = self._download_webpage(url, show_name, u'Downloading show webpage')
  1537. # There's one playlist for each season of the show
  1538. m_seasons = list(re.finditer(r'href="(/playlist\?list=.*?)"', webpage))
  1539. self.to_screen(u'%s: Found %s seasons' % (show_name, len(m_seasons)))
  1540. return [self.url_result('https://www.youtube.com' + season.group(1), 'YoutubePlaylist') for season in m_seasons]
  1541. class YoutubeFeedsInfoExtractor(YoutubeBaseInfoExtractor):
  1542. """
  1543. Base class for extractors that fetch info from
  1544. http://www.youtube.com/feed_ajax
  1545. Subclasses must define the _FEED_NAME and _PLAYLIST_TITLE properties.
  1546. """
  1547. _LOGIN_REQUIRED = True
  1548. # use action_load_personal_feed instead of action_load_system_feed
  1549. _PERSONAL_FEED = False
  1550. @property
  1551. def _FEED_TEMPLATE(self):
  1552. action = 'action_load_system_feed'
  1553. if self._PERSONAL_FEED:
  1554. action = 'action_load_personal_feed'
  1555. return 'https://www.youtube.com/feed_ajax?%s=1&feed_name=%s&paging=%%s' % (action, self._FEED_NAME)
  1556. @property
  1557. def IE_NAME(self):
  1558. return u'youtube:%s' % self._FEED_NAME
  1559. def _real_initialize(self):
  1560. self._login()
  1561. def _real_extract(self, url):
  1562. feed_entries = []
  1563. paging = 0
  1564. for i in itertools.count(1):
  1565. info = self._download_json(self._FEED_TEMPLATE % paging,
  1566. u'%s feed' % self._FEED_NAME,
  1567. u'Downloading page %s' % i)
  1568. feed_html = info.get('feed_html') or info.get('content_html')
  1569. m_ids = re.finditer(r'"/watch\?v=(.*?)["&]', feed_html)
  1570. ids = orderedSet(m.group(1) for m in m_ids)
  1571. feed_entries.extend(
  1572. self.url_result(video_id, 'Youtube', video_id=video_id)
  1573. for video_id in ids)
  1574. if info['paging'] is None:
  1575. break
  1576. paging = info['paging']
  1577. return self.playlist_result(feed_entries, playlist_title=self._PLAYLIST_TITLE)
  1578. class YoutubeSubscriptionsIE(YoutubeFeedsInfoExtractor):
  1579. IE_DESC = u'YouTube.com subscriptions feed, "ytsubs" keyword (requires authentication)'
  1580. _VALID_URL = r'https?://www\.youtube\.com/feed/subscriptions|:ytsubs(?:criptions)?'
  1581. _FEED_NAME = 'subscriptions'
  1582. _PLAYLIST_TITLE = u'Youtube Subscriptions'
  1583. class YoutubeRecommendedIE(YoutubeFeedsInfoExtractor):
  1584. IE_DESC = u'YouTube.com recommended videos, "ytrec" keyword (requires authentication)'
  1585. _VALID_URL = r'https?://www\.youtube\.com/feed/recommended|:ytrec(?:ommended)?'
  1586. _FEED_NAME = 'recommended'
  1587. _PLAYLIST_TITLE = u'Youtube Recommended videos'
  1588. class YoutubeWatchLaterIE(YoutubeFeedsInfoExtractor):
  1589. IE_DESC = u'Youtube watch later list, "ytwatchlater" keyword (requires authentication)'
  1590. _VALID_URL = r'https?://www\.youtube\.com/feed/watch_later|:ytwatchlater'
  1591. _FEED_NAME = 'watch_later'
  1592. _PLAYLIST_TITLE = u'Youtube Watch Later'
  1593. _PERSONAL_FEED = True
  1594. class YoutubeHistoryIE(YoutubeFeedsInfoExtractor):
  1595. IE_DESC = u'Youtube watch history, "ythistory" keyword (requires authentication)'
  1596. _VALID_URL = u'https?://www\.youtube\.com/feed/history|:ythistory'
  1597. _FEED_NAME = 'history'
  1598. _PERSONAL_FEED = True
  1599. _PLAYLIST_TITLE = u'Youtube Watch History'
  1600. class YoutubeFavouritesIE(YoutubeBaseInfoExtractor):
  1601. IE_NAME = u'youtube:favorites'
  1602. IE_DESC = u'YouTube.com favourite videos, "ytfav" keyword (requires authentication)'
  1603. _VALID_URL = r'https?://www\.youtube\.com/my_favorites|:ytfav(?:ou?rites)?'
  1604. _LOGIN_REQUIRED = True
  1605. def _real_extract(self, url):
  1606. webpage = self._download_webpage('https://www.youtube.com/my_favorites', 'Youtube Favourites videos')
  1607. playlist_id = self._search_regex(r'list=(.+?)["&]', webpage, u'favourites playlist id')
  1608. return self.url_result(playlist_id, 'YoutubePlaylist')
  1609. class YoutubeTruncatedURLIE(InfoExtractor):
  1610. IE_NAME = 'youtube:truncated_url'
  1611. IE_DESC = False # Do not list
  1612. _VALID_URL = r'''(?x)
  1613. (?:https?://)?[^/]+/watch\?(?:feature=[a-z_]+)?$|
  1614. (?:https?://)?(?:www\.)?youtube\.com/attribution_link\?a=[^&]+$
  1615. '''
  1616. def _real_extract(self, url):
  1617. raise ExtractorError(
  1618. u'Did you forget to quote the URL? Remember that & is a meta '
  1619. u'character in most shells, so you want to put the URL in quotes, '
  1620. u'like youtube-dl '
  1621. u'"http://www.youtube.com/watch?feature=foo&v=BaW_jenozKc" '
  1622. u' or simply youtube-dl BaW_jenozKc .',
  1623. expected=True)