Package apple.avfoundation.enums
Class AVCaptureVideoStabilizationMode
- java.lang.Object
-
- apple.avfoundation.enums.AVCaptureVideoStabilizationMode
-
public final class AVCaptureVideoStabilizationMode extends java.lang.Object[@enum] AVCaptureVideoStabilizationMode 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.
-
-
Field Summary
Fields Modifier and Type Field Description static longAutostatic longCinematicstatic longCinematicExtendedstatic longOffstatic longStandard
-
-
-
Field Detail
-
Off
public static final long Off
- See Also:
- Constant Field Values
-
Standard
public static final long Standard
- See Also:
- Constant Field Values
-
Cinematic
public static final long Cinematic
- See Also:
- Constant Field Values
-
Auto
public static final long Auto
- See Also:
- Constant Field Values
-
CinematicExtended
public static final long CinematicExtended
- See Also:
- Constant Field Values
-
-