Class: Aws::MediaConvert::Types::MotionImageInsertionFramerate

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

Overview

For motion overlays that don't have a built-in frame rate, specify the frame rate of the overlay in frames per second, as a fraction. For example, specify 24 fps as 24/1. The overlay frame rate doesn't need to match the frame rate of the underlying video.

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#framerate_denominatorInteger

The bottom of the fraction that expresses your overlay frame rate. For example, if your frame rate is 24 fps, set this value to 1.

Returns:

  • (Integer)


9415
9416
9417
9418
9419
9420
# File 'gems/aws-sdk-mediaconvert/lib/aws-sdk-mediaconvert/types.rb', line 9415

class MotionImageInsertionFramerate < Struct.new(
  :framerate_denominator,
  :framerate_numerator)
  SENSITIVE = []
  include Aws::Structure
end

#framerate_numeratorInteger

The top of the fraction that expresses your overlay frame rate. For example, if your frame rate is 24 fps, set this value to 24.

Returns:

  • (Integer)


9415
9416
9417
9418
9419
9420
# File 'gems/aws-sdk-mediaconvert/lib/aws-sdk-mediaconvert/types.rb', line 9415

class MotionImageInsertionFramerate < Struct.new(
  :framerate_denominator,
  :framerate_numerator)
  SENSITIVE = []
  include Aws::Structure
end