summaryrefslogtreecommitdiff
path: root/examples/rand.csd
diff options
context:
space:
mode:
Diffstat (limited to 'examples/rand.csd')
-rw-r--r--examples/rand.csd42
1 files changed, 22 insertions, 20 deletions
diff --git a/examples/rand.csd b/examples/rand.csd
index 1028ac1..8d42031 100644
--- a/examples/rand.csd
+++ b/examples/rand.csd
@@ -1,40 +1,42 @@
<CsoundSynthesizer>
<CsOptions>
; Select audio/midi flags here according to platform
-; Audio out Audio in
--odac -iadc ;;;RT audio I/O
+-odac ;;;realtime audio out
+;-iadc ;;;uncomment -iadc if RT audio input is needed too
; For Non-realtime ouput leave only the line below:
; -o rand.wav -W ;;; for file output any platform
</CsOptions>
<CsInstruments>
-; Initialize the global variables.
sr = 44100
-kr = 4410
-ksmps = 10
-nchnls = 1
-
-; Instrument #1.
-instr 1
- ; Choose a random frequency between 4,100 and 44,100.
- kfreq rand 20000
- kcps = kfreq + 24100
-
- a1 oscil 30000, kcps, 1
- out a1
+ksmps = 32
+nchnls = 2
+0dbfs = 1
+
+instr 1 ;same values every time
+
+krnd rand 100
+ printk .5, krnd ; look
+aout oscili 0.8, 440+krnd, 1 ; & listen
+ outs aout, aout
+
endin
+instr 2 ;different values every time
+
+krnd rand 100, 10 ; seed from system clock
+ printk .5, krnd ; look
+aout oscili 0.8, 440+krnd, 1 ; & listen
+ outs aout, aout
+endin
</CsInstruments>
<CsScore>
+f 1 0 16384 10 1 ;sine wave.
-; Table #1, a sine wave.
-f 1 0 16384 10 1
-
-; Play Instrument #1 for one second.
i 1 0 1
+i 2 2 1
e
-
</CsScore>
</CsoundSynthesizer>