Show HN: ReadToMe (iOS) turns paper books into audio (readtome-app.com)
Originally this was a Christmas present for my fiancée, who loves books but has an eye problem that makes it hard for her to read more than a few pages at a time. She mostly listens to audiobooks while following along with the paper book, but some books aren't available in audiobook or even e-book form, and all of the existing apps we tried were surprisingly bad at scanning paper books into audio — they make lots of mistakes, include footnotes and page numbers, etc., in a way that really degrades the experience.
Being an AI-oriented engineer by training, I had a crack at solving the problem myself, and was pleasantly surprised at how well the proof of concept worked. I then had some time free while shutting down my previous company (Mezli, YC W21), during which I polished up the app to the point you see it at now.
The way it works:
On the front end, it's a SwiftUI app (mostly written by ChatGPT!) that consists mostly of a document scanner (VNDocumentCameraViewController) and a custom-built audio player.
The back end is more complex — book photos are first sent to an OCR API, then some custom code I wrote does a first pass at stitching together and correcting the results. Then, the corrected OCR results are sent to GPT-3.5-turbo for further post-processing and re-stitching together, and finally to a text-to-speech API for conversion to audio.
The hardest part of this process was actually getting the GPT calls right — I ended up writing a custom LLM eval framework for making sure the LLM wasn't making edits relative to the true text of the book.
A few issues remain, which I'll work on fixing if the app gets a significant amount of traction, including:
1) It can take multiple minutes to get audio back from a scan, especially if it's on the longer side (10+ pages). I'll be able to bring this down by spinning up dedicated servers for the OCR and TTS back-end.
2) The LLM sometimes does TOO good of a job at correcting "mistakes" in book text. This issue crops up particularly often when an author deliberately uses improper grammar, e.g. in dialogue.
The app is priced at $9.99/month for up to 250 pages/month right now, which I estimate will just about cover the costs of API calls. I'll be bringing the price point down as the pricing of the required AI APIs comes down. There's also a 3-day free trial if you want to try it out.
If you do find this useful, or know somebody who might, I'd appreciate you giving it a try or letting them know! And please let me know if you have any feedback, including issues or feature requests.
48 comments
[ 2.2 ms ] story [ 122 ms ] threadEnglish book.
The APIs I'm using are mostly multilingual so it'd be doable to extend to other languages.
You need the user to download ‘enhanced’ or ‘premium’ voices in the settings app. (Settings -> Accessibility-> Spoken Content -> Voices -> [Language of choice] -> [Voice of choice] -> Enhanced or Premium)
In the app you have to search for the enhanced or premium voices when doing TTS.
Heres an Objective C example, I’m sure there’s an easier way to write it in Swift. https://github.com/osmandapp/OsmAnd-iOS/pull/1156/commits/0b...
I’m not sure if you’ll find this acceptable from a UX point of view but there’s an option to play with if you’d like.
You might also consider to add a translation option. For example to read a French text which will immediately be translated to English.
That said, I'm expecting OCR, LLM, and TTS API prices to continue coming down, at which point I'll be able to drop the price and raise the quota. Honestly I suspect iOS itself should be able to handle this use case well sooner or later, but until then, there's this app :).
1 scanning the books to text.
2 reading text to the user.
3 having a good interface.
Number 1 seems to be where you put the most effort, along with 3.
I guess at least for me, there are often digital copies of books, either in epub or Kindle. When that's available those should be used.
And if it is not available, wouldn't it make more sense to have document scanner to epub?
I guess I'm just thinking that it is relatively rare that you really need to document scanning in order to get an audio book. Since most of the cost seems to be from document scanner side, it seems worthwhile to split them up.
And also seems like it would make sense to think of these as 2 separate products. Specialized document scanning, and audio generation. I can definitely see uses for one without the other.
All apps that I know of use iOS internal TTS (sounds awful, not as good as Siri). Then is also Voice Dream Reader and even with the paid premium voices it is still not pleasant to listen to. Siri-grade TTS or Elevenlabs would be pleasant enough, though.
of course you can't generate audio for books purchased elsewhere because apple
I recently read an Isaac Asimov book where he was describing a device that takes a book and acts it out for you. Made me think we’re probably pretty close.
I’m sorry, but LOL. Not even a full book.
That has to be one of the most terrible business models. I guess it’s in line with most app subscription models these days, only much worse. And if the excuse is “well it costs me too much on Azure and the phone native APIs are not good enough”, perhaps the answer is “don’t do it then”. No thanks.
You're not the demo. So your no thanks is expected.
But, there are plenty of people with eye problems as OP laid out, and I can guarantee you that a large amount for them would be happy to pay $9.99 for the ability to actually consume and enjoy printed books that don't have pdf/eBook editions.
But saying “don’t do it” is so off-base. It’s completely dismissing an entire sector of the market and humanity that isn’t like you.
And perhaps that sort of comment, if given to a first time founder working on a tool that helped a swath of the population… they might see that and get discouraged.
And then that tool that could legitimately improve people’s days, by allowing them to engage in parts of life they can’t easily access by themselves, wouldn’t exist.
As someone who has spent my entire career in the realm of selling things, this is a solid business model that provides a great solution to a likely, very underserved, market.
Plus the tech is cool and sounds fun to build. So, good work OP!
You mean pay $9.99 for the ability to listen to half or less of a book, because there is a ridiculous 250 page per month limit.
Yes, this is such a great solution for these people indeed.
Very excited to see all the cool things people publish once LLM pricing drops.