Live transcription · Multilingual

Whisper Large v3

OpenAI's most accurate Whisper, the v3 large checkpoint

Multilingual · 1.5× · 1.6 GB

Install in OpenASR Desktop

Opens the desktop app and downloads this model for you.

Don't have the app yet? Download OpenASR Desktop

On-deviceOn this computer
interview.m4a12:04

let's line up this week's release plan,

the beta build can ship on Friday,

then loop in design and QA,

Why it fits

Whisper Large v3 is OpenAI's 1.55B-parameter multilingual Whisper checkpoint, the most accurate member of the family. It uses the standard Whisper encoder-decoder architecture for automatic speech recognition and speech translation; v3 was trained on a larger and more diverse labelled corpus and uses 128 mel-frequency bins, improving robustness across languages and conditions over earlier large checkpoints. This OpenASR repo repackages the original openai/whisper-large-v3 weights as .oasr packs that run natively in the OpenASR runtime with no Python at inference time. For most users the q8_0 build is the recommended default; q4_k is for tighter memory budgets and fp16 is for verification or maximum fidelity. For a faster large-grade option, see the distilled whisper-large-v3-turbo.

What you can do with it

  • 🎧 Multilingual ASR — transcribes a wide range of languages and can translate speech to English
  • 🏆 1.55B parameters — the full-size Whisper, OpenAI's highest-accuracy checkpoint
  • 🔁 v3 improvements — trained on a larger, more diverse corpus with 128 mel bins for better robustness
  • 🦀 Native in OpenASR.oasr packs run with no Python at inference, engineered for CPU and Apple Silicon

Other models

Developer details CLI commands, file hashes, and per-quant downloads — for scripting and verification.

Downloads by quantization

Pull stringSizeQuant
whisper-large-v3:fp16 2.9 GB fp16
open .oasr
whisper-large-v3:q8default 1.6 GB q8_0
open .oasr
whisper-large-v3:q4 1.2 GB q4_k
open .oasr

Model facts

Size1.6 GB
Speed1.5× real-time
LanguageMultilingual
Familywhisper
Vendoropenai
Released2023-11-06
Peak memory3.8 GB
Quantizationq8_0
LicenseApache-2.0
Revisiond8641881bbe2a28532cf21b78e9afe48751c50b9
sha2562ea5a9cf974b0524ee570feb50c96d2b754b1108312a880f7778bf55caf49327

Usage

These are CLI / local-server examples. The desktop app runs this model without typing a command — use Install above.

bash · transcribe a file
$ openasr pull whisper-large-v3:q8
↓ whisper-large-v3.oasr  1.6 GB  ✓ verified sha256
$ openasr transcribe meeting.wav --backend native --model-pack ~/.openasr/models/whisper-large-v3/q8_0/whisper-large-v3-q8_0.oasr
✓ local transcript · 0 bytes sent
bash · serve a local API
$ openasr serve --backend native --model-pack ~/.openasr/models/whisper-large-v3/q8_0/whisper-large-v3-q8_0.oasr --addr 127.0.0.1:8080
▶ http://127.0.0.1:8080 · model=whisper-large-v3 · 0 bytes will leave this host
python · client.py
from openai import OpenAI
client = OpenAI(base_url="http://127.0.0.1:8080/v1", api_key="local")
audio = open("meeting.wav", "rb")
text = client.audio.transcriptions.create(model="whisper-large-v3", file=audio)