create_sequence
Automate the creation of new sequences in Adobe Premiere Pro by specifying name, resolution, and frame rate, streamlining video project setup for efficient editing and integration.
Instructions
Create a new sequence in Premiere Pro
Input Schema
Name | Required | Description | Default |
---|---|---|---|
framerate | No | Frame rate (default: 23.976) | |
height | No | Height in pixels (default: 1080) | |
name | Yes | Name of the new sequence | |
width | No | Width in pixels (default: 1920) |
Input Schema (JSON Schema)
{
"properties": {
"framerate": {
"description": "Frame rate (default: 23.976)",
"type": "number"
},
"height": {
"description": "Height in pixels (default: 1080)",
"type": "number"
},
"name": {
"description": "Name of the new sequence",
"type": "string"
},
"width": {
"description": "Width in pixels (default: 1920)",
"type": "number"
}
},
"required": [
"name"
],
"type": "object"
}