export_sequence
Renders and exports a sequence to a video file in Adobe Premiere Pro. Specify output path, format, quality, and resolution for tailored results.
Instructions
Renders and exports a sequence to a video file. This is for creating the final video.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
format | No | The export format or codec | |
outputPath | Yes | The absolute path where the final video file will be saved | |
presetPath | No | Optional path to an export preset file (.epr) for specific settings | |
quality | No | Export quality setting | |
resolution | No | Export resolution (e.g., "1920x1080", "3840x2160") | |
sequenceId | Yes | The ID of the sequence to export |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"format": {
"description": "The export format or codec",
"enum": [
"mp4",
"mov",
"avi",
"h264",
"prores"
],
"type": "string"
},
"outputPath": {
"description": "The absolute path where the final video file will be saved",
"type": "string"
},
"presetPath": {
"description": "Optional path to an export preset file (.epr) for specific settings",
"type": "string"
},
"quality": {
"description": "Export quality setting",
"enum": [
"low",
"medium",
"high",
"maximum"
],
"type": "string"
},
"resolution": {
"description": "Export resolution (e.g., \"1920x1080\", \"3840x2160\")",
"type": "string"
},
"sequenceId": {
"description": "The ID of the sequence to export",
"type": "string"
}
},
"required": [
"sequenceId",
"outputPath"
],
"type": "object"
}