J'arrive pas à le faire...
voila j'ai un objet video (pour le streaming)
comme ceci :
<OBJECT ID="NSPlay" style="visibility:hidden;" WIDTH={$VOWidth} HEIGHT={$VOHeight} classid="CLSID:22D6F312-B0F6-11D0-94AB-0080C74C7E95"
codebase="http://activex.microsoft.com/activex/controls/mplayer/en/nsmp2inf.cab#Version=5,1,52,701"
standby="Chargement..."
type="application/x-oleobject">
<PARAM ID="paramVideo" NAME="FileName" VALUE="$VOSrc">
<PARAM NAME="ShowControls" VALUE="0">
<PARAM NAME="ShowDisplay" VALUE="0">
<PARAM NAME="ShowStatusBar" VALUE="0">
<PARAM NAME="AutoSize" VALUE="0">
<PARAM NAME="AUTOSTART" value="1"> <Embed type="application/x-mplayer2"
pluginspage="http://www.microsoft.com/Windows/Downloads/Contents/Products/MediaPlayer/"
filename="$VOSrc"
src="$VOSrc"
Name="NSPlay"
ShowControls=0
ShowDisplay=0
ShowStatusBar=0
width={$VOWidth}
height={$VOHeight}>
</embed>
</OBJECT> |
(c integré à du php..)
et j'aimerai commander la lecture et l'arret de la video via du javascript!
comment faire??
j'ai essayé ça :
<script type="text/javascript">
<!--
function enableVideo()
{
//document.getElementById("divVideo" ).style.visibility = "visible";
//document.getElementById("NSPlay" ).style.visibility = "visible";
document.getElementById("paramVideo" ).value = "$VOSrc";
//document.embeds['NSPlay'].play();
alert("test" );
};
function disableVideo()
{
document.getElementById("divVideo" ).style.visibility = "hidden";
};
//-->
</script> |
ça marche pas!
je suis dans la merde
---------------
yvele n'est plus.