On 08/09/2012 10:24 PM, richard kappler wrote:
> The summer of intensive learning continues. Working on subprocess today.
> I figured out how to send data out, for example to my festival tts engine:
>
> [code]response = k.respond(input, "richard")
> festivalCmd = '(SayText "%s")' % response
> sub
The summer of intensive learning continues. Working on subprocess today.
I figured out how to send data out, for example to my festival tts engine:
[code]response = k.respond(input, "richard")
festivalCmd = '(SayText "%s")' % response
subprocess.Popen(['/usr/bin/festival', '-b', festivalCmd])[/c