Audio

Audio tag plays a simple audio file

Parameters

Param Type Description
name string of the element
value string of the element
hotkey string hotkey used to play/pause audio

Example

<View>
  <Audio name="audio" value="$audio" />
</View>

Example

Audio classification

<View>
  <Audio name="audio" value="$audio" />
  <Choices name="ch" toName="audio">
    <Choice value="Positive" />
    <Choice value="Negative" />
  </Choices>
</View>

Example

Audio transcription

<View>
  <Audio name="audio" value="$audio" />
  <TextArea name="ta" toName="audio" />
</View>