mirror of
				https://github.com/yt-dlp/yt-dlp.git
				synced 2025-10-31 14:45:14 +00:00 
			
		
		
		
	[vimeo] Improve thumbnail extraction
This commit is contained in:
		| @@ -220,8 +220,10 @@ class VimeoIE(SubtitlesInfoExtractor): | ||||
|  | ||||
|         # Extract video thumbnail | ||||
|         video_thumbnail = config["video"].get("thumbnail") | ||||
|         if video_thumbnail is None and config["video"].get("thumbs"): | ||||
|             _, video_thumbnail = sorted((int(width), t_url) for (width, t_url) in config["video"]["thumbs"].items())[-1] | ||||
|         if video_thumbnail is None: | ||||
|             video_thumbs = config["video"].get("thumbs") | ||||
|             if video_thumbs and isinstance(video_thumbs, dict): | ||||
|                 _, video_thumbnail = sorted((int(width), t_url) for (width, t_url) in video_thumbs.items())[-1] | ||||
|  | ||||
|         # Extract video description | ||||
|         video_description = None | ||||
|   | ||||
		Reference in New Issue
	
	Block a user
	 Sergey M.
					Sergey M.