Author | Description | Date |
---|---|---|
Abram Hindle | Updating the User Manual | Tue Dec 17 21:44:54 PST 2002 |
Abram Hindle | Working on the User Manual | Mon Dec 2 15:10:52 PST 2002 |
Abram Hindle | Started the User Manual | Tuesday Nov 26 10:01:07 PST 2002 |
AUSS is a stream based sound routing system. AUSS will provides an easy to use API, who's purpose is to hasten the development of audio applications. AUSS enables the use of pipes and sockets to move digital audio between processes and computers. AUSS is meant to enable interprocess, intercomputer patching of audio. AUSS enables computers and processes to be connected.
The philosophy behind AUSS is keep it easy, keep is simple. Audio is transmitted raw and often headerless. It is expected that you know what your system is using. There are headers but they are XML (so they are easily extendable and readable).
AUSS is also meant to be open, extendable and free. AUSS is GPL'd while the libs are LGPL. You are welcome to make AUSS software with any license or any language. AUSS is meant to be so simple that it will be trivial to communicate to with in most languages.
To compile and make AUSS type:
% make
Once AUSS is compiled then you can run the various programs found in:
For the connector and the configurator you can also "make docs" to regenerate the documentation if you have both javadoc and doxygen installed.
% soundProgram | Muxer host1 port1 host2 port2 ...
% Demuxer port1 | soundCardPlayer
% stereoSoundProgram | PipeSplitter 2>e; /dev/null | soundCardPlayer
% ConnectorThe default port is 6780, the port you provide is the first of 4 ports e.g.% Connector 6666
Waiting for connection on port 6780 Waiting for connection on port 6781 Waiting for connection on port 6782 Waiting for connection on port 6783
It is up to the Configurator to connect the connections of the Connector before any audio will be moved.
The Connector can be shutdown by commands from the Configurator
% RunConfigurator% RunConfigurator localhost 6783
% soundSource | Muxer ...
% soundSource | Muxer localhost 6780
% DeMuxer
% DeMuxer 6780 | soundoutput
% Sink
% Sink 6780 | soundoutput
% PipeSplitter
% soundin | PipeSplitter > /dev/null 2| soundout
% mpg123 -s ~/we_didnt_start_the_fire.mp3 | ./Muxer localhost 6780
% nc localhost 6781 | ecasound -i stdin
% perl -e 'for(;;){print pack("s",rand(65000));}' | Muxer localhost 6780
% Demuxer 6787 | csound -i -o devaudio file.orc file.sco