apply_effect
Adds specified visual or audio effects to a selected clip in Adobe Premiere Pro, allowing customization of parameters for precise editing control.
Instructions
Applies a visual or audio effect to a specific clip on the timeline.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
clipId | Yes | The ID of the clip to apply the effect to | |
effectName | Yes | The name of the effect to apply (e.g., "Gaussian Blur", "Lumetri Color") | |
parameters | No | Key-value pairs for the effect's parameters |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"clipId": {
"description": "The ID of the clip to apply the effect to",
"type": "string"
},
"effectName": {
"description": "The name of the effect to apply (e.g., \"Gaussian Blur\", \"Lumetri Color\")",
"type": "string"
},
"parameters": {
"additionalProperties": {},
"description": "Key-value pairs for the effect's parameters",
"type": "object"
}
},
"required": [
"clipId",
"effectName"
],
"type": "object"
}