Benchmark: FunASR vs Whisper — Real-World Performance on Chinese Meeting Audio #2947
Replies: 1 comment
-
|
Thanks for sharing these benchmarks. The speed difference is especially impressive, and it's interesting to see FunASR outperform Whisper on Chinese meeting audio, particularly with dialect and accent support. The built-in speaker diarization, VAD, and punctuation also make the deployment story much simpler compared to assembling multiple separate components around Whisper. For teams working with large volumes of meeting recordings, reducing infrastructure complexity can be just as valuable as improving transcription accuracy. It's also great to see more open-source options emerging in the speech recognition space. I'm curious whether anyone has tested FunASR in production workflows for note-taking and meeting summaries. Tools such as VoiceToNotes.ai rely heavily on accurate speech-to-text pipelines, so improvements in speed and multilingual accuracy could have a big impact on real-world productivity applications. |
Beta Was this translation helpful? Give feedback.
Uh oh!
There was an error while loading. Please reload this page.
-
TL;DR
Test Setup
Key Findings
1. Speed: FunASR is 13x faster than Whisper on GPU
SenseVoice-Small processes 10 seconds of audio in just 70ms. On CPU, FunASR models run at 17x realtime — faster than Whisper runs on GPU.
2. Chinese Accuracy: FunASR wins on dialects and accents
FunASR supports 7 Chinese dialects (Wu, Cantonese, Min, Hakka, Gan, Xiang, Jin) and 26 regional accents. Whisper struggles with non-Mandarin Chinese.
3. All-in-one Pipeline: No assembly required
With Whisper, you need to combine 5 separate projects for a production pipeline:
FunASR does all this in one API call:
4. OpenAI-Compatible API: Zero-code migration
If you are already using OpenAI Whisper API or any compatible client, switching to FunASR requires zero code changes:
pip install funasr vllm fastapi uvicorn python-multipart funasr-server --device cuda # Now POST to http://localhost:8000/v1/audio/transcriptions5. Self-hosted & Free
How to Try
Links
Beta Was this translation helpful? Give feedback.
All reactions