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 is NO, the values for other properties in DJICameraSSDState 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 and DJICameraVideoFrameRate.

    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;