-
Notifications
You must be signed in to change notification settings - Fork 3
ParticipantMedia
Kenan Genjac edited this page Feb 23, 2023
·
1 revision
Creates a new instance of ParticipantMedia
with the sent audio
information.
-
audio
:Audio
- Represents audio information about the participant.
N/A
let audio = Audio(true, false);
let participantMedia = ParticipantMedia(audio);
os_log("Participant media audio muted: %@, participant media audio deafened: %@", participantMedia.audio.muted, participantMedia.audio.deaf);
Represents the value of the participant's audio information as an Audio
object.