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.

1157 lines
50 KiB

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