Class AudioMetadata
Definition
- Namespace:
- Tizen.Multimedia
- Assembly:
- Tizen.Multimedia.Metadata.dll
- API Level:
- 4
Represents the audio metadata information.
public class AudioMetadata
- Inheritance
-
AudioMetadata
Properties
View SourceBitPerSample
Gets the bit per sample of the audio.
Declaration
public int? BitPerSample { get; }
Property Value
Type | Description |
---|---|
Nullable<Int32> | The bit per sample, or null if the information does not exist. |
API Level: 4
View SourceBitRate
Gets the audio bitrate.
Declaration
public int? BitRate { get; }
Property Value
Type | Description |
---|---|
Nullable<Int32> | The bit rate value, or null if the information does not exist. |
API Level: 4
View SourceChannels
Gets the audio channels.
Declaration
public int? Channels { get; }
Property Value
Type | Description |
---|---|
Nullable<Int32> | The number of the audio channels, or null if the information does not exist. |
API Level: 4
View SourceCodec
Gets the audio codec type.
Declaration
public string Codec { get; }
Property Value
Type | Description |
---|---|
String |
API Level: 4
View SourceSampleRate
Gets the audio sample rate.
Declaration
public int? SampleRate { get; }
Property Value
Type | Description |
---|---|
Nullable<Int32> | The sample rate, or null if the information does not exist. |
API Level: 4
View SourceStreamCount
Gets the audio stream count.
Declaration
public int StreamCount { get; }
Property Value
Type | Description |
---|---|
Int32 | The number of audio streams. |
API Level: 4
Methods
View SourceToString()
Returns a string that represents the current object.
Declaration
public override string ToString()
Returns
Type | Description |
---|---|
String | A string that represents the current object. |