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

KonstantinDLL API for diarize featuree1e3ac0

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