mirror of
https://github.com/imputnet/cobalt.git
synced 2025-06-27 17:08:28 +00:00
web/queue: add subtitles independently from remux type
so that you can have a mute video with subtitles
This commit is contained in:
parent
a44bea6b50
commit
17ab8dd709
@ -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) : [])
|
||||
);
|
||||
|
Loading…
Reference in New Issue
Block a user