I'm trying to create a spectrogram object for audio analysis.
I'm using Snack Library. This library, create the spectrogram as a canvas object but I
should use the spectrogram as a numerical object (every 10 ms I should extract the vector of frequencies).
This is the code of Snack Library:
c = tkSnack.SnackCanvas(root, height=400)
c.pack()
c.create_waveform(0, 0, sound=mysound, height=100, zerolevel=1)
c.create_spectrogram(0, 150, sound=mysound, height=200)
I'm looking for tutorials online but I only found ways to draw the spectrogram.
Thanks a lot!