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.

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