mirror of
				https://github.com/yt-dlp/yt-dlp.git
				synced 2025-10-31 06:35:12 +00:00 
			
		
		
		
	Bugfix for 23326151c4
				
					
				
			This commit is contained in:
		| @@ -165,18 +165,11 @@ class FragmentFD(FileDownloader): | ||||
|             total_frags_str = 'unknown (live)' | ||||
|         self.to_screen(f'[{self.FD_NAME}] Total fragments: {total_frags_str}') | ||||
|         self.report_destination(ctx['filename']) | ||||
|         dl = HttpQuietDownloader( | ||||
|             self.ydl, | ||||
|             { | ||||
|                 'continuedl': self.params.get('continuedl', True), | ||||
|                 'quiet': self.params.get('quiet'), | ||||
|                 'noprogress': True, | ||||
|                 'ratelimit': self.params.get('ratelimit'), | ||||
|                 'retries': self.params.get('retries', 0), | ||||
|                 'nopart': self.params.get('nopart', False), | ||||
|                 'test': False, | ||||
|             } | ||||
|         ) | ||||
|         dl = HttpQuietDownloader(self.ydl, { | ||||
|             **self.params, | ||||
|             'noprogress': True, | ||||
|             'test': False, | ||||
|         }) | ||||
|         tmpfilename = self.temp_name(ctx['filename']) | ||||
|         open_mode = 'wb' | ||||
|         resume_len = 0 | ||||
|   | ||||
		Reference in New Issue
	
	Block a user
	 pukkandan
					pukkandan