Get Project Item Camera Metadata
Reads common camera-related imported XMP fields when available. Returns one JSON-safe grouped object; missing fields are omitted and are normal for many formats. Use the scalar field getter when a Blockly workflow needs one value directly.
Inputs
| Input | Required | Value Kind | Types | Enum Values |
|---|---|---|---|---|
item | yes | expression | reference, string | — |
Notes
No additional notes are available yet.
See Also
- Premiere Reference Paths: Explains Premiere reference path strings for project items, sequences, tracks, timeline items, markers, components, and parameters.
Examples
Copy Pretty Camera Metadata JSON To Clipboard
Serializes the first selected item's fixed-field Camera metadata object with two-space indentation and copies the resulting JSON text to the clipboard.
Topics: json, metadata, clipboard, pretty printing
Source: patterns/ex-json-copy-pretty-camera-metadata-to-clipboard.json
Pass Small Camera Metadata JSON To Python
Serializes the selected item's Camera metadata, enforces a 4096-character limit, and only then passes the JSON string directly to isolated Python as one process argument.
Topics: json, metadata, runtime python, external process
Source: patterns/ex-json-pass-small-camera-metadata-to-python.json
Write Camera Metadata JSON For Python
Serializes the selected item's Camera metadata, writes compact JSON to a flushed per-run randomized file, lets isolated Python read it, and removes the file after normal process completion.
Topics: json, metadata, files, runtime python, external process
Source: patterns/ex-json-write-camera-metadata-for-python.json