Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/common/Resources/crop.csd
blob: 483e578dc120d5e1d1fd75150dfea76c60a20baf (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
<CsoundSynthesizer>

<CsOptions>
-W -d -n
</CsOptions>

<CsInstruments>

sr=16000
ksmps=64
nchnls=1

/****************************************************************
Playing temp file
****************************************************************/
instr 1
Spath strget 999
Stempfile strcat Spath, "/tempMic.wav"
asig diskin Stempfile, 1
gasig dcblock asig

endin

/****************************************************************
Crop silence at the beginning
****************************************************************/
instr 2
ktimer timeinstk
ain = gasig
krms    rms     ain
if ktimer > 40 then
    ktrig   trigger     krms, 1500, 0
    if ktrig == 1 then
        event "i", 3, 0, 2
        event "i", 4, 2, 0.01
        turnoff
    endif
endif
endin

/****************************************************************
recording
****************************************************************/
instr 3
kenv   adsr     0.01, 0.05, .9, 0.01

adel    delay   gasig, .005

Spath strget 999
Sfile strcat Spath, "/micTemp.wav"

ihandle fiopen Sfile, 2

fout Sfile, 2, adel*kenv

;out adel*kenv
adel = 0
endin

/****************************************************************
Audio input recording ( closing file )
****************************************************************/
instr 4
Spath strget 999
Sfile strcat Spath, "/micTemp.wav"
ficlose Sfile
endin


</CsInstruments>

<CsScore>
f1 0 8192 10 1
i1 0 4
i2 0 4
</CsScore>

</CsoundSynthesizer>