Meta Superintelligence Labs has released Muse Voice Transcribe, a single model that handles streaming speech-to-text, speaker identification, and endpointing. The system announced on September 1, 2026, replaces the standard stack of three separate tools with one autoregressive model. It runs on the Meta Model API as muse-voice-transcribe-1.0 and costs $3.00 per 1,000 audio minutes.
In this article
The model is available immediately for dictation in Meta AI for Mac and Muse Code, but developers cannot self-host it. Meta has not released the weights, meaning the only deployment path is via their hosted API.
Streaming ASR as the foundation
Muse Voice Transcribe is an autoregressive multimodal model from the Muse Spark family. Audio arrives in 80ms chunks at 12.5 Hz. Each chunk is transformed into a single soft token.
After every chunk the model makes one binary choice. It either predicts a <|next_audio|> token and keeps listening, or it emits a text token. When the model predicts <|next_audio|>, that token is replaced by the actual next audio chunk in the input. When the stream ends, an <|empty_audio|> token is inserted, and the model flushes all remaining text without requesting more audio.
Listening and writing share one decoder loop, so there is no separate alignment stage to drift.
Adaptive delay, trained with RL
Because the model controls when it listens, it also controls how much audio context sits behind each word. Meta calls that gap ‘delay.’ Longer delay means a more accurate transcript and higher latency.
Instead of fixing that trade-off, Meta trains it. Reinforcement learning combines a word error rate reward and a delay reward multiplicatively, producing a policy that varies delay per word by difficulty. Meta reports this puts the model on the Pareto front for speed against accuracy, measured by time to final transcription, ahead of the previous frontier formed by Soniox, Cartesia, and ElevenLabs systems.
Diarization and endpointing are more tokens
Meta did not add a second model for speaker attribution. It added special tokens to the same stream.
For diarization, a <|start_of_turn|> token marks a potential speaker switch, and a <|speaker_{A-Z}|> tag identifies the speaker. The turn token fires as soon as a switch is possible, while the speaker tag is delayed to the end of the chunk. Audio from one speaker can be split across several segments that all resolve to the same tag.
For endpointing, <|speech_onset|> marks the start of speech and <|speech_endpoint|> marks the point where the user finished. Both tasks are trained jointly with streaming ASR, using extra rewards layered on top of the ASR reward.
Capabilities
The model was trained on 70+ languages, of which 25 are extensively verified and recommended at launch. Code-switching is native, both within a sentence and between sentences, which matters for bilingual speakers who mix languages mid-clause. Accuracy can be improved further with language, keyword, and context biasing.
Long-context handling is a practical differentiator. Meta states the model natively supports audio input exceeding one hour and 20+ speakers, with no required post-processing step.
Benchmarks
Meta reports first place on Artificial Analysis for streaming speech-to-text and on public diarization benchmarks, as of September 1, 2026.
On Artificial Analysis AA-WER Streaming, Muse Voice Transcribe records 3.1% final-transcript WER at 0.16s after end of speech. Cartesia Ink-2 with semantic endpoints is 3.4% at 0.43s. ElevenLabs Scribe v2 Realtime is 3.6% at 0.14s. Cartesia Ink-2 with external endpoints is fastest at 0.07s but least accurate at 4.0%. On first partial transcript, Muse Voice Transcribe records 3.6% WER at 0.13s.
On diarization, Meta reports a 17.5% average diarization error rate across AMI-IHM, AMI-SDM, and VoxConverse. Five other systems in the same chart range from 21.1% to 28.6%.
Price is the other axis. At $3.00 per 1,000 minutes, it undercuts Cartesia Ink-2 at $4.00 and is less than half the $6.50 for ElevenLabs Scribe v2 Realtime and Deepgram Flux.
What it means
Developers building voice applications can now cut the latency caused by chaining separate services. The single API call removes the need to stitch together a transcriber, a diarizer, and an endpoint detector. This simplifies the integration for apps like voice assistants or meeting recorders that require real-time speaker tracking.




