create_proxy_media
Generate low-resolution proxy media for high-resolution files in Adobe Premiere Pro to enhance editing performance and workflow efficiency.
Instructions
Generates low-resolution proxy versions of high-resolution media to improve editing performance.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
projectItemIds | Yes | An array of IDs of the project items to create proxies for | |
proxyPreset | Yes | The name of the proxy preset to use | |
replaceOriginals | No | Whether to replace original media with proxies |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"projectItemIds": {
"description": "An array of IDs of the project items to create proxies for",
"items": {
"type": "string"
},
"type": "array"
},
"proxyPreset": {
"description": "The name of the proxy preset to use",
"type": "string"
},
"replaceOriginals": {
"description": "Whether to replace original media with proxies",
"type": "boolean"
}
},
"required": [
"projectItemIds",
"proxyPreset"
],
"type": "object"
}