[postprocessor/ffmpeg] embed subtitles in --sub-lang order

This commit is contained in:
kikuyan 2021-08-03 09:16:51 +09:00
parent a803582717
commit 6d60db88cd
1 changed files with 4 additions and 1 deletions

View File

@ -392,7 +392,10 @@ class FFmpegEmbedSubtitlePP(FFmpegPostProcessor):
sub_filenames = []
webm_vtt_warn = False
for lang, sub_info in subtitles.items():
for lang in (self._downloader.params.get('subtitleslangs') or subtitles):
sub_info = subtitles.get(lang)
if not sub_info:
continue
sub_ext = sub_info['ext']
if ext != 'webm' or ext == 'webm' and sub_ext == 'vtt':
sub_langs.append(lang)