mirror of
https://github.com/yt-dlp/yt-dlp.git
synced 2024-11-07 20:30:41 -05:00
[ThumbnailsConvertor] Fix filename escaping
Closes #4604 Authored by: pukkandan, dirkf
This commit is contained in:
parent
f4b2c59cfe
commit
8522226d2f
1 changed files with 3 additions and 3 deletions
|
@ -1081,9 +1081,9 @@ def fixup_webp(self, info, idx=-1):
|
||||||
|
|
||||||
@staticmethod
|
@staticmethod
|
||||||
def _options(target_ext):
|
def _options(target_ext):
|
||||||
|
yield from ('-update', '1')
|
||||||
if target_ext == 'jpg':
|
if target_ext == 'jpg':
|
||||||
return ['-bsf:v', 'mjpeg2jpeg']
|
yield from ('-bsf:v', 'mjpeg2jpeg')
|
||||||
return []
|
|
||||||
|
|
||||||
def convert_thumbnail(self, thumbnail_filename, target_ext):
|
def convert_thumbnail(self, thumbnail_filename, target_ext):
|
||||||
thumbnail_conv_filename = replace_extension(thumbnail_filename, target_ext)
|
thumbnail_conv_filename = replace_extension(thumbnail_filename, target_ext)
|
||||||
|
@ -1092,7 +1092,7 @@ def convert_thumbnail(self, thumbnail_filename, target_ext):
|
||||||
_, source_ext = os.path.splitext(thumbnail_filename)
|
_, source_ext = os.path.splitext(thumbnail_filename)
|
||||||
self.real_run_ffmpeg(
|
self.real_run_ffmpeg(
|
||||||
[(thumbnail_filename, [] if source_ext == '.gif' else ['-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))])
|
[(thumbnail_conv_filename, self._options(target_ext))])
|
||||||
return thumbnail_conv_filename
|
return thumbnail_conv_filename
|
||||||
|
|
||||||
def run(self, info):
|
def run(self, info):
|
||||||
|
|
Loading…
Reference in a new issue