WCAG 2.1 · Level A · Perceivable

WCAG 1.2.3 — Audio Description or Media Alternative (Prerecorded), explained with examples

Prerecorded synchronised media must have either an audio description or a full media alternative. When a video conveys important visual information that is not narrated, blind users miss the meaning. Audio description fills that gap.

Number
1.2.3
Level
A
Principle
Perceivable
Guideline
1.2 Time-based Media

Why this criterion exists

When a video conveys important visual information that is not narrated, blind users miss the meaning. Audio description fills that gap.

If you only remember one thing: prerecorded synchronised media must have either an audio description or a full media alternative. Everything else on this page is detail.

Who feels it when this fails

Accessibility criteria sometimes feel abstract until you see who pays the cost when a site ignores them. Audio Description or Media Alternative (Prerecorded) affects:

  • Blind and low-vision users

How sites typically fail it

These are the patterns we see week after week. None are intentional — they are accidents of how teams build interfaces under deadline. Knowing the failure modes is the fastest path to writing them out of your component library.

  • Marketing videos that show a chart without describing it aloud

  • Explainer videos with text overlays not narrated

How to test for it

  • Watch each video with eyes closed; if the story still makes sense, you are fine. If not, audio description is needed.

Automated scanners catch this criterion most of the time, but never all of the time. Manual testing with the keyboard and a screen reader closes the gap.

A code fix you can copy

Either ship a separate audio-described track or provide a transcript with visual descriptions.

The problem

HTML
<video src="/explainer.mp4" controls></video>

The fix

HTML
<video controls>
  <source src="/explainer.mp4" />
  <source src="/explainer-with-AD.mp4" />
</video>
<a href="/explainer-transcript.html">Read the full transcript with visual descriptions</a>

Either ship a separate audio-described track or provide a transcript with visual descriptions.

Frequently asked questions

What is the difference between 1.2.3 and 1.2.5?

WCAG 1.2.3 (Level A) allows either an audio description or a full text alternative. WCAG 1.2.5 (Level AA) requires audio description specifically, without the text-alternative escape hatch. If your site targets AA conformance, you need real audio description for all prerecorded synchronized media where the visual content conveys meaning not available in the audio track.

What visual content typically requires audio description?

Charts and graphs shown without reading them aloud, on-screen text overlays not narrated, product demonstrations showing features without verbal explanation, and facial expressions or gestures that carry meaning in context. A talking-head interview where the speaker describes everything verbally may not need additional audio description if all relevant information is in the audio.

Other Perceivable criteria

Find every accessibility issue on your site in 60 seconds.

Free public scan. No card. AI-generated fixes for every issue we find.