-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmultiband.html
49 lines (36 loc) · 1.55 KB
/
multiband.html
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
<!doctype html>
<html>
<head>
<meta charset="utf-8">
<title>Multiband Processing</title>
<script type="module" src="load.js"></script>
</head>
<body>
<audio-app label="Multiband Processing" hide-on-bypass automation-interval="default{0.1} shortcut{control shift i}" enable-automation="default{true} shortcut{control shift a}">
<audio-series>
<audio-player label="player" src="default{media/fandemic.mp4} shortcut{control shift u}" play="default{false} shortcut{control shift x}" seek="default{0} shortcut{control shift t}"></audio-player>
<audio-series label="master">
<audio-parallel>
<audio-band silent-bypass label="bass" type="lowshelf" low="200"></audio-band>
<audio-series label="mid">
<audio-band label="frequency range" type="peaking" low="200" high="1500"></audio-band>
<audio-series label="swapper" feedback mix="-1" gain="0.8" delay="0">
<audio-swap></audio-swap>
<audio-split label="split" hide="mix">
<audio-delay label="left delay" mix="default{1}"
delay="default{0.00008} automate{s(t, 0, 0.002)}" step="0.0001"></audio-delay>
<audio-delay label="right delay" mix="default{1}"
delay="default{0.00008} automate{r(0.0003, 0.0006)}"
step="0.0001"></audio-delay>
</audio-split>
</audio-series><!-- swapper -->
</audio-series><!-- mid -->
<audio-band silent-bypass label="treble" type="highshelf" high="3000"></audio-band>
</audio-parallel>
</audio-series>
<audio-stereo-processor label="stereo processor" hide="rotation balance"></audio-stereo-processor>
<audio-destination label="speakers"></audio-destination>
</audio-series>
</audio-app>
</body>
</html>