Remove console.log statements

This commit is contained in:
kwaroran
2024-03-16 14:41:44 +09:00
parent 527520566d
commit e6f6ef829c
15 changed files with 0 additions and 32 deletions

View File

@@ -35,7 +35,6 @@ class voiceDetector{
const dataArray = new Uint8Array(this.analyser.frequencyBinCount);
this.analyser.getByteTimeDomainData(dataArray);
const volume = dataArray.reduce((acc, val) => acc + val, 0) / dataArray.length;
console.log(volume);
if (Date.now() - start > 10000) {
this.mediaRecorder.stop();
clearInterval(this.intervalID);