Wim Wouters
Results
2
issues of
Wim Wouters
It would be super if we could select the TTS engine on Android also: `TextToSpeech (Context context, TextToSpeech.OnInitListener listener, **String engine**)` https://developer.android.com/reference/android/speech/tts/TextToSpeech.html#TextToSpeech(android.content.Context, android.speech.tts.TextToSpeech.OnInitListener, java.lang.String)
Apparently all words in a sentence are slit. The TTS is not so nice in English... ``` foreach (var text in inputTexts.Split**(' ')**) { _texts.Add(text); } ``` I changed it...