Merge commit '925eb33eab45c084e9386ada66d9cb14b966e312' into feature/modular-ipc-system-implementation

This commit is contained in:
2025-11-24 12:06:58 +01:00
3 changed files with 5 additions and 2 deletions
BIN
View File
Binary file not shown.
@@ -1,3 +1,5 @@
const EventEmitter = require('events');
const audioEvents = new EventEmitter();
// Ensure ffmpeg binary is available
if (!ffmpegPath) {
@@ -88,6 +90,6 @@ module.exports = {
console.log();
}
});
}
},
audioEvents: audioEvents
}
@@ -1,6 +1,7 @@
// services/pipeline/jobs/transcribeLatest.ts
import path from 'path';
import fs from 'fs';
// @ts-ignore: module has no type declarations or cannot be resolved in current TS config
import assembly from '../../modules/transcription/assembly';
/**