MBICameraPreset

enum MBICameraPreset {}

Camera resolution preset

  • 480p video will always be used

    Declaration

    Objective-C

    MBICameraPreset480p

    Swift

    case preset480p = 0
  • 720p video will always be used

    Declaration

    Objective-C

    MBICameraPreset720p

    Swift

    case preset720p = 1
  • 1080p video will always be used

    Declaration

    Objective-C

    MBICameraPreset1080p

    Swift

    case preset1080p = 2
  • 4K video will always be used

    Declaration

    Objective-C

    MBICameraPreset4K

    Swift

    case preset4K = 3
  • The library will calculate optimal resolution based on the use case and device used

    Declaration

    Objective-C

    MBICameraPresetOptimal

    Swift

    case presetOptimal = 4
  • Device’s maximal video resolution will be used.

    Declaration

    Objective-C

    MBICameraPresetMax

    Swift

    case presetMax = 5
  • Device’s photo preview resolution will be used

    Declaration

    Objective-C

    MBICameraPresetPhoto

    Swift

    case presetPhoto = 6