remove_from_timeline
Remove a clip from the timeline in Adobe Premiere Pro with options to ripple delete (close gap) or lift (leave gap). Simplify video editing workflows through automated clip management.
Instructions
Removes a clip from the timeline.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
clipId | Yes | The ID of the clip on the timeline to remove | |
deleteMode | No | Whether to ripple delete (close gap) or lift (leave gap) |
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 remove",
"type": "string"
},
"deleteMode": {
"description": "Whether to ripple delete (close gap) or lift (leave gap)",
"enum": [
"ripple",
"lift"
],
"type": "string"
}
},
"required": [
"clipId"
],
"type": "object"
}