mirror of
				https://github.com/yt-dlp/yt-dlp.git
				synced 2025-10-31 14:45:14 +00:00 
			
		
		
		
	[cleanup] Misc fixes
Cherry-picks from: #3498, #3947 Related: #3949, https://github.com/yt-dlp/yt-dlp/issues/1839#issuecomment-1140313836 Authored by: pukkandan, flashdagger, gamer191
This commit is contained in:
		| @@ -496,12 +496,20 @@ class FragmentFD(FileDownloader): | ||||
| 
 | ||||
|             self.report_warning('The download speed shown is only of one thread. This is a known issue and patches are welcome') | ||||
|             with tpe or concurrent.futures.ThreadPoolExecutor(max_workers) as pool: | ||||
|                 for fragment, frag_index, frag_filename in pool.map(_download_fragment, fragments): | ||||
|                     ctx['fragment_filename_sanitized'] = frag_filename | ||||
|                     ctx['fragment_index'] = frag_index | ||||
|                     result = append_fragment(decrypt_fragment(fragment, self._read_fragment(ctx)), frag_index, ctx) | ||||
|                     if not result: | ||||
|                         return False | ||||
|                 try: | ||||
|                     for fragment, frag_index, frag_filename in pool.map(_download_fragment, fragments): | ||||
|                         ctx.update({ | ||||
|                             'fragment_filename_sanitized': frag_filename, | ||||
|                             'fragment_index': frag_index, | ||||
|                         }) | ||||
|                         if not append_fragment(decrypt_fragment(fragment, self._read_fragment(ctx)), frag_index, ctx): | ||||
|                             return False | ||||
|                 except KeyboardInterrupt: | ||||
|                     self._finish_multiline_status() | ||||
|                     self.report_error( | ||||
|                         'Interrupted by user. Waiting for all threads to shutdown...', is_error=False, tb=False) | ||||
|                     pool.shutdown(wait=False) | ||||
|                     raise | ||||
|         else: | ||||
|             for fragment in fragments: | ||||
|                 if not interrupt_trigger[0]: | ||||
|   | ||||
		Reference in New Issue
	
	Block a user
	 pukkandan
					pukkandan