带有“autoplay muted playsinline”的iOS 10视频标签会停止播放背景音乐(spotify)

时间:2017-02-23 13:24:56

标签: ios html5-video ios10

我正在尝试继续播放像Spotify这样的背景音乐,并播放带有attributs的内嵌视频:“autoplay muted playsinline”。

<video id="video" muted="muted" autoplay loop muted playsinline >
     <source src="video.mp4" type="video/mp4">
</video>


<script>
window.onload = function () {
    var element = document.getElementById('video');
    element.muted = "muted";
}
</script>

但是当我运行此视频时,视频会播放内联和自动播放。但是一旦视频开始,背景音乐应用程序就会暂停。

1 个答案:

答案 0 :(得分:3)

简单的回答。你不能。

一个解决方案: 如果您从视频中删除声轨。像Spotify这样的背景音乐不会停止播放。