add_track
Create a new track in a MIDI file and retrieve track details. Specify the absolute file path to integrate additional tracks into your MIDI composition.
Instructions
Add a new track to midi file and return the new track info
Input Schema
Name | Required | Description | Default |
---|---|---|---|
filePath | Yes | Absoulate File Path to midi file |
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"
}
},
"required": [
"filePath"
],
"type": "object"
}