I have a problem with work of Mute mode in VLC plugin.
Here a simple example.
Code: Select all
<html>
<head>
<script language="Javascript">
var ie=/*@cc_on!@*/false;
function crtVLC () {
var v
if(!ie) v=document.createElement("embed")
if(ie) v=document.createElement("object")
if(!ie) v.type="application/x-vlc-plugin";
if (ie) v.classid="clsid:9BE31822-FDAD-461B-AD51-BE1D1C159921"
v.version = "VideoLAN.VLCPlugin.2"
v.style.width="400px";
v.style.height="300px";
v.autoplay=false;
v.loop=false
return v;
}
function ld() {
var i;
edv=document.getElementById("vscr");
vlc=edv.appendChild(crtVLC ());
vlc.playlist.add("http://..url...");
vlc.playlist.play();
}
</script>
</head>
<body onload="ld()">
<div id=vscr></div>
<a href="javascript:;" onclick='vlc.playlist.play()'>Play</a>
<a href="javascript:;" onclick='vlc.playlist.togglePause()'>Pause</a>
<a href="javascript:;" onclick='vlc.audio.toggleMute()'>Mute</a>
</body>
</html>
But if I shall set it Mute-on, and I shall open the second same page, it will open in Mute-on too! And I can't control Mute on the second page while I'll not Mute-off on the first.
If I'll close the first page I can't control Mute on the second page at all.
The same effects are observed when two VLC plugins are placed on one page
I checked it in FireFox 4.0 and Opera 11.
How I can operate mode Mute independently for different plugins?
PS In IE8 all works well.
Sorry fo my Engish.