aframe 内の videosphere の src 属性を変更しようとしています
<a-assets>
<video id="vid" src="videos/vid1.mp4" webkit-playsinline loop></video>
</a-assets>
<a-videosphere src="#vid" rotation="0 180 0"></a-videosphere>
現在、次を使用して #vid アセットの src を変更しています。
document.querySelector("#vid").setAttribute("src", "videos/vid2.mp4");
document.quertSelector("a-videosphere").play();
ただし、ビデオはフリーズしたままで、再生機能は未定義を返します
助けてくれてありがとう:)