Let's say we have a wav file with some guitar music recorded. The sound is very clean, no extra sounds only guitar itself and possibly metronome ticks.
What would be the best approach to find a timestamp of each note (or a chord) played in Python? I don't need to identify the note itself, only the timestamp when it occurred.
I never did this kind of stuff before so I'm a bit confused. I was reading on Wikipedia about Short-time Fourier transform and it looks kind of promising but I couldn't find any relevant examples. Would really appreciate any help/hints on how to start.
The general problem is called onset detection and there are many methods you can try out. I'll provide a super-naive solution, probably not working for your use case: