~ubuntu-branches/ubuntu/trusty/csound-manual/trusty-proposed

« back to all changes in this revision

Viewing changes to examples/fofilter.csd

  • Committer: Bazaar Package Importer
  • Author(s): Felipe Sateler
  • Date: 2011-08-01 22:21:58 UTC
  • mfrom: (1.1.1 upstream)
  • Revision ID: james.westby@ubuntu.com-20110801222158-90kslkp5ujci2f5d
Tags: 1:5.13~dfsg-1
* New upstream release
 - Add Menno Knevel to the copyright file
 - Refresh patch 2000-stripped-opcodes.diff
 - Update copyright hints file
* Update Vcs-* headers
* Bump Standards-Version

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
<CsoundSynthesizer>
 
2
<CsOptions>
 
3
; Select audio/midi flags here according to platform
 
4
; Audio out   Audio in    No messages
 
5
-odac           -iadc     -d     ;;;RT audio I/O
 
6
; For Non-realtime ouput leave only the line below:
 
7
; -o fofilter.wav -W ;;; for file output any platform
 
8
</CsOptions>
 
9
<CsInstruments>
 
10
sr      =  44100
 
11
ksmps   =  10
 
12
nchnls  =  1
 
13
 
 
14
       instr 1
 
15
kfe     expseg  10, p3*0.9, 180, p3*0.1, 175
 
16
kenv    linen           1000, 0.05, p3, 0.05
 
17
asig    buzz            kenv, kfe, sr/(2*kfe), 1
 
18
afil    fofilter        asig, 900, 0.007, 0.04
 
19
             
 
20
        out     afil 
 
21
 
 
22
       endin
 
23
</CsInstruments>
 
24
<CsScore>
 
25
; Table #1, a sine wave.
 
26
f 1 0 16384 10 1
 
27
i 1 0 10
 
28
e
 
29
</CsScore>
 
30
 
 
31
 
 
32
</CsoundSynthesizer>