Class DiarizationResult
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
NumSpeakers
Gets or sets the number of detected speakers.
public int NumSpeakers { get; set; }
Property Value
SpeakingTimePerSpeaker
Gets speaking time per speaker.
public Dictionary<string, double> SpeakingTimePerSpeaker { get; }
Property Value
Turns
Gets or sets the speaker turns.
public List<SpeakerTurn> Turns { get; set; }