get_pitchbends_by_index
Extract pitch bend data from a MIDI file using a specific track index to analyze or modify musical expression in the selected track.
Instructions
Get pitchbends from midi file by track index
Input Schema
Name | Required | Description | Default |
---|---|---|---|
filePath | Yes | Absoulate File Path to midi file | |
trackIndex | Yes | Track index number |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"filePath": {
"description": "Absoulate File Path to midi file",
"type": "string"
},
"trackIndex": {
"description": "Track index number",
"type": "number"
}
},
"required": [
"filePath",
"trackIndex"
],
"type": "object"
}