export_frame
Export a specific frame from a Premiere Pro sequence as an image file in formats like PNG, JPG, or TIFF by specifying the sequence ID, timestamp, and output path.
Instructions
Exports a single frame from a sequence as an image file.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
format | No | The image format | |
outputPath | Yes | The absolute path where the image file will be saved | |
sequenceId | Yes | The ID of the sequence | |
time | Yes | The time in seconds to export the frame from |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"format": {
"description": "The image format",
"enum": [
"png",
"jpg",
"tiff"
],
"type": "string"
},
"outputPath": {
"description": "The absolute path where the image file will be saved",
"type": "string"
},
"sequenceId": {
"description": "The ID of the sequence",
"type": "string"
},
"time": {
"description": "The time in seconds to export the frame from",
"type": "number"
}
},
"required": [
"sequenceId",
"time",
"outputPath"
],
"type": "object"
}