mirror of
https://github.com/yt-dlp/yt-dlp.git
synced 2024-11-02 06:27:21 +00:00
[SubtitleConvertor] Do not attempt to convert unsupported formats
This commit is contained in:
parent
f0bb28504c
commit
e464e56115
|
@ -972,9 +972,9 @@ def run(self, info):
|
|||
if ext == new_ext:
|
||||
self.to_screen(f'Subtitle file for {new_ext} is already in the requested format')
|
||||
continue
|
||||
elif ext == 'json':
|
||||
elif ext not in self.SUPPORTED_EXTS:
|
||||
self.to_screen(
|
||||
'You have requested to convert json subtitles into another format, '
|
||||
f'You have requested to convert {ext} subtitles into another format, '
|
||||
'which is currently not possible')
|
||||
continue
|
||||
old_file = sub['filepath']
|
||||
|
|
Loading…
Reference in a new issue