waveform-playlist
Version:
Multiple track web audio editor and player with waveform preview
16 lines (13 loc) • 321 B
JavaScript
/* eslint-disable no-param-reassign */
/*
* virtual-dom hook for setting the volume input programmatically.
*/
export default class {
constructor(gain) {
this.gain = gain;
}
hook(volumeInput) {
volumeInput.value = this.gain * 100;
volumeInput.title = `${Math.round(this.gain * 100)}% volume`;
}
}