Amazon Elastic Transcoder · JSON Structure

Amazon Elastic Transcoder Preset Structure

Presets are templates that contain most of the settings for transcoding media files from one format to another. Elastic Transcoder includes some default presets for common formats, for example, several iPod and iPhone versions. You can also create your own presets for formats that aren't included among the default presets. You specify which preset you want to use when you create a job.

Type: object Properties: 9
Amazon Web ServicesMediaTranscodingVideo

Preset is a JSON Structure definition published by Amazon Elastic Transcoder, describing 9 properties. It conforms to the https://json-structure.org/meta/core/v0/# meta-schema.

Properties

Id Arn Name Description Container Audio Video Thumbnails Type

Meta-schema: https://json-structure.org/meta/core/v0/#

JSON Structure

Raw ↑
{
  "$schema": "https://json-structure.org/meta/core/v0/#",
  "$id": "https://raw.githubusercontent.com/api-evangelist/amazon-elastic-transcoder/refs/heads/main/json-structure/amazon-elastic-transcoder-preset-structure.json",
  "name": "Preset",
  "description": "Presets are templates that contain most of the settings for transcoding media files from one format to another. Elastic Transcoder includes some default presets for common formats, for example, several iPod and iPhone versions. You can also create your own presets for formats that aren't included among the default presets. You specify which preset you want to use when you create a job.",
  "type": "object",
  "properties": {
    "Id": {
      "allOf": [
        {
          "$ref": "#/components/schemas/Id"
        },
        {
          "description": "Identifier for the new preset. You use this value to get settings for the preset or to delete it."
        }
      ]
    },
    "Arn": {
      "allOf": [
        {
          "$ref": "#/components/schemas/String"
        },
        {
          "description": "The Amazon Resource Name (ARN) for the preset."
        }
      ]
    },
    "Name": {
      "allOf": [
        {
          "$ref": "#/components/schemas/Name"
        },
        {
          "description": "The name of the preset."
        }
      ]
    },
    "Description": {
      "allOf": [
        {
          "$ref": "#/components/schemas/Description"
        },
        {
          "description": "A description of the preset."
        }
      ]
    },
    "Container": {
      "allOf": [
        {
          "$ref": "#/components/schemas/PresetContainer"
        },
        {
          "description": "The container type for the output file. Valid values include <code>flac</code>, <code>flv</code>, <code>fmp4</code>, <code>gif</code>, <code>mp3</code>, <code>mp4</code>, <code>mpg</code>, <code>mxf</code>, <code>oga</code>, <code>ogg</code>, <code>ts</code>, and <code>webm</code>."
        }
      ]
    },
    "Audio": {
      "allOf": [
        {
          "$ref": "#/components/schemas/AudioParameters"
        },
        {
          "description": "A section of the response body that provides information about the audio preset values."
        }
      ]
    },
    "Video": {
      "allOf": [
        {
          "$ref": "#/components/schemas/VideoParameters"
        },
        {
          "description": "A section of the response body that provides information about the video preset values."
        }
      ]
    },
    "Thumbnails": {
      "allOf": [
        {
          "$ref": "#/components/schemas/Thumbnails"
        },
        {
          "description": "A section of the response body that provides information about the thumbnail preset values, if any."
        }
      ]
    },
    "Type": {
      "allOf": [
        {
          "$ref": "#/components/schemas/PresetType"
        },
        {
          "description": "Whether the preset is a default preset provided by Elastic Transcoder (<code>System</code>) or a preset that you have defined (<code>Custom</code>)."
        }
      ]
    }
  }
}