clip_set_speed
Adjust a clip's speed non-destructively by setting a duration multiplier—2.0 doubles timeline length (slower), 0.5 halves it (faster). Reversible or bake in later.
Instructions
Non-destructively change one clip's speed, without processing any audio. Reversible via clip_reset_speed, or bake it in permanently with clip_render_pitch_speed.
CONFIRMED LIVE: speed is a DURATION multiplier, not a playback-rate
multiplier - new_duration = original_duration * speed. speed=2.0 makes
the clip take twice as long on the timeline (plays slower/stretched),
speed=0.5 makes it half as long (plays faster/compressed) - the
opposite of what "speed" implies in most other software.
Args: key: The clip's key, in "trackId:itemId" format. speed: Duration multiplier. 1.0 = unchanged, 2.0 = twice as long (slower), 0.5 = half as long (faster).
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| key | Yes | ||
| speed | Yes |