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
e1e3ac0
master
1namespace Whisper 2{ 3/// <summary>Output value for iContext.detectSpeaker method</summary> 4public enum eSpeakerChannel : byte 5{ 6/// <summary>Unable to detect</summary> 7Unsure = 0 , 8/// <summary>The speech was mostly in the left channel</summary> 9Left = 1 , 10/// <summary>The speech was mostly in the right channel</summary> 11Right = 2 , 12/// <summary>The audio only has 1 channel</summary> 13NoStereoData = 0xFF , 14} 15}