DJICameraSSDState
@interface DJICameraSSDState : NSObject
This class contains the information about camera’s Solid State Drive (SSD) information, including state, whether it is connected, its capacity, video size and rate, etc.
Supported only by the X5R camera an X5S camera.
-
SSD state information for currently executing operations.
Declaration
Objective-C
@property (readonly, nonatomic) DJICameraSSDOperationState operationState;
-
YES if the SSD is connected. When
isConnected
isNO
, the values for other properties inDJICameraSSDState
are undefined.Declaration
Objective-C
@property (readonly, nonatomic) BOOL isConnected;
-
SSD’s total capacity.
Declaration
Objective-C
@property (readonly, nonatomic) DJICameraSSDCapacity totalSpace;
-
SSD’s remaining time in seconds, based on the current
DJICameraVideoResolution
andDJICameraVideoFrameRate
.Declaration
Objective-C
@property (readonly, nonatomic) int availableRecordingTimeInSeconds;
-
SSD’s remaining capacity in MB.
Declaration
Objective-C
@property (readonly, nonatomic) int remainingSpaceInMegaBytes;
-
Video resolution to be saved to SSD.
Declaration
Objective-C
@property (readonly, nonatomic) DJICameraVideoResolution videoResolution;
-
Video framerate to be saved to SSD.
Declaration
Objective-C
@property (readonly, nonatomic) DJICameraVideoFrameRate videoFrameRate;
-
Number of photos that are shot in RAW burst mode.
Declaration
Objective-C
@property (readonly, nonatomic) NSInteger rawPhotoBurstCount;