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

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

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

Overview

Note:

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

{
  framerate_denominator: 1,
  framerate_numerator: 1,
}

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.

Returned by:

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)

    The bottom of the fraction that expresses your overlay frame rate.

#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)

    The top of the fraction that expresses your overlay frame rate.