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.

901 lines
38 KiB

  1. #!/usr/bin/env python
  2. # -*- coding: utf-8 -*-
  3. from __future__ import absolute_import
  4. import math
  5. import io
  6. import os
  7. import re
  8. import socket
  9. import subprocess
  10. import sys
  11. import time
  12. import traceback
  13. if os.name == 'nt':
  14. import ctypes
  15. from .utils import *
  16. class FileDownloader(object):
  17. """File Downloader class.
  18. File downloader 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, file downloader objects have a method that allows
  25. InfoExtractors to be registered in a given order. When it is passed
  26. a URL, the file downloader 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. asks the FileDownloader to process the video information, possibly
  30. downloading the video.
  31. File downloaders 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 FileDownloader 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. usenetrc: Use netrc for authentication instead.
  41. quiet: Do not print messages to stdout.
  42. forceurl: Force printing final URL.
  43. forcetitle: Force printing title.
  44. forcethumbnail: Force printing thumbnail URL.
  45. forcedescription: Force printing description.
  46. forcefilename: Force printing final filename.
  47. simulate: Do not download the video files.
  48. format: Video format code.
  49. format_limit: Highest quality format to try.
  50. outtmpl: Template for output names.
  51. restrictfilenames: Do not allow "&" and spaces in file names
  52. ignoreerrors: Do not stop on download errors.
  53. ratelimit: Download speed limit, in bytes/sec.
  54. nooverwrites: Prevent overwriting files.
  55. retries: Number of times to retry for HTTP error 5xx
  56. buffersize: Size of download buffer in bytes.
  57. noresizebuffer: Do not automatically resize the download buffer.
  58. continuedl: Try to continue downloads if possible.
  59. noprogress: Do not print the progress bar.
  60. playliststart: Playlist item to start at.
  61. playlistend: Playlist item to end at.
  62. matchtitle: Download only matching titles.
  63. rejecttitle: Reject downloads for matching titles.
  64. logtostderr: Log messages to stderr instead of stdout.
  65. consoletitle: Display progress in console window's titlebar.
  66. nopart: Do not use temporary .part files.
  67. updatetime: Use the Last-modified header to set output file timestamps.
  68. writedescription: Write the video description to a .description file
  69. writeinfojson: Write the video description to a .info.json file
  70. writesubtitles: Write the video subtitles to a file
  71. onlysubtitles: Downloads only the subtitles of the video
  72. allsubtitles: Downloads all the subtitles of the video
  73. listsubtitles: Lists all available subtitles for the video
  74. subtitlesformat: Subtitle format [sbv/srt] (default=srt)
  75. subtitleslang: Language of the subtitles to download
  76. test: Download only first bytes to test the downloader.
  77. keepvideo: Keep the video file after post-processing
  78. min_filesize: Skip files smaller than this size
  79. max_filesize: Skip files larger than this size
  80. """
  81. params = None
  82. _ies = []
  83. _pps = []
  84. _download_retcode = None
  85. _num_downloads = None
  86. _screen_file = None
  87. def __init__(self, params):
  88. """Create a FileDownloader object with the given options."""
  89. self._ies = []
  90. self._pps = []
  91. self._progress_hooks = []
  92. self._download_retcode = 0
  93. self._num_downloads = 0
  94. self._screen_file = [sys.stdout, sys.stderr][params.get('logtostderr', False)]
  95. self.params = params
  96. if '%(stitle)s' in self.params['outtmpl']:
  97. 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.')
  98. @staticmethod
  99. def format_bytes(bytes):
  100. if bytes is None:
  101. return 'N/A'
  102. if type(bytes) is str:
  103. bytes = float(bytes)
  104. if bytes == 0.0:
  105. exponent = 0
  106. else:
  107. exponent = int(math.log(bytes, 1024.0))
  108. suffix = 'bkMGTPEZY'[exponent]
  109. converted = float(bytes) / float(1024 ** exponent)
  110. return '%.2f%s' % (converted, suffix)
  111. @staticmethod
  112. def calc_percent(byte_counter, data_len):
  113. if data_len is None:
  114. return '---.-%'
  115. return '%6s' % ('%3.1f%%' % (float(byte_counter) / float(data_len) * 100.0))
  116. @staticmethod
  117. def calc_eta(start, now, total, current):
  118. if total is None:
  119. return '--:--'
  120. dif = now - start
  121. if current == 0 or dif < 0.001: # One millisecond
  122. return '--:--'
  123. rate = float(current) / dif
  124. eta = int((float(total) - float(current)) / rate)
  125. (eta_mins, eta_secs) = divmod(eta, 60)
  126. if eta_mins > 99:
  127. return '--:--'
  128. return '%02d:%02d' % (eta_mins, eta_secs)
  129. @staticmethod
  130. def calc_speed(start, now, bytes):
  131. dif = now - start
  132. if bytes == 0 or dif < 0.001: # One millisecond
  133. return '%10s' % '---b/s'
  134. return '%10s' % ('%s/s' % FileDownloader.format_bytes(float(bytes) / dif))
  135. @staticmethod
  136. def best_block_size(elapsed_time, bytes):
  137. new_min = max(bytes / 2.0, 1.0)
  138. new_max = min(max(bytes * 2.0, 1.0), 4194304) # Do not surpass 4 MB
  139. if elapsed_time < 0.001:
  140. return int(new_max)
  141. rate = bytes / elapsed_time
  142. if rate > new_max:
  143. return int(new_max)
  144. if rate < new_min:
  145. return int(new_min)
  146. return int(rate)
  147. @staticmethod
  148. def parse_bytes(bytestr):
  149. """Parse a string indicating a byte quantity into an integer."""
  150. matchobj = re.match(r'(?i)^(\d+(?:\.\d+)?)([kMGTPEZY]?)$', bytestr)
  151. if matchobj is None:
  152. return None
  153. number = float(matchobj.group(1))
  154. multiplier = 1024.0 ** 'bkmgtpezy'.index(matchobj.group(2).lower())
  155. return int(round(number * multiplier))
  156. def add_info_extractor(self, ie):
  157. """Add an InfoExtractor object to the end of the list."""
  158. self._ies.append(ie)
  159. ie.set_downloader(self)
  160. def add_post_processor(self, pp):
  161. """Add a PostProcessor object to the end of the chain."""
  162. self._pps.append(pp)
  163. pp.set_downloader(self)
  164. def to_screen(self, message, skip_eol=False):
  165. """Print message to stdout if not in quiet mode."""
  166. assert type(message) == type(u'')
  167. if not self.params.get('quiet', False):
  168. terminator = [u'\n', u''][skip_eol]
  169. output = message + terminator
  170. 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
  171. output = output.encode(preferredencoding(), 'ignore')
  172. self._screen_file.write(output)
  173. self._screen_file.flush()
  174. def to_stderr(self, message):
  175. """Print message to stderr."""
  176. assert type(message) == type(u'')
  177. output = message + u'\n'
  178. 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
  179. output = output.encode(preferredencoding())
  180. sys.stderr.write(output)
  181. def to_cons_title(self, message):
  182. """Set console/terminal window title to message."""
  183. if not self.params.get('consoletitle', False):
  184. return
  185. if os.name == 'nt' and ctypes.windll.kernel32.GetConsoleWindow():
  186. # c_wchar_p() might not be necessary if `message` is
  187. # already of type unicode()
  188. ctypes.windll.kernel32.SetConsoleTitleW(ctypes.c_wchar_p(message))
  189. elif 'TERM' in os.environ:
  190. self.to_screen('\033]0;%s\007' % message, skip_eol=True)
  191. def fixed_template(self):
  192. """Checks if the output template is fixed."""
  193. return (re.search(u'(?u)%\\(.+?\\)s', self.params['outtmpl']) is None)
  194. def trouble(self, message=None, tb=None):
  195. """Determine action to take when a download problem appears.
  196. Depending on if the downloader has been configured to ignore
  197. download errors or not, this method may throw an exception or
  198. not when errors are found, after printing the message.
  199. tb, if given, is additional traceback information.
  200. """
  201. if message is not None:
  202. self.to_stderr(message)
  203. if self.params.get('verbose'):
  204. if tb is None:
  205. if sys.exc_info()[0]: # if .trouble has been called from an except block
  206. tb = u''
  207. if hasattr(sys.exc_info()[1], 'exc_info') and sys.exc_info()[1].exc_info[0]:
  208. tb += u''.join(traceback.format_exception(*sys.exc_info()[1].exc_info))
  209. tb += compat_str(traceback.format_exc())
  210. else:
  211. tb_data = traceback.format_list(traceback.extract_stack())
  212. tb = u''.join(tb_data)
  213. self.to_stderr(tb)
  214. if not self.params.get('ignoreerrors', False):
  215. if sys.exc_info()[0] and hasattr(sys.exc_info()[1], 'exc_info') and sys.exc_info()[1].exc_info[0]:
  216. exc_info = sys.exc_info()[1].exc_info
  217. else:
  218. exc_info = sys.exc_info()
  219. raise DownloadError(message, exc_info)
  220. self._download_retcode = 1
  221. def report_warning(self, message):
  222. '''
  223. Print the message to stderr, it will be prefixed with 'WARNING:'
  224. If stderr is a tty file the 'WARNING:' will be colored
  225. '''
  226. if sys.stderr.isatty():
  227. _msg_header=u'\033[0;33mWARNING:\033[0m'
  228. else:
  229. _msg_header=u'WARNING:'
  230. warning_message=u'%s %s' % (_msg_header,message)
  231. self.to_stderr(warning_message)
  232. def report_error(self, message, tb=None):
  233. '''
  234. Do the same as trouble, but prefixes the message with 'ERROR:', colored
  235. in red if stderr is a tty file.
  236. '''
  237. if sys.stderr.isatty():
  238. _msg_header = u'\033[0;31mERROR:\033[0m'
  239. else:
  240. _msg_header = u'ERROR:'
  241. error_message = u'%s %s' % (_msg_header, message)
  242. self.trouble(error_message, tb)
  243. def slow_down(self, start_time, byte_counter):
  244. """Sleep if the download speed is over the rate limit."""
  245. rate_limit = self.params.get('ratelimit', None)
  246. if rate_limit is None or byte_counter == 0:
  247. return
  248. now = time.time()
  249. elapsed = now - start_time
  250. if elapsed <= 0.0:
  251. return
  252. speed = float(byte_counter) / elapsed
  253. if speed > rate_limit:
  254. time.sleep((byte_counter - rate_limit * (now - start_time)) / rate_limit)
  255. def temp_name(self, filename):
  256. """Returns a temporary filename for the given filename."""
  257. if self.params.get('nopart', False) or filename == u'-' or \
  258. (os.path.exists(encodeFilename(filename)) and not os.path.isfile(encodeFilename(filename))):
  259. return filename
  260. return filename + u'.part'
  261. def undo_temp_name(self, filename):
  262. if filename.endswith(u'.part'):
  263. return filename[:-len(u'.part')]
  264. return filename
  265. def try_rename(self, old_filename, new_filename):
  266. try:
  267. if old_filename == new_filename:
  268. return
  269. os.rename(encodeFilename(old_filename), encodeFilename(new_filename))
  270. except (IOError, OSError) as err:
  271. self.report_error(u'unable to rename file')
  272. def try_utime(self, filename, last_modified_hdr):
  273. """Try to set the last-modified time of the given file."""
  274. if last_modified_hdr is None:
  275. return
  276. if not os.path.isfile(encodeFilename(filename)):
  277. return
  278. timestr = last_modified_hdr
  279. if timestr is None:
  280. return
  281. filetime = timeconvert(timestr)
  282. if filetime is None:
  283. return filetime
  284. try:
  285. os.utime(filename, (time.time(), filetime))
  286. except:
  287. pass
  288. return filetime
  289. def report_writedescription(self, descfn):
  290. """ Report that the description file is being written """
  291. self.to_screen(u'[info] Writing video description to: ' + descfn)
  292. def report_writesubtitles(self, sub_filename):
  293. """ Report that the subtitles file is being written """
  294. self.to_screen(u'[info] Writing video subtitles to: ' + sub_filename)
  295. def report_writeinfojson(self, infofn):
  296. """ Report that the metadata file has been written """
  297. self.to_screen(u'[info] Video description metadata as JSON to: ' + infofn)
  298. def report_destination(self, filename):
  299. """Report destination filename."""
  300. self.to_screen(u'[download] Destination: ' + filename)
  301. def report_progress(self, percent_str, data_len_str, speed_str, eta_str):
  302. """Report download progress."""
  303. if self.params.get('noprogress', False):
  304. return
  305. if self.params.get('progress_with_newline', False):
  306. self.to_screen(u'[download] %s of %s at %s ETA %s' %
  307. (percent_str, data_len_str, speed_str, eta_str))
  308. else:
  309. self.to_screen(u'\r[download] %s of %s at %s ETA %s' %
  310. (percent_str, data_len_str, speed_str, eta_str), skip_eol=True)
  311. self.to_cons_title(u'youtube-dl - %s of %s at %s ETA %s' %
  312. (percent_str.strip(), data_len_str.strip(), speed_str.strip(), eta_str.strip()))
  313. def report_resuming_byte(self, resume_len):
  314. """Report attempt to resume at given byte."""
  315. self.to_screen(u'[download] Resuming download at byte %s' % resume_len)
  316. def report_retry(self, count, retries):
  317. """Report retry in case of HTTP error 5xx"""
  318. self.to_screen(u'[download] Got server HTTP error. Retrying (attempt %d of %d)...' % (count, retries))
  319. def report_file_already_downloaded(self, file_name):
  320. """Report file has already been fully downloaded."""
  321. try:
  322. self.to_screen(u'[download] %s has already been downloaded' % file_name)
  323. except (UnicodeEncodeError) as err:
  324. self.to_screen(u'[download] The file has already been downloaded')
  325. def report_unable_to_resume(self):
  326. """Report it was impossible to resume download."""
  327. self.to_screen(u'[download] Unable to resume')
  328. def report_finish(self):
  329. """Report download finished."""
  330. if self.params.get('noprogress', False):
  331. self.to_screen(u'[download] Download completed')
  332. else:
  333. self.to_screen(u'')
  334. def increment_downloads(self):
  335. """Increment the ordinal that assigns a number to each file."""
  336. self._num_downloads += 1
  337. def prepare_filename(self, info_dict):
  338. """Generate the output filename."""
  339. try:
  340. template_dict = dict(info_dict)
  341. template_dict['epoch'] = int(time.time())
  342. autonumber_size = self.params.get('autonumber_size')
  343. if autonumber_size is None:
  344. autonumber_size = 5
  345. autonumber_templ = u'%0' + str(autonumber_size) + u'd'
  346. template_dict['autonumber'] = autonumber_templ % self._num_downloads
  347. sanitize = lambda k,v: sanitize_filename(
  348. u'NA' if v is None else compat_str(v),
  349. restricted=self.params.get('restrictfilenames'),
  350. is_id=(k==u'id'))
  351. template_dict = dict((k, sanitize(k, v)) for k,v in template_dict.items())
  352. filename = self.params['outtmpl'] % template_dict
  353. return filename
  354. except KeyError as err:
  355. self.trouble(u'ERROR: Erroneous output template')
  356. return None
  357. except ValueError as err:
  358. self.trouble(u'ERROR: Insufficient system charset ' + repr(preferredencoding()))
  359. return None
  360. def _match_entry(self, info_dict):
  361. """ Returns None iff the file should be downloaded """
  362. title = info_dict['title']
  363. matchtitle = self.params.get('matchtitle', False)
  364. if matchtitle:
  365. if not re.search(matchtitle, title, re.IGNORECASE):
  366. return u'[download] "' + title + '" title did not match pattern "' + matchtitle + '"'
  367. rejecttitle = self.params.get('rejecttitle', False)
  368. if rejecttitle:
  369. if re.search(rejecttitle, title, re.IGNORECASE):
  370. return u'"' + title + '" title matched reject pattern "' + rejecttitle + '"'
  371. return None
  372. def process_info(self, info_dict):
  373. """Process a single dictionary returned by an InfoExtractor."""
  374. # Keep for backwards compatibility
  375. info_dict['stitle'] = info_dict['title']
  376. if not 'format' in info_dict:
  377. info_dict['format'] = info_dict['ext']
  378. reason = self._match_entry(info_dict)
  379. if reason is not None:
  380. self.to_screen(u'[download] ' + reason)
  381. return
  382. max_downloads = self.params.get('max_downloads')
  383. if max_downloads is not None:
  384. if self._num_downloads > int(max_downloads):
  385. raise MaxDownloadsReached()
  386. filename = self.prepare_filename(info_dict)
  387. # Forced printings
  388. if self.params.get('forcetitle', False):
  389. compat_print(info_dict['title'])
  390. if self.params.get('forceurl', False):
  391. compat_print(info_dict['url'])
  392. if self.params.get('forcethumbnail', False) and 'thumbnail' in info_dict:
  393. compat_print(info_dict['thumbnail'])
  394. if self.params.get('forcedescription', False) and 'description' in info_dict:
  395. compat_print(info_dict['description'])
  396. if self.params.get('forcefilename', False) and filename is not None:
  397. compat_print(filename)
  398. if self.params.get('forceformat', False):
  399. compat_print(info_dict['format'])
  400. # Do nothing else if in simulate mode
  401. if self.params.get('simulate', False):
  402. return
  403. if filename is None:
  404. return
  405. try:
  406. dn = os.path.dirname(encodeFilename(filename))
  407. if dn != '' and not os.path.exists(dn): # dn is already encoded
  408. os.makedirs(dn)
  409. except (OSError, IOError) as err:
  410. self.report_error(u'unable to create directory ' + compat_str(err))
  411. return
  412. if self.params.get('writedescription', False):
  413. try:
  414. descfn = filename + u'.description'
  415. self.report_writedescription(descfn)
  416. with io.open(encodeFilename(descfn), 'w', encoding='utf-8') as descfile:
  417. descfile.write(info_dict['description'])
  418. except (OSError, IOError):
  419. self.report_error(u'Cannot write description file ' + descfn)
  420. return
  421. if self.params.get('writesubtitles', False) and 'subtitles' in info_dict and info_dict['subtitles']:
  422. # subtitles download errors are already managed as troubles in relevant IE
  423. # that way it will silently go on when used with unsupporting IE
  424. subtitle = info_dict['subtitles'][0]
  425. (sub_error, sub_lang, sub) = subtitle
  426. sub_format = self.params.get('subtitlesformat')
  427. if sub_error:
  428. self.report_warning("Some error while getting the subtitles")
  429. else:
  430. try:
  431. sub_filename = filename.rsplit('.', 1)[0] + u'.' + sub_lang + u'.' + sub_format
  432. self.report_writesubtitles(sub_filename)
  433. with io.open(encodeFilename(sub_filename), 'w', encoding='utf-8') as subfile:
  434. subfile.write(sub)
  435. except (OSError, IOError):
  436. self.report_error(u'Cannot write subtitles file ' + descfn)
  437. return
  438. if self.params.get('onlysubtitles', False):
  439. return
  440. if self.params.get('allsubtitles', False) and 'subtitles' in info_dict and info_dict['subtitles']:
  441. subtitles = info_dict['subtitles']
  442. sub_format = self.params.get('subtitlesformat')
  443. for subtitle in subtitles:
  444. (sub_error, sub_lang, sub) = subtitle
  445. if sub_error:
  446. self.report_warning("Some error while getting the subtitles")
  447. else:
  448. try:
  449. sub_filename = filename.rsplit('.', 1)[0] + u'.' + sub_lang + u'.' + sub_format
  450. self.report_writesubtitles(sub_filename)
  451. with io.open(encodeFilename(sub_filename), 'w', encoding='utf-8') as subfile:
  452. subfile.write(sub)
  453. except (OSError, IOError):
  454. self.trouble(u'ERROR: Cannot write subtitles file ' + descfn)
  455. return
  456. if self.params.get('onlysubtitles', False):
  457. return
  458. if self.params.get('writeinfojson', False):
  459. infofn = filename + u'.info.json'
  460. self.report_writeinfojson(infofn)
  461. try:
  462. json_info_dict = dict((k, v) for k,v in info_dict.items() if not k in ['urlhandle'])
  463. write_json_file(json_info_dict, encodeFilename(infofn))
  464. except (OSError, IOError):
  465. self.report_error(u'Cannot write metadata to JSON file ' + infofn)
  466. return
  467. if not self.params.get('skip_download', False):
  468. if self.params.get('nooverwrites', False) and os.path.exists(encodeFilename(filename)):
  469. success = True
  470. else:
  471. try:
  472. success = self._do_download(filename, info_dict)
  473. except (OSError, IOError) as err:
  474. raise UnavailableVideoError()
  475. except (compat_urllib_error.URLError, compat_http_client.HTTPException, socket.error) as err:
  476. self.report_error(u'unable to download video data: %s' % str(err))
  477. return
  478. except (ContentTooShortError, ) as err:
  479. self.report_error(u'content too short (expected %s bytes and served %s)' % (err.expected, err.downloaded))
  480. return
  481. if success:
  482. try:
  483. self.post_process(filename, info_dict)
  484. except (PostProcessingError) as err:
  485. self.report_error(u'postprocessing: %s' % str(err))
  486. return
  487. def download(self, url_list):
  488. """Download a given list of URLs."""
  489. if len(url_list) > 1 and self.fixed_template():
  490. raise SameFileError(self.params['outtmpl'])
  491. for url in url_list:
  492. suitable_found = False
  493. for ie in self._ies:
  494. # Go to next InfoExtractor if not suitable
  495. if not ie.suitable(url):
  496. continue
  497. # Warn if the _WORKING attribute is False
  498. if not ie.working():
  499. self.report_warning(u'the program functionality for this site has been marked as broken, '
  500. u'and will probably not work. If you want to go on, use the -i option.')
  501. # Suitable InfoExtractor found
  502. suitable_found = True
  503. # Extract information from URL and process it
  504. try:
  505. videos = ie.extract(url)
  506. except ExtractorError as de: # An error we somewhat expected
  507. self.trouble(u'ERROR: ' + compat_str(de), de.format_traceback())
  508. break
  509. except MaxDownloadsReached:
  510. self.to_screen(u'[info] Maximum number of downloaded files reached.')
  511. raise
  512. except Exception as e:
  513. if self.params.get('ignoreerrors', False):
  514. self.report_error(u'' + compat_str(e), tb=compat_str(traceback.format_exc()))
  515. break
  516. else:
  517. raise
  518. if len(videos or []) > 1 and self.fixed_template():
  519. raise SameFileError(self.params['outtmpl'])
  520. for video in videos or []:
  521. video['extractor'] = ie.IE_NAME
  522. try:
  523. self.increment_downloads()
  524. self.process_info(video)
  525. except UnavailableVideoError:
  526. self.to_stderr(u"\n")
  527. self.report_error(u'unable to download video')
  528. # Suitable InfoExtractor had been found; go to next URL
  529. break
  530. if not suitable_found:
  531. self.report_error(u'no suitable InfoExtractor: %s' % url)
  532. return self._download_retcode
  533. def post_process(self, filename, ie_info):
  534. """Run all the postprocessors on the given file."""
  535. info = dict(ie_info)
  536. info['filepath'] = filename
  537. keep_video = None
  538. for pp in self._pps:
  539. try:
  540. keep_video_wish,new_info = pp.run(info)
  541. if keep_video_wish is not None:
  542. if keep_video_wish:
  543. keep_video = keep_video_wish
  544. elif keep_video is None:
  545. # No clear decision yet, let IE decide
  546. keep_video = keep_video_wish
  547. except PostProcessingError as e:
  548. self.to_stderr(u'ERROR: ' + e.msg)
  549. if keep_video is False and not self.params.get('keepvideo', False):
  550. try:
  551. self.to_screen(u'Deleting original file %s (pass -k to keep)' % filename)
  552. os.remove(encodeFilename(filename))
  553. except (IOError, OSError):
  554. self.report_warning(u'Unable to remove downloaded video file')
  555. def _download_with_rtmpdump(self, filename, url, player_url, page_url, play_path):
  556. self.report_destination(filename)
  557. tmpfilename = self.temp_name(filename)
  558. # Check for rtmpdump first
  559. try:
  560. subprocess.call(['rtmpdump', '-h'], stdout=(open(os.path.devnull, 'w')), stderr=subprocess.STDOUT)
  561. except (OSError, IOError):
  562. self.report_error(u'RTMP download detected but "rtmpdump" could not be run')
  563. return False
  564. # Download using rtmpdump. rtmpdump returns exit code 2 when
  565. # the connection was interrumpted and resuming appears to be
  566. # possible. This is part of rtmpdump's normal usage, AFAIK.
  567. basic_args = ['rtmpdump', '-q', '-r', url, '-o', tmpfilename]
  568. if player_url is not None:
  569. basic_args += ['-W', player_url]
  570. if page_url is not None:
  571. basic_args += ['--pageUrl', page_url]
  572. if play_path is not None:
  573. basic_args += ['-y', play_path]
  574. args = basic_args + [[], ['-e', '-k', '1']][self.params.get('continuedl', False)]
  575. if self.params.get('verbose', False):
  576. try:
  577. import pipes
  578. shell_quote = lambda args: ' '.join(map(pipes.quote, args))
  579. except ImportError:
  580. shell_quote = repr
  581. self.to_screen(u'[debug] rtmpdump command line: ' + shell_quote(args))
  582. retval = subprocess.call(args)
  583. while retval == 2 or retval == 1:
  584. prevsize = os.path.getsize(encodeFilename(tmpfilename))
  585. self.to_screen(u'\r[rtmpdump] %s bytes' % prevsize, skip_eol=True)
  586. time.sleep(5.0) # This seems to be needed
  587. retval = subprocess.call(basic_args + ['-e'] + [[], ['-k', '1']][retval == 1])
  588. cursize = os.path.getsize(encodeFilename(tmpfilename))
  589. if prevsize == cursize and retval == 1:
  590. break
  591. # Some rtmp streams seem abort after ~ 99.8%. Don't complain for those
  592. if prevsize == cursize and retval == 2 and cursize > 1024:
  593. self.to_screen(u'\r[rtmpdump] Could not download the whole video. This can happen for some advertisements.')
  594. retval = 0
  595. break
  596. if retval == 0:
  597. fsize = os.path.getsize(encodeFilename(tmpfilename))
  598. self.to_screen(u'\r[rtmpdump] %s bytes' % fsize)
  599. self.try_rename(tmpfilename, filename)
  600. self._hook_progress({
  601. 'downloaded_bytes': fsize,
  602. 'total_bytes': fsize,
  603. 'filename': filename,
  604. 'status': 'finished',
  605. })
  606. return True
  607. else:
  608. self.to_stderr(u"\n")
  609. self.report_error(u'rtmpdump exited with code %d' % retval)
  610. return False
  611. def _do_download(self, filename, info_dict):
  612. url = info_dict['url']
  613. # Check file already present
  614. if self.params.get('continuedl', False) and os.path.isfile(encodeFilename(filename)) and not self.params.get('nopart', False):
  615. self.report_file_already_downloaded(filename)
  616. self._hook_progress({
  617. 'filename': filename,
  618. 'status': 'finished',
  619. })
  620. return True
  621. # Attempt to download using rtmpdump
  622. if url.startswith('rtmp'):
  623. return self._download_with_rtmpdump(filename, url,
  624. info_dict.get('player_url', None),
  625. info_dict.get('page_url', None),
  626. info_dict.get('play_path', None))
  627. tmpfilename = self.temp_name(filename)
  628. stream = None
  629. # Do not include the Accept-Encoding header
  630. headers = {'Youtubedl-no-compression': 'True'}
  631. if 'user_agent' in info_dict:
  632. headers['Youtubedl-user-agent'] = info_dict['user_agent']
  633. basic_request = compat_urllib_request.Request(url, None, headers)
  634. request = compat_urllib_request.Request(url, None, headers)
  635. if self.params.get('test', False):
  636. request.add_header('Range','bytes=0-10240')
  637. # Establish possible resume length
  638. if os.path.isfile(encodeFilename(tmpfilename)):
  639. resume_len = os.path.getsize(encodeFilename(tmpfilename))
  640. else:
  641. resume_len = 0
  642. open_mode = 'wb'
  643. if resume_len != 0:
  644. if self.params.get('continuedl', False):
  645. self.report_resuming_byte(resume_len)
  646. request.add_header('Range','bytes=%d-' % resume_len)
  647. open_mode = 'ab'
  648. else:
  649. resume_len = 0
  650. count = 0
  651. retries = self.params.get('retries', 0)
  652. while count <= retries:
  653. # Establish connection
  654. try:
  655. if count == 0 and 'urlhandle' in info_dict:
  656. data = info_dict['urlhandle']
  657. data = compat_urllib_request.urlopen(request)
  658. break
  659. except (compat_urllib_error.HTTPError, ) as err:
  660. if (err.code < 500 or err.code >= 600) and err.code != 416:
  661. # Unexpected HTTP error
  662. raise
  663. elif err.code == 416:
  664. # Unable to resume (requested range not satisfiable)
  665. try:
  666. # Open the connection again without the range header
  667. data = compat_urllib_request.urlopen(basic_request)
  668. content_length = data.info()['Content-Length']
  669. except (compat_urllib_error.HTTPError, ) as err:
  670. if err.code < 500 or err.code >= 600:
  671. raise
  672. else:
  673. # Examine the reported length
  674. if (content_length is not None and
  675. (resume_len - 100 < int(content_length) < resume_len + 100)):
  676. # The file had already been fully downloaded.
  677. # Explanation to the above condition: in issue #175 it was revealed that
  678. # YouTube sometimes adds or removes a few bytes from the end of the file,
  679. # changing the file size slightly and causing problems for some users. So
  680. # I decided to implement a suggested change and consider the file
  681. # completely downloaded if the file size differs less than 100 bytes from
  682. # the one in the hard drive.
  683. self.report_file_already_downloaded(filename)
  684. self.try_rename(tmpfilename, filename)
  685. self._hook_progress({
  686. 'filename': filename,
  687. 'status': 'finished',
  688. })
  689. return True
  690. else:
  691. # The length does not match, we start the download over
  692. self.report_unable_to_resume()
  693. open_mode = 'wb'
  694. break
  695. # Retry
  696. count += 1
  697. if count <= retries:
  698. self.report_retry(count, retries)
  699. if count > retries:
  700. self.report_error(u'giving up after %s retries' % retries)
  701. return False
  702. data_len = data.info().get('Content-length', None)
  703. if data_len is not None:
  704. data_len = int(data_len) + resume_len
  705. min_data_len = self.params.get("min_filesize", None)
  706. max_data_len = self.params.get("max_filesize", None)
  707. if min_data_len is not None and data_len < min_data_len:
  708. self.to_screen(u'\r[download] File is smaller than min-filesize (%s bytes < %s bytes). Aborting.' % (data_len, min_data_len))
  709. return False
  710. if max_data_len is not None and data_len > max_data_len:
  711. self.to_screen(u'\r[download] File is larger than max-filesize (%s bytes > %s bytes). Aborting.' % (data_len, max_data_len))
  712. return False
  713. data_len_str = self.format_bytes(data_len)
  714. byte_counter = 0 + resume_len
  715. block_size = self.params.get('buffersize', 1024)
  716. start = time.time()
  717. while True:
  718. # Download and write
  719. before = time.time()
  720. data_block = data.read(block_size)
  721. after = time.time()
  722. if len(data_block) == 0:
  723. break
  724. byte_counter += len(data_block)
  725. # Open file just in time
  726. if stream is None:
  727. try:
  728. (stream, tmpfilename) = sanitize_open(tmpfilename, open_mode)
  729. assert stream is not None
  730. filename = self.undo_temp_name(tmpfilename)
  731. self.report_destination(filename)
  732. except (OSError, IOError) as err:
  733. self.report_error(u'unable to open for writing: %s' % str(err))
  734. return False
  735. try:
  736. stream.write(data_block)
  737. except (IOError, OSError) as err:
  738. self.to_stderr(u"\n")
  739. self.report_error(u'unable to write data: %s' % str(err))
  740. return False
  741. if not self.params.get('noresizebuffer', False):
  742. block_size = self.best_block_size(after - before, len(data_block))
  743. # Progress message
  744. speed_str = self.calc_speed(start, time.time(), byte_counter - resume_len)
  745. if data_len is None:
  746. self.report_progress('Unknown %', data_len_str, speed_str, 'Unknown ETA')
  747. else:
  748. percent_str = self.calc_percent(byte_counter, data_len)
  749. eta_str = self.calc_eta(start, time.time(), data_len - resume_len, byte_counter - resume_len)
  750. self.report_progress(percent_str, data_len_str, speed_str, eta_str)
  751. self._hook_progress({
  752. 'downloaded_bytes': byte_counter,
  753. 'total_bytes': data_len,
  754. 'tmpfilename': tmpfilename,
  755. 'filename': filename,
  756. 'status': 'downloading',
  757. })
  758. # Apply rate limit
  759. self.slow_down(start, byte_counter - resume_len)
  760. if stream is None:
  761. self.to_stderr(u"\n")
  762. self.report_error(u'Did not get any data blocks')
  763. return False
  764. stream.close()
  765. self.report_finish()
  766. if data_len is not None and byte_counter != data_len:
  767. raise ContentTooShortError(byte_counter, int(data_len))
  768. self.try_rename(tmpfilename, filename)
  769. # Update file modification time
  770. if self.params.get('updatetime', True):
  771. info_dict['filetime'] = self.try_utime(filename, data.info().get('last-modified', None))
  772. self._hook_progress({
  773. 'downloaded_bytes': byte_counter,
  774. 'total_bytes': byte_counter,
  775. 'filename': filename,
  776. 'status': 'finished',
  777. })
  778. return True
  779. def _hook_progress(self, status):
  780. for ph in self._progress_hooks:
  781. ph(status)
  782. def add_progress_hook(self, ph):
  783. """ ph gets called on download progress, with a dictionary with the entries
  784. * filename: The final filename
  785. * status: One of "downloading" and "finished"
  786. It can also have some of the following entries:
  787. * downloaded_bytes: Bytes on disks
  788. * total_bytes: Total bytes, None if unknown
  789. * tmpfilename: The filename we're currently writing to
  790. Hooks are guaranteed to be called at least once (with status "finished")
  791. if the download is successful.
  792. """
  793. self._progress_hooks.append(ph)