Hoping this can help me cut down the time I need to use on watching YT videos for uni. Outputting 20-30 mins into a .txt and feeding it to ChatGPT for summarizing. Thanks!
Coincidentally I threw something together this weekend that attempts to do just that. [0] It's really simple - just extracts subtitles and feeds it to ChatGPT to generate a markdown "article". [0] https://vreader.va.reichard.io/ [1] https://gitea.va.reichard.io/evan/VReader
Show HN: Bulk Creation of Transcripts from YouTube Playlists with Whisper
41–45 of 45 posts
Re: Show HN: Bulk Creation of Transcripts from YouTube Playlists with Whisper
#42Earlier quoted context omitted.
Coincidentally I threw something together this weekend that attempts to do just that. [0] It's really simple - just extracts subtitles and feeds it to ChatGPT to generate a markdown "article". [0] https://vreader.va.reichard.io/ [1] https://gitea.va.reichard.io/evan/VReader
This is interesting. I assume the samples on the website you linked are all precomputed outputs, right?
Edit: Ah just understood your question (coffee just kicked in). Yes, they're precomputed from when others used it. I save the generated articles in markdown format and sort by most recently generated.
Re: Show HN: Bulk Creation of Transcripts from YouTube Playlists with Whisper
#43Hoping this can help me cut down the time I need to use on watching YT videos for uni. Outputting 20-30 mins into a .txt and feeding it to ChatGPT for summarizing. Thanks!
Not sure why people are downvoting. I can confirm for some types of lectures this is a wholly legitimate approach.
Re: Show HN: Bulk Creation of Transcripts from YouTube Playlists with Whisper
#44Earlier quoted context omitted.
Right, but it opens up a small page element that isn't very aesthetically pleasing to read from, and feels fairly useless.
That’s true. But I coincidentally also made another mini project a few months ago for making those built-in transcripts much nicer to read from. You may find it useful: https://github.com/Dicklesworthstone/youtube_transcript_clea... Now that I think about it, this would work equally well for the transcripts generated by my new tool. I should just include that html file in my new repo as an added feature.
An iOS app is also coming soon so you’ll be able to listen and read while offline
Re: Show HN: Bulk Creation of Transcripts from YouTube Playlists with Whisper
#45You might want to look into diarization also http://gladia.io/ seem to be doing it well. It makes a great difference to have transcripts with speaker annotation.
Thanks, I haven’t seen an easy and reliable way to do this using open source stuff yet. Theoretically just separating out speakers seems like it wouldn’t be that hard; just compute a bunch of FFTs to arrive at a sort of frequency-based “voice fingerprint” for each speaker and then use something like XGboost to match up the audio for each second to one of the speakers. The problem is then what do you with that informa…
As someone looking for this functionality, this is the easiest part for me to do manually. Just give me "Speaker A, Speaker B, Speaker C", and I can change their names. It's the breaking apart of audio into separate speakers that's difficult - I'm trying out a few different tools, and none of them do a great job so far.