csound-expression-opcodes-0.0.3.2: opcodes for the library csound-expression

Safe HaskellNone
LanguageHaskell98

Csound.Typed.Opcode.RemoteOpcodes

Synopsis

Documentation

insglobal :: D -> D -> SE () Source #

An opcode which can be used to implement a remote orchestra. This opcode will send note events from a source machine to many destinations.

With the insremot and insglobal opcodes you are able to perform instruments on remote machines and control them from a master machine. The remote opcodes are implemented using the master/client model. All the machines involved contain the same orchestra but only the master machine contains the information of the score. During the performance the master machine sends the note events to the clients. The insglobal opcode sends the events to all the machines involved in the remote concert. These machines are determined by the insremot definitions made above the insglobal command. To send events to only one machine use insremot.

 insglobal  isource, instrnum [,instrnum...] 

csound doc: http://www.csounds.com/manual/html/insglobal.html

insremot :: D -> D -> D -> SE () Source #

An opcode which can be used to implement a remote orchestra. This opcode will send note events from a source machine to one destination.

With the insremot and insglobal opcodes you are able to perform instruments on remote machines and control them from a master machine. The remote opcodes are implemented using the master/client model. All the machines involved contain the same orchestra but only the master machine contains the information of the score. During the performance the master machine sends the note events to the clients. The insremot opcode will send events from a source machine to one destination if you want to send events to many destinations (broadcast) use the insglobal opcode instead. These two opcodes can be used in combination.

 insremot  idestination, isource, instrnum [,instrnum...] 

csound doc: http://www.csounds.com/manual/html/insremot.html

midglobal :: D -> D -> SE () Source #

An opcode which can be used to implement a remote midi orchestra. This opcode will broadcast the midi events to all the machines involved in the remote concert.

With the midremot and midglobal opcodes you are able to perform instruments on remote machines and control them from a master machine. The remote opcodes are implemented using the master/client model. All the machines involved contain the same orchestra but only the master machine contains the information of the midi score. During the performance the master machine sends the midi events to the clients. The midglobal opcode sends the events to all the machines involved in the remote concert. These machines are determined by the midremot definitions made above the midglobal command. To send events to only one machine use midremot.

 midglobal  isource, instrnum [,instrnum...] 

csound doc: http://www.csounds.com/manual/html/midglobal.html

midremot :: D -> D -> D -> SE () Source #

An opcode which can be used to implement a remote midi orchestra. This opcode will send midi events from a source machine to one destination.

With the midremot and midglobal opcodes you are able to perform instruments on remote machines and control them from a master machine. The remote opcodes are implemented using the master/client model. All the machines involved contain the same orchestra but only the master machine contains the information of the midi score. During the performance the master machine sends the midi events to the clients. The midremot opcode will send events from a source machine to one destination if you want to send events to many destinations (broadcast) use the midglobal opcode instead. These two opcodes can be used in combination.

 midremot  idestination, isource, instrnum [,instrnum...] 

csound doc: http://www.csounds.com/manual/html/midremot.html