yarn install
yarn dev
yarn install
yarn start
After start the app, you can access an api client and send POST request with a file using the "multipart/form-data" on the Request Body to send a file.
curl --request POST
--url http://localhost:8989/upload
--header 'content-type: multipart/form-data'
--form file=@file
After that you can access the folder whisper-app/public/output to check the transcription
SUPPORTED_FILE_FORMATS = [ ".m4a", ".mp3", ".webm", ".mp4", ".mpga", ".wav", ".mpeg", ];