2026-03-02T07-54-48_auto_memory/memories.db-wal, memory/memories.db-wal, me

This commit is contained in:
Nicholai Vogel 2026-03-02 00:54:49 -07:00
parent c5509afbec
commit 9d6f904594
4 changed files with 5 additions and 0 deletions

Binary file not shown.

Binary file not shown.

Binary file not shown.

View File

@ -228,6 +228,11 @@ class MeetingNotesBot {
const combined = Buffer.concat(buffers, totalLength);
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');