Media

public struct Media : Resource

Undocumented

  • The multicam contained in the media.

    Declaration

    Swift

    public var multicam: Multicam?
  • The sequence contained in the media.

    Declaration

    Swift

    public var sequence: Sequence?
  • id

    The identifier of the media. This identifier is unique within the context of a FCPXML document and refers to the resource identifier (e.g. r1).

    Declaration

    Swift

    public let id: String
  • The name of the media.

    Declaration

    Swift

    public var name: String?
  • uid

    The unique identifier of the media.

    Declaration

    Swift

    public var uid: String?
  • The identifier of the associated project.

    Declaration

    Swift

    public var projectID: String?
  • The date modified of the media.

    Declaration

    Swift

    public var dateModified: Date?
  • Initializes a new media with a resource identifier.

    Declaration

    Swift

    public init(id: String, name: String? = nil, uid: String? = nil, dateModified: Date? = nil)

    Parameters

    id

    The identifier of the media.

    name

    The name of the media.

    uid

    The unique identifier of the media.

    dateModified

    The date modified of the media.