Public Access
Implement meeting assistant v1
This commit is contained in:
@@ -0,0 +1,10 @@
|
||||
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.");
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user