Class VideoMetadata

Definition

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

Represents the video metadata information.

C#
Copy
public class VideoMetadata
Inheritance
VideoMetadata

Properties

View Source

BitRate

Gets the bitrate.

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

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

API Level: 4
View Source

Codec

Gets the codec type of the video.

Declaration
C#
Copy
public string Codec { get; }
Property Value
Type Description
System.String

A string representing the codec type, or null if the information does not exist.

API Level: 4
View Source

Fps

Gets the video fps.

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

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

API Level: 4
View Source

Height

Gets the height of the video.

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

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

API Level: 4
View Source

StreamCount

Gets the video stream count.

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

The number of video streams.

API Level: 4
View Source

Width

Gets the width of the video.

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

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

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