VideoMixerSettings
public struct VideoMixerSettings : Codable, Sendable
Constraints on the audio mixier settings.
-
The default setting for the stream.
Declaration
Swift
public static let `default`: VideoMixerSettings
-
The type of image rendering mode.
See moreDeclaration
Swift
public enum Mode : String, Codable, Sendable
-
Specifies the image rendering mode.
Declaration
Swift
public var mode: Mode
-
Specifies the muted indicies whether freeze video signal or not.
Declaration
Swift
public var isMuted: Bool
-
Specifies the main track number.
Declaration
Swift
public var mainTrack: UInt8
-
Create a new instance.
Declaration
Swift
public init(mode: Mode = .passthrough, isMuted: Bool = false, mainTrack: UInt8 = 0)