feat(external_api): Add method for displaying participant on large video

This commit is contained in:
Jaya Allamsetty
2020-09-14 17:26:32 -04:00
committed by Jaya Allamsetty
parent b6792db65f
commit 4d1dba937f
2 changed files with 13 additions and 1 deletions

View File

@@ -948,6 +948,18 @@ export default class JitsiMeetExternalAPI extends EventEmitter {
return setAudioOutputDevice(this._transport, label, deviceId);
}
/**
* Displays the given participant on the large video. If no participant id is specified,
* dominant and pinned speakers will be taken into consideration while selecting the
* the large video participant.
*
* @param {string} participantId - Jid of the participant to be displayed on the large video.
* @returns {void}
*/
setLargeVideoParticipant(participantId) {
this.executeCommand('setLargeVideoParticipant', participantId);
}
/**
* Sets the video input device to the one with the label or id that is
* passed.