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 samphold.wav -W ;;; for file output any platform
8</CsOptions>
9<CsInstruments>
10
11sr = 44100
12ksmps = 32
13nchnls = 2
140dbfs  = 1
15
16instr 1
17
18kx	line -1, p3, 1   	; between -1 and +1
19ktrig	metro 1	 		; triggers 1 time per second
20kval	samphold kx, ktrig	; change value whenever ktrig = 1
21        printk2 kval		; will print every time kval changes
22asig	diskin2	"flute.aiff", 1+kval, 0, 1
23	outs asig, asig
24
25endin
26</CsInstruments>
27<CsScore>
28
29i 1 0 11
30e
31</CsScore>
32</CsoundSynthesizer>
33