Class: Aws::MediaConvert::Types::FrameRate

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

Overview

The frame rate of the video or audio track.

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#denominatorInteger

The denominator, or bottom number, in the fractional frame rate. For example, if your frame rate is 24000 / 1001 (23.976 frames per second), then the denominator would be 1001.

Returns:

  • (Integer)


5407
5408
5409
5410
5411
5412
# File 'lib/aws-sdk-mediaconvert/types.rb', line 5407

class FrameRate < Struct.new(
  :denominator,
  :numerator)
  SENSITIVE = []
  include Aws::Structure
end

#numeratorInteger

The numerator, or top number, in the fractional frame rate. For example, if your frame rate is 24000 / 1001 (23.976 frames per second), then the numerator would be 24000.

Returns:

  • (Integer)


5407
5408
5409
5410
5411
5412
# File 'lib/aws-sdk-mediaconvert/types.rb', line 5407

class FrameRate < Struct.new(
  :denominator,
  :numerator)
  SENSITIVE = []
  include Aws::Structure
end