[FFmpegThumbnailsConvertor] Fix conversion from GIF

Closes #2988
pull/4517/merge
pukkandan 2022-08-01 07:14:32 +05:30
rodzic 30389593c2
commit 5f2a7f7c4a
Nie znaleziono w bazie danych klucza dla tego podpisu
ID klucza GPG: 7EEE9E1E817D0A39
1 zmienionych plików z 2 dodań i 1 usunięć

Wyświetl plik

@ -1083,8 +1083,9 @@ class FFmpegThumbnailsConvertorPP(FFmpegPostProcessor):
thumbnail_conv_filename = replace_extension(thumbnail_filename, target_ext)
self.to_screen(f'Converting thumbnail "{thumbnail_filename}" to {target_ext}')
_, source_ext = os.path.splitext(thumbnail_filename)
self.real_run_ffmpeg(
[(thumbnail_filename, ['-f', 'image2', '-pattern_type', 'none'])],
[(thumbnail_filename, [] if source_ext == '.gif' else ['-f', 'image2', '-pattern_type', 'none'])],
[(thumbnail_conv_filename.replace('%', '%%'), self._options(target_ext))])
return thumbnail_conv_filename