mirror of
				https://github.com/yt-dlp/yt-dlp.git
				synced 2025-10-31 14:45:14 +00:00 
			
		
		
		
	[YoutubeDL] set the 'thumbnails' field if the info_dict has the 'thumbnails' field
Since the '--write-thumbnail' uses the 'thumbnails' field and we didn't updated the info_dict, it wouldn't detect the thumbnail. (fixes #4812)
This commit is contained in:
		| @@ -958,7 +958,7 @@ class YoutubeDL(object): | |||||||
|         if thumbnails is None: |         if thumbnails is None: | ||||||
|             thumbnail = info_dict.get('thumbnail') |             thumbnail = info_dict.get('thumbnail') | ||||||
|             if thumbnail: |             if thumbnail: | ||||||
|                 thumbnails = [{'url': thumbnail}] |                 info_dict['thumbnails'] = thumbnails = [{'url': thumbnail}] | ||||||
|         if thumbnails: |         if thumbnails: | ||||||
|             thumbnails.sort(key=lambda t: ( |             thumbnails.sort(key=lambda t: ( | ||||||
|                 t.get('preference'), t.get('width'), t.get('height'), |                 t.get('preference'), t.get('width'), t.get('height'), | ||||||
|   | |||||||
		Reference in New Issue
	
	Block a user
	 Jaime Marquínez Ferrándiz
					Jaime Marquínez Ferrándiz