VideoClipLibraryMode

@objc(PESDKVideoClipLibraryMode)
public enum VideoClipLibraryMode : Int

The mode determines which library type should be displayed when the user wants to add a VideoClip within the CompositionToolController. If set to any other mode than .none an action button is added as last item in the composition menu which presents the corresponding selection controller.

In order to enable/disable personal video clips within the VideoClipToolController please refer to VideoClipToolControllerOptions.personalVideoClipsEnabled.

  • Modally presents an UIImagePickerController to add personal video clips to the video composition.

    Declaration

    Swift

    case personal
  • Presents a VideoClipToolController in which the user can select predefined video clips.

    Declaration

    Swift

    case predefined
  • In this mode the user is not allowed to add video clips so no action button is added in the composition menu.

    Declaration

    Swift

    case none