I'd like to extract the pitch from a singing voice. The track in question contains only a single voice and no other sounds.
I wan't to know the loudness and preceived pitch frequency at a given point in time. So something like the following:
0.0sec 400Hz -20dB 0.1sec 401Hz -9dB 0.2sec 403Hz -10dB 0.3sec 403Hz -10dB 0.4sec 404Hz -11dB 0.5sec 406Hz -13dB 0.6sec 410Hz -15dB 0.7sec 411Hz -16dB 0.8sec 409Hz -20dB 0.9sec 407Hz -24dB 1.0sec 402Hz -34dB
How might I achieve such an output? I'm interested in slight changes in frequency as apposed to a specific note value. I have some DSP knowledge and I can program in C++ and python but I'd like to avoid reinventing the wheel if possible.
Thanks,
Barry.