Sequence Create From Items
Creates a new sequence from one or more project items and returns its sequence reference through `storeResultIn` when that variable is set. The stored value is a sequence ref string ending in `::SEQ`, not a boolean success flag. The newly created sequence becomes the active sequence in Premiere, but later blocks should prefer the stored sequence ref for deterministic follow-up work. Use `targetBin` when the created sequence should be placed into a specific bin. All source items and the optional `targetBin` must belong to the same Premiere project. If `targetBin` points into another open project, the sequence is created there as long as all source items are from that same project.
Inputs
| Input | Required | Value Kind | Types | Enum Values |
|---|---|---|---|---|
name | yes | expression | — | — |
items | yes | expression | — | — |
targetBin | no | expression | — | — |
onError | no | expression | enum-string | STOP, CONTINUE, RETURN_FALSE |
storeResultIn | no | variable-name | — | — |
Notes
- Creates a new sequence from one or more project items and makes it the active sequence in Premiere.
itemsmust resolve to clip-capable project items.storeResultInstores the created sequence ref string (for exampleProject.prproj\New Sequence::SEQ), not a boolean success flag.- Prefer using that stored sequence ref directly in later blocks instead of relying only on the active-sequence side effect.
Examples
Create Sequence From Selected Item And Place Into It
Creates a sequence from the first selected project item, then uses the stored sequence ref for a follow-up placement.
Topics: sequence creation, project inspection, timeline placement
Source: patterns/ex-sequence-create-from-selected-and-place.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
Prepare Selected Clip Transcript After Sequence Placement
Creates a temporary sequence from the first selected project item, waits briefly, then exports the clip transcript JSON to a deterministic file path.
Topics: semantic probing, transcript, sequence placement, transcript readiness
Source: recipes/ex-semantic-export-transcript-after-sequence-placement.json