You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
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
The text was updated successfully, but these errors were encountered:
hamza-eljaouhari
changed the title
Which format and size does the Float32Array has to have for good detecetion;
Which format and size does the Float32Array has to have for good detecetion ?
Feb 24, 2021
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
The text was updated successfully, but these errors were encountered: