[whatwg] HTML 5 video tag questions

Ian Hickson ian at hixie.ch
Fri Jul 10 17:44:39 PDT 2009


On Sun, 14 Jun 2009 jjcogliati-whatwg at yahoo.com wrote:
> 
> I read section 4.8.7 The video element and I have some questions:
>
> 1.  What happens if the user agent supports the video tag but does not 
> support the particular video codec that the video file has?  Should it 
> display the fallback content in that case, and if so, can a video tag be 
> put inside another video tag?

You can use the <source> element for fallback. If none of the available 
videos are supported, the video element just sits there doing nothing, 
and an 'error' event fires in the script.

The fallback contents are not shown if the element is supported; they are 
only intended for other browsers that don't support <video> at all.


> 2.  What is the recommended way for website authors to determine what 
> video and audio codecs and containers are supported by a user agent?

The canPlayType() method.


On Sun, 14 Jun 2009, Jonas Sicking wrote:
> 
> Hmm.. is that good? What if you want to use an <object> (to use flash or 
> java) or a <img> as fallback?

Then you do it with script.

The design is based around the assumption that we will eventually find a 
common codec so that fallback won't ever be needed in supporting UAs.

-- 
Ian Hickson               U+1047E                )\._.,--....,'``.    fL
http://ln.hixie.ch/       U+263A                /,   _.. \   _\  ;`._ ,.
Things that are impossible just take longer.   `._.-(,_..'--(,_..'`-.;.'



More information about the whatwg mailing list