voicegender

voicegender

Default Value: depends on system

This property globally sets the default gender for a VoiceXML script.

Example

<?xml version="1.0"?>
<vxml version="2.0">
  <property name="voicegender" value="female"/>
  <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>

Explanation

None

Notes

This property will only work if you have stand alone TTS-only prompts. It will not work if there is a mix of TTS and audio prompts within your script.

Last updated