ofxVLCVideoPlayer
ofxVLCVideoPlayer copied to clipboard
Cannot mute audio
In VLCMovie.h, the function void toggleMute() calls libvlc_audio_toggle_mute(mp); which doesn't seem to work. Setting volume also doesn't work. Tested on Windows 10, OF 0.9.3.
Update: In the function VLCMovie::init() in VLCMovie.cpp, if I set audio output to directsound
libvlc_audio_output_set(mp, "directsound");
then the problem goes away.