Forgot your password?
typodupeerror

Comment Re:Music Apps? (Score 1) 260

I'm writing a midi-based realtime interactive music extension. I'm using boost::python (http://www.boost.org) to wrap C++ classes into python meta-classes, so there are no python shadow classes. My code works and is almost ready for release (under the LGPL). I'm just sorting out some inheritance problems in the boost::python library. It currently uses the ALSA Sequencer 0.5, but it will be easily portable to other OSes or file-descriptor based Midi. It is called "Burt" after Warren Burt (the electro-acoustic composer). It is not really designed to write commercial type progs with, but programs that enhance musical instruments in some way, or programs you can jam with. If people are desparate I can send a prototype version (very outdated, but very usefull too) written entirely in python. I have found python to be very resposive for realtime work, even without FIFO priority or locking the interpreter into physical memory. I have not had any luck with the AudioPy extension mentioned above. It wont compile.

Slashdot Top Deals

A bug in the code is worth two in the documentation.

Working...