add_transition_to_clip
Apply transitions to the start or end of a clip in Adobe Premiere Pro. Specify clip ID, transition name, position, and duration to automate video editing workflows.
Instructions
Adds a transition to the beginning or end of a single clip.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
clipId | Yes | The ID of the clip | |
duration | Yes | The duration of the transition in seconds | |
position | Yes | Whether to add the transition at the start or end of the clip | |
transitionName | Yes | The name of the transition |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"clipId": {
"description": "The ID of the clip",
"type": "string"
},
"duration": {
"description": "The duration of the transition in seconds",
"type": "number"
},
"position": {
"description": "Whether to add the transition at the start or end of the clip",
"enum": [
"start",
"end"
],
"type": "string"
},
"transitionName": {
"description": "The name of the transition",
"type": "string"
}
},
"required": [
"clipId",
"transitionName",
"position",
"duration"
],
"type": "object"
}