yum-archive/TaSTT-Whisper

High-performance GPGPU inference of OpenAI's Whisper automatic speech recognition (ASR) model

git clone https://git.yummers.dev/yum-archive/TaSTT-Whisper

KonstantinSource codes8c4603c

master
590 B19 linesraw
1namespace Whisper
2{
3	/// <summary>Status of the voice capture</summary>
4	[Flags]
5	public enum eCaptureStatus: byte
6	{
7		/// <summary>Doing nothing</summary>
8		None = 0,
9		/// <summary>Capturing the audio</summary>
10		Listening = 1,
11		/// <summary>A voice is detected in the captured audio, recording</summary>
12		Voice = 2,
13		/// <summary>Transcribing a recorded piece of the audio</summary>
14		Transcribing = 4,
15		/// <summary>The computer is unable to transcribe the audio quickly enough,<br/>
16		/// and the capture is dropping the incoming audio samples.</summary>
17		Stalled = 0x80,
18	}
19}