developers

Make your own website speak

How to add text to speech capabilities to your own website? The 3 possible ways to add text-to-speech to a website Implement the web speech api interface, as described here: https://developer.mozilla.org/en-US/docs/Web/API/SpeechSynthesis Implement text-to-speech (TTS), that is NOT based on the web speech api, provided by companies developing the TTS technology itself. This route is not recommended for most websites since it is either low quality or expensive. Implement ttsreader’s api - which itself uses the web speech api, but wraps it in the best way for most site-owners.

Continue reading