clement-pages commited on
Commit
88c5c67
·
1 Parent(s): b20173a

allow to play multiple sources at a time

Browse files
pyannote_viewer/frontend/player/AudioPlayer.svelte CHANGED
@@ -170,12 +170,16 @@
170
  {#each [...Array(waveform.getDecodedData().numberOfChannels).keys()] as channelIdx}
171
  <label style={`height: ${waveform_settings.height}px; background-color: ${colors[channelIdx % colors.length]}`}>
172
  <input
173
- type="radio"
174
- name="channels"
175
  value={`${channelIdx}`}
176
  on:change={(ev) => {
177
- splitter.disconnect()
178
- splitter.connect(audioContext.destination, Number(ev.target.value), 0);
 
 
 
 
179
  }}
180
  />
181
  {value.labels[channelIdx]}
@@ -225,7 +229,7 @@
225
  {/if}
226
 
227
  <style>
228
- input[type="radio"] {
229
  appearance: none;
230
  background-color: #fff;
231
  margin-right: 0.5em;
@@ -237,7 +241,7 @@
237
  border-radius: 50%;
238
  }
239
 
240
- input[type="radio"]:checked {
241
  background-color: var(--color-accent);
242
  }
243
 
 
170
  {#each [...Array(waveform.getDecodedData().numberOfChannels).keys()] as channelIdx}
171
  <label style={`height: ${waveform_settings.height}px; background-color: ${colors[channelIdx % colors.length]}`}>
172
  <input
173
+ type="checkbox"
174
+ name={`${channelIdx}`}
175
  value={`${channelIdx}`}
176
  on:change={(ev) => {
177
+ const channelIdx = Number(ev.target.value);
178
+ if(Boolean(ev.target.checked)){
179
+ splitter.connect(audioContext.destination, channelIdx, 0);
180
+ } else {
181
+ splitter.disconnect(channelIdx);
182
+ }
183
  }}
184
  />
185
  {value.labels[channelIdx]}
 
229
  {/if}
230
 
231
  <style>
232
+ input[type="checkbox"] {
233
  appearance: none;
234
  background-color: #fff;
235
  margin-right: 0.5em;
 
241
  border-radius: 50%;
242
  }
243
 
244
+ input[type="checkbox"]:checked {
245
  background-color: var(--color-accent);
246
  }
247