←back to thread

87 points davidbarker | 2 comments | | HN request time: 0.406s | source
Show context
surprisetalk ◴[] No.37744391[source]
Privacy issues aside, it's really cool to see a new category of device!

I've been actively searching for something that will allow me to "write" my essays while I'm driving.

I've tried voice memo apps for iOS, and the transcription stinks for everything I've tried.

Rewind's transcriptions for meetings works great, so I'm cautiously optimistic

---

Sidenote: I've been loving Rewind as a company, but I'm a bit worried about how they're approaching security.

They store fantastic metadata[1] in their sqlitedb locally, but they recently started encrypting the DB, which is great, BUT I want to be able to poke around and see EXACTLY what's being recorded.

[1] https://kevinchen.co/blog/rewind-ai-app-teardown/

I've been trying to get a script like the following working, if anybody has pointers!

    sqlite3 -readonly -bail -hexkey $(security find-generic-password -w -a '' -s ai.rewind.data-account) \
      ~/Library/Application\ Support/com.memoryvault.MemoryVault/db-enc.sqlite3 -cmd .tables
replies(2): >>37744505 #>>37744678 #
solardev ◴[] No.37744505[source]
Have you tried using some other speech recognition software to do the transcription afterward? In my experience Otter.ai and YouTube (uploaded as a private video) both work great for this.

I think OpenAI also has Whisper (https://openai.com/research/whisper), but I've never used it.

replies(1): >>37744549 #
surprisetalk ◴[] No.37744549[source]
Whisper works great, but there was a bit too much friction going from voice memo -> transcription -> notes.
replies(1): >>37745699 #
1. mkmk ◴[] No.37745699[source]
There is a nice single-function utility called MacWhisper that I’ve been using for this flow, maybe worth a shot if you haven’t come across it yet.
replies(1): >>37757005 #
2. solardev ◴[] No.37757005[source]
Thanks for this! Trying it out now (not the OP, but I love Mac-native apps)