Reputation: 11
I am working on a small app using SpeechSynthesisUtterance API.
I try to launch a small function betweens words (when they are enunciated) :
I use boundary event :
myWords.onboundary = function() {
...
};
But it doesn't work...Maybe i don't understand how works boundaries effect.
Please, can you help me ?
Thank you,
Thomas
Upvotes: 1
Views: 947
Reputation: 5954
This boiled-down sample illustrates the event not being fired. And this bug discusses this problem, but came to the conclusion to use the "native voice" which didn't work for me on Linux or Windows...
Upvotes: 1