summaryrefslogtreecommitdiff
path: root/examples/ficlose.csd
diff options
context:
space:
mode:
Diffstat (limited to 'examples/ficlose.csd')
-rw-r--r--examples/ficlose.csd32
1 files changed, 32 insertions, 0 deletions
diff --git a/examples/ficlose.csd b/examples/ficlose.csd
new file mode 100644
index 0000000..b763c23
--- /dev/null
+++ b/examples/ficlose.csd
@@ -0,0 +1,32 @@
+<CsoundSynthesizer>
+<CsOptions>
+; Select audio/midi flags here according to platform
+-odac ;;;realtime audio out
+;-iadc ;;;uncomment -iadc if realtime audio input is needed too
+; For Non-realtime ouput leave only the line below:
+; -o ficlose.wav -W ;;; for file output any platform
+</CsOptions>
+<CsInstruments>
+
+sr = 44100
+ksmps = 32
+nchnls = 2
+0dbfs = 1
+
+gihand fiopen "test1.txt", 0
+
+instr 1
+
+ires random 0, 100
+ fouti gihand, 0, 1, ires
+ ficlose gihand
+
+endin
+</CsInstruments>
+<CsScore>
+
+i 1 0 1
+
+e
+</CsScore>
+</CsoundSynthesizer>