Table of Contents
Why Whisper Costs Matter for Production STT
Speech-to-text is one of the fastest-growing AI workloads, powering everything from meeting transcription to voice agents to podcast search indexing. OpenAI’s Whisper model is the de facto standard for accuracy, but the question every team faces is whether to run it through an API or self-host it on a dedicated GPU server. The cost difference at scale is enormous.
The Whisper hosting page covers deployment details, but this article focuses exclusively on the economics. We compare per-minute transcription costs across every major STT option so you can make a data-driven decision about your speech processing infrastructure.
For teams building voice agent servers, transcription cost is a direct input to your unit economics. Getting this right determines whether your voice AI product is profitable or running at a loss.
API-Based STT Pricing in 2026
Here is what the major speech-to-text providers charge per minute of audio as of early 2026:
| Provider | Model | Price per Minute | Price per Hour |
|---|---|---|---|
| OpenAI Whisper API | whisper-1 | $0.006 | $0.36 |
| Google Cloud STT | Chirp 2 | $0.016 | $0.96 |
| AWS Transcribe | Standard | $0.024 | $1.44 |
| Deepgram | Nova-2 | $0.0043 | $0.26 |
| AssemblyAI | Best | $0.0065 | $0.39 |
OpenAI’s Whisper API is the benchmark at $0.006/minute. It seems cheap until you scale. A call centre transcribing 500 hours of audio per month pays $180/month to OpenAI, or $720/month to Google Cloud, or $870/month to AWS. These costs grow linearly with no volume discounts for most tiers.
Whisper Performance on Dedicated GPUs
Whisper’s speed on a GPU is measured as the real-time factor (RTF): how many seconds of compute are needed per second of audio. An RTF of 0.05 means 1 hour of audio processes in 3 minutes. Check the Whisper RTF by GPU benchmark for the latest measured data.
| GPU | Monthly Cost | Whisper Large-v3 RTF | Processing Speed | Max Audio Hours/Day |
|---|---|---|---|---|
| RTX 4060 Ti 16GB | ~$130/mo | ~0.15 | 6.7x real-time | ~160 hrs |
| RTX 3090 | ~$200/mo | ~0.08 | 12.5x real-time | ~300 hrs |
| RTX 5090 | ~$250/mo | ~0.05 | 20x real-time | ~480 hrs |
| RTX 6000 Pro | ~$400/mo | ~0.07 | 14.3x real-time | ~343 hrs |
With faster-whisper (CTranslate2 backend) and batched processing, these speeds increase further. The RTX 5090 running faster-whisper with VAD preprocessing can process audio at up to 30x real-time in batch mode.
Cost per Audio Hour: GPU vs API
Here is the direct cost comparison assuming 24/7 GPU utilisation at capacity:
| Option | Cost per Audio Hour | Monthly Cost at 500 hrs/mo | Monthly Cost at 2,000 hrs/mo |
|---|---|---|---|
| OpenAI Whisper API | $0.360 | $180 | $720 |
| Deepgram Nova-2 | $0.258 | $129 | $516 |
| RTX 4060 Ti (self-hosted) | $0.027 | $130 (fixed) | $130 (fixed) |
| RTX 3090 (self-hosted) | $0.022 | $200 (fixed) | $200 (fixed) |
| RTX 5090 (self-hosted) | $0.017 | $250 (fixed) | $250 (fixed) |
At full utilisation, the RTX 5090 delivers transcription at $0.017 per audio hour, which is 21x cheaper than the OpenAI Whisper API and 15x cheaper than Deepgram. Even at partial utilisation, self-hosting wins for any non-trivial volume.
Real-World Volume Scenarios
Abstract numbers are harder to act on than concrete scenarios. Here is what different businesses actually pay:
Podcast transcription service (200 hours/month):
- OpenAI API: $72/month
- RTX 3090 dedicated: $200/month (fixed)
- Verdict: API is cheaper. Break-even is ~555 hours/month.
Call centre analytics (2,000 hours/month):
- OpenAI API: $720/month
- RTX 5090 dedicated: $250/month (fixed)
- Verdict: Self-hosting saves $470/month ($5,640/year).
Meeting transcription platform (5,000 hours/month):
- OpenAI API: $1,800/month
- RTX 5090 dedicated: $250/month (fixed, single GPU handles capacity)
- Verdict: Self-hosting saves $1,550/month ($18,600/year).
For the meeting transcription scenario, even if you need two GPUs for redundancy, the savings still exceed $1,000/month. The speech processing cost calculator lets you model your specific volume.
Cut Your Transcription Costs by 90%+
Deploy Whisper on a dedicated GPU server with faster-whisper pre-configured. Process thousands of audio hours per month at a fixed monthly rate.
Browse GPU ServersOptimizing Whisper Costs on Dedicated Hardware
Several techniques can reduce your effective cost per audio hour further:
Use faster-whisper instead of the standard Whisper implementation. The CTranslate2 backend delivers 2-4x speedup with identical accuracy, effectively cutting your per-hour cost proportionally.
Implement VAD (Voice Activity Detection) preprocessing. Silero VAD or similar tools skip silent segments, reducing actual processing time by 20-40% for typical audio with pauses and silence.
Batch process during off-peak hours. If your GPU also serves LLM inference during business hours, schedule transcription jobs for nights and weekends. The same hardware serves two workloads.
Right-size your model. Whisper Large-v3 is the highest quality, but Whisper Medium runs 3x faster with only marginal quality loss for clear audio. For call centre recordings with good audio quality, Medium is often sufficient.
For the full deployment walkthrough, the voice agent server guide covers Whisper setup as part of a complete speech processing pipeline.
Break-Even Points and Recommendations
Here are the exact break-even points where self-hosting Whisper becomes cheaper than each API provider:
| GPU | vs OpenAI API | vs Deepgram | vs Google Cloud STT |
|---|---|---|---|
| RTX 4060 Ti ($130/mo) | 361 hrs/mo | 504 hrs/mo | 135 hrs/mo |
| RTX 3090 ($200/mo) | 556 hrs/mo | 775 hrs/mo | 208 hrs/mo |
| RTX 5090 ($250/mo) | 694 hrs/mo | 969 hrs/mo | 260 hrs/mo |
Our recommendation: If you process more than 700 audio hours per month, an RTX 5090 on a dedicated speech model server is the most cost-effective option. For 350-700 hours, the RTX 4060 Ti offers the fastest payback. Below 350 hours/month, the OpenAI API or Deepgram may be simpler and cheaper.
The broader trend is clear: STT API pricing has not dropped significantly in the past two years, while GPU inference performance has improved steadily. For any team processing meaningful audio volumes, the cheapest GPU for your workload pays for itself within the first month or two. Use the break-even calculator methodology to verify the numbers for your specific provider and volume before making the switch.