logo

youtube-dl

[mirror] Download/Watch videos from video hosters
commit: c0e5d856314bf5fb7162902c53c9df0be1a315c0
parent ca7fa3dcb321f3de429cac9e83fda737ac0be4c9
Author: Sergey M <dstftw@gmail.com>
Date:   Fri, 28 Feb 2014 18:00:12 +0700

[vimeo] Improve thumbnail extraction

Diffstat:

Myoutube_dl/extractor/vimeo.py6++++--
1 file changed, 4 insertions(+), 2 deletions(-)

diff --git a/youtube_dl/extractor/vimeo.py b/youtube_dl/extractor/vimeo.py @@ -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