You don’t need a meeting bot to get a transcript. On a Mac you can capture the call’s audio and your mic, run Whisper on-device, and get a clean note with no bot in the call and no audio uploaded. Below is the fast way, plus the manual route if you’d rather wire it up yourself.
No participant joins the call, and no notetaker bot posts an “X is recording” banner. A Mac app captures the audio on your machine.
It announces itself. A notetaker bot shows up in the participant list where the whole call can see it. For a sales, hiring, or NDA conversation, that is the wrong first impression.
It uploads your audio. Bot-based tools send the call to their cloud to transcribe. “Bot-free” cloud tools still upload the audio, so the recording leaves your machine either way.
It only does scheduled calls. A bot needs a meeting link to join. It can’t record the hallway conversation, the phone call, or the audio file already on your disk.
It bills monthly. Most bot notetakers are a per-seat subscription. You pay every month for a transcript you could capture on your own Mac for a one-time price.
Capture the call on your Mac, with no bot and no driver. Open Quietly and start recording from the calendar prompt, or press ⌘R. Quietly captures the call’s audio and your mic on separate tracks, straight from the system. Nothing joins the Zoom call, and there is no virtual audio device to install.
Whisper transcribes on-device, then an LLM cleans it up. Quietly runs Whisper large-v3 on your Mac for speech-to-text, then an on-device LLM removes fillers and false starts and fixes punctuation, so the note reads clean instead of like raw transcription. No API key, no audio uploaded.
A Markdown note lands in your folder. Front-matter has attendees, calendar, and duration; the body is the clean transcript split into speaker turns. It’s plain .md, so you can open it in any editor, grep it, or hand it to Claude, Cursor, or Codex.
For a meeting with no calendar event, press ⌘R for an
ad-hoc recording. For a Zoom cloud recording you already have, pick
Transcribe a file… and drop in the .mp4 or
.m4a for the same note in the same folder. The same flow
covers
Google Meet, Teams, and in-person meetings.
Three ways to transcribe a Zoom call. Only one keeps the audio on your Mac.
| Quietly (local) | Bot-free cloud | Bot notetaker | |
|---|---|---|---|
| No bot in the call | No bot | Joins | |
| Audio stays on your Mac | Uploaded | Uploaded | |
| Works offline | |||
| Records in-person + audio files | Some | Link only | |
| Notes you own as plain Markdown | |||
| Pricing | $49 once | Subscription | Subscription |
See the full field in our guide to the best local meeting note takers for Mac, or the overview of AI note takers that don’t join meetings.
The manual route works, and it’s free. You capture system
audio on macOS with ScreenCaptureKit or a loopback device, run
whisper.cpp with the large-v3 model on the saved file,
and pipe the output into a Markdown file. You assemble four pieces
yourself (capture, transcription, transcript cleanup, and file
output) and babysit them for each meeting. Quietly is the one-app
version of that pipeline: calendar-aware capture, local Whisper,
on-device cleanup, and a Markdown note in your folder, with nothing
to stitch together.
On-device Whisper + LLM cleanup, plain Markdown, no subscription. $49 once, macOS 13+.