dockerfiles/whisper-asr-webservice/README.md

709 B

whisper-asr-webservice

Whisper ASR Webservice is a free transcription service powered by Whisper AI.

It supports following whisper models:

Server

$ docker compose up -d
$ curl http://127.0.0.1:9000/docs

Client

$ wget -O audio.wav https://github.com/rhasspy/piper/raw/master/notebooks/wav/en/success.wav
$ curl -F audio_file=@audio.wav "http://127.0.0.1:9000/asr?task=transcribe&output=srt"
$ curl -F audio_file=@audio.wav "http://127.0.0.1:9000/detect-language"