TE
科技回声
首页24小时热榜最新最佳问答展示工作
GitHubTwitter
首页

科技回声

基于 Next.js 构建的科技新闻平台,提供全球科技新闻和讨论内容。

GitHubTwitter

首页

首页最新最佳问答展示工作

资源链接

HackerNews API原版 HackerNewsNext.js

© 2025 科技回声. 版权所有。

Show HN: YouTube Transcript Optimizer – Turn Videos into Polished Documents

3 点作者 eigenvalue8 个月前
I&#x27;ve been working on this app for a while and it&#x27;s finally ready to show people. My wife makes music theory videos on YouTube, and I noticed that she was spending a lot of time and effort producing written materials to give to her Patreon supporters to go along with her videos, which already require a huge amount of effort to produce. I realized that I could put together a couple different open source tools that I had already made to automate much of this work.<p>The resulting app, YouTubeTranscriptOptimizer.com, makes it really quick and easy to paste in a YouTube video URL and have it automatically generate not just a really accurate direct transcription, but also a super polished and beautifully formatted written document that can be used independently of the video.<p>The document basically sticks to the same material as discussed in the video, but it sounds much more like a real piece of writing and not just a transcript. It also lets you optionally generate quizzes based on the contents of the document, which can be either multiple choice or short-answer quizzes, and the multiple choice quizzes get turned into interactive HTML files where you can actually take the quiz and it will grade your answers and score the quiz for you. And to make things simpler for less tech-savvy content creators, I made it easy to host the resulting quizzes and documents directly so you can easily share them with your potentially even less tech-savvy audience.<p>This was the first bigger project that I made using a Nextjs&#x2F;FastAPI stack, and I was very pleased with the framework. It really lets you manage complexity in a nice way. Things did start to get a bit complicated with state management, and I found using Zustand helped to centralize some of that. Anyway, I&#x27;m still trying to figure out the exact target market for this tool. Right now it&#x27;s more targeted to content creators on YouTube who have a Patreon or similar and want to reward their supporters, but I&#x27;m realizing that the market of YouTube viewers is much bigger and those people might want to use the tool themselves to turn videos into documents and quizzes for self study purposes.<p>I&#x27;m also working on another version that is document-centric, but it&#x27;s a bit of a different problem. In the case of YouTube video transcripts, we are dealing with raw speech utterances, so there could be run-on sentences, filler words and other speech errors, etc. Thus we need to really transform the underlying content to first get the optimized document, which can differ quite significantly from the raw transcript. Then we use that optimized document to generate the quizzes.<p>In the case of a document only workflow, we generally want to stick to what&#x27;s in the document very closely, and just extract the text accurately using OCR if needed (or extract it directly in case we don&#x27;t need OCR) and then reformat it into nice looking markdown-- but without changing the actual content itself, just its appearance. When we&#x27;ve turned the original document into nice looking markdown, we can then use this to generate the quizzes and perhaps other related outputs (e.g, Anki cards, Powerpoint-type presentation slides, etc).<p>Anyway, I&#x27;d love to get some initial feedback. I&#x27;ve done a lot of testing, so it should all basically be working now, but I&#x27;ve never dealt with a heavy load, so it&#x27;s possible that it will melt down my servers if there is too much traffic.

2 条评论

meerab7 个月前
Great tool!<p>Founder at VideoToBe.com here. I built similar service, and it worked for a while. The moment it started to get traffic, it got blocked by Youtube. Your service may also get blocked when you start to scale. Your next iteration of document-centric version is more promising. It opens door to various use cases and isn&#x27;t limited to YouTube.<p>I pivoted to transcriptions and AI summarization for user uploaded content.
评论 #41737512 未加载
skeptrune8 个月前
Is there a market for making folks&#x27; content libraries searchable? I imagine creators might be interested in what they have posted for a given topic in the past to ease writing time for new content.<p>Lots of folks have asked us to make search for podcasts&#x2F;youtube-channels and we&#x27;ve tried it with the raw transcripts but it doesn&#x27;t work too well.<p>Chunking it into semantic pieces to put in the search index by sentence splitting or other naive techniques isn&#x27;t great and I have not seen a product which can do speaker recognition out of the box.<p>Speaker recognition for multi-speaker podcasts is probably the best chunking technique for those. However, I think you have the best one for this style of educational content.<p>Also, cool project!!!
评论 #41639659 未加载
评论 #41724175 未加载