-
Notifications
You must be signed in to change notification settings - Fork 2
ParticipantMedia
Ajša Terko edited this page Aug 7, 2025
·
2 revisions
Creates a new instance of ParticipantMedia with the sent audio and video information.
-
audio:Audio- Represents audio information about the participant. -
video:Video- Represents video information about the participant.
N/A
let audio = Audio(true, false);
let video = Video(false);
let participantMedia = ParticipantMedia(audio, video);
os_log("Participant media audio muted: %@, participant media audio deafened: %@, participant media video blinded: %@", participantMedia.audio.muted, participantMedia.audio.deaf, participantMedia.video.blind);Represents the value of the participant's audio information as an Audio object.
Represents the value of the participant's video information as a Video object.