remove_effect
Remove specific effects from Adobe Premiere Pro clips by specifying the clip ID and effect name, streamlining video editing workflows with precision.
Instructions
Removes an effect from a clip.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
clipId | Yes | The ID of the clip | |
effectName | Yes | The name of the effect to remove |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"clipId": {
"description": "The ID of the clip",
"type": "string"
},
"effectName": {
"description": "The name of the effect to remove",
"type": "string"
}
},
"required": [
"clipId",
"effectName"
],
"type": "object"
}