Show HN:AI 整理笔记语音转录,并同步至 Notion
1 分•作者: sakharesuraj07•10 个月前
我开发了一个简单的网络应用程序,可以录制你的声音,将其转换为文本,用 AI 清理,并自动保存到 Notion 中。
开发这个应用的初衷是出于个人需求——我录了大量的语音备忘录,但很少转录它们,因为原始的语音转文本结果很混乱,而且编辑起来非常耗时。这个应用实现了自动清理的步骤。
工作原理:
* 基于浏览器的录音(Web Speech API)
* 语音转文本转换
* AI 润色,修复语法/结构/清晰度
* 保存前手动编辑
* 保存到 Notion 工作区和本地数据库
AI 重写步骤是关键——它将冗长的口语模式转换为连贯的笔记。例如,“嗯,所以,主要问题是我们需要嗯弄清楚数据库模式,并且可能还要考虑缓存”会变成“主要问题:需要设计数据库模式并评估缓存选项。”
目前仅处理基本文本,但计划下一步实现格式化输出(项目符号、标题等)。
好奇 Hacker News 的看法——这是一个有用的工具,还是过度设计了一个简单的问题?
查看原文
I built a simple web app that records your voice, converts it to text, cleans it up with AI, and saves to Notion automatically.
The motivation was personal - I record tons of voice memos but rarely transcribe them because raw speech-to-text is messy and editing takes forever. This automates the cleanup step.
How it works:<p>Browser-based voice recording (Web Speech API)
Speech-to-text conversion
AI pass to fix grammar/structure/clarity
Manual editing before saving
Saves to both Notion workspace and local DB
The AI rewriting step is key - it transforms rambling speech patterns into coherent notes. For example, "uh so like the main issue is we need to um figure out the database schema and also maybe look at caching" becomes "Main issue: need to design database schema and evaluate caching options."
Currently handles basic text only, but planning formatted output (bullets, headings, etc.) next.
Curious what HN thinks - useful tool or over-engineering a simple problem?