Mute

public struct Mute : XMLRepresentable

Undocumented

  • The fade in effect applied to the mute.

    Declaration

    Swift

    public var fadeIn: FadeIn?
  • The fade out effect applied to the mute.

    Declaration

    Swift

    public var fadeOut: FadeOut?
  • The start time of the mute.

    Declaration

    Swift

    public var start: CMTime?
  • The duration of the mute.

    Declaration

    Swift

    public var duration: CMTime?
  • Initializes a new mute.

    Declaration

    Swift

    public init(start: CMTime? = nil, duration: CMTime? = nil, fadeIn: FadeIn? = nil, fadeOut: FadeOut? = nil)

    Parameters

    start

    The start time of the mute.

    duration

    The duration of the mute.

    fadeIn

    The fade in effect applied to the mute.

    fadeOut

    The fade out effect applied to the mute.