Class AudioMetadata

Definition

Namespace:
Tizen.Multimedia
Assembly:
Tizen.Multimedia.Metadata.dll
API Level:
4

Represents the audio metadata information.

C#
Copy
public class AudioMetadata
Inheritance
System.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
System.Nullable<Int32>

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

API Level: 4
View Source

BitRate

Gets the audio bitrate.

Declaration
C#
Copy
public int? BitRate { get; }
Property Value
Type Description
System.Nullable<Int32>

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

API Level: 4
View Source

Channels

Gets the audio channels.

Declaration
C#
Copy
public int? Channels { get; }
Property Value
Type Description
System.Nullable<Int32>

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

API Level: 4
View Source

Codec

Gets the audio codec type.

Declaration
C#
Copy
public string Codec { get; }
Property Value
Type Description
System.String
API Level: 4
View Source

SampleRate

Gets the audio sample rate.

Declaration
C#
Copy
public int? SampleRate { get; }
Property Value
Type Description
System.Nullable<Int32>

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

API Level: 4
View Source

StreamCount

Gets the audio stream count.

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

The number of audio streams.

API Level: 4

Methods

View Source

ToString()

Returns a string that represents the current object.

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

A string that represents the current object.

Overrides
System.Object.ToString()
API Level: 4