Class: Aws::MediaConvert::Types::FrameRate
- Inherits:
-
Struct
- Object
- Struct
- Aws::MediaConvert::Types::FrameRate
- 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
-
#denominator ⇒ Integer
The denominator, or bottom number, in the fractional frame rate.
-
#numerator ⇒ Integer
The numerator, or top number, in the fractional frame rate.
Instance Attribute Details
#denominator ⇒ Integer
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.
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 |
#numerator ⇒ Integer
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.
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 |