Skip to content

Commit 87d3028

Browse files
bring changes over to dsig as well
1 parent 17628a9 commit 87d3028

3 files changed

Lines changed: 15 additions & 8 deletions

File tree

all-panels/index.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
<main>
2222
<div class="timeline">
2323

24-
<h1>Digital Audio Workbench</h1>
24+
<h1>Digital Audio Workbench (Sampling and Quantization)</h1>
2525

2626
<h2>By Arden Butterfield, Josh Rohs, Travis J. West & Marcelo M. Wanderley
2727
with contributions by Eduardo Meneses, Christian Frisson, Erivan Duarte, Laurent Tarabout, and Maxwell Gentili-Morin</h2>

delta-sigma-panels/index.html

Lines changed: 13 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,12 @@
1919
<body>
2020
<main>
2121
<div class="timeline">
22+
<h1>Digital Audio Workbench (Delta-Sigma Encoding)</h1>
23+
24+
<h2>By Arden Butterfield, Josh Rohs, Travis J. West & Marcelo M. Wanderley
25+
with contributions by Eduardo Meneses, Christian Frisson, Erivan Duarte, Laurent Tarabout, and Maxwell Gentili-Morin</h2>
26+
<h3>Copyright IDMIL/McGill University, 2025</h3>
27+
2228
<div class="section" id="input-section">
2329
<div class="titlebar">
2430
<div class="section-title">
@@ -83,12 +89,13 @@ <h2>Reconstructed</h2>
8389
</div>
8490
</div>
8591
</main>
86-
<footer>
87-
<div>Digital Audio Workbench </div>
88-
<div>By Josh Rohs, Travis J. West, Arden Butterfield & Marcelo M. Wanderley </div>
89-
<div>with contributions by Eduardo Meneses, Christian Frisson, and Erivan Duarte</div>
90-
<div>Copyright <a href="//www-new.idmil.org/">IDMIL</a>/McGill University, 2020 </div>
91-
</footer>
92+
<div class="global-panel">
93+
<div id="global-panel-collapse-button" onclick="collapseGlobalPanel()"></div>
94+
<div class="contents">
95+
<div class="slider" id="time-zoom-slider"></div>
96+
<div class="slider" id="amp-zoom-slider"></div>
97+
</div>
98+
</div>
9299

93100
<script>
94101
createWidgets();

slider.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -88,9 +88,9 @@ class AudioInputTypeSlider extends Slider{
8888
this.inputSelect.changed(()=>this.settings.inputType = this.inputSelect.value());
8989

9090
this.oddEvenSel = p.createSelect();
91+
this.oddEvenSel.option("All");
9192
this.oddEvenSel.option("Odd");
9293
this.oddEvenSel.option("Even");
93-
this.oddEvenSel.option("All");
9494
this.oddEvenSel.selected(this.settings.harmType);
9595
this.oddEvenSel.changed(()=>this.settings.harmType = this.oddEvenSel.value());
9696

0 commit comments

Comments
 (0)