@audio/spectral-spread
v1.1.4
Published
Spectral spread — magnitude-weighted standard deviation around the centroid (Hz). Peeters 2004 §6.1.
Readme
@audio/spectral-spread
Spectral spread — magnitude-weighted standard deviation around the centroid (Hz). Peeters 2004 §6.1.
npm install @audio/spectral-spread
import { fft } from 'fourier-transform'
import spread from '@audio/spectral-spread'
let win = frame.map((x, i) => x * (0.5 - 0.5 * Math.cos(2 * Math.PI * i / (frame.length - 1))))
let [re, im] = fft(win)
let mag = re.map((r, k) => Math.hypot(r, im[k]))
let hz = spread(mag, { fs: 44100 })Options: - fs — sample rate (default 44100, Hz) · n — FFT size the spectrum was taken at (default 2 * (mag.length - 1), inferred from mag.length)
Also exported as an audio.js stat manifest (./audio — mono-fold, 2048/512 hann frames, averaged over the take).
Part of @audio/spectral.
