preparing and presenting media for accessibility - apple...

133
These are confidential sessions—please refrain from streaming, blogging, or taking pictures Session 608 Preparing and Presenting Media for Accessibility Kevin Calhoun Media Systems Software Engineer

Upload: leliem

Post on 02-Feb-2018

266 views

Category:

Documents


14 download

TRANSCRIPT

Page 1: Preparing and Presenting Media for Accessibility - Apple …devstreaming.apple.com/videos/wwdc/2013/608xcx3... · These are confidential sessions—please refrain from streaming,

These are confidential sessions—please refrain from streaming, blogging, or taking pictures

Session 608

Preparing and Presenting Media for Accessibility

Kevin CalhounMedia Systems Software Engineer

Page 2: Preparing and Presenting Media for Accessibility - Apple …devstreaming.apple.com/videos/wwdc/2013/608xcx3... · These are confidential sessions—please refrain from streaming,

Introduction

•Accessibility options for timed media■ Captions and Subtitles■ Audio

• Regulations may apply■ Twenty-First Century Communications and Video Accessibility Act

Page 3: Preparing and Presenting Media for Accessibility - Apple …devstreaming.apple.com/videos/wwdc/2013/608xcx3... · These are confidential sessions—please refrain from streaming,

What You Will Learn

•How OS X and iOS support accessibility options for timed media • Selecting accessibility options during playback•Adding accessibility options to your media resources

■ With HTML5■ With HTTP live streaming■ In QuickTime movie and MPEG-4 files

■ Writing subtitles to movie files

•Accessing subtitle text during playback

Page 4: Preparing and Presenting Media for Accessibility - Apple …devstreaming.apple.com/videos/wwdc/2013/608xcx3... · These are confidential sessions—please refrain from streaming,

AVFoundation

CoreMedia CoreAnimationCoreAudio

UIKit

MediaPlayer

iOS

Technology Framework

Page 5: Preparing and Presenting Media for Accessibility - Apple …devstreaming.apple.com/videos/wwdc/2013/608xcx3... · These are confidential sessions—please refrain from streaming,

AVFoundation

CoreMedia CoreAnimationCoreAudio

AppKit

AVKit

Technology Framework

OS X

Page 6: Preparing and Presenting Media for Accessibility - Apple …devstreaming.apple.com/videos/wwdc/2013/608xcx3... · These are confidential sessions—please refrain from streaming,

AudioVideo Captions or Subtitles

Timed Media: The Big Picture

Lorem ipsum

Page 7: Preparing and Presenting Media for Accessibility - Apple …devstreaming.apple.com/videos/wwdc/2013/608xcx3... · These are confidential sessions—please refrain from streaming,

Video Captions or Subtitles

Timed Media: Legible Options

Audio

SDHTranslationLorem ipsum

Page 8: Preparing and Presenting Media for Accessibility - Apple …devstreaming.apple.com/videos/wwdc/2013/608xcx3... · These are confidential sessions—please refrain from streaming,

Video Captions or Subtitles

Timed Media: Legible Options

Audio

SDH

Translation

Lorem ipsum

Page 9: Preparing and Presenting Media for Accessibility - Apple …devstreaming.apple.com/videos/wwdc/2013/608xcx3... · These are confidential sessions—please refrain from streaming,

AudioVideo Captions or Subtitles

SDH

Translation

Timed Media: Legible Options

Lorem ipsum

Page 10: Preparing and Presenting Media for Accessibility - Apple …devstreaming.apple.com/videos/wwdc/2013/608xcx3... · These are confidential sessions—please refrain from streaming,

AudioVideo Captions or Subtitles

Timed Media: The Big Picture

Lorem ipsum

Page 11: Preparing and Presenting Media for Accessibility - Apple …devstreaming.apple.com/videos/wwdc/2013/608xcx3... · These are confidential sessions—please refrain from streaming,

AudioVideo Captions or Subtitles

Timed Media: Audible Options

Lorem ipsum

Page 12: Preparing and Presenting Media for Accessibility - Apple …devstreaming.apple.com/videos/wwdc/2013/608xcx3... · These are confidential sessions—please refrain from streaming,

AudioVideo Captions or Subtitles

Timed Media: Audible Options

Lorem ipsum

Dubbed Audio

Descriptive Audio

Page 13: Preparing and Presenting Media for Accessibility - Apple …devstreaming.apple.com/videos/wwdc/2013/608xcx3... · These are confidential sessions—please refrain from streaming,

Audio

Timed Media: Audible Options

Video Captions or Subtitles

Lorem ipsum

Dubbed Audio

Descriptive Audio

Page 14: Preparing and Presenting Media for Accessibility - Apple …devstreaming.apple.com/videos/wwdc/2013/608xcx3... · These are confidential sessions—please refrain from streaming,

System Preferences for Media Accessibility

Page 15: Preparing and Presenting Media for Accessibility - Apple …devstreaming.apple.com/videos/wwdc/2013/608xcx3... · These are confidential sessions—please refrain from streaming,

System Preferences for Media Accessibility

Page 16: Preparing and Presenting Media for Accessibility - Apple …devstreaming.apple.com/videos/wwdc/2013/608xcx3... · These are confidential sessions—please refrain from streaming,

•Apps do not need to do anything•User preferences trump all other sources of styling

Respecting Text Styling Preferences

Page 17: Preparing and Presenting Media for Accessibility - Apple …devstreaming.apple.com/videos/wwdc/2013/608xcx3... · These are confidential sessions—please refrain from streaming,

•Many apps do not need to do anything• iOS: MPMoviePlayerController•OS X: AVPlayerView

•AV Foundation-based apps• For seed: Opt into automatic media selection•May need or want to provide media selection UI

Respecting Media Selection Preferences

Page 18: Preparing and Presenting Media for Accessibility - Apple …devstreaming.apple.com/videos/wwdc/2013/608xcx3... · These are confidential sessions—please refrain from streaming,

Respecting Media Selection Preferences

•Opting into automatic selection[player setAppliesMediaSelectionCriteriaAutomatically:YES];

•Opt-in will be automatic when you link against the new SDKs■ Not in the current seed; in future seeds and in shipping versions■ Clients that don’t want automatic media selection must opt out

Page 19: Preparing and Presenting Media for Accessibility - Apple …devstreaming.apple.com/videos/wwdc/2013/608xcx3... · These are confidential sessions—please refrain from streaming,

AudioVideo

Selecting Media Options

Captions or Subtitles

Translation

Lorem ipsum

Dubbed Audio

Descriptive Audio

SDH

Page 20: Preparing and Presenting Media for Accessibility - Apple …devstreaming.apple.com/videos/wwdc/2013/608xcx3... · These are confidential sessions—please refrain from streaming,

Video Track

AVMediaSelectionOption 0

AVMediaSelectionOption 1

AVMediaSelectionOption 2

AVMediaSelectionOption 0

AVMediaSelectionOption 1

AVMediaSelectionOption 2

Lorem ipsum

AVMediaSelectionGroup AVMediaSelectionGroupfor Audible characteristic for Legible characteristic

AV Foundation Terminology

Page 21: Preparing and Presenting Media for Accessibility - Apple …devstreaming.apple.com/videos/wwdc/2013/608xcx3... · These are confidential sessions—please refrain from streaming,

AVAsset

Implementing a Media Selection UI

Page 22: Preparing and Presenting Media for Accessibility - Apple …devstreaming.apple.com/videos/wwdc/2013/608xcx3... · These are confidential sessions—please refrain from streaming,

AVAsset

availableMediaCharacteristicsWithMediaSelectionOptions

Implementing a Media Selection UI

Page 23: Preparing and Presenting Media for Accessibility - Apple …devstreaming.apple.com/videos/wwdc/2013/608xcx3... · These are confidential sessions—please refrain from streaming,

AVAsset

AVMediaCharacteristicAVMediaCharacteristic

AVMediaCharacteristic

Implementing a Media Selection UI

Page 24: Preparing and Presenting Media for Accessibility - Apple …devstreaming.apple.com/videos/wwdc/2013/608xcx3... · These are confidential sessions—please refrain from streaming,

AVAsset

AVMediaCharacteristic

Implementing a Media Selection UI

Page 25: Preparing and Presenting Media for Accessibility - Apple …devstreaming.apple.com/videos/wwdc/2013/608xcx3... · These are confidential sessions—please refrain from streaming,

AVAsset

AVMediaCharacteristic

mediaSelectionGroupForMediaCharacteristic:

Implementing a Media Selection UI

Page 26: Preparing and Presenting Media for Accessibility - Apple …devstreaming.apple.com/videos/wwdc/2013/608xcx3... · These are confidential sessions—please refrain from streaming,

AVAsset

AVMediaSelectionGroup

AVMediaSelectionOptionAVMediaSelectionOption

AVMediaSelectionOption

Implementing a Media Selection UI

Page 27: Preparing and Presenting Media for Accessibility - Apple …devstreaming.apple.com/videos/wwdc/2013/608xcx3... · These are confidential sessions—please refrain from streaming,

AVAsset

AVMediaSelectionGroup

AVMediaSelectionOptionAVMediaSelectionOption

AVMediaSelectionOption

AVPlayerItem

Implementing a Media Selection UI

Page 28: Preparing and Presenting Media for Accessibility - Apple …devstreaming.apple.com/videos/wwdc/2013/608xcx3... · These are confidential sessions—please refrain from streaming,

AVAsset

AVMediaSelectionGroup

AVMediaSelectionOptionAVMediaSelectionOption

AVMediaSelectionOptionAVMediaSelectionOption

AVPlayerItem

Implementing a Media Selection UI

Page 29: Preparing and Presenting Media for Accessibility - Apple …devstreaming.apple.com/videos/wwdc/2013/608xcx3... · These are confidential sessions—please refrain from streaming,

AVAsset

AVMediaSelectionGroup

AVMediaSelectionOptionAVMediaSelectionOption

AVMediaSelectionOptionAVMediaSelectionOption

selectMediaOption:inMediaSelectionGroup:

AVPlayerItem

Implementing a Media Selection UI

Page 30: Preparing and Presenting Media for Accessibility - Apple …devstreaming.apple.com/videos/wwdc/2013/608xcx3... · These are confidential sessions—please refrain from streaming,

AVAsset

AVMediaSelectionGroup

AVMediaSelectionOptionAVMediaSelectionOption

AVMediaSelectionOptionAVMediaSelectionOption

selectMediaOption:inMediaSelectionGroup:

Lorem ipsum

Lorem ipsum

Lorem ipsum

AVPlayerItem

Implementing a Media Selection UI

Page 31: Preparing and Presenting Media for Accessibility - Apple …devstreaming.apple.com/videos/wwdc/2013/608xcx3... · These are confidential sessions—please refrain from streaming,

DemoAVMediaSelectionDemo

Courtney KennedyEngineering Manager, Media Systems

Page 32: Preparing and Presenting Media for Accessibility - Apple …devstreaming.apple.com/videos/wwdc/2013/608xcx3... · These are confidential sessions—please refrain from streaming,

AudioVideo Captions or Subtitles

Packaging Media Options

Translation

Lorem ipsum

SDHDubbed Audio

Descriptive Audio

Page 33: Preparing and Presenting Media for Accessibility - Apple …devstreaming.apple.com/videos/wwdc/2013/608xcx3... · These are confidential sessions—please refrain from streaming,

Content Delivery Choices

•HTML5•HTTP Live Streaming•QuickTime movie file format (.mov) and MPEG-4 (.m4v and .mp4)

Page 34: Preparing and Presenting Media for Accessibility - Apple …devstreaming.apple.com/videos/wwdc/2013/608xcx3... · These are confidential sessions—please refrain from streaming,

AudioVideo Captions or Subtitles

Translation

Lorem ipsum

HTML5

SDH

Page 35: Preparing and Presenting Media for Accessibility - Apple …devstreaming.apple.com/videos/wwdc/2013/608xcx3... · These are confidential sessions—please refrain from streaming,

• “Out of band” text tracks■ kind■ srclang■ default■ label

• Example markup<video src="video_media.m4v" poster="video_poster.png" controls width="640" height="360" >!    <track src="video_captions.vtt" kind="captions" srclang="en"!     label="English Captions" ></video>

HTML5

Page 36: Preparing and Presenting Media for Accessibility - Apple …devstreaming.apple.com/videos/wwdc/2013/608xcx3... · These are confidential sessions—please refrain from streaming,

HTML5

• “Out of band” text tracks■ kind■ srclang■ default■ label

• Example markup<video src="video_media.m4v" poster="video_poster.png" controls width="640" height="360" >!    <track src="video_captions.vtt" kind="captions" srclang="en"!     label="English Captions" ></video>

Page 37: Preparing and Presenting Media for Accessibility - Apple …devstreaming.apple.com/videos/wwdc/2013/608xcx3... · These are confidential sessions—please refrain from streaming,

HTML5

• “Out of band” text tracks■ kind■ srclang■ default■ label

• Example markup<video src="video_media.m4v" poster="video_poster.png" controls width="640" height="360" >!    <track src="video_captions.vtt" kind="captions" srclang="en"!     label="English Captions" ></video>

Page 38: Preparing and Presenting Media for Accessibility - Apple …devstreaming.apple.com/videos/wwdc/2013/608xcx3... · These are confidential sessions—please refrain from streaming,

HTML5

• “Out of band” text tracks■ kind■ srclang■ default■ label

• Example markup<video src="video_media.m4v" poster="video_poster.png" controls width="640" height="360" >!    <track src="video_captions.vtt" kind="captions" srclang="en"!     label="English Captions" ></video>

Page 39: Preparing and Presenting Media for Accessibility - Apple …devstreaming.apple.com/videos/wwdc/2013/608xcx3... · These are confidential sessions—please refrain from streaming,

HTML5

•Highlights■ No need to modify main media resource■ CSS for styling■ JavaScript for control■ Independent placement of text

• Considerations■ Requires HTML5 user agent

Page 40: Preparing and Presenting Media for Accessibility - Apple …devstreaming.apple.com/videos/wwdc/2013/608xcx3... · These are confidential sessions—please refrain from streaming,

AudioVideo Captions or Subtitles

HTTP Live Streaming

Translation

Lorem ipsum

SDHDubbed Audio

Descriptive Audio

Page 41: Preparing and Presenting Media for Accessibility - Apple …devstreaming.apple.com/videos/wwdc/2013/608xcx3... · These are confidential sessions—please refrain from streaming,

• Subtitles■ CHARACTERISTICS■ LANGUAGE and ASSOC-LANGUAGE■ DEFAULT and AUTOSELECT■ NAME

• Example declaration#EXT-X-MEDIA:TYPE=SUBTITLES,GROUP-ID="subs", NAME="English SDH", LANGUAGE=”en”,DEFAULT=NO, AUTOSELECT=YES, FORCED=NO,CHARACTERISTICS="public.accessibility.transcribes-spoken-dialog, public.accessibility.describes-music-and-sound",URI="webvtt/session.m3u8"

HTTP Live Streaming

Page 42: Preparing and Presenting Media for Accessibility - Apple …devstreaming.apple.com/videos/wwdc/2013/608xcx3... · These are confidential sessions—please refrain from streaming,

• Subtitles■ CHARACTERISTICS■ LANGUAGE and ASSOC-LANGUAGE■ DEFAULT and AUTOSELECT■ NAME

• Example declaration#EXT-X-MEDIA:TYPE=SUBTITLES,GROUP-ID="subs", NAME="English SDH", LANGUAGE=”en”,DEFAULT=NO, AUTOSELECT=YES, FORCED=NO,CHARACTERISTICS="public.accessibility.transcribes-spoken-dialog, public.accessibility.describes-music-and-sound",URI="webvtt/session.m3u8"

HTTP Live Streaming

Page 43: Preparing and Presenting Media for Accessibility - Apple …devstreaming.apple.com/videos/wwdc/2013/608xcx3... · These are confidential sessions—please refrain from streaming,

• Subtitles■ CHARACTERISTICS■ LANGUAGE and ASSOC-LANGUAGE■ DEFAULT and AUTOSELECT■ NAME

• Example declaration#EXT-X-MEDIA:TYPE=SUBTITLES,GROUP-ID="subs", NAME="English SDH", LANGUAGE=”en”,DEFAULT=NO, AUTOSELECT=YES, FORCED=NO,CHARACTERISTICS="public.accessibility.transcribes-spoken-dialog, public.accessibility.describes-music-and-sound",URI="webvtt/session.m3u8"

HTTP Live Streaming

Page 44: Preparing and Presenting Media for Accessibility - Apple …devstreaming.apple.com/videos/wwdc/2013/608xcx3... · These are confidential sessions—please refrain from streaming,

• Subtitles■ CHARACTERISTICS■ LANGUAGE and ASSOC-LANGUAGE■ DEFAULT and AUTOSELECT■ NAME

• Example declaration#EXT-X-MEDIA:TYPE=SUBTITLES,GROUP-ID="subs", NAME="English SDH", LANGUAGE=”en”,DEFAULT=NO, AUTOSELECT=YES, FORCED=NO,CHARACTERISTICS="public.accessibility.transcribes-spoken-dialog, public.accessibility.describes-music-and-sound",URI="webvtt/session.m3u8"

HTTP Live Streaming

Page 45: Preparing and Presenting Media for Accessibility - Apple …devstreaming.apple.com/videos/wwdc/2013/608xcx3... · These are confidential sessions—please refrain from streaming,

• Subtitles■ CHARACTERISTICS■ LANGUAGE and ASSOC-LANGUAGE■ DEFAULT and AUTOSELECT■ NAME

• Example declaration#EXT-X-MEDIA:TYPE=SUBTITLES,GROUP-ID="subs", NAME="English SDH", LANGUAGE=”en”,DEFAULT=NO, AUTOSELECT=YES, FORCED=NO,CHARACTERISTICS="public.accessibility.transcribes-spoken-dialog, public.accessibility.describes-music-and-sound",URI="webvtt/session.m3u8"

HTTP Live Streaming

Page 46: Preparing and Presenting Media for Accessibility - Apple …devstreaming.apple.com/videos/wwdc/2013/608xcx3... · These are confidential sessions—please refrain from streaming,

• Closed captions■ CHARACTERISTICS■ LANGUAGE and ASSOC-LANGUAGE■ DEFAULT and AUTOSELECT■ NAME

• Example declaration#EXT-X-MEDIA:TYPE=CLOSED-CAPTIONS,GROUP-ID="ccs", NAME="English Closed Captions", LANGUAGE=”en”,DEFAULT=NO, AUTOSELECT=YES,CHARACTERISTICS="public.accessibility.transcribes-spoken-dialog, public.accessibility.describes-music-and-sound",INSTREAM-ID="CC1"

HTTP Live Streaming

Page 47: Preparing and Presenting Media for Accessibility - Apple …devstreaming.apple.com/videos/wwdc/2013/608xcx3... · These are confidential sessions—please refrain from streaming,

• Closed captions■ CHARACTERISTICS■ LANGUAGE and ASSOC-LANGUAGE■ DEFAULT and AUTOSELECT■ NAME

• Example declaration#EXT-X-MEDIA:TYPE=CLOSED-CAPTIONS,GROUP-ID="ccs", NAME="English Closed Captions", LANGUAGE=”en”,DEFAULT=NO, AUTOSELECT=YES,CHARACTERISTICS="public.accessibility.transcribes-spoken-dialog, public.accessibility.describes-music-and-sound",INSTREAM-ID="CC1"

HTTP Live Streaming

Page 48: Preparing and Presenting Media for Accessibility - Apple …devstreaming.apple.com/videos/wwdc/2013/608xcx3... · These are confidential sessions—please refrain from streaming,

• Closed captions■ CHARACTERISTICS■ LANGUAGE and ASSOC-LANGUAGE■ DEFAULT and AUTOSELECT■ NAME

• Example declaration#EXT-X-MEDIA:TYPE=CLOSED-CAPTIONS,GROUP-ID="ccs", NAME="English Closed Captions", LANGUAGE=”en”,DEFAULT=NO, AUTOSELECT=YES,CHARACTERISTICS="public.accessibility.transcribes-spoken-dialog, public.accessibility.describes-music-and-sound",INSTREAM-ID="CC1"

HTTP Live Streaming

Page 49: Preparing and Presenting Media for Accessibility - Apple …devstreaming.apple.com/videos/wwdc/2013/608xcx3... · These are confidential sessions—please refrain from streaming,

• Closed captions■ CHARACTERISTICS■ LANGUAGE and ASSOC-LANGUAGE■ DEFAULT and AUTOSELECT■ NAME

• Example declaration#EXT-X-MEDIA:TYPE=CLOSED-CAPTIONS,GROUP-ID="ccs", NAME="English Closed Captions", LANGUAGE=”en”,DEFAULT=NO, AUTOSELECT=YES,CHARACTERISTICS="public.accessibility.transcribes-spoken-dialog, public.accessibility.describes-music-and-sound",INSTREAM-ID="CC1"

HTTP Live Streaming

Page 50: Preparing and Presenting Media for Accessibility - Apple …devstreaming.apple.com/videos/wwdc/2013/608xcx3... · These are confidential sessions—please refrain from streaming,

• Closed captions■ CHARACTERISTICS■ LANGUAGE and ASSOC-LANGUAGE■ DEFAULT and AUTOSELECT■ NAME

• Example declaration#EXT-X-MEDIA:TYPE=CLOSED-CAPTIONS,GROUP-ID="ccs", NAME="English Closed Captions", LANGUAGE=”en”,DEFAULT=NO, AUTOSELECT=YES,CHARACTERISTICS="public.accessibility.transcribes-spoken-dialog, public.accessibility.describes-music-and-sound",INSTREAM-ID="CC1"

HTTP Live Streaming

Page 51: Preparing and Presenting Media for Accessibility - Apple …devstreaming.apple.com/videos/wwdc/2013/608xcx3... · These are confidential sessions—please refrain from streaming,

•Audio■ CHARACTERISTICS■ LANGUAGE and ASSOC-LANGUAGE■ DEFAULT and AUTOSELECT■ NAME

• Example declaration#EXT-X-MEDIA:TYPE=AUDIO,GROUP-ID="audio", NAME="English Video Description", LANGUAGE=”en”,DEFAULT=NO, AUTOSELECT=YES,CHARACTERISTICS="public.accessibility.describes-video",URI="audiomedia/descriptive.m3u8"

HTTP Live Streaming

Page 52: Preparing and Presenting Media for Accessibility - Apple …devstreaming.apple.com/videos/wwdc/2013/608xcx3... · These are confidential sessions—please refrain from streaming,

•Audio■ CHARACTERISTICS■ LANGUAGE and ASSOC-LANGUAGE■ DEFAULT and AUTOSELECT■ NAME

• Example declaration#EXT-X-MEDIA:TYPE=AUDIO,GROUP-ID="audio", NAME="English Video Description", LANGUAGE=”en”,DEFAULT=NO, AUTOSELECT=YES,CHARACTERISTICS="public.accessibility.describes-video",URI="audiomedia/descriptive.m3u8"

HTTP Live Streaming

Page 53: Preparing and Presenting Media for Accessibility - Apple …devstreaming.apple.com/videos/wwdc/2013/608xcx3... · These are confidential sessions—please refrain from streaming,

•Audio■ CHARACTERISTICS■ LANGUAGE and ASSOC-LANGUAGE■ DEFAULT and AUTOSELECT■ NAME

• Example declaration#EXT-X-MEDIA:TYPE=AUDIO,GROUP-ID="audio", NAME="English Video Description", LANGUAGE="en",DEFAULT=NO, AUTOSELECT=YES,CHARACTERISTICS="public.accessibility.describes-video",URI="audiomedia/descriptive.m3u8"

HTTP Live Streaming

Page 54: Preparing and Presenting Media for Accessibility - Apple …devstreaming.apple.com/videos/wwdc/2013/608xcx3... · These are confidential sessions—please refrain from streaming,

•Audio■ CHARACTERISTICS■ LANGUAGE and ASSOC-LANGUAGE■ DEFAULT and AUTOSELECT■ NAME

• Example declaration#EXT-X-MEDIA:TYPE=AUDIO,GROUP-ID="audio", NAME="English Video Description", LANGUAGE=”en”,DEFAULT=NO, AUTOSELECT=YES,CHARACTERISTICS="public.accessibility.describes-video",URI="audiomedia/descriptive.m3u8"

HTTP Live Streaming

Page 55: Preparing and Presenting Media for Accessibility - Apple …devstreaming.apple.com/videos/wwdc/2013/608xcx3... · These are confidential sessions—please refrain from streaming,

•Audio■ CHARACTERISTICS■ LANGUAGE and ASSOC-LANGUAGE■ DEFAULT and AUTOSELECT■ NAME

• Example declaration#EXT-X-MEDIA:TYPE=AUDIO,GROUP-ID="audio", NAME="English Video Description", LANGUAGE=”en”,DEFAULT=NO, AUTOSELECT=YES,CHARACTERISTICS="public.accessibility.describes-video",URI="audiomedia/descriptive.m3u8"

HTTP Live Streaming

Page 56: Preparing and Presenting Media for Accessibility - Apple …devstreaming.apple.com/videos/wwdc/2013/608xcx3... · These are confidential sessions—please refrain from streaming,

•Highlights•No need to modify existing media segments• textStyleRules for styling•Alternative renditions for video and audio also supported

HTTP Live Streaming

Page 57: Preparing and Presenting Media for Accessibility - Apple …devstreaming.apple.com/videos/wwdc/2013/608xcx3... · These are confidential sessions—please refrain from streaming,

AudioVideo Captions or Subtitles

Translation

Lorem ipsum

QuickTime Movie File/.m4v File

SDHDubbed Audio

Descriptive Audio

Page 58: Preparing and Presenting Media for Accessibility - Apple …devstreaming.apple.com/videos/wwdc/2013/608xcx3... · These are confidential sessions—please refrain from streaming,

QuickTime Movie File/.m4v File

• Every track has■ Language setting■ Alternate track group setting (default = 0)■ Accommodation for track references■ Accommodation for a userdata container

Page 59: Preparing and Presenting Media for Accessibility - Apple …devstreaming.apple.com/videos/wwdc/2013/608xcx3... · These are confidential sessions—please refrain from streaming,

QuickTime Movie File/.m4v File

• Every track has■ Language setting■ Alternate track group setting (default = 0)■ Accommodation for track references■ Accommodation for a userdata container

Page 60: Preparing and Presenting Media for Accessibility - Apple …devstreaming.apple.com/videos/wwdc/2013/608xcx3... · These are confidential sessions—please refrain from streaming,

QuickTime Movie File/.m4v File

• Every track has■ Language setting■ Alternate track group setting (default = 0)■ Accommodation for track references■ Accommodation for a userdata container

Page 61: Preparing and Presenting Media for Accessibility - Apple …devstreaming.apple.com/videos/wwdc/2013/608xcx3... · These are confidential sessions—please refrain from streaming,

QuickTime Movie File/.m4v File

• Every track has■ Language setting■ Alternate track group setting (default = 0)■ Accommodation for track references■ Accommodation for a userdata container

Page 62: Preparing and Presenting Media for Accessibility - Apple …devstreaming.apple.com/videos/wwdc/2013/608xcx3... · These are confidential sessions—please refrain from streaming,

QuickTime Movie File/.m4v File

• Every track has■ Language setting■ Alternate track group setting (default = 0)■ Accommodation for track references■ Accommodation for a userdata container

■ Stores tagged media characteristics

Page 63: Preparing and Presenting Media for Accessibility - Apple …devstreaming.apple.com/videos/wwdc/2013/608xcx3... · These are confidential sessions—please refrain from streaming,

QuickTime Movie File/.m4v File

•Native structures of the file format■ Group assignments■ Languages■ Associations with other tracks■ Metadata, including tagged media characteristics

• Considerations■ All media interleaved in a single media resource

Page 64: Preparing and Presenting Media for Accessibility - Apple …devstreaming.apple.com/videos/wwdc/2013/608xcx3... · These are confidential sessions—please refrain from streaming,

Media Types and Subtypes

• For subtitle tracks Now: AVMediaTypeSubtitle / 'tx3g'

Following MPEG work: AVMediaTypeText / 'wvtt'

Page 65: Preparing and Presenting Media for Accessibility - Apple …devstreaming.apple.com/videos/wwdc/2013/608xcx3... · These are confidential sessions—please refrain from streaming,

Back to HTML5

• “In band” text tracks•Not declared in mark-up• Part of the main media resource•Work just like “out of band” text tracks

• Subtitles• Closed captions

Page 66: Preparing and Presenting Media for Accessibility - Apple …devstreaming.apple.com/videos/wwdc/2013/608xcx3... · These are confidential sessions—please refrain from streaming,

Comparison Chart

Selectable Captions Selectable Audio External References AirPlay Video

HTML 5 √ √

HTTP Live Streaming √ √ √ √

.mov & .m4v √ √ √

Page 67: Preparing and Presenting Media for Accessibility - Apple …devstreaming.apple.com/videos/wwdc/2013/608xcx3... · These are confidential sessions—please refrain from streaming,

Writing Subtitles to Movie Files

Adam SonnanstineAV Foundation Engineer

Page 68: Preparing and Presenting Media for Accessibility - Apple …devstreaming.apple.com/videos/wwdc/2013/608xcx3... · These are confidential sessions—please refrain from streaming,

Agenda

• Basics•Accessibility features• Scenario: Adding subtitle track

Page 69: Preparing and Presenting Media for Accessibility - Apple …devstreaming.apple.com/videos/wwdc/2013/608xcx3... · These are confidential sessions—please refrain from streaming,

Source Movie

Page 70: Preparing and Presenting Media for Accessibility - Apple …devstreaming.apple.com/videos/wwdc/2013/608xcx3... · These are confidential sessions—please refrain from streaming,

Source Movie

"¿Por qué?"

Page 71: Preparing and Presenting Media for Accessibility - Apple …devstreaming.apple.com/videos/wwdc/2013/608xcx3... · These are confidential sessions—please refrain from streaming,

Source Movie New Movie

"¿Por qué?" "¿Por qué?"

Page 72: Preparing and Presenting Media for Accessibility - Apple …devstreaming.apple.com/videos/wwdc/2013/608xcx3... · These are confidential sessions—please refrain from streaming,

Source Movie New Movie

"¿Por qué?" "¿Por qué?"

“Why?”“Why?”

Page 73: Preparing and Presenting Media for Accessibility - Apple …devstreaming.apple.com/videos/wwdc/2013/608xcx3... · These are confidential sessions—please refrain from streaming,

Demo

Courtney KennedyEngineering Manager

Page 74: Preparing and Presenting Media for Accessibility - Apple …devstreaming.apple.com/videos/wwdc/2013/608xcx3... · These are confidential sessions—please refrain from streaming,

Source Movie New Movie

"¿Por qué?" "¿Por qué?"

“Why?”“Why?”

Page 75: Preparing and Presenting Media for Accessibility - Apple …devstreaming.apple.com/videos/wwdc/2013/608xcx3... · These are confidential sessions—please refrain from streaming,

“Why?”

Source Movie New Movie

"¿Por qué?" "¿Por qué?"

“Why?”

Page 76: Preparing and Presenting Media for Accessibility - Apple …devstreaming.apple.com/videos/wwdc/2013/608xcx3... · These are confidential sessions—please refrain from streaming,

“Why?”

Page 77: Preparing and Presenting Media for Accessibility - Apple …devstreaming.apple.com/videos/wwdc/2013/608xcx3... · These are confidential sessions—please refrain from streaming,

CMSampleBufferPackaging the Data

“Why?”

Page 78: Preparing and Presenting Media for Accessibility - Apple …devstreaming.apple.com/videos/wwdc/2013/608xcx3... · These are confidential sessions—please refrain from streaming,

CMSampleBufferPackaging the Data

CMSampleBuffer

“Why?”

Page 79: Preparing and Presenting Media for Accessibility - Apple …devstreaming.apple.com/videos/wwdc/2013/608xcx3... · These are confidential sessions—please refrain from streaming,

CMSampleBuffer

“Why?”

Page 80: Preparing and Presenting Media for Accessibility - Apple …devstreaming.apple.com/videos/wwdc/2013/608xcx3... · These are confidential sessions—please refrain from streaming,

CMSampleBuffer

“Why?”

Page 81: Preparing and Presenting Media for Accessibility - Apple …devstreaming.apple.com/videos/wwdc/2013/608xcx3... · These are confidential sessions—please refrain from streaming,

AVAssetWriterNew Movie

“Why?”

Writing the Data

CMSampleBuffer

“Why?”

Page 82: Preparing and Presenting Media for Accessibility - Apple …devstreaming.apple.com/videos/wwdc/2013/608xcx3... · These are confidential sessions—please refrain from streaming,

AVAssetWriterNew Movie

“Why?”

AVAssetWriter

AVAssetWriterInput

Writing the Data

CMSampleBuffer

“Why?”

Page 83: Preparing and Presenting Media for Accessibility - Apple …devstreaming.apple.com/videos/wwdc/2013/608xcx3... · These are confidential sessions—please refrain from streaming,

•Data format■ QuickTime File Format Specification

http://developer.apple.com/library/mac/#documentation/QuickTime/QTFF/

DocumentationMore Information

Page 84: Preparing and Presenting Media for Accessibility - Apple …devstreaming.apple.com/videos/wwdc/2013/608xcx3... · These are confidential sessions—please refrain from streaming,

•Data format■ QuickTime File Format Specification

http://developer.apple.com/library/mac/#documentation/QuickTime/QTFF/

• CMSampleBuffer■ WWDC 2010, Session 409: “Using the Camera with AV Foundation”

DocumentationMore Information

Page 85: Preparing and Presenting Media for Accessibility - Apple …devstreaming.apple.com/videos/wwdc/2013/608xcx3... · These are confidential sessions—please refrain from streaming,

•Data format■ QuickTime File Format Specification

http://developer.apple.com/library/mac/#documentation/QuickTime/QTFF/

• CMSampleBuffer■ WWDC 2010, Session 409: “Using the Camera with AV Foundation”

•AVAssetWriter■ WWDC 2011, Session 415: “Working with Media in AV Foundation”

DocumentationMore Information

Page 86: Preparing and Presenting Media for Accessibility - Apple …devstreaming.apple.com/videos/wwdc/2013/608xcx3... · These are confidential sessions—please refrain from streaming,

Sample CodeMore Information

avsubtitleswriter for OSX

Page 87: Preparing and Presenting Media for Accessibility - Apple …devstreaming.apple.com/videos/wwdc/2013/608xcx3... · These are confidential sessions—please refrain from streaming,

Writing the DataTrack groups

AVAssetWriter

New Movie

AVAssetWriterInput

AVAssetWriterInput

"¿Por qué?"

“Why?”

"¿Por qué?"

“Why?”

Page 88: Preparing and Presenting Media for Accessibility - Apple …devstreaming.apple.com/videos/wwdc/2013/608xcx3... · These are confidential sessions—please refrain from streaming,

Writing the DataTrack groups

AVAssetWriter

New Movie

Track Group

AVAssetWriterInput

AVAssetWriterInput

"¿Por qué?"

“Why?”

"¿Por qué?"

“Why?”

Page 89: Preparing and Presenting Media for Accessibility - Apple …devstreaming.apple.com/videos/wwdc/2013/608xcx3... · These are confidential sessions—please refrain from streaming,

Writing the DataTrack groups

AVAssetWriter

New Movie

Track GroupInput Group

AVAssetWriterInput

AVAssetWriterInput

"¿Por qué?"

“Why?”

"¿Por qué?"

“Why?”

Page 90: Preparing and Presenting Media for Accessibility - Apple …devstreaming.apple.com/videos/wwdc/2013/608xcx3... · These are confidential sessions—please refrain from streaming,

Track groupsWriting the Data

AVAssetWriterInput *englishInput = ...;AVAssetWriterInput *spanishInput = ...;

NSArray *subtitleInputs = @[ englishInput, spanishInput ];

Page 91: Preparing and Presenting Media for Accessibility - Apple …devstreaming.apple.com/videos/wwdc/2013/608xcx3... · These are confidential sessions—please refrain from streaming,

Track groupsWriting the Data

inputGroup = [AVAssetWriterInputGroup assetWriterInputGroupWithInputs: subtitleInputs defaultInput: spanishInput];

AVAssetWriterInput *englishInput = ...;AVAssetWriterInput *spanishInput = ...;

NSArray *subtitleInputs = @[ englishInput, spanishInput ];

Page 92: Preparing and Presenting Media for Accessibility - Apple …devstreaming.apple.com/videos/wwdc/2013/608xcx3... · These are confidential sessions—please refrain from streaming,

Track groupsWriting the Data

[myAssetWriter addInputGroup: inputGroup];

inputGroup = [AVAssetWriterInputGroup assetWriterInputGroupWithInputs: subtitleInputs defaultInput: spanishInput];

AVAssetWriterInput *englishInput = ...;AVAssetWriterInput *spanishInput = ...;

NSArray *subtitleInputs = @[ englishInput, spanishInput ];

Page 93: Preparing and Presenting Media for Accessibility - Apple …devstreaming.apple.com/videos/wwdc/2013/608xcx3... · These are confidential sessions—please refrain from streaming,

Track associationsWriting the Data

AVAssetWriter

AVAssetWriterInput

New Movie

PCMPCMAAC

“Why?”AVAssetWriterInput“Why?”

Page 94: Preparing and Presenting Media for Accessibility - Apple …devstreaming.apple.com/videos/wwdc/2013/608xcx3... · These are confidential sessions—please refrain from streaming,

Track associationsWriting the Data

AVAssetWriter

AVAssetWriterInput

New Movie

PCMPCMAAC

follows

“Why?”AVAssetWriterInput“Why?”

Page 95: Preparing and Presenting Media for Accessibility - Apple …devstreaming.apple.com/videos/wwdc/2013/608xcx3... · These are confidential sessions—please refrain from streaming,

Track associationsWriting the Data

AVAssetWriter

AVAssetWriterInput

New Movie

PCMPCMAAC

follows follows

“Why?”AVAssetWriterInput“Why?”

Page 96: Preparing and Presenting Media for Accessibility - Apple …devstreaming.apple.com/videos/wwdc/2013/608xcx3... · These are confidential sessions—please refrain from streaming,

Track associationsWriting the Data

AVAssetWriterInput *subtitleInput = ...;AVAssetWriterInput *audioInput = ...;

[audioInput addTrackAssociationWithTrackOfInput: subtitleInput type: AVTrackAssociationTypeSelectionFollower];

Page 97: Preparing and Presenting Media for Accessibility - Apple …devstreaming.apple.com/videos/wwdc/2013/608xcx3... · These are confidential sessions—please refrain from streaming,

Writing the DataTagged characteristics

AVAssetWriter

AVAssetWriterInput

New Movie

“Why?”“Why?”

Page 98: Preparing and Presenting Media for Accessibility - Apple …devstreaming.apple.com/videos/wwdc/2013/608xcx3... · These are confidential sessions—please refrain from streaming,

Writing the DataTagged characteristics

AVAssetWriter

AVAssetWriterInput

New Movie

“Why?”“Why?”

“Transcribes spoken dialog”

Page 99: Preparing and Presenting Media for Accessibility - Apple …devstreaming.apple.com/videos/wwdc/2013/608xcx3... · These are confidential sessions—please refrain from streaming,

Writing the DataTagged characteristics

AVAssetWriter

AVAssetWriterInput

New Movie

“Why?”“Why?”

“Transcribes spoken dialog”

“Transcribes spoken dialog”

Page 100: Preparing and Presenting Media for Accessibility - Apple …devstreaming.apple.com/videos/wwdc/2013/608xcx3... · These are confidential sessions—please refrain from streaming,

Tagged characteristicsWriting the Data

Page 101: Preparing and Presenting Media for Accessibility - Apple …devstreaming.apple.com/videos/wwdc/2013/608xcx3... · These are confidential sessions—please refrain from streaming,

Tagged characteristicsWriting the Data

characteristic = [[AVMutableMetadataItem alloc] init];

[characteristic setKeySpace: AVMetadataKeySpaceQuickTimeUserData];[characteristic setKey: AVMetadataQuickTimeUserDataKeyTaggedCharacteristic];

Page 102: Preparing and Presenting Media for Accessibility - Apple …devstreaming.apple.com/videos/wwdc/2013/608xcx3... · These are confidential sessions—please refrain from streaming,

Tagged characteristicsWriting the Data

[characteristic setValue: AVMediaCharacteristicTranscribesSpokenDialogForAccessibility];

characteristic = [[AVMutableMetadataItem alloc] init];

[characteristic setKeySpace: AVMetadataKeySpaceQuickTimeUserData];[characteristic setKey: AVMetadataQuickTimeUserDataKeyTaggedCharacteristic];

Page 103: Preparing and Presenting Media for Accessibility - Apple …devstreaming.apple.com/videos/wwdc/2013/608xcx3... · These are confidential sessions—please refrain from streaming,

Tagged characteristicsWriting the Data

metadataArray = @[ characteristic ];

[subtitleInput setMetadata: metadataArray];

[characteristic setValue: AVMediaCharacteristicTranscribesSpokenDialogForAccessibility];

characteristic = [[AVMutableMetadataItem alloc] init];

[characteristic setKeySpace: AVMetadataKeySpaceQuickTimeUserData];[characteristic setKey: AVMetadataQuickTimeUserDataKeyTaggedCharacteristic];

Page 104: Preparing and Presenting Media for Accessibility - Apple …devstreaming.apple.com/videos/wwdc/2013/608xcx3... · These are confidential sessions—please refrain from streaming,

Tagged characteristicsWriting the Data

• SDH: AVMediaCharacteristicDescribesMusicAndSoundForAccessibility

metadataArray = @[ characteristic ];

[subtitleInput setMetadata: metadataArray];

[characteristic setValue: AVMediaCharacteristicTranscribesSpokenDialogForAccessibility];

characteristic = [[AVMutableMetadataItem alloc] init];

[characteristic setKeySpace: AVMetadataKeySpaceQuickTimeUserData];[characteristic setKey: AVMetadataQuickTimeUserDataKeyTaggedCharacteristic];

Page 105: Preparing and Presenting Media for Accessibility - Apple …devstreaming.apple.com/videos/wwdc/2013/608xcx3... · These are confidential sessions—please refrain from streaming,

Closed Captions

QuickTime File Format Specificationhttp://developer.apple.com/library/mac/#documentation/QuickTime/QTFF/

Page 106: Preparing and Presenting Media for Accessibility - Apple …devstreaming.apple.com/videos/wwdc/2013/608xcx3... · These are confidential sessions—please refrain from streaming,

Accessing Subtitle Text

Page 107: Preparing and Presenting Media for Accessibility - Apple …devstreaming.apple.com/videos/wwdc/2013/608xcx3... · These are confidential sessions—please refrain from streaming,

What You Get for Free

Look how high it is!

Page 108: Preparing and Presenting Media for Accessibility - Apple …devstreaming.apple.com/videos/wwdc/2013/608xcx3... · These are confidential sessions—please refrain from streaming,

Place Subtitles Anywhere

Look how high it is!

Page 109: Preparing and Presenting Media for Accessibility - Apple …devstreaming.apple.com/videos/wwdc/2013/608xcx3... · These are confidential sessions—please refrain from streaming,

Place Subtitles Anywhere

Look how high it is!

Page 110: Preparing and Presenting Media for Accessibility - Apple …devstreaming.apple.com/videos/wwdc/2013/608xcx3... · These are confidential sessions—please refrain from streaming,

Allow User Interaction with Text

Page 111: Preparing and Presenting Media for Accessibility - Apple …devstreaming.apple.com/videos/wwdc/2013/608xcx3... · These are confidential sessions—please refrain from streaming,
Page 112: Preparing and Presenting Media for Accessibility - Apple …devstreaming.apple.com/videos/wwdc/2013/608xcx3... · These are confidential sessions—please refrain from streaming,

AVPlayerItemLegibleOutput

Page 113: Preparing and Presenting Media for Accessibility - Apple …devstreaming.apple.com/videos/wwdc/2013/608xcx3... · These are confidential sessions—please refrain from streaming,

Agenda

• Basic use•Drawing subtitles•Alternatives

Page 114: Preparing and Presenting Media for Accessibility - Apple …devstreaming.apple.com/videos/wwdc/2013/608xcx3... · These are confidential sessions—please refrain from streaming,

AVPlayerItemLegibleOutput

Player Item

Legible Output

Page 115: Preparing and Presenting Media for Accessibility - Apple …devstreaming.apple.com/videos/wwdc/2013/608xcx3... · These are confidential sessions—please refrain from streaming,

AVPlayerItemLegibleOutput

Player Item

Legible OutputDelegate

Page 116: Preparing and Presenting Media for Accessibility - Apple …devstreaming.apple.com/videos/wwdc/2013/608xcx3... · These are confidential sessions—please refrain from streaming,

“Why?”

AVPlayerItemLegibleOutput

Player Item

Legible OutputDelegate

Page 117: Preparing and Presenting Media for Accessibility - Apple …devstreaming.apple.com/videos/wwdc/2013/608xcx3... · These are confidential sessions—please refrain from streaming,

Setup

• InitializelegibleOutput = [[AVPlayerItemLegibleOutput alloc] init];

Page 118: Preparing and Presenting Media for Accessibility - Apple …devstreaming.apple.com/videos/wwdc/2013/608xcx3... · These are confidential sessions—please refrain from streaming,

Setup

•Attach[playerItem addOutput: legibleOutput];

• InitializelegibleOutput = [[AVPlayerItemLegibleOutput alloc] init];

Page 119: Preparing and Presenting Media for Accessibility - Apple …devstreaming.apple.com/videos/wwdc/2013/608xcx3... · These are confidential sessions—please refrain from streaming,

Setup

• Set delegateid <AVPlayerItemLegibleOutputPushDelegate> myDelegate = ...;[legibleOutput setDelegate: myDelegate queue: dispatch_get_main_queue()];

•Attach[playerItem addOutput: legibleOutput];

• InitializelegibleOutput = [[AVPlayerItemLegibleOutput alloc] init];

Page 120: Preparing and Presenting Media for Accessibility - Apple …devstreaming.apple.com/videos/wwdc/2013/608xcx3... · These are confidential sessions—please refrain from streaming,

AVPlayerItemLegibleOutputPushDelegate protocolDelegate

- (void) legibleOutput: (AVPlayerItemLegibleOutput *)output didOutputAttributedStrings: (NSArray *)strings

nativeSampleBuffers: (NSArray *)sbufs forItemTime: (CMTime)itemTime;

Page 121: Preparing and Presenting Media for Accessibility - Apple …devstreaming.apple.com/videos/wwdc/2013/608xcx3... · These are confidential sessions—please refrain from streaming,

Sample Code

AVLegibleMeanings for OSX

Page 122: Preparing and Presenting Media for Accessibility - Apple …devstreaming.apple.com/videos/wwdc/2013/608xcx3... · These are confidential sessions—please refrain from streaming,

Drawing Subtitles

Look how high it is!

Page 123: Preparing and Presenting Media for Accessibility - Apple …devstreaming.apple.com/videos/wwdc/2013/608xcx3... · These are confidential sessions—please refrain from streaming,

String attributesDrawing Subtitles

Page 124: Preparing and Presenting Media for Accessibility - Apple …devstreaming.apple.com/videos/wwdc/2013/608xcx3... · These are confidential sessions—please refrain from streaming,

String attributesDrawing Subtitles

kCMTextMarkupAttribute_ForegroundColorARGBkCMTextMarkupAttribute_BackgroundColorARGBkCMTextMarkupAttribute_BoldStylekCMTextMarkupAttribute_ItalicStylekCMTextMarkupAttribute_UnderlineStylekCMTextMarkupAttribute_FontFamilyNamekCMTextMarkupAttribute_AlignmentkCMTextMarkupAttribute_TextPositionPercentageRelativeToWritingDirectionkCMTextMarkupAttribute_WritingDirectionSizePercentagekCMTextMarkupAttribute_CharacterBackgroundColorARGBkCMTextMarkupAttribute_CharacterEdgeStylekCMTextMarkupAttribute_VerticalLayoutkCMTextMarkupAttribute_RelativeFontSizekCMTextMarkupAttribute_GenericFontFamilyName

Page 125: Preparing and Presenting Media for Accessibility - Apple …devstreaming.apple.com/videos/wwdc/2013/608xcx3... · These are confidential sessions—please refrain from streaming,

String attributesDrawing Subtitles

kCMTextMarkupAttribute_ForegroundColorARGBkCMTextMarkupAttribute_BackgroundColorARGBkCMTextMarkupAttribute_BoldStylekCMTextMarkupAttribute_ItalicStylekCMTextMarkupAttribute_UnderlineStylekCMTextMarkupAttribute_FontFamilyNamekCMTextMarkupAttribute_AlignmentkCMTextMarkupAttribute_TextPositionPercentageRelativeToWritingDirectionkCMTextMarkupAttribute_WritingDirectionSizePercentagekCMTextMarkupAttribute_CharacterBackgroundColorARGBkCMTextMarkupAttribute_CharacterEdgeStylekCMTextMarkupAttribute_VerticalLayoutkCMTextMarkupAttribute_RelativeFontSizekCMTextMarkupAttribute_GenericFontFamilyName

Page 126: Preparing and Presenting Media for Accessibility - Apple …devstreaming.apple.com/videos/wwdc/2013/608xcx3... · These are confidential sessions—please refrain from streaming,

String attributesDrawing Subtitles

kCMTextMarkupAttribute_ForegroundColorARGBkCMTextMarkupAttribute_BackgroundColorARGBkCMTextMarkupAttribute_BoldStylekCMTextMarkupAttribute_ItalicStylekCMTextMarkupAttribute_UnderlineStylekCMTextMarkupAttribute_FontFamilyNamekCMTextMarkupAttribute_AlignmentkCMTextMarkupAttribute_TextPositionPercentageRelativeToWritingDirectionkCMTextMarkupAttribute_WritingDirectionSizePercentagekCMTextMarkupAttribute_CharacterBackgroundColorARGBkCMTextMarkupAttribute_CharacterEdgeStylekCMTextMarkupAttribute_VerticalLayoutkCMTextMarkupAttribute_RelativeFontSizekCMTextMarkupAttribute_GenericFontFamilyName

<CoreMedia/CMTextMarkup.h>

Page 127: Preparing and Presenting Media for Accessibility - Apple …devstreaming.apple.com/videos/wwdc/2013/608xcx3... · These are confidential sessions—please refrain from streaming,

Respecting user preferencesDrawing Subtitles

MediaAccessibility framework

Page 128: Preparing and Presenting Media for Accessibility - Apple …devstreaming.apple.com/videos/wwdc/2013/608xcx3... · These are confidential sessions—please refrain from streaming,

When Not to Use Legible Output

• Indexing-like operations■ Use AVAssetReader

• Custom styling of WebVTT■ Consider using AVPlayerItem.textStyleRules

• To override user preferences

Page 129: Preparing and Presenting Media for Accessibility - Apple …devstreaming.apple.com/videos/wwdc/2013/608xcx3... · These are confidential sessions—please refrain from streaming,

Summary

• Support accessibility during playback• Content delivery choices•Add subtitles to movie files•Access subtitle text during playback

Page 130: Preparing and Presenting Media for Accessibility - Apple …devstreaming.apple.com/videos/wwdc/2013/608xcx3... · These are confidential sessions—please refrain from streaming,

John GeleynseDirector, Technology [email protected]

DocumentationAV Foundation Programming Guidehttp://developer.apple.com/library/ios/#documentation/AudioVideo/Conceptual/AVFoundationPG/

Apple Developer Forumshttp://devforums.apple.com

More Information

Page 131: Preparing and Presenting Media for Accessibility - Apple …devstreaming.apple.com/videos/wwdc/2013/608xcx3... · These are confidential sessions—please refrain from streaming,

Related Sessions

Advanced Editing with AV Foundation MarinaThursday 9:00AM

What’s new in Camera Capture Nob HillWednesday 11:30AM

Page 132: Preparing and Presenting Media for Accessibility - Apple …devstreaming.apple.com/videos/wwdc/2013/608xcx3... · These are confidential sessions—please refrain from streaming,

Labs

AV Foundation Lab Media Lab BThursday 2:00PM

HTTP Live Streaming Lab Media Lab BThursday 11:30AM

AV Foundation Lab Media Lab BFriday 9:00AM

Page 133: Preparing and Presenting Media for Accessibility - Apple …devstreaming.apple.com/videos/wwdc/2013/608xcx3... · These are confidential sessions—please refrain from streaming,