Ajax3.14
Ajax3.14

Reputation: 1695

Cross browser text to speech Javascript library

I wanted a text to speech feature in my application.I saw Jtalk, speak.js and Google TTS.Google TTS definetely sounded better but it did not work in my chrome.

Another person recommended SoundManger So my question:

Thanks

Upvotes: 2

Views: 1858

Answers (2)

superglitch
superglitch

Reputation: 1

If you are using Internet Explorer, this is how you do it.

var speakers = new ActiveXObject("sapi.spvoice");
speakers.speak("Type text here.");

Upvotes: 0

rodneyrehm
rodneyrehm

Reputation: 13557

maybe speak.js (emscripted eSpeak) can get you off the ground?

Upvotes: 1

Related Questions