set_track_name
Change track names in Ableton Live by specifying the track index and new name to organize your music production session.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
name | Yes | ||
track_index | Yes |
Input Schema (JSON Schema)
{
"properties": {
"name": {
"title": "Name",
"type": "string"
},
"track_index": {
"title": "Track Index",
"type": "integer"
}
},
"required": [
"track_index",
"name"
],
"type": "object"
}