I am playing around with PortAudio and Python.
data = getData()
stream.write( data )
I want my stream to play sound data, that is represented in Float32 values. Therefore I use the following function:
def getData():
data = []
for i in range( 0, 1024 ):
data.append( 0.25 * math.sin( math.radians( i ) ) )
return data
Unfortunately that doesn't work because stream.write
wants a buffer object to be passed in:
TypeError: argument 2 must be string or read-only buffer, not list
So my question is: How can I convert my list of floats in to a buffer object?