ae_transcript_to_cuts
Convert a timed transcript into KEEP segments for editing: strip fillers and stutters, add padding around speech, and generate cleaned text plus SRT subtitles.
Instructions
From a timed transcript, remove fillers (um/uh/like/you know/…) and stutters (repeated words), then build KEEP timeline segments with pad_before/pad_after so cuts have a little breathing room. Pass segments to ae_build_smart_edit. Also returns cleaned text + SRT for subtitles (use ae_create_subtitle — no black bars).
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| merge_gap | No | Merge words into one run if gap under this (seconds) | |
| pad_after | No | Seconds of handle after each speech run (default 0.18) | |
| pad_before | No | Seconds of handle before each speech run (default 0.12) | |
| transcript | No | Full transcript object from ae_transcribe_video (full_transcript field) | |
| extra_fillers | No | Additional filler words to strip | |
| remove_fillers | No | ||
| remove_stutters | No | ||
| transcript_path | No | Path to transcript JSON file instead of inline object | |
| aggressive_fillers | No | Also strip discourse fillers: like/basically/actually/well/yeah (default false — keeps natural speech words) |