export_project
Export current Adobe Premiere Pro projects or sequences to a specified output path, with customizable settings like preset names and audio inclusion for streamlined workflow automation.
Instructions
Export the current project or sequence
Input Schema
Name | Required | Description | Default |
---|---|---|---|
include_audio | No | Include audio in export (default: true) | |
output_path | Yes | Output file path | |
preset_name | No | Export preset name (default: H.264 High Quality) |
Input Schema (JSON Schema)
{
"properties": {
"include_audio": {
"description": "Include audio in export (default: true)",
"type": "boolean"
},
"output_path": {
"description": "Output file path",
"type": "string"
},
"preset_name": {
"description": "Export preset name (default: H.264 High Quality)",
"type": "string"
}
},
"required": [
"output_path"
],
"type": "object"
}