Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save notepadwebdev/977c1ed32a72d2e7558fb31fbebf2df8 to your computer and use it in GitHub Desktop.
Save notepadwebdev/977c1ed32a72d2e7558fb31fbebf2df8 to your computer and use it in GitHub Desktop.
// Create Analyser
this.analyser = Pizzicato.context.createAnalyser();
this.analyser.fftSize = 1024;
this.bufferLength = this.analyser.frequencyBinCount;
this.dataArray = new Uint8Array(this.bufferLength);
this.LPF.connect(this.analyser);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment