You are viewing documentation for version 2 of the AWS SDK for Ruby. Version 3 documentation can be found here.

Class: Aws::ElasticTranscoder::Types::DetectedProperties

Inherits:
Struct
  • Object
show all
Defined in:
(unknown)

Overview

Note:

When passing DetectedProperties as input to an Aws::Client method, you can use a vanilla Hash:

{
  width: 1,
  height: 1,
  frame_rate: "FloatString",
  file_size: 1,
  duration_millis: 1,
}

The detected properties of the input file. Elastic Transcoder identifies these values from the input file.

Returned by:

Instance Attribute Summary collapse

Instance Attribute Details

#duration_millisInteger

The detected duration of the input file, in milliseconds.

Returns:

  • (Integer)

    The detected duration of the input file, in milliseconds.

#file_sizeInteger

The detected file size of the input file, in bytes.

Returns:

  • (Integer)

    The detected file size of the input file, in bytes.

#frame_rateString

The detected frame rate of the input file, in frames per second.

Returns:

  • (String)

    The detected frame rate of the input file, in frames per second.

#heightInteger

The detected height of the input file, in pixels.

Returns:

  • (Integer)

    The detected height of the input file, in pixels.

#widthInteger

The detected width of the input file, in pixels.

Returns:

  • (Integer)

    The detected width of the input file, in pixels.