mirror of
https://github.com/ytdl-org/youtube-dl.git
synced 2024-12-22 07:56:49 +00:00
Corrected a small error
This commit is contained in:
parent
437f1dc159
commit
f4aa8c13b5
@ -2428,17 +2428,18 @@ class YoutubeDL(object):
|
||||
if self.params.get('writethumbnail', False):
|
||||
thumbnails = info_dict.get('thumbnails')
|
||||
thumbnailformat = self.params.get('thumbnailformat', False)
|
||||
if thumbnailformat:
|
||||
if thumbnailformat in [i.get('id') for i in thumbnails]:
|
||||
thumbnails = [i for i in thumbnails if i.get('id')==thumbnailformat]
|
||||
if thumbnails:
|
||||
if thumbnailformat:
|
||||
if thumbnailformat in [i.get('id') for i in thumbnails]:
|
||||
thumbnails = [i for i in thumbnails if i.get('id')==thumbnailformat]
|
||||
else:
|
||||
self.report_warning(
|
||||
'Thumbnail ID unavailable, falling back to default.'
|
||||
' Check available thumbnail formats with the option --list-thumbnails'
|
||||
)
|
||||
thumbnails = [thumbnails[-1]]
|
||||
else:
|
||||
self.report_warning(
|
||||
'Thumbnail ID unavailable, falling back to default.'
|
||||
' Check available thumbnail formats with the option --list-thumbnails'
|
||||
)
|
||||
thumbnails = [thumbnails[-1]]
|
||||
else:
|
||||
thumbnails = [thumbnails[-1]]
|
||||
elif self.params.get('write_all_thumbnails', False):
|
||||
thumbnails = info_dict.get('thumbnails')
|
||||
else:
|
||||
|
Loading…
Reference in New Issue
Block a user