Allows observing changes to properties. Provide the property which you are interested in and a callback. Whenever the property value changes, you will be notified via the callback.
Usage:
sdk.meetingService.customVideoSourceService.observe("videoSource", function() {
console.info("videoSource is changed to : ", sdk.customVideoSourceService.videoSource)
});
The name of the property to observe for changes.
on change event for the property.
The setCustomVideoTrack method sets a custom video track. It allows you to define a personalized video track to use. By invoking this method, you can supply your own video instead of relying on the default video from the camera.
The setVideoSource method enables the usage of a custom video source and provides an enumeration to set the videoSource to either "CAMERA" or "CUSTOM". The default option is set to "CAMERA", and if any other input is provided it remains the same.
Generated using TypeDoc
This is a getter function that retrieves the present value set by the setVideoSource method.