Simple rendering of voice messages in the timeline

Fixes https://github.com/vector-im/element-web/issues/17138
This commit is contained in:
Travis Ralston 2021-05-03 11:41:14 -06:00
parent d7ed2d3486
commit 3f4ee9742a
7 changed files with 168 additions and 6 deletions

View file

@ -49,7 +49,7 @@ export class Playback extends EventEmitter implements IDestroyable {
constructor(private buf: ArrayBuffer, seedWaveform = DEFAULT_WAVEFORM) {
super();
this.context = new AudioContext();
this.resampledWaveform = arrayFastResample(seedWaveform, PLAYBACK_WAVEFORM_SAMPLES);
this.resampledWaveform = arrayFastResample(seedWaveform ?? DEFAULT_WAVEFORM, PLAYBACK_WAVEFORM_SAMPLES);
this.waveformObservable.update(this.resampledWaveform);
this.clock = new PlaybackClock(this.context);