A simple web API that uses FFmpeg to process audio files.
Currently, it only works with audio files.
Start the server:
bun run dev- body: multipart/form-data
- file:
audioFileThe audio file to process - args:
argsJSON array of allowed FFmpeg arguments
- file:
curl -X POST http://localhost:8080/process \
-F "audioFile=@/path/to/your/file.mp3" \
-F "args=[\"-ar\", \"44100\", \"-f\", \"mp3\"]"