third_party_alsa-lib/test
1999-11-06 23:47:07 +00:00
..
aconnect.c Takashi Iwai <iwai@ww.uni-erlangen.de> 1999-09-17 16:17:21 +00:00
aseqnet.c Takashi Iwai <iwai@ww.uni-erlangen.de> 1999-09-17 16:17:21 +00:00
control.c Updates for the control interface... 1999-06-22 13:18:24 +00:00
latency.c Merged pcm-v2 branch into main CVS tree. 1999-11-06 23:47:07 +00:00
loopback.c Fixes for new types... 1999-06-03 21:41:29 +00:00
Makefile.am Merged pcm-v2 branch into main CVS tree. 1999-11-06 23:47:07 +00:00
midifile.3 Added playmidi1... 1999-01-24 12:00:39 +00:00
midifile.c Added playmidi1... 1999-01-24 12:00:39 +00:00
midifile.h Added playmidi1... 1999-01-24 12:00:39 +00:00
mixer.c Fixes for new types... 1999-06-03 21:41:29 +00:00
pause.c Fixes for new types... 1999-06-03 21:41:29 +00:00
pcm.c PCM changes (record->capture)... 1999-06-12 19:23:10 +00:00
pcmtest.c Merged pcm-v2 branch into main CVS tree. 1999-11-06 23:47:07 +00:00
playmidi1.c Takashi Iwai <iwai@ww.uni-erlangen.de> 1999-09-17 16:17:21 +00:00
README.aconnect Takashi Iwai <iwai@ww.uni-erlangen.de> Mon, 30 Aug 1999 14:56:38 +0200 1999-09-01 22:19:11 +00:00
README.aseqnet Added aseqnet... 1999-08-23 19:39:14 +00:00
seq-decoder.c Small updates to follow new sequencer changes.. 1999-08-26 12:01:18 +00:00
seq-sender.c Small updates to follow new sequencer changes.. 1999-08-26 12:01:18 +00:00
seq.c Small updates to follow new sequencer changes.. 1999-08-26 12:01:18 +00:00
switches.c PCM changes (record->capture)... 1999-06-12 19:23:10 +00:00
timer.c Fixes for new types... 1999-06-03 21:41:29 +00:00

================================================================
	ALSA sequencer connectors
		ver.0.1
	Copyright (C) 1999 Takashi Iwai
================================================================

* ASEQNET

aseqnet is a sequencer client which sends/receives events over
network.  Suppose two hosts (hostA and hostB) connected by network.
You need to run ALSA system on both hosts.  Then, start aseqnet as a
server on hostA:

	hostA% aseqnet
	sequencer opened: 128:0

A user client 128 with port 0 was opened. (The client number may
vary.)  At next, start client on hostB.  The argument is the hostname
where server is running.

	hostB% aseqnet hostA
	sequencer opened: 132:0

Now events sent to hostA:128:0 is transferred to hostB:132:0, and vice
versa.

You can connect these ports arbitrary to other sequencer ports.
For example, connect hostB:132:0 to a MIDI output device 65:0.  The
aconnect utility can be used for this:

	hostB% aconnect 132:0 65:0

Events to hostA:128:0 will be delivered indirectly to hostB:65:0.
You'll hear MIDI sounds as following:

	hostA% pmidi -p 128:0 foo.mid

The multiple clients may exist simultaneously.  If hostC is connected
as a client to hostA, events from from hostA are sent to all connected
network clients, hostB and hostC.  However, only one connection is
allowed from a client to a server.

To disconnect network, stop all clients before server by ctrl-C or
sending signal to them.  The server will automatically quit.

The available options are:

  -p port : specify the TCP port number or TCP service name.
            Default value is 9009 (I don't know it's allowed..)
  -s addr : explicit read-subscription to the given address
            (client:addr).
  -d addr : explicit write-subscription to the given address.