split_clip
Split a video clip at a specified time point into two separate clips using MCP Adobe Premiere Pro’s AI-powered automation for precise editing.
Instructions
Splits a clip at a specific time point, creating two separate clips.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
clipId | Yes | The ID of the clip to split | |
splitTime | Yes | The time in seconds where to split the clip |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"clipId": {
"description": "The ID of the clip to split",
"type": "string"
},
"splitTime": {
"description": "The time in seconds where to split the clip",
"type": "number"
}
},
"required": [
"clipId",
"splitTime"
],
"type": "object"
}