mirror of
https://github.com/wukko/cobalt.git
synced 2025-05-24 18:42:09 +02:00
web/queue: decompose ffmpeg construction in createSavePipeline
This commit is contained in:
parent
d6ad74d429
commit
3d92a85ba2
@ -59,6 +59,56 @@ const mediaIcons: { [key: string]: CobaltPipelineResultFileType } = {
|
|||||||
gif: "image"
|
gif: "image"
|
||||||
}
|
}
|
||||||
|
|
||||||
|
const makeRemuxArgs = (info: CobaltLocalProcessingResponse) => {
|
||||||
|
const ffargs = ["-c:v", "copy"];
|
||||||
|
|
||||||
|
if (info.type === "merge") {
|
||||||
|
ffargs.push("-c:a", "copy");
|
||||||
|
} else if (info.type === "mute") {
|
||||||
|
ffargs.push("-an");
|
||||||
|
}
|
||||||
|
|
||||||
|
ffargs.push(
|
||||||
|
...(info.output.metadata ? ffmpegMetadataArgs(info.output.metadata) : [])
|
||||||
|
);
|
||||||
|
|
||||||
|
return ffargs;
|
||||||
|
}
|
||||||
|
|
||||||
|
const makeAudioArgs = (info: CobaltLocalProcessingResponse) => {
|
||||||
|
if (!info.audio) {
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
const ffargs = [
|
||||||
|
"-vn",
|
||||||
|
...(info.audio.copy ? ["-c:a", "copy"] : ["-b:a", `${info.audio.bitrate}k`]),
|
||||||
|
...(info.output.metadata ? ffmpegMetadataArgs(info.output.metadata) : [])
|
||||||
|
];
|
||||||
|
|
||||||
|
if (info.audio.format === "mp3" && info.audio.bitrate === "8") {
|
||||||
|
ffargs.push("-ar", "12000");
|
||||||
|
}
|
||||||
|
|
||||||
|
if (info.audio.format === "opus") {
|
||||||
|
ffargs.push("-vbr", "off")
|
||||||
|
}
|
||||||
|
|
||||||
|
const outFormat = info.audio.format === "m4a" ? "ipod" : info.audio.format;
|
||||||
|
|
||||||
|
ffargs.push('-f', outFormat);
|
||||||
|
return ffargs;
|
||||||
|
}
|
||||||
|
|
||||||
|
const makeGifArgs = () => {
|
||||||
|
return [
|
||||||
|
"-vf",
|
||||||
|
"scale=-1:-1:flags=lanczos,split[s0][s1];[s0]palettegen[p];[s1][p]paletteuse",
|
||||||
|
"-loop", "0",
|
||||||
|
"-f", "gif"
|
||||||
|
];
|
||||||
|
}
|
||||||
|
|
||||||
export const createSavePipeline = (info: CobaltLocalProcessingResponse, request: CobaltSaveRequestBody) => {
|
export const createSavePipeline = (info: CobaltLocalProcessingResponse, request: CobaltSaveRequestBody) => {
|
||||||
// this is a pre-queue part of processing,
|
// this is a pre-queue part of processing,
|
||||||
// so errors have to be returned via a regular dialog
|
// so errors have to be returned via a regular dialog
|
||||||
@ -100,57 +150,30 @@ export const createSavePipeline = (info: CobaltLocalProcessingResponse, request:
|
|||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
|
let ffargs: string[];
|
||||||
|
let workerType: 'encode' | 'remux';
|
||||||
|
|
||||||
if (["merge", "mute"].includes(info.type)) {
|
if (["merge", "mute"].includes(info.type)) {
|
||||||
const ffargs = ["-c:v", "copy"];
|
workerType = "remux";
|
||||||
|
ffargs = makeRemuxArgs(info);
|
||||||
if (info.type === "merge") {
|
|
||||||
ffargs.push("-c:a", "copy");
|
|
||||||
} else if (info.type === "mute") {
|
|
||||||
ffargs.push("-an");
|
|
||||||
}
|
|
||||||
|
|
||||||
ffargs.push(
|
|
||||||
...(info.output.metadata ? ffmpegMetadataArgs(info.output.metadata) : [])
|
|
||||||
);
|
|
||||||
|
|
||||||
pipeline.push({
|
|
||||||
worker: "remux",
|
|
||||||
workerId: crypto.randomUUID(),
|
|
||||||
parentId,
|
|
||||||
workerArgs: {
|
|
||||||
files: [],
|
|
||||||
ffargs,
|
|
||||||
output: {
|
|
||||||
type: info.output.type,
|
|
||||||
format: info.output.filename.split(".").pop(),
|
|
||||||
},
|
|
||||||
},
|
|
||||||
});
|
|
||||||
} else if (info.type === "audio") {
|
} else if (info.type === "audio") {
|
||||||
if (!info.audio) {
|
const args = makeAudioArgs(info);
|
||||||
|
|
||||||
|
if (!args) {
|
||||||
return error("pipeline.missing_response_data");
|
return error("pipeline.missing_response_data");
|
||||||
}
|
}
|
||||||
|
|
||||||
const ffargs = [
|
workerType = "encode";
|
||||||
"-vn",
|
ffargs = args;
|
||||||
...(info.audio.copy ? ["-c:a", "copy"] : ["-b:a", `${info.audio.bitrate}k`]),
|
} else if (info.type === "gif") {
|
||||||
...(info.output.metadata ? ffmpegMetadataArgs(info.output.metadata) : [])
|
workerType = "encode";
|
||||||
];
|
ffargs = makeGifArgs();
|
||||||
|
} else {
|
||||||
if (info.audio.format === "mp3" && info.audio.bitrate === "8") {
|
throw new Error("unknown work type: " + info.type);
|
||||||
ffargs.push("-ar", "12000");
|
|
||||||
}
|
}
|
||||||
|
|
||||||
if (info.audio.format === "opus") {
|
|
||||||
ffargs.push("-vbr", "off")
|
|
||||||
}
|
|
||||||
|
|
||||||
const outFormat = info.audio.format === "m4a" ? "ipod" : info.audio.format;
|
|
||||||
|
|
||||||
ffargs.push('-f', outFormat);
|
|
||||||
|
|
||||||
pipeline.push({
|
pipeline.push({
|
||||||
worker: "encode",
|
worker: workerType,
|
||||||
workerId: crypto.randomUUID(),
|
workerId: crypto.randomUUID(),
|
||||||
parentId,
|
parentId,
|
||||||
workerArgs: {
|
workerArgs: {
|
||||||
@ -162,26 +185,6 @@ export const createSavePipeline = (info: CobaltLocalProcessingResponse, request:
|
|||||||
},
|
},
|
||||||
},
|
},
|
||||||
});
|
});
|
||||||
} else if (info.type === "gif") {
|
|
||||||
pipeline.push({
|
|
||||||
worker: "encode",
|
|
||||||
workerId: crypto.randomUUID(),
|
|
||||||
parentId,
|
|
||||||
workerArgs: {
|
|
||||||
files: [],
|
|
||||||
ffargs: [
|
|
||||||
"-vf",
|
|
||||||
"scale=-1:-1:flags=lanczos,split[s0][s1];[s0]palettegen[p];[s1][p]paletteuse",
|
|
||||||
"-loop", "0",
|
|
||||||
"-f", "gif"
|
|
||||||
],
|
|
||||||
output: {
|
|
||||||
type: info.output.type,
|
|
||||||
format: info.output.filename.split(".").pop(),
|
|
||||||
},
|
|
||||||
},
|
|
||||||
});
|
|
||||||
}
|
|
||||||
|
|
||||||
addItem({
|
addItem({
|
||||||
id: parentId,
|
id: parentId,
|
||||||
|
Loading…
x
Reference in New Issue
Block a user