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.

2021 lines
90 KiB

10 years ago
10 years ago
10 years ago
10 years ago
10 years ago
10 years ago
10 years ago
10 years ago
  1. # coding: utf-8
  2. from __future__ import unicode_literals
  3. import itertools
  4. import json
  5. import os.path
  6. import re
  7. import time
  8. import traceback
  9. from .common import InfoExtractor, SearchInfoExtractor
  10. from ..jsinterp import JSInterpreter
  11. from ..swfinterp import SWFInterpreter
  12. from ..compat import (
  13. compat_chr,
  14. compat_parse_qs,
  15. compat_urllib_parse,
  16. compat_urllib_parse_unquote,
  17. compat_urllib_parse_unquote_plus,
  18. compat_urllib_parse_urlparse,
  19. compat_urllib_request,
  20. compat_urlparse,
  21. compat_str,
  22. )
  23. from ..utils import (
  24. clean_html,
  25. encode_dict,
  26. ExtractorError,
  27. float_or_none,
  28. get_element_by_attribute,
  29. get_element_by_id,
  30. int_or_none,
  31. orderedSet,
  32. parse_duration,
  33. remove_start,
  34. smuggle_url,
  35. str_to_int,
  36. unescapeHTML,
  37. unified_strdate,
  38. unsmuggle_url,
  39. uppercase_escape,
  40. ISO3166Utils,
  41. )
  42. class YoutubeBaseInfoExtractor(InfoExtractor):
  43. """Provide base functions for Youtube extractors"""
  44. _LOGIN_URL = 'https://accounts.google.com/ServiceLogin'
  45. _TWOFACTOR_URL = 'https://accounts.google.com/signin/challenge'
  46. _NETRC_MACHINE = 'youtube'
  47. # If True it will raise an error if no login info is provided
  48. _LOGIN_REQUIRED = False
  49. def _set_language(self):
  50. self._set_cookie(
  51. '.youtube.com', 'PREF', 'f1=50000000&hl=en',
  52. # YouTube sets the expire time to about two months
  53. expire_time=time.time() + 2 * 30 * 24 * 3600)
  54. def _ids_to_results(self, ids):
  55. return [
  56. self.url_result(vid_id, 'Youtube', video_id=vid_id)
  57. for vid_id in ids]
  58. def _login(self):
  59. """
  60. Attempt to log in to YouTube.
  61. True is returned if successful or skipped.
  62. False is returned if login failed.
  63. If _LOGIN_REQUIRED is set and no authentication was provided, an error is raised.
  64. """
  65. (username, password) = self._get_login_info()
  66. # No authentication to be performed
  67. if username is None:
  68. if self._LOGIN_REQUIRED:
  69. raise ExtractorError('No login info available, needed for using %s.' % self.IE_NAME, expected=True)
  70. return True
  71. login_page = self._download_webpage(
  72. self._LOGIN_URL, None,
  73. note='Downloading login page',
  74. errnote='unable to fetch login page', fatal=False)
  75. if login_page is False:
  76. return
  77. galx = self._search_regex(r'(?s)<input.+?name="GALX".+?value="(.+?)"',
  78. login_page, 'Login GALX parameter')
  79. # Log in
  80. login_form_strs = {
  81. 'continue': 'https://www.youtube.com/signin?action_handle_signin=true&feature=sign_in_button&hl=en_US&nomobiletemp=1',
  82. 'Email': username,
  83. 'GALX': galx,
  84. 'Passwd': password,
  85. 'PersistentCookie': 'yes',
  86. '_utf8': '',
  87. 'bgresponse': 'js_disabled',
  88. 'checkConnection': '',
  89. 'checkedDomains': 'youtube',
  90. 'dnConn': '',
  91. 'pstMsg': '0',
  92. 'rmShown': '1',
  93. 'secTok': '',
  94. 'signIn': 'Sign in',
  95. 'timeStmp': '',
  96. 'service': 'youtube',
  97. 'uilel': '3',
  98. 'hl': 'en_US',
  99. }
  100. login_data = compat_urllib_parse.urlencode(encode_dict(login_form_strs)).encode('ascii')
  101. req = compat_urllib_request.Request(self._LOGIN_URL, login_data)
  102. login_results = self._download_webpage(
  103. req, None,
  104. note='Logging in', errnote='unable to log in', fatal=False)
  105. if login_results is False:
  106. return False
  107. if re.search(r'id="errormsg_0_Passwd"', login_results) is not None:
  108. raise ExtractorError('Please use your account password and a two-factor code instead of an application-specific password.', expected=True)
  109. # Two-Factor
  110. # TODO add SMS and phone call support - these require making a request and then prompting the user
  111. if re.search(r'(?i)<form[^>]* id="challenge"', login_results) is not None:
  112. tfa_code = self._get_tfa_info('2-step verification code')
  113. if not tfa_code:
  114. self._downloader.report_warning(
  115. 'Two-factor authentication required. Provide it either interactively or with --twofactor <code>'
  116. '(Note that only TOTP (Google Authenticator App) codes work at this time.)')
  117. return False
  118. tfa_code = remove_start(tfa_code, 'G-')
  119. tfa_form_strs = self._form_hidden_inputs('challenge', login_results)
  120. tfa_form_strs.update({
  121. 'Pin': tfa_code,
  122. 'TrustDevice': 'on',
  123. })
  124. tfa_data = compat_urllib_parse.urlencode(encode_dict(tfa_form_strs)).encode('ascii')
  125. tfa_req = compat_urllib_request.Request(self._TWOFACTOR_URL, tfa_data)
  126. tfa_results = self._download_webpage(
  127. tfa_req, None,
  128. note='Submitting TFA code', errnote='unable to submit tfa', fatal=False)
  129. if tfa_results is False:
  130. return False
  131. if re.search(r'(?i)<form[^>]* id="challenge"', tfa_results) is not None:
  132. self._downloader.report_warning('Two-factor code expired or invalid. Please try again, or use a one-use backup code instead.')
  133. return False
  134. if re.search(r'(?i)<form[^>]* id="gaia_loginform"', tfa_results) is not None:
  135. self._downloader.report_warning('unable to log in - did the page structure change?')
  136. return False
  137. if re.search(r'smsauth-interstitial-reviewsettings', tfa_results) is not None:
  138. self._downloader.report_warning('Your Google account has a security notice. Please log in on your web browser, resolve the notice, and try again.')
  139. return False
  140. if re.search(r'(?i)<form[^>]* id="gaia_loginform"', login_results) is not None:
  141. self._downloader.report_warning('unable to log in: bad username or password')
  142. return False
  143. return True
  144. def _real_initialize(self):
  145. if self._downloader is None:
  146. return
  147. self._set_language()
  148. if not self._login():
  149. return
  150. class YoutubePlaylistBaseInfoExtractor(InfoExtractor):
  151. # Extract the video ids from the playlist pages
  152. def _entries(self, page, playlist_id):
  153. more_widget_html = content_html = page
  154. for page_num in itertools.count(1):
  155. for video_id, video_title in self.extract_videos_from_page(content_html):
  156. yield self.url_result(
  157. video_id, 'Youtube', video_id=video_id,
  158. video_title=video_title)
  159. mobj = re.search(r'data-uix-load-more-href="/?(?P<more>[^"]+)"', more_widget_html)
  160. if not mobj:
  161. break
  162. more = self._download_json(
  163. 'https://youtube.com/%s' % mobj.group('more'), playlist_id,
  164. 'Downloading page #%s' % page_num,
  165. transform_source=uppercase_escape)
  166. content_html = more['content_html']
  167. if not content_html.strip():
  168. # Some webpages show a "Load more" button but they don't
  169. # have more videos
  170. break
  171. more_widget_html = more['load_more_widget_html']
  172. def extract_videos_from_page(self, page):
  173. ids_in_page = []
  174. titles_in_page = []
  175. for mobj in re.finditer(self._VIDEO_RE, page):
  176. # The link with index 0 is not the first video of the playlist (not sure if still actual)
  177. if 'index' in mobj.groupdict() and mobj.group('id') == '0':
  178. continue
  179. video_id = mobj.group('id')
  180. video_title = unescapeHTML(mobj.group('title'))
  181. if video_title:
  182. video_title = video_title.strip()
  183. try:
  184. idx = ids_in_page.index(video_id)
  185. if video_title and not titles_in_page[idx]:
  186. titles_in_page[idx] = video_title
  187. except ValueError:
  188. ids_in_page.append(video_id)
  189. titles_in_page.append(video_title)
  190. return zip(ids_in_page, titles_in_page)
  191. class YoutubeIE(YoutubeBaseInfoExtractor):
  192. IE_DESC = 'YouTube.com'
  193. _VALID_URL = r"""(?x)^
  194. (
  195. (?:https?://|//) # http(s):// or protocol-independent URL
  196. (?:(?:(?:(?:\w+\.)?[yY][oO][uU][tT][uU][bB][eE](?:-nocookie)?\.com/|
  197. (?:www\.)?deturl\.com/www\.youtube\.com/|
  198. (?:www\.)?pwnyoutube\.com/|
  199. (?:www\.)?yourepeat\.com/|
  200. tube\.majestyc\.net/|
  201. youtube\.googleapis\.com/) # the various hostnames, with wildcard subdomains
  202. (?:.*?\#/)? # handle anchor (#/) redirect urls
  203. (?: # the various things that can precede the ID:
  204. (?:(?:v|embed|e)/(?!videoseries)) # v/ or embed/ or e/
  205. |(?: # or the v= param in all its forms
  206. (?:(?:watch|movie)(?:_popup)?(?:\.php)?/?)? # preceding watch(_popup|.php) or nothing (like /?v=xxxx)
  207. (?:\?|\#!?) # the params delimiter ? or # or #!
  208. (?:.*?&)?? # any other preceding param (like /?s=tuff&v=xxxx)
  209. v=
  210. )
  211. ))
  212. |(?:
  213. youtu\.be| # just youtu.be/xxxx
  214. vid\.plus # or vid.plus/xxxx
  215. )/
  216. |(?:www\.)?cleanvideosearch\.com/media/action/yt/watch\?videoId=
  217. )
  218. )? # all until now is optional -> you can pass the naked ID
  219. ([0-9A-Za-z_-]{11}) # here is it! the YouTube video ID
  220. (?!.*?&list=) # combined list/video URLs are handled by the playlist IE
  221. (?(1).+)? # if we found the ID, everything can follow
  222. $"""
  223. _NEXT_URL_RE = r'[\?&]next_url=([^&]+)'
  224. _formats = {
  225. '5': {'ext': 'flv', 'width': 400, 'height': 240},
  226. '6': {'ext': 'flv', 'width': 450, 'height': 270},
  227. '13': {'ext': '3gp'},
  228. '17': {'ext': '3gp', 'width': 176, 'height': 144},
  229. '18': {'ext': 'mp4', 'width': 640, 'height': 360},
  230. '22': {'ext': 'mp4', 'width': 1280, 'height': 720},
  231. '34': {'ext': 'flv', 'width': 640, 'height': 360},
  232. '35': {'ext': 'flv', 'width': 854, 'height': 480},
  233. '36': {'ext': '3gp', 'width': 320, 'height': 240},
  234. '37': {'ext': 'mp4', 'width': 1920, 'height': 1080},
  235. '38': {'ext': 'mp4', 'width': 4096, 'height': 3072},
  236. '43': {'ext': 'webm', 'width': 640, 'height': 360},
  237. '44': {'ext': 'webm', 'width': 854, 'height': 480},
  238. '45': {'ext': 'webm', 'width': 1280, 'height': 720},
  239. '46': {'ext': 'webm', 'width': 1920, 'height': 1080},
  240. '59': {'ext': 'mp4', 'width': 854, 'height': 480},
  241. '78': {'ext': 'mp4', 'width': 854, 'height': 480},
  242. # 3d videos
  243. '82': {'ext': 'mp4', 'height': 360, 'format_note': '3D', 'preference': -20},
  244. '83': {'ext': 'mp4', 'height': 480, 'format_note': '3D', 'preference': -20},
  245. '84': {'ext': 'mp4', 'height': 720, 'format_note': '3D', 'preference': -20},
  246. '85': {'ext': 'mp4', 'height': 1080, 'format_note': '3D', 'preference': -20},
  247. '100': {'ext': 'webm', 'height': 360, 'format_note': '3D', 'preference': -20},
  248. '101': {'ext': 'webm', 'height': 480, 'format_note': '3D', 'preference': -20},
  249. '102': {'ext': 'webm', 'height': 720, 'format_note': '3D', 'preference': -20},
  250. # Apple HTTP Live Streaming
  251. '92': {'ext': 'mp4', 'height': 240, 'format_note': 'HLS', 'preference': -10},
  252. '93': {'ext': 'mp4', 'height': 360, 'format_note': 'HLS', 'preference': -10},
  253. '94': {'ext': 'mp4', 'height': 480, 'format_note': 'HLS', 'preference': -10},
  254. '95': {'ext': 'mp4', 'height': 720, 'format_note': 'HLS', 'preference': -10},
  255. '96': {'ext': 'mp4', 'height': 1080, 'format_note': 'HLS', 'preference': -10},
  256. '132': {'ext': 'mp4', 'height': 240, 'format_note': 'HLS', 'preference': -10},
  257. '151': {'ext': 'mp4', 'height': 72, 'format_note': 'HLS', 'preference': -10},
  258. # DASH mp4 video
  259. '133': {'ext': 'mp4', 'height': 240, 'format_note': 'DASH video', 'acodec': 'none', 'preference': -40},
  260. '134': {'ext': 'mp4', 'height': 360, 'format_note': 'DASH video', 'acodec': 'none', 'preference': -40},
  261. '135': {'ext': 'mp4', 'height': 480, 'format_note': 'DASH video', 'acodec': 'none', 'preference': -40},
  262. '136': {'ext': 'mp4', 'height': 720, 'format_note': 'DASH video', 'acodec': 'none', 'preference': -40},
  263. '137': {'ext': 'mp4', 'height': 1080, 'format_note': 'DASH video', 'acodec': 'none', 'preference': -40},
  264. '138': {'ext': 'mp4', 'format_note': 'DASH video', 'acodec': 'none', 'preference': -40}, # Height can vary (https://github.com/rg3/youtube-dl/issues/4559)
  265. '160': {'ext': 'mp4', 'height': 144, 'format_note': 'DASH video', 'acodec': 'none', 'preference': -40},
  266. '264': {'ext': 'mp4', 'height': 1440, 'format_note': 'DASH video', 'acodec': 'none', 'preference': -40},
  267. '298': {'ext': 'mp4', 'height': 720, 'format_note': 'DASH video', 'acodec': 'none', 'preference': -40, 'fps': 60, 'vcodec': 'h264'},
  268. '299': {'ext': 'mp4', 'height': 1080, 'format_note': 'DASH video', 'acodec': 'none', 'preference': -40, 'fps': 60, 'vcodec': 'h264'},
  269. '266': {'ext': 'mp4', 'height': 2160, 'format_note': 'DASH video', 'acodec': 'none', 'preference': -40, 'vcodec': 'h264'},
  270. # Dash mp4 audio
  271. '139': {'ext': 'm4a', 'format_note': 'DASH audio', 'acodec': 'aac', 'vcodec': 'none', 'abr': 48, 'preference': -50, 'container': 'm4a_dash'},
  272. '140': {'ext': 'm4a', 'format_note': 'DASH audio', 'acodec': 'aac', 'vcodec': 'none', 'abr': 128, 'preference': -50, 'container': 'm4a_dash'},
  273. '141': {'ext': 'm4a', 'format_note': 'DASH audio', 'acodec': 'aac', 'vcodec': 'none', 'abr': 256, 'preference': -50, 'container': 'm4a_dash'},
  274. # Dash webm
  275. '167': {'ext': 'webm', 'height': 360, 'width': 640, 'format_note': 'DASH video', 'acodec': 'none', 'container': 'webm', 'vcodec': 'vp8', 'preference': -40},
  276. '168': {'ext': 'webm', 'height': 480, 'width': 854, 'format_note': 'DASH video', 'acodec': 'none', 'container': 'webm', 'vcodec': 'vp8', 'preference': -40},
  277. '169': {'ext': 'webm', 'height': 720, 'width': 1280, 'format_note': 'DASH video', 'acodec': 'none', 'container': 'webm', 'vcodec': 'vp8', 'preference': -40},
  278. '170': {'ext': 'webm', 'height': 1080, 'width': 1920, 'format_note': 'DASH video', 'acodec': 'none', 'container': 'webm', 'vcodec': 'vp8', 'preference': -40},
  279. '218': {'ext': 'webm', 'height': 480, 'width': 854, 'format_note': 'DASH video', 'acodec': 'none', 'container': 'webm', 'vcodec': 'vp8', 'preference': -40},
  280. '219': {'ext': 'webm', 'height': 480, 'width': 854, 'format_note': 'DASH video', 'acodec': 'none', 'container': 'webm', 'vcodec': 'vp8', 'preference': -40},
  281. '278': {'ext': 'webm', 'height': 144, 'format_note': 'DASH video', 'acodec': 'none', 'preference': -40, 'container': 'webm', 'vcodec': 'vp9'},
  282. '242': {'ext': 'webm', 'height': 240, 'format_note': 'DASH video', 'acodec': 'none', 'preference': -40},
  283. '243': {'ext': 'webm', 'height': 360, 'format_note': 'DASH video', 'acodec': 'none', 'preference': -40},
  284. '244': {'ext': 'webm', 'height': 480, 'format_note': 'DASH video', 'acodec': 'none', 'preference': -40},
  285. '245': {'ext': 'webm', 'height': 480, 'format_note': 'DASH video', 'acodec': 'none', 'preference': -40},
  286. '246': {'ext': 'webm', 'height': 480, 'format_note': 'DASH video', 'acodec': 'none', 'preference': -40},
  287. '247': {'ext': 'webm', 'height': 720, 'format_note': 'DASH video', 'acodec': 'none', 'preference': -40},
  288. '248': {'ext': 'webm', 'height': 1080, 'format_note': 'DASH video', 'acodec': 'none', 'preference': -40},
  289. '271': {'ext': 'webm', 'height': 1440, 'format_note': 'DASH video', 'acodec': 'none', 'preference': -40},
  290. '272': {'ext': 'webm', 'height': 2160, 'format_note': 'DASH video', 'acodec': 'none', 'preference': -40},
  291. '302': {'ext': 'webm', 'height': 720, 'format_note': 'DASH video', 'acodec': 'none', 'preference': -40, 'fps': 60, 'vcodec': 'vp9'},
  292. '303': {'ext': 'webm', 'height': 1080, 'format_note': 'DASH video', 'acodec': 'none', 'preference': -40, 'fps': 60, 'vcodec': 'vp9'},
  293. '308': {'ext': 'webm', 'height': 1440, 'format_note': 'DASH video', 'acodec': 'none', 'preference': -40, 'fps': 60, 'vcodec': 'vp9'},
  294. '313': {'ext': 'webm', 'height': 2160, 'format_note': 'DASH video', 'acodec': 'none', 'preference': -40, 'vcodec': 'vp9'},
  295. '315': {'ext': 'webm', 'height': 2160, 'format_note': 'DASH video', 'acodec': 'none', 'preference': -40, 'fps': 60, 'vcodec': 'vp9'},
  296. # Dash webm audio
  297. '171': {'ext': 'webm', 'vcodec': 'none', 'format_note': 'DASH audio', 'abr': 128, 'preference': -50},
  298. '172': {'ext': 'webm', 'vcodec': 'none', 'format_note': 'DASH audio', 'abr': 256, 'preference': -50},
  299. # Dash webm audio with opus inside
  300. '249': {'ext': 'webm', 'vcodec': 'none', 'format_note': 'DASH audio', 'acodec': 'opus', 'abr': 50, 'preference': -50},
  301. '250': {'ext': 'webm', 'vcodec': 'none', 'format_note': 'DASH audio', 'acodec': 'opus', 'abr': 70, 'preference': -50},
  302. '251': {'ext': 'webm', 'vcodec': 'none', 'format_note': 'DASH audio', 'acodec': 'opus', 'abr': 160, 'preference': -50},
  303. # RTMP (unnamed)
  304. '_rtmp': {'protocol': 'rtmp'},
  305. }
  306. IE_NAME = 'youtube'
  307. _TESTS = [
  308. {
  309. 'url': 'http://www.youtube.com/watch?v=BaW_jenozKcj&t=1s&end=9',
  310. 'info_dict': {
  311. 'id': 'BaW_jenozKc',
  312. 'ext': 'mp4',
  313. 'title': 'youtube-dl test video "\'/\\ä↭𝕐',
  314. 'uploader': 'Philipp Hagemeister',
  315. 'uploader_id': 'phihag',
  316. 'upload_date': '20121002',
  317. 'description': 'test chars: "\'/\\ä↭𝕐\ntest URL: https://github.com/rg3/youtube-dl/issues/1892\n\nThis is a test video for youtube-dl.\n\nFor more information, contact phihag@phihag.de .',
  318. 'categories': ['Science & Technology'],
  319. 'tags': ['youtube-dl'],
  320. 'like_count': int,
  321. 'dislike_count': int,
  322. 'start_time': 1,
  323. 'end_time': 9,
  324. }
  325. },
  326. {
  327. 'url': 'http://www.youtube.com/watch?v=UxxajLWwzqY',
  328. 'note': 'Test generic use_cipher_signature video (#897)',
  329. 'info_dict': {
  330. 'id': 'UxxajLWwzqY',
  331. 'ext': 'mp4',
  332. 'upload_date': '20120506',
  333. 'title': 'Icona Pop - I Love It (feat. Charli XCX) [OFFICIAL VIDEO]',
  334. 'description': 'md5:782e8651347686cba06e58f71ab51773',
  335. 'tags': ['Icona Pop i love it', 'sweden', 'pop music', 'big beat records', 'big beat', 'charli',
  336. 'xcx', 'charli xcx', 'girls', 'hbo', 'i love it', "i don't care", 'icona', 'pop',
  337. 'iconic ep', 'iconic', 'love', 'it'],
  338. 'uploader': 'Icona Pop',
  339. 'uploader_id': 'IconaPop',
  340. }
  341. },
  342. {
  343. 'url': 'https://www.youtube.com/watch?v=07FYdnEawAQ',
  344. 'note': 'Test VEVO video with age protection (#956)',
  345. 'info_dict': {
  346. 'id': '07FYdnEawAQ',
  347. 'ext': 'mp4',
  348. 'upload_date': '20130703',
  349. 'title': 'Justin Timberlake - Tunnel Vision (Explicit)',
  350. 'description': 'md5:64249768eec3bc4276236606ea996373',
  351. 'uploader': 'justintimberlakeVEVO',
  352. 'uploader_id': 'justintimberlakeVEVO',
  353. 'age_limit': 18,
  354. }
  355. },
  356. {
  357. 'url': '//www.YouTube.com/watch?v=yZIXLfi8CZQ',
  358. 'note': 'Embed-only video (#1746)',
  359. 'info_dict': {
  360. 'id': 'yZIXLfi8CZQ',
  361. 'ext': 'mp4',
  362. 'upload_date': '20120608',
  363. 'title': 'Principal Sexually Assaults A Teacher - Episode 117 - 8th June 2012',
  364. 'description': 'md5:09b78bd971f1e3e289601dfba15ca4f7',
  365. 'uploader': 'SET India',
  366. 'uploader_id': 'setindia'
  367. }
  368. },
  369. {
  370. 'url': 'http://www.youtube.com/watch?v=BaW_jenozKcj&v=UxxajLWwzqY',
  371. 'note': 'Use the first video ID in the URL',
  372. 'info_dict': {
  373. 'id': 'BaW_jenozKc',
  374. 'ext': 'mp4',
  375. 'title': 'youtube-dl test video "\'/\\ä↭𝕐',
  376. 'uploader': 'Philipp Hagemeister',
  377. 'uploader_id': 'phihag',
  378. 'upload_date': '20121002',
  379. 'description': 'test chars: "\'/\\ä↭𝕐\ntest URL: https://github.com/rg3/youtube-dl/issues/1892\n\nThis is a test video for youtube-dl.\n\nFor more information, contact phihag@phihag.de .',
  380. 'categories': ['Science & Technology'],
  381. 'tags': ['youtube-dl'],
  382. 'like_count': int,
  383. 'dislike_count': int,
  384. },
  385. 'params': {
  386. 'skip_download': True,
  387. },
  388. },
  389. {
  390. 'url': 'http://www.youtube.com/watch?v=a9LDPn-MO4I',
  391. 'note': '256k DASH audio (format 141) via DASH manifest',
  392. 'info_dict': {
  393. 'id': 'a9LDPn-MO4I',
  394. 'ext': 'm4a',
  395. 'upload_date': '20121002',
  396. 'uploader_id': '8KVIDEO',
  397. 'description': '',
  398. 'uploader': '8KVIDEO',
  399. 'title': 'UHDTV TEST 8K VIDEO.mp4'
  400. },
  401. 'params': {
  402. 'youtube_include_dash_manifest': True,
  403. 'format': '141',
  404. },
  405. },
  406. # DASH manifest with encrypted signature
  407. {
  408. 'url': 'https://www.youtube.com/watch?v=IB3lcPjvWLA',
  409. 'info_dict': {
  410. 'id': 'IB3lcPjvWLA',
  411. 'ext': 'm4a',
  412. 'title': 'Afrojack, Spree Wilson - The Spark ft. Spree Wilson',
  413. 'description': 'md5:12e7067fa6735a77bdcbb58cb1187d2d',
  414. 'uploader': 'AfrojackVEVO',
  415. 'uploader_id': 'AfrojackVEVO',
  416. 'upload_date': '20131011',
  417. },
  418. 'params': {
  419. 'youtube_include_dash_manifest': True,
  420. 'format': '141',
  421. },
  422. },
  423. # JS player signature function name containing $
  424. {
  425. 'url': 'https://www.youtube.com/watch?v=nfWlot6h_JM',
  426. 'info_dict': {
  427. 'id': 'nfWlot6h_JM',
  428. 'ext': 'm4a',
  429. 'title': 'Taylor Swift - Shake It Off',
  430. 'description': 'md5:95f66187cd7c8b2c13eb78e1223b63c3',
  431. 'uploader': 'TaylorSwiftVEVO',
  432. 'uploader_id': 'TaylorSwiftVEVO',
  433. 'upload_date': '20140818',
  434. },
  435. 'params': {
  436. 'youtube_include_dash_manifest': True,
  437. 'format': '141',
  438. },
  439. },
  440. # Controversy video
  441. {
  442. 'url': 'https://www.youtube.com/watch?v=T4XJQO3qol8',
  443. 'info_dict': {
  444. 'id': 'T4XJQO3qol8',
  445. 'ext': 'mp4',
  446. 'upload_date': '20100909',
  447. 'uploader': 'The Amazing Atheist',
  448. 'uploader_id': 'TheAmazingAtheist',
  449. 'title': 'Burning Everyone\'s Koran',
  450. 'description': 'SUBSCRIBE: http://www.youtube.com/saturninefilms\n\nEven Obama has taken a stand against freedom on this issue: http://www.huffingtonpost.com/2010/09/09/obama-gma-interview-quran_n_710282.html',
  451. }
  452. },
  453. # Normal age-gate video (No vevo, embed allowed)
  454. {
  455. 'url': 'http://youtube.com/watch?v=HtVdAasjOgU',
  456. 'info_dict': {
  457. 'id': 'HtVdAasjOgU',
  458. 'ext': 'mp4',
  459. 'title': 'The Witcher 3: Wild Hunt - The Sword Of Destiny Trailer',
  460. 'description': 're:(?s).{100,}About the Game\n.*?The Witcher 3: Wild Hunt.{100,}',
  461. 'uploader': 'The Witcher',
  462. 'uploader_id': 'WitcherGame',
  463. 'upload_date': '20140605',
  464. 'age_limit': 18,
  465. },
  466. },
  467. # Age-gate video with encrypted signature
  468. {
  469. 'url': 'http://www.youtube.com/watch?v=6kLq3WMV1nU',
  470. 'info_dict': {
  471. 'id': '6kLq3WMV1nU',
  472. 'ext': 'mp4',
  473. 'title': 'Dedication To My Ex (Miss That) (Lyric Video)',
  474. 'description': 'md5:33765bb339e1b47e7e72b5490139bb41',
  475. 'uploader': 'LloydVEVO',
  476. 'uploader_id': 'LloydVEVO',
  477. 'upload_date': '20110629',
  478. 'age_limit': 18,
  479. },
  480. },
  481. # video_info is None (https://github.com/rg3/youtube-dl/issues/4421)
  482. {
  483. 'url': '__2ABJjxzNo',
  484. 'info_dict': {
  485. 'id': '__2ABJjxzNo',
  486. 'ext': 'mp4',
  487. 'upload_date': '20100430',
  488. 'uploader_id': 'deadmau5',
  489. 'description': 'md5:12c56784b8032162bb936a5f76d55360',
  490. 'uploader': 'deadmau5',
  491. 'title': 'Deadmau5 - Some Chords (HD)',
  492. },
  493. 'expected_warnings': [
  494. 'DASH manifest missing',
  495. ]
  496. },
  497. # Olympics (https://github.com/rg3/youtube-dl/issues/4431)
  498. {
  499. 'url': 'lqQg6PlCWgI',
  500. 'info_dict': {
  501. 'id': 'lqQg6PlCWgI',
  502. 'ext': 'mp4',
  503. 'upload_date': '20120724',
  504. 'uploader_id': 'olympic',
  505. 'description': 'HO09 - Women - GER-AUS - Hockey - 31 July 2012 - London 2012 Olympic Games',
  506. 'uploader': 'Olympics',
  507. 'title': 'Hockey - Women - GER-AUS - London 2012 Olympic Games',
  508. },
  509. 'params': {
  510. 'skip_download': 'requires avconv',
  511. }
  512. },
  513. # Non-square pixels
  514. {
  515. 'url': 'https://www.youtube.com/watch?v=_b-2C3KPAM0',
  516. 'info_dict': {
  517. 'id': '_b-2C3KPAM0',
  518. 'ext': 'mp4',
  519. 'stretched_ratio': 16 / 9.,
  520. 'upload_date': '20110310',
  521. 'uploader_id': 'AllenMeow',
  522. 'description': 'made by Wacom from Korea | 字幕&加油添醋 by TY\'s Allen | 感謝heylisa00cavey1001同學熱情提供梗及翻譯',
  523. 'uploader': '孫艾倫',
  524. 'title': '[A-made] 變態妍字幕版 太妍 我就是這樣的人',
  525. },
  526. },
  527. # url_encoded_fmt_stream_map is empty string
  528. {
  529. 'url': 'qEJwOuvDf7I',
  530. 'info_dict': {
  531. 'id': 'qEJwOuvDf7I',
  532. 'ext': 'webm',
  533. 'title': 'Обсуждение судебной практики по выборам 14 сентября 2014 года в Санкт-Петербурге',
  534. 'description': '',
  535. 'upload_date': '20150404',
  536. 'uploader_id': 'spbelect',
  537. 'uploader': 'Наблюдатели Петербурга',
  538. },
  539. 'params': {
  540. 'skip_download': 'requires avconv',
  541. }
  542. },
  543. # Extraction from multiple DASH manifests (https://github.com/rg3/youtube-dl/pull/6097)
  544. {
  545. 'url': 'https://www.youtube.com/watch?v=FIl7x6_3R5Y',
  546. 'info_dict': {
  547. 'id': 'FIl7x6_3R5Y',
  548. 'ext': 'mp4',
  549. 'title': 'md5:7b81415841e02ecd4313668cde88737a',
  550. 'description': 'md5:116377fd2963b81ec4ce64b542173306',
  551. 'upload_date': '20150625',
  552. 'uploader_id': 'dorappi2000',
  553. 'uploader': 'dorappi2000',
  554. 'formats': 'mincount:33',
  555. },
  556. },
  557. # DASH manifest with segment_list
  558. {
  559. 'url': 'https://www.youtube.com/embed/CsmdDsKjzN8',
  560. 'md5': '8ce563a1d667b599d21064e982ab9e31',
  561. 'info_dict': {
  562. 'id': 'CsmdDsKjzN8',
  563. 'ext': 'mp4',
  564. 'upload_date': '20150501', # According to '<meta itemprop="datePublished"', but in other places it's 20150510
  565. 'uploader': 'Airtek',
  566. 'description': 'Retransmisión en directo de la XVIII media maratón de Zaragoza.',
  567. 'uploader_id': 'UCzTzUmjXxxacNnL8I3m4LnQ',
  568. 'title': 'Retransmisión XVIII Media maratón Zaragoza 2015',
  569. },
  570. 'params': {
  571. 'youtube_include_dash_manifest': True,
  572. 'format': '135', # bestvideo
  573. }
  574. },
  575. {
  576. # Multifeed videos (multiple cameras), URL is for Main Camera
  577. 'url': 'https://www.youtube.com/watch?v=jqWvoWXjCVs',
  578. 'info_dict': {
  579. 'id': 'jqWvoWXjCVs',
  580. 'title': 'teamPGP: Rocket League Noob Stream',
  581. 'description': 'md5:dc7872fb300e143831327f1bae3af010',
  582. },
  583. 'playlist': [{
  584. 'info_dict': {
  585. 'id': 'jqWvoWXjCVs',
  586. 'ext': 'mp4',
  587. 'title': 'teamPGP: Rocket League Noob Stream (Main Camera)',
  588. 'description': 'md5:dc7872fb300e143831327f1bae3af010',
  589. 'upload_date': '20150721',
  590. 'uploader': 'Beer Games Beer',
  591. 'uploader_id': 'beergamesbeer',
  592. },
  593. }, {
  594. 'info_dict': {
  595. 'id': '6h8e8xoXJzg',
  596. 'ext': 'mp4',
  597. 'title': 'teamPGP: Rocket League Noob Stream (kreestuh)',
  598. 'description': 'md5:dc7872fb300e143831327f1bae3af010',
  599. 'upload_date': '20150721',
  600. 'uploader': 'Beer Games Beer',
  601. 'uploader_id': 'beergamesbeer',
  602. },
  603. }, {
  604. 'info_dict': {
  605. 'id': 'PUOgX5z9xZw',
  606. 'ext': 'mp4',
  607. 'title': 'teamPGP: Rocket League Noob Stream (grizzle)',
  608. 'description': 'md5:dc7872fb300e143831327f1bae3af010',
  609. 'upload_date': '20150721',
  610. 'uploader': 'Beer Games Beer',
  611. 'uploader_id': 'beergamesbeer',
  612. },
  613. }, {
  614. 'info_dict': {
  615. 'id': 'teuwxikvS5k',
  616. 'ext': 'mp4',
  617. 'title': 'teamPGP: Rocket League Noob Stream (zim)',
  618. 'description': 'md5:dc7872fb300e143831327f1bae3af010',
  619. 'upload_date': '20150721',
  620. 'uploader': 'Beer Games Beer',
  621. 'uploader_id': 'beergamesbeer',
  622. },
  623. }],
  624. 'params': {
  625. 'skip_download': True,
  626. },
  627. },
  628. {
  629. 'url': 'http://vid.plus/FlRa-iH7PGw',
  630. 'only_matching': True,
  631. }
  632. ]
  633. def __init__(self, *args, **kwargs):
  634. super(YoutubeIE, self).__init__(*args, **kwargs)
  635. self._player_cache = {}
  636. def report_video_info_webpage_download(self, video_id):
  637. """Report attempt to download video info webpage."""
  638. self.to_screen('%s: Downloading video info webpage' % video_id)
  639. def report_information_extraction(self, video_id):
  640. """Report attempt to extract video information."""
  641. self.to_screen('%s: Extracting video information' % video_id)
  642. def report_unavailable_format(self, video_id, format):
  643. """Report extracted video URL."""
  644. self.to_screen('%s: Format %s not available' % (video_id, format))
  645. def report_rtmp_download(self):
  646. """Indicate the download will use the RTMP protocol."""
  647. self.to_screen('RTMP download detected')
  648. def _signature_cache_id(self, example_sig):
  649. """ Return a string representation of a signature """
  650. return '.'.join(compat_str(len(part)) for part in example_sig.split('.'))
  651. def _extract_signature_function(self, video_id, player_url, example_sig):
  652. id_m = re.match(
  653. r'.*?-(?P<id>[a-zA-Z0-9_-]+)(?:/watch_as3|/html5player(?:-new)?)?\.(?P<ext>[a-z]+)$',
  654. player_url)
  655. if not id_m:
  656. raise ExtractorError('Cannot identify player %r' % player_url)
  657. player_type = id_m.group('ext')
  658. player_id = id_m.group('id')
  659. # Read from filesystem cache
  660. func_id = '%s_%s_%s' % (
  661. player_type, player_id, self._signature_cache_id(example_sig))
  662. assert os.path.basename(func_id) == func_id
  663. cache_spec = self._downloader.cache.load('youtube-sigfuncs', func_id)
  664. if cache_spec is not None:
  665. return lambda s: ''.join(s[i] for i in cache_spec)
  666. download_note = (
  667. 'Downloading player %s' % player_url
  668. if self._downloader.params.get('verbose') else
  669. 'Downloading %s player %s' % (player_type, player_id)
  670. )
  671. if player_type == 'js':
  672. code = self._download_webpage(
  673. player_url, video_id,
  674. note=download_note,
  675. errnote='Download of %s failed' % player_url)
  676. res = self._parse_sig_js(code)
  677. elif player_type == 'swf':
  678. urlh = self._request_webpage(
  679. player_url, video_id,
  680. note=download_note,
  681. errnote='Download of %s failed' % player_url)
  682. code = urlh.read()
  683. res = self._parse_sig_swf(code)
  684. else:
  685. assert False, 'Invalid player type %r' % player_type
  686. test_string = ''.join(map(compat_chr, range(len(example_sig))))
  687. cache_res = res(test_string)
  688. cache_spec = [ord(c) for c in cache_res]
  689. self._downloader.cache.store('youtube-sigfuncs', func_id, cache_spec)
  690. return res
  691. def _print_sig_code(self, func, example_sig):
  692. def gen_sig_code(idxs):
  693. def _genslice(start, end, step):
  694. starts = '' if start == 0 else str(start)
  695. ends = (':%d' % (end + step)) if end + step >= 0 else ':'
  696. steps = '' if step == 1 else (':%d' % step)
  697. return 's[%s%s%s]' % (starts, ends, steps)
  698. step = None
  699. # Quelch pyflakes warnings - start will be set when step is set
  700. start = '(Never used)'
  701. for i, prev in zip(idxs[1:], idxs[:-1]):
  702. if step is not None:
  703. if i - prev == step:
  704. continue
  705. yield _genslice(start, prev, step)
  706. step = None
  707. continue
  708. if i - prev in [-1, 1]:
  709. step = i - prev
  710. start = prev
  711. continue
  712. else:
  713. yield 's[%d]' % prev
  714. if step is None:
  715. yield 's[%d]' % i
  716. else:
  717. yield _genslice(start, i, step)
  718. test_string = ''.join(map(compat_chr, range(len(example_sig))))
  719. cache_res = func(test_string)
  720. cache_spec = [ord(c) for c in cache_res]
  721. expr_code = ' + '.join(gen_sig_code(cache_spec))
  722. signature_id_tuple = '(%s)' % (
  723. ', '.join(compat_str(len(p)) for p in example_sig.split('.')))
  724. code = ('if tuple(len(p) for p in s.split(\'.\')) == %s:\n'
  725. ' return %s\n') % (signature_id_tuple, expr_code)
  726. self.to_screen('Extracted signature function:\n' + code)
  727. def _parse_sig_js(self, jscode):
  728. funcname = self._search_regex(
  729. r'\.sig\|\|([a-zA-Z0-9$]+)\(', jscode,
  730. 'Initial JS player signature function name')
  731. jsi = JSInterpreter(jscode)
  732. initial_function = jsi.extract_function(funcname)
  733. return lambda s: initial_function([s])
  734. def _parse_sig_swf(self, file_contents):
  735. swfi = SWFInterpreter(file_contents)
  736. TARGET_CLASSNAME = 'SignatureDecipher'
  737. searched_class = swfi.extract_class(TARGET_CLASSNAME)
  738. initial_function = swfi.extract_function(searched_class, 'decipher')
  739. return lambda s: initial_function([s])
  740. def _decrypt_signature(self, s, video_id, player_url, age_gate=False):
  741. """Turn the encrypted s field into a working signature"""
  742. if player_url is None:
  743. raise ExtractorError('Cannot decrypt signature without player_url')
  744. if player_url.startswith('//'):
  745. player_url = 'https:' + player_url
  746. try:
  747. player_id = (player_url, self._signature_cache_id(s))
  748. if player_id not in self._player_cache:
  749. func = self._extract_signature_function(
  750. video_id, player_url, s
  751. )
  752. self._player_cache[player_id] = func
  753. func = self._player_cache[player_id]
  754. if self._downloader.params.get('youtube_print_sig_code'):
  755. self._print_sig_code(func, s)
  756. return func(s)
  757. except Exception as e:
  758. tb = traceback.format_exc()
  759. raise ExtractorError(
  760. 'Signature extraction failed: ' + tb, cause=e)
  761. def _get_subtitles(self, video_id, webpage):
  762. try:
  763. subs_doc = self._download_xml(
  764. 'https://video.google.com/timedtext?hl=en&type=list&v=%s' % video_id,
  765. video_id, note=False)
  766. except ExtractorError as err:
  767. self._downloader.report_warning('unable to download video subtitles: %s' % compat_str(err))
  768. return {}
  769. sub_lang_list = {}
  770. for track in subs_doc.findall('track'):
  771. lang = track.attrib['lang_code']
  772. if lang in sub_lang_list:
  773. continue
  774. sub_formats = []
  775. for ext in ['sbv', 'vtt', 'srt']:
  776. params = compat_urllib_parse.urlencode({
  777. 'lang': lang,
  778. 'v': video_id,
  779. 'fmt': ext,
  780. 'name': track.attrib['name'].encode('utf-8'),
  781. })
  782. sub_formats.append({
  783. 'url': 'https://www.youtube.com/api/timedtext?' + params,
  784. 'ext': ext,
  785. })
  786. sub_lang_list[lang] = sub_formats
  787. if not sub_lang_list:
  788. self._downloader.report_warning('video doesn\'t have subtitles')
  789. return {}
  790. return sub_lang_list
  791. def _get_automatic_captions(self, video_id, webpage):
  792. """We need the webpage for getting the captions url, pass it as an
  793. argument to speed up the process."""
  794. self.to_screen('%s: Looking for automatic captions' % video_id)
  795. mobj = re.search(r';ytplayer.config = ({.*?});', webpage)
  796. err_msg = 'Couldn\'t find automatic captions for %s' % video_id
  797. if mobj is None:
  798. self._downloader.report_warning(err_msg)
  799. return {}
  800. player_config = json.loads(mobj.group(1))
  801. try:
  802. args = player_config['args']
  803. caption_url = args['ttsurl']
  804. timestamp = args['timestamp']
  805. # We get the available subtitles
  806. list_params = compat_urllib_parse.urlencode({
  807. 'type': 'list',
  808. 'tlangs': 1,
  809. 'asrs': 1,
  810. })
  811. list_url = caption_url + '&' + list_params
  812. caption_list = self._download_xml(list_url, video_id)
  813. original_lang_node = caption_list.find('track')
  814. if original_lang_node is None:
  815. self._downloader.report_warning('Video doesn\'t have automatic captions')
  816. return {}
  817. original_lang = original_lang_node.attrib['lang_code']
  818. caption_kind = original_lang_node.attrib.get('kind', '')
  819. sub_lang_list = {}
  820. for lang_node in caption_list.findall('target'):
  821. sub_lang = lang_node.attrib['lang_code']
  822. sub_formats = []
  823. for ext in ['sbv', 'vtt', 'srt']:
  824. params = compat_urllib_parse.urlencode({
  825. 'lang': original_lang,
  826. 'tlang': sub_lang,
  827. 'fmt': ext,
  828. 'ts': timestamp,
  829. 'kind': caption_kind,
  830. })
  831. sub_formats.append({
  832. 'url': caption_url + '&' + params,
  833. 'ext': ext,
  834. })
  835. sub_lang_list[sub_lang] = sub_formats
  836. return sub_lang_list
  837. # An extractor error can be raise by the download process if there are
  838. # no automatic captions but there are subtitles
  839. except (KeyError, ExtractorError):
  840. self._downloader.report_warning(err_msg)
  841. return {}
  842. @classmethod
  843. def extract_id(cls, url):
  844. mobj = re.match(cls._VALID_URL, url, re.VERBOSE)
  845. if mobj is None:
  846. raise ExtractorError('Invalid URL: %s' % url)
  847. video_id = mobj.group(2)
  848. return video_id
  849. def _extract_from_m3u8(self, manifest_url, video_id):
  850. url_map = {}
  851. def _get_urls(_manifest):
  852. lines = _manifest.split('\n')
  853. urls = filter(lambda l: l and not l.startswith('#'),
  854. lines)
  855. return urls
  856. manifest = self._download_webpage(manifest_url, video_id, 'Downloading formats manifest')
  857. formats_urls = _get_urls(manifest)
  858. for format_url in formats_urls:
  859. itag = self._search_regex(r'itag/(\d+?)/', format_url, 'itag')
  860. url_map[itag] = format_url
  861. return url_map
  862. def _extract_annotations(self, video_id):
  863. url = 'https://www.youtube.com/annotations_invideo?features=1&legacy=1&video_id=%s' % video_id
  864. return self._download_webpage(url, video_id, note='Searching for annotations.', errnote='Unable to download video annotations.')
  865. def _parse_dash_manifest(
  866. self, video_id, dash_manifest_url, player_url, age_gate, fatal=True):
  867. def decrypt_sig(mobj):
  868. s = mobj.group(1)
  869. dec_s = self._decrypt_signature(s, video_id, player_url, age_gate)
  870. return '/signature/%s' % dec_s
  871. dash_manifest_url = re.sub(r'/s/([a-fA-F0-9\.]+)', decrypt_sig, dash_manifest_url)
  872. dash_doc = self._download_xml(
  873. dash_manifest_url, video_id,
  874. note='Downloading DASH manifest',
  875. errnote='Could not download DASH manifest',
  876. fatal=fatal)
  877. if dash_doc is False:
  878. return []
  879. formats = []
  880. for a in dash_doc.findall('.//{urn:mpeg:DASH:schema:MPD:2011}AdaptationSet'):
  881. mime_type = a.attrib.get('mimeType')
  882. for r in a.findall('{urn:mpeg:DASH:schema:MPD:2011}Representation'):
  883. url_el = r.find('{urn:mpeg:DASH:schema:MPD:2011}BaseURL')
  884. if url_el is None:
  885. continue
  886. if mime_type == 'text/vtt':
  887. # TODO implement WebVTT downloading
  888. pass
  889. elif mime_type.startswith('audio/') or mime_type.startswith('video/'):
  890. segment_list = r.find('{urn:mpeg:DASH:schema:MPD:2011}SegmentList')
  891. format_id = r.attrib['id']
  892. video_url = url_el.text
  893. filesize = int_or_none(url_el.attrib.get('{http://youtube.com/yt/2012/10/10}contentLength'))
  894. f = {
  895. 'format_id': format_id,
  896. 'url': video_url,
  897. 'width': int_or_none(r.attrib.get('width')),
  898. 'height': int_or_none(r.attrib.get('height')),
  899. 'tbr': int_or_none(r.attrib.get('bandwidth'), 1000),
  900. 'asr': int_or_none(r.attrib.get('audioSamplingRate')),
  901. 'filesize': filesize,
  902. 'fps': int_or_none(r.attrib.get('frameRate')),
  903. }
  904. if segment_list is not None:
  905. f.update({
  906. 'initialization_url': segment_list.find('{urn:mpeg:DASH:schema:MPD:2011}Initialization').attrib['sourceURL'],
  907. 'segment_urls': [segment.attrib.get('media') for segment in segment_list.findall('{urn:mpeg:DASH:schema:MPD:2011}SegmentURL')],
  908. 'protocol': 'http_dash_segments',
  909. })
  910. try:
  911. existing_format = next(
  912. fo for fo in formats
  913. if fo['format_id'] == format_id)
  914. except StopIteration:
  915. full_info = self._formats.get(format_id, {}).copy()
  916. full_info.update(f)
  917. codecs = r.attrib.get('codecs')
  918. if codecs:
  919. if full_info.get('acodec') == 'none' and 'vcodec' not in full_info:
  920. full_info['vcodec'] = codecs
  921. elif full_info.get('vcodec') == 'none' and 'acodec' not in full_info:
  922. full_info['acodec'] = codecs
  923. formats.append(full_info)
  924. else:
  925. existing_format.update(f)
  926. else:
  927. self.report_warning('Unknown MIME type %s in DASH manifest' % mime_type)
  928. return formats
  929. def _real_extract(self, url):
  930. url, smuggled_data = unsmuggle_url(url, {})
  931. proto = (
  932. 'http' if self._downloader.params.get('prefer_insecure', False)
  933. else 'https')
  934. start_time = None
  935. end_time = None
  936. parsed_url = compat_urllib_parse_urlparse(url)
  937. for component in [parsed_url.fragment, parsed_url.query]:
  938. query = compat_parse_qs(component)
  939. if start_time is None and 't' in query:
  940. start_time = parse_duration(query['t'][0])
  941. if start_time is None and 'start' in query:
  942. start_time = parse_duration(query['start'][0])
  943. if end_time is None and 'end' in query:
  944. end_time = parse_duration(query['end'][0])
  945. # Extract original video URL from URL with redirection, like age verification, using next_url parameter
  946. mobj = re.search(self._NEXT_URL_RE, url)
  947. if mobj:
  948. url = proto + '://www.youtube.com/' + compat_urllib_parse_unquote(mobj.group(1)).lstrip('/')
  949. video_id = self.extract_id(url)
  950. # Get video webpage
  951. url = proto + '://www.youtube.com/watch?v=%s&gl=US&hl=en&has_verified=1&bpctr=9999999999' % video_id
  952. video_webpage = self._download_webpage(url, video_id)
  953. # Attempt to extract SWF player URL
  954. mobj = re.search(r'swfConfig.*?"(https?:\\/\\/.*?watch.*?-.*?\.swf)"', video_webpage)
  955. if mobj is not None:
  956. player_url = re.sub(r'\\(.)', r'\1', mobj.group(1))
  957. else:
  958. player_url = None
  959. dash_mpds = []
  960. def add_dash_mpd(video_info):
  961. dash_mpd = video_info.get('dashmpd')
  962. if dash_mpd and dash_mpd[0] not in dash_mpds:
  963. dash_mpds.append(dash_mpd[0])
  964. # Get video info
  965. embed_webpage = None
  966. is_live = None
  967. if re.search(r'player-age-gate-content">', video_webpage) is not None:
  968. age_gate = True
  969. # We simulate the access to the video from www.youtube.com/v/{video_id}
  970. # this can be viewed without login into Youtube
  971. url = proto + '://www.youtube.com/embed/%s' % video_id
  972. embed_webpage = self._download_webpage(url, video_id, 'Downloading embed webpage')
  973. data = compat_urllib_parse.urlencode({
  974. 'video_id': video_id,
  975. 'eurl': 'https://youtube.googleapis.com/v/' + video_id,
  976. 'sts': self._search_regex(
  977. r'"sts"\s*:\s*(\d+)', embed_webpage, 'sts', default=''),
  978. })
  979. video_info_url = proto + '://www.youtube.com/get_video_info?' + data
  980. video_info_webpage = self._download_webpage(
  981. video_info_url, video_id,
  982. note='Refetching age-gated info webpage',
  983. errnote='unable to download video info webpage')
  984. video_info = compat_parse_qs(video_info_webpage)
  985. add_dash_mpd(video_info)
  986. else:
  987. age_gate = False
  988. video_info = None
  989. # Try looking directly into the video webpage
  990. mobj = re.search(r';ytplayer\.config\s*=\s*({.*?});', video_webpage)
  991. if mobj:
  992. json_code = uppercase_escape(mobj.group(1))
  993. ytplayer_config = json.loads(json_code)
  994. args = ytplayer_config['args']
  995. if args.get('url_encoded_fmt_stream_map'):
  996. # Convert to the same format returned by compat_parse_qs
  997. video_info = dict((k, [v]) for k, v in args.items())
  998. add_dash_mpd(video_info)
  999. if args.get('livestream') == '1' or args.get('live_playback') == 1:
  1000. is_live = True
  1001. if not video_info or self._downloader.params.get('youtube_include_dash_manifest', True):
  1002. # We also try looking in get_video_info since it may contain different dashmpd
  1003. # URL that points to a DASH manifest with possibly different itag set (some itags
  1004. # are missing from DASH manifest pointed by webpage's dashmpd, some - from DASH
  1005. # manifest pointed by get_video_info's dashmpd).
  1006. # The general idea is to take a union of itags of both DASH manifests (for example
  1007. # video with such 'manifest behavior' see https://github.com/rg3/youtube-dl/issues/6093)
  1008. self.report_video_info_webpage_download(video_id)
  1009. for el_type in ['&el=info', '&el=embedded', '&el=detailpage', '&el=vevo', '']:
  1010. video_info_url = (
  1011. '%s://www.youtube.com/get_video_info?&video_id=%s%s&ps=default&eurl=&gl=US&hl=en'
  1012. % (proto, video_id, el_type))
  1013. video_info_webpage = self._download_webpage(
  1014. video_info_url,
  1015. video_id, note=False,
  1016. errnote='unable to download video info webpage')
  1017. get_video_info = compat_parse_qs(video_info_webpage)
  1018. if get_video_info.get('use_cipher_signature') != ['True']:
  1019. add_dash_mpd(get_video_info)
  1020. if not video_info:
  1021. video_info = get_video_info
  1022. if 'token' in get_video_info:
  1023. break
  1024. if 'token' not in video_info:
  1025. if 'reason' in video_info:
  1026. if 'The uploader has not made this video available in your country.' in video_info['reason']:
  1027. regions_allowed = self._html_search_meta('regionsAllowed', video_webpage, default=None)
  1028. if regions_allowed:
  1029. raise ExtractorError('YouTube said: This video is available in %s only' % (
  1030. ', '.join(map(ISO3166Utils.short2full, regions_allowed.split(',')))),
  1031. expected=True)
  1032. raise ExtractorError(
  1033. 'YouTube said: %s' % video_info['reason'][0],
  1034. expected=True, video_id=video_id)
  1035. else:
  1036. raise ExtractorError(
  1037. '"token" parameter not in video info for unknown reason',
  1038. video_id=video_id)
  1039. # title
  1040. if 'title' in video_info:
  1041. video_title = video_info['title'][0]
  1042. else:
  1043. self._downloader.report_warning('Unable to extract video title')
  1044. video_title = '_'
  1045. # description
  1046. video_description = get_element_by_id("eow-description", video_webpage)
  1047. if video_description:
  1048. video_description = re.sub(r'''(?x)
  1049. <a\s+
  1050. (?:[a-zA-Z-]+="[^"]+"\s+)*?
  1051. title="([^"]+)"\s+
  1052. (?:[a-zA-Z-]+="[^"]+"\s+)*?
  1053. class="yt-uix-redirect-link"\s*>
  1054. [^<]+
  1055. </a>
  1056. ''', r'\1', video_description)
  1057. video_description = clean_html(video_description)
  1058. else:
  1059. fd_mobj = re.search(r'<meta name="description" content="([^"]+)"', video_webpage)
  1060. if fd_mobj:
  1061. video_description = unescapeHTML(fd_mobj.group(1))
  1062. else:
  1063. video_description = ''
  1064. if 'multifeed_metadata_list' in video_info and not smuggled_data.get('force_singlefeed', False):
  1065. if not self._downloader.params.get('noplaylist'):
  1066. entries = []
  1067. feed_ids = []
  1068. multifeed_metadata_list = compat_urllib_parse_unquote_plus(video_info['multifeed_metadata_list'][0])
  1069. for feed in multifeed_metadata_list.split(','):
  1070. feed_data = compat_parse_qs(feed)
  1071. entries.append({
  1072. '_type': 'url_transparent',
  1073. 'ie_key': 'Youtube',
  1074. 'url': smuggle_url(
  1075. '%s://www.youtube.com/watch?v=%s' % (proto, feed_data['id'][0]),
  1076. {'force_singlefeed': True}),
  1077. 'title': '%s (%s)' % (video_title, feed_data['title'][0]),
  1078. })
  1079. feed_ids.append(feed_data['id'][0])
  1080. self.to_screen(
  1081. 'Downloading multifeed video (%s) - add --no-playlist to just download video %s'
  1082. % (', '.join(feed_ids), video_id))
  1083. return self.playlist_result(entries, video_id, video_title, video_description)
  1084. self.to_screen('Downloading just video %s because of --no-playlist' % video_id)
  1085. if 'view_count' in video_info:
  1086. view_count = int(video_info['view_count'][0])
  1087. else:
  1088. view_count = None
  1089. # Check for "rental" videos
  1090. if 'ypc_video_rental_bar_text' in video_info and 'author' not in video_info:
  1091. raise ExtractorError('"rental" videos not supported')
  1092. # Start extracting information
  1093. self.report_information_extraction(video_id)
  1094. # uploader
  1095. if 'author' not in video_info:
  1096. raise ExtractorError('Unable to extract uploader name')
  1097. video_uploader = compat_urllib_parse_unquote_plus(video_info['author'][0])
  1098. # uploader_id
  1099. video_uploader_id = None
  1100. mobj = re.search(r'<link itemprop="url" href="http://www.youtube.com/(?:user|channel)/([^"]+)">', video_webpage)
  1101. if mobj is not None:
  1102. video_uploader_id = mobj.group(1)
  1103. else:
  1104. self._downloader.report_warning('unable to extract uploader nickname')
  1105. # thumbnail image
  1106. # We try first to get a high quality image:
  1107. m_thumb = re.search(r'<span itemprop="thumbnail".*?href="(.*?)">',
  1108. video_webpage, re.DOTALL)
  1109. if m_thumb is not None:
  1110. video_thumbnail = m_thumb.group(1)
  1111. elif 'thumbnail_url' not in video_info:
  1112. self._downloader.report_warning('unable to extract video thumbnail')
  1113. video_thumbnail = None
  1114. else: # don't panic if we can't find it
  1115. video_thumbnail = compat_urllib_parse_unquote_plus(video_info['thumbnail_url'][0])
  1116. # upload date
  1117. upload_date = self._html_search_meta(
  1118. 'datePublished', video_webpage, 'upload date', default=None)
  1119. if not upload_date:
  1120. upload_date = self._search_regex(
  1121. [r'(?s)id="eow-date.*?>(.*?)</span>',
  1122. r'id="watch-uploader-info".*?>.*?(?:Published|Uploaded|Streamed live|Started) on (.+?)</strong>'],
  1123. video_webpage, 'upload date', default=None)
  1124. if upload_date:
  1125. upload_date = ' '.join(re.sub(r'[/,-]', r' ', mobj.group(1)).split())
  1126. upload_date = unified_strdate(upload_date)
  1127. m_cat_container = self._search_regex(
  1128. r'(?s)<h4[^>]*>\s*Category\s*</h4>\s*<ul[^>]*>(.*?)</ul>',
  1129. video_webpage, 'categories', default=None)
  1130. if m_cat_container:
  1131. category = self._html_search_regex(
  1132. r'(?s)<a[^<]+>(.*?)</a>', m_cat_container, 'category',
  1133. default=None)
  1134. video_categories = None if category is None else [category]
  1135. else:
  1136. video_categories = None
  1137. video_tags = [
  1138. unescapeHTML(m.group('content'))
  1139. for m in re.finditer(self._meta_regex('og:video:tag'), video_webpage)]
  1140. def _extract_count(count_name):
  1141. return str_to_int(self._search_regex(
  1142. r'-%s-button[^>]+><span[^>]+class="yt-uix-button-content"[^>]*>([\d,]+)</span>'
  1143. % re.escape(count_name),
  1144. video_webpage, count_name, default=None))
  1145. like_count = _extract_count('like')
  1146. dislike_count = _extract_count('dislike')
  1147. # subtitles
  1148. video_subtitles = self.extract_subtitles(video_id, video_webpage)
  1149. automatic_captions = self.extract_automatic_captions(video_id, video_webpage)
  1150. if 'length_seconds' not in video_info:
  1151. self._downloader.report_warning('unable to extract video duration')
  1152. video_duration = None
  1153. else:
  1154. video_duration = int(compat_urllib_parse_unquote_plus(video_info['length_seconds'][0]))
  1155. # annotations
  1156. video_annotations = None
  1157. if self._downloader.params.get('writeannotations', False):
  1158. video_annotations = self._extract_annotations(video_id)
  1159. def _map_to_format_list(urlmap):
  1160. formats = []
  1161. for itag, video_real_url in urlmap.items():
  1162. dct = {
  1163. 'format_id': itag,
  1164. 'url': video_real_url,
  1165. 'player_url': player_url,
  1166. }
  1167. if itag in self._formats:
  1168. dct.update(self._formats[itag])
  1169. formats.append(dct)
  1170. return formats
  1171. if 'conn' in video_info and video_info['conn'][0].startswith('rtmp'):
  1172. self.report_rtmp_download()
  1173. formats = [{
  1174. 'format_id': '_rtmp',
  1175. 'protocol': 'rtmp',
  1176. 'url': video_info['conn'][0],
  1177. 'player_url': player_url,
  1178. }]
  1179. elif len(video_info.get('url_encoded_fmt_stream_map', [''])[0]) >= 1 or len(video_info.get('adaptive_fmts', [''])[0]) >= 1:
  1180. encoded_url_map = video_info.get('url_encoded_fmt_stream_map', [''])[0] + ',' + video_info.get('adaptive_fmts', [''])[0]
  1181. if 'rtmpe%3Dyes' in encoded_url_map:
  1182. raise ExtractorError('rtmpe downloads are not supported, see https://github.com/rg3/youtube-dl/issues/343 for more information.', expected=True)
  1183. formats = []
  1184. for url_data_str in encoded_url_map.split(','):
  1185. url_data = compat_parse_qs(url_data_str)
  1186. if 'itag' not in url_data or 'url' not in url_data:
  1187. continue
  1188. format_id = url_data['itag'][0]
  1189. url = url_data['url'][0]
  1190. if 'sig' in url_data:
  1191. url += '&signature=' + url_data['sig'][0]
  1192. elif 's' in url_data:
  1193. encrypted_sig = url_data['s'][0]
  1194. ASSETS_RE = r'"assets":.+?"js":\s*("[^"]+")'
  1195. jsplayer_url_json = self._search_regex(
  1196. ASSETS_RE,
  1197. embed_webpage if age_gate else video_webpage,
  1198. 'JS player URL (1)', default=None)
  1199. if not jsplayer_url_json and not age_gate:
  1200. # We need the embed website after all
  1201. if embed_webpage is None:
  1202. embed_url = proto + '://www.youtube.com/embed/%s' % video_id
  1203. embed_webpage = self._download_webpage(
  1204. embed_url, video_id, 'Downloading embed webpage')
  1205. jsplayer_url_json = self._search_regex(
  1206. ASSETS_RE, embed_webpage, 'JS player URL')
  1207. player_url = json.loads(jsplayer_url_json)
  1208. if player_url is None:
  1209. player_url_json = self._search_regex(
  1210. r'ytplayer\.config.*?"url"\s*:\s*("[^"]+")',
  1211. video_webpage, 'age gate player URL')
  1212. player_url = json.loads(player_url_json)
  1213. if self._downloader.params.get('verbose'):
  1214. if player_url is None:
  1215. player_version = 'unknown'
  1216. player_desc = 'unknown'
  1217. else:
  1218. if player_url.endswith('swf'):
  1219. player_version = self._search_regex(
  1220. r'-(.+?)(?:/watch_as3)?\.swf$', player_url,
  1221. 'flash player', fatal=False)
  1222. player_desc = 'flash player %s' % player_version
  1223. else:
  1224. player_version = self._search_regex(
  1225. r'html5player-([^/]+?)(?:/html5player(?:-new)?)?\.js',
  1226. player_url,
  1227. 'html5 player', fatal=False)
  1228. player_desc = 'html5 player %s' % player_version
  1229. parts_sizes = self._signature_cache_id(encrypted_sig)
  1230. self.to_screen('{%s} signature length %s, %s' %
  1231. (format_id, parts_sizes, player_desc))
  1232. signature = self._decrypt_signature(
  1233. encrypted_sig, video_id, player_url, age_gate)
  1234. url += '&signature=' + signature
  1235. if 'ratebypass' not in url:
  1236. url += '&ratebypass=yes'
  1237. # Some itags are not included in DASH manifest thus corresponding formats will
  1238. # lack metadata (see https://github.com/rg3/youtube-dl/pull/5993).
  1239. # Trying to extract metadata from url_encoded_fmt_stream_map entry.
  1240. mobj = re.search(r'^(?P<width>\d+)[xX](?P<height>\d+)$', url_data.get('size', [''])[0])
  1241. width, height = (int(mobj.group('width')), int(mobj.group('height'))) if mobj else (None, None)
  1242. dct = {
  1243. 'format_id': format_id,
  1244. 'url': url,
  1245. 'player_url': player_url,
  1246. 'filesize': int_or_none(url_data.get('clen', [None])[0]),
  1247. 'tbr': float_or_none(url_data.get('bitrate', [None])[0], 1000),
  1248. 'width': width,
  1249. 'height': height,
  1250. 'fps': int_or_none(url_data.get('fps', [None])[0]),
  1251. 'format_note': url_data.get('quality_label', [None])[0] or url_data.get('quality', [None])[0],
  1252. }
  1253. type_ = url_data.get('type', [None])[0]
  1254. if type_:
  1255. type_split = type_.split(';')
  1256. kind_ext = type_split[0].split('/')
  1257. if len(kind_ext) == 2:
  1258. kind, ext = kind_ext
  1259. dct['ext'] = ext
  1260. if kind in ('audio', 'video'):
  1261. codecs = None
  1262. for mobj in re.finditer(
  1263. r'(?P<key>[a-zA-Z_-]+)=(?P<quote>["\']?)(?P<val>.+?)(?P=quote)(?:;|$)', type_):
  1264. if mobj.group('key') == 'codecs':
  1265. codecs = mobj.group('val')
  1266. break
  1267. if codecs:
  1268. codecs = codecs.split(',')
  1269. if len(codecs) == 2:
  1270. acodec, vcodec = codecs[0], codecs[1]
  1271. else:
  1272. acodec, vcodec = (codecs[0], 'none') if kind == 'audio' else ('none', codecs[0])
  1273. dct.update({
  1274. 'acodec': acodec,
  1275. 'vcodec': vcodec,
  1276. })
  1277. if format_id in self._formats:
  1278. dct.update(self._formats[format_id])
  1279. formats.append(dct)
  1280. elif video_info.get('hlsvp'):
  1281. manifest_url = video_info['hlsvp'][0]
  1282. url_map = self._extract_from_m3u8(manifest_url, video_id)
  1283. formats = _map_to_format_list(url_map)
  1284. else:
  1285. raise ExtractorError('no conn, hlsvp or url_encoded_fmt_stream_map information found in video info')
  1286. # Look for the DASH manifest
  1287. if self._downloader.params.get('youtube_include_dash_manifest', True):
  1288. dash_mpd_fatal = True
  1289. for dash_manifest_url in dash_mpds:
  1290. dash_formats = {}
  1291. try:
  1292. for df in self._parse_dash_manifest(
  1293. video_id, dash_manifest_url, player_url, age_gate, dash_mpd_fatal):
  1294. # Do not overwrite DASH format found in some previous DASH manifest
  1295. if df['format_id'] not in dash_formats:
  1296. dash_formats[df['format_id']] = df
  1297. # Additional DASH manifests may end up in HTTP Error 403 therefore
  1298. # allow them to fail without bug report message if we already have
  1299. # some DASH manifest succeeded. This is temporary workaround to reduce
  1300. # burst of bug reports until we figure out the reason and whether it
  1301. # can be fixed at all.
  1302. dash_mpd_fatal = False
  1303. except (ExtractorError, KeyError) as e:
  1304. self.report_warning(
  1305. 'Skipping DASH manifest: %r' % e, video_id)
  1306. if dash_formats:
  1307. # Remove the formats we found through non-DASH, they
  1308. # contain less info and it can be wrong, because we use
  1309. # fixed values (for example the resolution). See
  1310. # https://github.com/rg3/youtube-dl/issues/5774 for an
  1311. # example.
  1312. formats = [f for f in formats if f['format_id'] not in dash_formats.keys()]
  1313. formats.extend(dash_formats.values())
  1314. # Check for malformed aspect ratio
  1315. stretched_m = re.search(
  1316. r'<meta\s+property="og:video:tag".*?content="yt:stretch=(?P<w>[0-9]+):(?P<h>[0-9]+)">',
  1317. video_webpage)
  1318. if stretched_m:
  1319. ratio = float(stretched_m.group('w')) / float(stretched_m.group('h'))
  1320. for f in formats:
  1321. if f.get('vcodec') != 'none':
  1322. f['stretched_ratio'] = ratio
  1323. self._sort_formats(formats)
  1324. return {
  1325. 'id': video_id,
  1326. 'uploader': video_uploader,
  1327. 'uploader_id': video_uploader_id,
  1328. 'upload_date': upload_date,
  1329. 'title': video_title,
  1330. 'thumbnail': video_thumbnail,
  1331. 'description': video_description,
  1332. 'categories': video_categories,
  1333. 'tags': video_tags,
  1334. 'subtitles': video_subtitles,
  1335. 'automatic_captions': automatic_captions,
  1336. 'duration': video_duration,
  1337. 'age_limit': 18 if age_gate else 0,
  1338. 'annotations': video_annotations,
  1339. 'webpage_url': proto + '://www.youtube.com/watch?v=%s' % video_id,
  1340. 'view_count': view_count,
  1341. 'like_count': like_count,
  1342. 'dislike_count': dislike_count,
  1343. 'average_rating': float_or_none(video_info.get('avg_rating', [None])[0]),
  1344. 'formats': formats,
  1345. 'is_live': is_live,
  1346. 'start_time': start_time,
  1347. 'end_time': end_time,
  1348. }
  1349. class YoutubePlaylistIE(YoutubeBaseInfoExtractor, YoutubePlaylistBaseInfoExtractor):
  1350. IE_DESC = 'YouTube.com playlists'
  1351. _VALID_URL = r"""(?x)(?:
  1352. (?:https?://)?
  1353. (?:\w+\.)?
  1354. youtube\.com/
  1355. (?:
  1356. (?:course|view_play_list|my_playlists|artist|playlist|watch|embed/videoseries)
  1357. \? (?:.*?&)*? (?:p|a|list)=
  1358. | p/
  1359. )
  1360. (
  1361. (?:PL|LL|EC|UU|FL|RD|UL)?[0-9A-Za-z-_]{10,}
  1362. # Top tracks, they can also include dots
  1363. |(?:MC)[\w\.]*
  1364. )
  1365. .*
  1366. |
  1367. ((?:PL|LL|EC|UU|FL|RD|UL)[0-9A-Za-z-_]{10,})
  1368. )"""
  1369. _TEMPLATE_URL = 'https://www.youtube.com/playlist?list=%s'
  1370. _VIDEO_RE = r'href="\s*/watch\?v=(?P<id>[0-9A-Za-z_-]{11})&amp;[^"]*?index=(?P<index>\d+)(?:[^>]+>(?P<title>[^<]+))?'
  1371. IE_NAME = 'youtube:playlist'
  1372. _TESTS = [{
  1373. 'url': 'https://www.youtube.com/playlist?list=PLwiyx1dc3P2JR9N8gQaQN_BCvlSlap7re',
  1374. 'info_dict': {
  1375. 'title': 'ytdl test PL',
  1376. 'id': 'PLwiyx1dc3P2JR9N8gQaQN_BCvlSlap7re',
  1377. },
  1378. 'playlist_count': 3,
  1379. }, {
  1380. 'url': 'https://www.youtube.com/playlist?list=PLtPgu7CB4gbZDA7i_euNxn75ISqxwZPYx',
  1381. 'info_dict': {
  1382. 'id': 'PLtPgu7CB4gbZDA7i_euNxn75ISqxwZPYx',
  1383. 'title': 'YDL_Empty_List',
  1384. },
  1385. 'playlist_count': 0,
  1386. }, {
  1387. 'note': 'Playlist with deleted videos (#651). As a bonus, the video #51 is also twice in this list.',
  1388. 'url': 'https://www.youtube.com/playlist?list=PLwP_SiAcdui0KVebT0mU9Apz359a4ubsC',
  1389. 'info_dict': {
  1390. 'title': '29C3: Not my department',
  1391. 'id': 'PLwP_SiAcdui0KVebT0mU9Apz359a4ubsC',
  1392. },
  1393. 'playlist_count': 95,
  1394. }, {
  1395. 'note': 'issue #673',
  1396. 'url': 'PLBB231211A4F62143',
  1397. 'info_dict': {
  1398. 'title': '[OLD]Team Fortress 2 (Class-based LP)',
  1399. 'id': 'PLBB231211A4F62143',
  1400. },
  1401. 'playlist_mincount': 26,
  1402. }, {
  1403. 'note': 'Large playlist',
  1404. 'url': 'https://www.youtube.com/playlist?list=UUBABnxM4Ar9ten8Mdjj1j0Q',
  1405. 'info_dict': {
  1406. 'title': 'Uploads from Cauchemar',
  1407. 'id': 'UUBABnxM4Ar9ten8Mdjj1j0Q',
  1408. },
  1409. 'playlist_mincount': 799,
  1410. }, {
  1411. 'url': 'PLtPgu7CB4gbY9oDN3drwC3cMbJggS7dKl',
  1412. 'info_dict': {
  1413. 'title': 'YDL_safe_search',
  1414. 'id': 'PLtPgu7CB4gbY9oDN3drwC3cMbJggS7dKl',
  1415. },
  1416. 'playlist_count': 2,
  1417. }, {
  1418. 'note': 'embedded',
  1419. 'url': 'http://www.youtube.com/embed/videoseries?list=PL6IaIsEjSbf96XFRuNccS_RuEXwNdsoEu',
  1420. 'playlist_count': 4,
  1421. 'info_dict': {
  1422. 'title': 'JODA15',
  1423. 'id': 'PL6IaIsEjSbf96XFRuNccS_RuEXwNdsoEu',
  1424. }
  1425. }, {
  1426. 'note': 'Embedded SWF player',
  1427. 'url': 'http://www.youtube.com/p/YN5VISEtHet5D4NEvfTd0zcgFk84NqFZ?hl=en_US&fs=1&rel=0',
  1428. 'playlist_count': 4,
  1429. 'info_dict': {
  1430. 'title': 'JODA7',
  1431. 'id': 'YN5VISEtHet5D4NEvfTd0zcgFk84NqFZ',
  1432. }
  1433. }, {
  1434. 'note': 'Buggy playlist: the webpage has a "Load more" button but it doesn\'t have more videos',
  1435. 'url': 'https://www.youtube.com/playlist?list=UUXw-G3eDE9trcvY2sBMM_aA',
  1436. 'info_dict': {
  1437. 'title': 'Uploads from Interstellar Movie',
  1438. 'id': 'UUXw-G3eDE9trcvY2sBMM_aA',
  1439. },
  1440. 'playlist_mincout': 21,
  1441. }]
  1442. def _real_initialize(self):
  1443. self._login()
  1444. def _extract_mix(self, playlist_id):
  1445. # The mixes are generated from a single video
  1446. # the id of the playlist is just 'RD' + video_id
  1447. url = 'https://youtube.com/watch?v=%s&list=%s' % (playlist_id[-11:], playlist_id)
  1448. webpage = self._download_webpage(
  1449. url, playlist_id, 'Downloading Youtube mix')
  1450. search_title = lambda class_name: get_element_by_attribute('class', class_name, webpage)
  1451. title_span = (
  1452. search_title('playlist-title') or
  1453. search_title('title long-title') or
  1454. search_title('title'))
  1455. title = clean_html(title_span)
  1456. ids = orderedSet(re.findall(
  1457. r'''(?xs)data-video-username=".*?".*?
  1458. href="/watch\?v=([0-9A-Za-z_-]{11})&amp;[^"]*?list=%s''' % re.escape(playlist_id),
  1459. webpage))
  1460. url_results = self._ids_to_results(ids)
  1461. return self.playlist_result(url_results, playlist_id, title)
  1462. def _extract_playlist(self, playlist_id):
  1463. url = self._TEMPLATE_URL % playlist_id
  1464. page = self._download_webpage(url, playlist_id)
  1465. for match in re.findall(r'<div class="yt-alert-message">([^<]+)</div>', page):
  1466. match = match.strip()
  1467. # Check if the playlist exists or is private
  1468. if re.match(r'[^<]*(The|This) playlist (does not exist|is private)[^<]*', match):
  1469. raise ExtractorError(
  1470. 'The playlist doesn\'t exist or is private, use --username or '
  1471. '--netrc to access it.',
  1472. expected=True)
  1473. elif re.match(r'[^<]*Invalid parameters[^<]*', match):
  1474. raise ExtractorError(
  1475. 'Invalid parameters. Maybe URL is incorrect.',
  1476. expected=True)
  1477. elif re.match(r'[^<]*Choose your language[^<]*', match):
  1478. continue
  1479. else:
  1480. self.report_warning('Youtube gives an alert message: ' + match)
  1481. playlist_title = self._html_search_regex(
  1482. r'(?s)<h1 class="pl-header-title[^"]*">\s*(.*?)\s*</h1>',
  1483. page, 'title')
  1484. return self.playlist_result(self._entries(page, playlist_id), playlist_id, playlist_title)
  1485. def _real_extract(self, url):
  1486. # Extract playlist id
  1487. mobj = re.match(self._VALID_URL, url)
  1488. if mobj is None:
  1489. raise ExtractorError('Invalid URL: %s' % url)
  1490. playlist_id = mobj.group(1) or mobj.group(2)
  1491. # Check if it's a video-specific URL
  1492. query_dict = compat_urlparse.parse_qs(compat_urlparse.urlparse(url).query)
  1493. if 'v' in query_dict:
  1494. video_id = query_dict['v'][0]
  1495. if self._downloader.params.get('noplaylist'):
  1496. self.to_screen('Downloading just video %s because of --no-playlist' % video_id)
  1497. return self.url_result(video_id, 'Youtube', video_id=video_id)
  1498. else:
  1499. self.to_screen('Downloading playlist %s - add --no-playlist to just download video %s' % (playlist_id, video_id))
  1500. if playlist_id.startswith('RD') or playlist_id.startswith('UL'):
  1501. # Mixes require a custom extraction process
  1502. return self._extract_mix(playlist_id)
  1503. return self._extract_playlist(playlist_id)
  1504. class YoutubeChannelIE(YoutubePlaylistBaseInfoExtractor):
  1505. IE_DESC = 'YouTube.com channels'
  1506. _VALID_URL = r'https?://(?:youtu\.be|(?:\w+\.)?youtube(?:-nocookie)?\.com)/channel/(?P<id>[0-9A-Za-z_-]+)'
  1507. _TEMPLATE_URL = 'https://www.youtube.com/channel/%s/videos'
  1508. _VIDEO_RE = r'(?:title="(?P<title>[^"]+)"[^>]+)?href="/watch\?v=(?P<id>[0-9A-Za-z_-]+)&?'
  1509. IE_NAME = 'youtube:channel'
  1510. _TESTS = [{
  1511. 'note': 'paginated channel',
  1512. 'url': 'https://www.youtube.com/channel/UCKfVa3S1e4PHvxWcwyMMg8w',
  1513. 'playlist_mincount': 91,
  1514. 'info_dict': {
  1515. 'id': 'UUKfVa3S1e4PHvxWcwyMMg8w',
  1516. 'title': 'Uploads from lex will',
  1517. }
  1518. }, {
  1519. 'note': 'Age restricted channel',
  1520. # from https://www.youtube.com/user/DeusExOfficial
  1521. 'url': 'https://www.youtube.com/channel/UCs0ifCMCm1icqRbqhUINa0w',
  1522. 'playlist_mincount': 64,
  1523. 'info_dict': {
  1524. 'id': 'UUs0ifCMCm1icqRbqhUINa0w',
  1525. 'title': 'Uploads from Deus Ex',
  1526. },
  1527. }]
  1528. def _real_extract(self, url):
  1529. channel_id = self._match_id(url)
  1530. url = self._TEMPLATE_URL % channel_id
  1531. # Channel by page listing is restricted to 35 pages of 30 items, i.e. 1050 videos total (see #5778)
  1532. # Workaround by extracting as a playlist if managed to obtain channel playlist URL
  1533. # otherwise fallback on channel by page extraction
  1534. channel_page = self._download_webpage(
  1535. url + '?view=57', channel_id,
  1536. 'Downloading channel page', fatal=False)
  1537. if channel_page is False:
  1538. channel_playlist_id = False
  1539. else:
  1540. channel_playlist_id = self._html_search_meta(
  1541. 'channelId', channel_page, 'channel id', default=None)
  1542. if not channel_playlist_id:
  1543. channel_playlist_id = self._search_regex(
  1544. r'data-(?:channel-external-|yt)id="([^"]+)"',
  1545. channel_page, 'channel id', default=None)
  1546. if channel_playlist_id and channel_playlist_id.startswith('UC'):
  1547. playlist_id = 'UU' + channel_playlist_id[2:]
  1548. return self.url_result(
  1549. compat_urlparse.urljoin(url, '/playlist?list=%s' % playlist_id), 'YoutubePlaylist')
  1550. channel_page = self._download_webpage(url, channel_id, 'Downloading page #1')
  1551. autogenerated = re.search(r'''(?x)
  1552. class="[^"]*?(?:
  1553. channel-header-autogenerated-label|
  1554. yt-channel-title-autogenerated
  1555. )[^"]*"''', channel_page) is not None
  1556. if autogenerated:
  1557. # The videos are contained in a single page
  1558. # the ajax pages can't be used, they are empty
  1559. entries = [
  1560. self.url_result(
  1561. video_id, 'Youtube', video_id=video_id,
  1562. video_title=video_title)
  1563. for video_id, video_title in self.extract_videos_from_page(channel_page)]
  1564. return self.playlist_result(entries, channel_id)
  1565. return self.playlist_result(self._entries(channel_page, channel_id), channel_id)
  1566. class YoutubeUserIE(YoutubeChannelIE):
  1567. IE_DESC = 'YouTube.com user videos (URL or "ytuser" keyword)'
  1568. _VALID_URL = r'(?:(?:(?:https?://)?(?:\w+\.)?youtube\.com/(?:user/)?(?!(?:attribution_link|watch|results)(?:$|[^a-z_A-Z0-9-])))|ytuser:)(?!feed/)(?P<id>[A-Za-z0-9_-]+)'
  1569. _TEMPLATE_URL = 'https://www.youtube.com/user/%s/videos'
  1570. IE_NAME = 'youtube:user'
  1571. _TESTS = [{
  1572. 'url': 'https://www.youtube.com/user/TheLinuxFoundation',
  1573. 'playlist_mincount': 320,
  1574. 'info_dict': {
  1575. 'title': 'TheLinuxFoundation',
  1576. }
  1577. }, {
  1578. 'url': 'ytuser:phihag',
  1579. 'only_matching': True,
  1580. }]
  1581. @classmethod
  1582. def suitable(cls, url):
  1583. # Don't return True if the url can be extracted with other youtube
  1584. # extractor, the regex would is too permissive and it would match.
  1585. other_ies = iter(klass for (name, klass) in globals().items() if name.endswith('IE') and klass is not cls)
  1586. if any(ie.suitable(url) for ie in other_ies):
  1587. return False
  1588. else:
  1589. return super(YoutubeUserIE, cls).suitable(url)
  1590. class YoutubeSearchIE(SearchInfoExtractor, YoutubePlaylistIE):
  1591. IE_DESC = 'YouTube.com searches'
  1592. # there doesn't appear to be a real limit, for example if you search for
  1593. # 'python' you get more than 8.000.000 results
  1594. _MAX_RESULTS = float('inf')
  1595. IE_NAME = 'youtube:search'
  1596. _SEARCH_KEY = 'ytsearch'
  1597. _EXTRA_QUERY_ARGS = {}
  1598. _TESTS = []
  1599. def _get_n_results(self, query, n):
  1600. """Get a specified number of results for a query"""
  1601. videos = []
  1602. limit = n
  1603. for pagenum in itertools.count(1):
  1604. url_query = {
  1605. 'search_query': query.encode('utf-8'),
  1606. 'page': pagenum,
  1607. 'spf': 'navigate',
  1608. }
  1609. url_query.update(self._EXTRA_QUERY_ARGS)
  1610. result_url = 'https://www.youtube.com/results?' + compat_urllib_parse.urlencode(url_query)
  1611. data = self._download_json(
  1612. result_url, video_id='query "%s"' % query,
  1613. note='Downloading page %s' % pagenum,
  1614. errnote='Unable to download API page')
  1615. html_content = data[1]['body']['content']
  1616. if 'class="search-message' in html_content:
  1617. raise ExtractorError(
  1618. '[youtube] No video results', expected=True)
  1619. new_videos = self._ids_to_results(orderedSet(re.findall(
  1620. r'href="/watch\?v=(.{11})', html_content)))
  1621. videos += new_videos
  1622. if not new_videos or len(videos) > limit:
  1623. break
  1624. if len(videos) > n:
  1625. videos = videos[:n]
  1626. return self.playlist_result(videos, query)
  1627. class YoutubeSearchDateIE(YoutubeSearchIE):
  1628. IE_NAME = YoutubeSearchIE.IE_NAME + ':date'
  1629. _SEARCH_KEY = 'ytsearchdate'
  1630. IE_DESC = 'YouTube.com searches, newest videos first'
  1631. _EXTRA_QUERY_ARGS = {'search_sort': 'video_date_uploaded'}
  1632. class YoutubeSearchURLIE(InfoExtractor):
  1633. IE_DESC = 'YouTube.com search URLs'
  1634. IE_NAME = 'youtube:search_url'
  1635. _VALID_URL = r'https?://(?:www\.)?youtube\.com/results\?(.*?&)?search_query=(?P<query>[^&]+)(?:[&]|$)'
  1636. _TESTS = [{
  1637. 'url': 'https://www.youtube.com/results?baz=bar&search_query=youtube-dl+test+video&filters=video&lclk=video',
  1638. 'playlist_mincount': 5,
  1639. 'info_dict': {
  1640. 'title': 'youtube-dl test video',
  1641. }
  1642. }]
  1643. def _real_extract(self, url):
  1644. mobj = re.match(self._VALID_URL, url)
  1645. query = compat_urllib_parse_unquote_plus(mobj.group('query'))
  1646. webpage = self._download_webpage(url, query)
  1647. result_code = self._search_regex(
  1648. r'(?s)<ol[^>]+class="item-section"(.*?)</ol>', webpage, 'result HTML')
  1649. part_codes = re.findall(
  1650. r'(?s)<h3[^>]+class="[^"]*yt-lockup-title[^"]*"[^>]*>(.*?)</h3>', result_code)
  1651. entries = []
  1652. for part_code in part_codes:
  1653. part_title = self._html_search_regex(
  1654. [r'(?s)title="([^"]+)"', r'>([^<]+)</a>'], part_code, 'item title', fatal=False)
  1655. part_url_snippet = self._html_search_regex(
  1656. r'(?s)href="([^"]+)"', part_code, 'item URL')
  1657. part_url = compat_urlparse.urljoin(
  1658. 'https://www.youtube.com/', part_url_snippet)
  1659. entries.append({
  1660. '_type': 'url',
  1661. 'url': part_url,
  1662. 'title': part_title,
  1663. })
  1664. return {
  1665. '_type': 'playlist',
  1666. 'entries': entries,
  1667. 'title': query,
  1668. }
  1669. class YoutubeShowIE(InfoExtractor):
  1670. IE_DESC = 'YouTube.com (multi-season) shows'
  1671. _VALID_URL = r'https?://www\.youtube\.com/show/(?P<id>[^?#]*)'
  1672. IE_NAME = 'youtube:show'
  1673. _TESTS = [{
  1674. 'url': 'https://www.youtube.com/show/airdisasters',
  1675. 'playlist_mincount': 5,
  1676. 'info_dict': {
  1677. 'id': 'airdisasters',
  1678. 'title': 'Air Disasters',
  1679. }
  1680. }]
  1681. def _real_extract(self, url):
  1682. mobj = re.match(self._VALID_URL, url)
  1683. playlist_id = mobj.group('id')
  1684. webpage = self._download_webpage(
  1685. 'https://www.youtube.com/show/%s/playlists' % playlist_id, playlist_id, 'Downloading show webpage')
  1686. # There's one playlist for each season of the show
  1687. m_seasons = list(re.finditer(r'href="(/playlist\?list=.*?)"', webpage))
  1688. self.to_screen('%s: Found %s seasons' % (playlist_id, len(m_seasons)))
  1689. entries = [
  1690. self.url_result(
  1691. 'https://www.youtube.com' + season.group(1), 'YoutubePlaylist')
  1692. for season in m_seasons
  1693. ]
  1694. title = self._og_search_title(webpage, fatal=False)
  1695. return {
  1696. '_type': 'playlist',
  1697. 'id': playlist_id,
  1698. 'title': title,
  1699. 'entries': entries,
  1700. }
  1701. class YoutubeFeedsInfoExtractor(YoutubeBaseInfoExtractor):
  1702. """
  1703. Base class for feed extractors
  1704. Subclasses must define the _FEED_NAME and _PLAYLIST_TITLE properties.
  1705. """
  1706. _LOGIN_REQUIRED = True
  1707. @property
  1708. def IE_NAME(self):
  1709. return 'youtube:%s' % self._FEED_NAME
  1710. def _real_initialize(self):
  1711. self._login()
  1712. def _real_extract(self, url):
  1713. page = self._download_webpage(
  1714. 'https://www.youtube.com/feed/%s' % self._FEED_NAME, self._PLAYLIST_TITLE)
  1715. # The extraction process is the same as for playlists, but the regex
  1716. # for the video ids doesn't contain an index
  1717. ids = []
  1718. more_widget_html = content_html = page
  1719. for page_num in itertools.count(1):
  1720. matches = re.findall(r'href="\s*/watch\?v=([0-9A-Za-z_-]{11})', content_html)
  1721. # 'recommended' feed has infinite 'load more' and each new portion spins
  1722. # the same videos in (sometimes) slightly different order, so we'll check
  1723. # for unicity and break when portion has no new videos
  1724. new_ids = filter(lambda video_id: video_id not in ids, orderedSet(matches))
  1725. if not new_ids:
  1726. break
  1727. ids.extend(new_ids)
  1728. mobj = re.search(r'data-uix-load-more-href="/?(?P<more>[^"]+)"', more_widget_html)
  1729. if not mobj:
  1730. break
  1731. more = self._download_json(
  1732. 'https://youtube.com/%s' % mobj.group('more'), self._PLAYLIST_TITLE,
  1733. 'Downloading page #%s' % page_num,
  1734. transform_source=uppercase_escape)
  1735. content_html = more['content_html']
  1736. more_widget_html = more['load_more_widget_html']
  1737. return self.playlist_result(
  1738. self._ids_to_results(ids), playlist_title=self._PLAYLIST_TITLE)
  1739. class YoutubeWatchLaterIE(YoutubePlaylistIE):
  1740. IE_NAME = 'youtube:watchlater'
  1741. IE_DESC = 'Youtube watch later list, ":ytwatchlater" for short (requires authentication)'
  1742. _VALID_URL = r'https?://www\.youtube\.com/(?:feed/watch_later|playlist\?list=WL)|:ytwatchlater'
  1743. _TESTS = [] # override PlaylistIE tests
  1744. def _real_extract(self, url):
  1745. return self._extract_playlist('WL')
  1746. class YoutubeFavouritesIE(YoutubeBaseInfoExtractor):
  1747. IE_NAME = 'youtube:favorites'
  1748. IE_DESC = 'YouTube.com favourite videos, ":ytfav" for short (requires authentication)'
  1749. _VALID_URL = r'https?://www\.youtube\.com/my_favorites|:ytfav(?:ou?rites)?'
  1750. _LOGIN_REQUIRED = True
  1751. def _real_extract(self, url):
  1752. webpage = self._download_webpage('https://www.youtube.com/my_favorites', 'Youtube Favourites videos')
  1753. playlist_id = self._search_regex(r'list=(.+?)["&]', webpage, 'favourites playlist id')
  1754. return self.url_result(playlist_id, 'YoutubePlaylist')
  1755. class YoutubeRecommendedIE(YoutubeFeedsInfoExtractor):
  1756. IE_DESC = 'YouTube.com recommended videos, ":ytrec" for short (requires authentication)'
  1757. _VALID_URL = r'https?://www\.youtube\.com/feed/recommended|:ytrec(?:ommended)?'
  1758. _FEED_NAME = 'recommended'
  1759. _PLAYLIST_TITLE = 'Youtube Recommended videos'
  1760. class YoutubeSubscriptionsIE(YoutubeFeedsInfoExtractor):
  1761. IE_DESC = 'YouTube.com subscriptions feed, "ytsubs" keyword (requires authentication)'
  1762. _VALID_URL = r'https?://www\.youtube\.com/feed/subscriptions|:ytsubs(?:criptions)?'
  1763. _FEED_NAME = 'subscriptions'
  1764. _PLAYLIST_TITLE = 'Youtube Subscriptions'
  1765. class YoutubeHistoryIE(YoutubeFeedsInfoExtractor):
  1766. IE_DESC = 'Youtube watch history, ":ythistory" for short (requires authentication)'
  1767. _VALID_URL = 'https?://www\.youtube\.com/feed/history|:ythistory'
  1768. _FEED_NAME = 'history'
  1769. _PLAYLIST_TITLE = 'Youtube History'
  1770. class YoutubeTruncatedURLIE(InfoExtractor):
  1771. IE_NAME = 'youtube:truncated_url'
  1772. IE_DESC = False # Do not list
  1773. _VALID_URL = r'''(?x)
  1774. (?:https?://)?
  1775. (?:\w+\.)?[yY][oO][uU][tT][uU][bB][eE](?:-nocookie)?\.com/
  1776. (?:watch\?(?:
  1777. feature=[a-z_]+|
  1778. annotation_id=annotation_[^&]+|
  1779. x-yt-cl=[0-9]+|
  1780. hl=[^&]*|
  1781. t=[0-9]+
  1782. )?
  1783. |
  1784. attribution_link\?a=[^&]+
  1785. )
  1786. $
  1787. '''
  1788. _TESTS = [{
  1789. 'url': 'http://www.youtube.com/watch?annotation_id=annotation_3951667041',
  1790. 'only_matching': True,
  1791. }, {
  1792. 'url': 'http://www.youtube.com/watch?',
  1793. 'only_matching': True,
  1794. }, {
  1795. 'url': 'https://www.youtube.com/watch?x-yt-cl=84503534',
  1796. 'only_matching': True,
  1797. }, {
  1798. 'url': 'https://www.youtube.com/watch?feature=foo',
  1799. 'only_matching': True,
  1800. }, {
  1801. 'url': 'https://www.youtube.com/watch?hl=en-GB',
  1802. 'only_matching': True,
  1803. }, {
  1804. 'url': 'https://www.youtube.com/watch?t=2372',
  1805. 'only_matching': True,
  1806. }]
  1807. def _real_extract(self, url):
  1808. raise ExtractorError(
  1809. 'Did you forget to quote the URL? Remember that & is a meta '
  1810. 'character in most shells, so you want to put the URL in quotes, '
  1811. 'like youtube-dl '
  1812. '"http://www.youtube.com/watch?feature=foo&v=BaW_jenozKc" '
  1813. ' or simply youtube-dl BaW_jenozKc .',
  1814. expected=True)
  1815. class YoutubeTruncatedIDIE(InfoExtractor):
  1816. IE_NAME = 'youtube:truncated_id'
  1817. IE_DESC = False # Do not list
  1818. _VALID_URL = r'https?://(?:www\.)?youtube\.com/watch\?v=(?P<id>[0-9A-Za-z_-]{1,10})$'
  1819. _TESTS = [{
  1820. 'url': 'https://www.youtube.com/watch?v=N_708QY7Ob',
  1821. 'only_matching': True,
  1822. }]
  1823. def _real_extract(self, url):
  1824. video_id = self._match_id(url)
  1825. raise ExtractorError(
  1826. 'Incomplete YouTube ID %s. URL %s looks truncated.' % (video_id, url),
  1827. expected=True)