Represents the `mediaEngine for managing media-related operations within the CallingClient. The media engine provides access to audio and video devices such as cameras, microphones, and speakers within the media layer.
const microphones = await callingClient.mediaEngine.Media.getMicrophones();
const speakers = await callingClient.mediaEngine.Media.getSpeakers();
const cameras = await callingClient.mediaEngine.Media.getCameras();
.
Event to listen to.
Callback for event.
.
Event to remove listener on.
Callback for event.
The
CallingClient
module provides a set of APIs for line registration and calling functionalities within the SDK.The following code snippet demonstrates how to create an instance of
CallingClient
using awebex
instance andcallingConfig
:Example