Preset

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.

Amazon Web ServicesMediaTranscodingVideo

Properties

Name Type Description
Id object
Arn object
Name object
Description object
Container object
Audio object
Video object
Thumbnails object
Type object
View JSON Schema on GitHub

JSON Schema

amazon-elastic-transcoder-preset-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://raw.githubusercontent.com/api-evangelist/amazon-elastic-transcoder/refs/heads/main/json-schema/amazon-elastic-transcoder-preset-schema.json",
  "title": "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>)."
        }
      ]
    }
  }
}