JSON Schema Draft 2020-12 meta-schema (schemas/schema.json) plus 8 per-mode schemas authored against the firmware sources: - paf_synth (33 params, 7 voice spaces) - channel_strip (24 params, 6 voice spaces) - xiasri (24 params, direct mapping) - verb_fx (47 params, 12 voice spaces) - memlcelium (56 params, sequencer + dual PAF) - breakor (56 params, 8-track ratio sequencer) - elysiamorf (40 params, 8-track FM/CC sequencer) - sound_analysis_midi (8 params, audio-feature -> MIDI CC) schemas/modes/params_notes.md captures provenance and judgement calls for each mode.
42 lines
1.9 KiB
JSON
42 lines
1.9 KiB
JSON
{
|
|
"$schema": "../schema.json",
|
|
"_note": "Audio-input → MIDI-CC mapping. Inputs are XiasriAnalysis features (pitch, aperiodicity, energy, attack, brightness, energy_crude) plus 4 joystick analog channels. Output 8 MIDI CCs. Audio engine is Thru (passthrough). No voice spaces.",
|
|
"mode_id": "sound_analysis_midi",
|
|
"engine_id": "thru",
|
|
"ml": {
|
|
"input_channels": [
|
|
"audio_pitch",
|
|
"audio_aperiodicity",
|
|
"audio_energy",
|
|
"audio_attack",
|
|
"audio_brightness",
|
|
"audio_energy_crude",
|
|
"joy_x",
|
|
"joy_y",
|
|
"joy_z",
|
|
"joy_w"
|
|
],
|
|
"input_size": 10,
|
|
"hidden_layers": [10, 10, 14],
|
|
"output_size": 8,
|
|
"default_spread": 0.6,
|
|
"default_learning_rate": 1.0,
|
|
"default_max_iterations": 1000
|
|
},
|
|
"params": [
|
|
{ "name": "midi_cc0", "label": "MIDI CC 0", "min": 0.0, "max": 1.0, "default": 0.5, "curve": "linear", "group": "midi" },
|
|
{ "name": "midi_cc1", "label": "MIDI CC 1", "min": 0.0, "max": 1.0, "default": 0.5, "curve": "linear", "group": "midi" },
|
|
{ "name": "midi_cc2", "label": "MIDI CC 2", "min": 0.0, "max": 1.0, "default": 0.5, "curve": "linear", "group": "midi" },
|
|
{ "name": "midi_cc3", "label": "MIDI CC 3", "min": 0.0, "max": 1.0, "default": 0.5, "curve": "linear", "group": "midi" },
|
|
{ "name": "midi_cc4", "label": "MIDI CC 4", "min": 0.0, "max": 1.0, "default": 0.5, "curve": "linear", "group": "midi" },
|
|
{ "name": "midi_cc5", "label": "MIDI CC 5", "min": 0.0, "max": 1.0, "default": 0.5, "curve": "linear", "group": "midi" },
|
|
{ "name": "midi_cc6", "label": "MIDI CC 6", "min": 0.0, "max": 1.0, "default": 0.5, "curve": "linear", "group": "midi" },
|
|
{ "name": "midi_cc7", "label": "MIDI CC 7", "min": 0.0, "max": 1.0, "default": 0.5, "curve": "linear", "group": "midi" }
|
|
],
|
|
"voice_spaces": [],
|
|
"ui": {
|
|
"primary_input": "audio_in",
|
|
"show_voice_space_selector": false,
|
|
"show_synth_visualizer": false
|
|
}
|
|
}
|