-
Notifications
You must be signed in to change notification settings - Fork 0
ConferenceOptions
Adnan Arnautović edited this page Jan 26, 2023
·
1 revision
init(audio: Bool = true, video: Bool = false, _ videoOptions: VideoOptions = VideoOptions())
audio: Bool
video: Bool
videoOptions: VideoOptions
Creates an instance of ConferenceOptions
.
-
audio
:Bool
- Flag indicating whether the local audio should be enabled for the conference call.true
if the local audio should be enabled. Enabled by default. -
video
:Bool
- Flag indicating whether the local video should be enabled for the conference call.true
if the local video should be enabled. Disabled by default. -
videoOptions
:VideoOptions
- Optional video configuration to be used when joining a conference call.
-
ConferenceOptions
- Instance of theConferenceOptions
.
let conferenceOptions = ConferenceOptions(audio: false, video: true, VideoOptions(CameraOrientation.back))
Getter for the audio
field.
none
-
Bool
- Value of theaudio
field.
let conferenceOptions = ConferenceOptions(audio: false, video: true, VideoOptions(CameraOrientation.back))
let audio = conferenceOptions.audio
Getter for the video
field.
none
-
Bool
- Value of thevideo
field.
let conferenceOptions = ConferenceOptions(audio: false, video: true, VideoOptions(CameraOrientation.back))
let video = conferenceOptions.video
Getter for the videoOptions
field.
none
-
VideoOptions
- Value of thevideoOptions
field.
let conferenceOptions = ConferenceOptions(audio: false, video: true, VideoOptions(CameraOrientation.back))
let videoOptions = conferenceOptions.videoOptions
- Prerequisites
- Events
- InfobipRTC
- Call
- IncomingCall
- OutgoingCall
- CallRequest
- CallConversationsRequest
- CallOptions
- VideoOptions
- VideoTrack
- RecordingOptions
- CameraOrientation
- CallPhoneNumberOptions
- CallStatus
- CallError
- DTMFError
- ErrorCode
- RTCUser
- CallDelegate
- CallRingingEvent
- CallEstablishedEvent
- CallUpdatedEvent
- CallHangupEvent
- CallErrorEvent
- InfobipSimulator
- Conference
- ConferenceDelegate
- ConferenceRequest
- ConferenceStatus
- ConferenceError
- ConferenceUser
- NetworkQuality
- NetworkQualityChangedEvent
- NetworkQualityDelegate