I figured out what both me and @cat were doing wrong here…
instead of
this.positionalAudio.setMediaElementSource(this.audioElement);
we need to use
this.positionalAudio.setMediaStreamSource(this.audioElement.srcObject);
to make it work in chrome…
1 Like