Sequence
public struct Sequence : XMLRepresentable
Undocumented
-
A note about the sequence.
Declaration
Swift
public var note: String?
-
The spine of the sequence.
Declaration
Swift
public var spine: Spine
-
The metadata associated with the sequence.
Declaration
Swift
public var metadata: [Metadatum]? { get set }
-
The identifier of the
Format
resource referenced by the sequence.Declaration
Swift
public let formatID: String
-
The duration of the sequence.
Declaration
Swift
public var duration: CMTime?
-
The timecode start time of the sequence.
Declaration
Swift
public var timecodeStart: CMTime?
-
The timecode format of the sequence.
Declaration
Swift
public var timecodeFormat: TimecodeFormat?
-
The audio layout of the sequence.
Declaration
Swift
public var audioLayout: AudioLayout?
-
The audio rate of the sequence.
Declaration
Swift
public var audioRate: AudioRate?
-
The render format of the sequence.
Declaration
Swift
public var renderFormat: String?
-
The keywords associated with the sequence.
Declaration
Swift
public var keywords: String?
-
Initializes a new sequence.
Declaration
Swift
public init(formatID: String, duration: CMTime? = nil, timecodeStart: CMTime? = nil, timecodeFormat: TimecodeFormat? = nil, audioLayout: AudioLayout? = nil, audioRate: AudioRate? = nil, spine: Spine)
Parameters
formatID
The identifier of the
Format
resource referenced by the sequence.duration
The duration of the sequence.
timecodeStart
The timecode start time of the sequence.
timecodeFormat
The timecode format of the sequence.
audioLayout
The audio layout of the sequence.
audioRate
The audio rate of the sequence.
spine
The spine of the sequence.