Back to Blog
    whisper-app
    speech-recognition
    transcription
    openai

    Whisper App: Every Way to Run OpenAI Whisper

    Burlingame, CA
    Whisper App: Every Way to Run OpenAI Whisper

    Last reviewed August 2026.

    There is no official Whisper app. OpenAI released Whisper as an open-source model and a paid API, so every "Whisper app" you can download is built by someone else on top of it. That is why they vary so much in price, speed, and whether your audio ever leaves your machine. Here is the full landscape, sorted by platform.

    Whisper apps at a glance

    AppPlatformPriceRuns offlineReal-timeBest for
    MacWhispermacOSFreemiumYesNoMac users who want a real interface
    superwhispermacOSFreemiumYesNearMac dictation with local models
    Whisper WebBrowserFreeYes, on-deviceNoTrying Whisper with zero install
    whisper.cppMac, Windows, LinuxFreeYesNoSpeed on modest hardware
    WhisperXMac, Windows, LinuxFreeYesNoTranscripts that need speaker labels
    openai-whisper (CLI)Mac, Windows, LinuxFreeYesNoThe reference implementation
    OpenAI Whisper APIAny$0.006/minNoNoDevelopers building a product
    iOS / Android appsMobileVariesVariesNoTranscribing voice memos on a phone

    Two things drive most of this decision: whether you need your audio to stay on your device, and whether you want to touch a terminal.

    Which one should you pick?

    • You just want to try it. Open Whisper Web or our own free speech-to-text tool. Nothing to install.
    • You're on a Mac and want an app. MacWhisper or superwhisper. Both bundle local models and neither needs the command line.
    • You want the fastest local transcription. whisper.cpp. It's a C++ port that runs well even on older hardware.
    • You need to know who said what. WhisperX. Plain Whisper does not label speakers.
    • You're building something. The OpenAI API for convenience, whisper.cpp if you want to avoid per-minute costs.
    • You want to dictate as you type. Whisper is the wrong tool. See the section on where Whisper falls short below.

    Whisper on Mac

    Mac has the best Whisper app ecosystem, largely because Apple Silicon runs the models quickly.

    MacWhisper wraps Whisper in a native interface: drag in an audio file, pick a model, get a transcript you can edit and export. The free tier covers the smaller models, and a paid upgrade unlocks the larger ones plus batch processing.

    superwhisper leans toward dictation rather than file transcription, running local models to turn speech into text in whatever app you're using.

    whisper.cpp is the fastest option on Mac if you're comfortable with a terminal, since it's optimized for Apple Silicon specifically.

    For a deeper Mac-specific breakdown, see our guide to Whisper for Mac.

    Whisper on Windows

    Windows has fewer polished options, but the model runs fine.

    The most common route is a whisper.cpp build, which ships as a standalone executable and needs no Python. Several GUI front-ends wrap it if you'd rather not use the command line. Whisper Desktop is another community-built option with a graphical interface.

    Failing that, the official Python package works identically on Windows:

    pip install openai-whisper
    whisper audio.mp3
    

    Whisper on iOS and Android

    Both app stores carry third-party Whisper apps for transcribing voice memos and recordings on a phone. Quality varies quite a bit, and it's worth checking two things before you install one:

    1. Does it run the model on-device, or upload your audio to a server? This is the single most important question if your recordings are sensitive, and many listings are vague about it.
    2. Which model size does it use? Phone apps often default to tiny or base for speed, which is noticeably less accurate than what you'd get on a laptop.

    Whisper in the browser

    Whisper Web runs the model in your browser via WebAssembly, which means your audio never gets uploaded anywhere — the transcription happens on your own machine. It's the fastest way to test whether Whisper's accuracy is good enough for your audio before committing to an install.

    Our free speech-to-text tool does the same job if you'd rather not leave this site.

    Whisper from the command line

    The reference implementation from OpenAI. You'll need Python, then:

    pip install openai-whisper
    whisper audio.mp3 --model medium
    

    Your transcript lands next to the audio file as .txt, .srt, and .vtt. This is the most flexible option and the one every other tool is built on, but it's also the one that assumes you're comfortable in a terminal.

    Whisper via the API

    If you're building a product, OpenAI's hosted API skips the local setup entirely:

    • Price: $0.006 per minute of audio
    • File size limit: 25 MB per request
    • Formats: mp3, mp4, mpeg, mpga, m4a, wav, webm

    For long recordings you'll need to split the audio to stay under the size cap. Note that the API sends your audio to OpenAI's servers, so it's not the right choice when the whole point is keeping recordings local.

    Whisper model sizes

    Nearly every app above asks you to pick a model. This is the table that decides your accuracy-versus-speed tradeoff:

    ModelParametersVRAM neededRelative speedNotes
    tiny39M~1 GB~10xFast, noticeably error-prone
    base74M~1 GB~7xFine for clear, simple audio
    small244M~2 GB~4xReasonable everyday balance
    medium769M~5 GB~2xGood accuracy, slower
    large-v31550M~10 GB1xBest accuracy available
    large-v3-turbo809M~6 GB~8xNear-large accuracy, much faster

    If your machine can handle it, large-v3-turbo is the one to use — it was designed specifically to close the speed gap without giving up much accuracy. On older hardware, small is the sensible default.

    What Whisper actually costs

    The model itself is free and open source under the MIT license. Run it locally and you pay nothing, forever, with no account and no expiry.

    Costs only enter in two places: third-party apps that charge for their interface and convenience features, and OpenAI's hosted API at $0.006 per minute. For most individuals, the local route costs nothing but disk space.

    What Whisper is good at

    Accents and messy audio. Whisper was trained on 680,000 hours of audio scraped from the web rather than clean studio recordings, so it holds up on real-world audio — background noise, regional accents, non-native speakers — better than most tools built on curated datasets.

    Languages. It handles roughly 99 languages, and it deals with code-switching (mixing languages mid-sentence) better than tools built for one language at a time.

    Privacy. Run locally, your audio never leaves your machine. No cloud processing, no server logs, no terms of service governing your recordings.

    Where Whisper falls short

    No real-time dictation. Whisper needs the complete audio file before it starts, because it processes audio in 30-second chunks with context carried between them. That architecture rules out true live dictation. If what you want is to speak and watch words appear in whatever app you're in, AI Dictation is built for exactly that — and it's free on Mac.

    No speaker labels. Plain Whisper produces one undifferentiated block of text. It cannot tell you who said what, which is a problem for interviews and multi-person meetings. WhisperX adds diarization on top if you need it.

    Setup friction. The command-line version has a real learning curve, and even the web interfaces mean uploading a file and waiting.

    Errors compound on long audio. Accuracy is high on clear speech, but any error rate adds up across an hour-long recording. For legal, medical, or otherwise critical work, budget time to proofread.

    Whisper vs. the alternatives

    WhisperGoogle Docs Voice TypingOtter.aiApple Dictation
    PriceFree (local)FreeSubscriptionFree
    OfflineYesNoNoPartly
    Real-timeNoYesYesYes
    Speaker labelsNo (WhisperX yes)NoYesNo
    Languages~99~100Fewer~30
    Best forPre-recorded audioDictating into DocsMeetings with speakersQuick system-wide dictation

    The short version: Whisper wins on accuracy, cost, and privacy for pre-recorded audio. It loses on anything live. For a wider comparison, see our best voice to text software for 2026 roundup, or Google Docs voice typing specifically.

    Getting better results

    Pick the right model. Most disappointing Whisper output traces back to running tiny or base. Move up to small or large-v3-turbo and the difference is obvious.

    Split long audio. For files over about 30 minutes, breaking them into segments prevents transcription drift and keeps you under the API's 25 MB cap.

    Clean noisy audio first. Running heavily degraded audio through noise reduction (Audacity is free and does this well) before transcription pays off more than moving up a model size.

    Specify the language. Whisper auto-detects, but telling it the language explicitly avoids the occasional wrong guess on short or accented clips.

    Proofread anything critical. Whisper is strong, not infallible. That last small percentage matters when it's a contract or a medical note.

    Who Whisper is for

    Developers building transcription into a product, where Whisper is almost always cheaper and more flexible than a SaaS API.

    Content creators turning podcasts, videos, and voice memos into text.

    Researchers, journalists, and therapists processing recorded interviews, especially where the recordings can't be uploaded to a third party.

    Anyone privacy-conscious who isn't comfortable sending audio to a cloud service.

    Budget-conscious teams who need transcription volume without a subscription.

    Whisper is not for you if what you actually want is to dictate while you work. That's a different tool.

    Ready to try speech-to-text?

    Whisper is excellent for transcribing audio you've already recorded. If you want to dictate in real time — into any app, on any Mac — AI Dictation is built for that instead. Type 5x faster with your voice, free.

    Frequently Asked Questions

    Which Whisper app should I use?

    On Mac, MacWhisper or superwhisper give you a real interface with no setup. On Windows, Whisper Desktop or a whisper.cpp build. On iOS and Android, search your app store for a Whisper speech-to-text app. In a browser, Whisper Web runs the model on-device with no upload. Developers should use the OpenAI API or whisper.cpp directly.

    Is there an official Whisper app from OpenAI?

    No. OpenAI released Whisper as an open-source model and a paid API, not as a consumer app. Every Whisper app you can download is built by a third party on top of that model, which is why they differ in price, speed, and features.

    Is Whisper free to download?

    The Whisper model is free and open source under the MIT license, so you can run it locally at no cost forever. Third-party apps built on it may charge for their interface. OpenAI's hosted API is billed separately at $0.006 per minute of audio.

    Can a Whisper app work offline?

    Yes. Apps that bundle the model locally, such as MacWhisper, superwhisper, and whisper.cpp builds, transcribe entirely on your device with no internet connection. Apps that call OpenAI's API require a connection and upload your audio.

    Does any Whisper app do real-time dictation?

    Whisper itself is built for transcribing pre-recorded audio files, not live dictation, because it processes audio in chunks. Some apps layer near-real-time behavior on top, but for true dictation into any app as you speak, a purpose-built dictation tool is a better fit.

    Ready to try AI Dictation?

    Experience fast voice-to-text on your device. Free to download.

    Download Free