application.lastresult$[i].recording

application.lastresult$[i].recording

Contains the last utterance if the global property “recordutterance” is set and audio was collected.

Example

<?xml version="1.0"?>
<vxml version="2.0">
  <property name="recordutterance" value="true"/>
  <form>
    <field name="first_name" type="firstname">
      <prompt bargein="false">
        <audio src="en_us/enter_first_name.wav">
          Please say your first name and spell it.
        </audio>
      </prompt>
      <filled>
        Your recording is <value expr="first_name$.recording"/>.
        The recording size is <value expr="first_name$.recordingsize"/> bytes.
        The recording duration is <value expr="first_name$.recordingduration"/> milliseconds.
      </filled> 
    </field>
  </form>
</vxml>

Explanation

None

Notes

None

Last updated