audio-index-to-frequency
v1.0.0
Published
converts an index to Hz frequency for WebAudio
Downloads
13
Maintainers
Readme
audio-index-to-frequency
Convert an index to Hz frequency for WebAudio frequency analysis. Also see audio-frequency-to-index.
const index2freq = require('audio-index-to-frequency')
const sampleRate = audioContext.sampleRate // 44100
const length = analyserNode.frequencyBinCount // 1024
const freq = index2freq(19, sampleRate, length)
//=> 409.130859375
Usage
frequency = indexToFrequency(index, sampleRate, frequencyBinCount)
Converts the index
integer to a frequency
(in Hz) with the given audioContext.sampleRate
and analyserNode.frequencyBinCount
from the WebAudio API.
License
MIT, see LICENSE.md for details.