VideoExporterError

public enum VideoExporterError : Error, CustomStringConvertible

An error describing why a video export failed.

  • The export was cancelled by the user.

    Declaration

    Swift

    case cancelled
  • The video was exported with a watermark because the API key was not provided or is invalid.

    This error can only be produced when an app is in production with an API key, otherwise a log warning will be produced.

    Declaration

    Swift

    case watermarked
  • Exports are not allowed in the background application state.

    Declaration

    Swift

    case backgroundState
  • Metal is only supported on iOS 11+ physical devices and iOS 13+ simulators.

    Declaration

    Swift

    case metalSupport
  • The video was already destroyed and cannot be exported.

    Declaration

    Swift

    case destroyed
  • An internal error occurred.

    Declaration

    Swift

    case internalError(Error)