我正在尝试在Android上自动播放youtube视频,与
中的相同How can I autoplay a video using the new embed code style for Youtube?
以下HTML适用于Google Chrome浏览器,但不适用于Android模拟器中的浏览器。
<iframe title="YouTube video player" class="youtube-player" type="text/html" width="640" height="390" src="http://www.youtube.com/embed/xxxxxxxx?autoplay=1&vq=medium" frameborder="0"></iframe>
有人能说清楚这个吗?
答案 0 :(得分:1)
根据this answer,禁用自动播放正慢慢成为移动浏览器的标准。这样做是为了防止不必要的声音播放和节省电池。
您可能希望从this article开始提供该方法。
function callback () {
document.querySelector('video').play();
}
window.addEventListener("load", callback, false);
<video poster preload="true">
<source src="video.mp4" type="video/mp4">
</video>
答案 1 :(得分:0)
试试这个。注意用来自YouTube的嵌入网址替换videoLink。
src=//videoLink?autoplay=1