Name |
Required? |
Values |
Description |
---|---|---|---|
preload |
optional |
one of |
none: do not preload the media from the server |
showControls |
optional |
true(default) or false. |
true: browser's media controls are shown (default) |
loop |
optional |
true(default) or false. |
Pattern to validate the typed input on browser-side and the server-side. This attribute should not be set and is ignored if "type" is 'textarea'. |
poster |
optional |
String |
Url of image to show when not playing or seeking |
width |
optional |
String |
Width of the video |
height |
optional |
String |
Height of the video |
Name |
Description |
---|---|
fallBack |
Content to display when HTML5 video is not supported. For example, page author may use a flash player as a fallback or display a message that displays Html5 video is not supported. |
This component will be same with <hx:video>, except it won't have "width", "height" and "poster" attributes.
Name |
Required? |
Values |
Description |
---|---|---|---|
src |
required |
EL and Literal |
URL of the source. |
contentType |
optional |
EL and Literal |
MIME content type of the source (ie:video/ogg). |
codecs |
optional |
EL and Literal |
Codecs of the source (ie:'avc1.64001E, mp4a.40.2'). |
media |
optional |
EL and Literal |
Just like the @media in CSS. |
Name |
Required? |
Values |
Description |
---|---|---|---|
items |
required |
EL |
binding of a collection which has elements of types having these methods:
|
<hx:video value="#{videoBean.someVideoFileURL}" preload="metadata" poster="somePosterImage.jpg" width="600px" height="300px" autoplay="true" loop="true" showControls="true" > <f:facet name="fallBack"> <embed player.swf ....>.....</embed> <!-- SOME FALLBACK MECHANISM TO PLAY THE FILE (FLASH may be). or alerting the user about HTML5 video support. --> </f:facet> </hx:video>
<video src="someAddress/someFile.mkv" preload="metadata" autoplay="true" loop="true" controls="true" poster="somePosterImage.jpg" width="600px" height="300px"> <embed player.swf ....>.....</embed> </video>
<hx:video preload="none" autoplay="false" loop="false" showControls="false" poster="#{videoBean.posterImage}"> <f:facet name="fallBack"> Your browser does not support HTML5 video. </f:facet> <hx:mediaSource src="http://someaddress/someFile.ogg" contentType="video/ogg" codecs="avc1.42E01E" media="screen and (device-width: 800px)"> <hx:mediaSource src="http://someaddress/some3DFile.ogg" media="3d-glasses"> <!-- <hx:mediaSources> component, not <hx:mediaSource> --> <hx:mediaSources items="#{someBean.mediaInfoList}"> </hx:video>
<video preload="none" poster="somePosterImage.jpg" controls="false" autoplay="false"> Your browser does not support HTML5 video. <source src='http://someaddress/someFile.ogg' Type='video/ogg; codecs="avc1.42E01E"' media="screen and (device-width: 800px)" /> <source src='someAddress/some3Dfile.ogg' media="3d-glasses"/> <!-- elements below are generated with <hx:mediaSources> --> <source src='video.mp4' type='video/mp4; codecs="avc1.42E01E, mp4a.40.2"' media="screen"> <source src='video.mp4' type='video/mp4; codecs="avc1.58A01E, mp4a.40.2"' media="3d-glasses"> <source src='video.mp4' type='video/mp4; codecs="avc1.4D401E, mp4a.40.2"'> <source src='video.mp4' type='video/mp4; codecs="avc1.64001E, mp4a.40.2"'> <source src='video.mp4' type='video/mp4; codecs="mp4v.20.8, mp4a.40.2"'> </video>