This is great! I had made something like this for my own use, but it was way more complicated. It took a user account, downloaded all the liked videos, ran it through some model and vectorized it, and then you could use natural language search to describe a scene in your history of liked videos and it would show you the timestamp and the thumbnail (with the link to start watching from the timestamp). I ended up takin…
Show HN: YouTube Full Text Search – Search all of a channel from the commandline
161–170 of 172 posts
Re: Show HN: YouTube Full Text Search – Search all of a channel from the commandline
#162I'd love to know what y'all think!
Re: Show HN: YouTube Full Text Search – Search all of a channel from the commandline
#163I have actually been working on a full blow full-text search engine for youtube by transcripts as a web application: https://clipbase.xyz I'd love to know what y'all think!
Re: Show HN: YouTube Full Text Search – Search all of a channel from the commandline
#164This will come in handy. I’ve always wanted to count how many times Lex Fridman has referred to something as a beautiful dance.
Re: Show HN: YouTube Full Text Search – Search all of a channel from the commandline
#165Re: Show HN: YouTube Full Text Search – Search all of a channel from the commandline
#166Earlier quoted context omitted.
On web search, you can append &lr=lang_it to the URL. Maybe make it into a Chrome extension.
This does not seem to be doing anything. It's also being removed from the url bar when the page loads.
Re: Show HN: YouTube Full Text Search – Search all of a channel from the commandline
#167Re: Show HN: YouTube Full Text Search – Search all of a channel from the commandline
#168It looks like you're running searches using LIKE: https://github.com/NotJoeMartinez/yt-fts/blob/050981c0519a96... SQLite has a really power full-text search mechanism built in - FTS5. It can handle things like stemming and stop words and relevance ranking. My sqlite-utils Python library includes helper methods for setting that up: https://sqlite-utils.datasette.io/en/stable/python-api.html#...
[1]https://github.com/NotJoeMartinez/yt-fts/pull/25 [2]https://github.com/simonw/openai-to-sqlite