able player: a fully accessible media player for higher ed terrill thompson technology accessibility...

14
Able Player: A Fully Accessible Media Player for Higher Ed Terrill Thompson Technology Accessibility Specialist University of Washington [email protected] @terrillthompson http:// ableplayer.github.io / ableplayer

Upload: jonathan-whitehead

Post on 20-Jan-2016

214 views

Category:

Documents


2 download

TRANSCRIPT

Page 1: Able Player: A Fully Accessible Media Player for Higher Ed Terrill Thompson Technology Accessibility Specialist University of Washington tft@uw.edu @terrillthompson

Able Player: A Fully Accessible Media Player

for Higher Ed

Terrill ThompsonTechnology Accessibility Specialist

University of [email protected]

@terrillthompsonhttp://ableplayer.github.io/ableplayer

Page 2: Able Player: A Fully Accessible Media Player for Higher Ed Terrill Thompson Technology Accessibility Specialist University of Washington tft@uw.edu @terrillthompson

Video can be inaccessible to...

• People who are unable to hear the video • People who are unable to see the video • People who are unable to operate a mouse • People who don't understand the spoken

language • People who need to search the video's content• People who are unable to play the video

(due to deaf-blindness, bandwidth, technology limitations, or a busy schedule)

Page 3: Able Player: A Fully Accessible Media Player for Higher Ed Terrill Thompson Technology Accessibility Specialist University of Washington tft@uw.edu @terrillthompson

Our mission

• Explore all aspects of video accessibility using HTML5 and Able Player

Page 4: Able Player: A Fully Accessible Media Player for Higher Ed Terrill Thompson Technology Accessibility Specialist University of Washington tft@uw.edu @terrillthompson

HTML5 Media Supports Accessibility

• Captions • Subtitles• Audio description (as text)• Adjustable playback rate

Page 5: Able Player: A Fully Accessible Media Player for Higher Ed Terrill Thompson Technology Accessibility Specialist University of Washington tft@uw.edu @terrillthompson

But the players all look different

Page 6: Able Player: A Fully Accessible Media Player for Higher Ed Terrill Thompson Technology Accessibility Specialist University of Washington tft@uw.edu @terrillthompson

And some are more accessible than others

Page 7: Able Player: A Fully Accessible Media Player for Higher Ed Terrill Thompson Technology Accessibility Specialist University of Washington tft@uw.edu @terrillthompson

Able Player improves accessibility and works across browsers

Page 8: Able Player: A Fully Accessible Media Player for Higher Ed Terrill Thompson Technology Accessibility Specialist University of Washington tft@uw.edu @terrillthompson

See it live at uw.edu/doit/video

Page 9: Able Player: A Fully Accessible Media Player for Higher Ed Terrill Thompson Technology Accessibility Specialist University of Washington tft@uw.edu @terrillthompson

Instructions for Hands-on Activity

1. Open sandbox.html2. Try it using various browsers 3. Make it an Able Player4. Add captions 5. Add subtitles 6. Add chapters 7. Add audio description (two different ways)8. Add sign language

Page 10: Able Player: A Fully Accessible Media Player for Higher Ed Terrill Thompson Technology Accessibility Specialist University of Washington tft@uw.edu @terrillthompson

Step 3. Make it an Able Player

Page 11: Able Player: A Fully Accessible Media Player for Higher Ed Terrill Thompson Technology Accessibility Specialist University of Washington tft@uw.edu @terrillthompson

Step 4. Add captions

<video data-able-player> <source src="media/wwa.webm"> <source src="media/wwa.mp4"> <track kind="captions" src="media/wwa_captions_en.vtt" srclang="en" label="English"></video>

Page 12: Able Player: A Fully Accessible Media Player for Higher Ed Terrill Thompson Technology Accessibility Specialist University of Washington tft@uw.edu @terrillthompson

Step 5-7a. Add subtitles, chapters, & description (as text)

<track kind="???" src="media/???.vtt" srclang="???" label="???">

• Change kind to "subtitles", "chapters", "descriptions"

• For each, change filename, srclang, and label

Page 13: Able Player: A Fully Accessible Media Player for Higher Ed Terrill Thompson Technology Accessibility Specialist University of Washington tft@uw.edu @terrillthompson

Step 7b. Add a separate described version of the video

<video data-able-player> <source src="media/wwa.webm" data-desc-src="media/wwa_described.webm"> <source src="media/wwa.mp4" data-desc-src="media/wwa_described.mp4"></video>

Page 14: Able Player: A Fully Accessible Media Player for Higher Ed Terrill Thompson Technology Accessibility Specialist University of Washington tft@uw.edu @terrillthompson

Step 8. Add sign language

<video data-able-player> <source src="media/wwa.webm" data-sign-src="media/wwa_sign.webm"> <source src="media/wwa.mp4" data-sign-src="media/wwa_sign.mp4"></video>