mirror of
https://github.com/yt-dlp/yt-dlp.git
synced 2024-11-14 20:38:11 -05:00
[ThumbnailsConvertor] Fix for when there are no thumbnails
Closes #2125
This commit is contained in:
parent
ee7b9bdf5d
commit
6a17677577
1 changed files with 3 additions and 3 deletions
|
@ -1092,12 +1092,12 @@ def run(self, info):
|
||||||
files_to_delete = []
|
files_to_delete = []
|
||||||
has_thumbnail = False
|
has_thumbnail = False
|
||||||
|
|
||||||
for idx, thumbnail_dict in enumerate(info['thumbnails']):
|
for idx, thumbnail_dict in enumerate(info.get('thumbnails') or []):
|
||||||
if 'filepath' not in thumbnail_dict:
|
original_thumbnail = thumbnail_dict.get('filepath')
|
||||||
|
if not original_thumbnail:
|
||||||
continue
|
continue
|
||||||
has_thumbnail = True
|
has_thumbnail = True
|
||||||
self.fixup_webp(info, idx)
|
self.fixup_webp(info, idx)
|
||||||
original_thumbnail = thumbnail_dict['filepath']
|
|
||||||
_, thumbnail_ext = os.path.splitext(original_thumbnail)
|
_, thumbnail_ext = os.path.splitext(original_thumbnail)
|
||||||
if thumbnail_ext:
|
if thumbnail_ext:
|
||||||
thumbnail_ext = thumbnail_ext[1:].lower()
|
thumbnail_ext = thumbnail_ext[1:].lower()
|
||||||
|
|
Loading…
Reference in a new issue