Class AudioGenResult<T>
Result of audio generation.
public class AudioGenResult<T>
Type Parameters
TThe numeric type.
- Inheritance
-
AudioGenResult<T>
- Inherited Members
Properties
Audio
Gets or sets the generated audio waveform.
public required T[] Audio { get; set; }
Property Value
- T[]
Duration
Gets or sets the actual duration in seconds.
public double Duration { get; set; }
Property Value
ProcessingTimeMs
Gets or sets the processing time in milliseconds.
public long ProcessingTimeMs { get; set; }
Property Value
Prompt
Gets or sets the prompt used for generation.
public string Prompt { get; set; }
Property Value
SampleRate
Gets or sets the sample rate.
public int SampleRate { get; set; }
Property Value
SeedUsed
Gets or sets the random seed used.
public int SeedUsed { get; set; }