fix: make post-meeting transcription reliable (#6)

Co-authored-by: superdooper86 <[email protected]>
This commit was merged in pull request #6.
This commit is contained in:
2026-07-15 14:21:24 +02:00
committed by GitHub
co-authored by james
parent 34947e2119
commit d8f5c33141
6 changed files with 121 additions and 90 deletions
+2 -2
View File
@@ -141,7 +141,7 @@ final class ProcessTap {
if processObjectIDs.isEmpty {
logger.warning("System audio tap configured with an empty list of processObjectIDs. This might not capture any audio or behave unexpectedly.")
}
tapDescription = CATapDescription(stereoMixdownOfProcesses: processObjectIDs)
tapDescription = CATapDescription(monoMixdownOfProcesses: processObjectIDs)
logger.debug("Configuring tap for system audio output using \(processObjectIDs.count) explicit processes.")
}
@@ -496,4 +496,4 @@ final class ProcessTapRecorder {
self.currentAudioLevel = 0.0
}
}
}
}