react-native-tts icon indicating copy to clipboard operation
react-native-tts copied to clipboard

React Native Text-To-Speech library for Android and iOS

Results 116 react-native-tts issues
Sort by recently updated
recently updated
newest added

I try to integrate this library to an app. The code: ```js import tts from 'react-native-tts'; tts .getInitStatus() .then(() => { tts.speak('Hello world!'); }) .catch((err) => { if (err.code ===...

After installing and simply importing the package, my app breaks -- it just loads a blank white screen. Xcode shows an error: `AXSpeech (13): EXC_BAD_ACCESS (code=2, address=0x109b805d8)` I am using...

Is there a way to know the speech duration (in seconds) before playing it?

Is it possible to get the range in the text of the currently spoken word? Like if you'd like to highlight the spoken word kind of like caraoke.

Can you guide how to add the OnRangeStart event listener which is available in API 27. https://developer.android.com/reference/android/speech/tts/UtteranceProgressListener#onRangeStart(java.lang.String,%20int,%20int,%20int) We need highlight the words which are being spoken? Help Appreciated.

Hi, Just wondering if pause/resume will be enabled on Android at all? Thanks

Hi, this library works when it translate the text input into sound from device, but may I use this library to get the audio mp3 file? in other words, I...

I have a long string to read around 4000+ characters long. I noticed that when I put around 3900+ characters for TTS.speak first parameter it throws an error: **Possible Unhandled...

Hi, Is it possible to add support for SSML text?

I'm getting this crash occurring recently in dev mode in iOS 14.3 on my iPhone X. Has anyone come across this similar issue? Stack Trace: ``` OS Version: iOS 14.3...