dimastatz / whisper-flow
Whisper-Flow is a framework designed to enable real-time transcription of audio content using OpenAI’s Whisper model. Rather than processing entire files after upload (“batch mode”), Whisper-Flow accepts a continuous stream of audio chunks and produces incremental transcripts immediately.
description README.md
Whisper Flow
Real-Time Transcription Using OpenAI Whisper
About The Project
OpenAI Whisper
OpenAI Whisper is a versatile speech recognition model designed for general use. Trained on a vast and varied audio dataset, Whisper can handle tasks such as multilingual speech recognition, speech translation, and language identification. It is commonly used for batch transcription, where you provide the entire audio or video file to Whisper, which then converts the speech into text. This process is not done in real-time; instead, Whisper processes the files and returns the text afterward, similar to handing over a recording and receiving the transcript later.
Whisper Flow
Using Whisper Flow, you can generate real-time transcriptions for your media content. Unlike batch transcriptions, where media files are uploaded and processed, streaming media is delivered to Whisper Flow in real time, and the service returns a transcript immediately.
What is Streaming
Streaming content is sent as a series of sequential data packets, or 'chunks,' which Whisper Flow transcribes on the spot. The benefits of using streaming over batch processing include the ability to incorporate real-time speech-to-text functionality into your applications and achieving faster transcription times. However, this speed may come at the expense of accuracy in some cases.
Stream Windowing
In scenarios involving time-streaming, it's typical to perform operations on data within specific time frames known as temporal windows. One common approach is using the tumbling window technique, which involves gathering events into segments until a certain condition is met.
Streaming Results
Whisper Flow splits the audio stream into segments based on natural speech patterns, like speaker changes or pauses. The transcription is sent back as a series of events, with each response containing more transcribed speech until the entire segment is complete.
| Transcript | EndTime | IsPartial |
|---|---|---|
| Reality | 0.55 | True |
| Reality is created | 1.05 | True |
| Reality is created by the | 1.50 | True |
| Reality is created by the mind | 2.15 | True |
| Reality is created by the mind | 2.65 | False |
| we can | 3.05 | True |
| we can change | 3.45 | True |
| we can change reality | 4.05 | True |
| we can change reality by changing | 4.45 | True |
| we can change reality by changing our mind | 5.05 | True |
| we can change reality by changing our mind | 5.55 | False |
Benchmarking
The evaluation metrics for comparing the performance of Whisper Flow are Word Error Rate (WER) and latency. Latency is measured as the time between two subsequent partial results, with the goal of achieving sub-second latency. We're not starting from scratch, as several quality benchmarks have already been performed for different ASR engines. I will rely on the research article "Benchmarking Open Source and Paid Services for Speech to Text" for guidance. For benchmarking the current implementation of Whisper Flow, I use LibriSpeech.
| Partial | Latency | Result |
True 175.47 when we took
True 185.14 When we took her.
True 237.83 when we took our seat.
True 176.42 when we took our seats.
True 198.59 when we took our seats at the
True 186.72 when we took our seats at the
True 210.04 when we took our seats at the breakfast.
True 220.36 when we took our seats at the breakfast table.
True 203.46 when we took our seats at the breakfast table.
True 242.63 When we took our seats at the breakfast table, it will
True 237.41 When we took our seats at the breakfast table, it was with
True 246.36 When we took our seats at the breakfast table, it was with the
True 278.96 When we took our seats at the breakfast table, it was with the feeling.
True 285.03 When we took our seats at the breakfast table, it was with the feeling of being.
True 295.39 When we took our seats at the breakfast table, it was with the feeling of being no
True 270.88 When we took our seats at the breakfast table, it was with the feeling of being no longer
True 320.43 When we took our seats at the breakfast table, it was with the feeling of being no longer looked
True 303.66 When we took our seats at the breakfast table, it was with the feeling of being no longer looked upon.
True 470.73 When we took our seats at the breakfast table, it was with the feeling of being no longer
True 353.25 When we took our seats at the breakfast table, it was with the feeling of being no longer looked upon as connected.
True 345.74 When we took our seats at the breakfast table, it was with the feeling of being no longer looked upon as connected in any way.
True 368.66 When we took our seats at the breakfast table, it was with the feeling of being no longer looked upon as connected in any way with the
True 400.25 When we took our seats at the breakfast table, it was with the feeling of being no longer looked upon as connected in any way with this case.
True 382.71 When we took our seats at the breakfast table, it was with the feeling of being no longer looked upon as connected in any way with this case.
False 405.02 When we took our seats at the breakfast table, it was with the feeling of being no longer looked upon as connected in any way with this case.
When running this benchmark on a MacBook Air with an M1 chip and 16GB of RAM, we achieve impressive performance metrics. The latency is consistently well below 500ms, ensuring real-time responsiveness. Additionally, the word error rate is around 7%, demonstrating the accuracy of the transcription.
Latency Stats:
count 26.000000
mean 275.223077
std 84.525695
min 154.700000
25% 205.105000
50% 258.620000
75% 339.412500
max 470.700000
Prerequisites
Before installing WhisperFlow, ensure you have the following:
- Python: 3.8 or higher (tested with Python 3.12)
- PortAudio: Required for PyAudio (audio I/O library)
Installing PortAudio
macOS (using Homebrew):
brew install portaudio
Linux (Ubuntu/Debian):
sudo apt-get install portaudio19-dev
Linux (Fedora/RHEL):
sudo dnf install portaudio-devel
Windows: PortAudio is typically bundled with PyAudio wheels on Windows. If you encounter issues, refer to the PyAudio documentation.
How To Use it
Quick Start
Get WhisperFlow running in under 5 minutes:
# Clone the repository
git clone https://github.com/dimastatz/whisper-flow.git
cd whisper-flow
# Setup environment, install dependencies, and run tests
./run.sh -local
# Activat
More in Uncategorized

openclaw / openclaw
OpenClaw is an open-source personal AI assistant that runs on your own devices and connects to the communication platforms you already use. It provides a fast, always-available assistant that can respond, listen, speak, and perform tasks across desktop and mobile devices.

obra / superpowers
An agentic skills framework & software development methodology that works.

affaan-m / everything-claude-code
The agent harness performance optimization system. Skills, instincts, memory, security, and research-first development for Claude Code, Codex, Opencode, Cursor and beyond.

mattpocock / skills
Created by renowned TypeScript educator Matt Pocock, Skills is a collection of practical, reusable workflows for AI coding agents such as Claude Code and Codex. The skills help developers plan, test, debug, and build real-world software while keeping control of the engineering process