add_notes
Insert lyrics and musical notes into a Synthesizer V AI vocal track by specifying start time, duration, pitch, and lyrics for each note.
Instructions
Add one or more notes to a track
Input Schema
Name | Required | Description | Default |
---|---|---|---|
notes | Yes | Array of notes to add | |
trackId | Yes | ID of the track |
Input Schema (JSON Schema)
{
"properties": {
"notes": {
"description": "Array of notes to add",
"items": {
"properties": {
"duration": {
"description": "Duration in ticks",
"type": "number"
},
"lyrics": {
"description": "Lyrics text for the note",
"type": "string"
},
"pitch": {
"description": "MIDI pitch (0-127)",
"type": "number"
},
"startTime": {
"description": "Start time in ticks",
"type": "number"
}
},
"required": [
"lyrics",
"startTime",
"duration",
"pitch"
],
"type": "object"
},
"type": "array"
},
"trackId": {
"description": "ID of the track",
"type": "string"
}
},
"required": [
"trackId",
"notes"
],
"type": "object"
}