Skip to content
Snippets Groups Projects
Unverified Commit 2744a825 authored by Marshall Quander's avatar Marshall Quander Committed by GitHub
Browse files

Merge pull request #493 from mozilla/audio-feedback-fixes

Audio feedback fixes
parents eb24ce65 00abae2a
No related branches found
No related tags found
No related merge requests found
...@@ -8,11 +8,12 @@ AFRAME.registerComponent("networked-audio-analyser", { ...@@ -8,11 +8,12 @@ AFRAME.registerComponent("networked-audio-analyser", {
this.volume = 0; this.volume = 0;
this.prevVolume = 0; this.prevVolume = 0;
this.smoothing = 0.3; this.smoothing = 0.3;
this.threshold = 0.01;
this.el.addEventListener("sound-source-set", event => { this.el.addEventListener("sound-source-set", event => {
const ctx = THREE.AudioContext.getContext(); const ctx = THREE.AudioContext.getContext();
this.analyser = ctx.createAnalyser(); this.analyser = ctx.createAnalyser();
this.analyser.fftSize = 32; this.analyser.fftSize = 32;
this.levels = new Float32Array(this.analyser.frequencyBinCount); this.levels = new Uint8Array(this.analyser.frequencyBinCount);
event.detail.soundSource.connect(this.analyser); event.detail.soundSource.connect(this.analyser);
}); });
}, },
...@@ -20,14 +21,19 @@ AFRAME.registerComponent("networked-audio-analyser", { ...@@ -20,14 +21,19 @@ AFRAME.registerComponent("networked-audio-analyser", {
tick: function() { tick: function() {
if (!this.analyser) return; if (!this.analyser) return;
this.analyser.getFloatTimeDomainData(this.levels); // take care with compatibility, e.g. safari doesn't support getFloatTimeDomainData
this.analyser.getByteTimeDomainData(this.levels);
let sum = 0; let sum = 0;
for (let i = 0; i < this.levels.length; i++) { for (let i = 0; i < this.levels.length; i++) {
const amplitude = this.levels[i]; const amplitude = (this.levels[i] - 128) / 128;
sum += amplitude * amplitude; sum += amplitude * amplitude;
} }
this.volume = this.smoothing * Math.sqrt(sum / this.levels.length) + (1 - this.smoothing) * this.prevVolume; let currVolume = Math.sqrt(sum / this.levels.length);
if (currVolume < this.threshold) {
currVolume = 0;
}
this.volume = this.smoothing * currVolume + (1 - this.smoothing) * this.prevVolume;
this.prevVolume = this.volume; this.prevVolume = this.volume;
} }
}); });
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment