SegmentDetection

public struct SegmentDetection : AWSShape

Undocumented

  • Declaration

    Swift

    public static var _members: [AWSShapeMember]
  • The duration of the detected segment in milliseconds.

    Declaration

    Swift

    public let durationMillis: Int64?
  • The duration of the timecode for the detected segment in SMPTE format.

    Declaration

    Swift

    public let durationSMPTE: String?
  • The frame-accurate SMPTE timecode, from the start of a video, for the end of a detected segment. EndTimecode is in HH:MM:SS:fr format (and ;fr for drop frame-rates).

    Declaration

    Swift

    public let endTimecodeSMPTE: String?
  • The end time of the detected segment, in milliseconds, from the start of the video.

    Declaration

    Swift

    public let endTimestampMillis: Int64?
  • If the segment is a shot detection, contains information about the shot detection.

    Declaration

    Swift

    public let shotSegment: ShotSegment?
  • The frame-accurate SMPTE timecode, from the start of a video, for the start of a detected segment. StartTimecode is in HH:MM:SS:fr format (and ;fr for drop frame-rates).

    Declaration

    Swift

    public let startTimecodeSMPTE: String?
  • The start time of the detected segment in milliseconds from the start of the video.

    Declaration

    Swift

    public let startTimestampMillis: Int64?
  • If the segment is a technical cue, contains information about the technical cue.

    Declaration

    Swift

    public let technicalCueSegment: TechnicalCueSegment?
  • The type of the segment. Valid values are TECHNICAL_CUE and SHOT.

    Declaration

    Swift

    public let type: SegmentType?
  • Undocumented

    Declaration

    Swift

    public init(durationMillis: Int64? = nil, durationSMPTE: String? = nil, endTimecodeSMPTE: String? = nil, endTimestampMillis: Int64? = nil, shotSegment: ShotSegment? = nil, startTimecodeSMPTE: String? = nil, startTimestampMillis: Int64? = nil, technicalCueSegment: TechnicalCueSegment? = nil, type: SegmentType? = nil)