Technique H95:Using the track element to provide captions
Applicability
HTML5
This technique relates to 1.2.2: Captions (Prerecorded) (Sufficient when used with G87: Providing closed captions).
Description
The objective of this technique is to use the HTML5 track
element to specify a captions timed text track for a video element. Caption timed
text tracks contain transcription or translation of the dialogue, sound effects, relevant
musical cues, and other relevant audio information, suitable for when sound is unavailable
or not clearly audible.
The src
attribute of the track
element is a URL that is the address of the text track data.
The kind
attribute of the track
element indicates the kind of information in the timed text. captions text tracks
provide a text version of dialogue and other sounds important to understanding the
video. Subtitles contain only the dialogue. If other audio information is important
to understanding the video, a subtitle track will not be sufficient to meet the success
criterion.
Some regions use the term "subtitle" for any visible text representation of the audio track. An author may mark up a timed text track in the language of the audio track as kind=subtitles, instead of kind=captions, and may include additional relevant audio information. It is not best practice to use subtitles in this situation, since it may confuse users who are trying to find captions, but such a timed text track would meet the requirements of Success Criterion 1.2.2.
Examples
Other sources
No endorsement implied.
Tests
Procedure
For each video element used to play a video:
- Check that the video contains a
track
element ofkind
captions in the language of the video.
Expected Results
- Check #1 is true.