[ThumbnailsConvertor] Fix for when there are no thumbnails

Closes #2125
This commit is contained in:
pukkandan 2021-12-27 03:18:11 +05:30
parent ee7b9bdf5d
commit 6a17677577
No known key found for this signature in database
GPG Key ID: 0F00D95A001F4698
1 changed files with 3 additions and 3 deletions

View File

@ -1092,12 +1092,12 @@ class FFmpegThumbnailsConvertorPP(FFmpegPostProcessor):
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()