set_tempo
Adjust the tempo of a MIDI file by specifying the file path and desired BPM, enabling precise control over playback speed for editing or performance purposes.
Instructions
Set tempo for midi file
Input Schema
Name | Required | Description | Default |
---|---|---|---|
bpm | Yes | BPM | |
filePath | Yes | Absoulate File Path to midi file |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"bpm": {
"description": "BPM",
"type": "number"
},
"filePath": {
"description": "Absoulate File Path to midi file",
"type": "string"
}
},
"required": [
"filePath",
"bpm"
],
"type": "object"
}