1
2
mirror of https://github.com/vimagick/dockerfiles synced 2024-06-16 11:58:47 +00:00
dockerfiles/whisper-asr-webservice
2024-03-27 16:16:14 +08:00
..
docker-compose.yml add whisper-asr-webservice 2024-03-27 16:16:14 +08:00
README.md add whisper-asr-webservice 2024-03-27 16:16:14 +08:00

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"