cordova-plugin-tts
cordova-plugin-tts copied to clipboard
Cordova Text-to-Speech Plugin (Maintainer WANTED!)
Hello Vilic, this is great plugin. but i don't see the way to change voice. i just want to ask that does any way to change voice to Male/Female? thanks,
Firstly i found that stop() is not working in this , so after google it i found a hack to call start() with empty string. But another issue that i...
speak() { alert("begin to speak,"); this.tts.speak({text: "你好,欢迎,向前走10米,路口右转,执行10米,在左转", locale: 'zh-CN'}) .then(() => console.log('Success')) .catch((reason: any) => console.log(reason)); }
Trying to use TTS.tts and passing a long string approx 5000 characters but it is not speaking while shortening the string with less than 4000 characters, it is speaking the...
## Issue I'm getting `ERR_NOT_INITIALIZED` when using `tts.speak()`. ## Scenario I'm using this plugin on Ionic 3 and after build and deploying on a phone (not a emulator) it always...
Do i need to install tts engine on my android phone. Without it don't work. I have installed google tts from play store then it works. Do cordova-plugin-tts having dependency...
Current version of plugin has error and doesn't compiled I fixed it
How to read character by character. As per my requirement, read the verification code. I tried like below code, but it is also read like a word and very speed....
I am trying to use TextToSpeech, I am getting the following error  When I try to add TextToSpeech into my provider, it says TextToSpeechOriginal is not assignable to type...
Hi, I modified the code so that voice can be changed for android `import android.speech.tts.Voice;` `if (params.isNull("voice")) { voice = "en-us-x-sfg#male_1-local"; } else { voice = params.getString("voice"); }` `tts.setVoice(new Voice(voice,...