Compare commits

...

2 Commits

Author SHA1 Message Date
blankie
f94c1f95c5
Merge 55cc0d5bf4 into eb15fd5a32 2024-11-17 21:40:24 +05:30
blank X
55cc0d5bf4
[ffmpeg] Set default subtitles regardless of container 2022-05-12 08:37:15 +07:00

View File

@ -648,6 +648,8 @@ class FFmpegEmbedSubtitlePP(FFmpegPostProcessor):
# Don't copy the existing subtitles, we may be running the # Don't copy the existing subtitles, we may be running the
# postprocessor a second time # postprocessor a second time
'-map', '-0:s', '-map', '-0:s',
# Mark the first subtitle track as default
'-disposition:s:0', 'default',
] ]
for i, (lang, name) in enumerate(zip(sub_langs, sub_names)): for i, (lang, name) in enumerate(zip(sub_langs, sub_names)):
opts.extend(['-map', f'{i + 1}:0']) opts.extend(['-map', f'{i + 1}:0'])