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.

1084 lines
48 KiB

  1. # coding: utf-8
  2. import json
  3. import netrc
  4. import re
  5. import socket
  6. import itertools
  7. from .common import InfoExtractor, SearchInfoExtractor
  8. from ..utils import (
  9. compat_http_client,
  10. compat_parse_qs,
  11. compat_urllib_error,
  12. compat_urllib_parse,
  13. compat_urllib_request,
  14. compat_str,
  15. clean_html,
  16. get_element_by_id,
  17. ExtractorError,
  18. unescapeHTML,
  19. unified_strdate,
  20. orderedSet,
  21. )
  22. class YoutubeBaseInfoExtractor(InfoExtractor):
  23. """Provide base functions for Youtube extractors"""
  24. _LOGIN_URL = 'https://accounts.google.com/ServiceLogin'
  25. _LANG_URL = r'https://www.youtube.com/?hl=en&persist_hl=1&gl=US&persist_gl=1&opt_out_ackd=1'
  26. _AGE_URL = 'http://www.youtube.com/verify_age?next_url=/&gl=US&hl=en'
  27. _NETRC_MACHINE = 'youtube'
  28. # If True it will raise an error if no login info is provided
  29. _LOGIN_REQUIRED = False
  30. def report_lang(self):
  31. """Report attempt to set language."""
  32. self.to_screen(u'Setting language')
  33. def _set_language(self):
  34. request = compat_urllib_request.Request(self._LANG_URL)
  35. try:
  36. self.report_lang()
  37. compat_urllib_request.urlopen(request).read()
  38. except (compat_urllib_error.URLError, compat_http_client.HTTPException, socket.error) as err:
  39. self._downloader.report_warning(u'unable to set language: %s' % compat_str(err))
  40. return False
  41. return True
  42. def _login(self):
  43. (username, password) = self._get_login_info()
  44. # No authentication to be performed
  45. if username is None:
  46. if self._LOGIN_REQUIRED:
  47. raise ExtractorError(u'No login info available, needed for using %s.' % self.IE_NAME, expected=True)
  48. return False
  49. request = compat_urllib_request.Request(self._LOGIN_URL)
  50. try:
  51. login_page = compat_urllib_request.urlopen(request).read().decode('utf-8')
  52. except (compat_urllib_error.URLError, compat_http_client.HTTPException, socket.error) as err:
  53. self._downloader.report_warning(u'unable to fetch login page: %s' % compat_str(err))
  54. return False
  55. galx = None
  56. dsh = None
  57. match = re.search(re.compile(r'<input.+?name="GALX".+?value="(.+?)"', re.DOTALL), login_page)
  58. if match:
  59. galx = match.group(1)
  60. match = re.search(re.compile(r'<input.+?name="dsh".+?value="(.+?)"', re.DOTALL), login_page)
  61. if match:
  62. dsh = match.group(1)
  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'dsh': dsh,
  76. u'pstMsg': u'0',
  77. u'rmShown': u'1',
  78. u'secTok': u'',
  79. u'signIn': u'Sign in',
  80. u'timeStmp': u'',
  81. u'service': u'youtube',
  82. u'uilel': u'3',
  83. u'hl': u'en_US',
  84. }
  85. # Convert to UTF-8 *before* urlencode because Python 2.x's urlencode
  86. # chokes on unicode
  87. login_form = dict((k.encode('utf-8'), v.encode('utf-8')) for k,v in login_form_strs.items())
  88. login_data = compat_urllib_parse.urlencode(login_form).encode('ascii')
  89. request = compat_urllib_request.Request(self._LOGIN_URL, login_data)
  90. try:
  91. self.report_login()
  92. login_results = compat_urllib_request.urlopen(request).read().decode('utf-8')
  93. if re.search(r'(?i)<form[^>]* id="gaia_loginform"', login_results) is not None:
  94. self._downloader.report_warning(u'unable to log in: bad username or password')
  95. return False
  96. except (compat_urllib_error.URLError, compat_http_client.HTTPException, socket.error) as err:
  97. self._downloader.report_warning(u'unable to log in: %s' % compat_str(err))
  98. return False
  99. return True
  100. def _confirm_age(self):
  101. age_form = {
  102. 'next_url': '/',
  103. 'action_confirm': 'Confirm',
  104. }
  105. request = compat_urllib_request.Request(self._AGE_URL, compat_urllib_parse.urlencode(age_form))
  106. try:
  107. self.report_age_confirmation()
  108. compat_urllib_request.urlopen(request).read().decode('utf-8')
  109. except (compat_urllib_error.URLError, compat_http_client.HTTPException, socket.error) as err:
  110. raise ExtractorError(u'Unable to confirm age: %s' % compat_str(err))
  111. return True
  112. def _real_initialize(self):
  113. if self._downloader is None:
  114. return
  115. if not self._set_language():
  116. return
  117. if not self._login():
  118. return
  119. self._confirm_age()
  120. class YoutubeIE(YoutubeBaseInfoExtractor):
  121. IE_DESC = u'YouTube.com'
  122. _VALID_URL = r"""^
  123. (
  124. (?:https?://)? # http(s):// (optional)
  125. (?:youtu\.be/|(?:\w+\.)?youtube(?:-nocookie)?\.com/|
  126. tube\.majestyc\.net/) # the various hostnames, with wildcard subdomains
  127. (?:.*?\#/)? # handle anchor (#/) redirect urls
  128. (?: # the various things that can precede the ID:
  129. (?:(?:v|embed|e)/) # v/ or embed/ or e/
  130. |(?: # or the v= param in all its forms
  131. (?:(?:watch|movie)(?:_popup)?(?:\.php)?)? # preceding watch(_popup|.php) or nothing (like /?v=xxxx)
  132. (?:\?|\#!?) # the params delimiter ? or # or #!
  133. (?:.*?&)? # any other preceding param (like /?s=tuff&v=xxxx)
  134. v=
  135. )
  136. )? # optional -> youtube.com/xxxx is OK
  137. )? # all until now is optional -> you can pass the naked ID
  138. ([0-9A-Za-z_-]+) # here is it! the YouTube video ID
  139. (?(1).+)? # if we found the ID, everything can follow
  140. $"""
  141. _NEXT_URL_RE = r'[\?&]next_url=([^&]+)'
  142. # Listed in order of quality
  143. _available_formats = ['38', '37', '46', '22', '45', '35', '44', '34', '18', '43', '6', '5', '17', '13',
  144. '95', '94', '93', '92', '132', '151',
  145. '85', '84', '102', '83', '101', '82', '100',
  146. ]
  147. _available_formats_prefer_free = ['38', '46', '37', '45', '22', '44', '35', '43', '34', '18', '6', '5', '17', '13',
  148. '95', '94', '93', '92', '132', '151',
  149. '85', '102', '84', '101', '83', '100', '82',
  150. ]
  151. _video_extensions = {
  152. '13': '3gp',
  153. '17': 'mp4',
  154. '18': 'mp4',
  155. '22': 'mp4',
  156. '37': 'mp4',
  157. '38': 'mp4',
  158. '43': 'webm',
  159. '44': 'webm',
  160. '45': 'webm',
  161. '46': 'webm',
  162. # 3d videos
  163. '82': 'mp4',
  164. '83': 'mp4',
  165. '84': 'mp4',
  166. '85': 'mp4',
  167. '100': 'webm',
  168. '101': 'webm',
  169. '102': 'webm',
  170. # videos that use m3u8
  171. '92': 'mp4',
  172. '93': 'mp4',
  173. '94': 'mp4',
  174. '95': 'mp4',
  175. '96': 'mp4',
  176. '132': 'mp4',
  177. '151': 'mp4',
  178. }
  179. _video_dimensions = {
  180. '5': '240x400',
  181. '6': '???',
  182. '13': '???',
  183. '17': '144x176',
  184. '18': '360x640',
  185. '22': '720x1280',
  186. '34': '360x640',
  187. '35': '480x854',
  188. '37': '1080x1920',
  189. '38': '3072x4096',
  190. '43': '360x640',
  191. '44': '480x854',
  192. '45': '720x1280',
  193. '46': '1080x1920',
  194. '82': '360p',
  195. '83': '480p',
  196. '84': '720p',
  197. '85': '1080p',
  198. '92': '240p',
  199. '93': '360p',
  200. '94': '480p',
  201. '95': '720p',
  202. '96': '1080p',
  203. '100': '360p',
  204. '101': '480p',
  205. '102': '720p',
  206. '132': '240p',
  207. '151': '72p',
  208. }
  209. _3d_itags = ['85', '84', '102', '83', '101', '82', '100']
  210. IE_NAME = u'youtube'
  211. _TESTS = [
  212. {
  213. u"url": u"http://www.youtube.com/watch?v=BaW_jenozKc",
  214. u"file": u"BaW_jenozKc.mp4",
  215. u"info_dict": {
  216. u"title": u"youtube-dl test video \"'/\\ä↭𝕐",
  217. u"uploader": u"Philipp Hagemeister",
  218. u"uploader_id": u"phihag",
  219. u"upload_date": u"20121002",
  220. u"description": u"test chars: \"'/\\ä↭𝕐\n\nThis is a test video for youtube-dl.\n\nFor more information, contact phihag@phihag.de ."
  221. }
  222. },
  223. {
  224. u"url": u"http://www.youtube.com/watch?v=1ltcDfZMA3U",
  225. u"file": u"1ltcDfZMA3U.flv",
  226. u"note": u"Test VEVO video (#897)",
  227. u"info_dict": {
  228. u"upload_date": u"20070518",
  229. u"title": u"Maps - It Will Find You",
  230. u"description": u"Music video by Maps performing It Will Find You.",
  231. u"uploader": u"MuteUSA",
  232. u"uploader_id": u"MuteUSA"
  233. }
  234. },
  235. {
  236. u"url": u"http://www.youtube.com/watch?v=UxxajLWwzqY",
  237. u"file": u"UxxajLWwzqY.mp4",
  238. u"note": u"Test generic use_cipher_signature video (#897)",
  239. u"info_dict": {
  240. u"upload_date": u"20120506",
  241. u"title": u"Icona Pop - I Love It (feat. Charli XCX) [OFFICIAL VIDEO]",
  242. u"description": u"md5:b085c9804f5ab69f4adea963a2dceb3c",
  243. u"uploader": u"Icona Pop",
  244. u"uploader_id": u"IconaPop"
  245. }
  246. },
  247. {
  248. u"url": u"https://www.youtube.com/watch?v=07FYdnEawAQ",
  249. u"file": u"07FYdnEawAQ.mp4",
  250. u"note": u"Test VEVO video with age protection (#956)",
  251. u"info_dict": {
  252. u"upload_date": u"20130703",
  253. u"title": u"Justin Timberlake - Tunnel Vision (Explicit)",
  254. u"description": u"md5:64249768eec3bc4276236606ea996373",
  255. u"uploader": u"justintimberlakeVEVO",
  256. u"uploader_id": u"justintimberlakeVEVO"
  257. }
  258. },
  259. {
  260. u'url': u'https://www.youtube.com/watch?v=TGi3HqYrWHE',
  261. u'file': u'TGi3HqYrWHE.mp4',
  262. u'note': u'm3u8 video',
  263. u'info_dict': {
  264. u'title': u'Triathlon - Men - London 2012 Olympic Games',
  265. u'description': u'- Men - TR02 - Triathlon - 07 August 2012 - London 2012 Olympic Games',
  266. u'uploader': u'olympic',
  267. u'upload_date': u'20120807',
  268. u'uploader_id': u'olympic',
  269. },
  270. u'params': {
  271. u'skip_download': True,
  272. },
  273. },
  274. ]
  275. @classmethod
  276. def suitable(cls, url):
  277. """Receives a URL and returns True if suitable for this IE."""
  278. if YoutubePlaylistIE.suitable(url) or YoutubeSubscriptionsIE.suitable(url): return False
  279. return re.match(cls._VALID_URL, url, re.VERBOSE) is not None
  280. def report_video_webpage_download(self, video_id):
  281. """Report attempt to download video webpage."""
  282. self.to_screen(u'%s: Downloading video webpage' % video_id)
  283. def report_video_info_webpage_download(self, video_id):
  284. """Report attempt to download video info webpage."""
  285. self.to_screen(u'%s: Downloading video info webpage' % video_id)
  286. def report_video_subtitles_download(self, video_id):
  287. """Report attempt to download video info webpage."""
  288. self.to_screen(u'%s: Checking available subtitles' % video_id)
  289. def report_video_subtitles_request(self, video_id, sub_lang, format):
  290. """Report attempt to download video info webpage."""
  291. self.to_screen(u'%s: Downloading video subtitles for %s.%s' % (video_id, sub_lang, format))
  292. def report_video_subtitles_available(self, video_id, sub_lang_list):
  293. """Report available subtitles."""
  294. sub_lang = ",".join(list(sub_lang_list.keys()))
  295. self.to_screen(u'%s: Available subtitles for video: %s' % (video_id, sub_lang))
  296. def report_information_extraction(self, video_id):
  297. """Report attempt to extract video information."""
  298. self.to_screen(u'%s: Extracting video information' % video_id)
  299. def report_unavailable_format(self, video_id, format):
  300. """Report extracted video URL."""
  301. self.to_screen(u'%s: Format %s not available' % (video_id, format))
  302. def report_rtmp_download(self):
  303. """Indicate the download will use the RTMP protocol."""
  304. self.to_screen(u'RTMP download detected')
  305. def _decrypt_signature(self, s):
  306. """Turn the encrypted s field into a working signature"""
  307. if len(s) == 92:
  308. return s[25] + s[3:25] + s[0] + s[26:42] + s[79] + s[43:79] + s[91] + s[80:83]
  309. elif len(s) == 90:
  310. return s[25] + s[3:25] + s[2] + s[26:40] + s[77] + s[41:77] + s[89] + s[78:81]
  311. elif len(s) == 89:
  312. return s[84:78:-1] + s[87] + s[77:60:-1] + s[0] + s[59:3:-1]
  313. elif len(s) == 88:
  314. return s[48] + s[81:67:-1] + s[82] + s[66:62:-1] + s[85] + s[61:48:-1] + s[67] + s[47:12:-1] + s[3] + s[11:3:-1] + s[2] + s[12]
  315. elif len(s) == 87:
  316. return s[6:27] + s[4] + s[28:39] + s[27] + s[40:59] + s[2] + s[60:]
  317. elif len(s) == 86:
  318. return s[5:20] + s[2] + s[21:]
  319. elif len(s) == 85:
  320. return s[83:34:-1] + s[0] + s[33:27:-1] + s[3] + s[26:19:-1] + s[34] + s[18:3:-1] + s[27]
  321. elif len(s) == 84:
  322. return s[83:27:-1] + s[0] + s[26:5:-1] + s[2:0:-1] + s[27]
  323. elif len(s) == 83:
  324. return s[81:64:-1] + s[82] + s[63:52:-1] + s[45] + s[51:45:-1] + s[1] + s[44:1:-1] + s[0]
  325. elif len(s) == 82:
  326. return s[36] + s[79:67:-1] + s[81] + s[66:40:-1] + s[33] + s[39:36:-1] + s[40] + s[35] + s[0] + s[67] + s[32:0:-1] + s[34]
  327. elif len(s) == 81:
  328. 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]
  329. elif len(s) == 79:
  330. 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]
  331. else:
  332. raise ExtractorError(u'Unable to decrypt signature, key length %d not supported; retrying might work' % (len(s)))
  333. def _decrypt_signature_age_gate(self, s):
  334. # The videos with age protection use another player, so the algorithms
  335. # can be different.
  336. if len(s) == 86:
  337. return s[2:63] + s[82] + s[64:82] + s[63]
  338. else:
  339. # Fallback to the other algortihms
  340. return self._decrypt_signature(s)
  341. def _get_available_subtitles(self, video_id):
  342. self.report_video_subtitles_download(video_id)
  343. request = compat_urllib_request.Request('http://video.google.com/timedtext?hl=en&type=list&v=%s' % video_id)
  344. try:
  345. sub_list = compat_urllib_request.urlopen(request).read().decode('utf-8')
  346. except (compat_urllib_error.URLError, compat_http_client.HTTPException, socket.error) as err:
  347. return (u'unable to download video subtitles: %s' % compat_str(err), None)
  348. sub_lang_list = re.findall(r'name="([^"]*)"[^>]+lang_code="([\w\-]+)"', sub_list)
  349. sub_lang_list = dict((l[1], l[0]) for l in sub_lang_list)
  350. if not sub_lang_list:
  351. return (u'video doesn\'t have subtitles', None)
  352. return sub_lang_list
  353. def _list_available_subtitles(self, video_id):
  354. sub_lang_list = self._get_available_subtitles(video_id)
  355. self.report_video_subtitles_available(video_id, sub_lang_list)
  356. def _request_subtitle(self, sub_lang, sub_name, video_id, format):
  357. """
  358. Return tuple:
  359. (error_message, sub_lang, sub)
  360. """
  361. self.report_video_subtitles_request(video_id, sub_lang, format)
  362. params = compat_urllib_parse.urlencode({
  363. 'lang': sub_lang,
  364. 'name': sub_name,
  365. 'v': video_id,
  366. 'fmt': format,
  367. })
  368. url = 'http://www.youtube.com/api/timedtext?' + params
  369. try:
  370. sub = compat_urllib_request.urlopen(url).read().decode('utf-8')
  371. except (compat_urllib_error.URLError, compat_http_client.HTTPException, socket.error) as err:
  372. return (u'unable to download video subtitles: %s' % compat_str(err), None, None)
  373. if not sub:
  374. return (u'Did not fetch video subtitles', None, None)
  375. return (None, sub_lang, sub)
  376. def _request_automatic_caption(self, video_id, webpage):
  377. """We need the webpage for getting the captions url, pass it as an
  378. argument to speed up the process."""
  379. sub_lang = self._downloader.params.get('subtitleslang') or 'en'
  380. sub_format = self._downloader.params.get('subtitlesformat')
  381. self.to_screen(u'%s: Looking for automatic captions' % video_id)
  382. mobj = re.search(r';ytplayer.config = ({.*?});', webpage)
  383. err_msg = u'Couldn\'t find automatic captions for "%s"' % sub_lang
  384. if mobj is None:
  385. return [(err_msg, None, None)]
  386. player_config = json.loads(mobj.group(1))
  387. try:
  388. args = player_config[u'args']
  389. caption_url = args[u'ttsurl']
  390. timestamp = args[u'timestamp']
  391. params = compat_urllib_parse.urlencode({
  392. 'lang': 'en',
  393. 'tlang': sub_lang,
  394. 'fmt': sub_format,
  395. 'ts': timestamp,
  396. 'kind': 'asr',
  397. })
  398. subtitles_url = caption_url + '&' + params
  399. sub = self._download_webpage(subtitles_url, video_id, u'Downloading automatic captions')
  400. return [(None, sub_lang, sub)]
  401. except KeyError:
  402. return [(err_msg, None, None)]
  403. def _extract_subtitle(self, video_id):
  404. """
  405. Return a list with a tuple:
  406. [(error_message, sub_lang, sub)]
  407. """
  408. sub_lang_list = self._get_available_subtitles(video_id)
  409. sub_format = self._downloader.params.get('subtitlesformat')
  410. if isinstance(sub_lang_list,tuple): #There was some error, it didn't get the available subtitles
  411. return [(sub_lang_list[0], None, None)]
  412. if self._downloader.params.get('subtitleslang', False):
  413. sub_lang = self._downloader.params.get('subtitleslang')
  414. elif 'en' in sub_lang_list:
  415. sub_lang = 'en'
  416. else:
  417. sub_lang = list(sub_lang_list.keys())[0]
  418. if not sub_lang in sub_lang_list:
  419. return [(u'no closed captions found in the specified language "%s"' % sub_lang, None, None)]
  420. subtitle = self._request_subtitle(sub_lang, sub_lang_list[sub_lang].encode('utf-8'), video_id, sub_format)
  421. return [subtitle]
  422. def _extract_all_subtitles(self, video_id):
  423. sub_lang_list = self._get_available_subtitles(video_id)
  424. sub_format = self._downloader.params.get('subtitlesformat')
  425. if isinstance(sub_lang_list,tuple): #There was some error, it didn't get the available subtitles
  426. return [(sub_lang_list[0], None, None)]
  427. subtitles = []
  428. for sub_lang in sub_lang_list:
  429. subtitle = self._request_subtitle(sub_lang, sub_lang_list[sub_lang].encode('utf-8'), video_id, sub_format)
  430. subtitles.append(subtitle)
  431. return subtitles
  432. def _print_formats(self, formats):
  433. print('Available formats:')
  434. for x in formats:
  435. print('%s\t:\t%s\t[%s]%s' %(x, self._video_extensions.get(x, 'flv'),
  436. self._video_dimensions.get(x, '???'),
  437. ' (3D)' if x in self._3d_itags else ''))
  438. def _extract_id(self, url):
  439. mobj = re.match(self._VALID_URL, url, re.VERBOSE)
  440. if mobj is None:
  441. raise ExtractorError(u'Invalid URL: %s' % url)
  442. video_id = mobj.group(2)
  443. return video_id
  444. def _get_video_url_list(self, url_map):
  445. """
  446. Transform a dictionary in the format {itag:url} to a list of (itag, url)
  447. with the requested formats.
  448. """
  449. req_format = self._downloader.params.get('format', None)
  450. format_limit = self._downloader.params.get('format_limit', None)
  451. available_formats = self._available_formats_prefer_free if self._downloader.params.get('prefer_free_formats', False) else self._available_formats
  452. if format_limit is not None and format_limit in available_formats:
  453. format_list = available_formats[available_formats.index(format_limit):]
  454. else:
  455. format_list = available_formats
  456. existing_formats = [x for x in format_list if x in url_map]
  457. if len(existing_formats) == 0:
  458. raise ExtractorError(u'no known formats available for video')
  459. if self._downloader.params.get('listformats', None):
  460. self._print_formats(existing_formats)
  461. return
  462. if req_format is None or req_format == 'best':
  463. video_url_list = [(existing_formats[0], url_map[existing_formats[0]])] # Best quality
  464. elif req_format == 'worst':
  465. video_url_list = [(existing_formats[-1], url_map[existing_formats[-1]])] # worst quality
  466. elif req_format in ('-1', 'all'):
  467. video_url_list = [(f, url_map[f]) for f in existing_formats] # All formats
  468. else:
  469. # Specific formats. We pick the first in a slash-delimeted sequence.
  470. # For example, if '1/2/3/4' is requested and '2' and '4' are available, we pick '2'.
  471. req_formats = req_format.split('/')
  472. video_url_list = None
  473. for rf in req_formats:
  474. if rf in url_map:
  475. video_url_list = [(rf, url_map[rf])]
  476. break
  477. if video_url_list is None:
  478. raise ExtractorError(u'requested format not available')
  479. return video_url_list
  480. def _extract_from_m3u8(self, manifest_url, video_id):
  481. url_map = {}
  482. def _get_urls(_manifest):
  483. lines = _manifest.split('\n')
  484. urls = filter(lambda l: l and not l.startswith('#'),
  485. lines)
  486. return urls
  487. manifest = self._download_webpage(manifest_url, video_id, u'Downloading formats manifest')
  488. formats_urls = _get_urls(manifest)
  489. for format_url in formats_urls:
  490. itag = self._search_regex(r'itag/(\d+?)/', format_url, 'itag')
  491. url_map[itag] = format_url
  492. return url_map
  493. def _real_extract(self, url):
  494. if re.match(r'(?:https?://)?[^/]+/watch\?feature=[a-z_]+$', url):
  495. self._downloader.report_warning(u'Did you forget to quote the URL? Remember that & is a meta-character in most shells, so you want to put the URL in quotes, like youtube-dl \'http://www.youtube.com/watch?feature=foo&v=BaW_jenozKc\' (or simply youtube-dl BaW_jenozKc ).')
  496. # Extract original video URL from URL with redirection, like age verification, using next_url parameter
  497. mobj = re.search(self._NEXT_URL_RE, url)
  498. if mobj:
  499. url = 'https://www.youtube.com/' + compat_urllib_parse.unquote(mobj.group(1)).lstrip('/')
  500. video_id = self._extract_id(url)
  501. # Get video webpage
  502. self.report_video_webpage_download(video_id)
  503. url = 'https://www.youtube.com/watch?v=%s&gl=US&hl=en&has_verified=1' % video_id
  504. request = compat_urllib_request.Request(url)
  505. try:
  506. video_webpage_bytes = compat_urllib_request.urlopen(request).read()
  507. except (compat_urllib_error.URLError, compat_http_client.HTTPException, socket.error) as err:
  508. raise ExtractorError(u'Unable to download video webpage: %s' % compat_str(err))
  509. video_webpage = video_webpage_bytes.decode('utf-8', 'ignore')
  510. # Attempt to extract SWF player URL
  511. mobj = re.search(r'swfConfig.*?"(http:\\/\\/.*?watch.*?-.*?\.swf)"', video_webpage)
  512. if mobj is not None:
  513. player_url = re.sub(r'\\(.)', r'\1', mobj.group(1))
  514. else:
  515. player_url = None
  516. # Get video info
  517. self.report_video_info_webpage_download(video_id)
  518. if re.search(r'player-age-gate-content">', video_webpage) is not None:
  519. self.report_age_confirmation()
  520. age_gate = True
  521. # We simulate the access to the video from www.youtube.com/v/{video_id}
  522. # this can be viewed without login into Youtube
  523. data = compat_urllib_parse.urlencode({'video_id': video_id,
  524. 'el': 'embedded',
  525. 'gl': 'US',
  526. 'hl': 'en',
  527. 'eurl': 'https://youtube.googleapis.com/v/' + video_id,
  528. 'asv': 3,
  529. 'sts':'1588',
  530. })
  531. video_info_url = 'https://www.youtube.com/get_video_info?' + data
  532. video_info_webpage = self._download_webpage(video_info_url, video_id,
  533. note=False,
  534. errnote='unable to download video info webpage')
  535. video_info = compat_parse_qs(video_info_webpage)
  536. else:
  537. age_gate = False
  538. for el_type in ['&el=embedded', '&el=detailpage', '&el=vevo', '']:
  539. video_info_url = ('https://www.youtube.com/get_video_info?&video_id=%s%s&ps=default&eurl=&gl=US&hl=en'
  540. % (video_id, el_type))
  541. video_info_webpage = self._download_webpage(video_info_url, video_id,
  542. note=False,
  543. errnote='unable to download video info webpage')
  544. video_info = compat_parse_qs(video_info_webpage)
  545. if 'token' in video_info:
  546. break
  547. if 'token' not in video_info:
  548. if 'reason' in video_info:
  549. raise ExtractorError(u'YouTube said: %s' % video_info['reason'][0], expected=True)
  550. else:
  551. raise ExtractorError(u'"token" parameter not in video info for unknown reason')
  552. # Check for "rental" videos
  553. if 'ypc_video_rental_bar_text' in video_info and 'author' not in video_info:
  554. raise ExtractorError(u'"rental" videos not supported')
  555. # Start extracting information
  556. self.report_information_extraction(video_id)
  557. # uploader
  558. if 'author' not in video_info:
  559. raise ExtractorError(u'Unable to extract uploader name')
  560. video_uploader = compat_urllib_parse.unquote_plus(video_info['author'][0])
  561. # uploader_id
  562. video_uploader_id = None
  563. mobj = re.search(r'<link itemprop="url" href="http://www.youtube.com/(?:user|channel)/([^"]+)">', video_webpage)
  564. if mobj is not None:
  565. video_uploader_id = mobj.group(1)
  566. else:
  567. self._downloader.report_warning(u'unable to extract uploader nickname')
  568. # title
  569. if 'title' not in video_info:
  570. raise ExtractorError(u'Unable to extract video title')
  571. video_title = compat_urllib_parse.unquote_plus(video_info['title'][0])
  572. # thumbnail image
  573. # We try first to get a high quality image:
  574. m_thumb = re.search(r'<span itemprop="thumbnail".*?href="(.*?)">',
  575. video_webpage, re.DOTALL)
  576. if m_thumb is not None:
  577. video_thumbnail = m_thumb.group(1)
  578. elif 'thumbnail_url' not in video_info:
  579. self._downloader.report_warning(u'unable to extract video thumbnail')
  580. video_thumbnail = ''
  581. else: # don't panic if we can't find it
  582. video_thumbnail = compat_urllib_parse.unquote_plus(video_info['thumbnail_url'][0])
  583. # upload date
  584. upload_date = None
  585. mobj = re.search(r'id="eow-date.*?>(.*?)</span>', video_webpage, re.DOTALL)
  586. if mobj is not None:
  587. upload_date = ' '.join(re.sub(r'[/,-]', r' ', mobj.group(1)).split())
  588. upload_date = unified_strdate(upload_date)
  589. # description
  590. video_description = get_element_by_id("eow-description", video_webpage)
  591. if video_description:
  592. video_description = clean_html(video_description)
  593. else:
  594. fd_mobj = re.search(r'<meta name="description" content="([^"]+)"', video_webpage)
  595. if fd_mobj:
  596. video_description = unescapeHTML(fd_mobj.group(1))
  597. else:
  598. video_description = u''
  599. # subtitles
  600. video_subtitles = None
  601. if self._downloader.params.get('writesubtitles', False):
  602. video_subtitles = self._extract_subtitle(video_id)
  603. if video_subtitles:
  604. (sub_error, sub_lang, sub) = video_subtitles[0]
  605. if sub_error:
  606. self._downloader.report_warning(sub_error)
  607. if self._downloader.params.get('writeautomaticsub', False):
  608. video_subtitles = self._request_automatic_caption(video_id, video_webpage)
  609. (sub_error, sub_lang, sub) = video_subtitles[0]
  610. if sub_error:
  611. self._downloader.report_warning(sub_error)
  612. if self._downloader.params.get('allsubtitles', False):
  613. video_subtitles = self._extract_all_subtitles(video_id)
  614. for video_subtitle in video_subtitles:
  615. (sub_error, sub_lang, sub) = video_subtitle
  616. if sub_error:
  617. self._downloader.report_warning(sub_error)
  618. if self._downloader.params.get('listsubtitles', False):
  619. self._list_available_subtitles(video_id)
  620. return
  621. if 'length_seconds' not in video_info:
  622. self._downloader.report_warning(u'unable to extract video duration')
  623. video_duration = ''
  624. else:
  625. video_duration = compat_urllib_parse.unquote_plus(video_info['length_seconds'][0])
  626. # Decide which formats to download
  627. try:
  628. mobj = re.search(r';ytplayer.config = ({.*?});', video_webpage)
  629. if not mobj:
  630. raise ValueError('Could not find vevo ID')
  631. info = json.loads(mobj.group(1))
  632. args = info['args']
  633. # Easy way to know if the 's' value is in url_encoded_fmt_stream_map
  634. # this signatures are encrypted
  635. m_s = re.search(r'[&,]s=', args['url_encoded_fmt_stream_map'])
  636. if m_s is not None:
  637. self.to_screen(u'%s: Encrypted signatures detected.' % video_id)
  638. video_info['url_encoded_fmt_stream_map'] = [args['url_encoded_fmt_stream_map']]
  639. except ValueError:
  640. pass
  641. if 'conn' in video_info and video_info['conn'][0].startswith('rtmp'):
  642. self.report_rtmp_download()
  643. video_url_list = [(None, video_info['conn'][0])]
  644. elif 'url_encoded_fmt_stream_map' in video_info and len(video_info['url_encoded_fmt_stream_map']) >= 1:
  645. if 'rtmpe%3Dyes' in video_info['url_encoded_fmt_stream_map'][0]:
  646. raise ExtractorError('rtmpe downloads are not supported, see https://github.com/rg3/youtube-dl/issues/343 for more information.', expected=True)
  647. url_map = {}
  648. for url_data_str in video_info['url_encoded_fmt_stream_map'][0].split(','):
  649. url_data = compat_parse_qs(url_data_str)
  650. if 'itag' in url_data and 'url' in url_data:
  651. url = url_data['url'][0]
  652. if 'sig' in url_data:
  653. url += '&signature=' + url_data['sig'][0]
  654. elif 's' in url_data:
  655. if self._downloader.params.get('verbose'):
  656. s = url_data['s'][0]
  657. if age_gate:
  658. player_version = self._search_regex(r'ad3-(.+?)\.swf',
  659. video_info['ad3_module'][0] if 'ad3_module' in video_info else 'NOT FOUND',
  660. 'flash player', fatal=False)
  661. player = 'flash player %s' % player_version
  662. else:
  663. player = u'html5 player %s' % self._search_regex(r'html5player-(.+?)\.js', video_webpage,
  664. 'html5 player', fatal=False)
  665. parts_sizes = u'.'.join(compat_str(len(part)) for part in s.split('.'))
  666. self.to_screen(u'encrypted signature length %d (%s), itag %s, %s' %
  667. (len(s), parts_sizes, url_data['itag'][0], player))
  668. encrypted_sig = url_data['s'][0]
  669. if age_gate:
  670. signature = self._decrypt_signature_age_gate(encrypted_sig)
  671. else:
  672. signature = self._decrypt_signature(encrypted_sig)
  673. url += '&signature=' + signature
  674. if 'ratebypass' not in url:
  675. url += '&ratebypass=yes'
  676. url_map[url_data['itag'][0]] = url
  677. video_url_list = self._get_video_url_list(url_map)
  678. if not video_url_list:
  679. return
  680. elif video_info.get('hlsvp'):
  681. manifest_url = video_info['hlsvp'][0]
  682. url_map = self._extract_from_m3u8(manifest_url, video_id)
  683. video_url_list = self._get_video_url_list(url_map)
  684. if not video_url_list:
  685. return
  686. else:
  687. raise ExtractorError(u'no conn or url_encoded_fmt_stream_map information found in video info')
  688. results = []
  689. for format_param, video_real_url in video_url_list:
  690. # Extension
  691. video_extension = self._video_extensions.get(format_param, 'flv')
  692. video_format = '{0} - {1}{2}'.format(format_param if format_param else video_extension,
  693. self._video_dimensions.get(format_param, '???'),
  694. ' (3D)' if format_param in self._3d_itags else '')
  695. results.append({
  696. 'id': video_id,
  697. 'url': video_real_url,
  698. 'uploader': video_uploader,
  699. 'uploader_id': video_uploader_id,
  700. 'upload_date': upload_date,
  701. 'title': video_title,
  702. 'ext': video_extension,
  703. 'format': video_format,
  704. 'thumbnail': video_thumbnail,
  705. 'description': video_description,
  706. 'player_url': player_url,
  707. 'subtitles': video_subtitles,
  708. 'duration': video_duration
  709. })
  710. return results
  711. class YoutubePlaylistIE(InfoExtractor):
  712. IE_DESC = u'YouTube.com playlists'
  713. _VALID_URL = r"""(?:
  714. (?:https?://)?
  715. (?:\w+\.)?
  716. youtube\.com/
  717. (?:
  718. (?:course|view_play_list|my_playlists|artist|playlist|watch)
  719. \? (?:.*?&)*? (?:p|a|list)=
  720. | p/
  721. )
  722. ((?:PL|EC|UU|FL)?[0-9A-Za-z-_]{10,})
  723. .*
  724. |
  725. ((?:PL|EC|UU|FL)[0-9A-Za-z-_]{10,})
  726. )"""
  727. _TEMPLATE_URL = 'https://gdata.youtube.com/feeds/api/playlists/%s?max-results=%i&start-index=%i&v=2&alt=json&safeSearch=none'
  728. _MAX_RESULTS = 50
  729. IE_NAME = u'youtube:playlist'
  730. @classmethod
  731. def suitable(cls, url):
  732. """Receives a URL and returns True if suitable for this IE."""
  733. return re.match(cls._VALID_URL, url, re.VERBOSE) is not None
  734. def _real_extract(self, url):
  735. # Extract playlist id
  736. mobj = re.match(self._VALID_URL, url, re.VERBOSE)
  737. if mobj is None:
  738. raise ExtractorError(u'Invalid URL: %s' % url)
  739. # Download playlist videos from API
  740. playlist_id = mobj.group(1) or mobj.group(2)
  741. videos = []
  742. for page_num in itertools.count(1):
  743. start_index = self._MAX_RESULTS * (page_num - 1) + 1
  744. if start_index >= 1000:
  745. self._downloader.report_warning(u'Max number of results reached')
  746. break
  747. url = self._TEMPLATE_URL % (playlist_id, self._MAX_RESULTS, start_index)
  748. page = self._download_webpage(url, playlist_id, u'Downloading page #%s' % page_num)
  749. try:
  750. response = json.loads(page)
  751. except ValueError as err:
  752. raise ExtractorError(u'Invalid JSON in API response: ' + compat_str(err))
  753. if 'feed' not in response:
  754. raise ExtractorError(u'Got a malformed response from YouTube API')
  755. playlist_title = response['feed']['title']['$t']
  756. if 'entry' not in response['feed']:
  757. # Number of videos is a multiple of self._MAX_RESULTS
  758. break
  759. for entry in response['feed']['entry']:
  760. index = entry['yt$position']['$t']
  761. if 'media$group' in entry and 'media$player' in entry['media$group']:
  762. videos.append((index, entry['media$group']['media$player']['url']))
  763. videos = [v[1] for v in sorted(videos)]
  764. url_results = [self.url_result(vurl, 'Youtube') for vurl in videos]
  765. return [self.playlist_result(url_results, playlist_id, playlist_title)]
  766. class YoutubeChannelIE(InfoExtractor):
  767. IE_DESC = u'YouTube.com channels'
  768. _VALID_URL = r"^(?:https?://)?(?:youtu\.be|(?:\w+\.)?youtube(?:-nocookie)?\.com)/channel/([0-9A-Za-z_-]+)"
  769. _TEMPLATE_URL = 'http://www.youtube.com/channel/%s/videos?sort=da&flow=list&view=0&page=%s&gl=US&hl=en'
  770. _MORE_PAGES_INDICATOR = 'yt-uix-load-more'
  771. _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'
  772. IE_NAME = u'youtube:channel'
  773. def extract_videos_from_page(self, page):
  774. ids_in_page = []
  775. for mobj in re.finditer(r'href="/watch\?v=([0-9A-Za-z_-]+)&?', page):
  776. if mobj.group(1) not in ids_in_page:
  777. ids_in_page.append(mobj.group(1))
  778. return ids_in_page
  779. def _real_extract(self, url):
  780. # Extract channel id
  781. mobj = re.match(self._VALID_URL, url)
  782. if mobj is None:
  783. raise ExtractorError(u'Invalid URL: %s' % url)
  784. # Download channel page
  785. channel_id = mobj.group(1)
  786. video_ids = []
  787. pagenum = 1
  788. url = self._TEMPLATE_URL % (channel_id, pagenum)
  789. page = self._download_webpage(url, channel_id,
  790. u'Downloading page #%s' % pagenum)
  791. # Extract video identifiers
  792. ids_in_page = self.extract_videos_from_page(page)
  793. video_ids.extend(ids_in_page)
  794. # Download any subsequent channel pages using the json-based channel_ajax query
  795. if self._MORE_PAGES_INDICATOR in page:
  796. for pagenum in itertools.count(1):
  797. url = self._MORE_PAGES_URL % (pagenum, channel_id)
  798. page = self._download_webpage(url, channel_id,
  799. u'Downloading page #%s' % pagenum)
  800. page = json.loads(page)
  801. ids_in_page = self.extract_videos_from_page(page['content_html'])
  802. video_ids.extend(ids_in_page)
  803. if self._MORE_PAGES_INDICATOR not in page['load_more_widget_html']:
  804. break
  805. self._downloader.to_screen(u'[youtube] Channel %s: Found %i videos' % (channel_id, len(video_ids)))
  806. urls = ['http://www.youtube.com/watch?v=%s' % id for id in video_ids]
  807. url_entries = [self.url_result(eurl, 'Youtube') for eurl in urls]
  808. return [self.playlist_result(url_entries, channel_id)]
  809. class YoutubeUserIE(InfoExtractor):
  810. IE_DESC = u'YouTube.com user videos (URL or "ytuser" keyword)'
  811. _VALID_URL = r'(?:(?:(?:https?://)?(?:\w+\.)?youtube\.com/user/)|ytuser:)([A-Za-z0-9_-]+)'
  812. _TEMPLATE_URL = 'http://gdata.youtube.com/feeds/api/users/%s'
  813. _GDATA_PAGE_SIZE = 50
  814. _GDATA_URL = 'http://gdata.youtube.com/feeds/api/users/%s/uploads?max-results=%d&start-index=%d'
  815. _VIDEO_INDICATOR = r'/watch\?v=(.+?)[\<&]'
  816. IE_NAME = u'youtube:user'
  817. def _real_extract(self, url):
  818. # Extract username
  819. mobj = re.match(self._VALID_URL, url)
  820. if mobj is None:
  821. raise ExtractorError(u'Invalid URL: %s' % url)
  822. username = mobj.group(1)
  823. # Download video ids using YouTube Data API. Result size per
  824. # query is limited (currently to 50 videos) so we need to query
  825. # page by page until there are no video ids - it means we got
  826. # all of them.
  827. video_ids = []
  828. for pagenum in itertools.count(0):
  829. start_index = pagenum * self._GDATA_PAGE_SIZE + 1
  830. gdata_url = self._GDATA_URL % (username, self._GDATA_PAGE_SIZE, start_index)
  831. page = self._download_webpage(gdata_url, username,
  832. u'Downloading video ids from %d to %d' % (start_index, start_index + self._GDATA_PAGE_SIZE))
  833. # Extract video identifiers
  834. ids_in_page = []
  835. for mobj in re.finditer(self._VIDEO_INDICATOR, page):
  836. if mobj.group(1) not in ids_in_page:
  837. ids_in_page.append(mobj.group(1))
  838. video_ids.extend(ids_in_page)
  839. # A little optimization - if current page is not
  840. # "full", ie. does not contain PAGE_SIZE video ids then
  841. # we can assume that this page is the last one - there
  842. # are no more ids on further pages - no need to query
  843. # again.
  844. if len(ids_in_page) < self._GDATA_PAGE_SIZE:
  845. break
  846. urls = ['http://www.youtube.com/watch?v=%s' % video_id for video_id in video_ids]
  847. url_results = [self.url_result(rurl, 'Youtube') for rurl in urls]
  848. return [self.playlist_result(url_results, playlist_title = username)]
  849. class YoutubeSearchIE(SearchInfoExtractor):
  850. IE_DESC = u'YouTube.com searches'
  851. _API_URL = 'https://gdata.youtube.com/feeds/api/videos?q=%s&start-index=%i&max-results=50&v=2&alt=jsonc'
  852. _MAX_RESULTS = 1000
  853. IE_NAME = u'youtube:search'
  854. _SEARCH_KEY = 'ytsearch'
  855. def report_download_page(self, query, pagenum):
  856. """Report attempt to download search page with given number."""
  857. self._downloader.to_screen(u'[youtube] query "%s": Downloading page %s' % (query, pagenum))
  858. def _get_n_results(self, query, n):
  859. """Get a specified number of results for a query"""
  860. video_ids = []
  861. pagenum = 0
  862. limit = n
  863. while (50 * pagenum) < limit:
  864. self.report_download_page(query, pagenum+1)
  865. result_url = self._API_URL % (compat_urllib_parse.quote_plus(query), (50*pagenum)+1)
  866. request = compat_urllib_request.Request(result_url)
  867. try:
  868. data = compat_urllib_request.urlopen(request).read().decode('utf-8')
  869. except (compat_urllib_error.URLError, compat_http_client.HTTPException, socket.error) as err:
  870. raise ExtractorError(u'Unable to download API page: %s' % compat_str(err))
  871. api_response = json.loads(data)['data']
  872. if not 'items' in api_response:
  873. raise ExtractorError(u'[youtube] No video results')
  874. new_ids = list(video['id'] for video in api_response['items'])
  875. video_ids += new_ids
  876. limit = min(n, api_response['totalItems'])
  877. pagenum += 1
  878. if len(video_ids) > n:
  879. video_ids = video_ids[:n]
  880. videos = [self.url_result('http://www.youtube.com/watch?v=%s' % id, 'Youtube') for id in video_ids]
  881. return self.playlist_result(videos, query)
  882. class YoutubeShowIE(InfoExtractor):
  883. IE_DESC = u'YouTube.com (multi-season) shows'
  884. _VALID_URL = r'https?://www\.youtube\.com/show/(.*)'
  885. IE_NAME = u'youtube:show'
  886. def _real_extract(self, url):
  887. mobj = re.match(self._VALID_URL, url)
  888. show_name = mobj.group(1)
  889. webpage = self._download_webpage(url, show_name, u'Downloading show webpage')
  890. # There's one playlist for each season of the show
  891. m_seasons = list(re.finditer(r'href="(/playlist\?list=.*?)"', webpage))
  892. self.to_screen(u'%s: Found %s seasons' % (show_name, len(m_seasons)))
  893. return [self.url_result('https://www.youtube.com' + season.group(1), 'YoutubePlaylist') for season in m_seasons]
  894. class YoutubeFeedsInfoExtractor(YoutubeBaseInfoExtractor):
  895. """
  896. Base class for extractors that fetch info from
  897. http://www.youtube.com/feed_ajax
  898. Subclasses must define the _FEED_NAME and _PLAYLIST_TITLE properties.
  899. """
  900. _LOGIN_REQUIRED = True
  901. _PAGING_STEP = 30
  902. # use action_load_personal_feed instead of action_load_system_feed
  903. _PERSONAL_FEED = False
  904. @property
  905. def _FEED_TEMPLATE(self):
  906. action = 'action_load_system_feed'
  907. if self._PERSONAL_FEED:
  908. action = 'action_load_personal_feed'
  909. return 'http://www.youtube.com/feed_ajax?%s=1&feed_name=%s&paging=%%s' % (action, self._FEED_NAME)
  910. @property
  911. def IE_NAME(self):
  912. return u'youtube:%s' % self._FEED_NAME
  913. def _real_initialize(self):
  914. self._login()
  915. def _real_extract(self, url):
  916. feed_entries = []
  917. # The step argument is available only in 2.7 or higher
  918. for i in itertools.count(0):
  919. paging = i*self._PAGING_STEP
  920. info = self._download_webpage(self._FEED_TEMPLATE % paging,
  921. u'%s feed' % self._FEED_NAME,
  922. u'Downloading page %s' % i)
  923. info = json.loads(info)
  924. feed_html = info['feed_html']
  925. m_ids = re.finditer(r'"/watch\?v=(.*?)["&]', feed_html)
  926. ids = orderedSet(m.group(1) for m in m_ids)
  927. feed_entries.extend(self.url_result(id, 'Youtube') for id in ids)
  928. if info['paging'] is None:
  929. break
  930. return self.playlist_result(feed_entries, playlist_title=self._PLAYLIST_TITLE)
  931. class YoutubeSubscriptionsIE(YoutubeFeedsInfoExtractor):
  932. IE_DESC = u'YouTube.com subscriptions feed, "ytsubs" keyword(requires authentication)'
  933. _VALID_URL = r'https?://www\.youtube\.com/feed/subscriptions|:ytsubs(?:criptions)?'
  934. _FEED_NAME = 'subscriptions'
  935. _PLAYLIST_TITLE = u'Youtube Subscriptions'
  936. class YoutubeRecommendedIE(YoutubeFeedsInfoExtractor):
  937. IE_DESC = u'YouTube.com recommended videos, "ytrec" keyword (requires authentication)'
  938. _VALID_URL = r'https?://www\.youtube\.com/feed/recommended|:ytrec(?:ommended)?'
  939. _FEED_NAME = 'recommended'
  940. _PLAYLIST_TITLE = u'Youtube Recommended videos'
  941. class YoutubeWatchLaterIE(YoutubeFeedsInfoExtractor):
  942. IE_DESC = u'Youtube watch later list, "ytwatchlater" keyword (requires authentication)'
  943. _VALID_URL = r'https?://www\.youtube\.com/feed/watch_later|:ytwatchlater'
  944. _FEED_NAME = 'watch_later'
  945. _PLAYLIST_TITLE = u'Youtube Watch Later'
  946. _PAGING_STEP = 100
  947. _PERSONAL_FEED = True
  948. class YoutubeFavouritesIE(YoutubeBaseInfoExtractor):
  949. IE_NAME = u'youtube:favorites'
  950. IE_DESC = u'YouTube.com favourite videos, "ytfav" keyword (requires authentication)'
  951. _VALID_URL = r'https?://www\.youtube\.com/my_favorites|:ytfav(?:o?rites)?'
  952. _LOGIN_REQUIRED = True
  953. def _real_extract(self, url):
  954. webpage = self._download_webpage('https://www.youtube.com/my_favorites', 'Youtube Favourites videos')
  955. playlist_id = self._search_regex(r'list=(.+?)["&]', webpage, u'favourites playlist id')
  956. return self.url_result(playlist_id, 'YoutubePlaylist')