useVideoDevice method

Future<void> useVideoDevice(
  1. String deviceID,
  2. {ZegoPublishChannel? channel}
)

选择使用某个视频设备,支持设置指定推流通道

调用时机:startPreviewstartPublishingStream 后。 注意事项:只适用于 Windows / macOS / Web。 注意:此函数仅在 ZegoExpressVideo SDK 中有效!

Implementation

Future<void> useVideoDevice(String deviceID,
    {ZegoPublishChannel? channel}) async {
  return await ZegoExpressImpl.instance
      .useVideoDevice(deviceID, channel: channel);
}