Table of Contents

Class AudioGenResult<T>

Namespace
AiDotNet.Audio.AudioGen
Assembly
AiDotNet.dll

Result of audio generation.

public class AudioGenResult<T>

Type Parameters

T

The 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

double

ProcessingTimeMs

Gets or sets the processing time in milliseconds.

public long ProcessingTimeMs { get; set; }

Property Value

long

Prompt

Gets or sets the prompt used for generation.

public string Prompt { get; set; }

Property Value

string

SampleRate

Gets or sets the sample rate.

public int SampleRate { get; set; }

Property Value

int

SeedUsed

Gets or sets the random seed used.

public int SeedUsed { get; set; }

Property Value

int