From 8c4603c73675958efc960fbd4bb599a2909d106a Mon Sep 17 00:00:00 2001 From: Konstantin Date: Mon, 16 Jan 2023 14:52:43 +0100 Subject: Source codes --- WhisperNet/API/eCaptureStatus.cs | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 WhisperNet/API/eCaptureStatus.cs (limited to 'WhisperNet/API/eCaptureStatus.cs') diff --git a/WhisperNet/API/eCaptureStatus.cs b/WhisperNet/API/eCaptureStatus.cs new file mode 100644 index 0000000..41f05fb --- /dev/null +++ b/WhisperNet/API/eCaptureStatus.cs @@ -0,0 +1,19 @@ +namespace Whisper +{ + /// Status of the voice capture + [Flags] + public enum eCaptureStatus: byte + { + /// Doing nothing + None = 0, + /// Capturing the audio + Listening = 1, + /// A voice is detected in the captured audio, recording + Voice = 2, + /// Transcribing a recorded piece of the audio + Transcribing = 4, + /// The computer is unable to transcribe the audio quickly enough,
+ /// and the capture is dropping the incoming audio samples.
+ Stalled = 0x80, + } +} \ No newline at end of file -- cgit v1.2.3