export_markers_csv
Export markers matching a prefix to a CSV file in Premiere's UXP data folder, capturing start/end times, duration, timecode, label, and reason. Returns the file path and active sequence.
Instructions
Write a CSV of every marker matching prefix to a file in the Scout plugin's UXP data folder. Columns: startSec, endSec, durationSec, startTimecode (HH:MM:SS), label, reason. Returns the absolute path of the written file. Common usage: prefix='Scout/Quote:' filename='scout-quotes.csv' for quote pulls, or prefix='Scout/Broll:' filename='scout-broll-cues.csv' for B-roll cues. The result always includes activeSequence {name, id} — the sequence this call actually ran against. Compare it across calls to detect the user switching sequences in Premiere mid-session.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| prefix | Yes | Marker name prefix to include (required). | |
| filename | No | Output filename in the UXP data folder. Default 'scout-markers.csv'. |