jp6/cu129/: wyoming-faster-whisper-2.5.0 metadata and description
Wyoming Server for Faster Whisper
| author_email | Michael Hansen <mike@rhasspy.org> |
| classifiers |
|
| description_content_type | text/markdown |
| dynamic |
|
| keywords | rhasspy,wyoming,whisper,stt |
| license | MIT |
| license_file |
|
| metadata_version | 2.4 |
| project_urls |
|
| provides_extras |
|
| requires_dist |
|
| requires_python | <3.13,>=3.8.1 |
Because this project isn't in the mirror_whitelist,
no releases from root/pypi are included.
| File | Tox results | History |
|---|---|---|
wyoming_faster_whisper-2.5.0-py3-none-any.whl
|
|
Wyoming Faster Whisper
Wyoming protocol server for the faster-whisper speech to text system.
Home Assistant Add-on
Local Install
Clone the repository and set up Python virtual environment:
git clone https://github.com/rhasspy/wyoming-faster-whisper.git
cd wyoming-faster-whisper
script/setup
Run 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 /data
The --model can also be a HuggingFace model like Systran/faster-distil-whisper-small.en
Docker Image
docker run -it -p 10300:10300 -v /path/to/local/data:/data rhasspy/wyoming-whisper \
--model tiny-int8 --language en
NOTE: Models are downloaded temporarily to the HF_HUB_CACHE directory, which defaults to ~/.cache/huggingface/hub.
You may need to adjust this environment variable when using a read-only root filesystem (e.g., HF_HUB_CACHE=/tmp).