A intensão é iniciar uma imagem após 2s de vídeo. Porém, a imagem não inicia.
<?xml version="1.0" encoding="ISO-8859-1"?>
<ncl id="main" xmlns="http://www.ncl.org.br/NCL3.0/EDTVProfile">
<head>
<regionBase>
<region width="100%" height="100%" id="rgMenu" />
<region width="50%" height="50%" id="rgFullScreen" />
</regionBase>
<descriptorBase>
<descriptor id="dRgFullScreen" region="rgFullScreen" >
<descriptorParam name="soundLevel" value="0"/>
</descriptor>
<descriptor id="dMenu" region="rgMenu" />
</descriptorBase>
<connectorBase>
<importBase alias="connectors" documentURI="connectorBase.ncl"/>
</connectorBase>
</head>
<body>
<port id="entry" component="video1"/>
<media id="video1" src="videos/InsertionSort.mpg" descriptor="dRgFullScreen">
<area id="aMenu" begin="2s" end="10s"/>
</media>
<media id="menu" src="imagem/img.jpg" descriptor="dMenu"/>
<link id="lMenuStart" xconnector="connectors#onBegin1StartN">
<bind component="video1" interface="aMenu" role="onBegin"/>
<bind component="menu" role="start"/>
</link>
</body>
</ncl>
Autor: João Vicente
33 comentários
dá uma olhada se o URI da base de conectores está correta, e se o conector onBegin1StartN está correto. O documento NCL que você mandou executou direitinho aqui. Eu estou mandando o conector dentro da base que eu criei. <?xml version="1.0" encoding="ISO-8859-1"?>
<ncl id="connectorBase" xmlns="http://www.ncl.org.br/NCL3.0/EDTVProfile">
<head>
<connectorBase>
<causalConnector id="onBegin1StartN">
<simpleCondition role="onBegin"/>
<simpleAction role="start" max="unbounded" qualifier="seq"/>
</causalConnector>
</connectorBase>
</head>
</ncl>
<ncl id="main" xmlns="http://www.ncl.org.br/NCL3.0/EDTVProfile">
<head>
<regionBase>
<region width="100%" height="100%" id="rgMenu" />
<region width="50%" height="50%" id="rgFullScreen" />
</regionBase>
<descriptorBase>
<descriptor id="dRgFullScreen" region="rgFullScreen" >
<descriptorParam name="soundLevel" value="0"/>
</descriptor>
<descriptor id="dMenu" region="rgMenu" />
</descriptorBase>
<connectorBase>
<causalConnector id="onBegin1StartN">
<simpleCondition role="onBegin"/>
<simpleAction role="start" max="unbounded" qualifier="seq"/>
</causalConnector>
</connectorBase>
</head> <body>
<port id="entry" component="video1"/>
<media id="video1" src="videos/InsertionSort.mpg" descriptor="dRgFullScreen">
<area id="aMenu" begin="2s" end="10s"/>
</media>
<media id="menu" src="imagem/img.jpg" descriptor="dMenu"/>
<link id="lMenuStart" xconnector="onBegin1StartN">
<bind component="video1" interface="aMenu" role="onBegin"/>
<bind component="menu" role="start"/>
</link>
</body>
</ncl>