whisper
Free, open-source, local voice transcription for macOS — Whisper models on-device, push-to-talk, realtime, BYO rewrite model.
File Explorer
- config.json
- README.md
- build.yml
- changesets.yml
- release.yml
- test.yml
- readme-cover-light.png
- readme-cover.png
- Contents.json
- Contents.json
- MenuBarIcon.svg
- Contents.json
- InfoPlist.strings
- AppIcon.png
- BrandMark_2000.png
- Info.plist
- LoopedWhisper.entitlements
- MenuBarIcon.svg
- build-app.sh
- dev-cert.sh
- make-icon.sh
- AudioDeviceManager.swift
- AudioInputDevice.swift
- AudioRecorder.swift
- SoundService.swift
- FnKeyMonitor.swift
- HotkeyManager.swift
- HUDPanelController.swift
- LiveCaptionView.swift
- MenuBarContent.swift
- MenuBarLabel.swift
- ClipboardService.swift
- FocusInspector.swift
- TextInserter.swift
- PermissionsManager.swift
- QuickAction.swift
- QuickActionClassifier.swift
- QuickActionExecutor.swift
- QuickActionStore.swift
- Keychain.swift
- OnDeviceModelClient.swift
- RewriteService.swift
- VocabularyStore.swift
- CommandNormalizer.swift
- LanguageDetector.swift
- ResponseUnwrapper.swift
- SelectionProbe.swift
- SelectionRewriter.swift
- SelectionService.swift
- StyleConfig.swift
- StyleCorpus.swift
- StyleEnforcer.swift
- StyleLearner.swift
- StyleMiner.swift
- StyleProfile.swift
- StyleStore.swift
- SettingsView.swift
- AppPaths.swift
- CrashReporter.swift
- FloatingWindow.swift
- LoginItemManager.swift
- UpdateChecker.swift
- UpdateInstaller.swift
- ModelManager.swift
- TranscriptionService.swift
- AppState.swift
- BrandColor.swift
- Coordinator.swift
- Settings.swift
- WhisperApp.swift
- AIConfigMigrationTests.swift
- QuickActionTests.swift
- SelectionRewriteTests.swift
- StyleLearningTests.swift
- WhisperTests.swift
- .gitignore
- CHANGELOG.md
- LICENSE
- Makefile
- package.json
- Package.resolved
- Package.swift
- pnpm-lock.yaml
- project.yml
- README.md
# Use via CDN
jsDelivrjsDelivr serves any public GitHub repository as a CDN with zero setup. Pick a version and a file to get a ready-to-paste link and snippet.
Command Glossary
Commands referenced in this DOCs, explained below.
brew install
View Details ▼
brew install
Install a Homebrew formula or cask.
brew install {{formula|cask}}
Install a formula/cask:
brew install {{[-s|--build-from-source]}} {{formula}}
Build and install a formula from source (dependencies will still be installed from bottles):
brew install {{[-n|--dry-run]}} {{formula|cask}}
Download the manifest, print what would be installed but don't actually install anything:
pnpm
View Details ▼
pnpm
Fast, disk space efficient package manager for Node.js.
Manage Node.js projects and their module dependencies.
pnpm init
Create a `package.json` file:
pnpm {{[i|install]}}
Download all the packages listed as dependencies in `package.json`:
pnpm add {{module_name}}@{{version}}
Download a specific version of a package and add it to the list of dependencies in `package.json`:
select
View Details ▼
select
Bash builtin construct for creating menus.
select {{word}} in {{apple orange pear banana}}; do echo ${{word}}; done
Create a menu out of individual words:
select {{line}} in $({{command}}); do echo ${{line}}; done
Create a menu from the output of another command:
PS3="{{Select a file: }}"; select {{file}} in *; do echo ${{file}}; done
Specify the prompt string for `select` and create a menu for picking a file or folder from the current directory:
swift
View Details ▼
swift
Create, run, and build Swift projects.
swift repl
Start a REPL (interactive shell):
swift {{file.swift}}
Execute a program:
swift package init
Start a new project with the package manager:
