web/queue: add subtitles independently from remux type

so that you can have a mute video with subtitles
This commit is contained in:
wukko 2025-06-20 18:30:39 +06:00
parent a44bea6b50
commit 17ab8dd709
No known key found for this signature in database
GPG Key ID: 3E30B3F26C7B4AA2

View File

@ -68,17 +68,17 @@ const makeRemuxArgs = (info: CobaltLocalProcessingResponse) => {
if (["merge", "remux"].includes(info.type)) {
ffargs.push("-c:a", "copy");
if (info.output.subtitles) {
ffargs.push(
"-c:s",
info.output.filename.endsWith(".mp4") ? "mov_text" : "webvtt"
);
}
} else if (info.type === "mute") {
ffargs.push("-an");
}
if (info.output.subtitles) {
ffargs.push(
"-c:s",
info.output.filename.endsWith(".mp4") ? "mov_text" : "webvtt"
);
}
ffargs.push(
...(info.output.metadata ? ffmpegMetadataArgs(info.output.metadata) : [])
);