Show / Hide Table of Contents

Class Diarization

Speaker diarization is a combination of speaker segmentation and speaker clustering. Provide diarization details to enable this feature.

Inheritance
object
Diarization
Inherited Members
object.Equals(object)
object.Equals(object, object)
object.GetHashCode()
object.GetType()
object.MemberwiseClone()
object.ReferenceEquals(object, object)
object.ToString()
Namespace: Oci.AispeechService.Models
Assembly: OCI.DotNetSDK.Aispeech.dll
Syntax
public class Diarization

Properties

IsDiarizationEnabled

Declaration
[JsonProperty(PropertyName = "isDiarizationEnabled")]
public bool? IsDiarizationEnabled { get; set; }
Property Value
Type Description
bool?

Set true to enable Speaker diarization and tag transcription with speaker tags. By default this is disabled.

NumberOfSpeakers

Declaration
[JsonProperty(PropertyName = "numberOfSpeakers")]
public int? NumberOfSpeakers { get; set; }
Property Value
Type Description
int?

Number of speakers in the audio provided. By default service will auto detect all speakers in audio file

In this article
Back to top