i try playing a 360-video in aframe and it works fine on android and desktop but on ios it dont work. If i mute the video the starting of the video works but i need the sound. Some ideas how to fix that? Here my code: https://jsfiddle.net/237s96ka/1/
<!DOCTYPE html>
<html>
<head>
<title>zoom-showreel</title>
<meta charset="utf-8">
<meta author="" inhalt="vr-video">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="apple-mobile-web-app-capable" content="yes">
<script src="https://aframe.io/releases/0.8.2/aframe.min.js"></script>
</head>
<body>
<a-scene cursor="rayOrigin: mouse" raycaster="objects: .clickable" vr-mode-ui="enabled: false">
<a-assets timeout="0">
<img id="icon_vid" src="https://cdn.glitch.com/710c25d4-6d3f-48ef-910b-36ddf7e5e6b9%2Fvidiconaframe(background).png?1530002331523" crossorigin="anonymous">
<video id="video" style="display:none" preload="none"
loop="true" crossorigin="anonymous" playsinline webkit-playsinline>
<source type="video/mp4"
src="https://cdn.glitch.com/c2ca5d0d-ccc4-4d01-a6ce-4d189a914581%2Ftryvid.mp4?1533644255893" />
</video>
</a-assets>
<!--------------Szene----------------------------------------->
<a-videosphere id="vidsphere" radius="100" src="#video"></a-videosphere>
<a-image src="#icon_vid" position="-2 2 0" rotation="0 90 0 " onclick="playvideo()" color="red" class="clickable" event-set__enter="_event: mouseenter; color: #33ccff; width: 1.1; height: 1.1;"
event-set__leave="_event: mouseleave; color: ; width: 1; height: 1;" ></a-image>
<!--------camera---------->
<a-entity rotation="0 90 0">
<a-camera user-height="0" wasd-controls-enabled="false" look-controls>
</a-camera>
</a-entity>
</a-scene>
<script type = "text/javascript">
function playvideo() {
var videoEl_1 = document.querySelector('#video');
videoEl_1.play();
}
</script>
</body>
</html>