mirror of
				https://github.com/yt-dlp/yt-dlp.git
				synced 2025-10-30 22:25:19 +00:00 
			
		
		
		
	[embedsubtitle] Fix error when duration is unknown
This commit is contained in:
		| @@ -545,7 +545,7 @@ class FFmpegEmbedSubtitlePP(FFmpegPostProcessor): | ||||
|             return [], information | ||||
|  | ||||
|         filename = information['filepath'] | ||||
|         if self._duration_mismatch( | ||||
|         if information.get('duration') and self._duration_mismatch( | ||||
|                 self._get_real_video_duration(information, False), information['duration']): | ||||
|             self.to_screen(f'Skipping {self.pp_key()} since the real and expected durations mismatch') | ||||
|             return [], information | ||||
|   | ||||
		Reference in New Issue
	
	Block a user
	 pukkandan
					pukkandan