https://github.com/notcoffee418/vosk-stt-dotnet-example
Cancelled project with implemented STT for reference using vosk. see readme
https://github.com/notcoffee418/vosk-stt-dotnet-example
Last synced: over 1 year ago
JSON representation
Cancelled project with implemented STT for reference using vosk. see readme
- Host: GitHub
- URL: https://github.com/notcoffee418/vosk-stt-dotnet-example
- Owner: NotCoffee418
- Created: 2023-08-05T22:52:52.000Z (almost 3 years ago)
- Default Branch: main
- Last Pushed: 2023-08-05T22:54:12.000Z (almost 3 years ago)
- Last Synced: 2025-01-23T08:16:17.324Z (over 1 year ago)
- Language: C#
- Size: 9.77 KB
- Stars: 1
- Watchers: 0
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Vosk STT Example
This is a scrapped project with fully implemented:
- Vosk STT
- DotEnv config for c#
- Model download script
Using the largest model (3.75GB extracted) it uses 12GB ram. There are more [lightweight models](https://alphacephei.com/vosk/models).
**Good**
- It just works
- On a lightweight model it's probably lightweight
- Easy to use (nuget package)
**Bad**
- It's not super accurate on the best model, misses some obvious words
- seems to cut off the last chunk of text (can be manually fixed through partial interpretation)
## Dev
```ps1
./setup-windows.ps1
docker-compose -f docker-compose.dev.yml up
```
## Production
```bash
git clone https://github.com/NotCoffee418/vod-summary.git
cd vod-summary
./setup-linux.sh
docker compose up
```