Page 1 of 1

Control Mute in VLC plugin

Posted: 15 Apr 2011 12:19
by voraa
Help, please!
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>
If I open one page of a browser, all works good.
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.

Re: Control Mute in VLC plugin

Posted: 15 Apr 2011 12:24
by voraa
I have VLC plugin 1.1.7.0

Re: Control Mute in VLC plugin

Posted: 13 Jun 2011 05:11
by jack.ting
Hi, there:

I don't know what happen when you have multiple instance of the same html page.
But, I'm sure that why it did not work on multiple instance of VLC on the same html page.
You shuld add an "ID" tag with different value to distinguish each vlc-plugin instance.
otherwise, the javascript "onclick='vlc.playlist.play()'" can not find the correct vlc instance to operate.