Marker

public struct Marker : XMLRepresentable

Undocumented

  • The start time of the marker.

    Declaration

    Swift

    public var start: CMTime
  • The duration of the marker.

    Declaration

    Swift

    public var duration: CMTime?
  • The value of the marker.

    Declaration

    Swift

    public var value: String
  • A Boolean value indicating whether the marker is completed.

    Declaration

    Swift

    public var isCompleted: Bool?
  • A note about the marker.

    Declaration

    Swift

    public var note: String?
  • Initializes a new marker.

    Declaration

    Swift

    public init(start: CMTime, duration: CMTime? = nil, value: String)

    Parameters

    start

    The start time of the marker.

    duration

    The duration of the marker.

    value

    The value of the marker.