Table of Contents

Class AudioEvent<T>

Namespace
AiDotNet.Interfaces
Assembly
AiDotNet.dll

A detected audio event.

public class AudioEvent<T>

Type Parameters

T

The numeric type used for calculations.

Inheritance
AudioEvent<T>
Inherited Members

Properties

Confidence

Gets or sets the confidence score.

public T Confidence { get; set; }

Property Value

T

Duration

Gets the duration of the event in seconds.

public double Duration { get; }

Property Value

double

EndTime

Gets or sets the end time in seconds.

public double EndTime { get; set; }

Property Value

double

EventType

Gets or sets the event type/label.

public string EventType { get; set; }

Property Value

string

PeakTime

Gets or sets the peak confidence time within the event.

public double PeakTime { get; set; }

Property Value

double

StartTime

Gets or sets the start time in seconds.

public double StartTime { get; set; }

Property Value

double