Class VideoMetadata
Definition
- Namespace:
- Tizen.Multimedia
- Assembly:
- Tizen.Multimedia.Metadata.dll
- API Level:
- 4
Represents the video metadata information.
public class VideoMetadata
- Inheritance
-
VideoMetadata
Properties
View SourceBitRate
Gets the bitrate.
Declaration
public int? BitRate { get; }
Property Value
Type | Description |
---|---|
Nullable<Int32> | The bitrate value, or null if the information does not exist. |
API Level: 4
View SourceCodec
Gets the codec type of the video.
Declaration
public string Codec { get; }
Property Value
Type | Description |
---|---|
String | A string representing the codec type, or null if the information does not exist. |
API Level: 4
View SourceFps
Gets the video fps.
Declaration
public int? Fps { get; }
Property Value
Type | Description |
---|---|
Nullable<Int32> | The fps value, or null if the information does not exist. |
API Level: 4
View SourceHeight
Gets the height of the video.
Declaration
public int? Height { get; }
Property Value
Type | Description |
---|---|
Nullable<Int32> | The height value, or null if the information does not exist. |
API Level: 4
View SourceStreamCount
Gets the video stream count.
Declaration
public int StreamCount { get; }
Property Value
Type | Description |
---|---|
Int32 | The number of video streams. |
API Level: 4
View SourceWidth
Gets the width of the video.
Declaration
public int? Width { get; }
Property Value
Type | Description |
---|---|
Nullable<Int32> | The width value, or null if the information does not exist. |
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. |