Wyoming protocol server for the faster-whisper speech to text system.
Clone the repository and set up Python virtual environment:
git clone https://github.com/rhasspy/wyoming-faster-whisper.git
cd wyoming-faster-whisper
script/setupRun a server anyone can connect to:
script/run --model tiny-int8 --language en --uri 'tcp://0.0.0.0:10300' --data-dir /data --download-dir /dataThe --model can also be a HuggingFace model like Systran/faster-distil-whisper-small.en
docker run -it -p 10300:10300 -v /path/to/local/data:/data rhasspy/wyoming-whisper \
--data-dir /data --model tiny-int8 --language enNOTE: Models are downloaded to the first --data-dir directory.