-
Notifications
You must be signed in to change notification settings - Fork 2
/
index.html
109 lines (92 loc) · 3.79 KB
/
index.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
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
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
<!DOCTYPE html>
<html>
<head>
<link rel="stylesheet" type="text/css" href="home_style.css" media="screen" />
<title>The Digital Audio Workbench</title>
</head>
<body>
<h1>The Digital Audio Workbench</h1>
<h4>Input Devices and Musical Interaction Laboratory (IDMIL) - <a href="//www.idmil.org/">www.idmil.org</a>
<br>McGill University, Canada.</h4>
<small>
<p style="margin-left: 40px">
<i>
By Josh Rohs, Travis J. West & Marcelo M. Wanderley<br>
<small>with contributions by Eduardo Meneses, Christian Frisson, Erivan Duarte, and others.</small><br>
Copyright IDMIL/McGill University, 2020-2021
</i>
</p>
</small>
<p>
The Digital Audio Workbench aims to provide an accessible interactive
platform for intuitively exploring key concepts in digital audio.
<br><br>
Both <i>Time-</i> and <i>Frequency-domain</i> views of signals are presented,
as well as audio rendering of parameter manipulation.
<br><br>
Numerous modular graphs are available, which can aid in
teaching and studying issues such as aliasing, quantization,
the effect of dithering, and more.
</p>
<p>
Please follow the links below to explore different subsets of the
workbench:
</p>
<ul>
<li><a href="sampling">sampling & aliasing</a></li>
<li><a href="quantization">quantization & dither</a></li>
<li><a href="all-panels">all panels and sliders</a> (mainly for developers)</li>
</ul>
<p>
<small>
Detailed information is avaialble in the <a href="README.md">project's README file</a>.
</small>
</p>
<small>
<p>
<b>Disclaimer:</b>
<br>
<i>This is a preliminary version of the tool.</i>
<br><br>
Note that so far we have only tested the project on recent Chromium-based browsers. Furthermore, the display is
not yet adequately responsive for mobile devices and other small screens.
<br><br>
If you have any suggestions, questions or comments, please feel free to <a mailto:[email protected]>send us an email</a>.
</p>
</small>
<hr>
<small><small>
<p>
This software is licensed under the MIT License.
</p>
<p>
fft.js copyright (c) 2017 Fedor Indutny <br>
fili.js copyright (c) 2014 Florian Markert <br>
All other files copyright (c) 2020 The Input Devices and Musical
Interaction Laboratory (IDMIL), McGill University <br>
</p>
<p>
Permission is hereby granted, free of charge, to any person obtaining a
copy of this software and associated documentation files (the
"Software"), to deal in the Software without restriction, including
without limitation the rights to use, copy, modify, merge, publish,
distribute, sublicense, and/or sell copies of the Software, and to
permit persons to whom the Software is furnished to do so, subject to
the following conditions:
</p>
<p>
The above copyright notice and this permission notice shall be included
in all copies or substantial portions of the Software.
</p>
<p>
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE."
</p>
</small></small>
</body>
</html>