Table of Contents

Class DiarizationResult

Namespace
AiDotNet.Audio.Speaker
Assembly
AiDotNet.dll

Result of speaker diarization.

public class DiarizationResult
Inheritance
DiarizationResult
Inherited Members

Properties

Duration

Gets or sets the total audio duration in seconds.

public double Duration { get; set; }

Property Value

double

NumSpeakers

Gets or sets the number of detected speakers.

public int NumSpeakers { get; set; }

Property Value

int

SpeakingTimePerSpeaker

Gets speaking time per speaker.

public Dictionary<string, double> SpeakingTimePerSpeaker { get; }

Property Value

Dictionary<string, double>

Turns

Gets or sets the speaker turns.

public List<SpeakerTurn> Turns { get; set; }

Property Value

List<SpeakerTurn>