create_empty_midi_clip
Create an empty MIDI clip on a specified track in Ableton Live at a given time and length in beats, enabling precise control over clip placement and structure for music production.
Instructions
create empty midi clip on track
Input Schema
Name | Required | Description | Default |
---|---|---|---|
length | Yes | Length is given in beats and must be a greater value than 0.0. | |
time | Yes | [float] the time in beats of absolute clip time. such as 4 is 4 beats | |
track_id | Yes |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"length": {
"description": "Length is given in beats and must be a greater value than 0.0.",
"type": "number"
},
"time": {
"description": "[float] the time in beats of absolute clip time. such as 4 is 4 beats",
"type": "number"
},
"track_id": {
"type": "string"
}
},
"required": [
"track_id",
"length",
"time"
],
"type": "object"
}