Earlier quoted context omitted.
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.
* full price tokens, yes Not the subsidized subs
Show HN: Trace – Offline Mac meeting transcripts you can flag mid-call
41–50 of 100 posts
Re: Show HN: Trace – Offline Mac meeting transcripts you can flag mid-call
#42I'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.
Re: Show HN: Trace – Offline Mac meeting transcripts you can flag mid-call
#43Re: Show HN: Trace – Offline Mac meeting transcripts you can flag mid-call
#44I'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.
Re: Show HN: Trace – Offline Mac meeting transcripts you can flag mid-call
#45Re: Show HN: Trace – Offline Mac meeting transcripts you can flag mid-call
#46Re: Show HN: Trace – Offline Mac meeting transcripts you can flag mid-call
#47This 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.
Re: Show HN: Trace – Offline Mac meeting transcripts you can flag mid-call
#48Re: Show HN: Trace – Offline Mac meeting transcripts you can flag mid-call
#49Nice! 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 in…
> 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?
Re: Show HN: Trace – Offline Mac meeting transcripts you can flag mid-call
#50Nice! 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 in…
- 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.