AWSRekognitionVideoMetadata

Objective-C

@interface AWSRekognitionVideoMetadata

Swift

class AWSRekognitionVideoMetadata

Information about a video that Amazon Rekognition analyzed. Videometadata is returned in every page of paginated responses from a Amazon Rekognition video operation.

  • Type of compression used in the analyzed video.

    Declaration

    Objective-C

    @property (nonatomic, strong) NSString *_Nullable codec;

    Swift

    var codec: String? { get set }
  • A description of the range of luminance values in a video, either LIMITED (16 to 235) or FULL (0 to 255).

    Declaration

    Objective-C

    @property (nonatomic) AWSRekognitionVideoColorRange colorRange;

    Swift

    var colorRange: AWSRekognitionVideoColorRange { get set }
  • Length of the video in milliseconds.

    Declaration

    Objective-C

    @property (nonatomic, strong) NSNumber *_Nullable durationMillis;

    Swift

    var durationMillis: NSNumber? { get set }
  • Format of the analyzed video. Possible values are MP4, MOV and AVI.

    Declaration

    Objective-C

    @property (nonatomic, strong) NSString *_Nullable format;

    Swift

    var format: String? { get set }
  • Vertical pixel dimension of the video.

    Declaration

    Objective-C

    @property (nonatomic, strong) NSNumber *_Nullable frameHeight;

    Swift

    var frameHeight: NSNumber? { get set }
  • Number of frames per second in the video.

    Declaration

    Objective-C

    @property (nonatomic, strong) NSNumber *_Nullable frameRate;

    Swift

    var frameRate: NSNumber? { get set }
  • Horizontal pixel dimension of the video.

    Declaration

    Objective-C

    @property (nonatomic, strong) NSNumber *_Nullable frameWidth;

    Swift

    var frameWidth: NSNumber? { get set }