2026-03-02T07-54-48_auto_memory/memories.db-wal, memory/memories.db-wal, me
This commit is contained in:
parent
c5509afbec
commit
9d6f904594
Binary file not shown.
Binary file not shown.
Binary file not shown.
5
tools/meeting-notes/dist/index.js
vendored
5
tools/meeting-notes/dist/index.js
vendored
@ -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');
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user