Muesli: agent-native local meeting transcription + dictation for macOS (Granola + WisprFlow alternative)
1,214
stars
1,640
commits
Swift
primary language
Sep 11, 2026
updated
Local-by-default dictation & meeting transcription for macOS
On-device speech-to-text by default · Optional OpenAI or OpenRouter dictation · Privacy by default
Muesli is a lightweight native macOS app that combines WisprFlow-style dictation and Granola-style meeting transcription in one tool. Dictation and meeting transcription run locally on Apple Silicon by default. Optional hosted dictation sends audio to OpenAI or through OpenRouter to your selected model. Hosted cleanup, Quill, summaries, and Computer Use send the input needed for those features when selected. iCloud sync transfers text and sync metadata, never audio.
Illustrative entries and usage statistics. Personal content has been replaced.
| Feature | What you can do |
|---|---|
| Quill | Ask a question, rewrite selected text, or create text at the cursor with your voice. |
| Bodhan for Indic languages | Dictate across Indic languages and English, including code-switching. |
| Live meeting transcripts | Use Apple Speech on macOS 26+. Live transcription is off by default. |
| Re-summarize meetings | Choose a different summary model for a saved meeting. |
| BYOK dictation | Use OpenAI or OpenRouter when you want hosted transcription. Local by default. |
This release also adds S1-mini English cleanup, Apple Shortcuts and Siri actions, clearer macOS calendar management, and iCloud reconnection recovery. Read the full 0.8.4 release notes.
Hold your hotkey (or double-tap for hands-free mode) → speak → release → transcribed text is pasted at your cursor. ~0.13 second latency via Parakeet TDT on the Apple Neural Engine.
By default, dictation uses an on-device model. You can instead opt into OpenAI Speech-to-Text with your own API key, which streams microphone audio directly to OpenAI over a Realtime WebSocket, or connect OpenRouter and explicitly choose a transcription model. OpenRouter dictation sends the completed recording through OpenRouter to the selected upstream model. Muesli retains the local recording only long enough to fall back to a compatible installed on-device model if the hosted request fails; streaming-only models are excluded from fallback.
Select text and speak an instruction to rewrite it, or ask a question and generate text at the cursor with no selection. Choose your model in Models → Quill. If a required local model is missing or a selected account is signed out, Muesli prompts you to download the model or sign in before use.
Start a meeting recording → Muesli captures your mic (You) and system audio (Others) simultaneously → VAD-driven chunked transcription happens during the meeting at natural speech boundaries → speaker diarization identifies individual remote speakers (Speaker 1, Speaker 2, etc.) → when you stop, the transcript is ready in seconds, not minutes. Generate structured meeting notes via OpenAI, free OpenRouter models, your ChatGPT Plus/Pro subscription, or local Ollama models.
Live meeting transcripts have two explicit modes. Nemotron 3.5 and Apple Speech supply live captions and the normal final raw transcript before diarization and note generation. The existing recorded-audio transcription pipeline remains available for missing or incomplete streaming results. Parakeet Realtime EOU provides provisional live previews while a separately selected meeting model creates the final transcript. Apple Speech adds system-supported languages on macOS 26+, while Parakeet Realtime EOU remains the low-latency English option. Settings always shows which model owns the final transcript.
Live transcription is off by default. Choose Apple Speech, or download Parakeet Realtime EOU or Nemotron 3.5, from Models and then select one under Settings → Meetings → Transcription. The waveform-hover preview can be enabled separately from the same section. Making a live model available does not activate it automatically.
EKEventStoreChangedNotification for instant calendar change detection. Pre-meeting countdowns via Marauder's Map easter egg.Download the latest .dmg from Releases, open it, and drag Muesli to Applications — or double-click to install automatically.
brew install --cask muesli
Current Homebrew also resolves brew install muesli to the official cask; the
--cask form is shown to make the app install explicit.
Build requirements: Xcode 26.6 (Swift 6.3) on a compatible macOS 26 build host. The app deployment target remains macOS 14.2.
# Clone
git clone https://github.com/Muesli-HQ/muesli.git
cd muesli
# Build the bundled echo-cancellation runtime once
./scripts/build_localvqe.sh
# Build and install to /Applications
./scripts/build_native_app.sh
# Contributor dev build without the maintainer Developer ID certificate
MUESLI_SKIP_SIGN=1 ./scripts/dev-test.sh
Release builds are signed by the maintainer Developer ID certificate. External
contributors can use the unsigned dev build for local testing; it installs
MuesliDev.app with a separate bundle ID and app data directory.
See CONTRIBUTING.md for the full local development workflow.
The selected transcription model downloads on demand (~565 MB for the default English Parakeet Unified; ~450 MB for multilingual Parakeet v3). The app bundle also includes the arm64 LiteRT-LM runtime (~61 MB) for experimental Gemma 4 support; its ~2.6 GB model weights download only when Gemma is selected.
Muesli bundles an agent-friendly local CLI inside the app bundle:
/Applications/Muesli.app/Contents/MacOS/muesli-clinative/MuesliNative/.build/arm64-apple-macosx/debug/muesli-climuesli once the official cask exposes the bundled binary as a commandThe CLI is designed for coding agents such as Codex and Claude Code. It exposes meetings, dictations, raw transcripts, stored notes, and local audio-file transcription. Existing data commands return stable JSON so an agent can analyze them with its own model and write notes back without requiring a user-supplied OpenAI or OpenRouter key. transcribe prints plain transcript text by default so it works naturally in shell pipelines.
command -v muesli-cli || echo "/Applications/Muesli.app/Contents/MacOS/muesli-cli"
/Applications/Muesli.app/Contents/MacOS/muesli-cli spec
/Applications/Muesli.app/Contents/MacOS/muesli-cli transcribe file.mp3
Homebrew users should eventually be able to use:
muesli transcribe file.mp3
/Applications/Muesli.app/Contents/MacOS/muesli-cli meetings list --limit 10
/Applications/Muesli.app/Contents/MacOS/muesli-cli dictations list --limit 10
/Applications/Muesli.app/Contents/MacOS/muesli-cli meetings get 125
/Applications/Muesli.app/Contents/MacOS/muesli-cli dictations get 42
cat notes.md | /Applications/Muesli.app/Contents/MacOS/muesli-cli meetings update-notes 125 --stdin
muesli-cli specmuesli-cli infomuesli-cli transcribe <file> [--format text|json|markdown] [--model parakeet-v3|parakeet-v2|parakeet-eou-320ms|sensevoice|qwen3-asr|nemotron35|whisper-tiny|whisper-tiny-english|whisper-small|whisper-small-english|whisper-medium-english|whisper-large-turbo] [--dictionary PATH] [--summarize] [--save-meeting] [--title TITLE] [--output PATH]muesli-cli meetings list [--limit N] [--folder-id ID]muesli-cli meetings get <id>muesli-cli meetings update-notes <id> (--stdin | --file <path>)muesli-cli dictations list [--limit N]muesli-cli dictations get <id>Supported input files: .mp3, .mp4, .m4a, and .wav.
Default output is transcript text only:
muesli-cli transcribe interview.mp3
Agent-friendly JSON output uses the normal CLI envelope:
muesli-cli transcribe interview.m4a --format json
{
"ok": true,
"command": "muesli-cli transcribe",
"data": {
"transcript": "Raw transcript text...",
"summary": null,
"durationSeconds": 123.4,
"wordCount": 420,
"model": "parakeet-v3",
"warnings": [],
"savedMeetingID": null,
"title": "interview"
},
"meta": {
"schemaVersion": 1,
"generatedAt": "2026-07-08T00:00:00Z",
"dbPath": "/Users/example/Library/Application Support/Muesli/muesli.db",
"warnings": []
}
}
Generate markdown notes with the configured API/local summary backend when available:
muesli-cli transcribe interview.mp4 --summarize --format markdown --output notes.md
--summarize uses configured OpenAI, OpenRouter, Ollama, LM Studio, or Custom LLM settings. If the configured backend is unavailable in headless CLI mode, Muesli keeps the transcript and reports a warning instead of discarding the transcription.
Save the import into Muesli as source = audio_import:
muesli-cli transcribe interview.wav --save-meeting --title "Customer Interview"
The app's Dictionary tab supports importing and exporting the personal dictionary as JSON. Import merges entries by match word, updates an existing match when the imported definition differs, and appends new words. Export produces the same portable format accepted by muesli-cli --dictionary:
[
{
"word": "museli",
"replacement": "muesli",
"matching_threshold": 0.85
}
]
The CLI also accepts an app config.json directly when it contains a custom_words array:
muesli-cli transcribe interview.wav --dictionary ~/Library/Application\ Support/Muesli/config.json
parakeet-eou-320ms is available for batch file transcription. The CLI chunks the audio internally and returns the completed transcript; it does not expose streaming partials for file transcription.
Direct app-bundle fallback path:
/Applications/Muesli.app/Contents/MacOS/muesli-cli transcribe file.mp3
Data commands return JSON on stdout. transcribe returns plain text by default; pass --format json to use the envelope below.
Success shape:
{
"ok": true,
"command": "muesli-cli meetings get",
"data": {},
"meta": {
"schemaVersion": 1,
"generatedAt": "2026-03-17T00:00:00Z",
"dbPath": "/Users/example/Library/Application Support/Muesli/muesli.db",
"warnings": []
}
}
Failure shape:
{
"ok": false,
"command": "muesli-cli meetings get 999",
"error": {
"code": "not_found",
"message": "No meeting exists with id 999.",
"fix": "Run `muesli-cli meetings list` to find a valid ID."
},
"meta": {
"schemaVersion": 1,
"generatedAt": "2026-03-17T00:00:00Z",
"dbPath": "",
"warnings": []
}
}
Important meeting fields:
rawTranscriptformattedNotesnotesStatecalendarEventIDmicAudioPathsystemAudioPathnotesState values:
missingraw_transcript_fallbackstructured_notestranscribe is text-first by default; use --format json for structured agent workflows.formattedNotes is the only write-back surface in v1.rawTranscript is read-only and should be treated as source material.notesState is missing or raw_transcript_fallback, agents should prefer summarizing from rawTranscript.--db-path or --support-dir only when the default Muesli data location is wrong.| Model | Backend | Runtime | Size | Languages | Latency |
|---|---|---|---|---|---|
| Apple Speech | SpeechAnalyzer / SpeechTranscriber | System-managed | No Muesli model download | System-supported locales | Dictation, live + final meetings on macOS 26+ |
| Parakeet Unified (default for English) | FluidAudio | CoreML / Neural Engine | ~565 MB | English | Offline batch |
| Parakeet v3 (multilingual) | FluidAudio | CoreML / Neural Engine | ~450 MB | 25 languages | ~0.13s |
| Parakeet v2 | FluidAudio | CoreML / Neural Engine | ~450 MB | English only | ~0.13s |
| Parakeet Realtime EOU | FluidAudio | CoreML / Neural Engine | ~430 MB | English only | Live preview |
| Cohere Transcribe 2B | CoreML | FP16 encoder + INT8 decoder | ~3.8 GB | 14 languages | ~1s |
| Nemotron 3.5 Multilingual | FluidInference | CoreML / Neural Engine | ~665 MB | 100+ locales | Live + final |
| SenseVoice Small | FluidAudio | INT8 CoreML / Neural Engine | ~240 MB | 50+ languages | ~1s |
| Qwen3 ASR | FluidAudio | CoreML / Neural Engine | ~1.3 GB | 52 languages | ~2-3s |
| Bodhan Core | CoreML + MLX | CoreML encoder + autoregressive decoder | ~2.46 GB FP16 / ~1.27 GB INT8 weights | 25 languages, including English; auto-detect | Final transcription |
| Bodhan Flex | CoreML + MLX | CoreML encoder + autoregressive decoder | ~2.46 GB FP16 / ~1.27 GB INT8 weights | 27 languages, including English; auto-detect | Final transcription |
| Gemma 4 E2B | LiteRT-LM | Metal GPU decoder + CPU audio encoder | ~2.6 GB | Multilingual | Experimental |
| Whisper Tiny Multilingual | WhisperKit | CoreML / Neural Engine | ~153 MB | Multilingual | Fastest Whisper option |
| Whisper Tiny English | WhisperKit | CoreML / Neural Engine | ~153 MB | English only | Fastest English Whisper option |
| Whisper Small Multilingual | WhisperKit | CoreML / Neural Engine | ~250 MB | Multilingual | ~1-2s |
| Whisper Small English | WhisperKit | CoreML / Neural Engine | ~250 MB | English only | ~1-2s |
| Whisper Medium English | WhisperKit | CoreML / Neural Engine | ~1.5 GB | English only | Slower, more accurate English option |
| Whisper Large Turbo Multilingual | WhisperKit | CoreML / Neural Engine | ~626 MB | Multilingual | ~2-4s |
Bodhan Core and Flex replace the former seven-language AI4Bharat IndicASR integration. Core uses native-script output, including many English terms spoken within Indic utterances. Flex supports mixed-script output—Indic text in its native script and English terms in Latin letters—and spoken-number formatting. Output quality varies, so try both from the production model catalog. Each card has a precision dropdown beside the language selector, with independently downloadable FP16 and INT8 choices. Both require macOS 15 or later and warm up before the app reports readiness. Longer recordings are processed in overlapping chunks.
Both FP16 and INT8 use a CoreML encoder and a native MLX decoder. The precision dropdown changes weight precision for both components, with no development settings required. Fresh FP16 downloads include the MLX decoder instead of the older CoreML decoder and cross-projection packages. The variants have separate downloads and can be removed independently. INT8 is weight-only quantization: activations and KV cache remain floating point. The 1.27 GB figure covers encoder and MLX decoder weights, excluding compilation caches. These are storage sizes, not RAM requirements: runtime memory also includes activations, decoder KV cache, and CoreML/MLX allocations. CoreML device placement is runtime-dependent; Neural Engine execution is not guaranteed.
Existing saved IndicASR selections migrate to Bodhan Flex, preserving their language preference. Previously downloaded legacy model files are not automatically deleted.
Apple Speech uses the system SpeechAnalyzer and SpeechTranscriber APIs on
macOS 26 and compatible Apple hardware. Its language assets are managed by the
operating system rather than downloaded into Muesli's model cache; older macOS
versions continue to use Muesli's downloadable local ASR backends.
Whisper's Tiny and Small sizes are available as either multilingual or English-only downloads. The multilingual variants auto-detect the spoken language by default and also let you pin a language; the English variants stay focused on English and therefore do not show a language control. Medium English is available when English accuracy matters more than download size and speed, while Large Turbo is the strongest multilingual choice for accents, background noise, and mixed-language audio. Every variant can be downloaded, deleted, and downloaded again from the Models tab.
The app and muesli-cli share Nemotron 3.5's model cache at
~/.cache/muesli/models/nemotron35-multilingual-2240ms; downloading it in one
surface makes it available to the other without a second copy.
Cohere Transcribe is a 2B parameter model (#1 on Open ASR Leaderboard) running in mixed precision — FP16 FastConformer encoder on the Neural Engine with INT8 quantized decoders. Includes VAD-gated silence detection to prevent hallucination. Best for high-accuracy multilingual dictation.
Gemma 4 E2B is an experimental multimodal LiteRT-LM backend for direct transcription or on-device transcript cleanup. It is not an ASR-tuned model, so assistant-style outputs are rejected and Parakeet remains the recommended transcription backend. Gemma cannot be selected for ASR and cleanup at the same time.
Meeting echo cancellation uses LocalVQE by default. Release builds ship the
bundled localvqe-v1.2-1.3M-f32.gguf model plus the LocalVQE shared libraries,
so users do not need to download an AEC model before their first meeting
transcription. DTLN remains available as the fallback AEC path when LocalVQE
cannot load.
Source/dev builds need the LocalVQE runtime built once with
./scripts/build_localvqe.sh (the model is committed; the dylibs under
native/MuesliNative/LocalVQE/lib/ are not). Signed packaging refuses to proceed without the complete runtime, including
liblocalvqe and its required libggml libraries. A warm SwiftPM cache does not
supply these gitignored libraries. See CONTRIBUTING.md.
Models download on demand from HuggingFace. Manage them from the Models tab in the dashboard.
Muesli needs these macOS permissions (guided during onboarding):
| Permission | Why |
|---|---|
| Microphone | Record audio for dictation and meetings |
| System Audio Recording | Capture call audio from Zoom/Meet/Teams |
| Accessibility | Simulate Cmd+V to paste transcribed text |
| Input Monitoring | Detect hotkey presses globally |
| Camera (implicit) | Detect webcam activation for meeting detection |
| Calendar (optional) | Read calendars connected to macOS to show upcoming meetings and reminders |
Muesli uses macOS Calendar through EventKit. A direct Google Calendar sign-in is not currently available in Muesli.
Manage accounts… opens macOS Internet Accounts, where you can add or remove accounts. Account changes there also affect other apps on your Mac. Open Calendar… opens Apple Calendar, where you can create or delete individual calendars and manage subscriptions. Muesli refreshes its calendar list when you return from macOS settings.
| Component | Technology |
|---|---|
| App | Swift, AppKit, SwiftUI |
| Primary ASR | FluidAudio and FluidInference models (Parakeet TDT, Nemotron 3.5, SenseVoice Small, and Qwen3 ASR on CoreML/ANE) |
| Cohere ASR | Cohere Transcribe (FP16 encoder + INT8 decoder on CoreML) |
| Bodhan ASR | Bodhan AI Core/Flex with a CoreML encoder and native MLX Swift decoder |
| Gemma ASR / cleanup | Google LiteRT-LM with Gemma 4 E2B (Metal GPU decoder + CPU audio encoder) |
| Whisper ASR | WhisperKit (CoreML/ANE) |
| Voice activity | Silero VAD via FluidAudio (streaming, event-driven) |
| Speaker diarization | pyannote via FluidAudio (CoreML on ANE) |
| Camera detection | CoreMediaIO property listeners (event-driven) |
| System audio | CoreAudio process tap by default; ScreenCaptureKit (SCStream) fallback |
| Meeting notes | OpenAI / OpenRouter (BYOK), ChatGPT subscription (OAuth), or Ollama |
| Calendar | Apple EventKit (macOS Calendar accounts) |
| Sync | CloudKit private database for text-only iCloud sync |
| Automation | Computer Use planner and post-meeting executable hooks |
| Export | PDF (NSPrintOperation, paginated US Letter) + Markdown |
| Word correction | Jaro-Winkler similarity (native Swift) |
| Storage | SQLite (WAL mode) |
| Signing | Developer ID + hardened runtime (notarization ready) |
Contributions welcome! To get started:
git clone https://github.com/Muesli-HQ/muesli.git
cd muesli
swift build --package-path native/MuesliNative --scratch-path "$HOME/Library/Caches/muesli-spm/contributor" -c release
swift test --package-path native/MuesliNative --scratch-path "$HOME/Library/Caches/muesli-spm/contributor"
./scripts/test_packaged_cli.sh
The test suite covers model configuration, custom word and phrase matching, filler removal, transcription routing, data persistence, CLI contract/path-resolution logic, speaker diarization alignment, token consolidation, camera-based meeting detection, CoreAudio system capture, ChatGPT OAuth logic, Ollama summaries, update-flow policy, launch at login, paste/clipboard safety, meeting export, meeting navigation, upcoming-meeting window behavior, and calendar meeting URL extraction.
Current test scope:
muesli-cli into /Applications/Muesli.app/Contents/MacOS.scripts/test_packaged_cli.sh, which builds an isolated app bundle, checks that Contents/MacOS/muesli-cli exists and is executable, and runs muesli-cli spec from the packaged path.Please open an issue before submitting large PRs.
If Muesli saves you time, consider supporting development:
Muesli has been possible because of the generosity of companies such as:
MIT — free and open source.
(top 30 of 32)
Swift
95.5%
Shell
2.8%
Muesli: agent-native local meeting transcription + dictation for macOS (Granola + WisprFlow alternative)
1,214
stars
1,640
commits
Swift
primary language
Sep 11, 2026
updated
Local-by-default dictation & meeting transcription for macOS
On-device speech-to-text by default · Optional OpenAI or OpenRouter dictation · Privacy by default
Muesli is a lightweight native macOS app that combines WisprFlow-style dictation and Granola-style meeting transcription in one tool. Dictation and meeting transcription run locally on Apple Silicon by default. Optional hosted dictation sends audio to OpenAI or through OpenRouter to your selected model. Hosted cleanup, Quill, summaries, and Computer Use send the input needed for those features when selected. iCloud sync transfers text and sync metadata, never audio.
Illustrative entries and usage statistics. Personal content has been replaced.
| Feature | What you can do |
|---|---|
| Quill | Ask a question, rewrite selected text, or create text at the cursor with your voice. |
| Bodhan for Indic languages | Dictate across Indic languages and English, including code-switching. |
| Live meeting transcripts | Use Apple Speech on macOS 26+. Live transcription is off by default. |
| Re-summarize meetings | Choose a different summary model for a saved meeting. |
| BYOK dictation | Use OpenAI or OpenRouter when you want hosted transcription. Local by default. |
This release also adds S1-mini English cleanup, Apple Shortcuts and Siri actions, clearer macOS calendar management, and iCloud reconnection recovery. Read the full 0.8.4 release notes.
Hold your hotkey (or double-tap for hands-free mode) → speak → release → transcribed text is pasted at your cursor. ~0.13 second latency via Parakeet TDT on the Apple Neural Engine.
By default, dictation uses an on-device model. You can instead opt into OpenAI Speech-to-Text with your own API key, which streams microphone audio directly to OpenAI over a Realtime WebSocket, or connect OpenRouter and explicitly choose a transcription model. OpenRouter dictation sends the completed recording through OpenRouter to the selected upstream model. Muesli retains the local recording only long enough to fall back to a compatible installed on-device model if the hosted request fails; streaming-only models are excluded from fallback.
Select text and speak an instruction to rewrite it, or ask a question and generate text at the cursor with no selection. Choose your model in Models → Quill. If a required local model is missing or a selected account is signed out, Muesli prompts you to download the model or sign in before use.
Start a meeting recording → Muesli captures your mic (You) and system audio (Others) simultaneously → VAD-driven chunked transcription happens during the meeting at natural speech boundaries → speaker diarization identifies individual remote speakers (Speaker 1, Speaker 2, etc.) → when you stop, the transcript is ready in seconds, not minutes. Generate structured meeting notes via OpenAI, free OpenRouter models, your ChatGPT Plus/Pro subscription, or local Ollama models.
Live meeting transcripts have two explicit modes. Nemotron 3.5 and Apple Speech supply live captions and the normal final raw transcript before diarization and note generation. The existing recorded-audio transcription pipeline remains available for missing or incomplete streaming results. Parakeet Realtime EOU provides provisional live previews while a separately selected meeting model creates the final transcript. Apple Speech adds system-supported languages on macOS 26+, while Parakeet Realtime EOU remains the low-latency English option. Settings always shows which model owns the final transcript.
Live transcription is off by default. Choose Apple Speech, or download Parakeet Realtime EOU or Nemotron 3.5, from Models and then select one under Settings → Meetings → Transcription. The waveform-hover preview can be enabled separately from the same section. Making a live model available does not activate it automatically.
EKEventStoreChangedNotification for instant calendar change detection. Pre-meeting countdowns via Marauder's Map easter egg.Download the latest .dmg from Releases, open it, and drag Muesli to Applications — or double-click to install automatically.
brew install --cask muesli
Current Homebrew also resolves brew install muesli to the official cask; the
--cask form is shown to make the app install explicit.
Build requirements: Xcode 26.6 (Swift 6.3) on a compatible macOS 26 build host. The app deployment target remains macOS 14.2.
# Clone
git clone https://github.com/Muesli-HQ/muesli.git
cd muesli
# Build the bundled echo-cancellation runtime once
./scripts/build_localvqe.sh
# Build and install to /Applications
./scripts/build_native_app.sh
# Contributor dev build without the maintainer Developer ID certificate
MUESLI_SKIP_SIGN=1 ./scripts/dev-test.sh
Release builds are signed by the maintainer Developer ID certificate. External
contributors can use the unsigned dev build for local testing; it installs
MuesliDev.app with a separate bundle ID and app data directory.
See CONTRIBUTING.md for the full local development workflow.
The selected transcription model downloads on demand (~565 MB for the default English Parakeet Unified; ~450 MB for multilingual Parakeet v3). The app bundle also includes the arm64 LiteRT-LM runtime (~61 MB) for experimental Gemma 4 support; its ~2.6 GB model weights download only when Gemma is selected.
Muesli bundles an agent-friendly local CLI inside the app bundle:
/Applications/Muesli.app/Contents/MacOS/muesli-clinative/MuesliNative/.build/arm64-apple-macosx/debug/muesli-climuesli once the official cask exposes the bundled binary as a commandThe CLI is designed for coding agents such as Codex and Claude Code. It exposes meetings, dictations, raw transcripts, stored notes, and local audio-file transcription. Existing data commands return stable JSON so an agent can analyze them with its own model and write notes back without requiring a user-supplied OpenAI or OpenRouter key. transcribe prints plain transcript text by default so it works naturally in shell pipelines.
command -v muesli-cli || echo "/Applications/Muesli.app/Contents/MacOS/muesli-cli"
/Applications/Muesli.app/Contents/MacOS/muesli-cli spec
/Applications/Muesli.app/Contents/MacOS/muesli-cli transcribe file.mp3
Homebrew users should eventually be able to use:
muesli transcribe file.mp3
/Applications/Muesli.app/Contents/MacOS/muesli-cli meetings list --limit 10
/Applications/Muesli.app/Contents/MacOS/muesli-cli dictations list --limit 10
/Applications/Muesli.app/Contents/MacOS/muesli-cli meetings get 125
/Applications/Muesli.app/Contents/MacOS/muesli-cli dictations get 42
cat notes.md | /Applications/Muesli.app/Contents/MacOS/muesli-cli meetings update-notes 125 --stdin
muesli-cli specmuesli-cli infomuesli-cli transcribe <file> [--format text|json|markdown] [--model parakeet-v3|parakeet-v2|parakeet-eou-320ms|sensevoice|qwen3-asr|nemotron35|whisper-tiny|whisper-tiny-english|whisper-small|whisper-small-english|whisper-medium-english|whisper-large-turbo] [--dictionary PATH] [--summarize] [--save-meeting] [--title TITLE] [--output PATH]muesli-cli meetings list [--limit N] [--folder-id ID]muesli-cli meetings get <id>muesli-cli meetings update-notes <id> (--stdin | --file <path>)muesli-cli dictations list [--limit N]muesli-cli dictations get <id>Supported input files: .mp3, .mp4, .m4a, and .wav.
Default output is transcript text only:
muesli-cli transcribe interview.mp3
Agent-friendly JSON output uses the normal CLI envelope:
muesli-cli transcribe interview.m4a --format json
{
"ok": true,
"command": "muesli-cli transcribe",
"data": {
"transcript": "Raw transcript text...",
"summary": null,
"durationSeconds": 123.4,
"wordCount": 420,
"model": "parakeet-v3",
"warnings": [],
"savedMeetingID": null,
"title": "interview"
},
"meta": {
"schemaVersion": 1,
"generatedAt": "2026-07-08T00:00:00Z",
"dbPath": "/Users/example/Library/Application Support/Muesli/muesli.db",
"warnings": []
}
}
Generate markdown notes with the configured API/local summary backend when available:
muesli-cli transcribe interview.mp4 --summarize --format markdown --output notes.md
--summarize uses configured OpenAI, OpenRouter, Ollama, LM Studio, or Custom LLM settings. If the configured backend is unavailable in headless CLI mode, Muesli keeps the transcript and reports a warning instead of discarding the transcription.
Save the import into Muesli as source = audio_import:
muesli-cli transcribe interview.wav --save-meeting --title "Customer Interview"
The app's Dictionary tab supports importing and exporting the personal dictionary as JSON. Import merges entries by match word, updates an existing match when the imported definition differs, and appends new words. Export produces the same portable format accepted by muesli-cli --dictionary:
[
{
"word": "museli",
"replacement": "muesli",
"matching_threshold": 0.85
}
]
The CLI also accepts an app config.json directly when it contains a custom_words array:
muesli-cli transcribe interview.wav --dictionary ~/Library/Application\ Support/Muesli/config.json
parakeet-eou-320ms is available for batch file transcription. The CLI chunks the audio internally and returns the completed transcript; it does not expose streaming partials for file transcription.
Direct app-bundle fallback path:
/Applications/Muesli.app/Contents/MacOS/muesli-cli transcribe file.mp3
Data commands return JSON on stdout. transcribe returns plain text by default; pass --format json to use the envelope below.
Success shape:
{
"ok": true,
"command": "muesli-cli meetings get",
"data": {},
"meta": {
"schemaVersion": 1,
"generatedAt": "2026-03-17T00:00:00Z",
"dbPath": "/Users/example/Library/Application Support/Muesli/muesli.db",
"warnings": []
}
}
Failure shape:
{
"ok": false,
"command": "muesli-cli meetings get 999",
"error": {
"code": "not_found",
"message": "No meeting exists with id 999.",
"fix": "Run `muesli-cli meetings list` to find a valid ID."
},
"meta": {
"schemaVersion": 1,
"generatedAt": "2026-03-17T00:00:00Z",
"dbPath": "",
"warnings": []
}
}
Important meeting fields:
rawTranscriptformattedNotesnotesStatecalendarEventIDmicAudioPathsystemAudioPathnotesState values:
missingraw_transcript_fallbackstructured_notestranscribe is text-first by default; use --format json for structured agent workflows.formattedNotes is the only write-back surface in v1.rawTranscript is read-only and should be treated as source material.notesState is missing or raw_transcript_fallback, agents should prefer summarizing from rawTranscript.--db-path or --support-dir only when the default Muesli data location is wrong.| Model | Backend | Runtime | Size | Languages | Latency |
|---|---|---|---|---|---|
| Apple Speech | SpeechAnalyzer / SpeechTranscriber | System-managed | No Muesli model download | System-supported locales | Dictation, live + final meetings on macOS 26+ |
| Parakeet Unified (default for English) | FluidAudio | CoreML / Neural Engine | ~565 MB | English | Offline batch |
| Parakeet v3 (multilingual) | FluidAudio | CoreML / Neural Engine | ~450 MB | 25 languages | ~0.13s |
| Parakeet v2 | FluidAudio | CoreML / Neural Engine | ~450 MB | English only | ~0.13s |
| Parakeet Realtime EOU | FluidAudio | CoreML / Neural Engine | ~430 MB | English only | Live preview |
| Cohere Transcribe 2B | CoreML | FP16 encoder + INT8 decoder | ~3.8 GB | 14 languages | ~1s |
| Nemotron 3.5 Multilingual | FluidInference | CoreML / Neural Engine | ~665 MB | 100+ locales | Live + final |
| SenseVoice Small | FluidAudio | INT8 CoreML / Neural Engine | ~240 MB | 50+ languages | ~1s |
| Qwen3 ASR | FluidAudio | CoreML / Neural Engine | ~1.3 GB | 52 languages | ~2-3s |
| Bodhan Core | CoreML + MLX | CoreML encoder + autoregressive decoder | ~2.46 GB FP16 / ~1.27 GB INT8 weights | 25 languages, including English; auto-detect | Final transcription |
| Bodhan Flex | CoreML + MLX | CoreML encoder + autoregressive decoder | ~2.46 GB FP16 / ~1.27 GB INT8 weights | 27 languages, including English; auto-detect | Final transcription |
| Gemma 4 E2B | LiteRT-LM | Metal GPU decoder + CPU audio encoder | ~2.6 GB | Multilingual | Experimental |
| Whisper Tiny Multilingual | WhisperKit | CoreML / Neural Engine | ~153 MB | Multilingual | Fastest Whisper option |
| Whisper Tiny English | WhisperKit | CoreML / Neural Engine | ~153 MB | English only | Fastest English Whisper option |
| Whisper Small Multilingual | WhisperKit | CoreML / Neural Engine | ~250 MB | Multilingual | ~1-2s |
| Whisper Small English | WhisperKit | CoreML / Neural Engine | ~250 MB | English only | ~1-2s |
| Whisper Medium English | WhisperKit | CoreML / Neural Engine | ~1.5 GB | English only | Slower, more accurate English option |
| Whisper Large Turbo Multilingual | WhisperKit | CoreML / Neural Engine | ~626 MB | Multilingual | ~2-4s |
Bodhan Core and Flex replace the former seven-language AI4Bharat IndicASR integration. Core uses native-script output, including many English terms spoken within Indic utterances. Flex supports mixed-script output—Indic text in its native script and English terms in Latin letters—and spoken-number formatting. Output quality varies, so try both from the production model catalog. Each card has a precision dropdown beside the language selector, with independently downloadable FP16 and INT8 choices. Both require macOS 15 or later and warm up before the app reports readiness. Longer recordings are processed in overlapping chunks.
Both FP16 and INT8 use a CoreML encoder and a native MLX decoder. The precision dropdown changes weight precision for both components, with no development settings required. Fresh FP16 downloads include the MLX decoder instead of the older CoreML decoder and cross-projection packages. The variants have separate downloads and can be removed independently. INT8 is weight-only quantization: activations and KV cache remain floating point. The 1.27 GB figure covers encoder and MLX decoder weights, excluding compilation caches. These are storage sizes, not RAM requirements: runtime memory also includes activations, decoder KV cache, and CoreML/MLX allocations. CoreML device placement is runtime-dependent; Neural Engine execution is not guaranteed.
Existing saved IndicASR selections migrate to Bodhan Flex, preserving their language preference. Previously downloaded legacy model files are not automatically deleted.
Apple Speech uses the system SpeechAnalyzer and SpeechTranscriber APIs on
macOS 26 and compatible Apple hardware. Its language assets are managed by the
operating system rather than downloaded into Muesli's model cache; older macOS
versions continue to use Muesli's downloadable local ASR backends.
Whisper's Tiny and Small sizes are available as either multilingual or English-only downloads. The multilingual variants auto-detect the spoken language by default and also let you pin a language; the English variants stay focused on English and therefore do not show a language control. Medium English is available when English accuracy matters more than download size and speed, while Large Turbo is the strongest multilingual choice for accents, background noise, and mixed-language audio. Every variant can be downloaded, deleted, and downloaded again from the Models tab.
The app and muesli-cli share Nemotron 3.5's model cache at
~/.cache/muesli/models/nemotron35-multilingual-2240ms; downloading it in one
surface makes it available to the other without a second copy.
Cohere Transcribe is a 2B parameter model (#1 on Open ASR Leaderboard) running in mixed precision — FP16 FastConformer encoder on the Neural Engine with INT8 quantized decoders. Includes VAD-gated silence detection to prevent hallucination. Best for high-accuracy multilingual dictation.
Gemma 4 E2B is an experimental multimodal LiteRT-LM backend for direct transcription or on-device transcript cleanup. It is not an ASR-tuned model, so assistant-style outputs are rejected and Parakeet remains the recommended transcription backend. Gemma cannot be selected for ASR and cleanup at the same time.
Meeting echo cancellation uses LocalVQE by default. Release builds ship the
bundled localvqe-v1.2-1.3M-f32.gguf model plus the LocalVQE shared libraries,
so users do not need to download an AEC model before their first meeting
transcription. DTLN remains available as the fallback AEC path when LocalVQE
cannot load.
Source/dev builds need the LocalVQE runtime built once with
./scripts/build_localvqe.sh (the model is committed; the dylibs under
native/MuesliNative/LocalVQE/lib/ are not). Signed packaging refuses to proceed without the complete runtime, including
liblocalvqe and its required libggml libraries. A warm SwiftPM cache does not
supply these gitignored libraries. See CONTRIBUTING.md.
Models download on demand from HuggingFace. Manage them from the Models tab in the dashboard.
Muesli needs these macOS permissions (guided during onboarding):
| Permission | Why |
|---|---|
| Microphone | Record audio for dictation and meetings |
| System Audio Recording | Capture call audio from Zoom/Meet/Teams |
| Accessibility | Simulate Cmd+V to paste transcribed text |
| Input Monitoring | Detect hotkey presses globally |
| Camera (implicit) | Detect webcam activation for meeting detection |
| Calendar (optional) | Read calendars connected to macOS to show upcoming meetings and reminders |
Muesli uses macOS Calendar through EventKit. A direct Google Calendar sign-in is not currently available in Muesli.
Manage accounts… opens macOS Internet Accounts, where you can add or remove accounts. Account changes there also affect other apps on your Mac. Open Calendar… opens Apple Calendar, where you can create or delete individual calendars and manage subscriptions. Muesli refreshes its calendar list when you return from macOS settings.
| Component | Technology |
|---|---|
| App | Swift, AppKit, SwiftUI |
| Primary ASR | FluidAudio and FluidInference models (Parakeet TDT, Nemotron 3.5, SenseVoice Small, and Qwen3 ASR on CoreML/ANE) |
| Cohere ASR | Cohere Transcribe (FP16 encoder + INT8 decoder on CoreML) |
| Bodhan ASR | Bodhan AI Core/Flex with a CoreML encoder and native MLX Swift decoder |
| Gemma ASR / cleanup | Google LiteRT-LM with Gemma 4 E2B (Metal GPU decoder + CPU audio encoder) |
| Whisper ASR | WhisperKit (CoreML/ANE) |
| Voice activity | Silero VAD via FluidAudio (streaming, event-driven) |
| Speaker diarization | pyannote via FluidAudio (CoreML on ANE) |
| Camera detection | CoreMediaIO property listeners (event-driven) |
| System audio | CoreAudio process tap by default; ScreenCaptureKit (SCStream) fallback |
| Meeting notes | OpenAI / OpenRouter (BYOK), ChatGPT subscription (OAuth), or Ollama |
| Calendar | Apple EventKit (macOS Calendar accounts) |
| Sync | CloudKit private database for text-only iCloud sync |
| Automation | Computer Use planner and post-meeting executable hooks |
| Export | PDF (NSPrintOperation, paginated US Letter) + Markdown |
| Word correction | Jaro-Winkler similarity (native Swift) |
| Storage | SQLite (WAL mode) |
| Signing | Developer ID + hardened runtime (notarization ready) |
Contributions welcome! To get started:
git clone https://github.com/Muesli-HQ/muesli.git
cd muesli
swift build --package-path native/MuesliNative --scratch-path "$HOME/Library/Caches/muesli-spm/contributor" -c release
swift test --package-path native/MuesliNative --scratch-path "$HOME/Library/Caches/muesli-spm/contributor"
./scripts/test_packaged_cli.sh
The test suite covers model configuration, custom word and phrase matching, filler removal, transcription routing, data persistence, CLI contract/path-resolution logic, speaker diarization alignment, token consolidation, camera-based meeting detection, CoreAudio system capture, ChatGPT OAuth logic, Ollama summaries, update-flow policy, launch at login, paste/clipboard safety, meeting export, meeting navigation, upcoming-meeting window behavior, and calendar meeting URL extraction.
Current test scope:
muesli-cli into /Applications/Muesli.app/Contents/MacOS.scripts/test_packaged_cli.sh, which builds an isolated app bundle, checks that Contents/MacOS/muesli-cli exists and is executable, and runs muesli-cli spec from the packaged path.Please open an issue before submitting large PRs.
If Muesli saves you time, consider supporting development:
Muesli has been possible because of the generosity of companies such as:
MIT — free and open source.
(top 30 of 32)
Swift
95.5%
Shell
2.8%