diff options
| author | Konstantin <const@const.me> | 2023-01-16 14:52:43 +0100 |
|---|---|---|
| committer | Konstantin <const@const.me> | 2023-01-16 14:52:43 +0100 |
| commit | 8c4603c73675958efc960fbd4bb599a2909d106a (patch) | |
| tree | 714dc6fc9a1672d5fd7f89676b97e10959662abc /WhisperNet/API/eCaptureStatus.cs | |
| parent | 990a8d0dbaefc996244097397259e92758b15cce (diff) | |
Source codes
Diffstat (limited to 'WhisperNet/API/eCaptureStatus.cs')
| -rw-r--r-- | WhisperNet/API/eCaptureStatus.cs | 19 |
1 files changed, 19 insertions, 0 deletions
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 +{ + /// <summary>Status of the voice capture</summary> + [Flags] + public enum eCaptureStatus: byte + { + /// <summary>Doing nothing</summary> + None = 0, + /// <summary>Capturing the audio</summary> + Listening = 1, + /// <summary>A voice is detected in the captured audio, recording</summary> + Voice = 2, + /// <summary>Transcribing a recorded piece of the audio</summary> + Transcribing = 4, + /// <summary>The computer is unable to transcribe the audio quickly enough,<br/> + /// and the capture is dropping the incoming audio samples.</summary> + Stalled = 0x80, + } +}
\ No newline at end of file |
