My company has an on-site box and I have been trying to get a feel for our TTS engine. The problem I am having is that I can't make the engine use any other voice then the default one (TTS engine is RealSpeak). It defaults to the normal voice (which I assume is Jill). Below is a snippet of code that I pulled from the plum documentation section.
Code: Select all
<?xml version="1.0"?>
<vxml version="2.0">
<property name="voicegender" value="male"/>
<property name="voicename" value="Tom"/>
<form>
<field name="myfield">
<grammar type="application/x-jsgf" mode="voice">
( one | two )+
</grammar>
<prompt>
Say any number of the digits one or two.
</prompt>
<filled>
You said <value expr="myfield"/>.
</filled>
</field>
</form>
</vxml>
Thanks,
Scholarchip