MovSettings

These settings relate to your QuickTime MOV output container.

BroadcastingMedia ProcessingMedia

Properties

Name Type Description
ClapAtom object
CslgAtom object
Mpeg2FourCCControl object
PaddingControl object
Reference object
View JSON Schema on GitHub

JSON Schema

mediaconvert-api-mov-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-mov-settings-schema.json",
  "title": "MovSettings",
  "description": "These settings relate to your QuickTime MOV output container.",
  "type": "object",
  "properties": {
    "ClapAtom": {
      "allOf": [
        {
          "$ref": "#/components/schemas/MovClapAtom"
        },
        {
          "xml": {
            "name": "clapAtom"
          },
          "description": "When enabled, include 'clap' atom if appropriate for the video output settings."
        }
      ]
    },
    "CslgAtom": {
      "allOf": [
        {
          "$ref": "#/components/schemas/MovCslgAtom"
        },
        {
          "xml": {
            "name": "cslgAtom"
          },
          "description": "When enabled, file composition times will start at zero, composition times in the 'ctts' (composition time to sample) box for B-frames will be negative, and a 'cslg' (composition shift least greatest) box will be included per 14496-1 amendment 1. This improves compatibility with Apple players and tools."
        }
      ]
    },
    "Mpeg2FourCCControl": {
      "allOf": [
        {
          "$ref": "#/components/schemas/MovMpeg2FourCCControl"
        },
        {
          "xml": {
            "name": "mpeg2FourCCControl"
          },
          "description": "When set to XDCAM, writes MPEG2 video streams into the QuickTime file using XDCAM fourcc codes. This increases compatibility with Apple editors and players, but may decrease compatibility with other players. Only applicable when the video codec is MPEG2."
        }
      ]
    },
    "PaddingControl": {
      "allOf": [
        {
          "$ref": "#/components/schemas/MovPaddingControl"
        },
        {
          "xml": {
            "name": "paddingControl"
          },
          "description": "Unless you need Omneon compatibility: Keep the default value, None. To make this output compatible with Omneon: Choose Omneon. When you do, MediaConvert increases the length of the 'elst' edit list atom. Note that this might cause file rejections when a recipient of the output file doesn't expect this extra padding."
        }
      ]
    },
    "Reference": {
      "allOf": [
        {
          "$ref": "#/components/schemas/MovReference"
        },
        {
          "xml": {
            "name": "reference"
          },
          "description": "Always keep the default value (SELF_CONTAINED) for this setting."
        }
      ]
    }
  }
}