WCAG 1.2.7 Extended Audio Description: Making Complex Videos Fully Accessible
What This Criterion Requires
WCAG 1.2.7 requires that where pauses in foreground audio are insufficient to allow standard audio descriptions to convey the sense of the video, extended audio description is provided for all prerecorded video content in synchronized media. Standard audio descriptions (covered by WCAG 1.2.5) fit descriptions of visual action into natural pauses in dialogue. However, many videos, particularly educational content, training materials, scientific demonstrations, and fast-paced presentations, have continuous narration with no pauses long enough for meaningful descriptions. Extended audio description solves this by pausing the video playback automatically to allow the audio description to complete before resuming. This technique ensures that people who are blind or have low vision receive a complete understanding of all visual content, including on-screen text, charts, diagrams, physical demonstrations, and scene changes that occur during continuous narration. Implementing this criterion requires a video player that supports programmatic pausing and a separate audio description track that triggers pauses at specific timestamps.
Why It Matters
Many educational and training videos are designed with continuous narration over complex visual demonstrations. A chemistry lecture might show a reaction occurring while the professor talks nonstop, or a software tutorial might demonstrate a multi-step interface workflow with constant voiceover. Standard audio descriptions cannot adequately convey the visual information because there are simply no natural pauses in which to insert them. Without extended audio description, blind and low-vision users miss critical visual information that the narration assumes viewers can see. This is especially problematic in educational contexts where the visual content is the primary learning material. Extended audio description bridges this gap by temporarily freezing the video to deliver complete visual descriptions, ensuring equitable access to complex multimedia content.
Common Failures and How to Fix Them
No audio description provided for visually complex educational videos
Educational videos with continuous narration over complex visual demonstrations, diagrams, or on-screen text provide no audio description track at all, leaving blind users unable to understand the visual content being discussed.
<video controls>
<source src="chemistry-lab-demo.mp4" type="video/mp4">
<track kind="captions" src="captions.vtt" srclang="en">
</video> <video controls id="chemistry-demo">
<source src="chemistry-lab-demo.mp4" type="video/mp4">
<track kind="captions" src="captions.vtt" srclang="en">
<track kind="descriptions" src="extended-descriptions.vtt" srclang="en" label="Extended audio description">
</video>
<!-- Use a player like Able Player that supports extended audio description with automatic pausing -->
<script src="ableplayer.min.js"></script> Standard audio descriptions used where extended descriptions are needed
Audio descriptions are provided but are rushed or truncated to fit into insufficient natural pauses, resulting in incomplete or confusing descriptions that fail to convey the full visual context.
<!-- Audio description squeezed into a 1-second pause -->
00:01:23.000 --> 00:01:24.000
[AD] Chart shown. <!-- Extended audio description pauses the video to allow full description -->
00:01:23.000 --> 00:01:23.000
[EXT-AD] The bar chart displays quarterly revenue for 2025. Q1 shows 1.2 million dollars, Q2 shows 1.8 million, Q3 shows 2.1 million, and Q4 shows 2.9 million. A trend line overlaid on the bars shows consistent upward growth of approximately 40% year-over-year. How to Test
- Identify all prerecorded video content that includes visual information not fully described by the existing audio track.
- Play the video and note sections where important visual content occurs during continuous narration with no natural pauses.
- Verify that an extended audio description track is available and can be activated by the user.
- Enable the extended audio description and confirm that the video player pauses automatically to allow each description to complete before resuming playback.
- Check that the extended descriptions accurately and completely convey all meaningful visual content, including on-screen text, charts, diagrams, demonstrations, and scene changes.
Further Reading
Related WCAG Criteria
Get our free accessibility toolkit
We're building a simple accessibility checker for non-developers. Join the waitlist for early access and a free EAA compliance checklist.
No spam. Unsubscribe anytime.