I work for a company that is currently setting up video advertising on mobile and for this we need the HTML5 <video>
element. Now that Chrome 53 is out and it supports muted autoplay we had great hopes for our new video advertisement.
Unfortunately we get complains from clients that even muted video autoplay interrupts Spotify (and other background media playback).
Is there a way around this? Our <video>
element looks like this:
<video width="320" height="180" preload="auto" muted="" autoplay="" webkit-playsinline="" ><source src="....." type="video/mp4"></video>
I already tried setting volume to 0 from javascript, but this doesn't seem to do anything when muted. (Which makes sense).
We only want to autoplay muted video while keeping background playback enabled.