Resources

public struct Resources : XMLRepresentable

A container for the resources contained in a FCPXML document.

  • The assets included in a FCPXML document.

    Declaration

    Swift

    public var assets: [Asset]
  • The effects included in a FCPXML document.

    Declaration

    Swift

    public var effects: [Effect]
  • The formats included in a FCPXML document.

    Declaration

    Swift

    public var formats: [Format]
  • The media included in a FCPXML document.

    Declaration

    Swift

    public var medias: [Media]
  • Initializes a container of FCPXML resources.

    Declaration

    Swift

    public init(assets: [Asset] = [], effects: [Effect] = [], formats: [Format] = [], medias: [Media] = [])

    Parameters

    assets

    The assets to include in a FCPXML document.

    effects

    The effects to include in a FCPXML document.

    formats

    The formats to include in a FCPXML document.

    medias

    The medias to include in a FCPXML document.