I have a page with an embedded youtube video. The playerVar autoplay is set to 0. But when the page loads, the iframe delivered by the API is
<iframe id="ytplayer" frameborder="0" allowfullscreen="1" allow="autoplay; encrypted-media" title="YouTube video player" width="533" height="400" src="https://www.youtube.com/embed/myVideo?autoplay=0&controls=1&fs=0&origin=https%3A%2F%2Fexample.com&showInfo=0&rel=0&enablejsapi=1&widgetid=1"></iframe>
Note "allow="autoplay; Why does this happen?? Furthermore, the video autoplays on some browsers/systems and not on others.
Well you could try to remove
autoplay;
from theallow
attribute ;)