Table of Contents

Class ApiAudioTrack

Namespace
VAST.Network
Assembly
VAST.Network.dll

Represents audio track configuration for a media stream. Specifies audio parameters such as sample rate, channels, codec, and optional mixing settings.

public class ApiAudioTrack
Inheritance
ApiAudioTrack
Inherited Members

Constructors

ApiAudioTrack()

public ApiAudioTrack()

Properties

Bitrate

Gets or sets the bitrate of the audio track in bits per second.

public int Bitrate { get; set; }

Property Value

int

Channels

Gets or sets the number of audio channels.

public int Channels { get; set; }

Property Value

int

Codec

Gets or sets the codec used for the audio track.

public Codec Codec { get; set; }

Property Value

Codec

Index

Gets or sets the 0-based index of the audio track.

public int Index { get; set; }

Property Value

int

Mixing

Gets or sets the audio mixing configuration specific to this track.

public ApiAudioMixing Mixing { get; set; }

Property Value

ApiAudioMixing

SampleFormat

Gets or sets the sample format of the audio data.

public SampleFormat SampleFormat { get; set; }

Property Value

SampleFormat

SampleRate

Gets or sets the sample rate of the audio track in Hz.

public int SampleRate { get; set; }

Property Value

int