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.

938 lines
40 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. template_dict['autonumber'] = u'%05d' % self._num_downloads
  343. sanitize = lambda k,v: sanitize_filename(
  344. u'NA' if v is None else compat_str(v),
  345. restricted=self.params.get('restrictfilenames'),
  346. is_id=(k==u'id'))
  347. template_dict = dict((k, sanitize(k, v)) for k,v in template_dict.items())
  348. filename = self.params['outtmpl'] % template_dict
  349. return filename
  350. except KeyError as err:
  351. self.trouble(u'ERROR: Erroneous output template')
  352. return None
  353. except ValueError as err:
  354. self.trouble(u'ERROR: Insufficient system charset ' + repr(preferredencoding()))
  355. return None
  356. def _match_entry(self, info_dict):
  357. """ Returns None iff the file should be downloaded """
  358. title = info_dict['title']
  359. matchtitle = self.params.get('matchtitle', False)
  360. if matchtitle:
  361. if not re.search(matchtitle, title, re.IGNORECASE):
  362. return u'[download] "' + title + '" title did not match pattern "' + matchtitle + '"'
  363. rejecttitle = self.params.get('rejecttitle', False)
  364. if rejecttitle:
  365. if re.search(rejecttitle, title, re.IGNORECASE):
  366. return u'"' + title + '" title matched reject pattern "' + rejecttitle + '"'
  367. return None
  368. def extract_info(self, url, download = True):
  369. '''
  370. Returns a list with a dictionary for each video we find.
  371. If 'download', also downloads the videos.
  372. '''
  373. suitable_found = False
  374. for ie in self._ies:
  375. # Go to next InfoExtractor if not suitable
  376. if not ie.suitable(url):
  377. continue
  378. # Warn if the _WORKING attribute is False
  379. if not ie.working():
  380. self.to_stderr(u'WARNING: the program functionality for this site has been marked as broken, '
  381. u'and will probably not work. If you want to go on, use the -i option.')
  382. # Suitable InfoExtractor found
  383. suitable_found = True
  384. # Extract information from URL and process it
  385. try:
  386. ie_results = ie.extract(url)
  387. results = []
  388. for ie_result in ie_results:
  389. if not 'extractor' in ie_result:
  390. #The extractor has already been set somewhere else
  391. ie_result['extractor'] = ie.IE_NAME
  392. results.append(self.process_ie_result(ie_result, download))
  393. return results
  394. except ExtractorError as de: # An error we somewhat expected
  395. self.trouble(u'ERROR: ' + compat_str(de), de.format_traceback())
  396. break
  397. except Exception as e:
  398. if self.params.get('ignoreerrors', False):
  399. self.trouble(u'ERROR: ' + compat_str(e), tb=compat_str(traceback.format_exc()))
  400. break
  401. else:
  402. raise
  403. if not suitable_found:
  404. self.trouble(u'ERROR: no suitable InfoExtractor: %s' % url)
  405. def process_ie_result(self, ie_result, download = True):
  406. """
  407. Take the result of the ie and return a list of videos.
  408. For url elements it will search the suitable ie and get the videos
  409. For playlist elements it will process each of the elements of the 'entries' key
  410. It will also download the videos if 'download'.
  411. """
  412. result_type = ie_result.get('_type', 'video') #If not given we suppose it's a video, support the dafault old system
  413. if result_type == 'video':
  414. if 'playlist' not in ie_result:
  415. #It isn't part of a playlist
  416. ie_result['playlist'] = None
  417. if download:
  418. #Do the download:
  419. self.process_info(ie_result)
  420. return ie_result
  421. elif result_type == 'url':
  422. #We get the video pointed by the url
  423. result = self.extract_info(ie_result['url'], download)[0]
  424. return result
  425. elif result_type == 'playlist':
  426. #We process each entry in the playlist
  427. playlist = ie_result.get('title', None) or ie_result.get('id', None)
  428. self.to_screen(u'[download] Downloading playlist: %s' % playlist)
  429. n_videos = len(ie_result['entries'])
  430. playlist_results = []
  431. for i,entry in enumerate(ie_result['entries'],1):
  432. self.to_screen(u'[download] Downloading video #%s of %s' %(i, n_videos))
  433. entry_result = self.process_ie_result(entry, False)
  434. entry_result['playlist'] = playlist
  435. #We must do the download here to correctly set the 'playlist' key
  436. if download:
  437. self.process_info(entry_result)
  438. playlist_results.append(entry_result)
  439. result = ie_result.copy()
  440. result['entries'] = playlist_results
  441. return result
  442. def process_info(self, info_dict):
  443. """Process a single dictionary returned by an InfoExtractor."""
  444. #We increment the download the download count here to match the previous behaviour.
  445. self.increment_downloads()
  446. # Keep for backwards compatibility
  447. info_dict['stitle'] = info_dict['title']
  448. if not 'format' in info_dict:
  449. info_dict['format'] = info_dict['ext']
  450. reason = self._match_entry(info_dict)
  451. if reason is not None:
  452. self.to_screen(u'[download] ' + reason)
  453. return
  454. max_downloads = self.params.get('max_downloads')
  455. if max_downloads is not None:
  456. if self._num_downloads > int(max_downloads):
  457. raise MaxDownloadsReached()
  458. filename = self.prepare_filename(info_dict)
  459. # Forced printings
  460. if self.params.get('forcetitle', False):
  461. compat_print(info_dict['title'])
  462. if self.params.get('forceurl', False):
  463. compat_print(info_dict['url'])
  464. if self.params.get('forcethumbnail', False) and 'thumbnail' in info_dict:
  465. compat_print(info_dict['thumbnail'])
  466. if self.params.get('forcedescription', False) and 'description' in info_dict:
  467. compat_print(info_dict['description'])
  468. if self.params.get('forcefilename', False) and filename is not None:
  469. compat_print(filename)
  470. if self.params.get('forceformat', False):
  471. compat_print(info_dict['format'])
  472. # Do nothing else if in simulate mode
  473. if self.params.get('simulate', False):
  474. return
  475. if filename is None:
  476. return
  477. try:
  478. dn = os.path.dirname(encodeFilename(filename))
  479. if dn != '' and not os.path.exists(dn): # dn is already encoded
  480. os.makedirs(dn)
  481. except (OSError, IOError) as err:
  482. self.report_error(u'unable to create directory ' + compat_str(err))
  483. return
  484. if self.params.get('writedescription', False):
  485. try:
  486. descfn = filename + u'.description'
  487. self.report_writedescription(descfn)
  488. with io.open(encodeFilename(descfn), 'w', encoding='utf-8') as descfile:
  489. descfile.write(info_dict['description'])
  490. except (OSError, IOError):
  491. self.report_error(u'Cannot write description file ' + descfn)
  492. return
  493. if self.params.get('writesubtitles', False) and 'subtitles' in info_dict and info_dict['subtitles']:
  494. # subtitles download errors are already managed as troubles in relevant IE
  495. # that way it will silently go on when used with unsupporting IE
  496. subtitle = info_dict['subtitles'][0]
  497. (sub_error, sub_lang, sub) = subtitle
  498. sub_format = self.params.get('subtitlesformat')
  499. if sub_error:
  500. self.report_warning("Some error while getting the subtitles")
  501. else:
  502. try:
  503. sub_filename = filename.rsplit('.', 1)[0] + u'.' + sub_lang + u'.' + sub_format
  504. self.report_writesubtitles(sub_filename)
  505. with io.open(encodeFilename(sub_filename), 'w', encoding='utf-8') as subfile:
  506. subfile.write(sub)
  507. except (OSError, IOError):
  508. self.report_error(u'Cannot write subtitles file ' + descfn)
  509. return
  510. if self.params.get('onlysubtitles', False):
  511. return
  512. if self.params.get('allsubtitles', False) and 'subtitles' in info_dict and info_dict['subtitles']:
  513. subtitles = info_dict['subtitles']
  514. sub_format = self.params.get('subtitlesformat')
  515. for subtitle in subtitles:
  516. (sub_error, sub_lang, sub) = subtitle
  517. if sub_error:
  518. self.report_warning("Some error while getting the subtitles")
  519. else:
  520. try:
  521. sub_filename = filename.rsplit('.', 1)[0] + u'.' + sub_lang + u'.' + sub_format
  522. self.report_writesubtitles(sub_filename)
  523. with io.open(encodeFilename(sub_filename), 'w', encoding='utf-8') as subfile:
  524. subfile.write(sub)
  525. except (OSError, IOError):
  526. self.trouble(u'ERROR: Cannot write subtitles file ' + descfn)
  527. return
  528. if self.params.get('onlysubtitles', False):
  529. return
  530. if self.params.get('writeinfojson', False):
  531. infofn = filename + u'.info.json'
  532. self.report_writeinfojson(infofn)
  533. try:
  534. json_info_dict = dict((k, v) for k,v in info_dict.items() if not k in ['urlhandle'])
  535. write_json_file(json_info_dict, encodeFilename(infofn))
  536. except (OSError, IOError):
  537. self.report_error(u'Cannot write metadata to JSON file ' + infofn)
  538. return
  539. if not self.params.get('skip_download', False):
  540. if self.params.get('nooverwrites', False) and os.path.exists(encodeFilename(filename)):
  541. success = True
  542. else:
  543. try:
  544. success = self._do_download(filename, info_dict)
  545. except (OSError, IOError) as err:
  546. raise UnavailableVideoError()
  547. except (compat_urllib_error.URLError, compat_http_client.HTTPException, socket.error) as err:
  548. self.report_error(u'unable to download video data: %s' % str(err))
  549. return
  550. except (ContentTooShortError, ) as err:
  551. self.report_error(u'content too short (expected %s bytes and served %s)' % (err.expected, err.downloaded))
  552. return
  553. if success:
  554. try:
  555. self.post_process(filename, info_dict)
  556. except (PostProcessingError) as err:
  557. self.report_error(u'postprocessing: %s' % str(err))
  558. return
  559. def download(self, url_list):
  560. """Download a given list of URLs."""
  561. if len(url_list) > 1 and self.fixed_template():
  562. raise SameFileError(self.params['outtmpl'])
  563. for url in url_list:
  564. try:
  565. #It also downloads the videos
  566. videos = self.extract_info(url)
  567. except UnavailableVideoError:
  568. self.trouble(u'\nERROR: unable to download video')
  569. except MaxDownloadsReached:
  570. self.to_screen(u'[info] Maximum number of downloaded files reached.')
  571. raise
  572. return self._download_retcode
  573. def post_process(self, filename, ie_info):
  574. """Run all the postprocessors on the given file."""
  575. info = dict(ie_info)
  576. info['filepath'] = filename
  577. keep_video = None
  578. for pp in self._pps:
  579. try:
  580. keep_video_wish,new_info = pp.run(info)
  581. if keep_video_wish is not None:
  582. if keep_video_wish:
  583. keep_video = keep_video_wish
  584. elif keep_video is None:
  585. # No clear decision yet, let IE decide
  586. keep_video = keep_video_wish
  587. except PostProcessingError as e:
  588. self.to_stderr(u'ERROR: ' + e.msg)
  589. if keep_video is False and not self.params.get('keepvideo', False):
  590. try:
  591. self.to_screen(u'Deleting original file %s (pass -k to keep)' % filename)
  592. os.remove(encodeFilename(filename))
  593. except (IOError, OSError):
  594. self.report_warning(u'Unable to remove downloaded video file')
  595. def _download_with_rtmpdump(self, filename, url, player_url, page_url):
  596. self.report_destination(filename)
  597. tmpfilename = self.temp_name(filename)
  598. # Check for rtmpdump first
  599. try:
  600. subprocess.call(['rtmpdump', '-h'], stdout=(open(os.path.devnull, 'w')), stderr=subprocess.STDOUT)
  601. except (OSError, IOError):
  602. self.report_error(u'RTMP download detected but "rtmpdump" could not be run')
  603. return False
  604. # Download using rtmpdump. rtmpdump returns exit code 2 when
  605. # the connection was interrumpted and resuming appears to be
  606. # possible. This is part of rtmpdump's normal usage, AFAIK.
  607. basic_args = ['rtmpdump', '-q', '-r', url, '-o', tmpfilename]
  608. if player_url is not None:
  609. basic_args += ['-W', player_url]
  610. if page_url is not None:
  611. basic_args += ['--pageUrl', page_url]
  612. args = basic_args + [[], ['-e', '-k', '1']][self.params.get('continuedl', False)]
  613. if self.params.get('verbose', False):
  614. try:
  615. import pipes
  616. shell_quote = lambda args: ' '.join(map(pipes.quote, args))
  617. except ImportError:
  618. shell_quote = repr
  619. self.to_screen(u'[debug] rtmpdump command line: ' + shell_quote(args))
  620. retval = subprocess.call(args)
  621. while retval == 2 or retval == 1:
  622. prevsize = os.path.getsize(encodeFilename(tmpfilename))
  623. self.to_screen(u'\r[rtmpdump] %s bytes' % prevsize, skip_eol=True)
  624. time.sleep(5.0) # This seems to be needed
  625. retval = subprocess.call(basic_args + ['-e'] + [[], ['-k', '1']][retval == 1])
  626. cursize = os.path.getsize(encodeFilename(tmpfilename))
  627. if prevsize == cursize and retval == 1:
  628. break
  629. # Some rtmp streams seem abort after ~ 99.8%. Don't complain for those
  630. if prevsize == cursize and retval == 2 and cursize > 1024:
  631. self.to_screen(u'\r[rtmpdump] Could not download the whole video. This can happen for some advertisements.')
  632. retval = 0
  633. break
  634. if retval == 0:
  635. fsize = os.path.getsize(encodeFilename(tmpfilename))
  636. self.to_screen(u'\r[rtmpdump] %s bytes' % fsize)
  637. self.try_rename(tmpfilename, filename)
  638. self._hook_progress({
  639. 'downloaded_bytes': fsize,
  640. 'total_bytes': fsize,
  641. 'filename': filename,
  642. 'status': 'finished',
  643. })
  644. return True
  645. else:
  646. self.to_stderr(u"\n")
  647. self.report_error(u'rtmpdump exited with code %d' % retval)
  648. return False
  649. def _do_download(self, filename, info_dict):
  650. url = info_dict['url']
  651. # Check file already present
  652. if self.params.get('continuedl', False) and os.path.isfile(encodeFilename(filename)) and not self.params.get('nopart', False):
  653. self.report_file_already_downloaded(filename)
  654. self._hook_progress({
  655. 'filename': filename,
  656. 'status': 'finished',
  657. })
  658. return True
  659. # Attempt to download using rtmpdump
  660. if url.startswith('rtmp'):
  661. return self._download_with_rtmpdump(filename, url,
  662. info_dict.get('player_url', None),
  663. info_dict.get('page_url', None))
  664. tmpfilename = self.temp_name(filename)
  665. stream = None
  666. # Do not include the Accept-Encoding header
  667. headers = {'Youtubedl-no-compression': 'True'}
  668. if 'user_agent' in info_dict:
  669. headers['Youtubedl-user-agent'] = info_dict['user_agent']
  670. basic_request = compat_urllib_request.Request(url, None, headers)
  671. request = compat_urllib_request.Request(url, None, headers)
  672. if self.params.get('test', False):
  673. request.add_header('Range','bytes=0-10240')
  674. # Establish possible resume length
  675. if os.path.isfile(encodeFilename(tmpfilename)):
  676. resume_len = os.path.getsize(encodeFilename(tmpfilename))
  677. else:
  678. resume_len = 0
  679. open_mode = 'wb'
  680. if resume_len != 0:
  681. if self.params.get('continuedl', False):
  682. self.report_resuming_byte(resume_len)
  683. request.add_header('Range','bytes=%d-' % resume_len)
  684. open_mode = 'ab'
  685. else:
  686. resume_len = 0
  687. count = 0
  688. retries = self.params.get('retries', 0)
  689. while count <= retries:
  690. # Establish connection
  691. try:
  692. if count == 0 and 'urlhandle' in info_dict:
  693. data = info_dict['urlhandle']
  694. data = compat_urllib_request.urlopen(request)
  695. break
  696. except (compat_urllib_error.HTTPError, ) as err:
  697. if (err.code < 500 or err.code >= 600) and err.code != 416:
  698. # Unexpected HTTP error
  699. raise
  700. elif err.code == 416:
  701. # Unable to resume (requested range not satisfiable)
  702. try:
  703. # Open the connection again without the range header
  704. data = compat_urllib_request.urlopen(basic_request)
  705. content_length = data.info()['Content-Length']
  706. except (compat_urllib_error.HTTPError, ) as err:
  707. if err.code < 500 or err.code >= 600:
  708. raise
  709. else:
  710. # Examine the reported length
  711. if (content_length is not None and
  712. (resume_len - 100 < int(content_length) < resume_len + 100)):
  713. # The file had already been fully downloaded.
  714. # Explanation to the above condition: in issue #175 it was revealed that
  715. # YouTube sometimes adds or removes a few bytes from the end of the file,
  716. # changing the file size slightly and causing problems for some users. So
  717. # I decided to implement a suggested change and consider the file
  718. # completely downloaded if the file size differs less than 100 bytes from
  719. # the one in the hard drive.
  720. self.report_file_already_downloaded(filename)
  721. self.try_rename(tmpfilename, filename)
  722. self._hook_progress({
  723. 'filename': filename,
  724. 'status': 'finished',
  725. })
  726. return True
  727. else:
  728. # The length does not match, we start the download over
  729. self.report_unable_to_resume()
  730. open_mode = 'wb'
  731. break
  732. # Retry
  733. count += 1
  734. if count <= retries:
  735. self.report_retry(count, retries)
  736. if count > retries:
  737. self.report_error(u'giving up after %s retries' % retries)
  738. return False
  739. data_len = data.info().get('Content-length', None)
  740. if data_len is not None:
  741. data_len = int(data_len) + resume_len
  742. min_data_len = self.params.get("min_filesize", None)
  743. max_data_len = self.params.get("max_filesize", None)
  744. if min_data_len is not None and data_len < min_data_len:
  745. self.to_screen(u'\r[download] File is smaller than min-filesize (%s bytes < %s bytes). Aborting.' % (data_len, min_data_len))
  746. return False
  747. if max_data_len is not None and data_len > max_data_len:
  748. self.to_screen(u'\r[download] File is larger than max-filesize (%s bytes > %s bytes). Aborting.' % (data_len, max_data_len))
  749. return False
  750. data_len_str = self.format_bytes(data_len)
  751. byte_counter = 0 + resume_len
  752. block_size = self.params.get('buffersize', 1024)
  753. start = time.time()
  754. while True:
  755. # Download and write
  756. before = time.time()
  757. data_block = data.read(block_size)
  758. after = time.time()
  759. if len(data_block) == 0:
  760. break
  761. byte_counter += len(data_block)
  762. # Open file just in time
  763. if stream is None:
  764. try:
  765. (stream, tmpfilename) = sanitize_open(tmpfilename, open_mode)
  766. assert stream is not None
  767. filename = self.undo_temp_name(tmpfilename)
  768. self.report_destination(filename)
  769. except (OSError, IOError) as err:
  770. self.report_error(u'unable to open for writing: %s' % str(err))
  771. return False
  772. try:
  773. stream.write(data_block)
  774. except (IOError, OSError) as err:
  775. self.to_stderr(u"\n")
  776. self.report_error(u'unable to write data: %s' % str(err))
  777. return False
  778. if not self.params.get('noresizebuffer', False):
  779. block_size = self.best_block_size(after - before, len(data_block))
  780. # Progress message
  781. speed_str = self.calc_speed(start, time.time(), byte_counter - resume_len)
  782. if data_len is None:
  783. self.report_progress('Unknown %', data_len_str, speed_str, 'Unknown ETA')
  784. else:
  785. percent_str = self.calc_percent(byte_counter, data_len)
  786. eta_str = self.calc_eta(start, time.time(), data_len - resume_len, byte_counter - resume_len)
  787. self.report_progress(percent_str, data_len_str, speed_str, eta_str)
  788. self._hook_progress({
  789. 'downloaded_bytes': byte_counter,
  790. 'total_bytes': data_len,
  791. 'tmpfilename': tmpfilename,
  792. 'filename': filename,
  793. 'status': 'downloading',
  794. })
  795. # Apply rate limit
  796. self.slow_down(start, byte_counter - resume_len)
  797. if stream is None:
  798. self.to_stderr(u"\n")
  799. self.report_error(u'Did not get any data blocks')
  800. return False
  801. stream.close()
  802. self.report_finish()
  803. if data_len is not None and byte_counter != data_len:
  804. raise ContentTooShortError(byte_counter, int(data_len))
  805. self.try_rename(tmpfilename, filename)
  806. # Update file modification time
  807. if self.params.get('updatetime', True):
  808. info_dict['filetime'] = self.try_utime(filename, data.info().get('last-modified', None))
  809. self._hook_progress({
  810. 'downloaded_bytes': byte_counter,
  811. 'total_bytes': byte_counter,
  812. 'filename': filename,
  813. 'status': 'finished',
  814. })
  815. return True
  816. def _hook_progress(self, status):
  817. for ph in self._progress_hooks:
  818. ph(status)
  819. def add_progress_hook(self, ph):
  820. """ ph gets called on download progress, with a dictionary with the entries
  821. * filename: The final filename
  822. * status: One of "downloading" and "finished"
  823. It can also have some of the following entries:
  824. * downloaded_bytes: Bytes on disks
  825. * total_bytes: Total bytes, None if unknown
  826. * tmpfilename: The filename we're currently writing to
  827. Hooks are guaranteed to be called at least once (with status "finished")
  828. if the download is successful.
  829. """
  830. self._progress_hooks.append(ph)