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
8c4603c
master
1namespace Whisper 2{ 3/// <summary>Status of the voice capture</summary> 4[ Flags ] 5public enum eCaptureStatus : byte 6{ 7/// <summary>Doing nothing</summary> 8None = 0 , 9/// <summary>Capturing the audio</summary> 10Listening = 1 , 11/// <summary>A voice is detected in the captured audio, recording</summary> 12Voice = 2 , 13/// <summary>Transcribing a recorded piece of the audio</summary> 14Transcribing = 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> 17Stalled = 0x80 , 18} 19}