-
Guide
Tags
API
What's new
tags
- Introduction
Objects
- Audio
- AudioPlus
- HyperText
- Image
- Paragraphs
- Text
- TimeSeries
Controls
- BrushLabels
- Choice
- Choices
- Ellipse
- EllipseLabels
- HyperTextLabels
- KeyPoint
- KeyPointLabels
- Label
- Labels
- List
- Pairwise
- ParagraphLabels
- Polygon
- PolygonLabels
- Ranker
- Rating
- Rectangle
- RectangleLabels
- Relation
- Relations
- Shortcut
- TextArea
- Taxonomy
- TimeSeriesLabels
- Filter
Visual
- Header
- Style
- Table
- View
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>