You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
// Outputs what is essentially a bar graph of how much each frequency is included in the current audio signal.
17
+
getFrequencyData(storageArray){
18
+
if(!storageArray){
19
+
storageArray=newFloat32Array(this.analyserNode.frequencyBinCount);// This will allow people to pass the same array to save on space and copying, but it's not necessary if they just want to check once.
// Outputs what is essentially a snapshot of the waveform of the audio signal at this instant.
25
+
getTimeDomainData(storageArray){
26
+
if(!storageArray){
27
+
storageArray=newFloat32Array(this.analyserNode.frequencyBinCount);// This will allow people to pass the same array to save on space and copying, but it's not necessary if they just want to check once.
0 commit comments