hi all.
this is a noob question but i think someone can help me *-*.
the tts have the character limit in the function tts.play(string) = 4000 char on some devices
on my app the user can open any text.
some text´s have 4000+.
how you could distribute this text in several strings of 4000 ?
for example the text have 12800 characters, the tts max char is 4000
12800 / 4000 = 3,2
how can i read 3,2 times 4000 characters?
and on the last string this not will have 4000 characters
12800 / 4000
4000
4000
4000
800
how can i make this automatic? the user can open any text, this can have 12800 or + characters.
for now i m using 12800 / 4000 = 3,2 < here as int = 3(this dont read all text)
thx all sorry for the noob question
this is a noob question but i think someone can help me *-*.
the tts have the character limit in the function tts.play(string) = 4000 char on some devices
on my app the user can open any text.
some text´s have 4000+.
how you could distribute this text in several strings of 4000 ?
for example the text have 12800 characters, the tts max char is 4000
12800 / 4000 = 3,2
how can i read 3,2 times 4000 characters?
and on the last string this not will have 4000 characters
12800 / 4000
4000
4000
4000
800
how can i make this automatic? the user can open any text, this can have 12800 or + characters.
for now i m using 12800 / 4000 = 3,2 < here as int = 3(this dont read all text)
thx all sorry for the noob question