add_notes_to_clip
Insert MIDI notes into a specific clip on Ableton Live tracks. Specify track and clip indices, along with note details like pitch, start time, duration, velocity, and mute status.
Instructions
Add MIDI notes to a clip.
Parameters:
track_index: The index of the track containing the clip
clip_index: The index of the clip slot containing the clip
notes: List of note dictionaries, each with pitch, start_time, duration, velocity, and mute
Input Schema
Name | Required | Description | Default |
---|---|---|---|
clip_index | Yes | ||
notes | Yes | ||
track_index | Yes |
Input Schema (JSON Schema)
{
"properties": {
"clip_index": {
"title": "Clip Index",
"type": "integer"
},
"notes": {
"items": {
"additionalProperties": {
"anyOf": [
{
"type": "integer"
},
{
"type": "number"
},
{
"type": "boolean"
}
]
},
"type": "object"
},
"title": "Notes",
"type": "array"
},
"track_index": {
"title": "Track Index",
"type": "integer"
}
},
"required": [
"track_index",
"clip_index",
"notes"
],
"title": "add_notes_to_clipArguments",
"type": "object"
}