Video SDK for iOS API Reference
Loading...
Searching...
No Matches
ZoomVideoSDKVideoSettingHelper Class Reference

Video setting interface. More...

#include <ZoomVideoSDKVideoSettingHelper.h>

Inherits NSObject.

Instance Methods

(ZoomVideoSDKError- enableFaceBeautyEffect:
 Enables or disables the face beauty effect for the video stream.
(BOOL) - isFaceBeautyEffectEnabled
 Determines whether the face beauty effect is currently enabled.
(ZoomVideoSDKError- setFaceBeautyStrengthValue:
 Sets the intensity level of the face beauty effect (the strength value).
(unsigned int) - getFaceBeautyStrengthValue
 Retrieves the current intensity level of the face beauty effect (the strength value).

Detailed Description

Video setting interface.

Definition at line 13 of file ZoomVideoSDKVideoSettingHelper.h.

Method Documentation

◆ enableFaceBeautyEffect:

- (ZoomVideoSDKError) enableFaceBeautyEffect: (BOOL) enable

Enables or disables the face beauty effect for the video stream.

Parameters
enableYES to enable the face beauty effect, NO to disable it.
Returns
If the function succeeds, it returns Errors_Success. Otherwise, this function returns an error.

◆ getFaceBeautyStrengthValue

- (unsigned int) getFaceBeautyStrengthValue

Retrieves the current intensity level of the face beauty effect (the strength value).

Returns
The current face beauty strength value (0-100).
Note
A higher value indicates a stronger beauty effect.

References getFaceBeautyStrengthValue.

Referenced by getFaceBeautyStrengthValue.

◆ isFaceBeautyEffectEnabled

- (BOOL) isFaceBeautyEffectEnabled

Determines whether the face beauty effect is currently enabled.

Returns
YES if the face beauty effect is enabled. Otherwise, NO.

References isFaceBeautyEffectEnabled.

Referenced by isFaceBeautyEffectEnabled.

◆ setFaceBeautyStrengthValue:

- (ZoomVideoSDKError) setFaceBeautyStrengthValue: (unsigned int) strengthValue

Sets the intensity level of the face beauty effect (the strength value).

Parameters
strengthValueThe desired face beauty strength value (0-100).
Returns
If the function succeeds, it returns Errors_Success. Otherwise, this function returns an error.
Note
The face beauty effect must be enabled before adjusting its strength.