Show / Hide Table of Contents

Class VideoSegment

A sequence of frames that was (or appears to be) continuously captured for a label/object/text?.

Inheritance
object
VideoSegment
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 VideoSegment

Properties

EndTimeOffsetMs

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

Video end time offset(Milliseconds).

Remarks

Required

StartTimeOffsetMs

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

Video start time offset(Milliseconds).

Remarks

Required

In this article
Back to top