I'm trying to build an aFrame project and attach a 360 video in this project. The problem I faced is that the 360 videos worked on Google Chrome in my desktop. But it is not working in my Android phone either Chrome nor Firefox.
Here is the source code
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>360 Videoss</title>
<meta name="description" content="360 Video — A-Frame">
<script src="aframe.js"></script>
<script src="aframe.min.js"></script>
</head>
<body>
<a-scene>
<a-assets>
<video id="video" src="vid.mp4"></video>
</a-assets>
<a-videosphere src="#video" rotation="0 180 0" loop webkit-playsinline></a-videosphere>
</a-scene>
</body>
</html>
Thank You