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.

793 lines
34 KiB

11 years ago
11 years ago
11 years ago
  1. #!/usr/bin/env python
  2. # -*- coding: utf-8 -*-
  3. from __future__ import absolute_import
  4. import errno
  5. import io
  6. import os
  7. import re
  8. import shutil
  9. import socket
  10. import sys
  11. import time
  12. import traceback
  13. from .utils import *
  14. from .extractor import get_info_extractor, gen_extractors
  15. from .FileDownloader import FileDownloader
  16. class YoutubeDL(object):
  17. """YoutubeDL class.
  18. YoutubeDL objects are the ones responsible of downloading the
  19. actual video file and writing it to disk if the user has requested
  20. it, among some other tasks. In most cases there should be one per
  21. program. As, given a video URL, the downloader doesn't know how to
  22. extract all the needed information, task that InfoExtractors do, it
  23. has to pass the URL to one of them.
  24. For this, YoutubeDL objects have a method that allows
  25. InfoExtractors to be registered in a given order. When it is passed
  26. a URL, the YoutubeDL object handles it to the first InfoExtractor it
  27. finds that reports being able to handle it. The InfoExtractor extracts
  28. all the information about the video or videos the URL refers to, and
  29. YoutubeDL process the extracted information, possibly using a File
  30. Downloader to download the video.
  31. YoutubeDL objects accept a lot of parameters. In order not to saturate
  32. the object constructor with arguments, it receives a dictionary of
  33. options instead. These options are available through the params
  34. attribute for the InfoExtractors to use. The YoutubeDL also
  35. registers itself as the downloader in charge for the InfoExtractors
  36. that are added to it, so this is a "mutual registration".
  37. Available options:
  38. username: Username for authentication purposes.
  39. password: Password for authentication purposes.
  40. videopassword: Password for acces a video.
  41. usenetrc: Use netrc for authentication instead.
  42. verbose: Print additional info to stdout.
  43. quiet: Do not print messages to stdout.
  44. forceurl: Force printing final URL.
  45. forcetitle: Force printing title.
  46. forceid: Force printing ID.
  47. forcethumbnail: Force printing thumbnail URL.
  48. forcedescription: Force printing description.
  49. forcefilename: Force printing final filename.
  50. simulate: Do not download the video files.
  51. format: Video format code.
  52. format_limit: Highest quality format to try.
  53. outtmpl: Template for output names.
  54. restrictfilenames: Do not allow "&" and spaces in file names
  55. ignoreerrors: Do not stop on download errors.
  56. nooverwrites: Prevent overwriting files.
  57. playliststart: Playlist item to start at.
  58. playlistend: Playlist item to end at.
  59. matchtitle: Download only matching titles.
  60. rejecttitle: Reject downloads for matching titles.
  61. logtostderr: Log messages to stderr instead of stdout.
  62. writedescription: Write the video description to a .description file
  63. writeinfojson: Write the video description to a .info.json file
  64. writeannotations: Write the video annotations to a .annotations.xml file
  65. writethumbnail: Write the thumbnail image to a file
  66. writesubtitles: Write the video subtitles to a file
  67. writeautomaticsub: Write the automatic subtitles to a file
  68. allsubtitles: Downloads all the subtitles of the video
  69. (requires writesubtitles or writeautomaticsub)
  70. listsubtitles: Lists all available subtitles for the video
  71. subtitlesformat: Subtitle format [srt/sbv/vtt] (default=srt)
  72. subtitleslangs: List of languages of the subtitles to download
  73. keepvideo: Keep the video file after post-processing
  74. daterange: A DateRange object, download only if the upload_date is in the range.
  75. skip_download: Skip the actual download of the video file
  76. cachedir: Location of the cache files in the filesystem.
  77. None to disable filesystem cache.
  78. noplaylist: Download single video instead of a playlist if in doubt.
  79. age_limit: An integer representing the user's age in years.
  80. Unsuitable videos for the given age are skipped.
  81. downloadarchive: File name of a file where all downloads are recorded.
  82. Videos already present in the file are not downloaded
  83. again.
  84. The following parameters are not used by YoutubeDL itself, they are used by
  85. the FileDownloader:
  86. nopart, updatetime, buffersize, ratelimit, min_filesize, max_filesize, test,
  87. noresizebuffer, retries, continuedl, noprogress, consoletitle
  88. """
  89. params = None
  90. _ies = []
  91. _pps = []
  92. _download_retcode = None
  93. _num_downloads = None
  94. _screen_file = None
  95. def __init__(self, params):
  96. """Create a FileDownloader object with the given options."""
  97. self._ies = []
  98. self._ies_instances = {}
  99. self._pps = []
  100. self._progress_hooks = []
  101. self._download_retcode = 0
  102. self._num_downloads = 0
  103. self._screen_file = [sys.stdout, sys.stderr][params.get('logtostderr', False)]
  104. if (sys.version_info >= (3,) and sys.platform != 'win32' and
  105. sys.getfilesystemencoding() in ['ascii', 'ANSI_X3.4-1968']
  106. and not params['restrictfilenames']):
  107. # On Python 3, the Unicode filesystem API will throw errors (#1474)
  108. self.report_warning(
  109. u'Assuming --restrict-filenames since file system encoding '
  110. u'cannot encode all charactes. '
  111. u'Set the LC_ALL environment variable to fix this.')
  112. params['restrictfilenames'] = True
  113. self.params = params
  114. self.fd = FileDownloader(self, self.params)
  115. if '%(stitle)s' in self.params['outtmpl']:
  116. self.report_warning(u'%(stitle)s is deprecated. Use the %(title)s and the --restrict-filenames flag(which also secures %(uploader)s et al) instead.')
  117. def add_info_extractor(self, ie):
  118. """Add an InfoExtractor object to the end of the list."""
  119. self._ies.append(ie)
  120. self._ies_instances[ie.ie_key()] = ie
  121. ie.set_downloader(self)
  122. def get_info_extractor(self, ie_key):
  123. """
  124. Get an instance of an IE with name ie_key, it will try to get one from
  125. the _ies list, if there's no instance it will create a new one and add
  126. it to the extractor list.
  127. """
  128. ie = self._ies_instances.get(ie_key)
  129. if ie is None:
  130. ie = get_info_extractor(ie_key)()
  131. self.add_info_extractor(ie)
  132. return ie
  133. def add_default_info_extractors(self):
  134. """
  135. Add the InfoExtractors returned by gen_extractors to the end of the list
  136. """
  137. for ie in gen_extractors():
  138. self.add_info_extractor(ie)
  139. def add_post_processor(self, pp):
  140. """Add a PostProcessor object to the end of the chain."""
  141. self._pps.append(pp)
  142. pp.set_downloader(self)
  143. def to_screen(self, message, skip_eol=False):
  144. """Print message to stdout if not in quiet mode."""
  145. if not self.params.get('quiet', False):
  146. terminator = [u'\n', u''][skip_eol]
  147. output = message + terminator
  148. write_string(output, self._screen_file)
  149. def to_stderr(self, message):
  150. """Print message to stderr."""
  151. assert type(message) == type(u'')
  152. output = message + u'\n'
  153. if 'b' in getattr(self._screen_file, 'mode', '') or sys.version_info[0] < 3: # Python 2 lies about the mode of sys.stdout/sys.stderr
  154. output = output.encode(preferredencoding())
  155. sys.stderr.write(output)
  156. def fixed_template(self):
  157. """Checks if the output template is fixed."""
  158. return (re.search(u'(?u)%\\(.+?\\)s', self.params['outtmpl']) is None)
  159. def trouble(self, message=None, tb=None):
  160. """Determine action to take when a download problem appears.
  161. Depending on if the downloader has been configured to ignore
  162. download errors or not, this method may throw an exception or
  163. not when errors are found, after printing the message.
  164. tb, if given, is additional traceback information.
  165. """
  166. if message is not None:
  167. self.to_stderr(message)
  168. if self.params.get('verbose'):
  169. if tb is None:
  170. if sys.exc_info()[0]: # if .trouble has been called from an except block
  171. tb = u''
  172. if hasattr(sys.exc_info()[1], 'exc_info') and sys.exc_info()[1].exc_info[0]:
  173. tb += u''.join(traceback.format_exception(*sys.exc_info()[1].exc_info))
  174. tb += compat_str(traceback.format_exc())
  175. else:
  176. tb_data = traceback.format_list(traceback.extract_stack())
  177. tb = u''.join(tb_data)
  178. self.to_stderr(tb)
  179. if not self.params.get('ignoreerrors', False):
  180. if sys.exc_info()[0] and hasattr(sys.exc_info()[1], 'exc_info') and sys.exc_info()[1].exc_info[0]:
  181. exc_info = sys.exc_info()[1].exc_info
  182. else:
  183. exc_info = sys.exc_info()
  184. raise DownloadError(message, exc_info)
  185. self._download_retcode = 1
  186. def report_warning(self, message):
  187. '''
  188. Print the message to stderr, it will be prefixed with 'WARNING:'
  189. If stderr is a tty file the 'WARNING:' will be colored
  190. '''
  191. if sys.stderr.isatty() and os.name != 'nt':
  192. _msg_header = u'\033[0;33mWARNING:\033[0m'
  193. else:
  194. _msg_header = u'WARNING:'
  195. warning_message = u'%s %s' % (_msg_header, message)
  196. self.to_stderr(warning_message)
  197. def report_error(self, message, tb=None):
  198. '''
  199. Do the same as trouble, but prefixes the message with 'ERROR:', colored
  200. in red if stderr is a tty file.
  201. '''
  202. if sys.stderr.isatty() and os.name != 'nt':
  203. _msg_header = u'\033[0;31mERROR:\033[0m'
  204. else:
  205. _msg_header = u'ERROR:'
  206. error_message = u'%s %s' % (_msg_header, message)
  207. self.trouble(error_message, tb)
  208. def report_writedescription(self, descfn):
  209. """ Report that the description file is being written """
  210. self.to_screen(u'[info] Writing video description to: ' + descfn)
  211. def report_writesubtitles(self, sub_filename):
  212. """ Report that the subtitles file is being written """
  213. self.to_screen(u'[info] Writing video subtitles to: ' + sub_filename)
  214. def report_writeinfojson(self, infofn):
  215. """ Report that the metadata file has been written """
  216. self.to_screen(u'[info] Video description metadata as JSON to: ' + infofn)
  217. def report_writeannotations(self, annofn):
  218. """ Report that the annotations file has been written. """
  219. self.to_screen(u'[info] Writing video annotations to: ' + annofn)
  220. def report_file_already_downloaded(self, file_name):
  221. """Report file has already been fully downloaded."""
  222. try:
  223. self.to_screen(u'[download] %s has already been downloaded' % file_name)
  224. except (UnicodeEncodeError) as err:
  225. self.to_screen(u'[download] The file has already been downloaded')
  226. def increment_downloads(self):
  227. """Increment the ordinal that assigns a number to each file."""
  228. self._num_downloads += 1
  229. def prepare_filename(self, info_dict):
  230. """Generate the output filename."""
  231. try:
  232. template_dict = dict(info_dict)
  233. template_dict['epoch'] = int(time.time())
  234. autonumber_size = self.params.get('autonumber_size')
  235. if autonumber_size is None:
  236. autonumber_size = 5
  237. autonumber_templ = u'%0' + str(autonumber_size) + u'd'
  238. template_dict['autonumber'] = autonumber_templ % self._num_downloads
  239. if template_dict.get('playlist_index') is not None:
  240. template_dict['playlist_index'] = u'%05d' % template_dict['playlist_index']
  241. sanitize = lambda k, v: sanitize_filename(
  242. u'NA' if v is None else compat_str(v),
  243. restricted=self.params.get('restrictfilenames'),
  244. is_id=(k == u'id'))
  245. template_dict = dict((k, sanitize(k, v))
  246. for k, v in template_dict.items())
  247. tmpl = os.path.expanduser(self.params['outtmpl'])
  248. filename = tmpl % template_dict
  249. return filename
  250. except KeyError as err:
  251. self.report_error(u'Erroneous output template')
  252. return None
  253. except ValueError as err:
  254. self.report_error(u'Error in output template: ' + str(err) + u' (encoding: ' + repr(preferredencoding()) + ')')
  255. return None
  256. def _match_entry(self, info_dict):
  257. """ Returns None iff the file should be downloaded """
  258. title = info_dict['title']
  259. matchtitle = self.params.get('matchtitle', False)
  260. if matchtitle:
  261. if not re.search(matchtitle, title, re.IGNORECASE):
  262. return u'[download] "' + title + '" title did not match pattern "' + matchtitle + '"'
  263. rejecttitle = self.params.get('rejecttitle', False)
  264. if rejecttitle:
  265. if re.search(rejecttitle, title, re.IGNORECASE):
  266. return u'"' + title + '" title matched reject pattern "' + rejecttitle + '"'
  267. date = info_dict.get('upload_date', None)
  268. if date is not None:
  269. dateRange = self.params.get('daterange', DateRange())
  270. if date not in dateRange:
  271. return u'[download] %s upload date is not in range %s' % (date_from_str(date).isoformat(), dateRange)
  272. age_limit = self.params.get('age_limit')
  273. if age_limit is not None:
  274. if age_limit < info_dict.get('age_limit', 0):
  275. return u'Skipping "' + title + '" because it is age restricted'
  276. if self.in_download_archive(info_dict):
  277. return (u'%(title)s has already been recorded in archive'
  278. % info_dict)
  279. return None
  280. def extract_info(self, url, download=True, ie_key=None, extra_info={}):
  281. '''
  282. Returns a list with a dictionary for each video we find.
  283. If 'download', also downloads the videos.
  284. extra_info is a dict containing the extra values to add to each result
  285. '''
  286. if ie_key:
  287. ies = [self.get_info_extractor(ie_key)]
  288. else:
  289. ies = self._ies
  290. for ie in ies:
  291. if not ie.suitable(url):
  292. continue
  293. if not ie.working():
  294. self.report_warning(u'The program functionality for this site has been marked as broken, '
  295. u'and will probably not work.')
  296. try:
  297. ie_result = ie.extract(url)
  298. if ie_result is None: # Finished already (backwards compatibility; listformats and friends should be moved here)
  299. break
  300. if isinstance(ie_result, list):
  301. # Backwards compatibility: old IE result format
  302. for result in ie_result:
  303. result.update(extra_info)
  304. ie_result = {
  305. '_type': 'compat_list',
  306. 'entries': ie_result,
  307. }
  308. else:
  309. ie_result.update(extra_info)
  310. if 'extractor' not in ie_result:
  311. ie_result['extractor'] = ie.IE_NAME
  312. return self.process_ie_result(ie_result, download=download)
  313. except ExtractorError as de: # An error we somewhat expected
  314. self.report_error(compat_str(de), de.format_traceback())
  315. break
  316. except Exception as e:
  317. if self.params.get('ignoreerrors', False):
  318. self.report_error(compat_str(e), tb=compat_str(traceback.format_exc()))
  319. break
  320. else:
  321. raise
  322. else:
  323. self.report_error(u'no suitable InfoExtractor: %s' % url)
  324. def process_ie_result(self, ie_result, download=True, extra_info={}):
  325. """
  326. Take the result of the ie(may be modified) and resolve all unresolved
  327. references (URLs, playlist items).
  328. It will also download the videos if 'download'.
  329. Returns the resolved ie_result.
  330. """
  331. result_type = ie_result.get('_type', 'video') # If not given we suppose it's a video, support the default old system
  332. if result_type == 'video':
  333. ie_result.update(extra_info)
  334. return self.process_video_result(ie_result)
  335. elif result_type == 'url':
  336. # We have to add extra_info to the results because it may be
  337. # contained in a playlist
  338. return self.extract_info(ie_result['url'],
  339. download,
  340. ie_key=ie_result.get('ie_key'),
  341. extra_info=extra_info)
  342. elif result_type == 'playlist':
  343. # We process each entry in the playlist
  344. playlist = ie_result.get('title', None) or ie_result.get('id', None)
  345. self.to_screen(u'[download] Downloading playlist: %s' % playlist)
  346. playlist_results = []
  347. n_all_entries = len(ie_result['entries'])
  348. playliststart = self.params.get('playliststart', 1) - 1
  349. playlistend = self.params.get('playlistend', -1)
  350. if playlistend == -1:
  351. entries = ie_result['entries'][playliststart:]
  352. else:
  353. entries = ie_result['entries'][playliststart:playlistend]
  354. n_entries = len(entries)
  355. self.to_screen(u"[%s] playlist '%s': Collected %d video ids (downloading %d of them)" %
  356. (ie_result['extractor'], playlist, n_all_entries, n_entries))
  357. for i, entry in enumerate(entries, 1):
  358. self.to_screen(u'[download] Downloading video #%s of %s' % (i, n_entries))
  359. extra = {
  360. 'playlist': playlist,
  361. 'playlist_index': i + playliststart,
  362. }
  363. if not 'extractor' in entry:
  364. # We set the extractor, if it's an url it will be set then to
  365. # the new extractor, but if it's already a video we must make
  366. # sure it's present: see issue #877
  367. entry['extractor'] = ie_result['extractor']
  368. entry_result = self.process_ie_result(entry,
  369. download=download,
  370. extra_info=extra)
  371. playlist_results.append(entry_result)
  372. ie_result['entries'] = playlist_results
  373. return ie_result
  374. elif result_type == 'compat_list':
  375. def _fixup(r):
  376. r.setdefault('extractor', ie_result['extractor'])
  377. return r
  378. ie_result['entries'] = [
  379. self.process_ie_result(_fixup(r), download=download)
  380. for r in ie_result['entries']
  381. ]
  382. return ie_result
  383. else:
  384. raise Exception('Invalid result type: %s' % result_type)
  385. def select_format(self, format_spec, available_formats):
  386. if format_spec == 'best' or format_spec is None:
  387. return available_formats[-1]
  388. elif format_spec == 'worst':
  389. return available_formats[0]
  390. else:
  391. extensions = [u'mp4', u'flv', u'webm', u'3gp']
  392. if format_spec in extensions:
  393. filter_f = lambda f: f['ext'] == format_spec
  394. else:
  395. filter_f = lambda f: f['format_id'] == format_spec
  396. matches = list(filter(filter_f, available_formats))
  397. if matches:
  398. return matches[-1]
  399. return None
  400. def process_video_result(self, info_dict, download=True):
  401. assert info_dict.get('_type', 'video') == 'video'
  402. if 'playlist' not in info_dict:
  403. # It isn't part of a playlist
  404. info_dict['playlist'] = None
  405. info_dict['playlist_index'] = None
  406. # This extractors handle format selection themselves
  407. if info_dict['extractor'] in [u'youtube', u'Youku']:
  408. if download:
  409. self.process_info(info_dict)
  410. return info_dict
  411. # We now pick which formats have to be downloaded
  412. if info_dict.get('formats') is None:
  413. # There's only one format available
  414. formats = [info_dict]
  415. else:
  416. formats = info_dict['formats']
  417. # We check that all the formats have the format and format_id fields
  418. for (i, format) in enumerate(formats):
  419. if format.get('format_id') is None:
  420. format['format_id'] = compat_str(i)
  421. if format.get('format') is None:
  422. format['format'] = u'{id} - {res}{note}'.format(
  423. id=format['format_id'],
  424. res=self.format_resolution(format),
  425. note=u' ({0})'.format(format['format_note']) if format.get('format_note') is not None else '',
  426. )
  427. # Automatically determine file extension if missing
  428. if 'ext' not in format:
  429. format['ext'] = determine_ext(format['url'])
  430. if self.params.get('listformats', None):
  431. self.list_formats(info_dict)
  432. return
  433. format_limit = self.params.get('format_limit', None)
  434. if format_limit:
  435. formats = list(takewhile_inclusive(
  436. lambda f: f['format_id'] != format_limit, formats
  437. ))
  438. if self.params.get('prefer_free_formats'):
  439. def _free_formats_key(f):
  440. try:
  441. ext_ord = [u'flv', u'mp4', u'webm'].index(f['ext'])
  442. except ValueError:
  443. ext_ord = -1
  444. # We only compare the extension if they have the same height and width
  445. return (f.get('height'), f.get('width'), ext_ord)
  446. formats = sorted(formats, key=_free_formats_key)
  447. req_format = self.params.get('format', 'best')
  448. if req_format is None:
  449. req_format = 'best'
  450. formats_to_download = []
  451. # The -1 is for supporting YoutubeIE
  452. if req_format in ('-1', 'all'):
  453. formats_to_download = formats
  454. else:
  455. # We can accept formats requestd in the format: 34/5/best, we pick
  456. # the first that is available, starting from left
  457. req_formats = req_format.split('/')
  458. for rf in req_formats:
  459. selected_format = self.select_format(rf, formats)
  460. if selected_format is not None:
  461. formats_to_download = [selected_format]
  462. break
  463. if not formats_to_download:
  464. raise ExtractorError(u'requested format not available',
  465. expected=True)
  466. if download:
  467. if len(formats_to_download) > 1:
  468. self.to_screen(u'[info] %s: downloading video in %s formats' % (info_dict['id'], len(formats_to_download)))
  469. for format in formats_to_download:
  470. new_info = dict(info_dict)
  471. new_info.update(format)
  472. self.process_info(new_info)
  473. # We update the info dict with the best quality format (backwards compatibility)
  474. info_dict.update(formats_to_download[-1])
  475. return info_dict
  476. def process_info(self, info_dict):
  477. """Process a single resolved IE result."""
  478. assert info_dict.get('_type', 'video') == 'video'
  479. #We increment the download the download count here to match the previous behaviour.
  480. self.increment_downloads()
  481. info_dict['fulltitle'] = info_dict['title']
  482. if len(info_dict['title']) > 200:
  483. info_dict['title'] = info_dict['title'][:197] + u'...'
  484. # Keep for backwards compatibility
  485. info_dict['stitle'] = info_dict['title']
  486. if not 'format' in info_dict:
  487. info_dict['format'] = info_dict['ext']
  488. reason = self._match_entry(info_dict)
  489. if reason is not None:
  490. self.to_screen(u'[download] ' + reason)
  491. return
  492. max_downloads = self.params.get('max_downloads')
  493. if max_downloads is not None:
  494. if self._num_downloads > int(max_downloads):
  495. raise MaxDownloadsReached()
  496. filename = self.prepare_filename(info_dict)
  497. # Forced printings
  498. if self.params.get('forcetitle', False):
  499. compat_print(info_dict['title'])
  500. if self.params.get('forceid', False):
  501. compat_print(info_dict['id'])
  502. if self.params.get('forceurl', False):
  503. # For RTMP URLs, also include the playpath
  504. compat_print(info_dict['url'] + info_dict.get('play_path', u''))
  505. if self.params.get('forcethumbnail', False) and info_dict.get('thumbnail') is not None:
  506. compat_print(info_dict['thumbnail'])
  507. if self.params.get('forcedescription', False) and info_dict.get('description') is not None:
  508. compat_print(info_dict['description'])
  509. if self.params.get('forcefilename', False) and filename is not None:
  510. compat_print(filename)
  511. if self.params.get('forceformat', False):
  512. compat_print(info_dict['format'])
  513. # Do nothing else if in simulate mode
  514. if self.params.get('simulate', False):
  515. return
  516. if filename is None:
  517. return
  518. try:
  519. dn = os.path.dirname(encodeFilename(filename))
  520. if dn != '' and not os.path.exists(dn):
  521. os.makedirs(dn)
  522. except (OSError, IOError) as err:
  523. self.report_error(u'unable to create directory ' + compat_str(err))
  524. return
  525. if self.params.get('writedescription', False):
  526. try:
  527. descfn = filename + u'.description'
  528. self.report_writedescription(descfn)
  529. with io.open(encodeFilename(descfn), 'w', encoding='utf-8') as descfile:
  530. descfile.write(info_dict['description'])
  531. except (KeyError, TypeError):
  532. self.report_warning(u'There\'s no description to write.')
  533. except (OSError, IOError):
  534. self.report_error(u'Cannot write description file ' + descfn)
  535. return
  536. if self.params.get('writeannotations', False):
  537. try:
  538. annofn = filename + u'.annotations.xml'
  539. self.report_writeannotations(annofn)
  540. with io.open(encodeFilename(annofn), 'w', encoding='utf-8') as annofile:
  541. annofile.write(info_dict['annotations'])
  542. except (KeyError, TypeError):
  543. self.report_warning(u'There are no annotations to write.')
  544. except (OSError, IOError):
  545. self.report_error(u'Cannot write annotations file: ' + annofn)
  546. return
  547. subtitles_are_requested = any([self.params.get('writesubtitles', False),
  548. self.params.get('writeautomaticsub')])
  549. if subtitles_are_requested and 'subtitles' in info_dict and info_dict['subtitles']:
  550. # subtitles download errors are already managed as troubles in relevant IE
  551. # that way it will silently go on when used with unsupporting IE
  552. subtitles = info_dict['subtitles']
  553. sub_format = self.params.get('subtitlesformat')
  554. for sub_lang in subtitles.keys():
  555. sub = subtitles[sub_lang]
  556. if sub is None:
  557. continue
  558. try:
  559. sub_filename = subtitles_filename(filename, sub_lang, sub_format)
  560. self.report_writesubtitles(sub_filename)
  561. with io.open(encodeFilename(sub_filename), 'w', encoding='utf-8') as subfile:
  562. subfile.write(sub)
  563. except (OSError, IOError):
  564. self.report_error(u'Cannot write subtitles file ' + descfn)
  565. return
  566. if self.params.get('writeinfojson', False):
  567. infofn = filename + u'.info.json'
  568. self.report_writeinfojson(infofn)
  569. try:
  570. json_info_dict = dict((k, v) for k, v in info_dict.items() if not k in ['urlhandle'])
  571. write_json_file(json_info_dict, encodeFilename(infofn))
  572. except (OSError, IOError):
  573. self.report_error(u'Cannot write metadata to JSON file ' + infofn)
  574. return
  575. if self.params.get('writethumbnail', False):
  576. if info_dict.get('thumbnail') is not None:
  577. thumb_format = determine_ext(info_dict['thumbnail'], u'jpg')
  578. thumb_filename = filename.rpartition('.')[0] + u'.' + thumb_format
  579. self.to_screen(u'[%s] %s: Downloading thumbnail ...' %
  580. (info_dict['extractor'], info_dict['id']))
  581. try:
  582. uf = compat_urllib_request.urlopen(info_dict['thumbnail'])
  583. with open(thumb_filename, 'wb') as thumbf:
  584. shutil.copyfileobj(uf, thumbf)
  585. self.to_screen(u'[%s] %s: Writing thumbnail to: %s' %
  586. (info_dict['extractor'], info_dict['id'], thumb_filename))
  587. except (compat_urllib_error.URLError, compat_http_client.HTTPException, socket.error) as err:
  588. self.report_warning(u'Unable to download thumbnail "%s": %s' %
  589. (info_dict['thumbnail'], compat_str(err)))
  590. if not self.params.get('skip_download', False):
  591. if self.params.get('nooverwrites', False) and os.path.exists(encodeFilename(filename)):
  592. success = True
  593. else:
  594. try:
  595. success = self.fd._do_download(filename, info_dict)
  596. except (compat_urllib_error.URLError, compat_http_client.HTTPException, socket.error) as err:
  597. self.report_error(u'unable to download video data: %s' % str(err))
  598. return
  599. except (OSError, IOError) as err:
  600. raise UnavailableVideoError(err)
  601. except (ContentTooShortError, ) as err:
  602. self.report_error(u'content too short (expected %s bytes and served %s)' % (err.expected, err.downloaded))
  603. return
  604. if success:
  605. try:
  606. self.post_process(filename, info_dict)
  607. except (PostProcessingError) as err:
  608. self.report_error(u'postprocessing: %s' % str(err))
  609. return
  610. self.record_download_archive(info_dict)
  611. def download(self, url_list):
  612. """Download a given list of URLs."""
  613. if len(url_list) > 1 and self.fixed_template():
  614. raise SameFileError(self.params['outtmpl'])
  615. for url in url_list:
  616. try:
  617. #It also downloads the videos
  618. videos = self.extract_info(url)
  619. except UnavailableVideoError:
  620. self.report_error(u'unable to download video')
  621. except MaxDownloadsReached:
  622. self.to_screen(u'[info] Maximum number of downloaded files reached.')
  623. raise
  624. return self._download_retcode
  625. def post_process(self, filename, ie_info):
  626. """Run all the postprocessors on the given file."""
  627. info = dict(ie_info)
  628. info['filepath'] = filename
  629. keep_video = None
  630. for pp in self._pps:
  631. try:
  632. keep_video_wish, new_info = pp.run(info)
  633. if keep_video_wish is not None:
  634. if keep_video_wish:
  635. keep_video = keep_video_wish
  636. elif keep_video is None:
  637. # No clear decision yet, let IE decide
  638. keep_video = keep_video_wish
  639. except PostProcessingError as e:
  640. self.report_error(e.msg)
  641. if keep_video is False and not self.params.get('keepvideo', False):
  642. try:
  643. self.to_screen(u'Deleting original file %s (pass -k to keep)' % filename)
  644. os.remove(encodeFilename(filename))
  645. except (IOError, OSError):
  646. self.report_warning(u'Unable to remove downloaded video file')
  647. def in_download_archive(self, info_dict):
  648. fn = self.params.get('download_archive')
  649. if fn is None:
  650. return False
  651. vid_id = info_dict['extractor'] + u' ' + info_dict['id']
  652. try:
  653. with locked_file(fn, 'r', encoding='utf-8') as archive_file:
  654. for line in archive_file:
  655. if line.strip() == vid_id:
  656. return True
  657. except IOError as ioe:
  658. if ioe.errno != errno.ENOENT:
  659. raise
  660. return False
  661. def record_download_archive(self, info_dict):
  662. fn = self.params.get('download_archive')
  663. if fn is None:
  664. return
  665. vid_id = info_dict['extractor'] + u' ' + info_dict['id']
  666. with locked_file(fn, 'a', encoding='utf-8') as archive_file:
  667. archive_file.write(vid_id + u'\n')
  668. @staticmethod
  669. def format_resolution(format, default='unknown'):
  670. if format.get('_resolution') is not None:
  671. return format['_resolution']
  672. if format.get('height') is not None:
  673. if format.get('width') is not None:
  674. res = u'%sx%s' % (format['width'], format['height'])
  675. else:
  676. res = u'%sp' % format['height']
  677. else:
  678. res = default
  679. return res
  680. def list_formats(self, info_dict):
  681. def line(format):
  682. return (u'%-15s%-10s%-12s%s' % (
  683. format['format_id'],
  684. format['ext'],
  685. self.format_resolution(format),
  686. format.get('format_note', ''),
  687. )
  688. )
  689. formats = info_dict.get('formats', [info_dict])
  690. formats_s = list(map(line, formats))
  691. if len(formats) > 1:
  692. formats_s[0] += (' ' if formats[0].get('format_note') else '') + '(worst)'
  693. formats_s[-1] += (' ' if formats[-1].get('format_note') else '') + '(best)'
  694. header_line = line({
  695. 'format_id': u'format code', 'ext': u'extension',
  696. '_resolution': u'resolution', 'format_note': u'note'})
  697. self.to_screen(u'[info] Available formats for %s:\n%s\n%s' %
  698. (info_dict['id'], header_line, u"\n".join(formats_s)))