mirror of
https://github.com/yt-dlp/yt-dlp.git
synced 2024-11-12 20:23:11 +00:00
[SubtitleConvertor] Fix warning for when sub file is missing
This commit is contained in:
parent
649eaf2077
commit
44311d7126
@ -968,7 +968,7 @@ class FFmpegSubtitlesConvertorPP(FFmpegPostProcessor):
|
||||
sub_filenames = []
|
||||
for lang, sub in subs.items():
|
||||
if not os.path.exists(sub.get('filepath', '')):
|
||||
self.report_warning(f'Skipping embedding {lang} subtitle because the file is missing')
|
||||
self.report_warning(f'Skipping converting {lang} subtitle because the file is missing')
|
||||
continue
|
||||
ext = sub['ext']
|
||||
if ext == new_ext:
|
||||
|
Loading…
Reference in New Issue
Block a user