mirror of
https://github.com/yt-dlp/yt-dlp.git
synced 2024-11-01 01:03:04 +01:00
YoutubeIE: extract the thumbnail in the best possible quality
This commit is contained in:
parent
9d7b44b4cc
commit
7763b04e5f
@ -473,7 +473,12 @@ def _real_extract(self, url):
|
|||||||
video_title = compat_urllib_parse.unquote_plus(video_info['title'][0])
|
video_title = compat_urllib_parse.unquote_plus(video_info['title'][0])
|
||||||
|
|
||||||
# thumbnail image
|
# 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')
|
self._downloader.report_warning(u'unable to extract video thumbnail')
|
||||||
video_thumbnail = ''
|
video_thumbnail = ''
|
||||||
else: # don't panic if we can't find it
|
else: # don't panic if we can't find it
|
||||||
|
Loading…
Reference in New Issue
Block a user