Feature comparison

An honest look at how the two on-device dictation apps compare across pricing, speed, engines, and features.

EnviousWispr VoiceInk
Price Free. No payment ever. $39.99 one-time*
Account required No No
Audio processing On-device (Apple Silicon) On-device (whisper.cpp)
Audio leaves your Mac Never. If you enable cloud AI polish, only the text transcript is sent. Never. Fully offline capable.
Works offline Yes (after model download) Yes (after model download)
Speech engines Parakeet TDT + WhisperKit whisper.cpp
AI polish 5 providers: Apple Intelligence, Ollama (both on-device), OpenAI, Gemini, Groq (BYO key) AI formatting via system prompts with LLM providers
Offline AI polish Yes (Apple Intelligence or Ollama, no API key needed) Requires cloud LLM for AI formatting
Filler word removal Yes (built-in regex pass, runs before AI polish) Via AI formatting prompts
Writing style control Clean prose style via AI polish prompt Power Mode with per-app custom prompts
Custom vocabulary 6-pass fuzzy matching (Levenshtein + Soundex + bigram) Personal dictionary (find-and-replace)
AI hallucination safeguards Yes (length validation, preamble stripping, short-text bypass) Not documented
First-word capture Pre-roll buffer captures audio before you finish pressing the hotkey Standard recording start
Starts listening instantly Warm engine (model stays loaded between recordings) Model loaded at startup
Clipboard preservation Yes (clipboard saved before paste, restored after) Not documented
Text lands in the right app Yes (three-tier paste with target app reactivation) Pastes into active app
Auto-stop on silence Yes (VAD-based silence detection) Yes
Multi-language English (Parakeet), 90+ via WhisperKit 100+ languages
Per-app settings Global hotkey and settings Power Mode with per-app prompts
Screen context No Yes
Accessibility VoiceOver labels, keyboard-navigable settings Standard macOS controls
Transcription latency 0.43s median; ~1.5s with AI polish Depends on model size and hardware
Source code Source-available (BSL 1.1) Open source (GPL v3)
Platform macOS (Apple Silicon, 14+) macOS (14+)

*VoiceInk pricing: $39.99 one-time (Pro). Based on tryvoiceink.com as of April 2026. EnviousWispr latency from production PostHog data on Apple Silicon Macs. VoiceInk claims source-verified from tryvoiceink.com and GitHub; not firsthand-tested. Competitor claims last verified: 2026-04-04.

Download Free

Why choose EnviousWispr over VoiceInk

Both apps keep your audio private. Here is where EnviousWispr pulls ahead.

$0
Completely free

No tiers, no license keys, no payment. VoiceInk charges $39.99 for a one-time purchase. EnviousWispr costs nothing.

Faster English transcription

Parakeet TDT is purpose-built for English and runs on Apple's Neural Engine. 0.43s median latency. WhisperKit handles 90+ other languages when you need them.

🧠
5 AI polish providers

Apple Intelligence and Ollama run fully on-device with no API key. Or bring your own OpenAI, Gemini, or Groq key. VoiceInk offers AI formatting through system prompts with cloud LLMs.

🔧
Dual speech engines

Parakeet TDT for speed on English. WhisperKit for multilingual coverage. Two engines, one app, automatic routing. See how the pipeline works. VoiceInk uses whisper.cpp only.

📚
Smarter word correction

A 6-pass fuzzy matching system catches misrecognized words that simple find-and-replace would miss. Levenshtein distance, Soundex phonetic matching, and bigram similarity work together to correct names, jargon, and technical terms.

🛠
Auditable code

Every line is on GitHub under BSL 1.1. Verify privacy claims yourself. VoiceInk is also open source under GPL v3, so both apps offer transparency.

Where does your voice go?

Both apps process audio on your Mac. The difference is in how polish and formatting work. For a deeper dive, read on-device vs cloud dictation privacy.

EnviousWispr
1
You speak into your Mac's microphone.
2
Audio is processed by Parakeet TDT or WhisperKit on the Neural Engine. Nothing is uploaded.
3
AI polish runs locally (Apple Intelligence or Ollama) or with your own API key. If you use a cloud provider, only the text transcript is sent.
4
Polished text is pasted. Audio is discarded. No logs, no telemetry on your content.
VoiceInk
1
You speak into your Mac's microphone.
2
Audio is processed locally by whisper.cpp. Nothing is uploaded.
3
AI formatting applies system prompts via cloud LLM to shape the output text.
4
Formatted text is pasted into the active app.

Parakeet TDT vs whisper.cpp

Both run on-device, but the engine matters. Parakeet TDT is a CTC-Transducer model optimized for Apple's Neural Engine. It is measurably faster for English transcription.

0.43s
Median transcription
Parakeet TDT on Apple Silicon
1.5s
With AI polish
Apple Intelligence on-device
0ms
Network overhead
Both apps work fully offline

EnviousWispr latency based on production data from Apple Silicon Macs. VoiceInk latency depends on chosen Whisper model size and hardware. Results vary by settings.

The details that make dictation reliable

On-device transcription is only half the problem. What happens between speech and pasted text determines whether dictation feels trustworthy.

🎯
Paste workflow that does not lose your text

Dictation apps face a subtle problem: between when you stop recording and when text is pasted, you might switch apps, click a different field, or have something important on your clipboard. If the app does not account for this, your text ends up in the wrong place or overwrites what you had copied.

EnviousWispr captures which app had focus when you started recording. A pre-roll audio buffer ensures the very first word is never clipped, even if you start speaking before the hotkey is fully pressed. The ASR engine stays warm between recordings, so there is no cold-start delay.

After transcription, the app re-activates the original target app and uses a three-tier paste system: Accessibility API direct insertion first, then simulated Cmd+V, then AppleScript as a last resort. Your clipboard contents are saved before the operation and restored after, so nothing is lost.

How it works: Pre-roll buffer captures ~200ms of audio before hotkey release. Warm engine keeps the ASR model loaded in memory. Three-tier paste (AX insertion, CGEvent Cmd+V, AppleScript) with clipboard snapshot and restoration. Target app reactivation uses Accessibility API force-activation to bypass macOS background process restrictions.
📝
Custom vocabulary that catches phonetic mismatches

Every speech-to-text engine struggles with names, acronyms, and domain-specific terms. Simple find-and-replace dictionaries only work when the ASR output exactly matches the expected error. But ASR errors are phonetic: "Envious Whisper" instead of "EnviousWispr," or "park it" instead of "Parakeet."

EnviousWispr runs custom vocabulary through a 6-pass fuzzy matching pipeline. First, exact matches are applied. Then Levenshtein distance catches close misspellings. Soundex phonetic encoding finds words that sound alike but are spelled differently. Bigram similarity catches partial matches. Case-insensitive and word-boundary passes handle the remaining edge cases.

The result: you add "EnviousWispr" to your custom words once, and it corrects "envious whisper," "envious wisper," and "envious whispr" automatically. VoiceInk's personal dictionary is useful for exact replacements, but phonetic misrecognitions require the fuzzy matching approach.

How it works: 6-pass pipeline: exact match, Levenshtein distance (edit distance threshold), Soundex phonetic encoding, bigram character-pair similarity, case-insensitive match, word-boundary match. Each pass runs independently, so a word can be caught by any matching strategy. Custom words support both "correct this term" and "replace X with Y" modes.

Choose VoiceInk if these matter more to you

VoiceInk is a solid, lightweight dictation app. It may be a better fit in these situations:

💰
One-time purchase, no updates to worry about

VoiceInk is a one-time $39.99 purchase. You pay once and own it. EnviousWispr is free today, but as a younger project its long-term model is still evolving. If you prefer the certainty of a single purchase, VoiceInk is straightforward.

🎯
Per-app settings and screen context

VoiceInk's Power Mode lets you configure different prompts and behaviors for each application, and can read what is on your screen to provide more relevant formatting. EnviousWispr uses global settings and does not have screen context awareness.

🧰
Simpler, lighter app

VoiceInk does one thing well with a clean interface and minimal setup. EnviousWispr has more moving parts (dual engines, multi-provider AI polish, fuzzy vocabulary). If you want the simplest possible dictation tool, VoiceInk may feel more focused.

📜
GPL open source license

VoiceInk is licensed under GPL v3, an OSI-approved open source license. EnviousWispr uses BSL 1.1, which is source-available but not OSI-approved. If license type matters to you, VoiceInk has the edge.

🌎
Broader multilingual support

VoiceInk supports 100+ languages through whisper.cpp and has been tuned for multilingual workflows. EnviousWispr supports 90+ via WhisperKit, but Parakeet TDT (the fast engine) is English-only. If you dictate heavily in non-English languages, VoiceInk may be more polished for that use case.

Potentially faster setup

VoiceInk has a straightforward download-and-go experience. EnviousWispr requires granting Accessibility permissions and downloading an ASR model on first launch. Both are fast, but VoiceInk may feel quicker to get started with.

If you primarily dictate in English and want the fastest transcription at zero cost, give EnviousWispr a try. If VoiceInk's per-app settings or screen context awareness are important to your workflow, it is worth the $39.99.

Common questions

Is EnviousWispr really free compared to VoiceInk?

Yes. EnviousWispr has no purchase price, no subscription, and no usage limits. VoiceInk charges a one-time fee of $39.99.

Both are on-device. Why does the speech engine matter?

Different engines have different speed and accuracy profiles. EnviousWispr uses Parakeet TDT, a CTC-Transducer model optimized for Apple's Neural Engine, which delivers 0.43s median latency for English. VoiceInk uses whisper.cpp, a solid engine, but Parakeet is purpose-built for fast English transcription.

Does EnviousWispr support languages other than English?

Yes. Parakeet TDT handles English. For other languages, EnviousWispr switches to WhisperKit, which supports 90+ languages. VoiceInk supports 100+ languages through whisper.cpp.

How does custom vocabulary compare between the two apps?

EnviousWispr uses a 6-pass fuzzy matching system with Levenshtein distance, Soundex phonetic matching, and bigram similarity to catch misrecognized words even when the ASR output is phonetically close but spelled differently. VoiceInk offers a personal dictionary with find-and-replace rules, which works well for exact substitutions but may miss phonetic errors.

What is AI polish and does VoiceInk have it?

AI polish is a post-transcription step that fixes grammar, removes filler words, and formats your text using a language model. EnviousWispr supports Apple Intelligence, Ollama (both on-device), and cloud providers with your own API key. VoiceInk offers AI formatting through system prompts with cloud LLM providers.

Which app is better for non-English languages?

VoiceInk supports 100+ languages through whisper.cpp and has been optimized for multilingual use. EnviousWispr supports 90+ via WhisperKit but its fastest engine (Parakeet TDT) is English-only. For non-English dictation, VoiceInk may have an edge in language breadth and tuning.

Does VoiceInk have AI text enhancement?

Yes. VoiceInk offers AI formatting through system prompts with LLM providers. EnviousWispr supports 5 AI polish providers including Apple Intelligence (fully on-device), Ollama (on-device), OpenAI, Gemini, and Groq, plus built-in hallucination safeguards that reject fabricated output.

Can I switch from VoiceInk easily?

Yes. Download EnviousWispr, set your hotkey, and start dictating. There is no data to migrate. Both apps work in any text field on macOS. See the 2-minute getting started guide.

What Mac do I need?

EnviousWispr requires Apple Silicon (M1 or later) running macOS 14 Sonoma or newer. VoiceInk also requires macOS 14+. Both apps target modern Macs.

Is there a free alternative to VoiceInk?

Yes. EnviousWispr is a free, on-device dictation app for Apple Silicon Macs. It uses Parakeet TDT for fast English transcription and includes an AI polish pipeline with 5 providers. No account or payment required.

Is EnviousWispr open source?

Source-available under the Business Source License 1.1. You can read, build, and inspect every line of code on GitHub. It is not an OSI-approved open source license like VoiceInk's GPL v3, but it gives you full transparency into how the app works.

Ready to try free on-device dictation?

Free to download. No account required. Faster than whisper.cpp for English.