Reputation: 939
I am working on a music application in Python. I am using PyAudiere for low-latency audio playback, but I found that it is not very easy to get working on Mac OSX (I haven't managed to compile it given the instructions, I get the message DeviceFrame.cpp:60: error: call of overloaded ‘wxString(const char*)’ is ambiguous
). Is there another good Python audio framework which works on Mac? I need the ability to adjust pitch and volume dynamically, and low latency; PyPy compatibility would be good, but not essential.
Upvotes: 3
Views: 743
Reputation: 7852
Feel free to use our open-source bindings to OpenAL (MIT-style license). We use them quite extensively on Mac and Windows: http://hg.techgame.net/TG/ext/openAL/
It was created as an internal project, so there is no documentation. It's a fairly simple wrapper over the OpenAL API to make it somewhat object oriented.
Upvotes: 3