add_notes_to_clip
Add musical notes to Ableton Live clips by specifying track and clip positions, enabling precise MIDI composition within your music production workflow.
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"
  ],
  "type": "object"
}