Class VideoMetadata
Video information.
Inherited Members
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