首页 > 解决方案 > Youtube embedded video autoplay

问题描述

...not working. Any ideas why?

<iframe width="560" height="315" src="https://www.youtube.com/embed/nwe76N7J0EI?rel=0&amp;controls=0&amp;showinfo=0&amp;start=1" frameborder="0" allow="autoplay; encrypted-media" allowfullscreen></iframe>

this is a latest code youtube provides

标签: iframeyoutubeautoplay

解决方案


默认情况下,它是浏览器阻止自动播放(带声音)。

https://developers.google.com/web/updates/2017/09/autoplay-policy-changes

它终于在几个月前实施。您仍然可以使用自动播放,但需要将视频静音。

请注意下面嵌入中添加的 mute=1。它会自动播放,但如果你删除它就会中断。

<iframe width="560" height="315" src="https://www.youtube.com/embed/nwe76N7J0EI?rel=0&autoplay=1&mute=1" frameborder="0" allow="autoplay; encrypted-media" allowfullscreen></iframe>

推荐阅读