getCurrentAudioDevice method
- ZegoAudioDeviceType deviceType
获取当前使用的音频设备信息。
支持版本:2.12.0 及以上。
详情描述:获取当前使用的音频设备信息。
业务场景:用于需要手动在多个音频设备间切换的场景。
调用时机:调用 startPublishingStream
或 startPreview
后调用此函数。
使用限制:仅支持 Windows 和 macOS。
相关接口:可通过 getDefaultAudioDeviceID 获取默认音频设备 ID。
deviceType
音频设备类型。是否必填:是。- Returns 音频设备信息。
Implementation
Future<ZegoDeviceInfo> getCurrentAudioDevice(
ZegoAudioDeviceType deviceType) async {
return await ZegoExpressImpl.instance.getCurrentAudioDevice(deviceType);
}