AliyunClipManager

@interface AliyunClipManager : NSObject

* A class that defines clip managers.

  • * The maximum duration of a video clip.

    Default is 8 seconds.

    Declaration

    Objective-C

    @property (nonatomic) CGFloat maxDuration;
  • * The minimum duration of a video clip.

    Default is 0.5 second.

    Declaration

    Objective-C

    @property (nonatomic) CGFloat minDuration;
  • * The total duration of video clips.

    Declaration

    Objective-C

    @property (nonatomic, readonly) CGFloat duration;
  • * The number of video clips.

    Declaration

    Objective-C

    @property (nonatomic, readonly) NSInteger partCount;
  • * The paths of video clips.

    Declaration

    Objective-C

    @property (nonatomic, strong, readonly) NSArray *videoAbsolutePaths;
  • * The rotation angle of the first video clip.

    Declaration

    Objective-C

    @property (nonatomic, readonly) int firstClipVideoRotation;
  • * Delete all video clips on exit; default is NO

    Declaration

    Objective-C

    @property (nonatomic) BOOL deleteVideoClipsOnExit;
  • * Deletes all video clips.

    Declaration

    Objective-C

    - (void)deleteAllPart;
  • * Deletes the last video clip.

    Declaration

    Objective-C

    - (void)deletePart;
  • * Deletes a video clip.

    Declaration

    Objective-C

    - (void)deletePart:(NSInteger)index;

    Parameters

    index

    The index of the video clip to be deleted.