mirror of
				https://github.com/yt-dlp/yt-dlp.git
				synced 2025-10-31 14:45:14 +00:00 
			
		
		
		
	[downloader/ffmpeg] Fix bug in initializing FFmpegPostProcessor
				
					
				
			When `FFmpegFD` initializes the PP, it passes `self` as the `downloader` But it does not have a `_postprocessor_hooks` attribute Closes #1211
This commit is contained in:
		| @@ -90,9 +90,7 @@ class PostProcessor(metaclass=PostProcessorMetaClass): | ||||
|     def set_downloader(self, downloader): | ||||
|         """Sets the downloader for this PP.""" | ||||
|         self._downloader = downloader | ||||
|         if not downloader: | ||||
|             return | ||||
|         for ph in downloader._postprocessor_hooks: | ||||
|         for ph in getattr(downloader, '_postprocessor_hooks', []): | ||||
|             self.add_progress_hook(ph) | ||||
|  | ||||
|     @staticmethod | ||||
|   | ||||
		Reference in New Issue
	
	Block a user
	 pukkandan
					pukkandan