Hello,
I have tried the package by sending captured streams of audio from the browser to a socket.io server trying to execute the algorithms to detect pitches and compare them with a table of musical frequencies.
I have tried all 3 of the algorithms but the result is always null.
const a = Pitchfinder.AMDF(); const b = Pitchfinder.YIN(); const c = Pitchfinder.DynamicWavelet(); console.log([a(float32Array), b(float32Array), c(float32Array)]);
I'm also streaming a Float32Array with the size of 1024.
All I receive is :
[null, null, null]
Thank you