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

Safe HaskellNone

Csound.Typed.Opcode.MixerOpcodes

Synopsis

Documentation

mixerClear :: SE ()Source

Resets all channels of a buss to 0.

  MixerClear  

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

mixerGetLevel :: D -> D -> SE SigSource

Gets the level of a send to a buss.

Gets the level at which signals from the send are being added to the buss. The actual sending of the signal to the buss is performed by the MixerSend opcode.

 kgain  MixerGetLevel  isend, ibuss

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

mixerReceive :: D -> D -> SE SigSource

Receives an arate signal from a channel of a buss.

Receives an arate signal that has been mixed onto a channel of a buss.

 asignal  MixerReceive  ibuss, ichannel

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

mixerSend :: Sig -> D -> D -> D -> SE ()Source

Mixes an arate signal into a channel of a buss.

  MixerSend  asignal, isend, ibuss, ichannel

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

mixerSetLevel :: D -> D -> Sig -> SE ()Source

Sets the level of a send to a buss.

Sets the level at which signals from the send are added to the buss. The actual sending of the signal to the buss is performed by the MixerSend opcode.

  MixerSetLevel  isend, ibuss, kgain

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

mixerSetLevel_i :: D -> D -> D -> SE ()Source

Sets the level of a send to a buss.

Sets the level at which signals from the send are added to the buss. This opcode, because all parameters are irate, may be used in the orchestra header. The actual sending of the signal to the buss is performed by the MixerSend opcode.

  MixerSetLevel_i  isend, ibuss, igain

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