create-composition
Generate a new composition in Adobe After Effects with customizable settings, including name, dimensions, pixel aspect ratio, duration, frame rate, and background color, for streamlined project creation.
Instructions
Create a new composition in After Effects with specified parameters
Input Schema
Name | Required | Description | Default |
---|---|---|---|
backgroundColor | No | Background color of the composition (RGB values 0-255) | |
duration | No | Duration in seconds (default: 10.0) | |
frameRate | No | Frame rate in frames per second (default: 30.0) | |
height | Yes | Height of the composition in pixels | |
name | Yes | Name of the composition | |
pixelAspect | No | Pixel aspect ratio (default: 1.0) | |
width | Yes | Width of the composition in pixels |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"backgroundColor": {
"additionalProperties": false,
"description": "Background color of the composition (RGB values 0-255)",
"properties": {
"b": {
"maximum": 255,
"minimum": 0,
"type": "integer"
},
"g": {
"maximum": 255,
"minimum": 0,
"type": "integer"
},
"r": {
"maximum": 255,
"minimum": 0,
"type": "integer"
}
},
"required": [
"r",
"g",
"b"
],
"type": "object"
},
"duration": {
"description": "Duration in seconds (default: 10.0)",
"exclusiveMinimum": 0,
"type": "number"
},
"frameRate": {
"description": "Frame rate in frames per second (default: 30.0)",
"exclusiveMinimum": 0,
"type": "number"
},
"height": {
"description": "Height of the composition in pixels",
"exclusiveMinimum": 0,
"type": "integer"
},
"name": {
"description": "Name of the composition",
"type": "string"
},
"pixelAspect": {
"description": "Pixel aspect ratio (default: 1.0)",
"exclusiveMinimum": 0,
"type": "number"
},
"width": {
"description": "Width of the composition in pixels",
"exclusiveMinimum": 0,
"type": "integer"
}
},
"required": [
"name",
"width",
"height"
],
"type": "object"
}