Sink or SWIM: Tackling Real-Time ASR at Scale
Federico Bruzzone, Walter Cazzola, Matteo Brancaleoni, Dario Pellegrino
TL;DR
SWIM tackles real-time, multi-client ASR scalability by building on OpenAI's Whisper and introducing true model-level parallelization through a shared audio buffer. It combines a buffer merging mechanism with a QRatio-based local agreement in a hypothesis buffer to maintain transcription fidelity while enabling parallel processing on a single Whisper instance. Empirical results show that SWIM preserves accuracy (WER and semantic similarity) while reducing latency, achieving roughly $2.4$ seconds delay with five concurrent clients and scalable performance up to $20$ concurrent streams across English, Italian, and Spanish. The work demonstrates a practical, cost-effective path for enterprise-grade, multilingual real-time transcription in dynamic, multi-user environments.
Abstract
Real-time automatic speech recognition systems are increasingly integrated into interactive applications, from voice assistants to live transcription services. However, scaling these systems to support multiple concurrent clients while maintaining low latency and high accuracy remains a major challenge. In this work, we present SWIM, a novel real-time ASR system built on top of OpenAI's Whisper model that enables true model-level parallelization for scalable, multilingual transcription. SWIM supports multiple concurrent audio streams without modifying the underlying model. It introduces a buffer merging strategy that maintains transcription fidelity while ensuring efficient resource usage. We evaluate SWIM in multi-client settings -- scaling up to 20 concurrent users -- and show that it delivers accurate real-time transcriptions in English, Italian, and Spanish, while maintaining low latency and high throughput. While Whisper-Streaming achieves a word error rate of approximately 8.2% with an average delay of approximately 3.4 s in a single-client, English-only setting, SWIM extends this capability to multilingual, multi-client environments. It maintains comparable accuracy with significantly lower delay -- around 2.4 s with 5 clients -- and continues to scale effectively up to 20 concurrent clients without degrading transcription quality and increasing overall throughput. Our approach advances scalable ASR by improving robustness and efficiency in dynamic, multi-user environments.
