AIAny
AI Deploy2025
Icon for item

WhisperLiveKit

Turns OpenAI Whisper into a live streaming transcriber: audio flows in over WebSocket and text returns word-by-word instead of after full utterances. Adds SimulStreaming and LocalAgreement decoding, Silero VAD, and speaker diarization, all self-hosted.

Introduction

Whisper is brilliant at transcribing a finished audio file and useless the moment you want words to appear while someone is still talking. The naive fix — slice the stream into chunks and feed each to Whisper — chops words mid-syllable and produces jittery output. WhisperLiveKit's real insight is that low-latency streaming is a decoding-policy problem, not a chunking problem.

What Sets It Apart
  • It ships two research-grade streaming policies rather than ad-hoc buffering: SimulStreaming (AlignAtt, 2025 SOTA) does frame-level simultaneous decoding, while WhisperStreaming's LocalAgreement only emits tokens once consecutive passes agree — so you trade latency for stability explicitly instead of by accident.
  • Speaker diarization is built in (Sortformer or Diart), so transcripts come back already attributed to who said what — something raw Whisper and whisper.cpp simply don't do.
  • The backend is pluggable: faster-whisper, MLX on Apple Silicon, vanilla PyTorch, plus Voxtral and Qwen3-ASR options, all behind a FastAPI server exposing WebSocket plus OpenAI- and Deepgram-compatible APIs. You can swap models without rewriting your client.
  • Silero VAD gates the pipeline so silence doesn't burn GPU cycles, and 200-language simultaneous translation rides on the same stream.
Who It's For

Great fit if you need live captioning, meeting or call transcription, or subtitles that update as people speak, and you want it fully self-hosted with no cloud dependency. Look elsewhere if you only batch-process finished recordings — plain Whisper or whisper.cpp is simpler and slightly more accurate, since streaming policies trade some accuracy for responsiveness. Diarization and larger models also add real VRAM overhead, so model-size choice becomes a live constraint rather than an afterthought.

Information

  • Websitegithub.com
  • OrganizationsIndependent
  • AuthorsQuentinFuxa
  • Published date2025/08/13

More Items

GitHub
AI Agent2026

Provides a lightweight Python harness that turns LLMs into working agents with tool-use, skills, persistent memory, permission controls and multi-agent coordination. Ships with a CLI/React TUI, 43+ built-in tools, a plugin/skill system and the ohmo personal-agent for chat gateways. Best for developers prototyping agent workflows and multi-agent experiments.

GitHub
AI Model2026

Runs the Bonsai family of quantized LLMs locally (including vision-capable 27B): provides scripts and demo UIs to run 1-bit and ternary Bonsai models on macOS (Metal), Linux/Windows (CUDA/Vulkan/ROCm), or CPU, with long context, tool-calling and an optional Open WebUI agent demo.

GitHub
AI Client2025

Turns Chromium into a local-first AI browser with an embedded assistant that can summarise pages, extract structured data, automate web tasks, and run scheduled agents. Built as an open-source Chromium fork with 53+ built-in browser tools, 40+ app integrations, and support for BYO AI keys or fully local models (Ollama / LM Studio).