fix: 회의 모드 녹음 개선

마이크 캡처 강제(시스템 오디오→마이크), CaptionOverlay 숨김,
오디오 레벨 인디케이터 추가, 상태 전환 꼬임 수정,
전사 타임스탬프 상대 시간 변환.
This commit is contained in:
Yun Chan 2026-04-08 08:56:38 +09:00
parent acab319589
commit 43a2acb89d
3 changed files with 73 additions and 6 deletions

View file

@ -598,6 +598,8 @@ const electronAPI = {
on(IPC_CHANNELS.MEETING_MODE.SESSION_COMPLETED, cb),
onError: (cb: (e: { code: number; message: string }) => void): Unsubscribe =>
on(IPC_CHANNELS.MEETING_MODE.ERROR, cb),
onAudioLevel: (cb: (e: { level: number }) => void): Unsubscribe =>
on('meetingMode:audioLevel', cb),
},
} as const