transcribe_media
Transcribe each clip's source media locally with word-level timestamps. Generates transcript files used for editing and creating captions.
Instructions
Transcribe each clip's source media locally with word-level timestamps (faster-whisper). Writes a _transcript.json next to each media file (reused by edit_by_transcript / remove_filler_words so media is only transcribed once) and optionally an SRT for captions. Requires the optional [transcribe] extra; degrades to an install hint without it.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| model | No | Whisper model size: tiny, base, small, medium, large-v3 (default base; larger = slower + more accurate) | base |
| filepath | Yes | Path to FCPXML file | |
| language | No | ISO language code hint (e.g. 'en'); auto-detected if omitted | |
| clip_name | No | Only transcribe the clip with this name | |
| write_srt | No | Also write a _transcript.srt next to each media file (plugs into import_srt_markers) |