Scenario
This page is auto-generated from model configurations. Last updated: 2026-06-03.
This reference lists all available Scenario audio generation models and their parameters. Use these parameter names when calling the Generation API.
Audio Cut
Section titled βAudio CutβTrim an audio file to a precise time range with sample-accurate cutting.
Model ID: model_scenario-audio-cut
Capabilities: audio2audio
LLM Markdown: https://app.scenario.com/api/models/model_scenario-audio-cut/markdown
| Parameter | Type | Required | Default | Min | Max | Allowed Values | Description |
|---|---|---|---|---|---|---|---|
audio | file | Yes | - | - | - | - | Audio to cut/trim |
startTime | number | No | 0 | 0 | - | - | Start time in seconds. Default is 0 (beginning of audio). |
endTime | number | No | - | 0 | - | - | End time in seconds. If not specified, cuts to the end of the audio. |
outputFormat | string | No | - | - | - | β, mp3, wav, ogg, m4a | Output audio format. If not specified, the original format is preserved. |
Audio Split
Section titled βAudio SplitβSplit an audio file at one or more timestamps into ordered segments.
Model ID: model_scenario-audio-split
Capabilities: audio2audio
LLM Markdown: https://app.scenario.com/api/models/model_scenario-audio-split/markdown
| Parameter | Type | Required | Default | Min | Max | Allowed Values | Description |
|---|---|---|---|---|---|---|---|
audio | file | Yes | - | - | - | - | Audio file to split |
cutPoints | number_array | No | β | 0 | - | - | Sorted timestamps in seconds at which to split the audio. N cut points produce N+1 segments. Leave empty for one segment containing the full audio. |
outputFormat | string | No | - | - | - | β, mp3, wav, ogg, m4a | Output format for all segments. If not specified, the source format is preserved. |
strict | boolean | No | false | - | - | - | If enabled, reject malformed cut points (unsorted, duplicates, out of range, or empty). If disabled, cut points are normalized automatically. |