MultiCamCaptureSettings

public struct MultiCamCaptureSettings : Codable

The MultiCamCaptureSetting represents the pip capture settings for the video capture.

  • The type of image display mode.

    See more

    Declaration

    Swift

    public enum Mode : String, Codable
  • The default setting for the stream.

    Declaration

    Swift

    public static let `default`: MultiCamCaptureSettings
  • The image display mode.

    Declaration

    Swift

    public let mode: Mode
  • The cornerRadius of the picture in picture image.

    Declaration

    Swift

    public let cornerRadius: CGFloat
  • The region of the picture in picture image.

    Declaration

    Swift

    public let regionOfInterest: CGRect
  • The direction of the splitView position.

    Declaration

    Swift

    public let direction: ImageTransform
  • Create a new MultiCamCaptureSetting.

    Declaration

    Swift

    public init(mode: Mode, cornerRadius: CGFloat, regionOfInterest: CGRect, direction: ImageTransform)