Results 1 - 10 of 10

AnalyserNode

The AnalyserNode interface represents a node able to provide real-time frequency and time-domain analysis information. It is an AudioNode that passes the audio stream unchanged from the input to the output, but allows you to take the generated data, process it, and create audio visualizations.
AnalyserNode API Interface Reference Web Audio API

AnalyserNode.fftSize

The fftSize property of the AnalyserNode interface is an unsigned long value representing the size of the FFT (Fast Fourier Transform) to be used to determine the frequency domain.
AnalyserNode API fftSize Property Reference Référence Web Audio API

AnalyserNode.frequencyBinCount

The frequencyBinCount property of the AnalyserNode interface is an unsigned long value half that of the FFT size. This generally equates to the number of data values you will have to play with for the visualization.
AnalyserNode API frequencyBinCount Property Reference Référence Web Audio API

AnalyserNode.maxDecibels

The maxDecibels property of the AnalyserNode interface Is a double value representing the maximum power value in the scaling range for the FFT analysis data, for conversion to unsigned byte/float values — basically, this specifies the maximum value for the range of results when using getFloatFrequencyData() or getByteFrequencyData().
AnalyserNode API maxDecibels Property Reference Référence Web Audio API

AnalyserNode.minDecibels

The minDecibels property of the AnalyserNode interface Is a double value representing the minimum power value in the scaling range for the FFT analysis data, for conversion to unsigned byte/float values — basically, this specifies the minimum value for the range of results when using getFloatFrequencyData() or getByteFrequencyData().
AnalyserNode API minDecibels Property Reference Référence Web Audio API

AnalyserNode.smoothingTimeConstant

The smoothingTimeConstant property of the AnalyserNode interface is a double value representing the averaging constant with the last analysis frame. It's basically an average
between the current buffer and the last buffer the AnalyserNode processed, and results in a much smoother set of value changes over time.
AnalyserNode API Property Reference Référence smoothingTimeConstant Web Audio API