mirror of
https://github.com/yt-dlp/yt-dlp.git
synced 2024-11-03 18:40:17 +01:00
[ThumbnailsConvertor] Fix for when there are no thumbnails
Closes #2125
This commit is contained in:
parent
ee7b9bdf5d
commit
6a17677577
@ -1092,12 +1092,12 @@ def run(self, info):
|
||||
files_to_delete = []
|
||||
has_thumbnail = False
|
||||
|
||||
for idx, thumbnail_dict in enumerate(info['thumbnails']):
|
||||
if 'filepath' not in thumbnail_dict:
|
||||
for idx, thumbnail_dict in enumerate(info.get('thumbnails') or []):
|
||||
original_thumbnail = thumbnail_dict.get('filepath')
|
||||
if not original_thumbnail:
|
||||
continue
|
||||
has_thumbnail = True
|
||||
self.fixup_webp(info, idx)
|
||||
original_thumbnail = thumbnail_dict['filepath']
|
||||
_, thumbnail_ext = os.path.splitext(original_thumbnail)
|
||||
if thumbnail_ext:
|
||||
thumbnail_ext = thumbnail_ext[1:].lower()
|
||||
|
Loading…
Reference in New Issue
Block a user