1<CsoundSynthesizer>
2<CsOptions>
3; Select audio/midi flags here according to platform
4-odac   ;;;realtime audio out
5;-iadc    ;;;uncomment -iadc if realtime audio input is needed too
6; For Non-realtime ouput leave only the line below:
7; -o mute.wav -W ;;; for file output any platform
8</CsOptions>
9<CsInstruments>
10
11sr = 44100
12ksmps = 32
13nchnls = 2
140dbfs  = 1
15
16; Mute Instrument #2.
17mute 2
18; Mute Instrument three.
19mute "three"
20
21instr 1
22
23a1 oscils 0.2, 440, 0
24   outs a1, a1
25endin
26
27instr 2	; gets muted
28
29a1 oscils 0.2, 880, 0
30   outs a1, a1
31endin
32
33instr three	; gets muted
34
35a1 oscils 0.2, 1000, 0
36   outs a1, a1
37endin
38
39</CsInstruments>
40<CsScore>
41
42i 1 0 1
43i 2 0 1
44i "three" 0 1
45e
46
47</CsScore>
48</CsoundSynthesizer>
49