ayyi/developers

distributed development

The starting premise for the Seismix project is that GPL'd audio software cannot succeed unless the modularity of its architecture is increased. There are good technical and usability reasons for this, but the primary reason is to support a distributed developement model. With developers working in small teams and having diverse goals and opinions, the monolithic applications copied from the proprietory world have so far failed to achieve critical mass.

Seismix uses a variety of independant processes performing specialised functions:

Now that the basics of the system are working, the next step is to add more advanced functionality, to clean up the api, and to improve support for other languages.

communications

Clients communicate via the Core using fifo based messages. Libdae provides functions for this.

Data is shared between clients using SHM. The Core creates SHM segments at the request of a client. Only this client writes to the segment, all others have read-only access.

Currently, all clients must be on the same machine.

engines

Currently, two "engines" are supported. It has its own engine, but recent development has concentrated on using libardour as the engine. The package ardourd uses a slightly modified version of libardour that adds the ability to communicate with the dae-core.


how do i make my application into a seismix client?
api