Video SDK for iOS API Reference
All Classes Files Functions Enumerations Enumerator Properties
ZoomVideoSDKVideoHelper.h
Go to the documentation of this file.
1//
2// ZoomVideoSDKVideoHelper.h
3// ZoomVideoSDK
4//
5// Created by Zoom Video Communications on 2018/12/6.
6// Copyright © Zoom Video Communications, Inc. All rights reserved.
7//
8
9#import <Foundation/Foundation.h>
10#import <AVFoundation/AVFoundation.h>
11#import <ZoomVideoSDK/ZoomVideoSDKConstants.h>
12
13@protocol ZoomVideoSDKRawDataPipeDelegate;
14
19@interface ZoomVideoSDKVideoStatus : NSObject
23@property (nonatomic, assign) BOOL on;
24
25@end
26
27
36@property (nonatomic, assign) ZoomVideoSDKVideoPreferenceMode mode;
37
42@property (nonatomic, assign) NSUInteger minimumFrameRate;
43
48@property (nonatomic, assign) NSUInteger maximumFrameRate;
49
50@end
51
52
53@interface ZoomVideoSDKCameraDevice : NSObject
54@property (nonatomic, readonly, nullable, copy) NSString* deviceId;
55@property (nonatomic, readonly, nullable, copy) NSString* deviceName;
56@property (nonatomic, readonly, assign) BOOL isSelectDevice;
57@property (nonatomic, readonly, assign) AVCaptureDevicePosition position;
58@property (nonatomic, readonly, nullable, copy) AVCaptureDeviceType deviceType;
59@property (nonatomic, readonly, assign) CGFloat maxZoomFactor; // camera maximum zoom factor. Maximum supported is 10.
60@property (nonatomic, readonly, assign) CGFloat videoZoomFactorUpscaleThreshold;
61
62@end
63
68@interface ZoomVideoSDKVideoHelper : NSObject
69
75- (ZoomVideoSDKError)startVideoPreview:(id<ZoomVideoSDKRawDataPipeDelegate>_Nullable)delegate;
76
82- (ZoomVideoSDKError)stopVideoPreview:(id<ZoomVideoSDKRawDataPipeDelegate> _Nullable)delegate;
83
90- (ZoomVideoSDKError)startVideoCanvasPreview:(UIView * _Nullable)view andAspectMode:(ZoomVideoSDKVideoAspect)aspect;
91
97- (ZoomVideoSDKError)stopVideoCanvasPreview:(UIView * _Nullable)view;
98
103- (ZoomVideoSDKError)startVideo;
104
109- (ZoomVideoSDKError)stopVideo;
110
117- (BOOL)rotateMyVideo:(UIDeviceOrientation)rotation;
118
125- (ZoomVideoSDKError)mirrorMyVideo:(BOOL)enable;
126
132- (BOOL)isMyVideoMirrored;
133
137- (void)switchCamera;
138
144- (NSArray <ZoomVideoSDKCameraDevice *>* _Nullable)getCameraDeviceList;
145
151- (BOOL)switchCamera:(NSString * _Nullable)cameraId;
152
157- (ZoomVideoSDKCameraDevice * _Nullable)getSelectedCamera;
158
164- (ZoomVideoSDKError)setVideoQualityPreference:(ZoomVideoSDKVideoPreferenceSetting * _Nullable)preferenceSetting;
165
166#pragma mark - OriginalAspec -
171- (BOOL)isOriginalAspectRatioEnabled;
172
179- (BOOL)enableOriginalAspectRatio:(BOOL)enabled;
180
181#pragma mark - alpha channel -
187- (BOOL)canEnableAlphaChannelMode;
188
195- (ZoomVideoSDKError)enableAlphaChannelMode:(BOOL)enable;
196
201- (BOOL)isAlphaChannelModeEnabled;
202
210- (BOOL)isDeviceSupportAlphaChannelMode;
211
212#pragma mark - spotlight -
219- (ZoomVideoSDKError)spotLightVideo:(ZoomVideoSDKUser * _Nullable)user;
220
227- (ZoomVideoSDKError)unSpotLightVideo:(ZoomVideoSDKUser * _Nullable)user;
228
234- (ZoomVideoSDKError)unSpotlightAllVideos;
235
241- (NSArray <ZoomVideoSDKUser *>* _Nullable)getSpotlightedVideoUserList;
242
243@end
ZoomVideoSDKVideoPreferenceMode
ZoomVideoSDKError
ZoomVideoSDKError An enumeration of error.
ZoomVideoSDKVideoAspect
ZoomVideoSDKVideoAspect An enumeration of video aspect.
Zoom Video SDK user information.
An interface to control video and manage cameras during a video session.
Video preference interface.When setting custom modes, the maximum and minimum frame rates are provide...
BOOL on
if the camera is turned on. YES : camera turned on, NO : camera turned off