Table of Contents

Class PitchFrame<T>

Namespace
AiDotNet.Interfaces
Assembly
AiDotNet.dll

Represents a single pitch detection frame.

public class PitchFrame<T>

Type Parameters

T

The numeric type.

Inheritance
PitchFrame<T>
Inherited Members

Properties

Confidence

Gets the detection confidence (0-1).

public required T Confidence { get; init; }

Property Value

T

IsVoiced

Gets whether this frame is voiced (contains pitched content).

public required bool IsVoiced { get; init; }

Property Value

bool

Pitch

Gets the detected pitch in Hz.

public required T Pitch { get; init; }

Property Value

T

Time

Gets the timestamp in seconds.

public required double Time { get; init; }

Property Value

double