Video
Video tag plays a simple video file. Use for video annotation tasks such as classification and transcription.
Use with the following data types: video
Parameters
| Param | Type | Default | Description | 
|---|---|---|---|
| name | string | 
Name of the element | |
| value | string | 
URL of the video | |
| [frameRate] | number | 
24 | 
video frame rate per second; default is 24; can use task data like $fps | 
| [sync] | string | 
object name to sync with | |
| [muted] | boolean | 
false | 
muted video | 
| [height] | number | 
600 | 
height of the video | 
Example
Labeling configuration to display a video on the labeling interface
<View>
  <Video name="video" value="$video" />
</View>
Example
Video classification
<View>
  <Video name="video" value="$video" />
  <Choices name="ch" toName="video">
    <Choice value="Positive" />
    <Choice value="Negative" />
  </Choices>
</View>
Example
Video transcription
<View>
  <Video name="video" value="$video" />
  <TextArea name="ta" toName="video" />
</View>