From 649eaf2077aff42e67b0e186a4ddcbe63f13e8f3 Mon Sep 17 00:00:00 2001 From: ClosedPort22 <44864697+ClosedPort22@users.noreply.github.com> Date: Tue, 20 Aug 2024 23:00:05 +0800 Subject: [PATCH] [SubtitleConvertor] Fix TTML conversion --- yt_dlp/postprocessor/ffmpeg.py | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/yt_dlp/postprocessor/ffmpeg.py b/yt_dlp/postprocessor/ffmpeg.py index 0f64a9b94e..4f352a0795 100644 --- a/yt_dlp/postprocessor/ffmpeg.py +++ b/yt_dlp/postprocessor/ffmpeg.py @@ -948,6 +948,8 @@ class FFmpegFixupDuplicateMoovPP(FFmpegCopyStreamPP): class FFmpegSubtitlesConvertorPP(FFmpegPostProcessor): SUPPORTED_EXTS = MEDIA_EXTENSIONS.subtitles + _DFXP_EXTS = ('dfxp', 'ttml', 'tt') + _SUPPORTED_INPUT_EXTS = (*SUPPORTED_EXTS, *_DFXP_EXTS) def __init__(self, downloader=None, format=None): super().__init__(downloader) @@ -972,7 +974,7 @@ 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 not in self.SUPPORTED_EXTS: + elif ext not in self._SUPPORTED_INPUT_EXTS: self.to_screen( f'You have requested to convert {ext} subtitles into another format, ' 'which is currently not possible') @@ -981,7 +983,7 @@ def run(self, info): sub_filenames.append(old_file) new_file = replace_extension(old_file, new_ext) - if ext in ('dfxp', 'ttml', 'tt'): + if ext in self._DFXP_EXTS: self.report_warning( 'You have requested to convert dfxp (TTML) subtitles into another format, ' 'which results in style information loss')