AudioMode

@objc
public enum AudioMode : Int, CaseIterable, CustomStringConvertible

AudioMode describes the audio mode in which the audio client should operate during a meeting session

  • Declaration

    Swift

    public static var allCases: [AudioMode]
  • Declaration

    Swift

    public init?(rawValue: Int)
  • The mono audio mode with single audio channel and 16KHz sampling rate, for both speaker and microphone.

    Declaration

    Swift

    case mono16K = 1
  • The mono audio mode with single audio channel and 48KHz sampling rate, for both speaker and microphone.

    Declaration

    Swift

    case mono48K = 2
  • The stereo audio mode with two audio channels for speaker, and single audio channel for microphone, both with 48KHz sampling rate.

    Declaration

    Swift

    case stereo48K = 3
  • Declaration

    Swift

    public var description: String { get }