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.

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