I have a scene which is playing a looping sound:
<a-assets> <audio id="ambience" src="./audio/ambient.mp3" preload="auto"></audio>
<a-entity id="ambience_sfx" sound="src: #ambience; autoplay: true; loop: true; volume: 0.6;"></a-entity>
The sound plays and loops although there is a small gap when the loop happens - I have checked my sound file has no gaps at the start or end and have removed metadata when I exported the .mp3.
How can I get a clean looping sound?