From 4fcd5f28df4876f7cbf17d8a9506b22f9341652f Mon Sep 17 00:00:00 2001 From: Holger Wirtz Date: Thu, 29 Jul 2021 15:39:00 +0200 Subject: [PATCH] First test of JSON drum configuration file. --- addon/SD/drm/CFG_MDDrums.json | 152 ++++++++++++++++++++++++++++++++++ 1 file changed, 152 insertions(+) create mode 100644 addon/SD/drm/CFG_MDDrums.json diff --git a/addon/SD/drm/CFG_MDDrums.json b/addon/SD/drm/CFG_MDDrums.json new file mode 100644 index 0000000..d94b1ce --- /dev/null +++ b/addon/SD/drm/CFG_MDDrums.json @@ -0,0 +1,152 @@ +{ + [ + type: "DRUM_BASS", + midinote: "MIDI_C3", + filename: "bd01.raw", + shortname: "B", + pan: 0.0, + vol_max: 0.8, + vol_min: 0.0, + reverb_send: 0.0 + ], + [ + type: "DRUM_HANDCLAP", + midinote: "MIDI_CIS3", + filename: "cp02.raw", + shortname: "C", + pan: -0.4, + vol_max: 0.6, + vol_min: 0.0, + reverb_send: 0.4 + ], + [ + type: "DRUM_SNARE", + midinote: "MIDI_D3", + filename: "sd15.raw", + shortname: "S", + pan: 0.2, + vol_max: 0.6, + vol_min: 0.2, + reverb_send: 0.0 + ], + [ + type: "DRUM_HIHAT", + midinote: "MIDI_FIS3", + filename: "hh01.raw", + shortname: "h", + pan: 0.8, + vol_max: 0.2, + vol_min: 0.0, + reverb_send: 0.0 + ], + [ + type: "DRUM_HIHAT", + midinote: "MIDI_GIS3", + filename: "hh02.raw", + shortname: "h", + pan: 0.8, + vol_max: 0.2, + vol_min: 0.0, + reverb_send: 0.0 + ], + [ + type: "DRUM_HIHAT", + midinote: "MIDI_AIS3", + filename: "oh02.raw", + shortname: "H", + pan: 0.8, + vol_max: 0.2, + vol_min: 0.0, + reverb_send: 0.0 + ], + [ + type: "DRUM_LOWTOM", + midinote: "MIDI_G3", + filename: "lt01.raw", + shortname: "T", + pan: -0.7, + vol_max: 0.8, + vol_min: 0.0, + reverb_send: 0.0 + ], + [ + type: "DRUM_HIGHTOM", + midinote: "MIDI_A3", + filename: "ht01.raw", + shortname: "T", + pan: -0.5 + vol_max: 0.8 + vol_min: 0.0 + reverb_send: 0.0 + ], + [ + type: "DRUM_RIDE", + midinote: "MIDI_CIS4", + filename: "rd01.raw", + shortname: "R", + pan: -0.6, + vol_max: 0.3, + vol_min: 0.0 + reverb_send: 0.0 + ], + [ + type: "DRUM_RIDE", + midinote: "MIDI_DIS4", + filename: "rd02.raw", + shortname: "R", + pan: -0.6, + vol_max: 0.3, + vol_min: 0.0 + reverb_send: 0.0 + ], + [ + type: "DRUM_BASS", + midinote: "MIDI_C5", + filename: "PHKick1.raw", + shortname: "B", + pan: 0.0, + vol_max: 0.9, + vol_min: 0.0 + reverb_send: 0.0 + ], + [ + type: "DRUM_HANDCLAP", + midinote: "MIDI_DIS5", + filename: "808Clap1.raw", + shortname: "C", + pan: 0.0, + vol_max: 0.9, + vol_min: 0.0 + reverb_send: 0.4 + ], + [ + type: "DRUM_SNARE", + midinote: "MIDI_CIS5", + filename: "808RimS1.raw", + shortname: "R", + pan: -0.3, + vol_max: 0.5, + vol_min: 0.0 + reverb_send: 0.0 + ], + [ + type: "DRUM_HIHAT", + midinote: "MIDI_FIS5", + filename: "808HHCL1.raw", + shortname: "H", + pan: 0.4, + vol_max: 0.6, + vol_min: 0.0 + reverb_send: 0.0 + ], + [ + type: "DRUM_NONE", + midinote: "MIDI_NONE", + filename: "EMPTY", + shortname: "-", + pan: 0.0, + vol_max: 0.0, + vol_min: 0.0 + reverb_send: 0.0 + ], +}