useVideoDevice method
- String deviceID,
- {ZegoPublishChannel? channel}
选择使用某个视频设备,支持设置指定推流通道
调用时机:startPreview
或 startPublishingStream
后。
注意事项:只适用于 Windows / macOS / Web。
注意:此函数仅在 ZegoExpressVideo SDK 中有效!
deviceID
通过 getVideoDeviceList 获取的某个设备的 IDchannel
推流通道
Implementation
Future<void> useVideoDevice(String deviceID,
{ZegoPublishChannel? channel}) async {
return await ZegoExpressImpl.instance
.useVideoDevice(deviceID, channel: channel);
}