
Autoplay and Mute Ad
I have a video autostart and muted but with the VPAID ads load they play at full volume.
I have tried using the events onAdImpression and onBeforePlay. In the below example I have it tell me the volume and it always says 0 but the ad is still playing at full volume. Is there something I can do to access the ad itself to mute it?
jwplayer("myElement").setup({
image: "video_image_2.jpg",
file: "explainer.mp4",
primary: 'flash',
autostart: true,
mute: true,
advertising: {
client: "vast",
tag: "tag_url"
},
events: {
onAdImpression: function(evt) {
alert(this.getVolume());
}
}
});