CaptionSourceFramerate

Ignore this setting unless your input captions format is SCC. To have the service compensate for differing frame rates between your input captions and input video, specify the frame rate of the captions file. Specify this value as a fraction. When you work directly in your JSON job specification, use the settings framerateNumerator and framerateDenominator. For example, you might specify 24 / 1 for 24 fps, 25 / 1 for 25 fps, 24000 / 1001 for 23.976 fps, or 30000 / 1001 for 29.97 fps.

BroadcastingMedia ProcessingMedia

Properties

Name Type Description
FramerateDenominator object
FramerateNumerator object
View JSON Schema on GitHub

JSON Schema

mediaconvert-api-caption-source-framerate-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://raw.githubusercontent.com/api-evangelist/amazon-mediaconvert/refs/heads/main/json-schema/mediaconvert-api-caption-source-framerate-schema.json",
  "title": "CaptionSourceFramerate",
  "description": "Ignore this setting unless your input captions format is SCC. To have the service compensate for differing frame rates between your input captions and input video, specify the frame rate of the captions file. Specify this value as a fraction. When you work directly in your JSON job specification, use the settings framerateNumerator and framerateDenominator. For example, you might specify 24 / 1 for 24 fps, 25 / 1 for 25 fps, 24000 / 1001 for 23.976 fps, or 30000 / 1001 for 29.97 fps.",
  "type": "object",
  "properties": {
    "FramerateDenominator": {
      "allOf": [
        {
          "$ref": "#/components/schemas/__integerMin1Max1001"
        },
        {
          "xml": {
            "name": "framerateDenominator"
          },
          "description": "Specify the denominator of the fraction that represents the frame rate for the setting Caption source frame rate (CaptionSourceFramerate). Use this setting along with the setting Framerate numerator (framerateNumerator)."
        }
      ]
    },
    "FramerateNumerator": {
      "allOf": [
        {
          "$ref": "#/components/schemas/__integerMin1Max60000"
        },
        {
          "xml": {
            "name": "framerateNumerator"
          },
          "description": "Specify the numerator of the fraction that represents the frame rate for the setting Caption source frame rate (CaptionSourceFramerate). Use this setting along with the setting Framerate denominator (framerateDenominator)."
        }
      ]
    }
  }
}