Propeller Speech Synthesis
Android
Posts: 82
Hi everyone. I am synthesizing speech with a veho 360 speaker and prop boe and wanted to know if there was any way to make the speech sound more human like. Anything helps.
-Android
-Android
Comments
var
long Stack[32]
CON
_clkmode = xtal1 + pll16x
_xinfreq = 5_000_000
sound_port = 26
OBJ
t : "talk"
PUB start
t.start(sound_port)
t.set_speaker(0, 90)
t.set_speaker(1, 110)
t.set_speaker(2, 100)
t.say(string("helloa"))
-Android