vote up 1 vote down star

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?

flag

71% accept rate

4 Answers

vote up 3 vote down check
import struct

def getData():
    data = []
    for i in range( 0, 1024 ):
        data.append( 0.25 * math.sin( math.radians( i ) ) )
    return struct.pack('f'*len(data), *data)
link|flag
vote up 2 vote down

Actually, the easiest way is to use the struct module. It is designed to convert from python objects to C-like "native" objects.

link|flag
vote up 0 vote down

Essentially, you need to convert a list into a string, which is really quite easy:

data = getData()
data_string = "".join(data)
stream.write(data_string)

HTH

link|flag
Since getData() returns a sequence of floats I get the following error message: TypeError: sequence item 0: expected string, float found. Nonetheless I want to get a buffer... in C I would certainly use a pointer, not concatenate the float values.. – okoman Aug 4 at 18:50
vote up 0 vote down

Consider perhaps instead:

d = [0.25 * math.sin(math.radians(i)) for i in range(0, 1024)]

Perhaps you have to use a package like pickle to serialize the data first.

import pickle
f1 = open("test.dat", "wb")
pickle.dump(d, f1)
f1.close()

Then load it back in:

f2 = open("test.dat", "rb")
d2 = pickle.Unpickler(f2).load()
f2.close()


d2 == d

Returns True

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.