diff options
| author | Jaime Marquínez Ferrándiz <jaime.marquinez.ferrandiz@gmail.com> | 2013-07-07 21:21:15 +0200 | 
|---|---|---|
| committer | Jaime Marquínez Ferrándiz <jaime.marquinez.ferrandiz@gmail.com> | 2013-07-07 21:21:15 +0200 | 
| commit | 7763b04e5fac8b282dcbfcf5329941b485ef541f (patch) | |
| tree | 2b55306032cbf915fc76db32714767ee7b1ed16e | |
| parent | 9d7b44b4cc77fab01f0fbb8d28ec22fe1c3f3c76 (diff) | |
YoutubeIE: extract the thumbnail in the best possible quality
| -rw-r--r-- | youtube_dl/extractor/youtube.py | 7 | 
1 files changed, 6 insertions, 1 deletions
| diff --git a/youtube_dl/extractor/youtube.py b/youtube_dl/extractor/youtube.py index 7a2a8a4f8..e2296d153 100644 --- a/youtube_dl/extractor/youtube.py +++ b/youtube_dl/extractor/youtube.py @@ -473,7 +473,12 @@ class YoutubeIE(InfoExtractor):          video_title = compat_urllib_parse.unquote_plus(video_info['title'][0])          # thumbnail image -        if 'thumbnail_url' not in video_info: +        # We try first to get a high quality image: +        m_thumb = re.search(r'<span itemprop="thumbnail".*?href="(.*?)">', +                            video_webpage, re.DOTALL) +        if m_thumb is not None: +            video_thumbnail = m_thumb.group(1) +        elif 'thumbnail_url' not in video_info:              self._downloader.report_warning(u'unable to extract video thumbnail')              video_thumbnail = ''          else:   # don't panic if we can't find it | 
