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

« back to all changes in this revision

Viewing changes to examples/buzz.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
1
<CsoundSynthesizer>
2
2
<CsOptions>
3
3
; Select audio/midi flags here according to platform
4
 
; Audio out   Audio in    No messages
5
 
-odac           -iadc     -d     ;;;RT audio I/O
 
4
-odac     ;;;RT audio out
 
5
;-iadc    ;;;uncomment -iadc if RT audio input is needed too
6
6
; For Non-realtime ouput leave only the line below:
7
7
; -o buzz.wav -W ;;; for file output any platform
8
8
</CsOptions>
9
9
<CsInstruments>
10
10
 
11
 
; Initialize the global variables.
12
11
sr = 44100
13
 
kr = 4410
14
 
ksmps = 10
15
 
nchnls = 1
 
12
ksmps = 32
 
13
nchnls = 2
 
14
0dbfs = 1
16
15
 
17
 
; Instrument #1.
18
16
instr 1
19
 
  kamp = 20000
20
 
  kcps = 440
21
 
  knh = 3
22
 
  ifn = 1
23
 
 
24
 
  a1 buzz kamp, kcps, knh, ifn
25
 
  out a1
 
17
 
 
18
kcps = 110
 
19
ifn  = 1
 
20
 
 
21
knh     line p4, p3, p5
 
22
asig    buzz 1, kcps, knh, ifn
 
23
        outs asig, asig
26
24
endin
27
25
 
28
 
 
29
26
</CsInstruments>
30
27
<CsScore>
31
28
 
32
 
; Table #1, a sine wave.
 
29
;sine wave.
33
30
f 1 0 16384 10 1
34
31
 
35
 
; Play Instrument #1 for one second.
36
 
i 1 0 1
 
32
i 1 0 3 20 20
 
33
i 1 + 3 3 3
 
34
i 1 + 3 10 1
37
35
e
38
36
 
39
 
 
40
37
</CsScore>
41
38
</CsoundSynthesizer>