AudioFilter
public struct AudioFilter : XMLRepresentable
A reference to an audio effect.
-
The data associated with the audio filter.
Declaration
Swift
public var data: KeyedData?
-
The parameters associated with the audio filter.
Declaration
Swift
public var parameters: [Parameter]
-
The identifier of the
Effect
resource referenced by this audio filter.Declaration
Swift
public let effectID: String
-
The name of the audio filter.
Declaration
Swift
public var name: String?
-
A Boolean value indicating whether the audio filter is enabled.
Declaration
Swift
public var isEnabled: Bool { get set }
-
The preset identifier of the audio filter.
Declaration
Swift
public var presetID: String?
-
Initializes a new audio filter with an effect identifier.
Declaration
Swift
public init(effectID: String, name: String? = nil)
Parameters
effectID
The identifier of the
Effect
referenced by this audio filter.name
The name of the audio filter.