Skip to main content

useFrequency

General purpose

Via this function you can access the values of the a custom frequency range of your audio

Parameters

start: Integer - The start of the frequency range end: Integer - The end of the frequency range

Return value

Integer array: The values of the custom range frequencies

Usage

const MyVisualizerComponent = () => {
const { useFrequency } = useSoundy();

return (
<>
...your visualization here
</>
)
}