You can add pauses in the output of the TTS Engine ?
For example it would be possible to insert a 1 second pause between the word "first" and "second"?
With some symbols, such as "/" or "[1000]" or other.
Msg = "first / second"
Msg = "first [1000] second"
Thanks in advance.
For example it would be possible to insert a 1 second pause between the word "first" and "second"?
B4X:
Msg = "first second"
TTS1.Speak (Msg, True)
Msg = "first / second"
Msg = "first [1000] second"
Thanks in advance.