Files
2026-05-20 02:06:16 +02:00

11 lines
364 B
C#

namespace MeetingAssistant.Recording;
public sealed class UnavailableMeetingAudioSource : IMeetingAudioSource
{
public IAsyncEnumerable<AudioChunk> CaptureAsync(CancellationToken cancellationToken)
{
throw new PlatformNotSupportedException(
"Meeting audio capture is only implemented for the Windows target in this version.");
}
}