Sophie

Sophie

distrib > Mageia > 5 > x86_64 > media > core-release > by-pkgid > b707d9a4ee443103660a75ccb6e51334 > files > 210

csound-doc-5.19.01-10.mga5.noarch.rpm

<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
  <head>
    <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
    <title>MixerGetLevel</title>
    <link rel="stylesheet" type="text/css" href="csound.css" />
    <meta name="generator" content="DocBook XSL Stylesheets V1.76.1" />
    <link rel="home" href="index.html" title="The Canonical Csound Reference Manual" />
    <link rel="up" href="OpcodesTop.html" title="Orchestra Opcodes and Operators" />
    <link rel="prev" href="MixerSetLevel_i.html" title="MixerSetLevel_i" />
    <link rel="next" href="MixerSend.html" title="MixerSend" />
  </head>
  <body>
    <div class="navheader">
      <table width="100%" summary="Navigation header">
        <tr>
          <th colspan="3" align="center">MixerGetLevel</th>
        </tr>
        <tr>
          <td width="20%" align="left"><a accesskey="p" href="MixerSetLevel_i.html">Prev</a> </td>
          <th width="60%" align="center">Orchestra Opcodes and Operators</th>
          <td width="20%" align="right"> <a accesskey="n" href="MixerSend.html">Next</a></td>
        </tr>
      </table>
      <hr />
    </div>
    <div class="refentry" title="MixerGetLevel">
      <a id="MixerGetLevel"></a>
      <div class="titlepage"></div>
      <a id="IndexMixerGetLevel" class="indexterm"></a>
      <div class="refnamediv">
        <h2>
          <span class="refentrytitle">MixerGetLevel</span>
        </h2>
        <p>MixerGetLevel — 
      Gets the level of a send to a buss.
           </p>
      </div>
      <div class="refsect1" title="Syntax">
        <a id="idp31856656"></a>
        <h2>Syntax</h2>
        <pre class="synopsis">kgain <span class="command"><strong>MixerGetLevel</strong></span> isend, ibuss</pre>
      </div>
      <div class="refsect1" title="Description">
        <a id="idp31857728"></a>
        <h2>Description</h2>
        <p>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 <a class="link" href="MixerSend.html" title="MixerSend"><em class="citetitle">MixerSend</em></a> opcode. 
    </p>
      </div>
      <div class="refsect1" title="Initialization">
        <a id="idp31900488"></a>
        <h2>Initialization</h2>
        <p><span class="emphasis"><em>isend</em></span> -- The number of the send, for example the number of the instrument sending the signal.</p>
        <p><span class="emphasis"><em>ibuss</em></span> -- The number of the buss, for example the number of the instrument receiving the signal.</p>
      </div>
      <div class="refsect1" title="Performance">
        <a id="idp31901736"></a>
        <h2>Performance</h2>
        <p><span class="emphasis"><em>kgain</em></span> -- The level (any real number) at which the signal from the send will be mixed onto the buss.</p>
        <p>
This opcode reports the level set by <a class="link" href="MixerSetLevel.html" title="MixerSetLevel"><em class="citetitle">MixerSetLevel</em></a> for a send and buss pair.
</p>
        <p>
Use of the mixer requires that instruments setting gains have smaller numbers than instruments sending signals, 
and that instruments sending signals have smaller numbers than instruments receiving those signals. 
However, an instrument may have any number of sends or receives. After the final signal is received, 
<a class="link" href="MixerClear.html" title="MixerClear"><em class="citetitle">MixerClear</em></a> must be invoked to reset the busses to 0 before the next kperiod.
</p>
      </div>
      <div class="refsect1" title="Examples">
        <a id="idp31904392"></a>
        <h2>Examples</h2>
        <p>
      Here is an example of the MixerGetLevel opcode. It uses the file <a class="ulink" href="examples/Mixer.csd" target="_top"><em class="citetitle">Mixer.csd</em></a>
      </p>
        <div class="example">
          <a id="idp31905352"></a>
          <p class="title">
            <strong>Example 483. Example of the MixerGetLevel opcode.</strong>
          </p>
          <div class="example-contents">
            <pre class="programlisting">
<span class="csdtag">&lt;CsoundSynthesizer&gt;</span>
<span class="csdtag">&lt;CsOptions&gt;</span>
<span class="comment">; Select audio/midi flags here according to platform</span>
<span class="comment">; Audio out   Audio in</span>
-odac       <span class="comment">;   -iadc    ;;;RT audio out</span>
<span class="comment">; For Non-realtime ouput leave only the line below:</span>
<span class="comment">; -o Mixer.wav -W ;;; for file output any platform</span>
<span class="csdtag">&lt;/CsOptions&gt;</span>
<span class="csdtag">&lt;CsInstruments&gt;</span>

<span class="ohdr">sr</span> <span class="op">=</span> 44100
<span class="ohdr">ksmps</span> <span class="op">=</span>	32
<span class="ohdr">nchnls</span> <span class="op">=</span> 2
<span class="ohdr">0dbfs</span>  <span class="op">=</span> 1

<span class="oblock">instr</span> 1

katt	<span class="opc">expon</span> 0.01, p3, 1		<span class="comment">;create an attack</span>
aout	<span class="opc">poscil</span> .7, 440,1
	<span class="opc">MixerSetLevel</span>	1, 3, katt	<span class="comment">;impose attack on the gain level</span>
	<span class="opc">MixerSend</span> aout, 1, 3, 0		<span class="comment">;send to channel 0</span>
<span class="oblock">endin</span>

<span class="oblock">instr</span> 2

aout	<span class="opc">vco2</span> .5, 110			<span class="comment">;saw wave</span>
	<span class="opc">MixerSetLevel</span> 2, 3, .25		<span class="comment">;set level to .25 of vco2</span>
	<span class="opc">MixerSend</span> aout, 2, 3, 1		<span class="comment">;send to channel 1</span>
<span class="oblock">endin</span>

<span class="oblock">instr</span> 3	<span class="comment">;mix instr.1 and 2 with reverb</span>
	
kgain1	<span class="opc">MixerGetLevel</span>	1,3		<span class="comment">;get level form buss 3</span>
kgain2	<span class="opc">MixerGetLevel</span>	2,3		<span class="comment">;get level form buss 3</span>
a1	<span class="opc">MixerReceive</span>	3,0		<span class="comment">;receive channel 0</span>
a2	<span class="opc">MixerReceive</span>	3,1		<span class="comment">;receive channel 1</span>
aout	<span class="op">=</span> a1<span class="op">*</span>kgain1<span class="op">+</span>a2<span class="op">*</span>kgain2		<span class="comment">;mix them</span>
aoutL, aoutR <span class="opc">reverbsc</span> aout, aout,  0.85, 12000	<span class="comment">;add a nicereverb</span>
	<span class="opc">outs</span>  aoutL, aoutR
	<span class="opc">MixerClear</span>
<span class="oblock">endin</span>

<span class="csdtag">&lt;/CsInstruments&gt;</span>
<span class="csdtag">&lt;CsScore&gt;</span>
<span class="stamnt">f</span>1 0 4096 10 1

<span class="stamnt">i</span>1 0 2
<span class="stamnt">i</span>2 0 2
<span class="stamnt">i</span>3 0 8	<span class="comment">;reverb stays on for 8 sec.</span>

<span class="stamnt">e</span>
<span class="csdtag">&lt;/CsScore&gt;</span>
<span class="csdtag">&lt;/CsoundSynthesizer&gt;</span>
</pre>
          </div>
        </div>
        <p><br class="example-break" />
    </p>
      </div>
      <div class="refsect1" title="Credits">
        <a id="idp31906368"></a>
        <h2>Credits</h2>
        <p>Michael Gogins (gogins at pipeline dot com).</p>
      </div>
    </div>
    <div class="navfooter">
      <hr />
      <table width="100%" summary="Navigation footer">
        <tr>
          <td width="40%" align="left"><a accesskey="p" href="MixerSetLevel_i.html">Prev</a> </td>
          <td width="20%" align="center">
            <a accesskey="u" href="OpcodesTop.html">Up</a>
          </td>
          <td width="40%" align="right"> <a accesskey="n" href="MixerSend.html">Next</a></td>
        </tr>
        <tr>
          <td width="40%" align="left" valign="top">MixerSetLevel_i </td>
          <td width="20%" align="center">
            <a accesskey="h" href="index.html">Home</a>
          </td>
          <td width="40%" align="right" valign="top"> MixerSend</td>
        </tr>
      </table>
    </div>
  </body>
</html>