mirror of
				https://github.com/ytdl-org/youtube-dl.git
				synced 2025-10-29 09:26:20 -07:00 
			
		
		
		
	Introduce --keep-fragments
This commit is contained in:
		| @@ -343,6 +343,7 @@ def _real_main(argv=None): | |||||||
|         'retries': opts.retries, |         'retries': opts.retries, | ||||||
|         'fragment_retries': opts.fragment_retries, |         'fragment_retries': opts.fragment_retries, | ||||||
|         'skip_unavailable_fragments': opts.skip_unavailable_fragments, |         'skip_unavailable_fragments': opts.skip_unavailable_fragments, | ||||||
|  |         'keep_fragments': opts.keep_fragments, | ||||||
|         'buffersize': opts.buffersize, |         'buffersize': opts.buffersize, | ||||||
|         'noresizebuffer': opts.noresizebuffer, |         'noresizebuffer': opts.noresizebuffer, | ||||||
|         'continuedl': opts.continue_dl, |         'continuedl': opts.continue_dl, | ||||||
|   | |||||||
| @@ -29,6 +29,8 @@ class FragmentFD(FileDownloader): | |||||||
|                         and hlsnative only) |                         and hlsnative only) | ||||||
|     skip_unavailable_fragments: |     skip_unavailable_fragments: | ||||||
|                         Skip unavailable fragments (DASH and hlsnative only) |                         Skip unavailable fragments (DASH and hlsnative only) | ||||||
|  |     keep_fragments:     Keep downloaded fragments on disk after downloading is | ||||||
|  |                         finished | ||||||
|     """ |     """ | ||||||
|  |  | ||||||
|     def report_retry_fragment(self, err, frag_index, count, retries): |     def report_retry_fragment(self, err, frag_index, count, retries): | ||||||
| @@ -81,7 +83,8 @@ class FragmentFD(FileDownloader): | |||||||
|         finally: |         finally: | ||||||
|             if not (ctx.get('live') or ctx['tmpfilename'] == '-'): |             if not (ctx.get('live') or ctx['tmpfilename'] == '-'): | ||||||
|                 self._write_ytdl_file(ctx) |                 self._write_ytdl_file(ctx) | ||||||
|             os.remove(ctx['fragment_filename_sanitized']) |             if not self.params.get('keep_fragments', False): | ||||||
|  |                 os.remove(ctx['fragment_filename_sanitized']) | ||||||
|             del ctx['fragment_filename_sanitized'] |             del ctx['fragment_filename_sanitized'] | ||||||
|  |  | ||||||
|     def _prepare_frag_download(self, ctx): |     def _prepare_frag_download(self, ctx): | ||||||
|   | |||||||
| @@ -468,6 +468,10 @@ def parseOpts(overrideArguments=None): | |||||||
|         '--abort-on-unavailable-fragment', |         '--abort-on-unavailable-fragment', | ||||||
|         action='store_false', dest='skip_unavailable_fragments', |         action='store_false', dest='skip_unavailable_fragments', | ||||||
|         help='Abort downloading when some fragment is not available') |         help='Abort downloading when some fragment is not available') | ||||||
|  |     downloader.add_option( | ||||||
|  |         '--keep-fragments', | ||||||
|  |         action='store_true', dest='keep_fragments', default=False, | ||||||
|  |         help='Keep downloaded fragments on disk after downloading is finished; fragments are erased by default') | ||||||
|     downloader.add_option( |     downloader.add_option( | ||||||
|         '--buffer-size', |         '--buffer-size', | ||||||
|         dest='buffersize', metavar='SIZE', default='1024', |         dest='buffersize', metavar='SIZE', default='1024', | ||||||
|   | |||||||
		Reference in New Issue
	
	Block a user