effect_adjustable_fade
Apply a customizable fade to a single selected audio clip, avoiding multi-clip crashes. Adjust fade type, start/end levels, and midpoint curve.
Instructions
Apply a customizable fade to the selected audio.
Requires a SINGLE-clip selection - confirmed live that a selection spanning multiple clips triggers an unguarded assert/crash (Au3SelectionController::rightMostSelectedClipEndTime). A clean single-clip selection was also confirmed live to work correctly (isError: false, no crash). Normalize has the same "single clip only" precondition but fails gracefully with a normal error instead of crashing when violated - this one does not, so get the selection right.
Args: fade_type: "Up", "Down", "SCurveUp", or "SCurveDown". Default: "Up" mid_fade_adjust_percent: Adjusts the fade curve's midpoint, -100 to 100. Default: 0.0 units: Interpret start_level/end_level as "Percent" (of original) or "dB" gain. Default: "Percent" start_level: Level at the start of the fade. Default: 0.0 end_level: Level at the end of the fade. Default: 100.0
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| units | No | Percent | |
| end_level | No | ||
| fade_type | No | Up | |
| start_level | No | ||
| mid_fade_adjust_percent | No |