The iOS microphone recording indicator
Understand the iOS microphone recording indicator behavior.
読み終わるまでの所要時間 1 分最終更新 23日前
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"));