2026-03-02T07-54-28_auto_memory/memories.db-wal
This commit is contained in:
parent
68e45b22cc
commit
f52d683cb8
Binary file not shown.
Binary file not shown.
@ -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');
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user