mirror of
				https://github.com/yt-dlp/yt-dlp.git
				synced 2025-10-30 22:25:19 +00:00 
			
		
		
		
	[embedthumbnail] Fix bug where jpeg thumbnails were converted again
Closes #297
This commit is contained in:
		| @@ -59,7 +59,7 @@ class EmbedThumbnailPP(FFmpegPostProcessor): | ||||
|         original_thumbnail = thumbnail_filename = info['thumbnails'][-1]['filepath'] | ||||
|  | ||||
|         # Convert unsupported thumbnail formats to JPEG (see #25687, #25717) | ||||
|         _, thumbnail_ext = os.path.splitext(thumbnail_filename) | ||||
|         thumbnail_ext = os.path.splitext(thumbnail_filename)[1][1:] | ||||
|         if thumbnail_ext not in ('jpg', 'png'): | ||||
|             thumbnail_filename = convertor.convert_thumbnail(thumbnail_filename, 'jpg') | ||||
|             thumbnail_ext = 'jpg' | ||||
|   | ||||
		Reference in New Issue
	
	Block a user
	 pukkandan
					pukkandan