Merge branch 'master' of github.com:thecodingmachine/workadventure into develop
# Conflicts: # front/src/Phaser/Game/GameScene.ts
This commit is contained in:
commit
0c279750be
9 changed files with 160 additions and 116 deletions
|
@ -17,14 +17,12 @@ export class SoundMeter {
|
|||
}
|
||||
|
||||
private init(context: AudioContext) {
|
||||
if (this.context === undefined) {
|
||||
this.context = context;
|
||||
this.analyser = this.context.createAnalyser();
|
||||
this.context = context;
|
||||
this.analyser = this.context.createAnalyser();
|
||||
|
||||
this.analyser.fftSize = 2048;
|
||||
const bufferLength = this.analyser.fftSize;
|
||||
this.dataArray = new Uint8Array(bufferLength);
|
||||
}
|
||||
this.analyser.fftSize = 2048;
|
||||
const bufferLength = this.analyser.fftSize;
|
||||
this.dataArray = new Uint8Array(bufferLength);
|
||||
}
|
||||
|
||||
public connectToSource(stream: MediaStream, context: AudioContext): void
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue