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
EffectiveWindowLength
Gets the effective window length.
public int EffectiveWindowLength { get; }
Property Value
FftSize
Gets or sets the FFT window size in samples.
public int FftSize { get; set; }
Property Value
HopLength
Gets or sets the hop length (stride) between frames in samples.
public int HopLength { get; set; }
Property Value
SampleRate
Gets or sets the sample rate of the audio.
public int SampleRate { get; set; }
Property Value
WindowLength
Gets or sets the window length in samples. Defaults to FftSize.
public int? WindowLength { get; set; }
Property Value
- int?