Play only one audio file at a time

Fixes https://github.com/vector-im/element-web/issues/17439
This commit is contained in:
Travis Ralston
2021-07-20 23:28:07 -06:00
parent 91cf27e252
commit a759d61ba0
5 changed files with 98 additions and 2 deletions

View File

@@ -132,6 +132,10 @@ export class PlaybackClock implements IDestroyable {
public flagStop() {
this.stopped = true;
// Reset the clock time now so that the update going out will trigger components
// to check their seek/position information (alongside the clock).
this.clipStart = this.context.currentTime;
}
public syncTo(contextTime: number, clipTime: number) {