Problem setting the channel audio
Posted: 30 Apr 2009 17:48
Hello,
I'm using the vlc activeX plug-in version 0.9 (for Windows) and each time I'm trying to set the audio channel the program get stuck.
when I'm trying to get the audio channel it returns the current channel but I can't change it.
This is my code for setting the channel is:
Can anyone give me any idea why it does'nt work?
Thanks
I'm using the vlc activeX plug-in version 0.9 (for Windows) and each time I'm trying to set the audio channel the program get stuck.
when I'm trying to get the audio channel it returns the current channel but I can't change it.
This is my code for setting the channel is:
Code: Select all
function doAudioChannel(value) {
var vlc = getVLC("vlc");
if( vlc )
vlc.audio.channel = parseInt(value);
}
Thanks