[Bug 13544] Video: <track> element should allow support of more than one format without content sniffing

http://www.w3.org/Bugs/Public/show_bug.cgi?id=13544

Frank Olivier <franko@microsoft.com> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
                 CC|                            |franko@microsoft.com

--- Comment #2 from Frank Olivier <franko@microsoft.com> 2011-08-03 02:35:24 UTC ---
The author should be able to specify a default track per track file type.
http://dev.w3.org/html5/spec/Overview.html#dom-track-default

The author might have the same content published in (for example) .ttml and
.vtt, and may want to set a default in case two user agents don't suppot the
same track file types.

Also, setting the type on the track itself seems simpler:

<video src="v.mp4">
 <track kind=captions src=v.en.ttml srclang=en label="English" default>
 <track kind=captions src=v.de.ttml srclang=de label="German">
 <track kind=captions src=v.en.vtt srclang=en label="English" default>
 <track kind=captions src=v.de.vtt srclang=de label="German">
</video>

-- 
Configure bugmail: http://www.w3.org/Bugs/Public/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the QA contact for the bug.

Received on Wednesday, 3 August 2011 02:35:26 UTC