duplicate_clip_region
Copy and transpose MIDI notes within a specified region to a new location in Ableton Live. Select pitch range and adjust semitone transposition for precise editing.
Instructions
Duplicates the notes in the specified region to the destination_time. Only notes of the specified pitch are duplicated if pitch is not -1. If the transposition_amount is not 0, the notes in the region will be transposed by the transposition_amount of semitones. Raises an error on audio clips..
Input Schema
Name | Required | Description | Default |
---|---|---|---|
clip_id | Yes | ||
destination_time | Yes | ||
pitch | Yes | ||
region_end | Yes | ||
region_start | Yes | ||
transposition_amount | Yes |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"clip_id": {
"type": "string"
},
"destination_time": {
"type": "number"
},
"pitch": {
"type": "number"
},
"region_end": {
"type": "number"
},
"region_start": {
"type": "number"
},
"transposition_amount": {
"type": "number"
}
},
"required": [
"clip_id",
"region_start",
"region_end",
"destination_time",
"pitch",
"transposition_amount"
],
"type": "object"
}