Private, local transcription and system-wide dictation for Apple Silicon.
Qwen Scribe transcribes audio and video with Qwen3-ASR running through mlx-qwen3-asr on the Mac's Metal GPU. There is no account, API key, or Qwen Scribe cloud service. Audio and transcript text stay on the Mac.
Project status:
v0.1.0-beta.1. Core transcription, history, and dictation work. Releases are source-only for now: app builds are not yet Developer ID signed or notarized, so you build locally withmake app. Signed and notarized binaries are planned for v0.2, see ROADMAP.md. Feedback and careful testing are welcome.
The interface above uses synthetic demo text; no private recording or transcript is shown.
- Drag-and-drop audio and video transcription in a focused local web interface
- Qwen3-ASR 1.7B for accuracy or 0.6B for speed
- Automatic language detection, optional forced language, vocabulary hints, word timestamps, and SRT export
- Automatic local transcript history with reopen, individual delete, and delete-all controls
- Hold right Command in any text field, speak, then release to transcribe locally and paste at the cursor
- A non-focus-stealing HUD for Listening, Transcribing, success, and failure states
- Localhost-only API with Host and browser-origin checks
- Apple Silicon Mac
- macOS 14 or newer, as required by current MLX releases
- Native Python 3.12 or newer, as required by the pinned NumPy in requirements-lock.txt
ffmpegfor non-WAV audio and video:brew install ffmpeg- Apple Command Line Tools to build the app from source:
xcode-select --install
The 1.7B model needs roughly 3.4 GB of unified memory and the 0.6B model roughly 1.2 GB, in addition to normal application overhead. Model weights are not included in this repository.
From a downloaded or cloned source directory:
make app
open "dist/Qwen Scribe.app"The generated app is self-contained except for Python dependencies and model
weights, which it installs or downloads on first use. You may move both apps
from dist/ to /Applications after building:
Qwen Scribe.appstarts the server and desktop dictation helper.Stop Qwen Scribe.appstops only processes started by Qwen Scribe.
An app built locally is ad-hoc signed. If Gatekeeper blocks a downloaded build, right-click it and choose Open once. Stable public binaries should be signed with an Apple Developer ID and notarized; see ROADMAP.md.
Server logs are written to ~/Library/Logs/QwenScribe.log.
Then open http://127.0.0.1:8990. The first transcription downloads the selected model once. Subsequent use works offline once dependencies and weights are cached.
Desktop dictation starts with the Mac app. On first launch, allow Qwen Scribe in System Settings → Privacy & Security for:
- Microphone — records while right Command is held
- Input Monitoring — detects that modifier while another app is active
- Accessibility — pastes the finished text into the focused field
After changing Input Monitoring or Accessibility, stop and reopen Qwen Scribe. File transcription remains available when these optional permissions are not granted.
The helper watches modifier-change events and reacts only to the right Command key. It snapshots the pasteboard in memory, pastes the transcription, and restores the previous pasteboard if it has not changed. Without Accessibility access it cannot insert text at all, so it leaves the transcript on the clipboard and reports the failure instead of claiming success. See PRIVACY.md for the complete data and permission behavior.
| Data | Default location |
|---|---|
| Saved transcripts | ~/Library/Application Support/Qwen Scribe/transcripts |
| Private runtime | ~/Library/Application Support/Qwen Scribe/runtime |
| Diagnostic log | ~/Library/Logs/QwenScribe.log |
| Downloaded models | ~/.cache/huggingface/hub |
Saved transcripts are readable, unencrypted JSON. Use the history controls to delete one or all. Normal filesystem deletion is not secure erasure, and local backups may retain copies.
These are read by server.py, so they apply to ./run.sh and to the server the
Mac app starts:
| Variable | Default | Purpose |
|---|---|---|
QWEN_SCRIBE_DATA_DIR |
~/Library/Application Support/Qwen Scribe |
Where transcript history is stored |
QWEN_SCRIBE_MODEL_DIR |
./models |
Where a locally quantized model is looked up |
QWEN_SCRIBE_PORT |
8990 |
Port for the local server |
QWEN_SCRIBE_PORT only applies when you start the server yourself with
./run.sh. The Mac app and the desktop dictation helper both address
127.0.0.1:8990 directly, so dictation will not find a server on another port.
make setup # create .venv and install the reviewed dependency lock
make test # run lightweight API/history tests without model weights
make check # tests, source compilation, and publication hygiene
make app # build ad-hoc-signed app bundles in dist/
make package # create a beta release zip in dist/make app compiles native/DictationHelper.m as the arm64 bundle executable,
embeds the server launcher and tracked sources as signed resources, validates
its property lists, signs it, and verifies the result. Keeping the
privacy-sensitive recorder as the bundle executable gives macOS one stable app
identity for Accessibility, Input Monitoring, and Microphone access. Set
CODESIGN_IDENTITY to a Developer ID identity for a release build; notarization
is intentionally a separate release-owner step.
For source-based use, a local 8-bit conversion can reduce decoding latency:
source .venv/bin/activate
python quantize_8bit.py
python compare_models.py path/to/representative-recording.m4aThis creates a multi-gigabyte models/ directory that is intentionally ignored
by Git. Validate names and numbers on representative recordings before relying
on a quantized model.
Browser UI ──localhost──> FastAPI job queue ──> MLX / Qwen3-ASR
│
└──> local JSON transcript history
Right Command ──> native macOS helper ──> temporary WAV ──> same job queue
focused app <── restored clipboard + Command-V <── transcript
The API serializes GPU jobs to avoid memory contention. Media is staged under a random temporary filename and removed when processing finishes.
Read CONTRIBUTING.md before proposing changes. Please report vulnerabilities according to SECURITY.md, not in a public issue. The planned release sequence is documented in ROADMAP.md.
Project source and issue tracking live at VladUZH/qwen-scribe.
Qwen Scribe is licensed under Apache-2.0. Third-party licenses and attribution are listed in THIRD_PARTY_NOTICES.md.
Qwen Scribe is an independent community project. It is not affiliated with, endorsed by, or sponsored by Alibaba Cloud, the Qwen team, or Apple Inc. Qwen and other names may be trademarks of their respective owners.

