The iOS microphone recording indicator
Understand the iOS microphone recording indicator behavior.
읽는 시간 1분최근 업데이트: 19일 전
iOS devices display the red bar/orange dot recording indicator while the microphone is in use. When an iOS device is muted by using
VivoxService.Instance.MuteInputDevice()To unmute, set the capture device to “Default Communication Device”:await VivoxService.Instance.SetActiveInputDeviceAsync(VivoxService.Instance.AvailableInputDevices.First(device => device.DeviceName == "No Device"));
await VivoxService.Instance.SetActiveInputDeviceAsync(VivoxService.Instance.AvailableInputDevices.First(device => device.DeviceName == "Default Communication Device"));