Skip to main content

Export Transcript JSON

Category: Pr Bins & Project Items Export Transcript JSON block screenshot

Exports transcript data from a clip project item as a JSON string. Because this is a pure read expression, it composes naturally with `setVar` and `writeTextFile`. For larger outputs, a common pattern is to pass this expression directly into `writeTextFile`.

Inputs

InputRequiredValue KindTypesEnum Values
itemyesexpressionreference, string

Notes

  • Exports transcript data from a clip project item as a JSON string.
  • This is a pure read expression, so it composes naturally with setVar and writeTextFile.
  • For larger outputs, the common pattern is writeTextFile(path, prExportTranscriptJson(...)).
  • In current Premiere behavior, an exported transcript can still look placeholder-like even after HAS_TRANSCRIPT has become true.
  • If transcript content matters semantically, verify the exported JSON before treating it as ready.

See Also

  • Premiere Reference Paths: Explains Premiere reference path strings for project items, sequences, tracks, timeline items, markers, components, and parameters.

Examples

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.

kind: Recipe · format: runtime-dsl · validation: Schema only

Topics: semantic probing, transcript, frame export, visual verification

Source: recipes/ex-semantic-export-transcript-and-reference-frame.json

Download 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.

kind: Recipe · format: runtime-dsl · validation: Schema only

Topics: semantic probing, transcript, sequence placement, transcript readiness

Source: recipes/ex-semantic-export-transcript-after-sequence-placement.json

Download JSON

Probe Basic Transcript Readiness

Checks transcript presence for the first selected project item, exports transcript JSON when present, and logs obvious placeholder signals without pretending to certify completion.

kind: Probe · format: runtime-dsl · validation: Schema only

Topics: semantic probing, transcript readiness, discovery probes

Source: probes/ex-transcript-readiness-selected-project-item.json

Download JSON