Table of Contents

Class AudioFeatureOptions

Namespace
AiDotNet.Interfaces
Assembly
AiDotNet.dll

Options for audio feature extraction.

public class AudioFeatureOptions
Inheritance
AudioFeatureOptions
Derived
Inherited Members

Properties

CenterPad

Gets or sets whether to center-pad the signal.

public bool CenterPad { get; set; }

Property Value

bool

EffectiveWindowLength

Gets the effective window length.

public int EffectiveWindowLength { get; }

Property Value

int

FftSize

Gets or sets the FFT window size in samples.

public int FftSize { get; set; }

Property Value

int

HopLength

Gets or sets the hop length (stride) between frames in samples.

public int HopLength { get; set; }

Property Value

int

SampleRate

Gets or sets the sample rate of the audio.

public int SampleRate { get; set; }

Property Value

int

WindowLength

Gets or sets the window length in samples. Defaults to FftSize.

public int? WindowLength { get; set; }

Property Value

int?