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.

859 lines
36 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. tb_data = traceback.format_list(traceback.extract_stack())
  206. tb = u''.join(tb_data)
  207. self.to_stderr(tb)
  208. if not self.params.get('ignoreerrors', False):
  209. raise DownloadError(message)
  210. self._download_retcode = 1
  211. def report_warning(self, message):
  212. '''
  213. Print the message to stderr, it will be prefixed with 'WARNING:'
  214. If stderr is a tty file the 'WARNING:' will be colored
  215. '''
  216. if sys.stderr.isatty():
  217. _msg_header=u'\033[0;33mWARNING:\033[0m'
  218. else:
  219. _msg_header=u'WARNING:'
  220. warning_message=u'%s %s' % (_msg_header,message)
  221. self.to_stderr(warning_message)
  222. def slow_down(self, start_time, byte_counter):
  223. """Sleep if the download speed is over the rate limit."""
  224. rate_limit = self.params.get('ratelimit', None)
  225. if rate_limit is None or byte_counter == 0:
  226. return
  227. now = time.time()
  228. elapsed = now - start_time
  229. if elapsed <= 0.0:
  230. return
  231. speed = float(byte_counter) / elapsed
  232. if speed > rate_limit:
  233. time.sleep((byte_counter - rate_limit * (now - start_time)) / rate_limit)
  234. def temp_name(self, filename):
  235. """Returns a temporary filename for the given filename."""
  236. if self.params.get('nopart', False) or filename == u'-' or \
  237. (os.path.exists(encodeFilename(filename)) and not os.path.isfile(encodeFilename(filename))):
  238. return filename
  239. return filename + u'.part'
  240. def undo_temp_name(self, filename):
  241. if filename.endswith(u'.part'):
  242. return filename[:-len(u'.part')]
  243. return filename
  244. def try_rename(self, old_filename, new_filename):
  245. try:
  246. if old_filename == new_filename:
  247. return
  248. os.rename(encodeFilename(old_filename), encodeFilename(new_filename))
  249. except (IOError, OSError) as err:
  250. self.trouble(u'ERROR: unable to rename file')
  251. def try_utime(self, filename, last_modified_hdr):
  252. """Try to set the last-modified time of the given file."""
  253. if last_modified_hdr is None:
  254. return
  255. if not os.path.isfile(encodeFilename(filename)):
  256. return
  257. timestr = last_modified_hdr
  258. if timestr is None:
  259. return
  260. filetime = timeconvert(timestr)
  261. if filetime is None:
  262. return filetime
  263. try:
  264. os.utime(filename, (time.time(), filetime))
  265. except:
  266. pass
  267. return filetime
  268. def report_writedescription(self, descfn):
  269. """ Report that the description file is being written """
  270. self.to_screen(u'[info] Writing video description to: ' + descfn)
  271. def report_writesubtitles(self, sub_filename):
  272. """ Report that the subtitles file is being written """
  273. self.to_screen(u'[info] Writing video subtitles to: ' + sub_filename)
  274. def report_writeinfojson(self, infofn):
  275. """ Report that the metadata file has been written """
  276. self.to_screen(u'[info] Video description metadata as JSON to: ' + infofn)
  277. def report_destination(self, filename):
  278. """Report destination filename."""
  279. self.to_screen(u'[download] Destination: ' + filename)
  280. def report_progress(self, percent_str, data_len_str, speed_str, eta_str):
  281. """Report download progress."""
  282. if self.params.get('noprogress', False):
  283. return
  284. if self.params.get('progress_with_newline', False):
  285. self.to_screen(u'[download] %s of %s at %s ETA %s' %
  286. (percent_str, data_len_str, speed_str, eta_str))
  287. else:
  288. self.to_screen(u'\r[download] %s of %s at %s ETA %s' %
  289. (percent_str, data_len_str, speed_str, eta_str), skip_eol=True)
  290. self.to_cons_title(u'youtube-dl - %s of %s at %s ETA %s' %
  291. (percent_str.strip(), data_len_str.strip(), speed_str.strip(), eta_str.strip()))
  292. def report_resuming_byte(self, resume_len):
  293. """Report attempt to resume at given byte."""
  294. self.to_screen(u'[download] Resuming download at byte %s' % resume_len)
  295. def report_retry(self, count, retries):
  296. """Report retry in case of HTTP error 5xx"""
  297. self.to_screen(u'[download] Got server HTTP error. Retrying (attempt %d of %d)...' % (count, retries))
  298. def report_file_already_downloaded(self, file_name):
  299. """Report file has already been fully downloaded."""
  300. try:
  301. self.to_screen(u'[download] %s has already been downloaded' % file_name)
  302. except (UnicodeEncodeError) as err:
  303. self.to_screen(u'[download] The file has already been downloaded')
  304. def report_unable_to_resume(self):
  305. """Report it was impossible to resume download."""
  306. self.to_screen(u'[download] Unable to resume')
  307. def report_finish(self):
  308. """Report download finished."""
  309. if self.params.get('noprogress', False):
  310. self.to_screen(u'[download] Download completed')
  311. else:
  312. self.to_screen(u'')
  313. def increment_downloads(self):
  314. """Increment the ordinal that assigns a number to each file."""
  315. self._num_downloads += 1
  316. def prepare_filename(self, info_dict):
  317. """Generate the output filename."""
  318. try:
  319. template_dict = dict(info_dict)
  320. template_dict['epoch'] = int(time.time())
  321. template_dict['autonumber'] = u'%05d' % self._num_downloads
  322. sanitize = lambda k,v: sanitize_filename(
  323. u'NA' if v is None else compat_str(v),
  324. restricted=self.params.get('restrictfilenames'),
  325. is_id=(k==u'id'))
  326. template_dict = dict((k, sanitize(k, v)) for k,v in template_dict.items())
  327. filename = self.params['outtmpl'] % template_dict
  328. return filename
  329. except KeyError as err:
  330. self.trouble(u'ERROR: Erroneous output template')
  331. return None
  332. except ValueError as err:
  333. self.trouble(u'ERROR: Insufficient system charset ' + repr(preferredencoding()))
  334. return None
  335. def _match_entry(self, info_dict):
  336. """ Returns None iff the file should be downloaded """
  337. title = info_dict['title']
  338. matchtitle = self.params.get('matchtitle', False)
  339. if matchtitle:
  340. if not re.search(matchtitle, title, re.IGNORECASE):
  341. return u'[download] "' + title + '" title did not match pattern "' + matchtitle + '"'
  342. rejecttitle = self.params.get('rejecttitle', False)
  343. if rejecttitle:
  344. if re.search(rejecttitle, title, re.IGNORECASE):
  345. return u'"' + title + '" title matched reject pattern "' + rejecttitle + '"'
  346. return None
  347. def process_info(self, info_dict):
  348. """Process a single dictionary returned by an InfoExtractor."""
  349. # Keep for backwards compatibility
  350. info_dict['stitle'] = info_dict['title']
  351. if not 'format' in info_dict:
  352. info_dict['format'] = info_dict['ext']
  353. reason = self._match_entry(info_dict)
  354. if reason is not None:
  355. self.to_screen(u'[download] ' + reason)
  356. return
  357. max_downloads = self.params.get('max_downloads')
  358. if max_downloads is not None:
  359. if self._num_downloads > int(max_downloads):
  360. raise MaxDownloadsReached()
  361. filename = self.prepare_filename(info_dict)
  362. # Forced printings
  363. if self.params.get('forcetitle', False):
  364. compat_print(info_dict['title'])
  365. if self.params.get('forceurl', False):
  366. compat_print(info_dict['url'])
  367. if self.params.get('forcethumbnail', False) and 'thumbnail' in info_dict:
  368. compat_print(info_dict['thumbnail'])
  369. if self.params.get('forcedescription', False) and 'description' in info_dict:
  370. compat_print(info_dict['description'])
  371. if self.params.get('forcefilename', False) and filename is not None:
  372. compat_print(filename)
  373. if self.params.get('forceformat', False):
  374. compat_print(info_dict['format'])
  375. # Do nothing else if in simulate mode
  376. if self.params.get('simulate', False):
  377. return
  378. if filename is None:
  379. return
  380. try:
  381. dn = os.path.dirname(encodeFilename(filename))
  382. if dn != '' and not os.path.exists(dn): # dn is already encoded
  383. os.makedirs(dn)
  384. except (OSError, IOError) as err:
  385. self.trouble(u'ERROR: unable to create directory ' + compat_str(err))
  386. return
  387. if self.params.get('writedescription', False):
  388. try:
  389. descfn = filename + u'.description'
  390. self.report_writedescription(descfn)
  391. with io.open(encodeFilename(descfn), 'w', encoding='utf-8') as descfile:
  392. descfile.write(info_dict['description'])
  393. except (OSError, IOError):
  394. self.trouble(u'ERROR: Cannot write description file ' + descfn)
  395. return
  396. if self.params.get('writesubtitles', False) and 'subtitles' in info_dict and info_dict['subtitles']:
  397. # subtitles download errors are already managed as troubles in relevant IE
  398. # that way it will silently go on when used with unsupporting IE
  399. subtitle = info_dict['subtitles'][0]
  400. (sub_error, sub_lang, sub) = subtitle
  401. sub_format = self.params.get('subtitlesformat')
  402. try:
  403. sub_filename = filename.rsplit('.', 1)[0] + u'.' + sub_lang + u'.' + sub_format
  404. self.report_writesubtitles(sub_filename)
  405. with io.open(encodeFilename(sub_filename), 'w', encoding='utf-8') as subfile:
  406. subfile.write(sub)
  407. except (OSError, IOError):
  408. self.trouble(u'ERROR: Cannot write subtitles file ' + descfn)
  409. return
  410. if self.params.get('onlysubtitles', False):
  411. return
  412. if self.params.get('allsubtitles', False) and 'subtitles' in info_dict and info_dict['subtitles']:
  413. subtitles = info_dict['subtitles']
  414. sub_format = self.params.get('subtitlesformat')
  415. for subtitle in subtitles:
  416. (sub_error, sub_lang, sub) = subtitle
  417. try:
  418. sub_filename = filename.rsplit('.', 1)[0] + u'.' + sub_lang + u'.' + sub_format
  419. self.report_writesubtitles(sub_filename)
  420. with io.open(encodeFilename(sub_filename), 'w', encoding='utf-8') as subfile:
  421. subfile.write(sub)
  422. except (OSError, IOError):
  423. self.trouble(u'ERROR: Cannot write subtitles file ' + descfn)
  424. return
  425. if self.params.get('onlysubtitles', False):
  426. return
  427. if self.params.get('writeinfojson', False):
  428. infofn = filename + u'.info.json'
  429. self.report_writeinfojson(infofn)
  430. try:
  431. json_info_dict = dict((k, v) for k,v in info_dict.items() if not k in ['urlhandle'])
  432. write_json_file(json_info_dict, encodeFilename(infofn))
  433. except (OSError, IOError):
  434. self.trouble(u'ERROR: Cannot write metadata to JSON file ' + infofn)
  435. return
  436. if not self.params.get('skip_download', False):
  437. if self.params.get('nooverwrites', False) and os.path.exists(encodeFilename(filename)):
  438. success = True
  439. else:
  440. try:
  441. success = self._do_download(filename, info_dict)
  442. except (OSError, IOError) as err:
  443. raise UnavailableVideoError()
  444. except (compat_urllib_error.URLError, compat_http_client.HTTPException, socket.error) as err:
  445. self.trouble(u'ERROR: unable to download video data: %s' % str(err))
  446. return
  447. except (ContentTooShortError, ) as err:
  448. self.trouble(u'ERROR: content too short (expected %s bytes and served %s)' % (err.expected, err.downloaded))
  449. return
  450. if success:
  451. try:
  452. self.post_process(filename, info_dict)
  453. except (PostProcessingError) as err:
  454. self.trouble(u'ERROR: postprocessing: %s' % str(err))
  455. return
  456. def download(self, url_list):
  457. """Download a given list of URLs."""
  458. if len(url_list) > 1 and self.fixed_template():
  459. raise SameFileError(self.params['outtmpl'])
  460. for url in url_list:
  461. suitable_found = False
  462. for ie in self._ies:
  463. # Go to next InfoExtractor if not suitable
  464. if not ie.suitable(url):
  465. continue
  466. # Warn if the _WORKING attribute is False
  467. if not ie.working():
  468. self.report_warning(u'the program functionality for this site has been marked as broken, '
  469. u'and will probably not work. If you want to go on, use the -i option.')
  470. # Suitable InfoExtractor found
  471. suitable_found = True
  472. # Extract information from URL and process it
  473. try:
  474. videos = ie.extract(url)
  475. except ExtractorError as de: # An error we somewhat expected
  476. self.trouble(u'ERROR: ' + compat_str(de), de.format_traceback())
  477. break
  478. except Exception as e:
  479. if self.params.get('ignoreerrors', False):
  480. self.trouble(u'ERROR: ' + compat_str(e), tb=compat_str(traceback.format_exc()))
  481. break
  482. else:
  483. raise
  484. if len(videos or []) > 1 and self.fixed_template():
  485. raise SameFileError(self.params['outtmpl'])
  486. for video in videos or []:
  487. video['extractor'] = ie.IE_NAME
  488. try:
  489. self.increment_downloads()
  490. self.process_info(video)
  491. except UnavailableVideoError:
  492. self.trouble(u'\nERROR: unable to download video')
  493. # Suitable InfoExtractor had been found; go to next URL
  494. break
  495. if not suitable_found:
  496. self.trouble(u'ERROR: no suitable InfoExtractor: %s' % url)
  497. return self._download_retcode
  498. def post_process(self, filename, ie_info):
  499. """Run all the postprocessors on the given file."""
  500. info = dict(ie_info)
  501. info['filepath'] = filename
  502. keep_video = None
  503. for pp in self._pps:
  504. try:
  505. keep_video_wish,new_info = pp.run(info)
  506. if keep_video_wish is not None:
  507. if keep_video_wish:
  508. keep_video = keep_video_wish
  509. elif keep_video is None:
  510. # No clear decision yet, let IE decide
  511. keep_video = keep_video_wish
  512. except PostProcessingError as e:
  513. self.to_stderr(u'ERROR: ' + e.msg)
  514. if keep_video is False and not self.params.get('keepvideo', False):
  515. try:
  516. self.to_screen(u'Deleting original file %s (pass -k to keep)' % filename)
  517. os.remove(encodeFilename(filename))
  518. except (IOError, OSError):
  519. self.report_warning(u'Unable to remove downloaded video file')
  520. def _download_with_rtmpdump(self, filename, url, player_url, page_url):
  521. self.report_destination(filename)
  522. tmpfilename = self.temp_name(filename)
  523. # Check for rtmpdump first
  524. try:
  525. subprocess.call(['rtmpdump', '-h'], stdout=(open(os.path.devnull, 'w')), stderr=subprocess.STDOUT)
  526. except (OSError, IOError):
  527. self.trouble(u'ERROR: RTMP download detected but "rtmpdump" could not be run')
  528. return False
  529. # Download using rtmpdump. rtmpdump returns exit code 2 when
  530. # the connection was interrumpted and resuming appears to be
  531. # possible. This is part of rtmpdump's normal usage, AFAIK.
  532. basic_args = ['rtmpdump', '-q', '-r', url, '-o', tmpfilename]
  533. if player_url is not None:
  534. basic_args += ['-W', player_url]
  535. if page_url is not None:
  536. basic_args += ['--pageUrl', page_url]
  537. args = basic_args + [[], ['-e', '-k', '1']][self.params.get('continuedl', False)]
  538. if self.params.get('verbose', False):
  539. try:
  540. import pipes
  541. shell_quote = lambda args: ' '.join(map(pipes.quote, args))
  542. except ImportError:
  543. shell_quote = repr
  544. self.to_screen(u'[debug] rtmpdump command line: ' + shell_quote(args))
  545. retval = subprocess.call(args)
  546. while retval == 2 or retval == 1:
  547. prevsize = os.path.getsize(encodeFilename(tmpfilename))
  548. self.to_screen(u'\r[rtmpdump] %s bytes' % prevsize, skip_eol=True)
  549. time.sleep(5.0) # This seems to be needed
  550. retval = subprocess.call(basic_args + ['-e'] + [[], ['-k', '1']][retval == 1])
  551. cursize = os.path.getsize(encodeFilename(tmpfilename))
  552. if prevsize == cursize and retval == 1:
  553. break
  554. # Some rtmp streams seem abort after ~ 99.8%. Don't complain for those
  555. if prevsize == cursize and retval == 2 and cursize > 1024:
  556. self.to_screen(u'\r[rtmpdump] Could not download the whole video. This can happen for some advertisements.')
  557. retval = 0
  558. break
  559. if retval == 0:
  560. fsize = os.path.getsize(encodeFilename(tmpfilename))
  561. self.to_screen(u'\r[rtmpdump] %s bytes' % fsize)
  562. self.try_rename(tmpfilename, filename)
  563. self._hook_progress({
  564. 'downloaded_bytes': fsize,
  565. 'total_bytes': fsize,
  566. 'filename': filename,
  567. 'status': 'finished',
  568. })
  569. return True
  570. else:
  571. self.trouble(u'\nERROR: rtmpdump exited with code %d' % retval)
  572. return False
  573. def _do_download(self, filename, info_dict):
  574. url = info_dict['url']
  575. # Check file already present
  576. if self.params.get('continuedl', False) and os.path.isfile(encodeFilename(filename)) and not self.params.get('nopart', False):
  577. self.report_file_already_downloaded(filename)
  578. self._hook_progress({
  579. 'filename': filename,
  580. 'status': 'finished',
  581. })
  582. return True
  583. # Attempt to download using rtmpdump
  584. if url.startswith('rtmp'):
  585. return self._download_with_rtmpdump(filename, url,
  586. info_dict.get('player_url', None),
  587. info_dict.get('page_url', None))
  588. tmpfilename = self.temp_name(filename)
  589. stream = None
  590. # Do not include the Accept-Encoding header
  591. headers = {'Youtubedl-no-compression': 'True'}
  592. if 'user_agent' in info_dict:
  593. headers['Youtubedl-user-agent'] = info_dict['user_agent']
  594. basic_request = compat_urllib_request.Request(url, None, headers)
  595. request = compat_urllib_request.Request(url, None, headers)
  596. if self.params.get('test', False):
  597. request.add_header('Range','bytes=0-10240')
  598. # Establish possible resume length
  599. if os.path.isfile(encodeFilename(tmpfilename)):
  600. resume_len = os.path.getsize(encodeFilename(tmpfilename))
  601. else:
  602. resume_len = 0
  603. open_mode = 'wb'
  604. if resume_len != 0:
  605. if self.params.get('continuedl', False):
  606. self.report_resuming_byte(resume_len)
  607. request.add_header('Range','bytes=%d-' % resume_len)
  608. open_mode = 'ab'
  609. else:
  610. resume_len = 0
  611. count = 0
  612. retries = self.params.get('retries', 0)
  613. while count <= retries:
  614. # Establish connection
  615. try:
  616. if count == 0 and 'urlhandle' in info_dict:
  617. data = info_dict['urlhandle']
  618. data = compat_urllib_request.urlopen(request)
  619. break
  620. except (compat_urllib_error.HTTPError, ) as err:
  621. if (err.code < 500 or err.code >= 600) and err.code != 416:
  622. # Unexpected HTTP error
  623. raise
  624. elif err.code == 416:
  625. # Unable to resume (requested range not satisfiable)
  626. try:
  627. # Open the connection again without the range header
  628. data = compat_urllib_request.urlopen(basic_request)
  629. content_length = data.info()['Content-Length']
  630. except (compat_urllib_error.HTTPError, ) as err:
  631. if err.code < 500 or err.code >= 600:
  632. raise
  633. else:
  634. # Examine the reported length
  635. if (content_length is not None and
  636. (resume_len - 100 < int(content_length) < resume_len + 100)):
  637. # The file had already been fully downloaded.
  638. # Explanation to the above condition: in issue #175 it was revealed that
  639. # YouTube sometimes adds or removes a few bytes from the end of the file,
  640. # changing the file size slightly and causing problems for some users. So
  641. # I decided to implement a suggested change and consider the file
  642. # completely downloaded if the file size differs less than 100 bytes from
  643. # the one in the hard drive.
  644. self.report_file_already_downloaded(filename)
  645. self.try_rename(tmpfilename, filename)
  646. self._hook_progress({
  647. 'filename': filename,
  648. 'status': 'finished',
  649. })
  650. return True
  651. else:
  652. # The length does not match, we start the download over
  653. self.report_unable_to_resume()
  654. open_mode = 'wb'
  655. break
  656. # Retry
  657. count += 1
  658. if count <= retries:
  659. self.report_retry(count, retries)
  660. if count > retries:
  661. self.trouble(u'ERROR: giving up after %s retries' % retries)
  662. return False
  663. data_len = data.info().get('Content-length', None)
  664. if data_len is not None:
  665. data_len = int(data_len) + resume_len
  666. min_data_len = self.params.get("min_filesize", None)
  667. max_data_len = self.params.get("max_filesize", None)
  668. if min_data_len is not None and data_len < min_data_len:
  669. self.to_screen(u'\r[download] File is smaller than min-filesize (%s bytes < %s bytes). Aborting.' % (data_len, min_data_len))
  670. return False
  671. if max_data_len is not None and data_len > max_data_len:
  672. self.to_screen(u'\r[download] File is larger than max-filesize (%s bytes > %s bytes). Aborting.' % (data_len, max_data_len))
  673. return False
  674. data_len_str = self.format_bytes(data_len)
  675. byte_counter = 0 + resume_len
  676. block_size = self.params.get('buffersize', 1024)
  677. start = time.time()
  678. while True:
  679. # Download and write
  680. before = time.time()
  681. data_block = data.read(block_size)
  682. after = time.time()
  683. if len(data_block) == 0:
  684. break
  685. byte_counter += len(data_block)
  686. # Open file just in time
  687. if stream is None:
  688. try:
  689. (stream, tmpfilename) = sanitize_open(tmpfilename, open_mode)
  690. assert stream is not None
  691. filename = self.undo_temp_name(tmpfilename)
  692. self.report_destination(filename)
  693. except (OSError, IOError) as err:
  694. self.trouble(u'ERROR: unable to open for writing: %s' % str(err))
  695. return False
  696. try:
  697. stream.write(data_block)
  698. except (IOError, OSError) as err:
  699. self.trouble(u'\nERROR: unable to write data: %s' % str(err))
  700. return False
  701. if not self.params.get('noresizebuffer', False):
  702. block_size = self.best_block_size(after - before, len(data_block))
  703. # Progress message
  704. speed_str = self.calc_speed(start, time.time(), byte_counter - resume_len)
  705. if data_len is None:
  706. self.report_progress('Unknown %', data_len_str, speed_str, 'Unknown ETA')
  707. else:
  708. percent_str = self.calc_percent(byte_counter, data_len)
  709. eta_str = self.calc_eta(start, time.time(), data_len - resume_len, byte_counter - resume_len)
  710. self.report_progress(percent_str, data_len_str, speed_str, eta_str)
  711. self._hook_progress({
  712. 'downloaded_bytes': byte_counter,
  713. 'total_bytes': data_len,
  714. 'tmpfilename': tmpfilename,
  715. 'filename': filename,
  716. 'status': 'downloading',
  717. })
  718. # Apply rate limit
  719. self.slow_down(start, byte_counter - resume_len)
  720. if stream is None:
  721. self.trouble(u'\nERROR: Did not get any data blocks')
  722. return False
  723. stream.close()
  724. self.report_finish()
  725. if data_len is not None and byte_counter != data_len:
  726. raise ContentTooShortError(byte_counter, int(data_len))
  727. self.try_rename(tmpfilename, filename)
  728. # Update file modification time
  729. if self.params.get('updatetime', True):
  730. info_dict['filetime'] = self.try_utime(filename, data.info().get('last-modified', None))
  731. self._hook_progress({
  732. 'downloaded_bytes': byte_counter,
  733. 'total_bytes': byte_counter,
  734. 'filename': filename,
  735. 'status': 'finished',
  736. })
  737. return True
  738. def _hook_progress(self, status):
  739. for ph in self._progress_hooks:
  740. ph(status)
  741. def add_progress_hook(self, ph):
  742. """ ph gets called on download progress, with a dictionary with the entries
  743. * filename: The final filename
  744. * status: One of "downloading" and "finished"
  745. It can also have some of the following entries:
  746. * downloaded_bytes: Bytes on disks
  747. * total_bytes: Total bytes, None if unknown
  748. * tmpfilename: The filename we're currently writing to
  749. Hooks are guaranteed to be called at least once (with status "finished")
  750. if the download is successful.
  751. """
  752. self._progress_hooks.append(ph)