Earlier quoted context omitted.
Not sure about OP but I just implemented this in my Hacker News android client (thanks for the idea OP). This is how I implemented it. I had already achieved article to "reader mode" extraction by heavily customizing the Kotlin port of Mozilla‘s Readability: https://github.com/dankito/Readability4J From the extracted "reader mode" text, I had to do further extraction to get rid of things like image captions, author n…
I really want one of these that can follow RSS/Atom feeds.
Show HN: Instantly listen to any URL
81–89 of 89 posts
Re: Show HN: Instantly listen to any URL
#82Re: Show HN: Instantly listen to any URL
#83Very cool! I've made a small prototype of something like this before, but what's always gotten me is the limitations of text to speech. Hopefully some point soon we will have options for more natural speech.
Re: Show HN: Instantly listen to any URL
#84This is timing. I was just looking for a solution for a friend who has very bad eyesight due to accident. They want to be able to listen to news articles and such. It would be nice if we can choose languages other than English.
Re: Show HN: Instantly listen to any URL
#85Re: Show HN: Instantly listen to any URL
#86Re: Show HN: Instantly listen to any URL
#87Is this somehow using the waybackmachine to scrape pages? When I try some of the classic ssrf paths like file:/// or http://localhost:8080 , I get audio about the internet archive. When I put in https://localhost:443 , I get audio for the default nginx page, which matches what the internet archive has for that url: https://web.archive.org/web/20210620003533/http://localhost/ But putting http://localhost returns the a…
Added a check against localhost thanks for pointing that out.
Re: Show HN: Instantly listen to any URL
#88Very cool but only seemed to catch the first couple of sentences or paragraph for my test URL.. URL used: https://www.bbc.com/news/world-asia-india-43581122
Re: Show HN: Instantly listen to any URL
#89Earlier quoted context omitted.
Same here, we built a scraper to (more or less) intelligently extract text from websites, I think adding TTS to it would be trivial. I'm guessing the hardware requirements are for the TTS engine? Could the Web Speech API be used to generate the audio locally to bring down costs? Even though you'd lose support for IE and FF.
Exactly what I did, simple web interface I run inside rambox along with all chats and email clients and whatnot, paste a url and it scrapes it and generates the audio to be played in browser(rambox in this case). OK, I do keep a copy of the audio and the text and some other metadata but that's completely optional. As far as tts, while the cloud speech is unmatched, it's still proprietary and not free. However there a…