Published January 18, 2023
Added
-
New interface to support translation
messageList
.-
New interface in
ZoomVideoSDKNetworkConnectionHelper.h
- (BOOL)isAllowViewFullTranscriptEnable; - (NSArray <ZoomVideoSDKLiveTranscriptionMessageInfo*> *)getHistoryTranslationMessageList;
-
New interface in
ZoomVideoSDKLiveTranscriptionMessageInfo
@property (nonatomic, copy)NSString *messageID; @property (nonatomic, copy)NSString *speakerID; @property (nonatomic, copy)NSString *speakerName; @property (nonatomic, copy)NSString *messageContent; @property (nonatomic, assign)NSInteger timeStamp; @property (nonatomic, assign)ZoomVideoSDKLiveTranscriptionOperationType messageType;
-
New callback in
ZoomVideoSDKLiveTranscriptionHelper.h
- (void)onLiveTranscriptionMsgReceived:(ZoomVideoSDKLiveTranscriptionMessageInfo *)messageInfo;
-
-
Add callback to show original and translated content.
-
New interface in
ZoomVideoSDKLiveTranscriptionHelper.h
- (ZoomVideoSDKError)enableReceiveSpokenLanguageContent:(BOOL)enable; - (BOOL)isReceiveSpokenLanguageContentEnabled;
-
New
ZoomVideoSDKLiveTranscriptionOperationType
inZoomVideoSDKConstants.h
ZoomVideoSDKLiveTranscriptionOperationType_NoTranslation
-
New
ZoomVideoSDKVirtualBackgroundDataType
inZoomVideoSDKConstants.h
ZoomVideoSDKVirtualBackgroundDataType_None ZoomVideoSDKVirtualBackgroundDataType_Image ZoomVideoSDKVirtualBackgroundDataType_Blur
-
-
New Function to support virtual background
-
New interface in
ZoomVideoSDKVirtualBackgroundHelper.h
- (BOOL)isSupportVirtualBackground; - (ZoomVideoSDKVirtualBackgroundItem *_Nullable)addVirtualBackgroundItem:(UIImage *_Nullable)image; - (ZoomVideoSDKError)removeVirtualBackgroundItem:(ZoomVideoSDKVirtualBackgroundItem *_Nullable)imageItem; - (NSArray<ZoomVideoSDKVirtualBackgroundItem* > * _Nullable)getVirtualBackgroundItemList; - (ZoomVideoSDKError)setVirtualBackgroundItem:(ZoomVideoSDKVirtualBackgroundItem *_Nullable)imageItem; - (ZoomVideoSDKVirtualBackgroundItem * _Nullable)getSelectedVirtualBackgroundItem;
-
New interface in
ZoomVideoSDKLiveTranscriptionMessageInfo
@property (nonatomic, copy, readonly) NSString * _Nullable imageFilePath; @property (nonatomic, copy, readonly) NSString * _Nullable imageName; @property (nonatomic, assign, readonly) ZoomVideoSDKVirtualBackgroundDataType type; @property (nonatomic, assign, readonly) BOOL canVirtualBackgroundBeDeleted;
-
Changed & Fixed
-
Changed the graphics API from OpenGL to Metal.
-
Added new framework
zoomcml.xcframework
to support virtual background.