From e1e3ac09a97d602a6ea60ff1928de77de81d99a7 Mon Sep 17 00:00:00 2001 From: Konstantin Date: Sat, 28 Jan 2023 15:18:02 +0100 Subject: DLL API for diarize feature --- WhisperNet/API/eSpeakerChannel.cs | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 WhisperNet/API/eSpeakerChannel.cs (limited to 'WhisperNet/API') diff --git a/WhisperNet/API/eSpeakerChannel.cs b/WhisperNet/API/eSpeakerChannel.cs new file mode 100644 index 0000000..edb96e0 --- /dev/null +++ b/WhisperNet/API/eSpeakerChannel.cs @@ -0,0 +1,15 @@ +namespace Whisper +{ + /// Output value for iContext.detectSpeaker method + public enum eSpeakerChannel: byte + { + /// Unable to detect + Unsure = 0, + /// The speech was mostly in the left channel + Left = 1, + /// The speech was mostly in the right channel + Right = 2, + /// The audio only has 1 channel + NoStereoData = 0xFF, + } +} \ No newline at end of file -- cgit v1.2.3