How to get notified when your name is mentioned in a Zoom meeting
You have three meetings on the calendar today and at some point in one of them, someone is going to say your name. Maybe to ask a question, maybe to assign work, maybe just to thank you for the deck. If you are paying attention you will catch it. If you are not — and the honest answer most weeks is "not really" — you will miss the moment by ten or twenty seconds and have to ask them to repeat. This post is about the three ways people try to solve that and which one actually works.
Option one: pay closer attention
The obvious move and the one that breaks first. Sustained auditory attention to a single channel for a 30-minute call is hard. Splitting it across two channels at once is harder than people admit, and recent work on dual-task interference puts the realistic ceiling much lower than the "I can multitask" self-report. By call three of the day, the part of your brain that monitors the speaker's audio for your name has quietly clocked out, and you only notice when the silence gets awkward.
The other version of this is "have a colleague tag you in Slack." It works when you have a colleague in the meeting, which is roughly half the time, and it adds a second person to the dependency chain, which is exactly what you wanted to avoid.
Option two: read the transcript afterwards
The cloud transcription tools — Otter, Granola, Fireflies, the built-in Zoom transcript — all hand you a searchable record after the call. You can ctrl-F your own name and see everywhere you came up. This is genuinely useful for recap, follow-up, and CRM hygiene. It is not useful for answering the question you missed in real time. The meeting has ended. The other party has rescheduled. The window has closed.
There is also the small problem that the bot has joined the meeting, which is either fine or distinctly not depending on your customer, your IT team, and your privacy posture. That is a separate post — on-device vs cloud transcription covers the trade in full.
↳ pull quoteThe latency budget for catching your name is two seconds. A post-meeting transcript misses it by thirty minutes.
Option three: a live keyword listener
The version that actually works is a piece of software that listens to the mic feed locally, runs streaming speech recognition over it, and fires a notification the instant your name appears in the confirmed token stream. Three things have to be true for it to be usable:
- Latency under two seconds. Anything more and the speaker has moved on. MeetPing measures around 1.4 seconds from utterance to popover on an M1 Pro.
- Phonetic match, not literal. Streaming ASR mangles unusual names. The watcher has to recover from that or you will silently miss every other mention.
- Auto-arm. A listener you have to remember to switch on will get switched off on Tuesday and stay off all week. It needs to wake itself when a meeting starts and sleep when it ends.
How MeetPing does it
MeetPing is a macOS menubar app that does exactly this. It watches Core Audio for mic activation and the foreground app; when Zoom, Google Meet, Microsoft Teams or a Slack huddle takes the mic, the listener arms automatically. See auto-arm for the detection logic.
The audio buffer streams into Parakeet TDT v3 on the Apple Neural Engine. Confirmed tokens get run through three matchers — word-boundary regex, Soundex equivalence, and a small-edit Levenshtein pass — so the keyword Ogtay still fires on octaye. The matcher is documented on the keyword watch page.
On a match the popover opens with the past 30 seconds of transcript already highlighted, and the next 30 seconds fills in live so you can read what is happening while you tab back in. Total wall-clock from utterance to highlighted popover is in the 1.4-2.0 second range, which is the only range where this is actually useful.
Why not just use Zoom's caption feature?
Zoom live captions are not bad. They are also not a keyword alert. The captions scroll regardless of whether you are reading them; there is no notification, no popover, no sound. If you were already not paying attention to the audio, you are also not paying attention to the captions. Zoom captions plus a keyword watcher is a reasonable combination — the captions for context, the watcher for the ping. We get into this more on MeetPing vs Superwhisper, which covers the shape difference between dictation, captions, and alerts.
The take
If you are missing your name in calls, you do not need a notes tool and you do not need to try harder. You need a small piece of software that listens for you and pings the moment a watchword fires. It costs $24.90 once, it runs on your Mac, and it does not need to call home.