create_clip
Create MIDI or audio clips in Ableton Live tracks to build musical arrangements. Specify track position, clip location, and duration to generate content for music production workflows.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
clip_index | Yes | ||
length | No | ||
track_index | Yes |
Input Schema (JSON Schema)
{
"properties": {
"clip_index": {
"title": "Clip Index",
"type": "integer"
},
"length": {
"default": 4,
"title": "Length",
"type": "number"
},
"track_index": {
"title": "Track Index",
"type": "integer"
}
},
"required": [
"track_index",
"clip_index"
],
"type": "object"
}