Provides the state of closed caption service in a meeting.
Returns if closed captioning can be used in a meeting.
Returns if closed captioning is active in a meeting which has closed captioning capability.
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.closedCaptioningService.observe("closedCaptioningState", function() {
console.info("closedCaptioningState changed to : ", sdk.meetingService.closedCaptioningService.closedCaptioningState)
});
The name of the property to observe for changes.
on change event for the property.
Starts closed captioning if it is enabled in the meeting scheduling options and also the associated meeting feature is enabled. Caption texts can then be observed through the closedCaptionText property.
Stops the ongoing closed captioning.
Generated using TypeDoc
Provides the caption text when closed captioning is active in a meeting.