Accessibility Wiki

Prerecorded video should provide an audio description

Rule media-audio-description · Document, language & navigation · impact moderate · Static + live

↩ Back to the rules index · WCAG cross-reference

Why it matters

Prerecorded video needs an audio description of important visual information (actions, scene changes, on-screen text) so people who are blind or have low vision can follow it. A

How to fix

Add a with timed descriptions of the visual information, or publish/link an audio-described version of the video. If the video’s soundtrack already narrates everything visible (or the video is decorative), this can be dismissed.

Example

✕ Fails
<video src="talk.mp4" controls><track kind="captions" srclang="en" src="talk.vtt"></video>
✓ Passes
<video src="talk.mp4" controls><track kind="captions" srclang="en" src="talk.vtt"><track kind="descriptions" srclang="en" src="talk-ad.vtt"></video>

Captions (1.2.2) serve people who can’t hear; audio descriptions (1.2.5) serve people who can’t see — one track does not satisfy the other.

Example

✕ Fails
<video src="promo.mp4" controls></video>
✓ Passes
<video src="hero.mp4" muted loop></video>

A muted video without native controls has the silent-background signature — no audible presentation exists, so it is out of scope.

WCAG success criteria

1.2.5 Audio Description (Prerecorded) — Level AA

Prerecorded video needs an audio description of important visual information (actions, characters, scene changes, on-screen text) so people who are blind or have low vision can follow it — at AA a transcript alone no longer suffices.

Understanding 1.2.5

Standards

This rule contributes to the following standards:

WCAG AA EN 301 549 Section 508

Standard Criteria
Section 508 1194.22(b)
EN 301 549 9.1.2.5

References