Class VideoMetadata
Definition
- Namespace:
- Tizen.Multimedia
- Assembly:
- Tizen.Multimedia.Metadata.dll
Represents the video metadata information.
public class VideoMetadata
- Inheritance
-
objectVideoMetadata
Properties
View SourceBitRate
Gets the bitrate.
Declaration
public int? BitRate { get; }
Property Value
Type | Description |
---|---|
int? | The bitrate value, or null if the information does not exist. |
Codec
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. |
Fps
Gets the video fps.
Declaration
public int? Fps { get; }
Property Value
Type | Description |
---|---|
int? | The fps value, or null if the information does not exist. |
Height
Gets the height of the video.
Declaration
public int? Height { get; }
Property Value
Type | Description |
---|---|
int? | The height value, or null if the information does not exist. |
StreamCount
Gets the video stream count.
Declaration
public int StreamCount { get; }
Property Value
Type | Description |
---|---|
int | The number of video streams. |
Width
Gets the width of the video.
Declaration
public int? Width { get; }
Property Value
Type | Description |
---|---|
int? | The width value, or null if the information does not exist. |
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. |
Overrides
object.ToString()