Controlling volume on the video player via javascript
We are looking for a way to control the video sound volume similar to the way you control play and pause.
function play(){
vidplayer.vidPlay();
}
function pause() {
vidplayer.vidPause();
}
is there a javascript function that will control the video player to set volume and perhaps mute?
by
0 Replies