Hi, try using this one if you need a single choice for the whole video:
<View>
<Header value="Video Movement Classification with Synced Transcript" size="3" style="margin-bottom: 1em;"/>
<Video name="video" value="$video" height="400" sync="audio" />
<Audio name="audio" value="$video" sync="transcript" />
<Paragraphs name="transcript" value="$transcript" layout="dialogue"
contextScroll="true" audioUrl="$video" sync="audio" />
<Choices name="movement" toName="video" choice="single">
<Choice value="Walking" />
<Choice value="Running" />
<Choice value="Jumping" />
<Choice value="Sitting" />
<Choice value="Other" />
</Choices>
</View>
<!--{
"video": "/static/samples/opossum_snow.mp4",
"transcript": [
{"author": "Speaker", "text": "The subject enters the frame and starts walking.", "start": 0, "end": 2},
{"author": "Speaker", "text": "Now the subject is running quickly across the field.", "start": 2, "end": 5},
{"author": "Speaker", "text": "The subject jumps over an obstacle.", "start": 5, "end": 7},
{"author": "Speaker", "text": "Finally, the subject sits down to rest.", "start": 7, "end": 10}
]
}
-->
Here’s another option if you need labels across the timeline:
<View>
<Header value="Video Movement Classification with Synced Transcript" size="3" style="margin-bottom: 1em;"/>
<Video name="video" value="$video" height="400" sync="audio" />
<TimelineLabels name="timelineLabels" toName="video">
<Label value="Walking" />
<Label value="Running" />
<Label value="Jumping" />
<Label value="Sitting" />
<Label value="Other" />
</TimelineLabels>
<Audio name="audio" value="$video" sync="transcript" />
<Paragraphs name="transcript" value="$transcript" layout="dialogue"
contextScroll="true" audioUrl="$video" sync="audio" />
</View>
<!--{
"video": "/static/samples/opossum_snow.mp4",
"transcript": [
{"author": "Speaker", "text": "The subject enters the frame and starts walking.", "start": 0, "end": 2},
{"author": "Speaker", "text": "Now the subject is running quickly across the field.", "start": 2, "end": 5},
{"author": "Speaker", "text": "The subject jumps over an obstacle.", "start": 5, "end": 7},
{"author": "Speaker", "text": "Finally, the subject sits down to rest.", "start": 7, "end": 10}
]
}
-->