EmbeddedSourceSettings

Settings for embedded captions Source

BroadcastingMedia ProcessingMedia

Properties

Name Type Description
Convert608To708 object
Source608ChannelNumber object
Source608TrackNumber object
TerminateCaptions object
View JSON Schema on GitHub

JSON Schema

mediaconvert-api-embedded-source-settings-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-embedded-source-settings-schema.json",
  "title": "EmbeddedSourceSettings",
  "description": "Settings for embedded captions Source",
  "type": "object",
  "properties": {
    "Convert608To708": {
      "allOf": [
        {
          "$ref": "#/components/schemas/EmbeddedConvert608To708"
        },
        {
          "xml": {
            "name": "convert608To708"
          },
          "description": "Specify whether this set of input captions appears in your outputs in both 608 and 708 format. If you choose Upconvert (UPCONVERT), MediaConvert includes the captions data in two ways: it passes the 608 data through using the 608 compatibility bytes fields of the 708 wrapper, and it also translates the 608 data into 708."
        }
      ]
    },
    "Source608ChannelNumber": {
      "allOf": [
        {
          "$ref": "#/components/schemas/__integerMin1Max4"
        },
        {
          "xml": {
            "name": "source608ChannelNumber"
          },
          "description": "Specifies the 608/708 channel number within the video track from which to extract captions. Unused for passthrough."
        }
      ]
    },
    "Source608TrackNumber": {
      "allOf": [
        {
          "$ref": "#/components/schemas/__integerMin1Max1"
        },
        {
          "xml": {
            "name": "source608TrackNumber"
          },
          "description": "Specifies the video track index used for extracting captions. The system only supports one input video track, so this should always be set to '1'."
        }
      ]
    },
    "TerminateCaptions": {
      "allOf": [
        {
          "$ref": "#/components/schemas/EmbeddedTerminateCaptions"
        },
        {
          "xml": {
            "name": "terminateCaptions"
          },
          "description": "By default, the service terminates any unterminated captions at the end of each input. If you want the caption to continue onto your next input, disable this setting."
        }
      ]
    }
  }
}