From 44311d71264094f1f8519ee21e632fed3bc2991b Mon Sep 17 00:00:00 2001 From: ClosedPort22 <44864697+ClosedPort22@users.noreply.github.com> Date: Tue, 20 Aug 2024 23:06:21 +0800 Subject: [PATCH] [SubtitleConvertor] Fix warning for when sub file is missing --- yt_dlp/postprocessor/ffmpeg.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/yt_dlp/postprocessor/ffmpeg.py b/yt_dlp/postprocessor/ffmpeg.py index 4f352a0795..2054fdc6c8 100644 --- a/yt_dlp/postprocessor/ffmpeg.py +++ b/yt_dlp/postprocessor/ffmpeg.py @@ -968,7 +968,7 @@ def run(self, info): 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: