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.

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