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

Safe HaskellNone
LanguageHaskell98

Csound.Typed.Opcode.MixerOpcodes

Synopsis

Documentation

mixerClear :: SE () Source #

Resets all channels of a buss to 0.

 MixerClear 

csound doc: http://csound.com/docs/manual/MixerClear.html

mixerGetLevel :: D -> D -> SE Sig Source #

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://csound.com/docs/manual/MixerGetLevel.html

mixerReceive :: D -> D -> SE Sig Source #

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://csound.com/docs/manual/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://csound.com/docs/manual/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://csound.com/docs/manual/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://csound.com/docs/manual/MixerSetLevel_i.html