diff --git a/package.json b/package.json index d3f49ce1ccb53465325aa9623f59b7acf137ace9..293a1ad4c183e2ded74b68ec7dc3e27a1779458e 100644 --- a/package.json +++ b/package.json @@ -14,7 +14,7 @@ "dependencies": { "aframe-input-mapping-component": "https://github.com/fernandojsg/aframe-input-mapping-component", "aframe-teleport-controls": "https://github.com/netpro2k/aframe-teleport-controls#feature/teleport-origin", - "naf-janus-adapter": "^0.1.3", + "naf-janus-adapter": "^0.1.4", "networked-aframe": "https://github.com/netpro2k/networked-aframe#feature/register-adapter", "pleasejs": "^0.4.2", "query-string": "^5.0.1" diff --git a/src/components/audio-feedback.js b/src/components/audio-feedback.js index ee4b802be1ae2e687c2ee9e3b7869a792bac5faa..2b24abd946d7d8fe2ec35c018c4262f64fd00229 100644 --- a/src/components/audio-feedback.js +++ b/src/components/audio-feedback.js @@ -22,12 +22,15 @@ AFRAME.registerComponent("networked-audio-analyser", { return NAF.connection.adapter.getMediaStream(ownerId); }) .then(stream => { + if (!stream) { + return; + } + const ctx = THREE.AudioContext.getContext(); const source = ctx.createMediaStreamSource(stream); this.analyser = ctx.createAnalyser(); this.levels = new Uint8Array(this.analyser.frequencyBinCount); source.connect(this.analyser); - console.log(source, this.analyser); }); }, diff --git a/yarn.lock b/yarn.lock index 17ec74b58d73bc8769ec88977293962769fd8285..bf1721606038eed8522bafbdd999efa9871af59c 100644 --- a/yarn.lock +++ b/yarn.lock @@ -2732,9 +2732,9 @@ multicast-dns@^6.0.1: dns-packet "^1.0.1" thunky "^0.1.0" -naf-janus-adapter@^0.1.3: - version "0.1.3" - resolved "https://registry.yarnpkg.com/naf-janus-adapter/-/naf-janus-adapter-0.1.3.tgz#575979e964a5f8ef712f9746e5b59dfd989bb31f" +naf-janus-adapter@^0.1.4: + version "0.1.4" + resolved "https://registry.yarnpkg.com/naf-janus-adapter/-/naf-janus-adapter-0.1.4.tgz#3e6e2022e8f6d5b7f6221fcec8b36a1e1e13be44" dependencies: minijanus "^0.1.4"