youtube.py 43 KB

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