Why it matters
Captions allow deaf and hard-of-hearing users to access video content. They also help users in noisy environments or when audio cannot be played.
Common violations
- Videos without any captions
- Auto-generated captions with significant errors
- Captions that don't include speaker identification
- Missing captions for sound effects and music
Code examples
Bad
<video src="tutorial.mp4" controls></video>Good
<video controls>
<source src="tutorial.mp4">
<track kind="captions" src="tutorial-en.vtt" srclang="en" label="English" default>
</video>How to fix
Add synchronized captions using WebVTT or SRT files. Include all dialogue, speaker identification, and relevant sound effects. Review auto-generated captions for accuracy.
Related criteria
Related resources
Test & fix this criterion
Use these free tools and guides to check and fix 1.2.2 Captions (Prerecorded) violations:
Scan your site