mirror of
https://github.com/snapotter-hq/SnapOtter.git
synced 2026-08-03 07:46:42 +02:00
29 lines
1.0 KiB
TypeScript
29 lines
1.0 KiB
TypeScript
import { extname } from "node:path";
|
|||
|
|
import type { FastifyInstance } from "fastify";
|
||
|
|
import { z } from "zod";
|
||
|
|
import { audioOutputFor, runMediaTool } from "../../lib/media-tool.js";
|
||
|
|
import { createToolRoute } from "../tool-factory.js";
|
||
|
|
|
||
|
|
const settingsSchema = z.object({});
|
||
|
|
|
||
|
|
export function registerNormalizeAudio(app: FastifyInstance) {
|
||
|
|
createToolRoute(app, {
|
||
|
|
toolId: "normalize-audio",
|
||
|
|
settingsSchema,
|
||
|
|
process: async () => {
|
||
|
|
throw new Error("normalize-audio is v2-only");
|
||
|
|
},
|
||
|
|
processV2: async (ctx) => {
|
||
|
|
const origExt = extname(ctx.inputs[0].filename) || ".mp3";
|
||
|
|
const out = audioOutputFor(origExt);
|
||
|
|
const base = ctx.inputs[0].filename.replace(/\.[^.]+$/, "");
|
||
|
|
const outName = `${base}_normalized${out.ext}`;
|
||
|
|
|
||
|
|
const { outPath } = await runMediaTool(ctx, outName, (inPath, outPath) => {
|
||
|
|
return ["-i", inPath, "-af", "loudnorm=I=-16:TP=-1.5:LRA=11", ...out.encodeArgs, outPath];
|
||
|
|
});
|
||
|
|
return { scratchPath: outPath, filename: outName, contentType: out.contentType };
|
||
|
|
},
|
||
|
|
});
|
||
|
|
}
|