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

Inherits:
Struct
  • Object
show all
Includes:
Structure
Defined in:
lib/aws-sdk-elastictranscoder/types.rb

Overview

Note:

When making an API call, you may pass DetectedProperties data as a 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.

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#duration_millisInteger

The detected duration of the input file, in milliseconds.

Returns:

  • (Integer)


1990
1991
1992
1993
1994
1995
1996
1997
1998
# File 'lib/aws-sdk-elastictranscoder/types.rb', line 1990

class DetectedProperties < Struct.new(
  :width,
  :height,
  :frame_rate,
  :file_size,
  :duration_millis)
  SENSITIVE = []
  include Aws::Structure
end

#file_sizeInteger

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

Returns:

  • (Integer)


1990
1991
1992
1993
1994
1995
1996
1997
1998
# File 'lib/aws-sdk-elastictranscoder/types.rb', line 1990

class DetectedProperties < Struct.new(
  :width,
  :height,
  :frame_rate,
  :file_size,
  :duration_millis)
  SENSITIVE = []
  include Aws::Structure
end

#frame_rateString

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

Returns:

  • (String)


1990
1991
1992
1993
1994
1995
1996
1997
1998
# File 'lib/aws-sdk-elastictranscoder/types.rb', line 1990

class DetectedProperties < Struct.new(
  :width,
  :height,
  :frame_rate,
  :file_size,
  :duration_millis)
  SENSITIVE = []
  include Aws::Structure
end

#heightInteger

The detected height of the input file, in pixels.

Returns:

  • (Integer)


1990
1991
1992
1993
1994
1995
1996
1997
1998
# File 'lib/aws-sdk-elastictranscoder/types.rb', line 1990

class DetectedProperties < Struct.new(
  :width,
  :height,
  :frame_rate,
  :file_size,
  :duration_millis)
  SENSITIVE = []
  include Aws::Structure
end

#widthInteger

The detected width of the input file, in pixels.

Returns:

  • (Integer)


1990
1991
1992
1993
1994
1995
1996
1997
1998
# File 'lib/aws-sdk-elastictranscoder/types.rb', line 1990

class DetectedProperties < Struct.new(
  :width,
  :height,
  :frame_rate,
  :file_size,
  :duration_millis)
  SENSITIVE = []
  include Aws::Structure
end