summaryrefslogtreecommitdiff
path: root/examples/moogladder.csd
diff options
context:
space:
mode:
authorFelipe Sateler <fsateler@debian.org>2011-07-26 23:02:40 -0400
committerFelipe Sateler <fsateler@debian.org>2011-07-26 23:02:40 -0400
commit3a91171181113761a14bcc36a086a8dda144b77b (patch)
tree7affbde923b0131e3e954519a8afb24cd408982d /examples/moogladder.csd
parente99de1fa9e7b72351523a958cb2a13557884f0a4 (diff)
Imported Upstream version 5.13~dfsg
Diffstat (limited to 'examples/moogladder.csd')
-rwxr-xr-xexamples/moogladder.csd36
1 files changed, 36 insertions, 0 deletions
diff --git a/examples/moogladder.csd b/examples/moogladder.csd
new file mode 100755
index 0000000..960e394
--- /dev/null
+++ b/examples/moogladder.csd
@@ -0,0 +1,36 @@
+<CsoundSynthesizer>
+; tryit.csd - a Csound structured data file
+; for testing the Loris unit generators
+-odac -iadc -d ;;;RT audio I/O
+; For Non-realtime ouput leave only the line below:
+; -o moogladder.wav -W ;;; for file output any platform
+<CsOptions>
+
+</CsOptions>
+<CsInstruments>
+
+sr = 44100
+kr = 4410
+ksmps = 10
+nchnls = 1
+
+instr 1
+kfe expseg 500, p3*0.9, 1800, p3*0.1, 3000
+kenv linen 30000, 0.05, p3, 0.05
+asig buzz kenv, 100, 15, 1
+afil moogladder asig, kfe, .9
+ out afil
+
+endin
+
+</CsInstruments>
+<CsScore>
+; sinuso in table 1
+f 1 0 4096 10 1
+
+i 1 0 3
+
+e
+</CsScore>
+
+</CsoundSynthesizer>