vinoWhisper
Live captions for anything playing on your Linux laptop, running on the NPU that came with it. No cloud, no API key, no account, no audio leaving the machine. Point it at whatever is playing and it captions in your terminal, or in a floating box above everything else on screen. There is nothing to interact with: start it and it goes.
pip install vinowhisper && vinowhisper-setup && vinowhisper-caption
Why this exists
To be upfront about the bias: I did not build this because local speech-to-text is hard to find. I built it because my laptop has an Intel NPU rated at 16 TOPS that was doing absolutely nothing, and captioning a video turns out to be the rare workload that suits it: continuous, latency-sensitive, and small enough to fit. 16 TOPS is a coprocessor, not a GPU, and whisper-small.en is one of the genuinely useful models that fits in it.
So the pitch is not "another Whisper wrapper." It is: the transcription runs on
a chip that is otherwise idle, so it costs you no CPU, no GPU, no fan, and no
network. openvino-genai's WhisperPipeline with device="NPU" does the
work, the same idea as vinoAuthFace,
different feature.
Measured on this laptop (Wildcat Lake, stepping A0), whisper-small.en:
Per 30s window, generate() |
1.19s |
| First streamed token | 0.204s |
| First readable sentence | 0.32s |
| Idle cost after you stop | zero, the server exits itself |
What makes it different from a shell script around Whisper
Words are never rewritten once printed. The stitcher runs LocalAgreement-2:
a word is committed only when two overlapping windows independently agree on
it. That is why the transcript can live in your terminal's own scrollback,
where it survives quitting and where your terminal's selection and search still
work on it. The hearing… line is the words heard once and still waiting on a
second opinion, so the two-cycle commit delay is visible rather than felt as
a freeze.
It scales to zero, the systemd way. The NPU model load costs 10-30s, so something has to hold it. A socket unit owns the port at boot with no process running, systemd spawns the server on the first connection, and the server exits itself after 30 minutes idle. Serverless, on your laptop, with no framework.
The model download is verified. The export is hashed against pins in
vinowhisper/model_digests.json before anything loads it, and the check tells
a toolchain upgrade apart from bytes changing under a toolchain that did not.
Details in SECURITY.md.
A missing NPU degrades instead of bricking. Selection walks NPU, then GPU,
then CPU, and a fallback is never silent: it shows up in the server journal, in
/health, in vinowhisper-doctor, and on the status bar as a red border.
It tells you how to fix it. Nearly every error path here prints the command that resolves it, in your distro's package names, for eight distro families.
The overlay is optional, and native. vinowhisper-gui is a 5.6MB Rust
binary that floats a caption box above every window, fullscreen video
included, with a tray icon and a global shortcut. It links nothing but libc
and adds nothing to the Python install. It draws the same event stream as the
terminal UI rather than reimplementing any of it.
docs/gui.md
Install
curl -fsSL https://raw.githubusercontent.com/karanshukla/vinoWhisper/main/scripts/install.sh | bash
That installs uv, clones the repo, builds the
environment, and hands over to vinowhisper-setup, which is where every
machine-specific decision happens: your capture tool, your NPU driver, the
model export your device needs, and systemd units generated against paths that
actually exist. It prints every command before running it and asks first.
The caption overlay is one more command once that is done:
vinowhisper-setup --gui, which downloads it from the GitHub release and
checks it against a digest pinned in the Python package.
From a checkout, or to see what it would do without doing it:
git clone https://github.com/karanshukla/vinoWhisper && cd vinoWhisper
uv sync
uv run vinowhisper-setup --dry-run # the whole plan, nothing changed
uv run vinowhisper-setup # for real, one prompt per step
Or from PyPI, if you would rather wire up the machine yourself:
pip install vinowhisper # needs Python 3.11-3.13
vinowhisper-setup # still worth running: NPU driver, model export, units
pip install gets you the five commands and the Python dependencies. It cannot
get you an NPU driver, a model export or systemd units, which is what
vinowhisper-setup is for either way. See
docs/install.md
for the OpenVINO version floor and why this could not be a pip install until
2026-08-31.
What you need
| OS | Linux. Developed on Fedora 45 / KDE Plasma 6 / Wayland |
| Audio | PipeWire (pw-record) or PulseAudio (parec), picked automatically |
| Accelerator | Intel NPU for the numbers above. GPU and CPU run, slower |
| Python | 3.11 to 3.13. 3.14 cannot export the model |
| Disk | ~1.5GB for the model export |
The NPU needs a userspace driver half that no distro packages completely, and
vinowhisper-doctor will tell you exactly which half is missing.
docs/hardware.md
covers every way it fails to appear.
Commands
vinowhisper-caption # caption system audio
vinowhisper-caption --source mic # caption yourself
vinowhisper-caption --list-targets # capture one app instead of the whole sink
vinowhisper-caption --debug # per-cycle timings, levels, raw transcript
vinowhisper-caption --record ~/sess # save the session for replay
vinowhisper-caption --plain > out.txt # no status bar (implied when piping)
vinowhisper-caption --json # one event per line, what the overlay reads
vinowhisper-gui # the floating overlay and tray icon
vinowhisper-gui toggle # show/hide it; Meta+Alt+C does the same
vinowhisper-gui --install --autostart # launcher entry, and the tray at login
vinowhisper-setup # guided install; re-runnable, idempotent
vinowhisper-setup --dry-run # print the plan, change nothing
vinowhisper-setup --print-units # the systemd units it would generate
vinowhisper-setup --gui # just the optional caption overlay
vinowhisper-doctor # devices, model, digests, audio, live levels
vinowhisper-doctor --json # the same, for a bug report
vinowhisper-doctor --no-probe # skip the 2s-per-target level capture
vinowhisper-replay ~/sess --restitch # re-run the merge logic offline
vinowhisper-replay ~/sess --sweep 8,12,20 # measure what --window actually costs
Docs
| Installing | What the installer does, the OpenVINO version floor and why, digest pinning, pinning the window on top |
| Caption overlay | The floating box, tray icon and shortcut: installing, which desktops it works on, and why it is Rust |
| Hardware | Device selection, the two model exports, and every way the NPU fails to appear |
| Audio capture | PipeWire vs PulseAudio, distro coverage, and what actually silences a capture (it is not the mute button) |
| Latency | Why captions trail the audio, the one knob that changes it, and why the wording drifts |
| Debugging | --record, offline replay, and what vinowhisper-doctor measures |
| Architecture | Socket activation and scale-to-zero, and how to stop it |
Honest limits
Worth saying before you install it, because the numbers above are all from one machine:
- Every benchmark here is n=1, on one laptop, with early-silicon NPU drivers. The GPU and CPU fallbacks have never run on hardware at all.
- Captions trail the audio by roughly twice the cycle time. That is inherent to a two-cycle commit policy, not a bug to be tuned away. docs/latency.md explains the one knob that moves it.
- Wording drifts between cycles, because each window is re-decoded with more right-context than the last. The stitcher hides most of it and not all.
- The overlay needs wlr-layer-shell. Tested on KDE Plasma 6.7 only. GNOME does not offer the protocol, so there the overlay refuses to start and the terminal UI is the way in. Sway, Hyprland, niri and COSMIC should work and are untested.
- Package names for seven of the eight distro families are unverified. If one is wrong for yours, that is expected, and it is the fastest thing in this repo to fix.
- Export the model with
transformers<5.4. Bisected on hardware 2026-09-04: 5.4.0 and up produce a graph that compiles and then fails atgenerate()withPort for tensor name cache_position was not found, and a fresh install resolves to 5.5.4. The digest check catches it and says so rather than letting it fail at the first transcription, but it is not fixed upstream. docs/install.md has the bisect table.
More
- Design doc, benchmarks, and the three export bugs hit getting to a working NPU pipeline: wildcat-lake-linux/input/f5-voice-typing.md
- CONTRIBUTING.md, where the useful contributions are distro corrections and reports from hardware that isn't this laptop
- SECURITY.md, what stays on the machine and what the loopback server's trust boundary actually is
- CHANGELOG.md
If you run this on hardware that isn't a Wildcat Lake laptop, I want the
report, working or not. That is the one thing I cannot test myself, and an
issue with
vinowhisper-doctor --json pasted into it is worth more than any benchmark I
can run here.
MIT licensed.
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file vinowhisper-0.4.0.tar.gz.
File metadata
- Download URL: vinowhisper-0.4.0.tar.gz
- Upload date:
- Size: 114.0 kB
- Tags: Source
- Uploaded using Trusted Publishing? Yes
- Uploaded via:
uv/0.12.13 {"installer":{"name":"uv","version":"0.12.13","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
1e828b5e22faeb3a9fecebac76f7e976617a5c01101d6f8c53bc3627641ff9ee
|
|
| MD5 |
8074d2febd8037d7ac3bf018a9230847
|
|
| BLAKE2b-256 |
c2dff896c92fcb16d727204bf15164b4139f3261979be098e2634391348e7dbc
|
File details
Details for the file vinowhisper-0.4.0-py3-none-any.whl.
File metadata
- Download URL: vinowhisper-0.4.0-py3-none-any.whl
- Upload date:
- Size: 88.0 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? Yes
- Uploaded via:
uv/0.12.13 {"installer":{"name":"uv","version":"0.12.13","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
6d347972694a09ab5e5e343ee787e99eec08f77ef708f1bb0d33fc6890e99dc3
|
|
| MD5 |
850155522cf50093346ca0e1cc5d607d
|
|
| BLAKE2b-256 |
b5b4792f75d0f0ca5b760e1ac6b94a6c3ddabb4fd344f723e55105d520fab052
|