Transition

public struct Transition : XMLRepresentable, Offsettable

Undocumented

  • The video filters applied to the transition.

    Declaration

    Swift

    public var videoFilters: [VideoFilter]
  • The audio filters applied to the transition.

    Declaration

    Swift

    public var audioFilters: [AudioFilter]
  • The markers attached to the transition.

    Declaration

    Swift

    public var markers: [Marker]
  • The chapter markers attached to the transition.

    Declaration

    Swift

    public var chapterMarkers: [ChapterMarker]
  • The ratings associated with the transition.

    Declaration

    Swift

    public var ratings: [Rating]
  • The keywords associated with the transition.

    Declaration

    Swift

    public var keywords: [Keyword]
  • The analysis markers attached to the transition.

    Declaration

    Swift

    public var analysisMarkers: [AnalysisMarker]
  • The metadata associated with the transition.

    Declaration

    Swift

    public var metadata: [Metadatum]? { get set }
  • The reserved field of the transition.

    Declaration

    Swift

    public var reserved: String?
  • The name of the transition.

    Declaration

    Swift

    public var name: String?
  • The offset of the transition.

    Declaration

    Swift

    public var offset: CMTime?
  • The duration of the transition.

    Declaration

    Swift

    public var duration: CMTime
  • Initializes a new transition.

    Declaration

    Swift

    public init(offset: CMTime = .zero, name: String? = nil, duration: CMTime)

    Parameters

    offset

    The offset of the transition.

    name

    The name of the transition.

    duration

    The duration of the transition.