forked from johannesloor/WebAudio
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathaudio.xml
26 lines (21 loc) · 927 Bytes
/
audio.xml
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
<?xml version="1.0" encoding="UTF-8"?>
<Audio version="1.0" timeUnit="ms" interactionArea="#touchArea" gain="-15dB">
<Chain portamento="200">
<OscillatorNode type="sawtooth">
<frequency follow="relX" map="0, 100, 60, 200"></frequency>
</OscillatorNode>
<BiquadFilterNode type="lowpass">
<frequency follow="relX" map="0, 100, 240, 600"></frequency>
<Q follow="relX" map="0, 100, 0, 1, (x * (600-240) + 240) / 38"></Q>
</BiquadFilterNode>
<BiquadFilterNode type="lowpass">
<frequency follow="relY" map="100, 0, 600, 2000"></frequency>
<Q follow="relY" map="100, 0, 0, 1, (x * (2000-600) + 600) / 45"></Q>
</BiquadFilterNode>
<GainNode>
<gain>
<Envelope adsr="200, 100, 100, 100" trig="pointer" max="1"></Envelope>
</gain>
</GainNode>
</Chain>
</Audio>