Page 1 of 1

can't play video with sound=0 or MUTE?

Posted: 24 Aug 2014 19:22
by michi
Hi all,
I'm trying to create a simple webpage with a VLC ActiveX to play a ipcam stream, but I need it without audio (volume=zero or mute)
I tryed all the day to do this with volume and mute command, without success...

When ipcam streaming start audio will be set to 100, even volume control was set to 0 or mute was true..

I read that other users had this problem...

Anyone know a method to play video with audio volume set to 0 or mute? (repeat: volume and mute command doesn't work)

thanks in advance

Michi

Re: can't play video with sound=0 or MUTE?

Posted: 25 Aug 2014 04:52
by RSATom
You could attach to some event ( MediaPlayerPlaying for example ) and set volume/mute there

https://wiki.videolan.org/Documentation:WebPlugin/

Re: can't play video with sound=0 or MUTE?

Posted: 25 Aug 2014 07:43
by michi
thanks for your reply Tom. unfortunately I'm not an expert of ActiveX...

How can I modify this code in order to play mute?

Code: Select all

<html> <body bgcolor="#000000"> <object classid="clsid:9BE31822-FDAD-461B-AD51-BE1D1C159921" width="768" height="440" id="vlc" events="True" align="middle"> <param name="AutoLoop" value="0"></param> <param name="AutoPlay" value="-1"></param> <param name="Toolbar" value="-1"> <param name="MRL" value="rtsp://guest:guest@172.17.2.101:88/videoMain"> <param name="Visible" value="-1"> <param name="BackColor" value="0"> <param name="FullscreenEnabled" value="-1"></object> <param name="Volume" value="true"> </object> </body> </html>
thanks in advance for your support. I'm going cracy for this problem...

Re: can't play video with sound=0 or MUTE?

Posted: 25 Aug 2014 07:48
by RSATom