I want to use the aubio module to extract pitch using python 3.5. However, the documentation is difficult to comprehend.
In example I have a numpy array:
import numpy
import math
sample_rate=44100
x=numpy.zeros(44100)
for i in range(44100):
x[i]=math.sin(i/225)
How to use aubio to extract an array containing the pitch of the array?
Here is an example (works python2.x and python3).
Note the changed sinewave generation.