[Javascript] Commander la lecture d'une video

Commander la lecture d'une video [Javascript] - HTML/CSS - Programmation

Marsh Posté le 16-10-2003 à 10:51:01    

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 :sweat:


---------------
yvele n'est plus.
Reply

Marsh Posté le 16-10-2003 à 10:51:01   

Reply

Marsh Posté le 16-10-2003 à 11:19:14    

<SCRIPT>
<!--
   function StartMeUp ()
   {
       Player.URL = "http://WebServer/MyFile.wvx";
   }
 
   function ShutMeDown ()
   {
       Player.controls.stop();
   }
-->
</SCRIPT>


 
ça marche pas non plus :sweat:


---------------
yvele n'est plus.
Reply

Sujets relatifs:

Leave a Replay

Make sure you enter the(*)required information where indicate.HTML code is not allowed