Module Values.VideoMetadataSource

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

Sourcetype nonrec t = {
  1. codec : String_.t option;
    (*

    Type of compression used in the analyzed video.

    *)
  2. durationMillis : ULong.t option;
    (*

    Length of the video in milliseconds.

    *)
  3. format : String_.t option;
    (*

    Format of the analyzed video. Possible values are MP4, MOV and AVI.

    *)
  4. frameRate : Float_.t option;
    (*

    Number of frames per second in the video.

    *)
  5. frameHeight : ULong.t option;
    (*

    Vertical pixel dimension of the video.

    *)
  6. frameWidth : ULong.t option;
    (*

    Horizontal pixel dimension of the video.

    *)
  7. colorRange : VideoColorRange.t option;
    (*

    A description of the range of luminance values in a video, either LIMITED (16 to 235) or FULL (0 to 255).

    *)
}
Sourceval make : ?codec:??? -> ?durationMillis:??? -> ?format:??? -> ?frameRate:??? -> ?frameHeight:??? -> ?frameWidth:??? -> ?colorRange:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `Float of Float_.t | `Long of ULong.t | `String of String_.t ]) list ]
Sourceval to_query : t -> Awso.Client.Query.t
Sourceval of_xml : Awso.Xml.t -> t
Sourceval of_string : string -> t
Sourceval of_json : Yojson.Safe.t -> t
Sourceval to_json : t -> Yojson.Safe.t