public final class AVCaptureVideoStabilizationMode
extends java.lang.Object
Constants indicating the modes of video stabilization supported by the device's format.
[@constant] AVCaptureVideoStabilizationModeOff Indicates that video should not be stabilized. [@constant] AVCaptureVideoStabilizationModeStandard Indicates that video should be stabilized using the standard video stabilization algorithm introduced with iOS 5.0. Standard video stabilization has a reduced field of view. Enabling video stabilization may introduce additional latency into the video capture pipeline. [@constant] AVCaptureVideoStabilizationModeCinematic Indicates that video should be stabilized using the cinematic stabilization algorithm for more dramatic results. Cinematic video stabilization has a reduced field of view compared to standard video stabilization. Enabling cinematic video stabilization introduces much more latency into the video capture pipeline than standard video stabilization and consumes significantly more system memory. Use narrow or identical min and max frame durations in conjunction with this mode. [@constant] AVCaptureVideoStabilizationModeCinematicExtended Indicates that the video should be stabilized using the extended cinematic stabilization algorithm. Enabling extended cinematic stabilization introduces longer latency into the video capture pipeline compared to the AVCaptureVideoStabilizationModeCinematic and consumes more memory, but yields improved stability. It is recommended to use identical or similar min and max frame durations in conjunction with this mode. [@constant] AVCaptureVideoStabilizationModeAuto Indicates that the most appropriate video stabilization mode for the device and format should be chosen.
| Modifier and Type | Field and Description |
|---|---|
static long |
Auto |
static long |
Cinematic |
static long |
CinematicExtended |
static long |
Off |
static long |
Standard |
public static final long Off
public static final long Standard
public static final long Cinematic
public static final long Auto
public static final long CinematicExtended