<?xml version='1.0' encoding='UTF-8' ?>
<!DOCTYPE html>
<html xmlns="http://www.w3.org/1999/xhtml"
      xmlns:h="http://xmlns.jcp.org/jsf/html"
      xmlns:jsf="http://xmlns.jcp.org/jsf">
    <h:head>
        <title>Vidéo locale HTML5</title>
    </h:head>
    <h:body>
        <h:form>
            Source de la vidéo : 
            <h:inputText value="#{beanVideo.srcVideo}"/>
            <br/>
            <video jsf:id="video" controls="controls" src="#{beanVideo.srcVideo}"/>
            <br/>
            <h:commandButton value="Voir la vidéo" />
        </h:form>
    </h:body>
</html>