You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Assigning onenter and onexit handlers must be done for each cue. Because there is no API to notify the web application when the UA instantiates a cue, there is no straightforward way attach these event handlers. Hence the proposed TextTrackaddcue event.
The only way to use cuechange is to make sure that the cue duration is longer than successive executions of time marches on.
The text was updated successfully, but these errors were encountered:
Discussed 17/5/2021 minutes.
It is possible for a DASH event message to have zero duration. When mapped to a DataCue instance, the
startTime
andendTime
would have the same value.Handling zero-duration cues in JavaScript requires use of the
TextTrackCue
onenter
andonexit
events instead of theTextTrack
oncuechange
event.For details, see Requirements for Media Timed Events.
Assigning
onenter
andonexit
handlers must be done for each cue. Because there is no API to notify the web application when the UA instantiates a cue, there is no straightforward way attach these event handlers. Hence the proposedTextTrack
addcue event.The only way to use
cuechange
is to make sure that the cue duration is longer than successive executions of time marches on.The text was updated successfully, but these errors were encountered: