DJI Mobile SDK Documentation

      class DJICameraSSDClipFileName

      @interface DJICameraSSDClipFileName : NSObject
      Header:DJICameraSettingsDef.h
      Inherits From:NSObject
      SDK Key:DJICameraKey.DJICameraParamSSDClipFileName
      Description:

      The name of a video file stored in SSD.

      Class Members:
      Equipment Label
      property
      property equipmentLabel
      @property(nonatomic, readonly) char equipmentLabel
      Header:DJICameraSettingsDef.h
      Description:

      A single captical character represents the equipment. The possible value is from 'A' to 'Z'.

      Reel ID
      property
      property reelID
      @property(nonatomic, readonly) uint16_t reelID
      Header:DJICameraSettingsDef.h
      Description:

      The reel ID. The possible value is from 0 to 999.

      Clip ID
      property
      property clipID
      @property(nonatomic, readonly) uint16_t clipID
      Header:DJICameraSettingsDef.h
      Description:

      The clip ID. The possible value is from 0 to 999.

      method initWithEquipmentLabel:reelID:clipID
      - (nullable instancetype)initWithEquipmentLabel:(char)label reelID:(uint16_t)reelID clipID:(uint16_t)clipID
      Header:DJICameraSettingsDef.h
      Description:

      Create a SSD clip name instance.

      Input Parameters:
      char labelThe equipment label of the clip. The valid input is from 'A' to 'Z'.
      uint16_t reelIDThe reel ID. The valid input is from 0 to 999.
      uint16_t clipIDThe clip ID. The valid input is from 0 to 999.
      Return:
      nullable instancetypeA clip name instance. Return nil if the input is invalid.