Files
meeting-assistant/MeetingAssistant/Recording/IMicrophoneCaptureSourceFactory.cs
T
codex b9547ae4c4
PR and Push Build/Test / build-and-test (push) Successful in 12m29s
fix: recover from microphone disconnects
2026-08-03 15:57:30 +02:00

7 lines
164 B
C#

namespace MeetingAssistant.Recording;
public interface IMicrophoneCaptureSourceFactory
{
IMeetingAudioSource CreateCapture(MeetingAssistantOptions options);
}