AudioChannelSource

public struct AudioChannelSource : XMLRepresentable

Defines an audio component by its source channels.

  • The loudness adjustment of the audio channel source.

    Declaration

    Swift

    public var loudness: Loudness?
  • The noise reduction adjustment of the audio channel source.

    Declaration

    Swift

    public var noiseReduction: NoiseReduction?
  • The hum reduction adjustment of the audio channel source.

    Declaration

    Swift

    public var humReduction: HumReduction?
  • The equalization adjustment of the audio channel source.

    Declaration

    Swift

    public var equalization: Equalization?
  • The match equalization adjustment of the audio channel source.

    Declaration

    Swift

    public var matchEqualization: MatchEqualization?
  • The volume adjustment of the audio channel source.

    Declaration

    Swift

    public var volume: Volume?
  • The panner adjustment of the audio channel source.

    Declaration

    Swift

    public var panner: Panner?
  • The audio filters applied to the audio channel source.

    Declaration

    Swift

    public var audioFilters: [AudioFilter]
  • The mutes applied to the audio channel source.

    Declaration

    Swift

    public var mutes: [Mute]
  • The audio source channels in the containing clip, such as 1, 2. Channels from underlying assets are sorted by their sourceID and then by their sourceChannels.

    Declaration

    Swift

    public var sourceChannels: String
  • An indication of how the audio source channels are assigned to the output, such as L, R.

    Declaration

    Swift

    public var outputChannels: String?
  • The role of the audio channel source.

    Declaration

    Swift

    public var role: String?
  • The start time of the audio channel source.

    Declaration

    Swift

    public var start: CMTime?
  • The duration of the audio channel source.

    Declaration

    Swift

    public var duration: CMTime?
  • A Boolean value indicating whether the audio channel source is enabled.

    Declaration

    Swift

    public var isEnabled: Bool { get set }
  • A Boolean value indicating whether the audio channel source is active.

    Declaration

    Swift

    public var isActive: Bool { get set }
  • Initializes a new audio channel source with its audio source channels.

    Declaration

    Swift

    public init(sourceChannels: String, role: String? = nil)

    Parameters

    sourceChannels

    The audio source channels in the containing clip, such as 1, 2.

    role

    The role of the audio channel source.