-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdelay.html
More file actions
23 lines (18 loc) · 765 Bytes
/
delay.html
File metadata and controls
23 lines (18 loc) · 765 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
<!doctype html>
<html>
<head>
<meta charset="utf-8">
<title>Delay Test</title>
<script async type="module" src="load.js"></script>
</head>
<body>
<audio-app label="Delay test" hide-on-bypass automation-interval="shortcut{control shift i}" enable-automation="default{false} shortcut{control shift a}">
<audio-series>
<audio-player label="player" src="default{media/t.mp3} shortcut{control shift u}" play="default{false} shortcut{control shift x}" seek="default{0} shortcut{control shift t}"></audio-player>
<audio-delay label="delay" delay="automate{s(t, 0, 0.0002)}"></audio-delay>
<audio-gain label="output volume" gain="1" hide="bypass mix"></audio-gain>
<audio-destination label="speakers"></audio-destination>
</audio-series>
</audio-app>
</body>
</html>