trim_clip
Modify the start and end points of a clip in Adobe Premiere Pro to adjust its length directly through automation, using clip ID and precise timing inputs.
Instructions
Adjusts the in and out points of a clip on the timeline, effectively shortening it.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
clipId | Yes | The ID of the clip on the timeline to trim | |
duration | No | Alternative: set the desired duration in seconds | |
inPoint | No | The new in point in seconds from the start of the clip | |
outPoint | No | The new out point in seconds from the start of the clip |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"clipId": {
"description": "The ID of the clip on the timeline to trim",
"type": "string"
},
"duration": {
"description": "Alternative: set the desired duration in seconds",
"type": "number"
},
"inPoint": {
"description": "The new in point in seconds from the start of the clip",
"type": "number"
},
"outPoint": {
"description": "The new out point in seconds from the start of the clip",
"type": "number"
}
},
"required": [
"clipId"
],
"type": "object"
}