macOS
brew install whisper-cpplocal Homebrew formula metadata
brew
Prüfe Installationswege, Executables, Metadaten und Sicherheitshinweise für whisper-cpp in AI-Agent-Workflows.
Installation
brew install whisper-cpplocal Homebrew formula metadata
sudo dnf install whisper-cppFedora Rawhide package metadata · whisper-cpp · Quelle: dl.fedoraproject.org
nix profile install nixpkgs#whisper-cppnixpkgs package indexes · pkgs/by-name/wh/whisper-cpp/package.nix · Quelle: api.github.com
sudo apk add whisper-serverAlpine Linux edge package indexes · whisper-server · Quelle: dl-cdn.alpinelinux.org
scoop install main/whisper-cppScoop official bucket manifest trees · bucket/whisper-cpp.json · Quelle: api.github.com
Überblick
Port of OpenAI's Whisper model in C/C++
Verlauf
whisper.cpp is Georgi Gerganov's C and C++ runtime for OpenAI's Whisper speech-recognition models. It appeared days after OpenAI released Whisper in September 2022 and turned the Python/PyTorch reference implementation into a small, portable, dependency-light local transcription tool.
OpenAI introduced Whisper on September 21, 2022 as an automatic speech recognition system trained on 680,000 hours of multilingual and multitask supervised data. The original OpenAI repository positioned Whisper as a general-purpose model for multilingual transcription, translation to English, and language identification.
The whisper.cpp repository was created on September 25, 2022. Its README describes the project as a port of OpenAI's Whisper model in C/C++, with the high-level model implementation contained in `whisper.h` and `whisper.cpp` and the lower-level tensor work handled by ggml. That made Whisper usable in environments where Python, PyTorch, or CUDA were undesirable or unavailable.
The project grew with ggml-style model conversion, quantization, platform backends, examples, bindings, and command-line tools. Its model documentation explains that original OpenAI PyTorch models are converted to ggml format for loading from C/C++, while project discussions and release notes document features such as integer quantization, streaming, server usage, and embedded-device experiments.
whisper.cpp became one of the canonical local-AI command-line packages because it made a large neural speech model feel like a normal Unix tool: download a converted model, run an executable, and transcribe local audio without a cloud service. The upstream GitHub repository reported more than 51,000 stars and more than 5,700 forks via GitHub's API on July 2, 2026.
Its adoption also matters historically because it helped establish the ggml pattern later associated with local inference projects: compact C/C++ runtimes, quantized model files, CPU-first portability, and optional acceleration paths. In package-manager culture, whisper.cpp is the package people reach for when they want OpenAI Whisper behavior in scripts, media pipelines, offline transcription jobs, and low-power devices.
Typical usage is local speech-to-text: converting or downloading a ggml-format Whisper model, running `whisper-cli` or related tools against audio, and emitting transcripts or timestamps. The repository also ships examples and executables for benchmarking, streaming microphone input, running a local server, quantizing models, and integrating with other applications through a C API or bindings.
The package is especially useful when privacy, offline operation, repeatable batch processing, or hardware portability matter more than managed cloud transcription. Users choose model size and quantization level as the tradeoff knob between accuracy, memory footprint, and speed.
For package nerds, whisper.cpp is a landmark local-inference package: it compressed a research model into a buildable C/C++ artifact that could live comfortably in Homebrew, Linux distributions, Docker images, mobile apps, WebAssembly experiments, and single-purpose transcription workflows.
It also became a reference point for later local-AI ports. When people compare local speech runtimes, they often distinguish broad cross-platform portability in whisper.cpp from Apple-specific Core ML and Neural Engine approaches such as WhisperKit, or Python/GPU-oriented projects such as faster-whisper.
Sicherheitslage
broad file, network, media, or database tool signal.
blue Risiko · mittel Konfidenz · tool
Prüfe vor unbeaufsichtigter Agent-Nutzung, ob das Tool Klartext-Credentials liest, Remote-Zustand schreibt, Artefakte veröffentlicht oder Plugins ausführt.
Executables
| Befehl | Art | Sichtbarkeit | Hinweis |
|---|---|---|---|
whisper-bench | cli | globales Executable | |
whisper-cli | cli | globales Executable | |
whisper-command | cli | globales Executable | |
whisper-lsp | cli | globales Executable | |
whisper-quantize | cli | globales Executable | |
whisper-server | cli | globales Executable | |
whisper-stream | cli | globales Executable | |
whisper-talk-llama | cli | globales Executable | |
whisper-vad-speech-segments | cli | globales Executable |
Aktualität
Diese Signale trennen das Alter der Seitengenerierung, Aktivität des Paketmanagers und Upstream-Release-Vergleich. Versionsrückstand wird nur gemeldet, wenn eine Evidenz-URL und vergleichbare Versionen vorhanden sind.
https://github.com/ggml-org/whisper.cpp
Installationsmetadaten
| Paketschlüssel | brew:whisper-cpp |
|---|---|
| Version | 1.9.1 |
| Paketmanager | Homebrew |
| Paketmanager-Seite | https://formulae.brew.sh/formula/whisper-cpp |
| Homepage | https://github.com/ggml-org/whisper.cpp |
| Repository | https://github.com/ggml-org/whisper.cpp |
| Upstream-Dokumentation | https://github.com/ggml-org/whisper.cpp#readme |
| Lizenz | MIT |
| Quellarchiv | https://github.com/ggml-org/whisper.cpp/archive/refs/tags/v1.9.1.tar.gz |
| Zuletzt aktualisiert | 2026-06-19T09:02:25Z |
| Pulse | updated |
| Abhängigkeiten | ggml, sdl2-compat |
| Build-Abhängigkeiten | cmake |
| Bottle | verfügbar (auf arm64_linux, arm64_sequoia, arm64_sonoma, arm64_tahoe, sonoma, x86_64_linux) |
| Homebrew post-install | nicht definiert |
| Dienst | keiner deklariert |
| Einschränkungen | whisper-cpp requires GGML model files to work. These are not downloaded by default. To obtain model files (.bin), visit one of these locations: https://huggingface.co/ggerganov/whisper.cpp/tree/main https://ggml.ggerganov.com/ |
Registry-Fakten
| Source Database | Homebrew formula API |
|---|---|
| Tap | homebrew/core |
| Full Name | whisper-cpp |
| Version Scheme | 0 |
| Revision | 0 |
| Head Version | HEAD |
| Bottle Stable Root URL | https://ghcr.io/v2/homebrew/core |
| Deprecated | no |
| Disabled | no |
| Keg Only | no |
| URL Keys |
|
Source-Datenbank-Treffer
Treffer stammen aus externen Paketmanager-Indizes und bleiben von lokalen Automic-Vault-Paketlinks getrennt.
whisper-cpp
nix profile install nixpkgs#whisper-cppwhisper-server 1.8.4-r2
whisper.cpp server
https://github.com/ggerganov/whisper.cpp
sudo apk add whisper-serverwhisper-server-openrc 1.8.4-r2
whisper.cpp server (OpenRC init scripts)
https://github.com/ggerganov/whisper.cpp
sudo apk add whisper-server-openrcwhisper.cpp 1.8.4-r2
Port of OpenAI's Whisper model in C/C++
https://github.com/ggerganov/whisper.cpp
sudo apk add whisper.cppwhisper.cpp-dev 1.8.4-r2
Port of OpenAI's Whisper model in C/C++ (development files)
https://github.com/ggerganov/whisper.cpp
sudo apk add whisper.cpp-devwhisper.cpp-libs 1.8.4-r2
Port of OpenAI's Whisper model in C/C++
https://github.com/ggerganov/whisper.cpp
sudo apk add whisper.cpp-libswhisper.cpp-vulkan 1.8.4-r2
Port of OpenAI's Whisper model in C/C++ (Vulkan backend)
https://github.com/ggerganov/whisper.cpp
sudo apk add whisper.cpp-vulkanwhisper-cpp 1.8.3-1.fc45
Port of OpenAI's Whisper model in C/C++
https://github.com/ggerganov/whisper.cpp
sudo dnf install whisper-cppwhisper-cpp-devel 1.8.3-1.fc45
Libraries and headers for whisper-cpp
https://github.com/ggerganov/whisper.cpp
sudo dnf install whisper-cpp-develmain/whisper-cpp
scoop install main/whisper-cppQuellspur
Diese Seite wird von av-web aus dem privaten Paket-SQLite-Artefakt bereitgestellt, das scripts/generate-pkg-sqlite.py erstellt.
View the package source record on GitHub.