Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/common/Resources
diff options
context:
space:
mode:
authorOli <olivier.belanger@umontreal.ca>2007-10-05 20:52:50 (GMT)
committer Oli <olivier.belanger@umontreal.ca>2007-10-05 20:52:50 (GMT)
commit2110017526d60047e369a539e31942034a381913 (patch)
treeaa3f89feedbdefa5ccf264e8106535cf86d373ae /common/Resources
parenta4c2f3bad5c91aab1433a49fb898322dd1e3d775 (diff)
new files
Diffstat (limited to 'common/Resources')
-rw-r--r--common/Resources/cropSynthLab.csd70
1 files changed, 70 insertions, 0 deletions
diff --git a/common/Resources/cropSynthLab.csd b/common/Resources/cropSynthLab.csd
new file mode 100644
index 0000000..cd1e25f
--- /dev/null
+++ b/common/Resources/cropSynthLab.csd
@@ -0,0 +1,70 @@
+<CsoundSynthesizer>
+
+<CsOptions>
+-W -d -n
+</CsOptions>
+
+<CsInstruments>
+
+sr=16000
+ksmps=64
+nchnls=1
+
+/****************************************************************
+Playing temp file
+****************************************************************/
+instr 1
+
+gilen filelen "/home/olpc/.sugar/default/tamtam/snds/tempMic.wav"
+p3 = gilen
+asig diskin "/home/olpc/.sugar/default/tamtam/snds/tempMic.wav", 1
+gasig dcblock asig
+
+endin
+
+/****************************************************************
+Crop silence at the beginning
+****************************************************************/
+instr 2
+ktimer timeinstk
+ain = gasig
+if ktimer > 40 then
+ event "i", 3, 0, gilen - 0.2
+ event "i", 4, gilen - 0.2, 0.01
+ turnoff
+endif
+endin
+
+/****************************************************************
+recording
+****************************************************************/
+instr 3
+kenv adsr 0.01, 0.05, .9, 0.01
+
+adel delay gasig, .005
+
+ihandle fiopen "/home/olpc/.sugar/default/tamtam/snds/micTemp", 2
+
+fout "/home/olpc/.sugar/default/tamtam/snds/micTemp", 2, adel*kenv
+
+;out adel*kenv
+adel = 0
+endin
+
+/****************************************************************
+Audio input recording ( closing file )
+****************************************************************/
+instr 4
+ficlose "/home/olpc/.sugar/default/tamtam/snds/micTemp"
+endin
+
+
+</CsInstruments>
+
+<CsScore>
+f1 0 8192 10 1
+i1 0 4
+i2 0 4
+</CsScore>
+
+</CsoundSynthesizer>