Class SpectrogramConfig
Configuration for spectrogram generation.
public class SpectrogramConfig
- Inheritance
-
SpectrogramConfig
- Inherited Members
Properties
FFTSize
FFT window size.
public int FFTSize { get; set; }
Property Value
HopLength
Hop length between frames.
public int HopLength { get; set; }
Property Value
MaxFrequency
Maximum frequency in Hz.
public double MaxFrequency { get; set; }
Property Value
MinFrequency
Minimum frequency in Hz.
public double MinFrequency { get; set; }
Property Value
NumMelBins
Number of mel frequency bins.
public int NumMelBins { get; set; }
Property Value
SampleRate
Audio sample rate in Hz.
public int SampleRate { get; set; }
Property Value
UseLogScale
Whether to use log-scale magnitude.
public bool UseLogScale { get; set; }