delete_sequence
Remove a specific sequence from an Adobe Premiere Pro project by providing its sequence ID using the MCP Adobe Premiere Pro automation tool.
Instructions
Deletes a sequence from the project.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
sequenceId | Yes | The ID of the sequence to delete |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"sequenceId": {
"description": "The ID of the sequence to delete",
"type": "string"
}
},
"required": [
"sequenceId"
],
"type": "object"
}