Webex Meetings
Webex Meetings
BNR and other Common APIs
This article provides an overview of the common APIs used to implement Webex functionality in your Android application.
It covers essential configurations such as setting video frame rates, toggling camera usage, enabling background video streaming, setting screen sharing frame rates, and configuring noise reduction. These APIs help you optimize the performance and quality of your Webex integration.
anchorConfigure the Video Frame Rate
anchorSet the maximum transmission frame rate for video:
webex.phone.setAdvancedSetting(AdvancedSetting.VideoMaxTxFPS(value: Int) as AdvancedSetting<*>)
anchorToggle Camera Usage
anchorToggle the usage of the android.hardware.camera2
API:
webex.phone.setAdvancedSetting(AdvancedSetting.VideoEnableCamera2(value: Boolean) as AdvancedSetting<*>)
anchorEnable Background Video Streaming
anchorContinue video streaming when the app is in the background:
webex.phone.enableBackgroundStream(enable: Boolean)