Peter Hayes
Peter Hayes
I didn't specifically set any thresholds for guitar or any other instrument. However, it's totally possible that the algorithms break down at low enough frequencies. Can you verify that the...
If you want to help, one thing you could do would be to make some more example data from real-world sources (as opposed to digital tones) that I could add...
Yeah, something that reproduces your problem
I don't, sorry :/ I wrote this module awhile ago and haven't done any significant work on it in some time.
Hi, thanks for reaching out. It's been awhile since I wrote that article, so I'm still paging some context back into my head. > How do we calculate from just...
Sorry for the delayed response. In your suggested algorithm, it looks like you're (sometimes) making two requests to Redis: one to read, and (sometimes) one to write. In step 1,...
Hi Maritslamers! Sorry if this a dumb question, but what's the point of YIN having a memory? If I've identified the pitch of one sample, and now want to identify...
I have a guess here. Digital audio always has a sampling rate. This refers to the number of times per second that the amplitude of the sound wave is recorded....
As a solution, try initializing your detector with a `sampleRate` parameter: ```ts const detectPitch = Pitchfinder.AMDF({sampleRate: 48000}); ```
It might be useful to update the examples to use that code to set the sampling rate...