- Is this a replacement for Whisper?
- For live audio, yes, and it removes the chunk-and-stitch workaround that live Whisper deployments have needed. For batch transcription the replacement is GPT-Transcribe at $0.0045 a minute, which is cheaper than whisper-1 and stronger. The one remaining reason to run Whisper is that its weights are open and can run on your own hardware.
- When is the 3.8x premium over GPT-Transcribe worth paying?
- When a human is waiting on the words: live captions, in-call assistance, voice interfaces, real-time note-taking that people watch. If the transcript is consumed after the fact by a person or a model, you are paying almost four times over for latency nobody experiences.
- Does it do speaker diarisation and timestamps?
- Not on its own. The model produces transcript text, and diarisation, speaker labels, timestamps, and formatting are your pipeline. Google took the other approach here: Gemini 3.5 Transcribe ships diarisation, word timestamps, and utterance-based language detection inside the model at $0.003 per minute. If those are on your requirements list, price both routes rather than assuming you have to build the layer.
- Should we use this or gpt-live-transcribe?
- They cost the same $0.017 a minute. gpt-live-transcribe documents an explicit latency and accuracy dial plus keyword hints, unstructured context, and multiple language hints, so if you have domain vocabulary, multilingual audio, or code-switching, start there. Run both against your own recordings and let the numbers decide.
- Which vendor is most accurate?
- On the Artificial Analysis leaderboard as of June 2026, ElevenLabs Scribe v2 led at 2.2% word error rate against 5.2% for Deepgram Nova-3, and OpenAI does not publish a comparable figure for these models. That ranking is weaker evidence than it looks: clean English accuracy has plateaued and the differences that matter show up on accents, noise, and jargon. Test on your audio.
- How do we keep transcription cost under control at scale?
- Three levers, in order of impact. Route anything not live to the batch model at a quarter of the price. Do not transcribe audio nobody will read, which is more common than teams expect. And meter per stream rather than in aggregate, so a single runaway pipeline shows up as a line rather than as a surprise at the end of the month.