Class AudioGenerationOptions<T>
- Namespace
- AiDotNet.Interfaces
- Assembly
- AiDotNet.dll
Advanced options for audio generation.
public class AudioGenerationOptions<T>
Type Parameters
TThe numeric type used for calculations.
- Inheritance
-
AudioGenerationOptions<T>
- Inherited Members
Properties
DurationSeconds
Gets or sets the duration of audio to generate in seconds.
public double DurationSeconds { get; set; }
Property Value
GuidanceScale
Gets or sets the guidance scale.
public double GuidanceScale { get; set; }
Property Value
NumInferenceSteps
Gets or sets the number of inference steps.
public int NumInferenceSteps { get; set; }
Property Value
SchedulerType
Gets or sets the scheduler type for the diffusion process.
public string SchedulerType { get; set; }
Property Value
Seed
Gets or sets the random seed.
public int? Seed { get; set; }
Property Value
- int?
Stereo
Gets or sets whether to generate stereo audio.
public bool Stereo { get; set; }