Remix.run Logo
Show HN: Trace – Offline Mac meeting transcripts you can flag mid-call(traceapp.info)
104 points by AG342 a day ago | 42 comments

I'm the developer of Trace, a non-intrusive, shortcut-driven Mac app that records and transcribes your meetings on-device. I know, another meeting transcription app. Please bear with me though, I'm confident that this is at least a little novel.

I primarily built Trace for myself. I'd been using MacWhisper, but there was enough fiddling before each call that I'd forget to start it and walk out of an hour-long meeting with nothing written down. So the things I cared about most were that it's quick to activate and stays out of the way. You activate Trace by pressing a global shortcut (configurable), which reveals a small bar at the bottom of your screen (there's also a keystroke and/or option to hide it entirely if you'd rather not see it at all).

As I was building it I wanted to bake in a couple of workflows I'd wished for in other transcription apps.

1. Mid-meeting you can press another global shortcut to mark a "key moment" and type a note. The note shows up in the resulting transcript inline at that timestamp. I wanted to add this because I kept catching myself thinking "wait, that bit matters" in meetings and reaching to jot it down in a separate app like Obsidian, which I then needed to add context to, which took me out of the meeting. I use it all the time. If I paste the transcript into an LLM afterwards (which I find myself doing more and more these days) the important moments are flagged so it doesn't gloss over them. This is more noticeable in longer meetings with lots of topics. 2. With another keyboard shortcut you can summon a rough live recap (subtitles, basically) to quickly recap what's just been said.

Trace uses standard macOS microphone and system recording APIs to capture both sides of the conversation as two separate tracks and then runs the system side through on-device diarization to identify speakers. Right now we only label them as "Speaker 1", "Speaker 2", etc but there are plans for speaker labelling in the future. You can also show a "live recap" as the call is happening to review what someone just said.

All transcription models run on your machine. To be clear though, Trace doesn't do any of the summarising itself, it just produces a markdown transcript, so if you want summaries then you need to pass the output to an AI.

The app is sandboxed and your audio/transcripts are never uploaded anywhere - they just exist as audio files and markdown on disk. The only network call Trace is required to make is on the first run to download the speech and speaker models (around 500MB) from Hugging Face, and after that it can be used fully offline. If enabled, a Google Calendar integration can auto-name sessions but that needs a network connection.

The app is £9.99 on the macOS App Store. I've been using it every day for months now and I'm super happy with how it's improved my workflow. Feedback very welcome.

blopker 5 hours ago | parent | next [-]

Nice! I really like how many variations on this idea are coming out. MacWhisper used to be great, but is kinda of a buggy mess now.

I'm making my own, for personal use. I did a survey of many and they all (that I could find) skip the fundamentals.

The major issues that I've run into:

- Crash recovery. Most of these apps are incredibly buggy and crash all the time, taking the recorded audio with them. Macwhisper is incredibly bad at this.

- Disk space. Many of these apps save wav files to disk. After a few hours of meetings, you may end up with gigabytes eaten.

- Microphone bleed. People don't always use headphones, the system mic will pick up the speaker sounds, causing duplicate (approximately) transcriptions.

I've yet to find a solution that handles all these correctly, let alone having high quality transcriptions.

Anyway, most of these apps are built around https://github.com/FluidInference/FluidAudio, if anyone is curious. Their readme has a big list of similar apps as well.

scosman 22 minutes ago | parent | next [-]

I had the same experience so started building my own. All problems are solvable, just working on the polish.

- crash recovery: part one is use ADTS aac (even if process crashes, audio is saved up until it does). Part two is isolating the transcription/summaries in separate XPC services.

- disk space: AAC 64kbps mono soles it. Could use Opus for further reduction but both are small.

- speaker bleed: macOS voice isolation processing solves this. It’s a nightmare to get setup, but works great once done.

- library: using argmax SDK - by a bunch of ex-Apple on device AI folks.

It it wasn’t for CoreAudio, I’d say it was easy to make. Argmax, Whisper, and llama.cpp - wrapped in the right architecture, mostly just work.

I’m having fun nerding out on the details like custom vocabulary (get the names of the people in here meeting right), inferring speaker names from transcript, calendar integration, nice UI, etc.

jv22222 4 hours ago | parent | prev | next [-]

Nice tip on FluidAudio that's the kind of thing I've been looking for. Thanks!

highmastdon 4 hours ago | parent | prev | next [-]

I’m using MacParakeet these days. If your language is supported, definitely give it a try. It’s much faster and lower footprint

Folcon 2 hours ago | parent | prev [-]

> I've yet to find a solution that handles all these correctly, let alone having high quality transcriptions.

Wait really? I honestly would have thought this was a solved problem by now, especially high quality transcriptions bit, just out of curiosity, is the problem that the quality isn't high enough?

blopker 23 minutes ago | parent [-]

There are still a few unsolved problems that require tuning for specific applications. Applications that own the video call have a much easier time, they have access to each individual audio stream. Applications like this, however, have to deal with overlapping voices from a single stream. If it's trying to attribute each utterance to an individual, separating the voices is tough, or can lead to confusing transcripts. There are many little problems like this which make it a tough problem in real world usage. Domain specific terms, or proper nouns is another source of inaccuracy.

addozhang 44 minutes ago | parent | prev | next [-]

This is an excellent product and exactly what I've been looking for. But most of my meetings are done on my company Mac, and they definitely won't let me install this kind of software, even though I'd be willing to pay for it myself.

geniium 38 minutes ago | parent [-]

And if it runs on the browser without install it would not probably be able to record your other browser (or app) audio

mrkn1 38 minutes ago | parent | prev | next [-]

The key moments feat is neat. Been working on a free opensource offline transcriber that runs fast on CPU and does diarization too

https://github.com/kouhxp/yapsnap

usernametaken29 an hour ago | parent | prev | next [-]

I don’t have this particular use case right now but if anything it feels like LLMs and their distilled on prem models are starting to kill SaaS simply because it becomes more and more tenable to build a “complete software” in a short time frame. That’s freaking awesome. Good idea and love the return of the good old you buy, you own it mentality

scosman 29 minutes ago | parent | prev | next [-]

Those transcription times are fast fast. What model/library do you use?

denbyc 5 hours ago | parent | prev | next [-]

I'd love to have a purchase option not tied to the App Store if possible. I don't use an Apple account with my Mac, but I would love to try Trace.

AG342 an hour ago | parent | next [-]

This is definitely on the to-do list if there’s enough demand for it. The payment/distribution/updates infra required is not insignificant, especially if nobody was that bothered, but by the sounds of it they are so I’ll bump this up the priority list.

thenipper 44 minutes ago | parent | prev | next [-]

Also agreed, my work prohibits App Store apps so i have to skip things like this.

addozhang 2 hours ago | parent | prev [-]

Agreed, no need to tie it into Apple either.

robertkarl 3 hours ago | parent | prev | next [-]

This looks sick. I was going to download it but for $10 I am more willing to attempt asking Claude to implement something like it, than to purchase.

I would be more willing to purchase if it was open source and I could build from source to try it first.

satvikpendem 3 hours ago | parent | next [-]

It's kinda funny how frontier LLMs change the game when it comes to software. If it becomes so good to make whatever little utility you want, why would I pay 10 dollars when an AI subscription is 20 bucks and I can build way more in a month for that $20? Especially since it's very likely people on show HN have simply used AI anyway, so why would I pay for your prompts?

addozhang 2 hours ago | parent | prev [-]

I don't really recommend it. If the software is a one-time purchase, there's no need to rewrite it with an LLM. Rewriting the tokens could cost more than just $10.

anonymouse008 2 hours ago | parent [-]

* full price tokens, yes

Not the subsidized subs

plaguuuuuu an hour ago | parent [-]

I'd much rather spend $10 than have to sit at a prompt every day babysitting the thing, after working all day sitting at a prompt babysitting other things

nkmnz 5 hours ago | parent | prev | next [-]

Which Speech-to-Text is used? Is it possible to configure it? This might be crucial for supporting languages other than English - the model that comes built-in with macOS fails completely for German.

Myrmornis 2 hours ago | parent | prev | next [-]

I will be happy to spend £10 on this. One feature question though -- does it continue transcribing the meeting even if I've turned my volume down / muted it?

AG342 2 hours ago | parent [-]

It does indeed. Trace will record your system audio regardless of your speaker volume. You do have the option to mute your own mic temporarily though, via a button on the “pill” or a global keyboard shortcut.

mushufasa 5 hours ago | parent | prev | next [-]

This looks like a good approach, though I would expect this to be a native macOs feature within 12 months -- this seems totally like it fits into their product roadmap.

watchlight 9 hours ago | parent | prev | next [-]

Agreed with JohnBiz, the moment flagging is interesting and unusual, and a nice contrast to passive transcription. I only recently learned about MacWhisper (I'm Windows primarily) and was floored to learn how expensive the Pro option is. Nowadays it's not so hard to have some-level of DIY transcription, so crazy that it's priced with a premium.

What's your diarization pipeline? Pyannote?

I'd taken a different approach that used a LLM clean-up pass to summarize and progressively compress the transcript for ultra-long content, but I like the idea of targeted "pay attention here" flags.

frabia 5 hours ago | parent | prev | next [-]

Super interesting! How accurate is the local model to transcribe audio compared to other cloud services? E.g. Google Meet, Otter, Granola, etc.

watchlight 5 hours ago | parent [-]

A lot of the available models are Whisper or Faster-Whisper derived and shared across multiple apps. The tier names are often funny... "Tiny" "base" "small" "medium" "large" "large-v2" "large-v3" "large-v3-turbo" -en only variants, etc.

In my experience, medium is often the sweet spot for English accuracy vs speed, especially if following-up with a post-processing pass. The large options are all fine, but can severely slow it down. There are some speed checks on my website if you're curious (link not posted because I don't want to hijack another post's app).

nazca 5 hours ago | parent | prev | next [-]

I've been looking for this exact thing!

overflowy 5 hours ago | parent | prev | next [-]

Does it support multiple languages?

satvikpendem 5 hours ago | parent | prev [-]

I don't see how this is different to literally the dozens of other offline transcription apps, many open source even unlike this one.

hmokiguess 5 hours ago | parent | next [-]

can you share them? I'm looking for a decent open source one

satvikpendem 3 hours ago | parent | next [-]

Literally so many when searched: https://hn.algolia.com/?q=macOS+transcription

Add "open source" if you wish as well.

hmokiguess 2 hours ago | parent [-]

Any that you have used and recommend comparable to the one from the post? Thank you!

infl8ed 4 hours ago | parent | prev | next [-]

I don't mind https://matthartman.github.io/ghost-pepper/ however I do really want speaker recognition which it does have but I haven't been able to get it working.

jv22222 4 hours ago | parent | prev | next [-]

I'm seeing a lot right here: https://github.com/FluidInference/FluidAudio

vermilingua 4 hours ago | parent | next [-]

I don’t see any there that are as focused as this one, perhaps except Talat which is considerably more expensive.

jv22222 4 hours ago | parent [-]

Ah. My bad. I didn't review them I was just paying more attention to the op asking for a list of open source ones.

hmokiguess 4 hours ago | parent | prev [-]

I went through the list but most feel subpar to me, and some aren't even open source (just claim they use FluidAudio I guess?)

nl 2 hours ago | parent | prev [-]

Handy is the most common recommendation

https://handy.computer/

hmokiguess an hour ago | parent [-]

That doesn't seem to do transcription of meetings?

jv22222 5 hours ago | parent | prev [-]

Classic HN. Thanks for keeping it real.

satvikpendem 3 hours ago | parent [-]

There are so many I've seen on show HN, that's why.

https://hn.algolia.com/?q=macOS+transcription