Export Sequence Frame
Exports one still frame from a sequence directly to disk. This is a direct exporter path, not an Adobe Media Encoder queue workflow. outputPath must use one of the currently supported still-image extensions exposed by Premiere's exporter. storeResultIn stores boolean success. If sequence is omitted, the block uses the active sequence when supported. Use onError to decide whether errors stop the script, continue, or return false when the block supports it. If storeResultIn is set, the block also writes a result variable back to your graph.
Inputs
| Input | Required | Value Kind | Types | Enum Values |
|---|---|---|---|---|
sequence | no | expression | reference, string, null | — |
timeSeconds | yes | expression | number | — |
outputPath | yes | expression | string | — |
width | yes | expression | number | — |
height | yes | expression | number | — |
onError | no | expression | enum-string | STOP, CONTINUE, RETURN_FALSE |
storeResultIn | no | variable-name | variable-name | — |
Notes
- Exports one frame from a sequence directly to disk.
- This is a direct exporter path, not an Adobe Media Encoder queue workflow.
outputPathmust use one of the currently supported still-image extensions exposed by Premiere's exporter.storeResultInstores boolean success.
See Also
- Premiere Reference Paths: Explains Premiere reference path strings for project items, sequences, tracks, timeline items, markers, components, and parameters.
Examples
Render Active-Sequence Frames At Equal Distances To Fixed Folder
Exports a small evenly spaced set of `.png` frames across the active sequence to a fixed folder path, so visual timeline sampling can be runtime-validated deterministically.
Topics: frame export, visual probing, timeline sampling, runtime validation
Source: patterns/ex-sequence-render-active-sequence-frames-equal-distances-fixed-folder.json
Render Frames At Sequence Markers To Fixed Folder
Exports one `.png` frame per active-sequence marker to a fixed folder path, so marker-driven still export can be runtime-validated deterministically.
Topics: markers, frame export, review stills, runtime validation
Source: patterns/ex-markers-render-active-sequence-frames-fixed-folder.json
Export Transcript And Reference Frame
Creates a temporary sequence from the first selected project item, waits briefly, exports transcript JSON if available, and writes one reference frame for visual verification.
Topics: semantic probing, transcript, frame export, visual verification
Source: recipes/ex-semantic-export-transcript-and-reference-frame.json