youtube.py 41 KB

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