feat: added audio speed change tool with adjustable speed and output format options

This commit is contained in:
AshAnand34
2025-07-07 15:17:14 -07:00
parent 76245edd34
commit a1b929e45c
5 changed files with 215 additions and 1 deletions

View File

@@ -0,0 +1,8 @@
import { InitialValuesType } from './types';
export function main(
input: File | null,
options: InitialValuesType
): File | null {
return input;
}