Public Access
11 lines
364 B
C#
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.");
|
|
}
|
|
}
|