Tools/openai/whisper

whisper

Robust Speech Recognition via Large-Scale Weak Supervision

106.9k+528/wkestablishedPython

The Lens

By Erik Loyd, SaaS CEO and former COO/CFO of an AWS Premier Partner.

Updated Jun 2026

Whisper turns speech into text, and it set the bar the moment OpenAI released it. Feed it an audio file in almost any of 99 languages and you get back a transcript, optionally translated to English. The model weights and the code are MIT licensed, so you can run the whole thing on your own machine for nothing.

Running it yourself is a pip install and an ffmpeg dependency away, but the catch is hardware. The tiny model fits in about 1GB of VRAM and is fast and rough; the large model wants roughly 10GB and a real GPU to run at a sane speed. On a CPU it works, but you will wait. A newer turbo model is much faster for plain transcription, though it drops the translation trick.

For a one-off transcript, OpenAI's hosted Whisper API runs about half a cent per minute and saves you the setup. Run it locally when the audio is sensitive, when you are processing a lot of it, or when you just do not want a per-minute bill. Solo and small teams: local on a decent GPU is plenty. Higher volume: budget a GPU box and self-host.

The catch is that Whisper is a model, not an app. It does straight transcription, not speaker labels or live captioning out of the box. If you want a GUI with those niceties, look at buzz or vibe, which both wrap this exact model.

Free vs Self-Hosted vs Paid

fully free

What's Free

Everything in the open-source release. MIT license covers both the code and the model weights, for all model sizes (tiny through large) plus the turbo model. No paid tier on the open-source side.

Self-Hosted

pip install -U openai-whisper, plus ffmpeg and PyTorch. Cost is hardware, not licensing:

  • CPU only: works, slow on anything but the tiny model.
  • Consumer GPU (8-12GB): comfortably runs the large model.
  • Apple Silicon: runs well via community ports like whisper.cpp.

Paid Cloud Option

OpenAI's hosted Whisper API charges roughly $0.006/min (about $0.36/hour of audio). Worth it for low volume or when you don't want to manage a GPU. At scale, local wins on cost and privacy.

vs Alternatives

  • Local GUIs (buzz, vibe): same model, friendlier interface, still free.
  • Hosted APIs (OpenAI, Deepgram, AssemblyAI): zero setup, per-minute pricing, your audio leaves your machine.

Free and open source, weights included. Run it locally for free, or pay ~$0.006/min for OpenAI's hosted API to skip the GPU.

Self-hosting ops:moderate
View pricing page →

Get tools like this every Wednesday

One featured tool, three on the radar. No fluff.

Similar Tools

Score
71/100 · B+
Adoption30/30
Maintenance21/25
Community5/20
License5/15
Analysis10/10

A low score is not a verdict on quality. Young and niche tools start low by design. How we calculate scores

About

Owner
openai (Organization)
Stars
106,931
Forks
12,990

Explore Further

More tools in the directory