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
const length = analyserNode.frequencyBinCount
const freq = index2freq(19, sampleRate, length)
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.