Skip to content
Open
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 5 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -231,9 +231,11 @@ To query the properties of multiple tracks, see [Song: Properties of cue points,

### Track methods

| Address | Query params | Response params | Description |
|:---------------------------|:-------------|:----------------|:------------------------|
| /live/track/stop_all_clips | track_id | | Stop all clips on track |
| Address | Query params | Response params | Description |
|:------------------------------|:----------------------------------|:----------------|:-------------------------|
| /live/track/stop_all_clips | track_id | | Stop all clips on track |
| /live/track/create_audio_clip | track_id, file_path, position | | Adds audio clip to track |
| /live/track/create_midi_clip | track_id, position, length | | Adds midi clip to track |

### Track properties

Expand Down
4 changes: 3 additions & 1 deletion abletonosc/track.py
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,9 @@ def track_callback(params: Tuple[Any]):

methods = [
"delete_device",
"stop_all_clips"
"stop_all_clips",
"create_audio_clip",
"create_midi_clip",
]
properties_r = [
"can_be_armed",
Expand Down