add_transition
Insert a transition between two adjacent clips in Adobe Premiere Pro by specifying clip IDs, transition type, and duration, streamlining video editing workflows.
Instructions
Adds a transition (e.g., cross dissolve) between two adjacent clips on the timeline.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
clipId1 | Yes | The ID of the first clip (outgoing) | |
clipId2 | Yes | The ID of the second clip (incoming) | |
duration | Yes | The duration of the transition in seconds | |
transitionName | Yes | The name of the transition to add (e.g., "Cross Dissolve") |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"clipId1": {
"description": "The ID of the first clip (outgoing)",
"type": "string"
},
"clipId2": {
"description": "The ID of the second clip (incoming)",
"type": "string"
},
"duration": {
"description": "The duration of the transition in seconds",
"type": "number"
},
"transitionName": {
"description": "The name of the transition to add (e.g., \"Cross Dissolve\")",
"type": "string"
}
},
"required": [
"clipId1",
"clipId2",
"transitionName",
"duration"
],
"type": "object"
}