|
|
|
|
|
by daakus
259 days ago
|
|
Shameless plug: A brutally minimalist Linux only, whisper.cpp only app: https://github.com/daaku/whispy I wanted speech-to-text in arbitrary applications on my Linux laptop, and I realized that loading the model was one of the slowest parts. So a daemon process, which triggers recording on/off using SIGUSR2, records using `pw-record` and passes the data to a loaded whisper model, which finally types the text using `ydotool` turned out to be a relatively simple application to build. ~200 lines in Go, or ~150 in Rust (check history for Rust version). |
|