Skip to content

Whisper ASR WebServices

This whisperasr provider allows to configure a transcription task to use the Whisper ASR WebService project.

const transcript = await transcribe("video.mp4", {
model: "whisperasr:default",
})

This whisper service can run locally or in a docker container (see documentation).

CPU
docker run -d -p 9000:9000 -e ASR_MODEL=base -e ASR_ENGINE=openai_whisper onerahmet/openai-whisper-asr-webservice:latest

You can also override the transcription model alias to change the default model used by transcribe.