Show / Hide Table of Contents

Class VideoMetadata

Video information.

Inheritance
object
VideoMetadata
Inherited Members
object.Equals(object)
object.Equals(object, object)
object.GetHashCode()
object.GetType()
object.MemberwiseClone()
object.ReferenceEquals(object, object)
object.ToString()
Namespace: Oci.AivisionService.Models
Assembly: OCI.DotNetSDK.Aivision.dll
Syntax
public class VideoMetadata

Properties

FrameCount

Declaration
[Required(ErrorMessage = "FrameCount is required.")]
[JsonProperty(PropertyName = "frameCount")]
public int? FrameCount { get; set; }
Property Value
Type Description
int?

Total number of frames.

Remarks

Required

FrameHeight

Declaration
[Required(ErrorMessage = "FrameHeight is required.")]
[JsonProperty(PropertyName = "frameHeight")]
public int? FrameHeight { get; set; }
Property Value
Type Description
int?

Height of each frame.

Remarks

Required

FrameRate

Declaration
[Required(ErrorMessage = "FrameRate is required.")]
[JsonProperty(PropertyName = "frameRate")]
public float? FrameRate { get; set; }
Property Value
Type Description
float?

Video framerate.

Remarks

Required

FrameWidth

Declaration
[Required(ErrorMessage = "FrameWidth is required.")]
[JsonProperty(PropertyName = "frameWidth")]
public int? FrameWidth { get; set; }
Property Value
Type Description
int?

Width of each frame.

Remarks

Required

In this article
Back to top