maxspeechtimeout

maxspeechtimeout

Default Value: 60 seconds

The maximum duration of user speech input. Maximum recording time (as opposed to recognition time) is set with maxtime attribute of the tag. The maxspeechtimeout value can not be less than 2 seconds.

Example

<?xml version="1.0"?>
<vxml version="2.0">
  <property name="maxspeechtimeout" value="120s"/>
  <form>
    <record name="myrecording" beep="true">
      <prompt>
        Please record a message after the beep.
      </prompt>

      <filled>
        You just recorded the following message:
        <value expr="myrecording"/>
      </filled>
    </record>
  </form>
</vxml>

Explanation

From this example, “maxspeechtimeout” is set to 120 seconds, which gives the user a maximum duration of 120 seconds for speech input.

Notes

None

Last updated