2026-03-02T07-54-28_auto_memory/memories.db-wal

This commit is contained in:
Nicholai Vogel 2026-03-02 00:54:28 -07:00
parent 68e45b22cc
commit f52d683cb8
3 changed files with 7 additions and 0 deletions

Binary file not shown.

Binary file not shown.

View File

@ -293,6 +293,13 @@ class MeetingNotesBot {
this.audioBuffers.set(userId, []);
const userName = this.userIdToName.get(userId) || userId;
console.log(`[DEBUG] ${userName}: ${buffers.length} chunks, ${totalLength} bytes total`);
if (totalLength < 1000) {
console.log(`[DEBUG] ${userName}: chunk too small, skipping`);
return;
}
const timestamp = Date.now();
const rawFile = resolve(this.transcriptsDir, `chunk-${userName}-${timestamp}.raw`);
const wavFile = rawFile.replace('.raw', '.wav');