load_drum_kit
Load drum kits into Ableton Live tracks by specifying track position, rack URI, and kit file path to quickly set up percussion instruments for music production.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
kit_path | Yes | ||
rack_uri | Yes | ||
track_index | Yes |
Input Schema (JSON Schema)
{
"properties": {
"kit_path": {
"title": "Kit Path",
"type": "string"
},
"rack_uri": {
"title": "Rack Uri",
"type": "string"
},
"track_index": {
"title": "Track Index",
"type": "integer"
}
},
"required": [
"track_index",
"rack_uri",
"kit_path"
],
"type": "object"
}