Skip to main content

Voxint

Turn any recording into a speaker-labelled transcript — on your own computer. Voxint transcribes your audio or video, works out who spoke when, and gives you a simple review screen to confirm the speakers and fix the wording before you export.

It is built for individuals and small teams — researchers, journalists, educators — who need their recordings to stay local. Your audio is transcribed on your own hardware by default: no cloud account, no per-minute fees, nothing uploaded. (Two optional features do reach the network when you turn them on: fetching a recording from a URL, and sending transcript text to an outside AI model to polish it. Both are off or opt-in, and clearly labelled.)

Early days (pre-alpha). Voxint works end to end, but it is young software. The interface, database, and settings can still change between releases through the 0.x series. Great for hands-on use and feedback; not yet for mission-critical archives.

Reviewing a transcript in Voxint: a waveform strip showing who spoke when, above the transcript with a verify-and-advance review loop

See it in action

(All screenshots use a small synthetic three-speaker sample that ships with Voxint.)

The adjudication queue: completed runs with voices still needing a decision The workbench: each voice shows its evidence — a confident match to accept, a heard name that is only a guess, or no name at all
Your review queue — completed recordings waiting for your decisions. Attribute each voice — accept a confident match, judge a heard name, or leave a voice unknown.
The guided setup wizard's readiness checks, each dependency shown as ready, failed, or unverified The dashboard: run health, throughput, roster size, and per-stage timing
Guided setup in the browser — honest readiness checks, plain-language fixes. A dashboard for run health and throughput at a glance.

What it does

Voxint takes a recording and walks it through four steps:

  1. Add your recording — upload it in the browser, paste a URL, or point Voxint at a file it can already see.
  2. Voxint does the heavy lifting — it transcribes the words and works out who spoke when, then suggests who each voice is.
  3. You review — confirm each speaker, and fix any wording, in a screen built for exactly this. Machine guesses stay separate from your decisions; you always have the final say.
  4. Export — download a clean, speaker-labelled transcript (plain text, subtitles, or structured data).

The models all run locally — transcription (Whisper), speaker separation (pyannote), and voice identity (TitaNet). Everything they need is bundled into Voxint, so there is no Hugging Face account or token to set up.

Quickstart

You need Docker with the Compose plugin (≥ 2.24). One command takes a fresh copy to a running console:

git clone https://github.com/bengizmo/voxint.git && cd voxint
./scripts/install.sh

The installer asks only for what it can't invent — an admin password, a folder for your media, and which hardware runs the models — then generates everything else, starts Voxint, waits until it is healthy, and prints the console address.

No graphics card? That's fine. Voxint runs the whole pipeline on an ordinary computer's CPU (needs roughly 8 GB of memory free). It is slower — a long recording can take hours rather than minutes — but it works anywhere. A GPU (NVIDIA, AMD, or an Apple Silicon Mac) just makes it faster.

Have a GPU? How much VRAM you need. The transcription suite (Whisper + pyannote + TitaNet) shares one card and fits comfortably on 8 GB (e.g. RTX 3050/3060 Ti/4060). Turning on the optional bundled local LLM adds ~5 GB, so running everything on one card wants 12 GB (e.g. RTX 3060 12 GB) or more. AMD cards work via the ROCm tier. Full breakdown and card examples → docs/setup.md.

When it finishes, open the console at http://127.0.0.1:8080/ and sign in with the username and password you set. On a fresh install Voxint walks you through a short in-browser setup wizard and an optional guided tutorial on the bundled sample, so you see the whole review loop before pointing it at your own audio.

Full setup for your operating system and hardware → docs/setup.md. First-run walkthrough → docs/onboarding.md.

Using Voxint

Once it is running, these short guides cover the day-to-day tasks:

A little more depth

You don't need any of this to use Voxint, but if you're curious or evaluating it:

  • Nothing is lost to a crash. Every run's progress lives in a database, so a restart resumes where it left off, and pausing for review is just a saved row.
  • Speaker identity keeps a paper trail. Voxint matches voices against a roster that grows as you use it, and keeps machine proposals strictly separate from your rulings.
  • Optional AI polish. Voxint can send transcript text to any OpenAI-compatible model to tidy it up and suggest names — off by default, and a slow or failing model never blocks a run.
  • Swappable vocabulary. Names, jargon, and prompts load from a domain pack you can pick per folder, so specialist terms transcribe correctly. See docs/domain-packs.md.
  • Measured, not asserted. The models are pinned and their outputs are held to measured-equivalence gates, so an upgrade can't quietly change results. See docs/gpu-contracts.md.

For developers

The console is server-rendered (FastAPI + Jinja + htmx) with a few small React "islands"; the model services are separate containers behind versioned HTTP contracts. To run the code you checked out instead of the release images, layer the build overlays; to work without Docker at all:

uv sync --extra dev
uv run pytest tests/unit
uv run uvicorn voxint.api.app:app --reload

There is also a standalone, database-free scoring harness — pip install voxint gives you the voxint score CLI for speaker-attribution metrics (see examples/). Architecture, contracts, operations, and the release process are documented under docs/.

License

Apache-2.0. See LICENSE and NOTICE. Vendored model weights are redistributed under their own licenses with attribution (titanet: CC-BY-4.0; pyannote segmentation: MIT; WeSpeaker embedding: CC-BY-4.0) — see the provenance files under services/*/models/ and the model-asset releases.

Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

voxint-0.19.0.tar.gz (18.7 MB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

voxint-0.19.0-py3-none-any.whl (2.3 MB view details)

Uploaded Python 3

File details

Details for the file voxint-0.19.0.tar.gz.

File metadata

  • Download URL: voxint-0.19.0.tar.gz
  • Upload date:
  • Size: 18.7 MB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.23 {"installer":{"name":"uv","version":"0.11.23","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"22.04","id":"jammy","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":null}

File hashes

Hashes for voxint-0.19.0.tar.gz
Algorithm Hash digest
SHA256 b211fc16bd7eb2d54568c294f179bfbc37c418a47eb5df4e1cad21d591f57df8
MD5 233dc9f8c007372fc5a1716aed9b4ef0
BLAKE2b-256 3b36c8f9c5f4fb658fc5b2a0643e259eee1f592c6540b45529874ccd01b4b15d

See more details on using hashes here.

File details

Details for the file voxint-0.19.0-py3-none-any.whl.

File metadata

  • Download URL: voxint-0.19.0-py3-none-any.whl
  • Upload date:
  • Size: 2.3 MB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.23 {"installer":{"name":"uv","version":"0.11.23","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"22.04","id":"jammy","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":null}

File hashes

Hashes for voxint-0.19.0-py3-none-any.whl
Algorithm Hash digest
SHA256 2c85bf80b66ada30a897e82288af6c19526d0fc206665f6f90212a76accfb81b
MD5 0ea688649e52d99037adc9472d7f76a5
BLAKE2b-256 70526bbc7284836ecb6329d2ba21c64cc50ab86c62d410c5e03501207a96b67a

See more details on using hashes here.

Release history Release notifications | RSS feed

0.34.0

1 file

0.33.0

1 file

0.32.0

2 files

0.31.0

2 files

0.30.0

2 files

0.29.0

2 files

0.28.0

2 files

0.27.0

2 files

0.26.0

2 files

0.24.0

2 files

0.23.1

2 files

0.22.1

2 files

0.22.0

2 files

0.21.0

2 files

0.20.0

2 files

This release

0.19.0 This release

2 files

0.18.0

2 files

0.17.0

2 files

0.16.0

2 files

0.15.0

2 files

0.14.0

2 files

0.13.0

2 files

0.12.0

2 files

0.11.0

2 files

0.10.0

2 files

0.9.0

2 files

0.8.0

2 files

0.7.0

2 files

0.6.0

2 files

0.5.1

2 files

0.5.0

2 files

0.4.1

2 files

0.4.0

2 files

0.3.0

2 files

0.2.0

2 files

0.1.0

2 files

Anthropic, PBC Visionary sponsor Bloomberg Visionary sponsor Hudson River Trading Visionary sponsor Meta Visionary sponsor NVIDIA Visionary sponsor Microsoft Sustainability sponsor Depot Continuous Integration AWS Cloud computing and Security Sponsor Datadog Monitoring Fastly CDN Google Download Analytics Sentry Error logging StatusPage Status page