Sophie

Sophie

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

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>mincer</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="minaccum.html" title="minaccum" />
    <link rel="next" href="mintab.html" title="mintab" />
  </head>
  <body>
    <div class="navheader">
      <table width="100%" summary="Navigation header">
        <tr>
          <th colspan="3" align="center">mincer</th>
        </tr>
        <tr>
          <td width="20%" align="left"><a accesskey="p" href="minaccum.html">Prev</a> </td>
          <th width="60%" align="center">Orchestra Opcodes and Operators</th>
          <td width="20%" align="right"> <a accesskey="n" href="mintab.html">Next</a></td>
        </tr>
      </table>
      <hr />
    </div>
    <div class="refentry" title="mincer">
      <a id="mincer"></a>
      <div class="titlepage"></div>
      <a id="IndexMincer" class="indexterm"></a>
      <div class="refnamediv">
        <h2>
          <span class="refentrytitle">mincer</span>
        </h2>
        <p>mincer — 
Phase-locked vocoder processing.
          </p>
      </div>
      <div class="refsect1" title="Description">
        <a id="idp31709432"></a>
        <h2>Description</h2>
        <p>
<span class="emphasis"><em>mincer</em></span> implements phase-locked vocoder processing using function tables
containing sampled-sound sources, with <a class="link" href="GEN01.html" title="GEN01"><em class="citetitle">GEN01</em></a>, and
<span class="emphasis"><em>mincer</em></span> will accept deferred allocation tables.
  </p>
        <p>
This opcode allows for time and frequency-independent scaling. Time is controlled by a time index (in seconds)
to the function table position and can be moved forward and backward at any chosen speed, as well as stopped at a 
given position ("frozen"). The quality of the effect is generally improved with phase locking switched on. 
  </p>
        <p>
<span class="emphasis"><em>mincer</em></span> will also scale pitch, independently of frequency, using a transposition factor (k-rate).
  </p>
      </div>
      <div class="refsect1" title="Syntax">
        <a id="idp31698032"></a>
        <h2>Syntax</h2>
        <pre class="synopsis">asig <span class="command"><strong>mincer</strong></span> atimpt, kamp, kpitch, ktab, klock[,ifftsize,idecim]
      </pre>
      </div>
      <div class="refsect1" title="Initialization">
        <a id="idp31748640"></a>
        <h2>Initialization</h2>
        <p>
      <span class="emphasis"><em>ifftsize</em></span> -- FFT size (power-of-two), defaults to 2048.
    </p>
        <p>
      <span class="emphasis"><em>idecim</em></span> -- decimation, defaults to 4 (meaning hopsize = fftsize/4)
    </p>
      </div>
      <div class="refsect1" title="Performance">
        <a id="idp31750136"></a>
        <h2>Performance</h2>
        <p>
      <span class="emphasis"><em>atimpt</em></span> -- time position of current audio sample in secs. Table reading wraps around the ends of the function table. 
    </p>
        <p>
      <span class="emphasis"><em>kamp</em></span> -- amplitude scaling
    </p>
        <p>
      <span class="emphasis"><em>kpitch</em></span> -- grain pitch scaling (1=normal pitch, &lt; 1 lower, &gt; 1 higher; negative, backwards)
    </p>
        <p>
      <span class="emphasis"><em>klock</em></span> -- 0 or 1, to switch phase-locking on/off
    </p>
        <p>
      <span class="emphasis"><em>ktab</em></span> -- source signal function table. Deferred-allocation tables (see
      <a class="link" href="GEN01.html" title="GEN01"><em class="citetitle">GEN01</em></a>) are accepted, but the opcode
      expects a mono source. Tables can be switched at k-rate.
    </p>
      </div>
      <div class="refsect1" title="Examples">
        <a id="idp31753984"></a>
        <h2>Examples</h2>
        <p>
      Here is an example of the mincer opcode. It uses the file <a class="ulink" href="examples/mincer.csd" target="_top"><em class="citetitle">mincer.csd</em></a>
      </p>
        <div class="example">
          <a id="idp31754936"></a>
          <p class="title">
            <strong>Example 479. Example of the mincer 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>
-odac   <span class="comment">;;;realtime audio out</span>
<span class="comment">;-iadc    ;;;uncomment -iadc if realtime audio input is needed too</span>
<span class="comment">; For Non-realtime ouput leave only the line below:</span>
<span class="comment">; -o mincer.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

idur  <span class="op">=</span> p3
ilock <span class="op">=</span> p4
ipitch <span class="op">=</span> 1
itimescale <span class="op">=</span> 0.5
iamp  <span class="op">=</span> 0.8

atime <span class="opc">line</span>   0,idur,idur<span class="op">*</span>itimescale
asig  <span class="opc">mincer</span> atime, iamp, ipitch, 1, ilock
      <span class="opc">outs</span> asig, asig

<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 0 1 "<span class="stamnt">f</span>ox.wav" 0 0 0

<span class="stamnt">i</span> 1 0 5 0	<span class="comment">;not locked</span>
<span class="stamnt">i</span> 1 6 5 1	<span class="comment">;locked</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="idp31755896"></a>
        <h2>Credits</h2>
        <p>
      </p>
        <table border="0" summary="Simple list" class="simplelist">
          <tr>
            <td>Author: Victor Lazzarini</td>
          </tr>
          <tr>
            <td>February 2010</td>
          </tr>
        </table>
        <p>
    </p>
        <p>New plugin in version 5.13</p>
        <p>February 2005.</p>
      </div>
    </div>
    <div class="navfooter">
      <hr />
      <table width="100%" summary="Navigation footer">
        <tr>
          <td width="40%" align="left"><a accesskey="p" href="minaccum.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="mintab.html">Next</a></td>
        </tr>
        <tr>
          <td width="40%" align="left" valign="top">minaccum </td>
          <td width="20%" align="center">
            <a accesskey="h" href="index.html">Home</a>
          </td>
          <td width="40%" align="right" valign="top"> mintab</td>
        </tr>
      </table>
    </div>
  </body>
</html>