duplicate_sequence
Duplicates a sequence in Adobe Premiere Pro with a new name, enabling efficient workflow management and content replication within video editing projects.
Instructions
Creates a copy of an existing sequence with a new name.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
newName | Yes | The name for the new sequence copy | |
sequenceId | Yes | The ID of the sequence to duplicate |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"newName": {
"description": "The name for the new sequence copy",
"type": "string"
},
"sequenceId": {
"description": "The ID of the sequence to duplicate",
"type": "string"
}
},
"required": [
"sequenceId",
"newName"
],
"type": "object"
}