Class AudioMetadata

Definition

Namespace:
Tizen.Multimedia
Assembly:
Tizen.Multimedia.Metadata.dll

Represents the audio metadata information.

C#
Copy
public class AudioMetadata
Inheritance
object
AudioMetadata

Properties

View Source

BitPerSample

Gets the bit per sample of the audio.

Declaration
C#
Copy
public int? BitPerSample { get; }
Property Value
Type Description
int?

The bit per sample, or null if the information does not exist.

View Source

BitRate

Gets the audio bitrate.

Declaration
C#
Copy
public int? BitRate { get; }
Property Value
Type Description
int?

The bit rate value, or null if the information does not exist.

View Source

Channels

Gets the audio channels.

Declaration
C#
Copy
public int? Channels { get; }
Property Value
Type Description
int?

The number of the audio channels, or null if the information does not exist.

View Source

Codec

Gets the audio codec type.

Declaration
C#
Copy
public string Codec { get; }
Property Value
Type Description
string
View Source

SampleRate

Gets the audio sample rate.

Declaration
C#
Copy
public int? SampleRate { get; }
Property Value
Type Description
int?

The sample rate, or null if the information does not exist.

View Source

StreamCount

Gets the audio stream count.

Declaration
C#
Copy
public int StreamCount { get; }
Property Value
Type Description
int

The number of audio streams.

Methods

View Source

ToString()

Returns a string that represents the current object.

Declaration
C#
Copy
public override string ToString()
Returns
Type Description
string

A string that represents the current object.

Overrides
object.ToString()