apply_lut
Apply a Look-Up Table (LUT) to a video clip in Adobe Premiere Pro for precise color grading. Input clip ID, LUT file path, and intensity to adjust color tones effectively.
Instructions
Applies a Look-Up Table (LUT) to a clip for color grading.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
clipId | Yes | The ID of the clip | |
intensity | No | LUT intensity (0-100) | |
lutPath | Yes | The absolute path to the .cube or .3dl LUT file |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"clipId": {
"description": "The ID of the clip",
"type": "string"
},
"intensity": {
"description": "LUT intensity (0-100)",
"type": "number"
},
"lutPath": {
"description": "The absolute path to the .cube or .3dl LUT file",
"type": "string"
}
},
"required": [
"clipId",
"lutPath"
],
"type": "object"
}