为什么在aframe中的视频无法在移动设备上运行

问题描述 投票:0回答:1

我测试了我的web-VR应用程序(我使用了Aframe)。在桌面上,一切都很好。但在我的手机(Android操作系统)视频不播放。有什么建议?

链接到app:https://mateuszlesko.github.io/ElblagAFrame/video.html

<a-assets>
                    <video id="penguin-sledding" autoplay='False' loop="false" material.repeat='None' src="Elblag1945.mp4">
                  </a-assets>

                  <!-- Using the asset management system. -->
<a-video src="#penguin-sledding" width="26" height="15" position="0 0 -20"></a-video>
javascript html html5 aframe webvr
1个回答
1
投票

移动浏览器限制视频自动播放。视频播放必须由用户手势触发。更多信息在A-Frame FAQ。还要确保设备/浏览器/操作系统版本中的video format and codecs are supported

© www.soinside.com 2019 - 2024. All rights reserved.