cordova-plugin-tts icon indicating copy to clipboard operation
cordova-plugin-tts copied to clipboard

Locale "en-GB" causes error ERR_UNKNOWN

Open sajdre opened this issue 6 years ago • 2 comments

Example:

window.TTS.speak({text: "some message", locale: "en-GB", rate: 1.65}, a => a, error => console.log(error))

It won't work, error function is called with ERR_UNKNOWN as an argument.

sajdre avatar Nov 05 '19 13:11 sajdre

got the same problem :/

orlyapps avatar Nov 07 '19 05:11 orlyapps

I got the same issue.

this.tts.speak({ text: "Welcome, I am Barun.", locale: 'en-IN', rate: 0.75 }) .then(() => { console.log('Success'); }) .catch((reason: any) => { console.log(reason) // here, I am getting ERR_UNKNOWN });

barun-pandit avatar Nov 09 '19 18:11 barun-pandit