|
@@ -948,6 +948,18 @@ export default class JitsiMeetExternalAPI extends EventEmitter {
|
948
|
948
|
return setAudioOutputDevice(this._transport, label, deviceId);
|
949
|
949
|
}
|
950
|
950
|
|
|
951
|
+ /**
|
|
952
|
+ * Displays the given participant on the large video. If no participant id is specified,
|
|
953
|
+ * dominant and pinned speakers will be taken into consideration while selecting the
|
|
954
|
+ * the large video participant.
|
|
955
|
+ *
|
|
956
|
+ * @param {string} participantId - Jid of the participant to be displayed on the large video.
|
|
957
|
+ * @returns {void}
|
|
958
|
+ */
|
|
959
|
+ setLargeVideoParticipant(participantId) {
|
|
960
|
+ this.executeCommand('setLargeVideoParticipant', participantId);
|
|
961
|
+ }
|
|
962
|
+
|
951
|
963
|
/**
|
952
|
964
|
* Sets the video input device to the one with the label or id that is
|
953
|
965
|
* passed.
|