Show HN: I made a website that converts YT videos into step-by-step guides
11–20 of 135 posts
Re: Show HN: I made a website that converts YT videos into step-by-step guides
#12Re: Show HN: I made a website that converts YT videos into step-by-step guides
#13One question- On the backend, is it downloading each video CC (closed-caption) transcript and feeding that into a tuned prompt? What happens for videos where this is missing? Asking because I've noticed CC is occasionally unavailable for some YouTube videos.
If you cared to have a fallback, a potentially interesting experiment / solution for such cases is to download the video, extract the audio to a WAV file, then through the audio through Whisper [1] to generate the transcript. Using CPUa, it will still be incredibly intensive and slow, generally not much faster than real-time (e.g. a 5 minute clip will take on the order of ~5 minutes to complete transcription). However, with Whisper running on a fancy GPU it is insanely faster, between 100-200x faster, meaning even for long videos, generating the transcripts will complete in only a few seconds.
Great job @aka_sh!
[1] https://github.com/openai/whisper
p.s. Is there any chance you'd open source your code? Or do you plan to turn this into a business? The code itself is exactly a huge moat, and it'd be cool to see how you did this. Cheers.
p.p.s. stepify.tech app is currently crashing out to a heroku error page when I try to submit a YT link.
Re: Show HN: I made a website that converts YT videos into step-by-step guides
#14Re: Show HN: I made a website that converts YT videos into step-by-step guides
#15I so appreciate these open source/access models allowing us to build these kinds of tools without having to pay and send our data to openai.
Re: Show HN: I made a website that converts YT videos into step-by-step guides
#16Love how the AI turned “drop a comment below” into a project step: “Seek feedback from stakeholders or viewers by encouraging questions and comments for further engagement.” This is from a bathroom remodel video.
Sorry for that, I'm looking into it. The problem is for videos that have no transcript. Maybe it's because i'm feeding it the description of the video for now. I'll find some workaround for this. Thanks!
Re: Show HN: I made a website that converts YT videos into step-by-step guides
#171) Speed : the site is often showing heroku errors. Seems like you are running the entire processing in the request-response cycle. If not already done, please try to use a queueing system to perform async processing - and then let the user know when their video is ready to view as steps (probably via email or browser notifications). This will stop your site from crashing frequently and you'll be able to scale to many users very quickly.
2) Please add link-backs to the specific time in the video from where the step is shown.
Cheers!
Re: Show HN: I made a website that converts YT videos into step-by-step guides
#18Great work. A few ideas 1) Speed : the site is often showing heroku errors. Seems like you are running the entire processing in the request-response cycle. If not already done, please try to use a queueing system to perform async processing - and then let the user know when their video is ready to view as steps (probably via email or browser notifications). This will stop your site from crashing frequently and you'll…
Re: Show HN: I made a website that converts YT videos into step-by-step guides
#19// I'm not really kidding! Because boy do I hate 15 minute videos with the one CLI command you need buried like a needle in a haystack. Seeing the nonsense distilled into a handful of straightforward steps is so refreshing. Awesome work!
Re: Show HN: I made a website that converts YT videos into step-by-step guides
#20I'm curious if you noticed certain models worked better for summarizing and converting to steps. For example, in my projects I've found that Gemini outperforms "better" models like GPT for similar use cases, which I guess makes sense given Google's interest in summarization.