mirror of
https://github.com/snapotter-hq/SnapOtter.git
synced 2026-08-03 07:46:42 +02:00
32 lines
1.1 KiB
TypeScript
32 lines
1.1 KiB
TypeScript
import { extname } from "node:path";
|
|
import type { FastifyInstance } from "fastify";
|
|
import { z } from "zod";
|
|
import { audioOutputFor, buildAtempoChain, runMediaTool } from "../../lib/media-tool.js";
|
|
import { createToolRoute } from "../tool-factory.js";
|
|
|
|
const settingsSchema = z.object({
|
|
factor: z.number().min(0.25).max(4).default(1.5),
|
|
});
|
|
|
|
export function registerAudioSpeed(app: FastifyInstance) {
|
|
createToolRoute(app, {
|
|
toolId: "audio-speed",
|
|
settingsSchema,
|
|
process: async () => {
|
|
throw new Error("audio-speed is v2-only");
|
|
},
|
|
processV2: async (ctx) => {
|
|
const settings = settingsSchema.parse(ctx.settings);
|
|
const origExt = extname(ctx.inputs[0].filename) || ".mp3";
|
|
const out = audioOutputFor(origExt);
|
|
const base = ctx.inputs[0].filename.replace(/\.[^.]+$/, "");
|
|
const outName = `${base}_speed${out.ext}`;
|
|
|
|
const { outPath } = await runMediaTool(ctx, outName, (inPath, outPath) => {
|
|
return ["-i", inPath, "-af", buildAtempoChain(settings.factor), ...out.encodeArgs, outPath];
|
|
});
|
|
return { scratchPath: outPath, filename: outName, contentType: out.contentType };
|
|
},
|
|
});
|
|
}
|