setAppOrientation method

Future<void> setAppOrientation(
  1. DeviceOrientation orientation,
  2. {ZegoPublishChannel? channel}
)

设置采集视频的朝向,支持设置其他通道的推流。

支持版本:1.1.0 及以上。 详情描述:设置视频的朝向,详细的介绍可参考文档 https://doc-zh.zego.im/faq/express_video_capture_rotation 业务场景:用户使用移动设备进行直播或视频通话时,可以根据现场设置不同的视频方向。 调用时机:调用 createEngine 之后。 使用限制:目前只支持 iOS 和 Android 平台。 注意:此函数仅在 ZegoExpressVideo SDK 中有效!

  • orientation 视频的朝向。
  • channel 推流通道。

Implementation

Future<void> setAppOrientation(DeviceOrientation orientation,
    {ZegoPublishChannel? channel}) async {
  return await ZegoExpressImpl.instance
      .setAppOrientation(orientation, channel: channel);
}