From 8bead14e239a3a957773beeaf547a6a67eda0db2 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?L=27=C3=A9lectron=20rare?= <108685187+electron-rare@users.noreply.github.com> Date: Tue, 30 Jun 2026 13:36:00 +0200 Subject: [PATCH] feat(presets): emit default global settings Context: Phase 2 Task 1 made the SC engine load a globalSettings Event from .matrix files (openThresh/closeThresh/transientBars/breakdownKeep) and default it when absent. Generator was not yet writing the field. Approach: append globalSettings after globalActions in to_sc() return string; extend test_global_actions.py with EXPECT_SET check against both the to_sc sample and all 84 .matrix files on disk. Changes: - generate_presets.py: to_sc now ends with globalActions (comma) then globalSettings Event with default values matching SC defaults - test_global_actions.py: add EXPECT_SET literal + two check() calls - *.matrix (84 files): each preset now carries the globalSettings field Impact: every preset ships with openThresh/closeThresh/transientBars/ breakdownKeep defaults; SC engine reads them on load; no more implicit fallback needed at runtime for any preset in the library. --- .../data_only/matrix_presets/acid_journey_intro.matrix | 3 ++- .../data_only/matrix_presets/acid_journey_live.matrix | 3 ++- .../data_only/matrix_presets/acid_journey_outro.matrix | 3 ++- .../data_only/matrix_presets/ambient_intro_intro.matrix | 3 ++- .../data_only/matrix_presets/ambient_intro_live.matrix | 3 ++- .../data_only/matrix_presets/ambient_intro_outro.matrix | 3 ++- .../data_only/matrix_presets/bass_science_intro.matrix | 3 ++- .../data_only/matrix_presets/bass_science_live.matrix | 3 ++- .../data_only/matrix_presets/bass_science_outro.matrix | 3 ++- sound_algo/data_only/matrix_presets/breakbeat_intro.matrix | 3 ++- sound_algo/data_only/matrix_presets/breakbeat_live.matrix | 3 ++- sound_algo/data_only/matrix_presets/breakbeat_outro.matrix | 3 ++- .../data_only/matrix_presets/detroit_soul_intro.matrix | 3 ++- .../data_only/matrix_presets/detroit_soul_live.matrix | 3 ++- .../data_only/matrix_presets/detroit_soul_outro.matrix | 3 ++- .../data_only/matrix_presets/dnb_roller_intro.matrix | 3 ++- sound_algo/data_only/matrix_presets/dnb_roller_live.matrix | 3 ++- .../data_only/matrix_presets/dnb_roller_outro.matrix | 3 ++- .../data_only/matrix_presets/dub_techno_intro.matrix | 3 ++- sound_algo/data_only/matrix_presets/dub_techno_live.matrix | 3 ++- .../data_only/matrix_presets/dub_techno_outro.matrix | 3 ++- sound_algo/data_only/matrix_presets/ebm_body_intro.matrix | 3 ++- sound_algo/data_only/matrix_presets/ebm_body_live.matrix | 3 ++- sound_algo/data_only/matrix_presets/ebm_body_outro.matrix | 3 ++- .../data_only/matrix_presets/electro_808_intro.matrix | 3 ++- .../data_only/matrix_presets/electro_808_live.matrix | 3 ++- .../data_only/matrix_presets/electro_808_outro.matrix | 3 ++- .../data_only/matrix_presets/electro_funk_intro.matrix | 3 ++- .../data_only/matrix_presets/electro_funk_live.matrix | 3 ++- .../data_only/matrix_presets/electro_funk_outro.matrix | 3 ++- .../data_only/matrix_presets/footwork_chop_intro.matrix | 3 ++- .../data_only/matrix_presets/footwork_chop_live.matrix | 3 ++- .../data_only/matrix_presets/footwork_chop_outro.matrix | 3 ++- sound_algo/data_only/matrix_presets/generate_presets.py | 4 +++- .../data_only/matrix_presets/hardcore_punk_intro.matrix | 3 ++- .../data_only/matrix_presets/hardcore_punk_live.matrix | 3 ++- .../data_only/matrix_presets/hardcore_punk_outro.matrix | 3 ++- .../data_only/matrix_presets/hypnotic_arp_intro.matrix | 3 ++- .../data_only/matrix_presets/hypnotic_arp_live.matrix | 3 ++- .../data_only/matrix_presets/hypnotic_arp_outro.matrix | 3 ++- .../data_only/matrix_presets/industrial_grind_intro.matrix | 3 ++- .../data_only/matrix_presets/industrial_grind_live.matrix | 3 ++- .../data_only/matrix_presets/industrial_grind_outro.matrix | 3 ++- .../data_only/matrix_presets/jungle_amen_intro.matrix | 3 ++- .../data_only/matrix_presets/jungle_amen_live.matrix | 3 ++- .../data_only/matrix_presets/jungle_amen_outro.matrix | 3 ++- .../data_only/matrix_presets/melodic_builder_intro.matrix | 3 ++- .../data_only/matrix_presets/melodic_builder_live.matrix | 3 ++- .../data_only/matrix_presets/melodic_builder_outro.matrix | 3 ++- .../data_only/matrix_presets/melodic_deep_intro.matrix | 3 ++- .../data_only/matrix_presets/melodic_deep_live.matrix | 3 ++- .../data_only/matrix_presets/melodic_deep_outro.matrix | 3 ++- .../data_only/matrix_presets/minimal_hypno_intro.matrix | 3 ++- .../data_only/matrix_presets/minimal_hypno_live.matrix | 3 ++- .../data_only/matrix_presets/minimal_hypno_outro.matrix | 3 ++- .../data_only/matrix_presets/neuro_reese_intro.matrix | 3 ++- .../data_only/matrix_presets/neuro_reese_live.matrix | 3 ++- .../data_only/matrix_presets/neuro_reese_outro.matrix | 3 ++- sound_algo/data_only/matrix_presets/peak_drop_intro.matrix | 3 ++- sound_algo/data_only/matrix_presets/peak_drop_live.matrix | 3 ++- sound_algo/data_only/matrix_presets/peak_drop_outro.matrix | 3 ++- .../data_only/matrix_presets/progressive_lift_intro.matrix | 3 ++- .../data_only/matrix_presets/progressive_lift_live.matrix | 3 ++- .../data_only/matrix_presets/progressive_lift_outro.matrix | 3 ++- .../data_only/matrix_presets/psytrance_roll_intro.matrix | 3 ++- .../data_only/matrix_presets/psytrance_roll_live.matrix | 3 ++- .../data_only/matrix_presets/psytrance_roll_outro.matrix | 3 ++- sound_algo/data_only/matrix_presets/rave_stab_intro.matrix | 3 ++- sound_algo/data_only/matrix_presets/rave_stab_live.matrix | 3 ++- sound_algo/data_only/matrix_presets/rave_stab_outro.matrix | 3 ++- .../data_only/matrix_presets/schranz_drive_intro.matrix | 3 ++- .../data_only/matrix_presets/schranz_drive_live.matrix | 3 ++- .../data_only/matrix_presets/schranz_drive_outro.matrix | 3 ++- .../data_only/matrix_presets/synthwave_drive_intro.matrix | 3 ++- .../data_only/matrix_presets/synthwave_drive_live.matrix | 3 ++- .../data_only/matrix_presets/synthwave_drive_outro.matrix | 3 ++- .../data_only/matrix_presets/techno_drive_intro.matrix | 3 ++- .../data_only/matrix_presets/techno_drive_live.matrix | 3 ++- .../data_only/matrix_presets/techno_drive_outro.matrix | 3 ++- sound_algo/data_only/matrix_presets/test_global_actions.py | 7 +++++++ .../data_only/matrix_presets/trance_euphoria_intro.matrix | 3 ++- .../data_only/matrix_presets/trance_euphoria_live.matrix | 3 ++- .../data_only/matrix_presets/trance_euphoria_outro.matrix | 3 ++- .../data_only/matrix_presets/tribal_perc_intro.matrix | 3 ++- .../data_only/matrix_presets/tribal_perc_live.matrix | 3 ++- .../data_only/matrix_presets/tribal_perc_outro.matrix | 3 ++- 86 files changed, 178 insertions(+), 85 deletions(-) diff --git a/sound_algo/data_only/matrix_presets/acid_journey_intro.matrix b/sound_algo/data_only/matrix_presets/acid_journey_intro.matrix index 3711396..0494bf7 100644 --- a/sound_algo/data_only/matrix_presets/acid_journey_intro.matrix +++ b/sound_algo/data_only/matrix_presets/acid_journey_intro.matrix @@ -50,5 +50,6 @@ ], 'voiceMods': [ [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \cutoff, depth: 0.40), (source: \bodyY, target: \pitch, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \res, depth: 0.40), (source: \bodyY, target: \pitch, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \rHandX, target: \amp, depth: 0.40), (source: \rHandY, target: \pitch, depth: 0.40), (source: \lHandY, target: \cutoff, depth: 0.50), (source: \lHandX, target: \res, depth: 0.40)], [(source: \rHandX, target: \amp, depth: 0.40), (source: \rHandY, target: \pitch, depth: 0.40), (source: \lHandY, target: \cutoff, depth: 0.50), (source: \lHandX, target: \res, depth: 0.40)], [(source: \rHandX, target: \amp, depth: 0.40), (source: \rHandY, target: \pitch, depth: 0.40), (source: \lHandY, target: \cutoff, depth: 0.50), (source: \lHandX, target: \res, depth: 0.40)], [(source: \rHandX, target: \amp, depth: 0.40), (source: \rHandY, target: \pitch, depth: 0.40), (source: \lHandY, target: \cutoff, depth: 0.50), (source: \lHandX, target: \res, depth: 0.40)], [(source: \bodyVitesse, target: \cutoff, depth: 0.40), (source: \limbSpan, target: \rev, depth: 0.40), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyY, target: \pitch, depth: 0.30), (source: \bodyVitesse, target: \amp, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \cutoff, depth: 0.50), (source: \bodyY, target: \pitch, depth: 0.30), (source: \limbSpan, target: \res, depth: 0.40), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \rHandX, target: \amp, depth: 0.40), (source: \rHandY, target: \pitch, depth: 0.40), (source: \lHandX, target: \res, depth: 0.40)], [(source: \danse, target: \rev, depth: 0.50), (source: \bodyVitesse, target: \amp, depth: 0.40)], [(source: \rHandX, target: \amp, depth: 0.40), (source: \lHandY, target: \cutoff, depth: 0.50), (source: \lHandX, target: \res, depth: 0.40)], [(source: \bodyVitesse, target: \cutoff, depth: 0.40), (source: \limbSpan, target: \rev, depth: 0.40), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \danse, target: \rev, depth: 0.50), (source: \bodyVitesse, target: \amp, depth: 0.40)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)] ], 'voicePoses': [ [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [] ], -'globalActions': [ \fill, \drop, \evolve, \breakdown ] +'globalActions': [ \fill, \drop, \evolve, \breakdown ], +'globalSettings': ( 'openThresh': 0.65, 'closeThresh': 0.3, 'transientBars': 1, 'breakdownKeep': [ \kick, \sub ] ) ) diff --git a/sound_algo/data_only/matrix_presets/acid_journey_live.matrix b/sound_algo/data_only/matrix_presets/acid_journey_live.matrix index 476741c..84eb7e6 100644 --- a/sound_algo/data_only/matrix_presets/acid_journey_live.matrix +++ b/sound_algo/data_only/matrix_presets/acid_journey_live.matrix @@ -50,5 +50,6 @@ ], 'voiceMods': [ [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \cutoff, depth: 0.40), (source: \bodyY, target: \pitch, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \res, depth: 0.40), (source: \bodyY, target: \pitch, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \rHandX, target: \amp, depth: 0.40), (source: \rHandY, target: \pitch, depth: 0.40), (source: \lHandY, target: \cutoff, depth: 0.50), (source: \lHandX, target: \res, depth: 0.40)], [(source: \rHandX, target: \amp, depth: 0.40), (source: \rHandY, target: \pitch, depth: 0.40), (source: \lHandY, target: \cutoff, depth: 0.50), (source: \lHandX, target: \res, depth: 0.40)], [(source: \rHandX, target: \amp, depth: 0.40), (source: \rHandY, target: \pitch, depth: 0.40), (source: \lHandY, target: \cutoff, depth: 0.50), (source: \lHandX, target: \res, depth: 0.40)], [(source: \rHandX, target: \amp, depth: 0.40), (source: \rHandY, target: \pitch, depth: 0.40), (source: \lHandY, target: \cutoff, depth: 0.50), (source: \lHandX, target: \res, depth: 0.40)], [(source: \bodyVitesse, target: \cutoff, depth: 0.40), (source: \limbSpan, target: \rev, depth: 0.40), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyY, target: \pitch, depth: 0.30), (source: \bodyVitesse, target: \amp, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \cutoff, depth: 0.50), (source: \bodyY, target: \pitch, depth: 0.30), (source: \limbSpan, target: \res, depth: 0.40), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \rHandX, target: \amp, depth: 0.40), (source: \rHandY, target: \pitch, depth: 0.40), (source: \lHandX, target: \res, depth: 0.40)], [(source: \danse, target: \rev, depth: 0.50), (source: \bodyVitesse, target: \amp, depth: 0.40)], [(source: \rHandX, target: \amp, depth: 0.40), (source: \lHandY, target: \cutoff, depth: 0.50), (source: \lHandX, target: \res, depth: 0.40)], [(source: \bodyVitesse, target: \cutoff, depth: 0.40), (source: \limbSpan, target: \rev, depth: 0.40), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \danse, target: \rev, depth: 0.50), (source: \bodyVitesse, target: \amp, depth: 0.40)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)] ], 'voicePoses': [ [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [] ], -'globalActions': [ \fill, \drop, \evolve, \breakdown ] +'globalActions': [ \fill, \drop, \evolve, \breakdown ], +'globalSettings': ( 'openThresh': 0.65, 'closeThresh': 0.3, 'transientBars': 1, 'breakdownKeep': [ \kick, \sub ] ) ) diff --git a/sound_algo/data_only/matrix_presets/acid_journey_outro.matrix b/sound_algo/data_only/matrix_presets/acid_journey_outro.matrix index 90fe8de..d3f132a 100644 --- a/sound_algo/data_only/matrix_presets/acid_journey_outro.matrix +++ b/sound_algo/data_only/matrix_presets/acid_journey_outro.matrix @@ -50,5 +50,6 @@ ], 'voiceMods': [ [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \cutoff, depth: 0.40), (source: \bodyY, target: \pitch, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \res, depth: 0.40), (source: \bodyY, target: \pitch, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \rHandX, target: \amp, depth: 0.40), (source: \rHandY, target: \pitch, depth: 0.40), (source: \lHandY, target: \cutoff, depth: 0.50), (source: \lHandX, target: \res, depth: 0.40)], [(source: \rHandX, target: \amp, depth: 0.40), (source: \rHandY, target: \pitch, depth: 0.40), (source: \lHandY, target: \cutoff, depth: 0.50), (source: \lHandX, target: \res, depth: 0.40)], [(source: \rHandX, target: \amp, depth: 0.40), (source: \rHandY, target: \pitch, depth: 0.40), (source: \lHandY, target: \cutoff, depth: 0.50), (source: \lHandX, target: \res, depth: 0.40)], [(source: \rHandX, target: \amp, depth: 0.40), (source: \rHandY, target: \pitch, depth: 0.40), (source: \lHandY, target: \cutoff, depth: 0.50), (source: \lHandX, target: \res, depth: 0.40)], [(source: \bodyVitesse, target: \cutoff, depth: 0.40), (source: \limbSpan, target: \rev, depth: 0.40), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyY, target: \pitch, depth: 0.30), (source: \bodyVitesse, target: \amp, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \cutoff, depth: 0.50), (source: \bodyY, target: \pitch, depth: 0.30), (source: \limbSpan, target: \res, depth: 0.40), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \rHandX, target: \amp, depth: 0.40), (source: \rHandY, target: \pitch, depth: 0.40), (source: \lHandX, target: \res, depth: 0.40)], [(source: \danse, target: \rev, depth: 0.50), (source: \bodyVitesse, target: \amp, depth: 0.40)], [(source: \rHandX, target: \amp, depth: 0.40), (source: \lHandY, target: \cutoff, depth: 0.50), (source: \lHandX, target: \res, depth: 0.40)], [(source: \bodyVitesse, target: \cutoff, depth: 0.40), (source: \limbSpan, target: \rev, depth: 0.40), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \danse, target: \rev, depth: 0.50), (source: \bodyVitesse, target: \amp, depth: 0.40)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)] ], 'voicePoses': [ [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [] ], -'globalActions': [ \fill, \drop, \evolve, \breakdown ] +'globalActions': [ \fill, \drop, \evolve, \breakdown ], +'globalSettings': ( 'openThresh': 0.65, 'closeThresh': 0.3, 'transientBars': 1, 'breakdownKeep': [ \kick, \sub ] ) ) diff --git a/sound_algo/data_only/matrix_presets/ambient_intro_intro.matrix b/sound_algo/data_only/matrix_presets/ambient_intro_intro.matrix index c80323e..14ca20e 100644 --- a/sound_algo/data_only/matrix_presets/ambient_intro_intro.matrix +++ b/sound_algo/data_only/matrix_presets/ambient_intro_intro.matrix @@ -50,5 +50,6 @@ ], 'voiceMods': [ [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \cutoff, depth: 0.40), (source: \bodyY, target: \pitch, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \res, depth: 0.40), (source: \bodyY, target: \pitch, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \rHandX, target: \amp, depth: 0.40), (source: \rHandY, target: \pitch, depth: 0.40), (source: \lHandY, target: \cutoff, depth: 0.50), (source: \lHandX, target: \res, depth: 0.40)], [(source: \rHandX, target: \amp, depth: 0.40), (source: \rHandY, target: \pitch, depth: 0.40), (source: \lHandY, target: \cutoff, depth: 0.50), (source: \lHandX, target: \res, depth: 0.40)], [(source: \rHandX, target: \amp, depth: 0.40), (source: \rHandY, target: \pitch, depth: 0.40), (source: \lHandY, target: \cutoff, depth: 0.50), (source: \lHandX, target: \res, depth: 0.40)], [(source: \rHandX, target: \amp, depth: 0.40), (source: \rHandY, target: \pitch, depth: 0.40), (source: \lHandY, target: \cutoff, depth: 0.50), (source: \lHandX, target: \res, depth: 0.40)], [(source: \bodyVitesse, target: \cutoff, depth: 0.40), (source: \limbSpan, target: \rev, depth: 0.40), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyY, target: \pitch, depth: 0.30), (source: \bodyVitesse, target: \amp, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \cutoff, depth: 0.50), (source: \bodyY, target: \pitch, depth: 0.30), (source: \limbSpan, target: \res, depth: 0.40), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \rHandX, target: \amp, depth: 0.40), (source: \rHandY, target: \pitch, depth: 0.40), (source: \lHandX, target: \res, depth: 0.40)], [(source: \danse, target: \rev, depth: 0.50), (source: \bodyVitesse, target: \amp, depth: 0.40)], [(source: \rHandX, target: \amp, depth: 0.40), (source: \lHandY, target: \cutoff, depth: 0.50), (source: \lHandX, target: \res, depth: 0.40)], [(source: \bodyVitesse, target: \cutoff, depth: 0.40), (source: \limbSpan, target: \rev, depth: 0.40), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \danse, target: \rev, depth: 0.50), (source: \bodyVitesse, target: \amp, depth: 0.40)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)] ], 'voicePoses': [ [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [] ], -'globalActions': [ \fill, \drop, \evolve, \breakdown ] +'globalActions': [ \fill, \drop, \evolve, \breakdown ], +'globalSettings': ( 'openThresh': 0.65, 'closeThresh': 0.3, 'transientBars': 1, 'breakdownKeep': [ \kick, \sub ] ) ) diff --git a/sound_algo/data_only/matrix_presets/ambient_intro_live.matrix b/sound_algo/data_only/matrix_presets/ambient_intro_live.matrix index dd6ce1b..f87b029 100644 --- a/sound_algo/data_only/matrix_presets/ambient_intro_live.matrix +++ b/sound_algo/data_only/matrix_presets/ambient_intro_live.matrix @@ -50,5 +50,6 @@ ], 'voiceMods': [ [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \cutoff, depth: 0.40), (source: \bodyY, target: \pitch, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \res, depth: 0.40), (source: \bodyY, target: \pitch, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \rHandX, target: \amp, depth: 0.40), (source: \rHandY, target: \pitch, depth: 0.40), (source: \lHandY, target: \cutoff, depth: 0.50), (source: \lHandX, target: \res, depth: 0.40)], [(source: \rHandX, target: \amp, depth: 0.40), (source: \rHandY, target: \pitch, depth: 0.40), (source: \lHandY, target: \cutoff, depth: 0.50), (source: \lHandX, target: \res, depth: 0.40)], [(source: \rHandX, target: \amp, depth: 0.40), (source: \rHandY, target: \pitch, depth: 0.40), (source: \lHandY, target: \cutoff, depth: 0.50), (source: \lHandX, target: \res, depth: 0.40)], [(source: \rHandX, target: \amp, depth: 0.40), (source: \rHandY, target: \pitch, depth: 0.40), (source: \lHandY, target: \cutoff, depth: 0.50), (source: \lHandX, target: \res, depth: 0.40)], [(source: \bodyVitesse, target: \cutoff, depth: 0.40), (source: \limbSpan, target: \rev, depth: 0.40), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyY, target: \pitch, depth: 0.30), (source: \bodyVitesse, target: \amp, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \cutoff, depth: 0.50), (source: \bodyY, target: \pitch, depth: 0.30), (source: \limbSpan, target: \res, depth: 0.40), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \rHandX, target: \amp, depth: 0.40), (source: \rHandY, target: \pitch, depth: 0.40), (source: \lHandX, target: \res, depth: 0.40)], [(source: \danse, target: \rev, depth: 0.50), (source: \bodyVitesse, target: \amp, depth: 0.40)], [(source: \rHandX, target: \amp, depth: 0.40), (source: \lHandY, target: \cutoff, depth: 0.50), (source: \lHandX, target: \res, depth: 0.40)], [(source: \bodyVitesse, target: \cutoff, depth: 0.40), (source: \limbSpan, target: \rev, depth: 0.40), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \danse, target: \rev, depth: 0.50), (source: \bodyVitesse, target: \amp, depth: 0.40)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)] ], 'voicePoses': [ [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [] ], -'globalActions': [ \fill, \drop, \evolve, \breakdown ] +'globalActions': [ \fill, \drop, \evolve, \breakdown ], +'globalSettings': ( 'openThresh': 0.65, 'closeThresh': 0.3, 'transientBars': 1, 'breakdownKeep': [ \kick, \sub ] ) ) diff --git a/sound_algo/data_only/matrix_presets/ambient_intro_outro.matrix b/sound_algo/data_only/matrix_presets/ambient_intro_outro.matrix index db7da42..324852b 100644 --- a/sound_algo/data_only/matrix_presets/ambient_intro_outro.matrix +++ b/sound_algo/data_only/matrix_presets/ambient_intro_outro.matrix @@ -50,5 +50,6 @@ ], 'voiceMods': [ [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \cutoff, depth: 0.40), (source: \bodyY, target: \pitch, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \res, depth: 0.40), (source: \bodyY, target: \pitch, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \rHandX, target: \amp, depth: 0.40), (source: \rHandY, target: \pitch, depth: 0.40), (source: \lHandY, target: \cutoff, depth: 0.50), (source: \lHandX, target: \res, depth: 0.40)], [(source: \rHandX, target: \amp, depth: 0.40), (source: \rHandY, target: \pitch, depth: 0.40), (source: \lHandY, target: \cutoff, depth: 0.50), (source: \lHandX, target: \res, depth: 0.40)], [(source: \rHandX, target: \amp, depth: 0.40), (source: \rHandY, target: \pitch, depth: 0.40), (source: \lHandY, target: \cutoff, depth: 0.50), (source: \lHandX, target: \res, depth: 0.40)], [(source: \rHandX, target: \amp, depth: 0.40), (source: \rHandY, target: \pitch, depth: 0.40), (source: \lHandY, target: \cutoff, depth: 0.50), (source: \lHandX, target: \res, depth: 0.40)], [(source: \bodyVitesse, target: \cutoff, depth: 0.40), (source: \limbSpan, target: \rev, depth: 0.40), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyY, target: \pitch, depth: 0.30), (source: \bodyVitesse, target: \amp, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \cutoff, depth: 0.50), (source: \bodyY, target: \pitch, depth: 0.30), (source: \limbSpan, target: \res, depth: 0.40), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \rHandX, target: \amp, depth: 0.40), (source: \rHandY, target: \pitch, depth: 0.40), (source: \lHandX, target: \res, depth: 0.40)], [(source: \danse, target: \rev, depth: 0.50), (source: \bodyVitesse, target: \amp, depth: 0.40)], [(source: \rHandX, target: \amp, depth: 0.40), (source: \lHandY, target: \cutoff, depth: 0.50), (source: \lHandX, target: \res, depth: 0.40)], [(source: \bodyVitesse, target: \cutoff, depth: 0.40), (source: \limbSpan, target: \rev, depth: 0.40), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \danse, target: \rev, depth: 0.50), (source: \bodyVitesse, target: \amp, depth: 0.40)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)] ], 'voicePoses': [ [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [] ], -'globalActions': [ \fill, \drop, \evolve, \breakdown ] +'globalActions': [ \fill, \drop, \evolve, \breakdown ], +'globalSettings': ( 'openThresh': 0.65, 'closeThresh': 0.3, 'transientBars': 1, 'breakdownKeep': [ \kick, \sub ] ) ) diff --git a/sound_algo/data_only/matrix_presets/bass_science_intro.matrix b/sound_algo/data_only/matrix_presets/bass_science_intro.matrix index 7bd4f8f..db2e269 100644 --- a/sound_algo/data_only/matrix_presets/bass_science_intro.matrix +++ b/sound_algo/data_only/matrix_presets/bass_science_intro.matrix @@ -50,5 +50,6 @@ ], 'voiceMods': [ [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \cutoff, depth: 0.40), (source: \bodyY, target: \pitch, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \res, depth: 0.40), (source: \bodyY, target: \pitch, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \rHandX, target: \amp, depth: 0.40), (source: \rHandY, target: \pitch, depth: 0.40), (source: \lHandY, target: \cutoff, depth: 0.50), (source: \lHandX, target: \res, depth: 0.40)], [(source: \rHandX, target: \amp, depth: 0.40), (source: \rHandY, target: \pitch, depth: 0.40), (source: \lHandY, target: \cutoff, depth: 0.50), (source: \lHandX, target: \res, depth: 0.40)], [(source: \rHandX, target: \amp, depth: 0.40), (source: \rHandY, target: \pitch, depth: 0.40), (source: \lHandY, target: \cutoff, depth: 0.50), (source: \lHandX, target: \res, depth: 0.40)], [(source: \rHandX, target: \amp, depth: 0.40), (source: \rHandY, target: \pitch, depth: 0.40), (source: \lHandY, target: \cutoff, depth: 0.50), (source: \lHandX, target: \res, depth: 0.40)], [(source: \bodyVitesse, target: \cutoff, depth: 0.40), (source: \limbSpan, target: \rev, depth: 0.40), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyY, target: \pitch, depth: 0.30), (source: \bodyVitesse, target: \amp, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \cutoff, depth: 0.50), (source: \bodyY, target: \pitch, depth: 0.30), (source: \limbSpan, target: \res, depth: 0.40), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \rHandX, target: \amp, depth: 0.40), (source: \rHandY, target: \pitch, depth: 0.40), (source: \lHandX, target: \res, depth: 0.40)], [(source: \danse, target: \rev, depth: 0.50), (source: \bodyVitesse, target: \amp, depth: 0.40)], [(source: \rHandX, target: \amp, depth: 0.40), (source: \lHandY, target: \cutoff, depth: 0.50), (source: \lHandX, target: \res, depth: 0.40)], [(source: \bodyVitesse, target: \cutoff, depth: 0.40), (source: \limbSpan, target: \rev, depth: 0.40), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \danse, target: \rev, depth: 0.50), (source: \bodyVitesse, target: \amp, depth: 0.40)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)] ], 'voicePoses': [ [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [] ], -'globalActions': [ \fill, \drop, \evolve, \breakdown ] +'globalActions': [ \fill, \drop, \evolve, \breakdown ], +'globalSettings': ( 'openThresh': 0.65, 'closeThresh': 0.3, 'transientBars': 1, 'breakdownKeep': [ \kick, \sub ] ) ) diff --git a/sound_algo/data_only/matrix_presets/bass_science_live.matrix b/sound_algo/data_only/matrix_presets/bass_science_live.matrix index e0c67b8..d6c5cf0 100644 --- a/sound_algo/data_only/matrix_presets/bass_science_live.matrix +++ b/sound_algo/data_only/matrix_presets/bass_science_live.matrix @@ -50,5 +50,6 @@ ], 'voiceMods': [ [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \cutoff, depth: 0.40), (source: \bodyY, target: \pitch, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \res, depth: 0.40), (source: \bodyY, target: \pitch, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \rHandX, target: \amp, depth: 0.40), (source: \rHandY, target: \pitch, depth: 0.40), (source: \lHandY, target: \cutoff, depth: 0.50), (source: \lHandX, target: \res, depth: 0.40)], [(source: \rHandX, target: \amp, depth: 0.40), (source: \rHandY, target: \pitch, depth: 0.40), (source: \lHandY, target: \cutoff, depth: 0.50), (source: \lHandX, target: \res, depth: 0.40)], [(source: \rHandX, target: \amp, depth: 0.40), (source: \rHandY, target: \pitch, depth: 0.40), (source: \lHandY, target: \cutoff, depth: 0.50), (source: \lHandX, target: \res, depth: 0.40)], [(source: \rHandX, target: \amp, depth: 0.40), (source: \rHandY, target: \pitch, depth: 0.40), (source: \lHandY, target: \cutoff, depth: 0.50), (source: \lHandX, target: \res, depth: 0.40)], [(source: \bodyVitesse, target: \cutoff, depth: 0.40), (source: \limbSpan, target: \rev, depth: 0.40), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyY, target: \pitch, depth: 0.30), (source: \bodyVitesse, target: \amp, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \cutoff, depth: 0.50), (source: \bodyY, target: \pitch, depth: 0.30), (source: \limbSpan, target: \res, depth: 0.40), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \rHandX, target: \amp, depth: 0.40), (source: \rHandY, target: \pitch, depth: 0.40), (source: \lHandX, target: \res, depth: 0.40)], [(source: \danse, target: \rev, depth: 0.50), (source: \bodyVitesse, target: \amp, depth: 0.40)], [(source: \rHandX, target: \amp, depth: 0.40), (source: \lHandY, target: \cutoff, depth: 0.50), (source: \lHandX, target: \res, depth: 0.40)], [(source: \bodyVitesse, target: \cutoff, depth: 0.40), (source: \limbSpan, target: \rev, depth: 0.40), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \danse, target: \rev, depth: 0.50), (source: \bodyVitesse, target: \amp, depth: 0.40)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)] ], 'voicePoses': [ [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [] ], -'globalActions': [ \fill, \drop, \evolve, \breakdown ] +'globalActions': [ \fill, \drop, \evolve, \breakdown ], +'globalSettings': ( 'openThresh': 0.65, 'closeThresh': 0.3, 'transientBars': 1, 'breakdownKeep': [ \kick, \sub ] ) ) diff --git a/sound_algo/data_only/matrix_presets/bass_science_outro.matrix b/sound_algo/data_only/matrix_presets/bass_science_outro.matrix index 7ca0b9b..f41cfe8 100644 --- a/sound_algo/data_only/matrix_presets/bass_science_outro.matrix +++ b/sound_algo/data_only/matrix_presets/bass_science_outro.matrix @@ -50,5 +50,6 @@ ], 'voiceMods': [ [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \cutoff, depth: 0.40), (source: \bodyY, target: \pitch, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \res, depth: 0.40), (source: \bodyY, target: \pitch, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \rHandX, target: \amp, depth: 0.40), (source: \rHandY, target: \pitch, depth: 0.40), (source: \lHandY, target: \cutoff, depth: 0.50), (source: \lHandX, target: \res, depth: 0.40)], [(source: \rHandX, target: \amp, depth: 0.40), (source: \rHandY, target: \pitch, depth: 0.40), (source: \lHandY, target: \cutoff, depth: 0.50), (source: \lHandX, target: \res, depth: 0.40)], [(source: \rHandX, target: \amp, depth: 0.40), (source: \rHandY, target: \pitch, depth: 0.40), (source: \lHandY, target: \cutoff, depth: 0.50), (source: \lHandX, target: \res, depth: 0.40)], [(source: \rHandX, target: \amp, depth: 0.40), (source: \rHandY, target: \pitch, depth: 0.40), (source: \lHandY, target: \cutoff, depth: 0.50), (source: \lHandX, target: \res, depth: 0.40)], [(source: \bodyVitesse, target: \cutoff, depth: 0.40), (source: \limbSpan, target: \rev, depth: 0.40), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyY, target: \pitch, depth: 0.30), (source: \bodyVitesse, target: \amp, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \cutoff, depth: 0.50), (source: \bodyY, target: \pitch, depth: 0.30), (source: \limbSpan, target: \res, depth: 0.40), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \rHandX, target: \amp, depth: 0.40), (source: \rHandY, target: \pitch, depth: 0.40), (source: \lHandX, target: \res, depth: 0.40)], [(source: \danse, target: \rev, depth: 0.50), (source: \bodyVitesse, target: \amp, depth: 0.40)], [(source: \rHandX, target: \amp, depth: 0.40), (source: \lHandY, target: \cutoff, depth: 0.50), (source: \lHandX, target: \res, depth: 0.40)], [(source: \bodyVitesse, target: \cutoff, depth: 0.40), (source: \limbSpan, target: \rev, depth: 0.40), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \danse, target: \rev, depth: 0.50), (source: \bodyVitesse, target: \amp, depth: 0.40)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)] ], 'voicePoses': [ [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [] ], -'globalActions': [ \fill, \drop, \evolve, \breakdown ] +'globalActions': [ \fill, \drop, \evolve, \breakdown ], +'globalSettings': ( 'openThresh': 0.65, 'closeThresh': 0.3, 'transientBars': 1, 'breakdownKeep': [ \kick, \sub ] ) ) diff --git a/sound_algo/data_only/matrix_presets/breakbeat_intro.matrix b/sound_algo/data_only/matrix_presets/breakbeat_intro.matrix index dec6a3d..46645c0 100644 --- a/sound_algo/data_only/matrix_presets/breakbeat_intro.matrix +++ b/sound_algo/data_only/matrix_presets/breakbeat_intro.matrix @@ -50,5 +50,6 @@ ], 'voiceMods': [ [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \cutoff, depth: 0.40), (source: \bodyY, target: \pitch, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \res, depth: 0.40), (source: \bodyY, target: \pitch, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \rHandX, target: \amp, depth: 0.40), (source: \rHandY, target: \pitch, depth: 0.40), (source: \lHandY, target: \cutoff, depth: 0.50), (source: \lHandX, target: \res, depth: 0.40)], [(source: \rHandX, target: \amp, depth: 0.40), (source: \rHandY, target: \pitch, depth: 0.40), (source: \lHandY, target: \cutoff, depth: 0.50), (source: \lHandX, target: \res, depth: 0.40)], [(source: \rHandX, target: \amp, depth: 0.40), (source: \rHandY, target: \pitch, depth: 0.40), (source: \lHandY, target: \cutoff, depth: 0.50), (source: \lHandX, target: \res, depth: 0.40)], [(source: \rHandX, target: \amp, depth: 0.40), (source: \rHandY, target: \pitch, depth: 0.40), (source: \lHandY, target: \cutoff, depth: 0.50), (source: \lHandX, target: \res, depth: 0.40)], [(source: \bodyVitesse, target: \cutoff, depth: 0.40), (source: \limbSpan, target: \rev, depth: 0.40), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyY, target: \pitch, depth: 0.30), (source: \bodyVitesse, target: \amp, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \cutoff, depth: 0.50), (source: \bodyY, target: \pitch, depth: 0.30), (source: \limbSpan, target: \res, depth: 0.40), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \rHandX, target: \amp, depth: 0.40), (source: \rHandY, target: \pitch, depth: 0.40), (source: \lHandX, target: \res, depth: 0.40)], [(source: \danse, target: \rev, depth: 0.50), (source: \bodyVitesse, target: \amp, depth: 0.40)], [(source: \rHandX, target: \amp, depth: 0.40), (source: \lHandY, target: \cutoff, depth: 0.50), (source: \lHandX, target: \res, depth: 0.40)], [(source: \bodyVitesse, target: \cutoff, depth: 0.40), (source: \limbSpan, target: \rev, depth: 0.40), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \danse, target: \rev, depth: 0.50), (source: \bodyVitesse, target: \amp, depth: 0.40)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)] ], 'voicePoses': [ [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [] ], -'globalActions': [ \fill, \drop, \evolve, \breakdown ] +'globalActions': [ \fill, \drop, \evolve, \breakdown ], +'globalSettings': ( 'openThresh': 0.65, 'closeThresh': 0.3, 'transientBars': 1, 'breakdownKeep': [ \kick, \sub ] ) ) diff --git a/sound_algo/data_only/matrix_presets/breakbeat_live.matrix b/sound_algo/data_only/matrix_presets/breakbeat_live.matrix index 202fcf0..40957ec 100644 --- a/sound_algo/data_only/matrix_presets/breakbeat_live.matrix +++ b/sound_algo/data_only/matrix_presets/breakbeat_live.matrix @@ -50,5 +50,6 @@ ], 'voiceMods': [ [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \cutoff, depth: 0.40), (source: \bodyY, target: \pitch, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \res, depth: 0.40), (source: \bodyY, target: \pitch, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \rHandX, target: \amp, depth: 0.40), (source: \rHandY, target: \pitch, depth: 0.40), (source: \lHandY, target: \cutoff, depth: 0.50), (source: \lHandX, target: \res, depth: 0.40)], [(source: \rHandX, target: \amp, depth: 0.40), (source: \rHandY, target: \pitch, depth: 0.40), (source: \lHandY, target: \cutoff, depth: 0.50), (source: \lHandX, target: \res, depth: 0.40)], [(source: \rHandX, target: \amp, depth: 0.40), (source: \rHandY, target: \pitch, depth: 0.40), (source: \lHandY, target: \cutoff, depth: 0.50), (source: \lHandX, target: \res, depth: 0.40)], [(source: \rHandX, target: \amp, depth: 0.40), (source: \rHandY, target: \pitch, depth: 0.40), (source: \lHandY, target: \cutoff, depth: 0.50), (source: \lHandX, target: \res, depth: 0.40)], [(source: \bodyVitesse, target: \cutoff, depth: 0.40), (source: \limbSpan, target: \rev, depth: 0.40), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyY, target: \pitch, depth: 0.30), (source: \bodyVitesse, target: \amp, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \cutoff, depth: 0.50), (source: \bodyY, target: \pitch, depth: 0.30), (source: \limbSpan, target: \res, depth: 0.40), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \rHandX, target: \amp, depth: 0.40), (source: \rHandY, target: \pitch, depth: 0.40), (source: \lHandX, target: \res, depth: 0.40)], [(source: \danse, target: \rev, depth: 0.50), (source: \bodyVitesse, target: \amp, depth: 0.40)], [(source: \rHandX, target: \amp, depth: 0.40), (source: \lHandY, target: \cutoff, depth: 0.50), (source: \lHandX, target: \res, depth: 0.40)], [(source: \bodyVitesse, target: \cutoff, depth: 0.40), (source: \limbSpan, target: \rev, depth: 0.40), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \danse, target: \rev, depth: 0.50), (source: \bodyVitesse, target: \amp, depth: 0.40)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)] ], 'voicePoses': [ [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [] ], -'globalActions': [ \fill, \drop, \evolve, \breakdown ] +'globalActions': [ \fill, \drop, \evolve, \breakdown ], +'globalSettings': ( 'openThresh': 0.65, 'closeThresh': 0.3, 'transientBars': 1, 'breakdownKeep': [ \kick, \sub ] ) ) diff --git a/sound_algo/data_only/matrix_presets/breakbeat_outro.matrix b/sound_algo/data_only/matrix_presets/breakbeat_outro.matrix index c144003..0c05d88 100644 --- a/sound_algo/data_only/matrix_presets/breakbeat_outro.matrix +++ b/sound_algo/data_only/matrix_presets/breakbeat_outro.matrix @@ -50,5 +50,6 @@ ], 'voiceMods': [ [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \cutoff, depth: 0.40), (source: \bodyY, target: \pitch, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \res, depth: 0.40), (source: \bodyY, target: \pitch, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \rHandX, target: \amp, depth: 0.40), (source: \rHandY, target: \pitch, depth: 0.40), (source: \lHandY, target: \cutoff, depth: 0.50), (source: \lHandX, target: \res, depth: 0.40)], [(source: \rHandX, target: \amp, depth: 0.40), (source: \rHandY, target: \pitch, depth: 0.40), (source: \lHandY, target: \cutoff, depth: 0.50), (source: \lHandX, target: \res, depth: 0.40)], [(source: \rHandX, target: \amp, depth: 0.40), (source: \rHandY, target: \pitch, depth: 0.40), (source: \lHandY, target: \cutoff, depth: 0.50), (source: \lHandX, target: \res, depth: 0.40)], [(source: \rHandX, target: \amp, depth: 0.40), (source: \rHandY, target: \pitch, depth: 0.40), (source: \lHandY, target: \cutoff, depth: 0.50), (source: \lHandX, target: \res, depth: 0.40)], [(source: \bodyVitesse, target: \cutoff, depth: 0.40), (source: \limbSpan, target: \rev, depth: 0.40), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyY, target: \pitch, depth: 0.30), (source: \bodyVitesse, target: \amp, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \cutoff, depth: 0.50), (source: \bodyY, target: \pitch, depth: 0.30), (source: \limbSpan, target: \res, depth: 0.40), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \rHandX, target: \amp, depth: 0.40), (source: \rHandY, target: \pitch, depth: 0.40), (source: \lHandX, target: \res, depth: 0.40)], [(source: \danse, target: \rev, depth: 0.50), (source: \bodyVitesse, target: \amp, depth: 0.40)], [(source: \rHandX, target: \amp, depth: 0.40), (source: \lHandY, target: \cutoff, depth: 0.50), (source: \lHandX, target: \res, depth: 0.40)], [(source: \bodyVitesse, target: \cutoff, depth: 0.40), (source: \limbSpan, target: \rev, depth: 0.40), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \danse, target: \rev, depth: 0.50), (source: \bodyVitesse, target: \amp, depth: 0.40)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)] ], 'voicePoses': [ [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [] ], -'globalActions': [ \fill, \drop, \evolve, \breakdown ] +'globalActions': [ \fill, \drop, \evolve, \breakdown ], +'globalSettings': ( 'openThresh': 0.65, 'closeThresh': 0.3, 'transientBars': 1, 'breakdownKeep': [ \kick, \sub ] ) ) diff --git a/sound_algo/data_only/matrix_presets/detroit_soul_intro.matrix b/sound_algo/data_only/matrix_presets/detroit_soul_intro.matrix index f5022d7..a19b617 100644 --- a/sound_algo/data_only/matrix_presets/detroit_soul_intro.matrix +++ b/sound_algo/data_only/matrix_presets/detroit_soul_intro.matrix @@ -50,5 +50,6 @@ ], 'voiceMods': [ [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \cutoff, depth: 0.40), (source: \bodyY, target: \pitch, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \res, depth: 0.40), (source: \bodyY, target: \pitch, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \rHandX, target: \amp, depth: 0.40), (source: \rHandY, target: \pitch, depth: 0.40), (source: \lHandY, target: \cutoff, depth: 0.50), (source: \lHandX, target: \res, depth: 0.40)], [(source: \rHandX, target: \amp, depth: 0.40), (source: \rHandY, target: \pitch, depth: 0.40), (source: \lHandY, target: \cutoff, depth: 0.50), (source: \lHandX, target: \res, depth: 0.40)], [(source: \rHandX, target: \amp, depth: 0.40), (source: \rHandY, target: \pitch, depth: 0.40), (source: \lHandY, target: \cutoff, depth: 0.50), (source: \lHandX, target: \res, depth: 0.40)], [(source: \rHandX, target: \amp, depth: 0.40), (source: \rHandY, target: \pitch, depth: 0.40), (source: \lHandY, target: \cutoff, depth: 0.50), (source: \lHandX, target: \res, depth: 0.40)], [(source: \bodyVitesse, target: \cutoff, depth: 0.40), (source: \limbSpan, target: \rev, depth: 0.40), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyY, target: \pitch, depth: 0.30), (source: \bodyVitesse, target: \amp, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \cutoff, depth: 0.50), (source: \bodyY, target: \pitch, depth: 0.30), (source: \limbSpan, target: \res, depth: 0.40), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \rHandX, target: \amp, depth: 0.40), (source: \rHandY, target: \pitch, depth: 0.40), (source: \lHandX, target: \res, depth: 0.40)], [(source: \danse, target: \rev, depth: 0.50), (source: \bodyVitesse, target: \amp, depth: 0.40)], [(source: \rHandX, target: \amp, depth: 0.40), (source: \lHandY, target: \cutoff, depth: 0.50), (source: \lHandX, target: \res, depth: 0.40)], [(source: \bodyVitesse, target: \cutoff, depth: 0.40), (source: \limbSpan, target: \rev, depth: 0.40), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \danse, target: \rev, depth: 0.50), (source: \bodyVitesse, target: \amp, depth: 0.40)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)] ], 'voicePoses': [ [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [] ], -'globalActions': [ \fill, \drop, \evolve, \breakdown ] +'globalActions': [ \fill, \drop, \evolve, \breakdown ], +'globalSettings': ( 'openThresh': 0.65, 'closeThresh': 0.3, 'transientBars': 1, 'breakdownKeep': [ \kick, \sub ] ) ) diff --git a/sound_algo/data_only/matrix_presets/detroit_soul_live.matrix b/sound_algo/data_only/matrix_presets/detroit_soul_live.matrix index 5e8fc1e..a425955 100644 --- a/sound_algo/data_only/matrix_presets/detroit_soul_live.matrix +++ b/sound_algo/data_only/matrix_presets/detroit_soul_live.matrix @@ -50,5 +50,6 @@ ], 'voiceMods': [ [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \cutoff, depth: 0.40), (source: \bodyY, target: \pitch, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \res, depth: 0.40), (source: \bodyY, target: \pitch, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \rHandX, target: \amp, depth: 0.40), (source: \rHandY, target: \pitch, depth: 0.40), (source: \lHandY, target: \cutoff, depth: 0.50), (source: \lHandX, target: \res, depth: 0.40)], [(source: \rHandX, target: \amp, depth: 0.40), (source: \rHandY, target: \pitch, depth: 0.40), (source: \lHandY, target: \cutoff, depth: 0.50), (source: \lHandX, target: \res, depth: 0.40)], [(source: \rHandX, target: \amp, depth: 0.40), (source: \rHandY, target: \pitch, depth: 0.40), (source: \lHandY, target: \cutoff, depth: 0.50), (source: \lHandX, target: \res, depth: 0.40)], [(source: \rHandX, target: \amp, depth: 0.40), (source: \rHandY, target: \pitch, depth: 0.40), (source: \lHandY, target: \cutoff, depth: 0.50), (source: \lHandX, target: \res, depth: 0.40)], [(source: \bodyVitesse, target: \cutoff, depth: 0.40), (source: \limbSpan, target: \rev, depth: 0.40), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyY, target: \pitch, depth: 0.30), (source: \bodyVitesse, target: \amp, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \cutoff, depth: 0.50), (source: \bodyY, target: \pitch, depth: 0.30), (source: \limbSpan, target: \res, depth: 0.40), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \rHandX, target: \amp, depth: 0.40), (source: \rHandY, target: \pitch, depth: 0.40), (source: \lHandX, target: \res, depth: 0.40)], [(source: \danse, target: \rev, depth: 0.50), (source: \bodyVitesse, target: \amp, depth: 0.40)], [(source: \rHandX, target: \amp, depth: 0.40), (source: \lHandY, target: \cutoff, depth: 0.50), (source: \lHandX, target: \res, depth: 0.40)], [(source: \bodyVitesse, target: \cutoff, depth: 0.40), (source: \limbSpan, target: \rev, depth: 0.40), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \danse, target: \rev, depth: 0.50), (source: \bodyVitesse, target: \amp, depth: 0.40)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)] ], 'voicePoses': [ [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [] ], -'globalActions': [ \fill, \drop, \evolve, \breakdown ] +'globalActions': [ \fill, \drop, \evolve, \breakdown ], +'globalSettings': ( 'openThresh': 0.65, 'closeThresh': 0.3, 'transientBars': 1, 'breakdownKeep': [ \kick, \sub ] ) ) diff --git a/sound_algo/data_only/matrix_presets/detroit_soul_outro.matrix b/sound_algo/data_only/matrix_presets/detroit_soul_outro.matrix index daddb9c..ca79a7f 100644 --- a/sound_algo/data_only/matrix_presets/detroit_soul_outro.matrix +++ b/sound_algo/data_only/matrix_presets/detroit_soul_outro.matrix @@ -50,5 +50,6 @@ ], 'voiceMods': [ [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \cutoff, depth: 0.40), (source: \bodyY, target: \pitch, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \res, depth: 0.40), (source: \bodyY, target: \pitch, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \rHandX, target: \amp, depth: 0.40), (source: \rHandY, target: \pitch, depth: 0.40), (source: \lHandY, target: \cutoff, depth: 0.50), (source: \lHandX, target: \res, depth: 0.40)], [(source: \rHandX, target: \amp, depth: 0.40), (source: \rHandY, target: \pitch, depth: 0.40), (source: \lHandY, target: \cutoff, depth: 0.50), (source: \lHandX, target: \res, depth: 0.40)], [(source: \rHandX, target: \amp, depth: 0.40), (source: \rHandY, target: \pitch, depth: 0.40), (source: \lHandY, target: \cutoff, depth: 0.50), (source: \lHandX, target: \res, depth: 0.40)], [(source: \rHandX, target: \amp, depth: 0.40), (source: \rHandY, target: \pitch, depth: 0.40), (source: \lHandY, target: \cutoff, depth: 0.50), (source: \lHandX, target: \res, depth: 0.40)], [(source: \bodyVitesse, target: \cutoff, depth: 0.40), (source: \limbSpan, target: \rev, depth: 0.40), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyY, target: \pitch, depth: 0.30), (source: \bodyVitesse, target: \amp, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \cutoff, depth: 0.50), (source: \bodyY, target: \pitch, depth: 0.30), (source: \limbSpan, target: \res, depth: 0.40), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \rHandX, target: \amp, depth: 0.40), (source: \rHandY, target: \pitch, depth: 0.40), (source: \lHandX, target: \res, depth: 0.40)], [(source: \danse, target: \rev, depth: 0.50), (source: \bodyVitesse, target: \amp, depth: 0.40)], [(source: \rHandX, target: \amp, depth: 0.40), (source: \lHandY, target: \cutoff, depth: 0.50), (source: \lHandX, target: \res, depth: 0.40)], [(source: \bodyVitesse, target: \cutoff, depth: 0.40), (source: \limbSpan, target: \rev, depth: 0.40), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \danse, target: \rev, depth: 0.50), (source: \bodyVitesse, target: \amp, depth: 0.40)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)] ], 'voicePoses': [ [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [] ], -'globalActions': [ \fill, \drop, \evolve, \breakdown ] +'globalActions': [ \fill, \drop, \evolve, \breakdown ], +'globalSettings': ( 'openThresh': 0.65, 'closeThresh': 0.3, 'transientBars': 1, 'breakdownKeep': [ \kick, \sub ] ) ) diff --git a/sound_algo/data_only/matrix_presets/dnb_roller_intro.matrix b/sound_algo/data_only/matrix_presets/dnb_roller_intro.matrix index d6b7d3a..0fed656 100644 --- a/sound_algo/data_only/matrix_presets/dnb_roller_intro.matrix +++ b/sound_algo/data_only/matrix_presets/dnb_roller_intro.matrix @@ -50,5 +50,6 @@ ], 'voiceMods': [ [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \cutoff, depth: 0.40), (source: \bodyY, target: \pitch, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \res, depth: 0.40), (source: \bodyY, target: \pitch, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \rHandX, target: \amp, depth: 0.40), (source: \rHandY, target: \pitch, depth: 0.40), (source: \lHandY, target: \cutoff, depth: 0.50), (source: \lHandX, target: \res, depth: 0.40)], [(source: \rHandX, target: \amp, depth: 0.40), (source: \rHandY, target: \pitch, depth: 0.40), (source: \lHandY, target: \cutoff, depth: 0.50), (source: \lHandX, target: \res, depth: 0.40)], [(source: \rHandX, target: \amp, depth: 0.40), (source: \rHandY, target: \pitch, depth: 0.40), (source: \lHandY, target: \cutoff, depth: 0.50), (source: \lHandX, target: \res, depth: 0.40)], [(source: \rHandX, target: \amp, depth: 0.40), (source: \rHandY, target: \pitch, depth: 0.40), (source: \lHandY, target: \cutoff, depth: 0.50), (source: \lHandX, target: \res, depth: 0.40)], [(source: \bodyVitesse, target: \cutoff, depth: 0.40), (source: \limbSpan, target: \rev, depth: 0.40), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyY, target: \pitch, depth: 0.30), (source: \bodyVitesse, target: \amp, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \cutoff, depth: 0.50), (source: \bodyY, target: \pitch, depth: 0.30), (source: \limbSpan, target: \res, depth: 0.40), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \rHandX, target: \amp, depth: 0.40), (source: \rHandY, target: \pitch, depth: 0.40), (source: \lHandX, target: \res, depth: 0.40)], [(source: \danse, target: \rev, depth: 0.50), (source: \bodyVitesse, target: \amp, depth: 0.40)], [(source: \rHandX, target: \amp, depth: 0.40), (source: \lHandY, target: \cutoff, depth: 0.50), (source: \lHandX, target: \res, depth: 0.40)], [(source: \bodyVitesse, target: \cutoff, depth: 0.40), (source: \limbSpan, target: \rev, depth: 0.40), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \danse, target: \rev, depth: 0.50), (source: \bodyVitesse, target: \amp, depth: 0.40)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)] ], 'voicePoses': [ [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [] ], -'globalActions': [ \fill, \drop, \evolve, \breakdown ] +'globalActions': [ \fill, \drop, \evolve, \breakdown ], +'globalSettings': ( 'openThresh': 0.65, 'closeThresh': 0.3, 'transientBars': 1, 'breakdownKeep': [ \kick, \sub ] ) ) diff --git a/sound_algo/data_only/matrix_presets/dnb_roller_live.matrix b/sound_algo/data_only/matrix_presets/dnb_roller_live.matrix index 43bd29d..9d6fcba 100644 --- a/sound_algo/data_only/matrix_presets/dnb_roller_live.matrix +++ b/sound_algo/data_only/matrix_presets/dnb_roller_live.matrix @@ -50,5 +50,6 @@ ], 'voiceMods': [ [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \cutoff, depth: 0.40), (source: \bodyY, target: \pitch, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \res, depth: 0.40), (source: \bodyY, target: \pitch, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \rHandX, target: \amp, depth: 0.40), (source: \rHandY, target: \pitch, depth: 0.40), (source: \lHandY, target: \cutoff, depth: 0.50), (source: \lHandX, target: \res, depth: 0.40)], [(source: \rHandX, target: \amp, depth: 0.40), (source: \rHandY, target: \pitch, depth: 0.40), (source: \lHandY, target: \cutoff, depth: 0.50), (source: \lHandX, target: \res, depth: 0.40)], [(source: \rHandX, target: \amp, depth: 0.40), (source: \rHandY, target: \pitch, depth: 0.40), (source: \lHandY, target: \cutoff, depth: 0.50), (source: \lHandX, target: \res, depth: 0.40)], [(source: \rHandX, target: \amp, depth: 0.40), (source: \rHandY, target: \pitch, depth: 0.40), (source: \lHandY, target: \cutoff, depth: 0.50), (source: \lHandX, target: \res, depth: 0.40)], [(source: \bodyVitesse, target: \cutoff, depth: 0.40), (source: \limbSpan, target: \rev, depth: 0.40), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyY, target: \pitch, depth: 0.30), (source: \bodyVitesse, target: \amp, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \cutoff, depth: 0.50), (source: \bodyY, target: \pitch, depth: 0.30), (source: \limbSpan, target: \res, depth: 0.40), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \rHandX, target: \amp, depth: 0.40), (source: \rHandY, target: \pitch, depth: 0.40), (source: \lHandX, target: \res, depth: 0.40)], [(source: \danse, target: \rev, depth: 0.50), (source: \bodyVitesse, target: \amp, depth: 0.40)], [(source: \rHandX, target: \amp, depth: 0.40), (source: \lHandY, target: \cutoff, depth: 0.50), (source: \lHandX, target: \res, depth: 0.40)], [(source: \bodyVitesse, target: \cutoff, depth: 0.40), (source: \limbSpan, target: \rev, depth: 0.40), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \danse, target: \rev, depth: 0.50), (source: \bodyVitesse, target: \amp, depth: 0.40)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)] ], 'voicePoses': [ [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [] ], -'globalActions': [ \fill, \drop, \evolve, \breakdown ] +'globalActions': [ \fill, \drop, \evolve, \breakdown ], +'globalSettings': ( 'openThresh': 0.65, 'closeThresh': 0.3, 'transientBars': 1, 'breakdownKeep': [ \kick, \sub ] ) ) diff --git a/sound_algo/data_only/matrix_presets/dnb_roller_outro.matrix b/sound_algo/data_only/matrix_presets/dnb_roller_outro.matrix index b07599d..1faea28 100644 --- a/sound_algo/data_only/matrix_presets/dnb_roller_outro.matrix +++ b/sound_algo/data_only/matrix_presets/dnb_roller_outro.matrix @@ -50,5 +50,6 @@ ], 'voiceMods': [ [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \cutoff, depth: 0.40), (source: \bodyY, target: \pitch, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \res, depth: 0.40), (source: \bodyY, target: \pitch, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \rHandX, target: \amp, depth: 0.40), (source: \rHandY, target: \pitch, depth: 0.40), (source: \lHandY, target: \cutoff, depth: 0.50), (source: \lHandX, target: \res, depth: 0.40)], [(source: \rHandX, target: \amp, depth: 0.40), (source: \rHandY, target: \pitch, depth: 0.40), (source: \lHandY, target: \cutoff, depth: 0.50), (source: \lHandX, target: \res, depth: 0.40)], [(source: \rHandX, target: \amp, depth: 0.40), (source: \rHandY, target: \pitch, depth: 0.40), (source: \lHandY, target: \cutoff, depth: 0.50), (source: \lHandX, target: \res, depth: 0.40)], [(source: \rHandX, target: \amp, depth: 0.40), (source: \rHandY, target: \pitch, depth: 0.40), (source: \lHandY, target: \cutoff, depth: 0.50), (source: \lHandX, target: \res, depth: 0.40)], [(source: \bodyVitesse, target: \cutoff, depth: 0.40), (source: \limbSpan, target: \rev, depth: 0.40), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyY, target: \pitch, depth: 0.30), (source: \bodyVitesse, target: \amp, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \cutoff, depth: 0.50), (source: \bodyY, target: \pitch, depth: 0.30), (source: \limbSpan, target: \res, depth: 0.40), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \rHandX, target: \amp, depth: 0.40), (source: \rHandY, target: \pitch, depth: 0.40), (source: \lHandX, target: \res, depth: 0.40)], [(source: \danse, target: \rev, depth: 0.50), (source: \bodyVitesse, target: \amp, depth: 0.40)], [(source: \rHandX, target: \amp, depth: 0.40), (source: \lHandY, target: \cutoff, depth: 0.50), (source: \lHandX, target: \res, depth: 0.40)], [(source: \bodyVitesse, target: \cutoff, depth: 0.40), (source: \limbSpan, target: \rev, depth: 0.40), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \danse, target: \rev, depth: 0.50), (source: \bodyVitesse, target: \amp, depth: 0.40)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)] ], 'voicePoses': [ [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [] ], -'globalActions': [ \fill, \drop, \evolve, \breakdown ] +'globalActions': [ \fill, \drop, \evolve, \breakdown ], +'globalSettings': ( 'openThresh': 0.65, 'closeThresh': 0.3, 'transientBars': 1, 'breakdownKeep': [ \kick, \sub ] ) ) diff --git a/sound_algo/data_only/matrix_presets/dub_techno_intro.matrix b/sound_algo/data_only/matrix_presets/dub_techno_intro.matrix index b98541f..83bfc07 100644 --- a/sound_algo/data_only/matrix_presets/dub_techno_intro.matrix +++ b/sound_algo/data_only/matrix_presets/dub_techno_intro.matrix @@ -50,5 +50,6 @@ ], 'voiceMods': [ [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \cutoff, depth: 0.40), (source: \bodyY, target: \pitch, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \res, depth: 0.40), (source: \bodyY, target: \pitch, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \rHandX, target: \amp, depth: 0.40), (source: \rHandY, target: \pitch, depth: 0.40), (source: \lHandY, target: \cutoff, depth: 0.50), (source: \lHandX, target: \res, depth: 0.40)], [(source: \rHandX, target: \amp, depth: 0.40), (source: \rHandY, target: \pitch, depth: 0.40), (source: \lHandY, target: \cutoff, depth: 0.50), (source: \lHandX, target: \res, depth: 0.40)], [(source: \rHandX, target: \amp, depth: 0.40), (source: \rHandY, target: \pitch, depth: 0.40), (source: \lHandY, target: \cutoff, depth: 0.50), (source: \lHandX, target: \res, depth: 0.40)], [(source: \rHandX, target: \amp, depth: 0.40), (source: \rHandY, target: \pitch, depth: 0.40), (source: \lHandY, target: \cutoff, depth: 0.50), (source: \lHandX, target: \res, depth: 0.40)], [(source: \bodyVitesse, target: \cutoff, depth: 0.40), (source: \limbSpan, target: \rev, depth: 0.40), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyY, target: \pitch, depth: 0.30), (source: \bodyVitesse, target: \amp, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \cutoff, depth: 0.50), (source: \bodyY, target: \pitch, depth: 0.30), (source: \limbSpan, target: \res, depth: 0.40), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \rHandX, target: \amp, depth: 0.40), (source: \rHandY, target: \pitch, depth: 0.40), (source: \lHandX, target: \res, depth: 0.40)], [(source: \danse, target: \rev, depth: 0.50), (source: \bodyVitesse, target: \amp, depth: 0.40)], [(source: \rHandX, target: \amp, depth: 0.40), (source: \lHandY, target: \cutoff, depth: 0.50), (source: \lHandX, target: \res, depth: 0.40)], [(source: \bodyVitesse, target: \cutoff, depth: 0.40), (source: \limbSpan, target: \rev, depth: 0.40), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \danse, target: \rev, depth: 0.50), (source: \bodyVitesse, target: \amp, depth: 0.40)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)] ], 'voicePoses': [ [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [] ], -'globalActions': [ \fill, \drop, \evolve, \breakdown ] +'globalActions': [ \fill, \drop, \evolve, \breakdown ], +'globalSettings': ( 'openThresh': 0.65, 'closeThresh': 0.3, 'transientBars': 1, 'breakdownKeep': [ \kick, \sub ] ) ) diff --git a/sound_algo/data_only/matrix_presets/dub_techno_live.matrix b/sound_algo/data_only/matrix_presets/dub_techno_live.matrix index 9106fcd..be84caa 100644 --- a/sound_algo/data_only/matrix_presets/dub_techno_live.matrix +++ b/sound_algo/data_only/matrix_presets/dub_techno_live.matrix @@ -50,5 +50,6 @@ ], 'voiceMods': [ [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \cutoff, depth: 0.40), (source: \bodyY, target: \pitch, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \res, depth: 0.40), (source: \bodyY, target: \pitch, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \rHandX, target: \amp, depth: 0.40), (source: \rHandY, target: \pitch, depth: 0.40), (source: \lHandY, target: \cutoff, depth: 0.50), (source: \lHandX, target: \res, depth: 0.40)], [(source: \rHandX, target: \amp, depth: 0.40), (source: \rHandY, target: \pitch, depth: 0.40), (source: \lHandY, target: \cutoff, depth: 0.50), (source: \lHandX, target: \res, depth: 0.40)], [(source: \rHandX, target: \amp, depth: 0.40), (source: \rHandY, target: \pitch, depth: 0.40), (source: \lHandY, target: \cutoff, depth: 0.50), (source: \lHandX, target: \res, depth: 0.40)], [(source: \rHandX, target: \amp, depth: 0.40), (source: \rHandY, target: \pitch, depth: 0.40), (source: \lHandY, target: \cutoff, depth: 0.50), (source: \lHandX, target: \res, depth: 0.40)], [(source: \bodyVitesse, target: \cutoff, depth: 0.40), (source: \limbSpan, target: \rev, depth: 0.40), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyY, target: \pitch, depth: 0.30), (source: \bodyVitesse, target: \amp, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \cutoff, depth: 0.50), (source: \bodyY, target: \pitch, depth: 0.30), (source: \limbSpan, target: \res, depth: 0.40), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \rHandX, target: \amp, depth: 0.40), (source: \rHandY, target: \pitch, depth: 0.40), (source: \lHandX, target: \res, depth: 0.40)], [(source: \danse, target: \rev, depth: 0.50), (source: \bodyVitesse, target: \amp, depth: 0.40)], [(source: \rHandX, target: \amp, depth: 0.40), (source: \lHandY, target: \cutoff, depth: 0.50), (source: \lHandX, target: \res, depth: 0.40)], [(source: \bodyVitesse, target: \cutoff, depth: 0.40), (source: \limbSpan, target: \rev, depth: 0.40), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \danse, target: \rev, depth: 0.50), (source: \bodyVitesse, target: \amp, depth: 0.40)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)] ], 'voicePoses': [ [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [] ], -'globalActions': [ \fill, \drop, \evolve, \breakdown ] +'globalActions': [ \fill, \drop, \evolve, \breakdown ], +'globalSettings': ( 'openThresh': 0.65, 'closeThresh': 0.3, 'transientBars': 1, 'breakdownKeep': [ \kick, \sub ] ) ) diff --git a/sound_algo/data_only/matrix_presets/dub_techno_outro.matrix b/sound_algo/data_only/matrix_presets/dub_techno_outro.matrix index e663490..63018d1 100644 --- a/sound_algo/data_only/matrix_presets/dub_techno_outro.matrix +++ b/sound_algo/data_only/matrix_presets/dub_techno_outro.matrix @@ -50,5 +50,6 @@ ], 'voiceMods': [ [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \cutoff, depth: 0.40), (source: \bodyY, target: \pitch, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \res, depth: 0.40), (source: \bodyY, target: \pitch, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \rHandX, target: \amp, depth: 0.40), (source: \rHandY, target: \pitch, depth: 0.40), (source: \lHandY, target: \cutoff, depth: 0.50), (source: \lHandX, target: \res, depth: 0.40)], [(source: \rHandX, target: \amp, depth: 0.40), (source: \rHandY, target: \pitch, depth: 0.40), (source: \lHandY, target: \cutoff, depth: 0.50), (source: \lHandX, target: \res, depth: 0.40)], [(source: \rHandX, target: \amp, depth: 0.40), (source: \rHandY, target: \pitch, depth: 0.40), (source: \lHandY, target: \cutoff, depth: 0.50), (source: \lHandX, target: \res, depth: 0.40)], [(source: \rHandX, target: \amp, depth: 0.40), (source: \rHandY, target: \pitch, depth: 0.40), (source: \lHandY, target: \cutoff, depth: 0.50), (source: \lHandX, target: \res, depth: 0.40)], [(source: \bodyVitesse, target: \cutoff, depth: 0.40), (source: \limbSpan, target: \rev, depth: 0.40), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyY, target: \pitch, depth: 0.30), (source: \bodyVitesse, target: \amp, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \cutoff, depth: 0.50), (source: \bodyY, target: \pitch, depth: 0.30), (source: \limbSpan, target: \res, depth: 0.40), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \rHandX, target: \amp, depth: 0.40), (source: \rHandY, target: \pitch, depth: 0.40), (source: \lHandX, target: \res, depth: 0.40)], [(source: \danse, target: \rev, depth: 0.50), (source: \bodyVitesse, target: \amp, depth: 0.40)], [(source: \rHandX, target: \amp, depth: 0.40), (source: \lHandY, target: \cutoff, depth: 0.50), (source: \lHandX, target: \res, depth: 0.40)], [(source: \bodyVitesse, target: \cutoff, depth: 0.40), (source: \limbSpan, target: \rev, depth: 0.40), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \danse, target: \rev, depth: 0.50), (source: \bodyVitesse, target: \amp, depth: 0.40)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)] ], 'voicePoses': [ [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [] ], -'globalActions': [ \fill, \drop, \evolve, \breakdown ] +'globalActions': [ \fill, \drop, \evolve, \breakdown ], +'globalSettings': ( 'openThresh': 0.65, 'closeThresh': 0.3, 'transientBars': 1, 'breakdownKeep': [ \kick, \sub ] ) ) diff --git a/sound_algo/data_only/matrix_presets/ebm_body_intro.matrix b/sound_algo/data_only/matrix_presets/ebm_body_intro.matrix index 8d246c3..55fd469 100644 --- a/sound_algo/data_only/matrix_presets/ebm_body_intro.matrix +++ b/sound_algo/data_only/matrix_presets/ebm_body_intro.matrix @@ -50,5 +50,6 @@ ], 'voiceMods': [ [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \cutoff, depth: 0.40), (source: \bodyY, target: \pitch, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \res, depth: 0.40), (source: \bodyY, target: \pitch, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \rHandX, target: \amp, depth: 0.40), (source: \rHandY, target: \pitch, depth: 0.40), (source: \lHandY, target: \cutoff, depth: 0.50), (source: \lHandX, target: \res, depth: 0.40)], [(source: \rHandX, target: \amp, depth: 0.40), (source: \rHandY, target: \pitch, depth: 0.40), (source: \lHandY, target: \cutoff, depth: 0.50), (source: \lHandX, target: \res, depth: 0.40)], [(source: \rHandX, target: \amp, depth: 0.40), (source: \rHandY, target: \pitch, depth: 0.40), (source: \lHandY, target: \cutoff, depth: 0.50), (source: \lHandX, target: \res, depth: 0.40)], [(source: \rHandX, target: \amp, depth: 0.40), (source: \rHandY, target: \pitch, depth: 0.40), (source: \lHandY, target: \cutoff, depth: 0.50), (source: \lHandX, target: \res, depth: 0.40)], [(source: \bodyVitesse, target: \cutoff, depth: 0.40), (source: \limbSpan, target: \rev, depth: 0.40), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyY, target: \pitch, depth: 0.30), (source: \bodyVitesse, target: \amp, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \cutoff, depth: 0.50), (source: \bodyY, target: \pitch, depth: 0.30), (source: \limbSpan, target: \res, depth: 0.40), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \rHandX, target: \amp, depth: 0.40), (source: \rHandY, target: \pitch, depth: 0.40), (source: \lHandX, target: \res, depth: 0.40)], [(source: \danse, target: \rev, depth: 0.50), (source: \bodyVitesse, target: \amp, depth: 0.40)], [(source: \rHandX, target: \amp, depth: 0.40), (source: \lHandY, target: \cutoff, depth: 0.50), (source: \lHandX, target: \res, depth: 0.40)], [(source: \bodyVitesse, target: \cutoff, depth: 0.40), (source: \limbSpan, target: \rev, depth: 0.40), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \danse, target: \rev, depth: 0.50), (source: \bodyVitesse, target: \amp, depth: 0.40)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)] ], 'voicePoses': [ [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [] ], -'globalActions': [ \fill, \drop, \evolve, \breakdown ] +'globalActions': [ \fill, \drop, \evolve, \breakdown ], +'globalSettings': ( 'openThresh': 0.65, 'closeThresh': 0.3, 'transientBars': 1, 'breakdownKeep': [ \kick, \sub ] ) ) diff --git a/sound_algo/data_only/matrix_presets/ebm_body_live.matrix b/sound_algo/data_only/matrix_presets/ebm_body_live.matrix index a5f8f02..b27eb1e 100644 --- a/sound_algo/data_only/matrix_presets/ebm_body_live.matrix +++ b/sound_algo/data_only/matrix_presets/ebm_body_live.matrix @@ -50,5 +50,6 @@ ], 'voiceMods': [ [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \cutoff, depth: 0.40), (source: \bodyY, target: \pitch, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \res, depth: 0.40), (source: \bodyY, target: \pitch, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \rHandX, target: \amp, depth: 0.40), (source: \rHandY, target: \pitch, depth: 0.40), (source: \lHandY, target: \cutoff, depth: 0.50), (source: \lHandX, target: \res, depth: 0.40)], [(source: \rHandX, target: \amp, depth: 0.40), (source: \rHandY, target: \pitch, depth: 0.40), (source: \lHandY, target: \cutoff, depth: 0.50), (source: \lHandX, target: \res, depth: 0.40)], [(source: \rHandX, target: \amp, depth: 0.40), (source: \rHandY, target: \pitch, depth: 0.40), (source: \lHandY, target: \cutoff, depth: 0.50), (source: \lHandX, target: \res, depth: 0.40)], [(source: \rHandX, target: \amp, depth: 0.40), (source: \rHandY, target: \pitch, depth: 0.40), (source: \lHandY, target: \cutoff, depth: 0.50), (source: \lHandX, target: \res, depth: 0.40)], [(source: \bodyVitesse, target: \cutoff, depth: 0.40), (source: \limbSpan, target: \rev, depth: 0.40), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyY, target: \pitch, depth: 0.30), (source: \bodyVitesse, target: \amp, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \cutoff, depth: 0.50), (source: \bodyY, target: \pitch, depth: 0.30), (source: \limbSpan, target: \res, depth: 0.40), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \rHandX, target: \amp, depth: 0.40), (source: \rHandY, target: \pitch, depth: 0.40), (source: \lHandX, target: \res, depth: 0.40)], [(source: \danse, target: \rev, depth: 0.50), (source: \bodyVitesse, target: \amp, depth: 0.40)], [(source: \rHandX, target: \amp, depth: 0.40), (source: \lHandY, target: \cutoff, depth: 0.50), (source: \lHandX, target: \res, depth: 0.40)], [(source: \bodyVitesse, target: \cutoff, depth: 0.40), (source: \limbSpan, target: \rev, depth: 0.40), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \danse, target: \rev, depth: 0.50), (source: \bodyVitesse, target: \amp, depth: 0.40)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)] ], 'voicePoses': [ [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [] ], -'globalActions': [ \fill, \drop, \evolve, \breakdown ] +'globalActions': [ \fill, \drop, \evolve, \breakdown ], +'globalSettings': ( 'openThresh': 0.65, 'closeThresh': 0.3, 'transientBars': 1, 'breakdownKeep': [ \kick, \sub ] ) ) diff --git a/sound_algo/data_only/matrix_presets/ebm_body_outro.matrix b/sound_algo/data_only/matrix_presets/ebm_body_outro.matrix index 1ca0859..4a644d6 100644 --- a/sound_algo/data_only/matrix_presets/ebm_body_outro.matrix +++ b/sound_algo/data_only/matrix_presets/ebm_body_outro.matrix @@ -50,5 +50,6 @@ ], 'voiceMods': [ [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \cutoff, depth: 0.40), (source: \bodyY, target: \pitch, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \res, depth: 0.40), (source: \bodyY, target: \pitch, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \rHandX, target: \amp, depth: 0.40), (source: \rHandY, target: \pitch, depth: 0.40), (source: \lHandY, target: \cutoff, depth: 0.50), (source: \lHandX, target: \res, depth: 0.40)], [(source: \rHandX, target: \amp, depth: 0.40), (source: \rHandY, target: \pitch, depth: 0.40), (source: \lHandY, target: \cutoff, depth: 0.50), (source: \lHandX, target: \res, depth: 0.40)], [(source: \rHandX, target: \amp, depth: 0.40), (source: \rHandY, target: \pitch, depth: 0.40), (source: \lHandY, target: \cutoff, depth: 0.50), (source: \lHandX, target: \res, depth: 0.40)], [(source: \rHandX, target: \amp, depth: 0.40), (source: \rHandY, target: \pitch, depth: 0.40), (source: \lHandY, target: \cutoff, depth: 0.50), (source: \lHandX, target: \res, depth: 0.40)], [(source: \bodyVitesse, target: \cutoff, depth: 0.40), (source: \limbSpan, target: \rev, depth: 0.40), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyY, target: \pitch, depth: 0.30), (source: \bodyVitesse, target: \amp, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \cutoff, depth: 0.50), (source: \bodyY, target: \pitch, depth: 0.30), (source: \limbSpan, target: \res, depth: 0.40), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \rHandX, target: \amp, depth: 0.40), (source: \rHandY, target: \pitch, depth: 0.40), (source: \lHandX, target: \res, depth: 0.40)], [(source: \danse, target: \rev, depth: 0.50), (source: \bodyVitesse, target: \amp, depth: 0.40)], [(source: \rHandX, target: \amp, depth: 0.40), (source: \lHandY, target: \cutoff, depth: 0.50), (source: \lHandX, target: \res, depth: 0.40)], [(source: \bodyVitesse, target: \cutoff, depth: 0.40), (source: \limbSpan, target: \rev, depth: 0.40), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \danse, target: \rev, depth: 0.50), (source: \bodyVitesse, target: \amp, depth: 0.40)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)] ], 'voicePoses': [ [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [] ], -'globalActions': [ \fill, \drop, \evolve, \breakdown ] +'globalActions': [ \fill, \drop, \evolve, \breakdown ], +'globalSettings': ( 'openThresh': 0.65, 'closeThresh': 0.3, 'transientBars': 1, 'breakdownKeep': [ \kick, \sub ] ) ) diff --git a/sound_algo/data_only/matrix_presets/electro_808_intro.matrix b/sound_algo/data_only/matrix_presets/electro_808_intro.matrix index 9e4e18b..7ab8b9e 100644 --- a/sound_algo/data_only/matrix_presets/electro_808_intro.matrix +++ b/sound_algo/data_only/matrix_presets/electro_808_intro.matrix @@ -50,5 +50,6 @@ ], 'voiceMods': [ [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \cutoff, depth: 0.40), (source: \bodyY, target: \pitch, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \res, depth: 0.40), (source: \bodyY, target: \pitch, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \rHandX, target: \amp, depth: 0.40), (source: \rHandY, target: \pitch, depth: 0.40), (source: \lHandY, target: \cutoff, depth: 0.50), (source: \lHandX, target: \res, depth: 0.40)], [(source: \rHandX, target: \amp, depth: 0.40), (source: \rHandY, target: \pitch, depth: 0.40), (source: \lHandY, target: \cutoff, depth: 0.50), (source: \lHandX, target: \res, depth: 0.40)], [(source: \rHandX, target: \amp, depth: 0.40), (source: \rHandY, target: \pitch, depth: 0.40), (source: \lHandY, target: \cutoff, depth: 0.50), (source: \lHandX, target: \res, depth: 0.40)], [(source: \rHandX, target: \amp, depth: 0.40), (source: \rHandY, target: \pitch, depth: 0.40), (source: \lHandY, target: \cutoff, depth: 0.50), (source: \lHandX, target: \res, depth: 0.40)], [(source: \bodyVitesse, target: \cutoff, depth: 0.40), (source: \limbSpan, target: \rev, depth: 0.40), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyY, target: \pitch, depth: 0.30), (source: \bodyVitesse, target: \amp, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \cutoff, depth: 0.50), (source: \bodyY, target: \pitch, depth: 0.30), (source: \limbSpan, target: \res, depth: 0.40), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \rHandX, target: \amp, depth: 0.40), (source: \rHandY, target: \pitch, depth: 0.40), (source: \lHandX, target: \res, depth: 0.40)], [(source: \danse, target: \rev, depth: 0.50), (source: \bodyVitesse, target: \amp, depth: 0.40)], [(source: \rHandX, target: \amp, depth: 0.40), (source: \lHandY, target: \cutoff, depth: 0.50), (source: \lHandX, target: \res, depth: 0.40)], [(source: \bodyVitesse, target: \cutoff, depth: 0.40), (source: \limbSpan, target: \rev, depth: 0.40), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \danse, target: \rev, depth: 0.50), (source: \bodyVitesse, target: \amp, depth: 0.40)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)] ], 'voicePoses': [ [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [] ], -'globalActions': [ \fill, \drop, \evolve, \breakdown ] +'globalActions': [ \fill, \drop, \evolve, \breakdown ], +'globalSettings': ( 'openThresh': 0.65, 'closeThresh': 0.3, 'transientBars': 1, 'breakdownKeep': [ \kick, \sub ] ) ) diff --git a/sound_algo/data_only/matrix_presets/electro_808_live.matrix b/sound_algo/data_only/matrix_presets/electro_808_live.matrix index 81b220c..86a1a25 100644 --- a/sound_algo/data_only/matrix_presets/electro_808_live.matrix +++ b/sound_algo/data_only/matrix_presets/electro_808_live.matrix @@ -50,5 +50,6 @@ ], 'voiceMods': [ [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \cutoff, depth: 0.40), (source: \bodyY, target: \pitch, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \res, depth: 0.40), (source: \bodyY, target: \pitch, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \rHandX, target: \amp, depth: 0.40), (source: \rHandY, target: \pitch, depth: 0.40), (source: \lHandY, target: \cutoff, depth: 0.50), (source: \lHandX, target: \res, depth: 0.40)], [(source: \rHandX, target: \amp, depth: 0.40), (source: \rHandY, target: \pitch, depth: 0.40), (source: \lHandY, target: \cutoff, depth: 0.50), (source: \lHandX, target: \res, depth: 0.40)], [(source: \rHandX, target: \amp, depth: 0.40), (source: \rHandY, target: \pitch, depth: 0.40), (source: \lHandY, target: \cutoff, depth: 0.50), (source: \lHandX, target: \res, depth: 0.40)], [(source: \rHandX, target: \amp, depth: 0.40), (source: \rHandY, target: \pitch, depth: 0.40), (source: \lHandY, target: \cutoff, depth: 0.50), (source: \lHandX, target: \res, depth: 0.40)], [(source: \bodyVitesse, target: \cutoff, depth: 0.40), (source: \limbSpan, target: \rev, depth: 0.40), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyY, target: \pitch, depth: 0.30), (source: \bodyVitesse, target: \amp, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \cutoff, depth: 0.50), (source: \bodyY, target: \pitch, depth: 0.30), (source: \limbSpan, target: \res, depth: 0.40), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \rHandX, target: \amp, depth: 0.40), (source: \rHandY, target: \pitch, depth: 0.40), (source: \lHandX, target: \res, depth: 0.40)], [(source: \danse, target: \rev, depth: 0.50), (source: \bodyVitesse, target: \amp, depth: 0.40)], [(source: \rHandX, target: \amp, depth: 0.40), (source: \lHandY, target: \cutoff, depth: 0.50), (source: \lHandX, target: \res, depth: 0.40)], [(source: \bodyVitesse, target: \cutoff, depth: 0.40), (source: \limbSpan, target: \rev, depth: 0.40), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \danse, target: \rev, depth: 0.50), (source: \bodyVitesse, target: \amp, depth: 0.40)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)] ], 'voicePoses': [ [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [] ], -'globalActions': [ \fill, \drop, \evolve, \breakdown ] +'globalActions': [ \fill, \drop, \evolve, \breakdown ], +'globalSettings': ( 'openThresh': 0.65, 'closeThresh': 0.3, 'transientBars': 1, 'breakdownKeep': [ \kick, \sub ] ) ) diff --git a/sound_algo/data_only/matrix_presets/electro_808_outro.matrix b/sound_algo/data_only/matrix_presets/electro_808_outro.matrix index 8a4219c..1711562 100644 --- a/sound_algo/data_only/matrix_presets/electro_808_outro.matrix +++ b/sound_algo/data_only/matrix_presets/electro_808_outro.matrix @@ -50,5 +50,6 @@ ], 'voiceMods': [ [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \cutoff, depth: 0.40), (source: \bodyY, target: \pitch, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \res, depth: 0.40), (source: \bodyY, target: \pitch, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \rHandX, target: \amp, depth: 0.40), (source: \rHandY, target: \pitch, depth: 0.40), (source: \lHandY, target: \cutoff, depth: 0.50), (source: \lHandX, target: \res, depth: 0.40)], [(source: \rHandX, target: \amp, depth: 0.40), (source: \rHandY, target: \pitch, depth: 0.40), (source: \lHandY, target: \cutoff, depth: 0.50), (source: \lHandX, target: \res, depth: 0.40)], [(source: \rHandX, target: \amp, depth: 0.40), (source: \rHandY, target: \pitch, depth: 0.40), (source: \lHandY, target: \cutoff, depth: 0.50), (source: \lHandX, target: \res, depth: 0.40)], [(source: \rHandX, target: \amp, depth: 0.40), (source: \rHandY, target: \pitch, depth: 0.40), (source: \lHandY, target: \cutoff, depth: 0.50), (source: \lHandX, target: \res, depth: 0.40)], [(source: \bodyVitesse, target: \cutoff, depth: 0.40), (source: \limbSpan, target: \rev, depth: 0.40), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyY, target: \pitch, depth: 0.30), (source: \bodyVitesse, target: \amp, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \cutoff, depth: 0.50), (source: \bodyY, target: \pitch, depth: 0.30), (source: \limbSpan, target: \res, depth: 0.40), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \rHandX, target: \amp, depth: 0.40), (source: \rHandY, target: \pitch, depth: 0.40), (source: \lHandX, target: \res, depth: 0.40)], [(source: \danse, target: \rev, depth: 0.50), (source: \bodyVitesse, target: \amp, depth: 0.40)], [(source: \rHandX, target: \amp, depth: 0.40), (source: \lHandY, target: \cutoff, depth: 0.50), (source: \lHandX, target: \res, depth: 0.40)], [(source: \bodyVitesse, target: \cutoff, depth: 0.40), (source: \limbSpan, target: \rev, depth: 0.40), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \danse, target: \rev, depth: 0.50), (source: \bodyVitesse, target: \amp, depth: 0.40)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)] ], 'voicePoses': [ [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [] ], -'globalActions': [ \fill, \drop, \evolve, \breakdown ] +'globalActions': [ \fill, \drop, \evolve, \breakdown ], +'globalSettings': ( 'openThresh': 0.65, 'closeThresh': 0.3, 'transientBars': 1, 'breakdownKeep': [ \kick, \sub ] ) ) diff --git a/sound_algo/data_only/matrix_presets/electro_funk_intro.matrix b/sound_algo/data_only/matrix_presets/electro_funk_intro.matrix index 210ea17..ef4cd14 100644 --- a/sound_algo/data_only/matrix_presets/electro_funk_intro.matrix +++ b/sound_algo/data_only/matrix_presets/electro_funk_intro.matrix @@ -50,5 +50,6 @@ ], 'voiceMods': [ [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \cutoff, depth: 0.40), (source: \bodyY, target: \pitch, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \res, depth: 0.40), (source: \bodyY, target: \pitch, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \rHandX, target: \amp, depth: 0.40), (source: \rHandY, target: \pitch, depth: 0.40), (source: \lHandY, target: \cutoff, depth: 0.50), (source: \lHandX, target: \res, depth: 0.40)], [(source: \rHandX, target: \amp, depth: 0.40), (source: \rHandY, target: \pitch, depth: 0.40), (source: \lHandY, target: \cutoff, depth: 0.50), (source: \lHandX, target: \res, depth: 0.40)], [(source: \rHandX, target: \amp, depth: 0.40), (source: \rHandY, target: \pitch, depth: 0.40), (source: \lHandY, target: \cutoff, depth: 0.50), (source: \lHandX, target: \res, depth: 0.40)], [(source: \rHandX, target: \amp, depth: 0.40), (source: \rHandY, target: \pitch, depth: 0.40), (source: \lHandY, target: \cutoff, depth: 0.50), (source: \lHandX, target: \res, depth: 0.40)], [(source: \bodyVitesse, target: \cutoff, depth: 0.40), (source: \limbSpan, target: \rev, depth: 0.40), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyY, target: \pitch, depth: 0.30), (source: \bodyVitesse, target: \amp, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \cutoff, depth: 0.50), (source: \bodyY, target: \pitch, depth: 0.30), (source: \limbSpan, target: \res, depth: 0.40), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \rHandX, target: \amp, depth: 0.40), (source: \rHandY, target: \pitch, depth: 0.40), (source: \lHandX, target: \res, depth: 0.40)], [(source: \danse, target: \rev, depth: 0.50), (source: \bodyVitesse, target: \amp, depth: 0.40)], [(source: \rHandX, target: \amp, depth: 0.40), (source: \lHandY, target: \cutoff, depth: 0.50), (source: \lHandX, target: \res, depth: 0.40)], [(source: \bodyVitesse, target: \cutoff, depth: 0.40), (source: \limbSpan, target: \rev, depth: 0.40), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \danse, target: \rev, depth: 0.50), (source: \bodyVitesse, target: \amp, depth: 0.40)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)] ], 'voicePoses': [ [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [] ], -'globalActions': [ \fill, \drop, \evolve, \breakdown ] +'globalActions': [ \fill, \drop, \evolve, \breakdown ], +'globalSettings': ( 'openThresh': 0.65, 'closeThresh': 0.3, 'transientBars': 1, 'breakdownKeep': [ \kick, \sub ] ) ) diff --git a/sound_algo/data_only/matrix_presets/electro_funk_live.matrix b/sound_algo/data_only/matrix_presets/electro_funk_live.matrix index b4dd51f..e68e475 100644 --- a/sound_algo/data_only/matrix_presets/electro_funk_live.matrix +++ b/sound_algo/data_only/matrix_presets/electro_funk_live.matrix @@ -50,5 +50,6 @@ ], 'voiceMods': [ [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \cutoff, depth: 0.40), (source: \bodyY, target: \pitch, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \res, depth: 0.40), (source: \bodyY, target: \pitch, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \rHandX, target: \amp, depth: 0.40), (source: \rHandY, target: \pitch, depth: 0.40), (source: \lHandY, target: \cutoff, depth: 0.50), (source: \lHandX, target: \res, depth: 0.40)], [(source: \rHandX, target: \amp, depth: 0.40), (source: \rHandY, target: \pitch, depth: 0.40), (source: \lHandY, target: \cutoff, depth: 0.50), (source: \lHandX, target: \res, depth: 0.40)], [(source: \rHandX, target: \amp, depth: 0.40), (source: \rHandY, target: \pitch, depth: 0.40), (source: \lHandY, target: \cutoff, depth: 0.50), (source: \lHandX, target: \res, depth: 0.40)], [(source: \rHandX, target: \amp, depth: 0.40), (source: \rHandY, target: \pitch, depth: 0.40), (source: \lHandY, target: \cutoff, depth: 0.50), (source: \lHandX, target: \res, depth: 0.40)], [(source: \bodyVitesse, target: \cutoff, depth: 0.40), (source: \limbSpan, target: \rev, depth: 0.40), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyY, target: \pitch, depth: 0.30), (source: \bodyVitesse, target: \amp, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \cutoff, depth: 0.50), (source: \bodyY, target: \pitch, depth: 0.30), (source: \limbSpan, target: \res, depth: 0.40), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \rHandX, target: \amp, depth: 0.40), (source: \rHandY, target: \pitch, depth: 0.40), (source: \lHandX, target: \res, depth: 0.40)], [(source: \danse, target: \rev, depth: 0.50), (source: \bodyVitesse, target: \amp, depth: 0.40)], [(source: \rHandX, target: \amp, depth: 0.40), (source: \lHandY, target: \cutoff, depth: 0.50), (source: \lHandX, target: \res, depth: 0.40)], [(source: \bodyVitesse, target: \cutoff, depth: 0.40), (source: \limbSpan, target: \rev, depth: 0.40), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \danse, target: \rev, depth: 0.50), (source: \bodyVitesse, target: \amp, depth: 0.40)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)] ], 'voicePoses': [ [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [] ], -'globalActions': [ \fill, \drop, \evolve, \breakdown ] +'globalActions': [ \fill, \drop, \evolve, \breakdown ], +'globalSettings': ( 'openThresh': 0.65, 'closeThresh': 0.3, 'transientBars': 1, 'breakdownKeep': [ \kick, \sub ] ) ) diff --git a/sound_algo/data_only/matrix_presets/electro_funk_outro.matrix b/sound_algo/data_only/matrix_presets/electro_funk_outro.matrix index 99769c3..837a968 100644 --- a/sound_algo/data_only/matrix_presets/electro_funk_outro.matrix +++ b/sound_algo/data_only/matrix_presets/electro_funk_outro.matrix @@ -50,5 +50,6 @@ ], 'voiceMods': [ [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \cutoff, depth: 0.40), (source: \bodyY, target: \pitch, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \res, depth: 0.40), (source: \bodyY, target: \pitch, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \rHandX, target: \amp, depth: 0.40), (source: \rHandY, target: \pitch, depth: 0.40), (source: \lHandY, target: \cutoff, depth: 0.50), (source: \lHandX, target: \res, depth: 0.40)], [(source: \rHandX, target: \amp, depth: 0.40), (source: \rHandY, target: \pitch, depth: 0.40), (source: \lHandY, target: \cutoff, depth: 0.50), (source: \lHandX, target: \res, depth: 0.40)], [(source: \rHandX, target: \amp, depth: 0.40), (source: \rHandY, target: \pitch, depth: 0.40), (source: \lHandY, target: \cutoff, depth: 0.50), (source: \lHandX, target: \res, depth: 0.40)], [(source: \rHandX, target: \amp, depth: 0.40), (source: \rHandY, target: \pitch, depth: 0.40), (source: \lHandY, target: \cutoff, depth: 0.50), (source: \lHandX, target: \res, depth: 0.40)], [(source: \bodyVitesse, target: \cutoff, depth: 0.40), (source: \limbSpan, target: \rev, depth: 0.40), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyY, target: \pitch, depth: 0.30), (source: \bodyVitesse, target: \amp, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \cutoff, depth: 0.50), (source: \bodyY, target: \pitch, depth: 0.30), (source: \limbSpan, target: \res, depth: 0.40), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \rHandX, target: \amp, depth: 0.40), (source: \rHandY, target: \pitch, depth: 0.40), (source: \lHandX, target: \res, depth: 0.40)], [(source: \danse, target: \rev, depth: 0.50), (source: \bodyVitesse, target: \amp, depth: 0.40)], [(source: \rHandX, target: \amp, depth: 0.40), (source: \lHandY, target: \cutoff, depth: 0.50), (source: \lHandX, target: \res, depth: 0.40)], [(source: \bodyVitesse, target: \cutoff, depth: 0.40), (source: \limbSpan, target: \rev, depth: 0.40), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \danse, target: \rev, depth: 0.50), (source: \bodyVitesse, target: \amp, depth: 0.40)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)] ], 'voicePoses': [ [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [] ], -'globalActions': [ \fill, \drop, \evolve, \breakdown ] +'globalActions': [ \fill, \drop, \evolve, \breakdown ], +'globalSettings': ( 'openThresh': 0.65, 'closeThresh': 0.3, 'transientBars': 1, 'breakdownKeep': [ \kick, \sub ] ) ) diff --git a/sound_algo/data_only/matrix_presets/footwork_chop_intro.matrix b/sound_algo/data_only/matrix_presets/footwork_chop_intro.matrix index e7bf626..f144132 100644 --- a/sound_algo/data_only/matrix_presets/footwork_chop_intro.matrix +++ b/sound_algo/data_only/matrix_presets/footwork_chop_intro.matrix @@ -50,5 +50,6 @@ ], 'voiceMods': [ [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \cutoff, depth: 0.40), (source: \bodyY, target: \pitch, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \res, depth: 0.40), (source: \bodyY, target: \pitch, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \rHandX, target: \amp, depth: 0.40), (source: \rHandY, target: \pitch, depth: 0.40), (source: \lHandY, target: \cutoff, depth: 0.50), (source: \lHandX, target: \res, depth: 0.40)], [(source: \rHandX, target: \amp, depth: 0.40), (source: \rHandY, target: \pitch, depth: 0.40), (source: \lHandY, target: \cutoff, depth: 0.50), (source: \lHandX, target: \res, depth: 0.40)], [(source: \rHandX, target: \amp, depth: 0.40), (source: \rHandY, target: \pitch, depth: 0.40), (source: \lHandY, target: \cutoff, depth: 0.50), (source: \lHandX, target: \res, depth: 0.40)], [(source: \rHandX, target: \amp, depth: 0.40), (source: \rHandY, target: \pitch, depth: 0.40), (source: \lHandY, target: \cutoff, depth: 0.50), (source: \lHandX, target: \res, depth: 0.40)], [(source: \bodyVitesse, target: \cutoff, depth: 0.40), (source: \limbSpan, target: \rev, depth: 0.40), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyY, target: \pitch, depth: 0.30), (source: \bodyVitesse, target: \amp, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \cutoff, depth: 0.50), (source: \bodyY, target: \pitch, depth: 0.30), (source: \limbSpan, target: \res, depth: 0.40), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \rHandX, target: \amp, depth: 0.40), (source: \rHandY, target: \pitch, depth: 0.40), (source: \lHandX, target: \res, depth: 0.40)], [(source: \danse, target: \rev, depth: 0.50), (source: \bodyVitesse, target: \amp, depth: 0.40)], [(source: \rHandX, target: \amp, depth: 0.40), (source: \lHandY, target: \cutoff, depth: 0.50), (source: \lHandX, target: \res, depth: 0.40)], [(source: \bodyVitesse, target: \cutoff, depth: 0.40), (source: \limbSpan, target: \rev, depth: 0.40), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \danse, target: \rev, depth: 0.50), (source: \bodyVitesse, target: \amp, depth: 0.40)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)] ], 'voicePoses': [ [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [] ], -'globalActions': [ \fill, \drop, \evolve, \breakdown ] +'globalActions': [ \fill, \drop, \evolve, \breakdown ], +'globalSettings': ( 'openThresh': 0.65, 'closeThresh': 0.3, 'transientBars': 1, 'breakdownKeep': [ \kick, \sub ] ) ) diff --git a/sound_algo/data_only/matrix_presets/footwork_chop_live.matrix b/sound_algo/data_only/matrix_presets/footwork_chop_live.matrix index 4ac2135..3300e36 100644 --- a/sound_algo/data_only/matrix_presets/footwork_chop_live.matrix +++ b/sound_algo/data_only/matrix_presets/footwork_chop_live.matrix @@ -50,5 +50,6 @@ ], 'voiceMods': [ [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \cutoff, depth: 0.40), (source: \bodyY, target: \pitch, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \res, depth: 0.40), (source: \bodyY, target: \pitch, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \rHandX, target: \amp, depth: 0.40), (source: \rHandY, target: \pitch, depth: 0.40), (source: \lHandY, target: \cutoff, depth: 0.50), (source: \lHandX, target: \res, depth: 0.40)], [(source: \rHandX, target: \amp, depth: 0.40), (source: \rHandY, target: \pitch, depth: 0.40), (source: \lHandY, target: \cutoff, depth: 0.50), (source: \lHandX, target: \res, depth: 0.40)], [(source: \rHandX, target: \amp, depth: 0.40), (source: \rHandY, target: \pitch, depth: 0.40), (source: \lHandY, target: \cutoff, depth: 0.50), (source: \lHandX, target: \res, depth: 0.40)], [(source: \rHandX, target: \amp, depth: 0.40), (source: \rHandY, target: \pitch, depth: 0.40), (source: \lHandY, target: \cutoff, depth: 0.50), (source: \lHandX, target: \res, depth: 0.40)], [(source: \bodyVitesse, target: \cutoff, depth: 0.40), (source: \limbSpan, target: \rev, depth: 0.40), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyY, target: \pitch, depth: 0.30), (source: \bodyVitesse, target: \amp, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \cutoff, depth: 0.50), (source: \bodyY, target: \pitch, depth: 0.30), (source: \limbSpan, target: \res, depth: 0.40), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \rHandX, target: \amp, depth: 0.40), (source: \rHandY, target: \pitch, depth: 0.40), (source: \lHandX, target: \res, depth: 0.40)], [(source: \danse, target: \rev, depth: 0.50), (source: \bodyVitesse, target: \amp, depth: 0.40)], [(source: \rHandX, target: \amp, depth: 0.40), (source: \lHandY, target: \cutoff, depth: 0.50), (source: \lHandX, target: \res, depth: 0.40)], [(source: \bodyVitesse, target: \cutoff, depth: 0.40), (source: \limbSpan, target: \rev, depth: 0.40), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \danse, target: \rev, depth: 0.50), (source: \bodyVitesse, target: \amp, depth: 0.40)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)] ], 'voicePoses': [ [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [] ], -'globalActions': [ \fill, \drop, \evolve, \breakdown ] +'globalActions': [ \fill, \drop, \evolve, \breakdown ], +'globalSettings': ( 'openThresh': 0.65, 'closeThresh': 0.3, 'transientBars': 1, 'breakdownKeep': [ \kick, \sub ] ) ) diff --git a/sound_algo/data_only/matrix_presets/footwork_chop_outro.matrix b/sound_algo/data_only/matrix_presets/footwork_chop_outro.matrix index 53626b8..869901f 100644 --- a/sound_algo/data_only/matrix_presets/footwork_chop_outro.matrix +++ b/sound_algo/data_only/matrix_presets/footwork_chop_outro.matrix @@ -50,5 +50,6 @@ ], 'voiceMods': [ [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \cutoff, depth: 0.40), (source: \bodyY, target: \pitch, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \res, depth: 0.40), (source: \bodyY, target: \pitch, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \rHandX, target: \amp, depth: 0.40), (source: \rHandY, target: \pitch, depth: 0.40), (source: \lHandY, target: \cutoff, depth: 0.50), (source: \lHandX, target: \res, depth: 0.40)], [(source: \rHandX, target: \amp, depth: 0.40), (source: \rHandY, target: \pitch, depth: 0.40), (source: \lHandY, target: \cutoff, depth: 0.50), (source: \lHandX, target: \res, depth: 0.40)], [(source: \rHandX, target: \amp, depth: 0.40), (source: \rHandY, target: \pitch, depth: 0.40), (source: \lHandY, target: \cutoff, depth: 0.50), (source: \lHandX, target: \res, depth: 0.40)], [(source: \rHandX, target: \amp, depth: 0.40), (source: \rHandY, target: \pitch, depth: 0.40), (source: \lHandY, target: \cutoff, depth: 0.50), (source: \lHandX, target: \res, depth: 0.40)], [(source: \bodyVitesse, target: \cutoff, depth: 0.40), (source: \limbSpan, target: \rev, depth: 0.40), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyY, target: \pitch, depth: 0.30), (source: \bodyVitesse, target: \amp, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \cutoff, depth: 0.50), (source: \bodyY, target: \pitch, depth: 0.30), (source: \limbSpan, target: \res, depth: 0.40), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \rHandX, target: \amp, depth: 0.40), (source: \rHandY, target: \pitch, depth: 0.40), (source: \lHandX, target: \res, depth: 0.40)], [(source: \danse, target: \rev, depth: 0.50), (source: \bodyVitesse, target: \amp, depth: 0.40)], [(source: \rHandX, target: \amp, depth: 0.40), (source: \lHandY, target: \cutoff, depth: 0.50), (source: \lHandX, target: \res, depth: 0.40)], [(source: \bodyVitesse, target: \cutoff, depth: 0.40), (source: \limbSpan, target: \rev, depth: 0.40), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \danse, target: \rev, depth: 0.50), (source: \bodyVitesse, target: \amp, depth: 0.40)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)] ], 'voicePoses': [ [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [] ], -'globalActions': [ \fill, \drop, \evolve, \breakdown ] +'globalActions': [ \fill, \drop, \evolve, \breakdown ], +'globalSettings': ( 'openThresh': 0.65, 'closeThresh': 0.3, 'transientBars': 1, 'breakdownKeep': [ \kick, \sub ] ) ) diff --git a/sound_algo/data_only/matrix_presets/generate_presets.py b/sound_algo/data_only/matrix_presets/generate_presets.py index 73ee1bd..57008d7 100644 --- a/sound_algo/data_only/matrix_presets/generate_presets.py +++ b/sound_algo/data_only/matrix_presets/generate_presets.py @@ -1148,7 +1148,9 @@ def to_sc(name, arc_fn, instkit, melodies, extra, post=None): "'colorDefs': [\n%s\n],\n" "'voiceMods': [ %s ],\n" "'voicePoses': [ %s ],\n" - "'globalActions': [ \\fill, \\drop, \\evolve, \\breakdown ]\n)\n" + "'globalActions': [ \\fill, \\drop, \\evolve, \\breakdown ],\n" + "'globalSettings': ( 'openThresh': 0.65, 'closeThresh': 0.3, " + "'transientBars': 1, 'breakdownKeep': [ \\kick, \\sub ] )\n)\n" % (rows, isyms, cds, vms, vps)) diff --git a/sound_algo/data_only/matrix_presets/hardcore_punk_intro.matrix b/sound_algo/data_only/matrix_presets/hardcore_punk_intro.matrix index 8533a08..b65b58d 100644 --- a/sound_algo/data_only/matrix_presets/hardcore_punk_intro.matrix +++ b/sound_algo/data_only/matrix_presets/hardcore_punk_intro.matrix @@ -50,5 +50,6 @@ ], 'voiceMods': [ [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \cutoff, depth: 0.40), (source: \bodyY, target: \pitch, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \res, depth: 0.40), (source: \bodyY, target: \pitch, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \rHandX, target: \amp, depth: 0.40), (source: \rHandY, target: \pitch, depth: 0.40), (source: \lHandY, target: \cutoff, depth: 0.50), (source: \lHandX, target: \res, depth: 0.40)], [(source: \rHandX, target: \amp, depth: 0.40), (source: \rHandY, target: \pitch, depth: 0.40), (source: \lHandY, target: \cutoff, depth: 0.50), (source: \lHandX, target: \res, depth: 0.40)], [(source: \rHandX, target: \amp, depth: 0.40), (source: \rHandY, target: \pitch, depth: 0.40), (source: \lHandY, target: \cutoff, depth: 0.50), (source: \lHandX, target: \res, depth: 0.40)], [(source: \rHandX, target: \amp, depth: 0.40), (source: \rHandY, target: \pitch, depth: 0.40), (source: \lHandY, target: \cutoff, depth: 0.50), (source: \lHandX, target: \res, depth: 0.40)], [(source: \bodyVitesse, target: \cutoff, depth: 0.40), (source: \limbSpan, target: \rev, depth: 0.40), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyY, target: \pitch, depth: 0.30), (source: \bodyVitesse, target: \amp, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \cutoff, depth: 0.50), (source: \bodyY, target: \pitch, depth: 0.30), (source: \limbSpan, target: \res, depth: 0.40), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \rHandX, target: \amp, depth: 0.40), (source: \rHandY, target: \pitch, depth: 0.40), (source: \lHandX, target: \res, depth: 0.40)], [(source: \danse, target: \rev, depth: 0.50), (source: \bodyVitesse, target: \amp, depth: 0.40)], [(source: \rHandX, target: \amp, depth: 0.40), (source: \lHandY, target: \cutoff, depth: 0.50), (source: \lHandX, target: \res, depth: 0.40)], [(source: \bodyVitesse, target: \cutoff, depth: 0.40), (source: \limbSpan, target: \rev, depth: 0.40), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \danse, target: \rev, depth: 0.50), (source: \bodyVitesse, target: \amp, depth: 0.40)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)] ], 'voicePoses': [ [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [] ], -'globalActions': [ \fill, \drop, \evolve, \breakdown ] +'globalActions': [ \fill, \drop, \evolve, \breakdown ], +'globalSettings': ( 'openThresh': 0.65, 'closeThresh': 0.3, 'transientBars': 1, 'breakdownKeep': [ \kick, \sub ] ) ) diff --git a/sound_algo/data_only/matrix_presets/hardcore_punk_live.matrix b/sound_algo/data_only/matrix_presets/hardcore_punk_live.matrix index bef28bf..2628303 100644 --- a/sound_algo/data_only/matrix_presets/hardcore_punk_live.matrix +++ b/sound_algo/data_only/matrix_presets/hardcore_punk_live.matrix @@ -50,5 +50,6 @@ ], 'voiceMods': [ [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \cutoff, depth: 0.40), (source: \bodyY, target: \pitch, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \res, depth: 0.40), (source: \bodyY, target: \pitch, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \rHandX, target: \amp, depth: 0.40), (source: \rHandY, target: \pitch, depth: 0.40), (source: \lHandY, target: \cutoff, depth: 0.50), (source: \lHandX, target: \res, depth: 0.40)], [(source: \rHandX, target: \amp, depth: 0.40), (source: \rHandY, target: \pitch, depth: 0.40), (source: \lHandY, target: \cutoff, depth: 0.50), (source: \lHandX, target: \res, depth: 0.40)], [(source: \rHandX, target: \amp, depth: 0.40), (source: \rHandY, target: \pitch, depth: 0.40), (source: \lHandY, target: \cutoff, depth: 0.50), (source: \lHandX, target: \res, depth: 0.40)], [(source: \rHandX, target: \amp, depth: 0.40), (source: \rHandY, target: \pitch, depth: 0.40), (source: \lHandY, target: \cutoff, depth: 0.50), (source: \lHandX, target: \res, depth: 0.40)], [(source: \bodyVitesse, target: \cutoff, depth: 0.40), (source: \limbSpan, target: \rev, depth: 0.40), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyY, target: \pitch, depth: 0.30), (source: \bodyVitesse, target: \amp, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \cutoff, depth: 0.50), (source: \bodyY, target: \pitch, depth: 0.30), (source: \limbSpan, target: \res, depth: 0.40), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \rHandX, target: \amp, depth: 0.40), (source: \rHandY, target: \pitch, depth: 0.40), (source: \lHandX, target: \res, depth: 0.40)], [(source: \danse, target: \rev, depth: 0.50), (source: \bodyVitesse, target: \amp, depth: 0.40)], [(source: \rHandX, target: \amp, depth: 0.40), (source: \lHandY, target: \cutoff, depth: 0.50), (source: \lHandX, target: \res, depth: 0.40)], [(source: \bodyVitesse, target: \cutoff, depth: 0.40), (source: \limbSpan, target: \rev, depth: 0.40), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \danse, target: \rev, depth: 0.50), (source: \bodyVitesse, target: \amp, depth: 0.40)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)] ], 'voicePoses': [ [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [] ], -'globalActions': [ \fill, \drop, \evolve, \breakdown ] +'globalActions': [ \fill, \drop, \evolve, \breakdown ], +'globalSettings': ( 'openThresh': 0.65, 'closeThresh': 0.3, 'transientBars': 1, 'breakdownKeep': [ \kick, \sub ] ) ) diff --git a/sound_algo/data_only/matrix_presets/hardcore_punk_outro.matrix b/sound_algo/data_only/matrix_presets/hardcore_punk_outro.matrix index 8d4336f..09b807b 100644 --- a/sound_algo/data_only/matrix_presets/hardcore_punk_outro.matrix +++ b/sound_algo/data_only/matrix_presets/hardcore_punk_outro.matrix @@ -50,5 +50,6 @@ ], 'voiceMods': [ [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \cutoff, depth: 0.40), (source: \bodyY, target: \pitch, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \res, depth: 0.40), (source: \bodyY, target: \pitch, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \rHandX, target: \amp, depth: 0.40), (source: \rHandY, target: \pitch, depth: 0.40), (source: \lHandY, target: \cutoff, depth: 0.50), (source: \lHandX, target: \res, depth: 0.40)], [(source: \rHandX, target: \amp, depth: 0.40), (source: \rHandY, target: \pitch, depth: 0.40), (source: \lHandY, target: \cutoff, depth: 0.50), (source: \lHandX, target: \res, depth: 0.40)], [(source: \rHandX, target: \amp, depth: 0.40), (source: \rHandY, target: \pitch, depth: 0.40), (source: \lHandY, target: \cutoff, depth: 0.50), (source: \lHandX, target: \res, depth: 0.40)], [(source: \rHandX, target: \amp, depth: 0.40), (source: \rHandY, target: \pitch, depth: 0.40), (source: \lHandY, target: \cutoff, depth: 0.50), (source: \lHandX, target: \res, depth: 0.40)], [(source: \bodyVitesse, target: \cutoff, depth: 0.40), (source: \limbSpan, target: \rev, depth: 0.40), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyY, target: \pitch, depth: 0.30), (source: \bodyVitesse, target: \amp, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \cutoff, depth: 0.50), (source: \bodyY, target: \pitch, depth: 0.30), (source: \limbSpan, target: \res, depth: 0.40), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \rHandX, target: \amp, depth: 0.40), (source: \rHandY, target: \pitch, depth: 0.40), (source: \lHandX, target: \res, depth: 0.40)], [(source: \danse, target: \rev, depth: 0.50), (source: \bodyVitesse, target: \amp, depth: 0.40)], [(source: \rHandX, target: \amp, depth: 0.40), (source: \lHandY, target: \cutoff, depth: 0.50), (source: \lHandX, target: \res, depth: 0.40)], [(source: \bodyVitesse, target: \cutoff, depth: 0.40), (source: \limbSpan, target: \rev, depth: 0.40), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \danse, target: \rev, depth: 0.50), (source: \bodyVitesse, target: \amp, depth: 0.40)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)] ], 'voicePoses': [ [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [] ], -'globalActions': [ \fill, \drop, \evolve, \breakdown ] +'globalActions': [ \fill, \drop, \evolve, \breakdown ], +'globalSettings': ( 'openThresh': 0.65, 'closeThresh': 0.3, 'transientBars': 1, 'breakdownKeep': [ \kick, \sub ] ) ) diff --git a/sound_algo/data_only/matrix_presets/hypnotic_arp_intro.matrix b/sound_algo/data_only/matrix_presets/hypnotic_arp_intro.matrix index ccb915c..1556473 100644 --- a/sound_algo/data_only/matrix_presets/hypnotic_arp_intro.matrix +++ b/sound_algo/data_only/matrix_presets/hypnotic_arp_intro.matrix @@ -50,5 +50,6 @@ ], 'voiceMods': [ [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \cutoff, depth: 0.40), (source: \bodyY, target: \pitch, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \res, depth: 0.40), (source: \bodyY, target: \pitch, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \rHandX, target: \amp, depth: 0.40), (source: \rHandY, target: \pitch, depth: 0.40), (source: \lHandY, target: \cutoff, depth: 0.50), (source: \lHandX, target: \res, depth: 0.40)], [(source: \rHandX, target: \amp, depth: 0.40), (source: \rHandY, target: \pitch, depth: 0.40), (source: \lHandY, target: \cutoff, depth: 0.50), (source: \lHandX, target: \res, depth: 0.40)], [(source: \rHandX, target: \amp, depth: 0.40), (source: \rHandY, target: \pitch, depth: 0.40), (source: \lHandY, target: \cutoff, depth: 0.50), (source: \lHandX, target: \res, depth: 0.40)], [(source: \rHandX, target: \amp, depth: 0.40), (source: \rHandY, target: \pitch, depth: 0.40), (source: \lHandY, target: \cutoff, depth: 0.50), (source: \lHandX, target: \res, depth: 0.40)], [(source: \bodyVitesse, target: \cutoff, depth: 0.40), (source: \limbSpan, target: \rev, depth: 0.40), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyY, target: \pitch, depth: 0.30), (source: \bodyVitesse, target: \amp, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \cutoff, depth: 0.50), (source: \bodyY, target: \pitch, depth: 0.30), (source: \limbSpan, target: \res, depth: 0.40), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \rHandX, target: \amp, depth: 0.40), (source: \rHandY, target: \pitch, depth: 0.40), (source: \lHandX, target: \res, depth: 0.40)], [(source: \danse, target: \rev, depth: 0.50), (source: \bodyVitesse, target: \amp, depth: 0.40)], [(source: \rHandX, target: \amp, depth: 0.40), (source: \lHandY, target: \cutoff, depth: 0.50), (source: \lHandX, target: \res, depth: 0.40)], [(source: \bodyVitesse, target: \cutoff, depth: 0.40), (source: \limbSpan, target: \rev, depth: 0.40), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \danse, target: \rev, depth: 0.50), (source: \bodyVitesse, target: \amp, depth: 0.40)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)] ], 'voicePoses': [ [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [] ], -'globalActions': [ \fill, \drop, \evolve, \breakdown ] +'globalActions': [ \fill, \drop, \evolve, \breakdown ], +'globalSettings': ( 'openThresh': 0.65, 'closeThresh': 0.3, 'transientBars': 1, 'breakdownKeep': [ \kick, \sub ] ) ) diff --git a/sound_algo/data_only/matrix_presets/hypnotic_arp_live.matrix b/sound_algo/data_only/matrix_presets/hypnotic_arp_live.matrix index d08ae81..aebbff4 100644 --- a/sound_algo/data_only/matrix_presets/hypnotic_arp_live.matrix +++ b/sound_algo/data_only/matrix_presets/hypnotic_arp_live.matrix @@ -50,5 +50,6 @@ ], 'voiceMods': [ [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \cutoff, depth: 0.40), (source: \bodyY, target: \pitch, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \res, depth: 0.40), (source: \bodyY, target: \pitch, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \rHandX, target: \amp, depth: 0.40), (source: \rHandY, target: \pitch, depth: 0.40), (source: \lHandY, target: \cutoff, depth: 0.50), (source: \lHandX, target: \res, depth: 0.40)], [(source: \rHandX, target: \amp, depth: 0.40), (source: \rHandY, target: \pitch, depth: 0.40), (source: \lHandY, target: \cutoff, depth: 0.50), (source: \lHandX, target: \res, depth: 0.40)], [(source: \rHandX, target: \amp, depth: 0.40), (source: \rHandY, target: \pitch, depth: 0.40), (source: \lHandY, target: \cutoff, depth: 0.50), (source: \lHandX, target: \res, depth: 0.40)], [(source: \rHandX, target: \amp, depth: 0.40), (source: \rHandY, target: \pitch, depth: 0.40), (source: \lHandY, target: \cutoff, depth: 0.50), (source: \lHandX, target: \res, depth: 0.40)], [(source: \bodyVitesse, target: \cutoff, depth: 0.40), (source: \limbSpan, target: \rev, depth: 0.40), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyY, target: \pitch, depth: 0.30), (source: \bodyVitesse, target: \amp, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \cutoff, depth: 0.50), (source: \bodyY, target: \pitch, depth: 0.30), (source: \limbSpan, target: \res, depth: 0.40), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \rHandX, target: \amp, depth: 0.40), (source: \rHandY, target: \pitch, depth: 0.40), (source: \lHandX, target: \res, depth: 0.40)], [(source: \danse, target: \rev, depth: 0.50), (source: \bodyVitesse, target: \amp, depth: 0.40)], [(source: \rHandX, target: \amp, depth: 0.40), (source: \lHandY, target: \cutoff, depth: 0.50), (source: \lHandX, target: \res, depth: 0.40)], [(source: \bodyVitesse, target: \cutoff, depth: 0.40), (source: \limbSpan, target: \rev, depth: 0.40), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \danse, target: \rev, depth: 0.50), (source: \bodyVitesse, target: \amp, depth: 0.40)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)] ], 'voicePoses': [ [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [] ], -'globalActions': [ \fill, \drop, \evolve, \breakdown ] +'globalActions': [ \fill, \drop, \evolve, \breakdown ], +'globalSettings': ( 'openThresh': 0.65, 'closeThresh': 0.3, 'transientBars': 1, 'breakdownKeep': [ \kick, \sub ] ) ) diff --git a/sound_algo/data_only/matrix_presets/hypnotic_arp_outro.matrix b/sound_algo/data_only/matrix_presets/hypnotic_arp_outro.matrix index 7f73763..b6f3886 100644 --- a/sound_algo/data_only/matrix_presets/hypnotic_arp_outro.matrix +++ b/sound_algo/data_only/matrix_presets/hypnotic_arp_outro.matrix @@ -50,5 +50,6 @@ ], 'voiceMods': [ [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \cutoff, depth: 0.40), (source: \bodyY, target: \pitch, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \res, depth: 0.40), (source: \bodyY, target: \pitch, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \rHandX, target: \amp, depth: 0.40), (source: \rHandY, target: \pitch, depth: 0.40), (source: \lHandY, target: \cutoff, depth: 0.50), (source: \lHandX, target: \res, depth: 0.40)], [(source: \rHandX, target: \amp, depth: 0.40), (source: \rHandY, target: \pitch, depth: 0.40), (source: \lHandY, target: \cutoff, depth: 0.50), (source: \lHandX, target: \res, depth: 0.40)], [(source: \rHandX, target: \amp, depth: 0.40), (source: \rHandY, target: \pitch, depth: 0.40), (source: \lHandY, target: \cutoff, depth: 0.50), (source: \lHandX, target: \res, depth: 0.40)], [(source: \rHandX, target: \amp, depth: 0.40), (source: \rHandY, target: \pitch, depth: 0.40), (source: \lHandY, target: \cutoff, depth: 0.50), (source: \lHandX, target: \res, depth: 0.40)], [(source: \bodyVitesse, target: \cutoff, depth: 0.40), (source: \limbSpan, target: \rev, depth: 0.40), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyY, target: \pitch, depth: 0.30), (source: \bodyVitesse, target: \amp, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \cutoff, depth: 0.50), (source: \bodyY, target: \pitch, depth: 0.30), (source: \limbSpan, target: \res, depth: 0.40), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \rHandX, target: \amp, depth: 0.40), (source: \rHandY, target: \pitch, depth: 0.40), (source: \lHandX, target: \res, depth: 0.40)], [(source: \danse, target: \rev, depth: 0.50), (source: \bodyVitesse, target: \amp, depth: 0.40)], [(source: \rHandX, target: \amp, depth: 0.40), (source: \lHandY, target: \cutoff, depth: 0.50), (source: \lHandX, target: \res, depth: 0.40)], [(source: \bodyVitesse, target: \cutoff, depth: 0.40), (source: \limbSpan, target: \rev, depth: 0.40), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \danse, target: \rev, depth: 0.50), (source: \bodyVitesse, target: \amp, depth: 0.40)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)] ], 'voicePoses': [ [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [] ], -'globalActions': [ \fill, \drop, \evolve, \breakdown ] +'globalActions': [ \fill, \drop, \evolve, \breakdown ], +'globalSettings': ( 'openThresh': 0.65, 'closeThresh': 0.3, 'transientBars': 1, 'breakdownKeep': [ \kick, \sub ] ) ) diff --git a/sound_algo/data_only/matrix_presets/industrial_grind_intro.matrix b/sound_algo/data_only/matrix_presets/industrial_grind_intro.matrix index d276b25..3a8bed0 100644 --- a/sound_algo/data_only/matrix_presets/industrial_grind_intro.matrix +++ b/sound_algo/data_only/matrix_presets/industrial_grind_intro.matrix @@ -50,5 +50,6 @@ ], 'voiceMods': [ [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \cutoff, depth: 0.40), (source: \bodyY, target: \pitch, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \res, depth: 0.40), (source: \bodyY, target: \pitch, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \rHandX, target: \amp, depth: 0.40), (source: \rHandY, target: \pitch, depth: 0.40), (source: \lHandY, target: \cutoff, depth: 0.50), (source: \lHandX, target: \res, depth: 0.40)], [(source: \rHandX, target: \amp, depth: 0.40), (source: \rHandY, target: \pitch, depth: 0.40), (source: \lHandY, target: \cutoff, depth: 0.50), (source: \lHandX, target: \res, depth: 0.40)], [(source: \rHandX, target: \amp, depth: 0.40), (source: \rHandY, target: \pitch, depth: 0.40), (source: \lHandY, target: \cutoff, depth: 0.50), (source: \lHandX, target: \res, depth: 0.40)], [(source: \rHandX, target: \amp, depth: 0.40), (source: \rHandY, target: \pitch, depth: 0.40), (source: \lHandY, target: \cutoff, depth: 0.50), (source: \lHandX, target: \res, depth: 0.40)], [(source: \bodyVitesse, target: \cutoff, depth: 0.40), (source: \limbSpan, target: \rev, depth: 0.40), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyY, target: \pitch, depth: 0.30), (source: \bodyVitesse, target: \amp, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \cutoff, depth: 0.50), (source: \bodyY, target: \pitch, depth: 0.30), (source: \limbSpan, target: \res, depth: 0.40), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \rHandX, target: \amp, depth: 0.40), (source: \rHandY, target: \pitch, depth: 0.40), (source: \lHandX, target: \res, depth: 0.40)], [(source: \danse, target: \rev, depth: 0.50), (source: \bodyVitesse, target: \amp, depth: 0.40)], [(source: \rHandX, target: \amp, depth: 0.40), (source: \lHandY, target: \cutoff, depth: 0.50), (source: \lHandX, target: \res, depth: 0.40)], [(source: \bodyVitesse, target: \cutoff, depth: 0.40), (source: \limbSpan, target: \rev, depth: 0.40), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \danse, target: \rev, depth: 0.50), (source: \bodyVitesse, target: \amp, depth: 0.40)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)] ], 'voicePoses': [ [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [] ], -'globalActions': [ \fill, \drop, \evolve, \breakdown ] +'globalActions': [ \fill, \drop, \evolve, \breakdown ], +'globalSettings': ( 'openThresh': 0.65, 'closeThresh': 0.3, 'transientBars': 1, 'breakdownKeep': [ \kick, \sub ] ) ) diff --git a/sound_algo/data_only/matrix_presets/industrial_grind_live.matrix b/sound_algo/data_only/matrix_presets/industrial_grind_live.matrix index e79e883..e05fd99 100644 --- a/sound_algo/data_only/matrix_presets/industrial_grind_live.matrix +++ b/sound_algo/data_only/matrix_presets/industrial_grind_live.matrix @@ -50,5 +50,6 @@ ], 'voiceMods': [ [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \cutoff, depth: 0.40), (source: \bodyY, target: \pitch, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \res, depth: 0.40), (source: \bodyY, target: \pitch, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \rHandX, target: \amp, depth: 0.40), (source: \rHandY, target: \pitch, depth: 0.40), (source: \lHandY, target: \cutoff, depth: 0.50), (source: \lHandX, target: \res, depth: 0.40)], [(source: \rHandX, target: \amp, depth: 0.40), (source: \rHandY, target: \pitch, depth: 0.40), (source: \lHandY, target: \cutoff, depth: 0.50), (source: \lHandX, target: \res, depth: 0.40)], [(source: \rHandX, target: \amp, depth: 0.40), (source: \rHandY, target: \pitch, depth: 0.40), (source: \lHandY, target: \cutoff, depth: 0.50), (source: \lHandX, target: \res, depth: 0.40)], [(source: \rHandX, target: \amp, depth: 0.40), (source: \rHandY, target: \pitch, depth: 0.40), (source: \lHandY, target: \cutoff, depth: 0.50), (source: \lHandX, target: \res, depth: 0.40)], [(source: \bodyVitesse, target: \cutoff, depth: 0.40), (source: \limbSpan, target: \rev, depth: 0.40), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyY, target: \pitch, depth: 0.30), (source: \bodyVitesse, target: \amp, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \cutoff, depth: 0.50), (source: \bodyY, target: \pitch, depth: 0.30), (source: \limbSpan, target: \res, depth: 0.40), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \rHandX, target: \amp, depth: 0.40), (source: \rHandY, target: \pitch, depth: 0.40), (source: \lHandX, target: \res, depth: 0.40)], [(source: \danse, target: \rev, depth: 0.50), (source: \bodyVitesse, target: \amp, depth: 0.40)], [(source: \rHandX, target: \amp, depth: 0.40), (source: \lHandY, target: \cutoff, depth: 0.50), (source: \lHandX, target: \res, depth: 0.40)], [(source: \bodyVitesse, target: \cutoff, depth: 0.40), (source: \limbSpan, target: \rev, depth: 0.40), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \danse, target: \rev, depth: 0.50), (source: \bodyVitesse, target: \amp, depth: 0.40)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)] ], 'voicePoses': [ [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [] ], -'globalActions': [ \fill, \drop, \evolve, \breakdown ] +'globalActions': [ \fill, \drop, \evolve, \breakdown ], +'globalSettings': ( 'openThresh': 0.65, 'closeThresh': 0.3, 'transientBars': 1, 'breakdownKeep': [ \kick, \sub ] ) ) diff --git a/sound_algo/data_only/matrix_presets/industrial_grind_outro.matrix b/sound_algo/data_only/matrix_presets/industrial_grind_outro.matrix index 485e99a..1a63d1f 100644 --- a/sound_algo/data_only/matrix_presets/industrial_grind_outro.matrix +++ b/sound_algo/data_only/matrix_presets/industrial_grind_outro.matrix @@ -50,5 +50,6 @@ ], 'voiceMods': [ [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \cutoff, depth: 0.40), (source: \bodyY, target: \pitch, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \res, depth: 0.40), (source: \bodyY, target: \pitch, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \rHandX, target: \amp, depth: 0.40), (source: \rHandY, target: \pitch, depth: 0.40), (source: \lHandY, target: \cutoff, depth: 0.50), (source: \lHandX, target: \res, depth: 0.40)], [(source: \rHandX, target: \amp, depth: 0.40), (source: \rHandY, target: \pitch, depth: 0.40), (source: \lHandY, target: \cutoff, depth: 0.50), (source: \lHandX, target: \res, depth: 0.40)], [(source: \rHandX, target: \amp, depth: 0.40), (source: \rHandY, target: \pitch, depth: 0.40), (source: \lHandY, target: \cutoff, depth: 0.50), (source: \lHandX, target: \res, depth: 0.40)], [(source: \rHandX, target: \amp, depth: 0.40), (source: \rHandY, target: \pitch, depth: 0.40), (source: \lHandY, target: \cutoff, depth: 0.50), (source: \lHandX, target: \res, depth: 0.40)], [(source: \bodyVitesse, target: \cutoff, depth: 0.40), (source: \limbSpan, target: \rev, depth: 0.40), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyY, target: \pitch, depth: 0.30), (source: \bodyVitesse, target: \amp, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \cutoff, depth: 0.50), (source: \bodyY, target: \pitch, depth: 0.30), (source: \limbSpan, target: \res, depth: 0.40), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \rHandX, target: \amp, depth: 0.40), (source: \rHandY, target: \pitch, depth: 0.40), (source: \lHandX, target: \res, depth: 0.40)], [(source: \danse, target: \rev, depth: 0.50), (source: \bodyVitesse, target: \amp, depth: 0.40)], [(source: \rHandX, target: \amp, depth: 0.40), (source: \lHandY, target: \cutoff, depth: 0.50), (source: \lHandX, target: \res, depth: 0.40)], [(source: \bodyVitesse, target: \cutoff, depth: 0.40), (source: \limbSpan, target: \rev, depth: 0.40), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \danse, target: \rev, depth: 0.50), (source: \bodyVitesse, target: \amp, depth: 0.40)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)] ], 'voicePoses': [ [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [] ], -'globalActions': [ \fill, \drop, \evolve, \breakdown ] +'globalActions': [ \fill, \drop, \evolve, \breakdown ], +'globalSettings': ( 'openThresh': 0.65, 'closeThresh': 0.3, 'transientBars': 1, 'breakdownKeep': [ \kick, \sub ] ) ) diff --git a/sound_algo/data_only/matrix_presets/jungle_amen_intro.matrix b/sound_algo/data_only/matrix_presets/jungle_amen_intro.matrix index 50c8719..27b4aab 100644 --- a/sound_algo/data_only/matrix_presets/jungle_amen_intro.matrix +++ b/sound_algo/data_only/matrix_presets/jungle_amen_intro.matrix @@ -50,5 +50,6 @@ ], 'voiceMods': [ [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \cutoff, depth: 0.40), (source: \bodyY, target: \pitch, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \res, depth: 0.40), (source: \bodyY, target: \pitch, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \rHandX, target: \amp, depth: 0.40), (source: \rHandY, target: \pitch, depth: 0.40), (source: \lHandY, target: \cutoff, depth: 0.50), (source: \lHandX, target: \res, depth: 0.40)], [(source: \rHandX, target: \amp, depth: 0.40), (source: \rHandY, target: \pitch, depth: 0.40), (source: \lHandY, target: \cutoff, depth: 0.50), (source: \lHandX, target: \res, depth: 0.40)], [(source: \rHandX, target: \amp, depth: 0.40), (source: \rHandY, target: \pitch, depth: 0.40), (source: \lHandY, target: \cutoff, depth: 0.50), (source: \lHandX, target: \res, depth: 0.40)], [(source: \rHandX, target: \amp, depth: 0.40), (source: \rHandY, target: \pitch, depth: 0.40), (source: \lHandY, target: \cutoff, depth: 0.50), (source: \lHandX, target: \res, depth: 0.40)], [(source: \bodyVitesse, target: \cutoff, depth: 0.40), (source: \limbSpan, target: \rev, depth: 0.40), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyY, target: \pitch, depth: 0.30), (source: \bodyVitesse, target: \amp, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \cutoff, depth: 0.50), (source: \bodyY, target: \pitch, depth: 0.30), (source: \limbSpan, target: \res, depth: 0.40), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \rHandX, target: \amp, depth: 0.40), (source: \rHandY, target: \pitch, depth: 0.40), (source: \lHandX, target: \res, depth: 0.40)], [(source: \danse, target: \rev, depth: 0.50), (source: \bodyVitesse, target: \amp, depth: 0.40)], [(source: \rHandX, target: \amp, depth: 0.40), (source: \lHandY, target: \cutoff, depth: 0.50), (source: \lHandX, target: \res, depth: 0.40)], [(source: \bodyVitesse, target: \cutoff, depth: 0.40), (source: \limbSpan, target: \rev, depth: 0.40), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \danse, target: \rev, depth: 0.50), (source: \bodyVitesse, target: \amp, depth: 0.40)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)] ], 'voicePoses': [ [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [] ], -'globalActions': [ \fill, \drop, \evolve, \breakdown ] +'globalActions': [ \fill, \drop, \evolve, \breakdown ], +'globalSettings': ( 'openThresh': 0.65, 'closeThresh': 0.3, 'transientBars': 1, 'breakdownKeep': [ \kick, \sub ] ) ) diff --git a/sound_algo/data_only/matrix_presets/jungle_amen_live.matrix b/sound_algo/data_only/matrix_presets/jungle_amen_live.matrix index 7d48802..df21454 100644 --- a/sound_algo/data_only/matrix_presets/jungle_amen_live.matrix +++ b/sound_algo/data_only/matrix_presets/jungle_amen_live.matrix @@ -50,5 +50,6 @@ ], 'voiceMods': [ [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \cutoff, depth: 0.40), (source: \bodyY, target: \pitch, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \res, depth: 0.40), (source: \bodyY, target: \pitch, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \rHandX, target: \amp, depth: 0.40), (source: \rHandY, target: \pitch, depth: 0.40), (source: \lHandY, target: \cutoff, depth: 0.50), (source: \lHandX, target: \res, depth: 0.40)], [(source: \rHandX, target: \amp, depth: 0.40), (source: \rHandY, target: \pitch, depth: 0.40), (source: \lHandY, target: \cutoff, depth: 0.50), (source: \lHandX, target: \res, depth: 0.40)], [(source: \rHandX, target: \amp, depth: 0.40), (source: \rHandY, target: \pitch, depth: 0.40), (source: \lHandY, target: \cutoff, depth: 0.50), (source: \lHandX, target: \res, depth: 0.40)], [(source: \rHandX, target: \amp, depth: 0.40), (source: \rHandY, target: \pitch, depth: 0.40), (source: \lHandY, target: \cutoff, depth: 0.50), (source: \lHandX, target: \res, depth: 0.40)], [(source: \bodyVitesse, target: \cutoff, depth: 0.40), (source: \limbSpan, target: \rev, depth: 0.40), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyY, target: \pitch, depth: 0.30), (source: \bodyVitesse, target: \amp, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \cutoff, depth: 0.50), (source: \bodyY, target: \pitch, depth: 0.30), (source: \limbSpan, target: \res, depth: 0.40), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \rHandX, target: \amp, depth: 0.40), (source: \rHandY, target: \pitch, depth: 0.40), (source: \lHandX, target: \res, depth: 0.40)], [(source: \danse, target: \rev, depth: 0.50), (source: \bodyVitesse, target: \amp, depth: 0.40)], [(source: \rHandX, target: \amp, depth: 0.40), (source: \lHandY, target: \cutoff, depth: 0.50), (source: \lHandX, target: \res, depth: 0.40)], [(source: \bodyVitesse, target: \cutoff, depth: 0.40), (source: \limbSpan, target: \rev, depth: 0.40), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \danse, target: \rev, depth: 0.50), (source: \bodyVitesse, target: \amp, depth: 0.40)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)] ], 'voicePoses': [ [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [] ], -'globalActions': [ \fill, \drop, \evolve, \breakdown ] +'globalActions': [ \fill, \drop, \evolve, \breakdown ], +'globalSettings': ( 'openThresh': 0.65, 'closeThresh': 0.3, 'transientBars': 1, 'breakdownKeep': [ \kick, \sub ] ) ) diff --git a/sound_algo/data_only/matrix_presets/jungle_amen_outro.matrix b/sound_algo/data_only/matrix_presets/jungle_amen_outro.matrix index 3cd4dbb..33e4c47 100644 --- a/sound_algo/data_only/matrix_presets/jungle_amen_outro.matrix +++ b/sound_algo/data_only/matrix_presets/jungle_amen_outro.matrix @@ -50,5 +50,6 @@ ], 'voiceMods': [ [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \cutoff, depth: 0.40), (source: \bodyY, target: \pitch, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \res, depth: 0.40), (source: \bodyY, target: \pitch, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \rHandX, target: \amp, depth: 0.40), (source: \rHandY, target: \pitch, depth: 0.40), (source: \lHandY, target: \cutoff, depth: 0.50), (source: \lHandX, target: \res, depth: 0.40)], [(source: \rHandX, target: \amp, depth: 0.40), (source: \rHandY, target: \pitch, depth: 0.40), (source: \lHandY, target: \cutoff, depth: 0.50), (source: \lHandX, target: \res, depth: 0.40)], [(source: \rHandX, target: \amp, depth: 0.40), (source: \rHandY, target: \pitch, depth: 0.40), (source: \lHandY, target: \cutoff, depth: 0.50), (source: \lHandX, target: \res, depth: 0.40)], [(source: \rHandX, target: \amp, depth: 0.40), (source: \rHandY, target: \pitch, depth: 0.40), (source: \lHandY, target: \cutoff, depth: 0.50), (source: \lHandX, target: \res, depth: 0.40)], [(source: \bodyVitesse, target: \cutoff, depth: 0.40), (source: \limbSpan, target: \rev, depth: 0.40), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyY, target: \pitch, depth: 0.30), (source: \bodyVitesse, target: \amp, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \cutoff, depth: 0.50), (source: \bodyY, target: \pitch, depth: 0.30), (source: \limbSpan, target: \res, depth: 0.40), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \rHandX, target: \amp, depth: 0.40), (source: \rHandY, target: \pitch, depth: 0.40), (source: \lHandX, target: \res, depth: 0.40)], [(source: \danse, target: \rev, depth: 0.50), (source: \bodyVitesse, target: \amp, depth: 0.40)], [(source: \rHandX, target: \amp, depth: 0.40), (source: \lHandY, target: \cutoff, depth: 0.50), (source: \lHandX, target: \res, depth: 0.40)], [(source: \bodyVitesse, target: \cutoff, depth: 0.40), (source: \limbSpan, target: \rev, depth: 0.40), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \danse, target: \rev, depth: 0.50), (source: \bodyVitesse, target: \amp, depth: 0.40)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)] ], 'voicePoses': [ [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [] ], -'globalActions': [ \fill, \drop, \evolve, \breakdown ] +'globalActions': [ \fill, \drop, \evolve, \breakdown ], +'globalSettings': ( 'openThresh': 0.65, 'closeThresh': 0.3, 'transientBars': 1, 'breakdownKeep': [ \kick, \sub ] ) ) diff --git a/sound_algo/data_only/matrix_presets/melodic_builder_intro.matrix b/sound_algo/data_only/matrix_presets/melodic_builder_intro.matrix index 50826a7..fa38839 100644 --- a/sound_algo/data_only/matrix_presets/melodic_builder_intro.matrix +++ b/sound_algo/data_only/matrix_presets/melodic_builder_intro.matrix @@ -50,5 +50,6 @@ ], 'voiceMods': [ [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \cutoff, depth: 0.40), (source: \bodyY, target: \pitch, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \res, depth: 0.40), (source: \bodyY, target: \pitch, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \rHandX, target: \amp, depth: 0.40), (source: \rHandY, target: \pitch, depth: 0.40), (source: \lHandY, target: \cutoff, depth: 0.50), (source: \lHandX, target: \res, depth: 0.40)], [(source: \rHandX, target: \amp, depth: 0.40), (source: \rHandY, target: \pitch, depth: 0.40), (source: \lHandY, target: \cutoff, depth: 0.50), (source: \lHandX, target: \res, depth: 0.40)], [(source: \rHandX, target: \amp, depth: 0.40), (source: \rHandY, target: \pitch, depth: 0.40), (source: \lHandY, target: \cutoff, depth: 0.50), (source: \lHandX, target: \res, depth: 0.40)], [(source: \rHandX, target: \amp, depth: 0.40), (source: \rHandY, target: \pitch, depth: 0.40), (source: \lHandY, target: \cutoff, depth: 0.50), (source: \lHandX, target: \res, depth: 0.40)], [(source: \bodyVitesse, target: \cutoff, depth: 0.40), (source: \limbSpan, target: \rev, depth: 0.40), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyY, target: \pitch, depth: 0.30), (source: \bodyVitesse, target: \amp, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \cutoff, depth: 0.50), (source: \bodyY, target: \pitch, depth: 0.30), (source: \limbSpan, target: \res, depth: 0.40), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \rHandX, target: \amp, depth: 0.40), (source: \rHandY, target: \pitch, depth: 0.40), (source: \lHandX, target: \res, depth: 0.40)], [(source: \danse, target: \rev, depth: 0.50), (source: \bodyVitesse, target: \amp, depth: 0.40)], [(source: \rHandX, target: \amp, depth: 0.40), (source: \lHandY, target: \cutoff, depth: 0.50), (source: \lHandX, target: \res, depth: 0.40)], [(source: \bodyVitesse, target: \cutoff, depth: 0.40), (source: \limbSpan, target: \rev, depth: 0.40), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \danse, target: \rev, depth: 0.50), (source: \bodyVitesse, target: \amp, depth: 0.40)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)] ], 'voicePoses': [ [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [] ], -'globalActions': [ \fill, \drop, \evolve, \breakdown ] +'globalActions': [ \fill, \drop, \evolve, \breakdown ], +'globalSettings': ( 'openThresh': 0.65, 'closeThresh': 0.3, 'transientBars': 1, 'breakdownKeep': [ \kick, \sub ] ) ) diff --git a/sound_algo/data_only/matrix_presets/melodic_builder_live.matrix b/sound_algo/data_only/matrix_presets/melodic_builder_live.matrix index 157440c..7bb1fb8 100644 --- a/sound_algo/data_only/matrix_presets/melodic_builder_live.matrix +++ b/sound_algo/data_only/matrix_presets/melodic_builder_live.matrix @@ -50,5 +50,6 @@ ], 'voiceMods': [ [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \cutoff, depth: 0.40), (source: \bodyY, target: \pitch, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \res, depth: 0.40), (source: \bodyY, target: \pitch, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \rHandX, target: \amp, depth: 0.40), (source: \rHandY, target: \pitch, depth: 0.40), (source: \lHandY, target: \cutoff, depth: 0.50), (source: \lHandX, target: \res, depth: 0.40)], [(source: \rHandX, target: \amp, depth: 0.40), (source: \rHandY, target: \pitch, depth: 0.40), (source: \lHandY, target: \cutoff, depth: 0.50), (source: \lHandX, target: \res, depth: 0.40)], [(source: \rHandX, target: \amp, depth: 0.40), (source: \rHandY, target: \pitch, depth: 0.40), (source: \lHandY, target: \cutoff, depth: 0.50), (source: \lHandX, target: \res, depth: 0.40)], [(source: \rHandX, target: \amp, depth: 0.40), (source: \rHandY, target: \pitch, depth: 0.40), (source: \lHandY, target: \cutoff, depth: 0.50), (source: \lHandX, target: \res, depth: 0.40)], [(source: \bodyVitesse, target: \cutoff, depth: 0.40), (source: \limbSpan, target: \rev, depth: 0.40), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyY, target: \pitch, depth: 0.30), (source: \bodyVitesse, target: \amp, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \cutoff, depth: 0.50), (source: \bodyY, target: \pitch, depth: 0.30), (source: \limbSpan, target: \res, depth: 0.40), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \rHandX, target: \amp, depth: 0.40), (source: \rHandY, target: \pitch, depth: 0.40), (source: \lHandX, target: \res, depth: 0.40)], [(source: \danse, target: \rev, depth: 0.50), (source: \bodyVitesse, target: \amp, depth: 0.40)], [(source: \rHandX, target: \amp, depth: 0.40), (source: \lHandY, target: \cutoff, depth: 0.50), (source: \lHandX, target: \res, depth: 0.40)], [(source: \bodyVitesse, target: \cutoff, depth: 0.40), (source: \limbSpan, target: \rev, depth: 0.40), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \danse, target: \rev, depth: 0.50), (source: \bodyVitesse, target: \amp, depth: 0.40)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)] ], 'voicePoses': [ [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [] ], -'globalActions': [ \fill, \drop, \evolve, \breakdown ] +'globalActions': [ \fill, \drop, \evolve, \breakdown ], +'globalSettings': ( 'openThresh': 0.65, 'closeThresh': 0.3, 'transientBars': 1, 'breakdownKeep': [ \kick, \sub ] ) ) diff --git a/sound_algo/data_only/matrix_presets/melodic_builder_outro.matrix b/sound_algo/data_only/matrix_presets/melodic_builder_outro.matrix index db6554f..9519385 100644 --- a/sound_algo/data_only/matrix_presets/melodic_builder_outro.matrix +++ b/sound_algo/data_only/matrix_presets/melodic_builder_outro.matrix @@ -50,5 +50,6 @@ ], 'voiceMods': [ [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \cutoff, depth: 0.40), (source: \bodyY, target: \pitch, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \res, depth: 0.40), (source: \bodyY, target: \pitch, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \rHandX, target: \amp, depth: 0.40), (source: \rHandY, target: \pitch, depth: 0.40), (source: \lHandY, target: \cutoff, depth: 0.50), (source: \lHandX, target: \res, depth: 0.40)], [(source: \rHandX, target: \amp, depth: 0.40), (source: \rHandY, target: \pitch, depth: 0.40), (source: \lHandY, target: \cutoff, depth: 0.50), (source: \lHandX, target: \res, depth: 0.40)], [(source: \rHandX, target: \amp, depth: 0.40), (source: \rHandY, target: \pitch, depth: 0.40), (source: \lHandY, target: \cutoff, depth: 0.50), (source: \lHandX, target: \res, depth: 0.40)], [(source: \rHandX, target: \amp, depth: 0.40), (source: \rHandY, target: \pitch, depth: 0.40), (source: \lHandY, target: \cutoff, depth: 0.50), (source: \lHandX, target: \res, depth: 0.40)], [(source: \bodyVitesse, target: \cutoff, depth: 0.40), (source: \limbSpan, target: \rev, depth: 0.40), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyY, target: \pitch, depth: 0.30), (source: \bodyVitesse, target: \amp, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \cutoff, depth: 0.50), (source: \bodyY, target: \pitch, depth: 0.30), (source: \limbSpan, target: \res, depth: 0.40), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \rHandX, target: \amp, depth: 0.40), (source: \rHandY, target: \pitch, depth: 0.40), (source: \lHandX, target: \res, depth: 0.40)], [(source: \danse, target: \rev, depth: 0.50), (source: \bodyVitesse, target: \amp, depth: 0.40)], [(source: \rHandX, target: \amp, depth: 0.40), (source: \lHandY, target: \cutoff, depth: 0.50), (source: \lHandX, target: \res, depth: 0.40)], [(source: \bodyVitesse, target: \cutoff, depth: 0.40), (source: \limbSpan, target: \rev, depth: 0.40), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \danse, target: \rev, depth: 0.50), (source: \bodyVitesse, target: \amp, depth: 0.40)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)] ], 'voicePoses': [ [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [] ], -'globalActions': [ \fill, \drop, \evolve, \breakdown ] +'globalActions': [ \fill, \drop, \evolve, \breakdown ], +'globalSettings': ( 'openThresh': 0.65, 'closeThresh': 0.3, 'transientBars': 1, 'breakdownKeep': [ \kick, \sub ] ) ) diff --git a/sound_algo/data_only/matrix_presets/melodic_deep_intro.matrix b/sound_algo/data_only/matrix_presets/melodic_deep_intro.matrix index 59bf692..21f712a 100644 --- a/sound_algo/data_only/matrix_presets/melodic_deep_intro.matrix +++ b/sound_algo/data_only/matrix_presets/melodic_deep_intro.matrix @@ -50,5 +50,6 @@ ], 'voiceMods': [ [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \cutoff, depth: 0.40), (source: \bodyY, target: \pitch, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \res, depth: 0.40), (source: \bodyY, target: \pitch, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \rHandX, target: \amp, depth: 0.40), (source: \rHandY, target: \pitch, depth: 0.40), (source: \lHandY, target: \cutoff, depth: 0.50), (source: \lHandX, target: \res, depth: 0.40)], [(source: \rHandX, target: \amp, depth: 0.40), (source: \rHandY, target: \pitch, depth: 0.40), (source: \lHandY, target: \cutoff, depth: 0.50), (source: \lHandX, target: \res, depth: 0.40)], [(source: \rHandX, target: \amp, depth: 0.40), (source: \rHandY, target: \pitch, depth: 0.40), (source: \lHandY, target: \cutoff, depth: 0.50), (source: \lHandX, target: \res, depth: 0.40)], [(source: \rHandX, target: \amp, depth: 0.40), (source: \rHandY, target: \pitch, depth: 0.40), (source: \lHandY, target: \cutoff, depth: 0.50), (source: \lHandX, target: \res, depth: 0.40)], [(source: \bodyVitesse, target: \cutoff, depth: 0.40), (source: \limbSpan, target: \rev, depth: 0.40), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyY, target: \pitch, depth: 0.30), (source: \bodyVitesse, target: \amp, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \cutoff, depth: 0.50), (source: \bodyY, target: \pitch, depth: 0.30), (source: \limbSpan, target: \res, depth: 0.40), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \rHandX, target: \amp, depth: 0.40), (source: \rHandY, target: \pitch, depth: 0.40), (source: \lHandX, target: \res, depth: 0.40)], [(source: \danse, target: \rev, depth: 0.50), (source: \bodyVitesse, target: \amp, depth: 0.40)], [(source: \rHandX, target: \amp, depth: 0.40), (source: \lHandY, target: \cutoff, depth: 0.50), (source: \lHandX, target: \res, depth: 0.40)], [(source: \bodyVitesse, target: \cutoff, depth: 0.40), (source: \limbSpan, target: \rev, depth: 0.40), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \danse, target: \rev, depth: 0.50), (source: \bodyVitesse, target: \amp, depth: 0.40)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)] ], 'voicePoses': [ [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [] ], -'globalActions': [ \fill, \drop, \evolve, \breakdown ] +'globalActions': [ \fill, \drop, \evolve, \breakdown ], +'globalSettings': ( 'openThresh': 0.65, 'closeThresh': 0.3, 'transientBars': 1, 'breakdownKeep': [ \kick, \sub ] ) ) diff --git a/sound_algo/data_only/matrix_presets/melodic_deep_live.matrix b/sound_algo/data_only/matrix_presets/melodic_deep_live.matrix index dfb12f2..a49a671 100644 --- a/sound_algo/data_only/matrix_presets/melodic_deep_live.matrix +++ b/sound_algo/data_only/matrix_presets/melodic_deep_live.matrix @@ -50,5 +50,6 @@ ], 'voiceMods': [ [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \cutoff, depth: 0.40), (source: \bodyY, target: \pitch, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \res, depth: 0.40), (source: \bodyY, target: \pitch, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \rHandX, target: \amp, depth: 0.40), (source: \rHandY, target: \pitch, depth: 0.40), (source: \lHandY, target: \cutoff, depth: 0.50), (source: \lHandX, target: \res, depth: 0.40)], [(source: \rHandX, target: \amp, depth: 0.40), (source: \rHandY, target: \pitch, depth: 0.40), (source: \lHandY, target: \cutoff, depth: 0.50), (source: \lHandX, target: \res, depth: 0.40)], [(source: \rHandX, target: \amp, depth: 0.40), (source: \rHandY, target: \pitch, depth: 0.40), (source: \lHandY, target: \cutoff, depth: 0.50), (source: \lHandX, target: \res, depth: 0.40)], [(source: \rHandX, target: \amp, depth: 0.40), (source: \rHandY, target: \pitch, depth: 0.40), (source: \lHandY, target: \cutoff, depth: 0.50), (source: \lHandX, target: \res, depth: 0.40)], [(source: \bodyVitesse, target: \cutoff, depth: 0.40), (source: \limbSpan, target: \rev, depth: 0.40), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyY, target: \pitch, depth: 0.30), (source: \bodyVitesse, target: \amp, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \cutoff, depth: 0.50), (source: \bodyY, target: \pitch, depth: 0.30), (source: \limbSpan, target: \res, depth: 0.40), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \rHandX, target: \amp, depth: 0.40), (source: \rHandY, target: \pitch, depth: 0.40), (source: \lHandX, target: \res, depth: 0.40)], [(source: \danse, target: \rev, depth: 0.50), (source: \bodyVitesse, target: \amp, depth: 0.40)], [(source: \rHandX, target: \amp, depth: 0.40), (source: \lHandY, target: \cutoff, depth: 0.50), (source: \lHandX, target: \res, depth: 0.40)], [(source: \bodyVitesse, target: \cutoff, depth: 0.40), (source: \limbSpan, target: \rev, depth: 0.40), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \danse, target: \rev, depth: 0.50), (source: \bodyVitesse, target: \amp, depth: 0.40)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)] ], 'voicePoses': [ [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [] ], -'globalActions': [ \fill, \drop, \evolve, \breakdown ] +'globalActions': [ \fill, \drop, \evolve, \breakdown ], +'globalSettings': ( 'openThresh': 0.65, 'closeThresh': 0.3, 'transientBars': 1, 'breakdownKeep': [ \kick, \sub ] ) ) diff --git a/sound_algo/data_only/matrix_presets/melodic_deep_outro.matrix b/sound_algo/data_only/matrix_presets/melodic_deep_outro.matrix index 22eb728..74a87b5 100644 --- a/sound_algo/data_only/matrix_presets/melodic_deep_outro.matrix +++ b/sound_algo/data_only/matrix_presets/melodic_deep_outro.matrix @@ -50,5 +50,6 @@ ], 'voiceMods': [ [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \cutoff, depth: 0.40), (source: \bodyY, target: \pitch, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \res, depth: 0.40), (source: \bodyY, target: \pitch, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \rHandX, target: \amp, depth: 0.40), (source: \rHandY, target: \pitch, depth: 0.40), (source: \lHandY, target: \cutoff, depth: 0.50), (source: \lHandX, target: \res, depth: 0.40)], [(source: \rHandX, target: \amp, depth: 0.40), (source: \rHandY, target: \pitch, depth: 0.40), (source: \lHandY, target: \cutoff, depth: 0.50), (source: \lHandX, target: \res, depth: 0.40)], [(source: \rHandX, target: \amp, depth: 0.40), (source: \rHandY, target: \pitch, depth: 0.40), (source: \lHandY, target: \cutoff, depth: 0.50), (source: \lHandX, target: \res, depth: 0.40)], [(source: \rHandX, target: \amp, depth: 0.40), (source: \rHandY, target: \pitch, depth: 0.40), (source: \lHandY, target: \cutoff, depth: 0.50), (source: \lHandX, target: \res, depth: 0.40)], [(source: \bodyVitesse, target: \cutoff, depth: 0.40), (source: \limbSpan, target: \rev, depth: 0.40), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyY, target: \pitch, depth: 0.30), (source: \bodyVitesse, target: \amp, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \cutoff, depth: 0.50), (source: \bodyY, target: \pitch, depth: 0.30), (source: \limbSpan, target: \res, depth: 0.40), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \rHandX, target: \amp, depth: 0.40), (source: \rHandY, target: \pitch, depth: 0.40), (source: \lHandX, target: \res, depth: 0.40)], [(source: \danse, target: \rev, depth: 0.50), (source: \bodyVitesse, target: \amp, depth: 0.40)], [(source: \rHandX, target: \amp, depth: 0.40), (source: \lHandY, target: \cutoff, depth: 0.50), (source: \lHandX, target: \res, depth: 0.40)], [(source: \bodyVitesse, target: \cutoff, depth: 0.40), (source: \limbSpan, target: \rev, depth: 0.40), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \danse, target: \rev, depth: 0.50), (source: \bodyVitesse, target: \amp, depth: 0.40)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)] ], 'voicePoses': [ [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [] ], -'globalActions': [ \fill, \drop, \evolve, \breakdown ] +'globalActions': [ \fill, \drop, \evolve, \breakdown ], +'globalSettings': ( 'openThresh': 0.65, 'closeThresh': 0.3, 'transientBars': 1, 'breakdownKeep': [ \kick, \sub ] ) ) diff --git a/sound_algo/data_only/matrix_presets/minimal_hypno_intro.matrix b/sound_algo/data_only/matrix_presets/minimal_hypno_intro.matrix index 8e56425..51828f6 100644 --- a/sound_algo/data_only/matrix_presets/minimal_hypno_intro.matrix +++ b/sound_algo/data_only/matrix_presets/minimal_hypno_intro.matrix @@ -50,5 +50,6 @@ ], 'voiceMods': [ [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \cutoff, depth: 0.40), (source: \bodyY, target: \pitch, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \res, depth: 0.40), (source: \bodyY, target: \pitch, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \rHandX, target: \amp, depth: 0.40), (source: \rHandY, target: \pitch, depth: 0.40), (source: \lHandY, target: \cutoff, depth: 0.50), (source: \lHandX, target: \res, depth: 0.40)], [(source: \rHandX, target: \amp, depth: 0.40), (source: \rHandY, target: \pitch, depth: 0.40), (source: \lHandY, target: \cutoff, depth: 0.50), (source: \lHandX, target: \res, depth: 0.40)], [(source: \rHandX, target: \amp, depth: 0.40), (source: \rHandY, target: \pitch, depth: 0.40), (source: \lHandY, target: \cutoff, depth: 0.50), (source: \lHandX, target: \res, depth: 0.40)], [(source: \rHandX, target: \amp, depth: 0.40), (source: \rHandY, target: \pitch, depth: 0.40), (source: \lHandY, target: \cutoff, depth: 0.50), (source: \lHandX, target: \res, depth: 0.40)], [(source: \bodyVitesse, target: \cutoff, depth: 0.40), (source: \limbSpan, target: \rev, depth: 0.40), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyY, target: \pitch, depth: 0.30), (source: \bodyVitesse, target: \amp, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \cutoff, depth: 0.50), (source: \bodyY, target: \pitch, depth: 0.30), (source: \limbSpan, target: \res, depth: 0.40), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \rHandX, target: \amp, depth: 0.40), (source: \rHandY, target: \pitch, depth: 0.40), (source: \lHandX, target: \res, depth: 0.40)], [(source: \danse, target: \rev, depth: 0.50), (source: \bodyVitesse, target: \amp, depth: 0.40)], [(source: \rHandX, target: \amp, depth: 0.40), (source: \lHandY, target: \cutoff, depth: 0.50), (source: \lHandX, target: \res, depth: 0.40)], [(source: \bodyVitesse, target: \cutoff, depth: 0.40), (source: \limbSpan, target: \rev, depth: 0.40), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \danse, target: \rev, depth: 0.50), (source: \bodyVitesse, target: \amp, depth: 0.40)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)] ], 'voicePoses': [ [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [] ], -'globalActions': [ \fill, \drop, \evolve, \breakdown ] +'globalActions': [ \fill, \drop, \evolve, \breakdown ], +'globalSettings': ( 'openThresh': 0.65, 'closeThresh': 0.3, 'transientBars': 1, 'breakdownKeep': [ \kick, \sub ] ) ) diff --git a/sound_algo/data_only/matrix_presets/minimal_hypno_live.matrix b/sound_algo/data_only/matrix_presets/minimal_hypno_live.matrix index ed174e4..d9442e3 100644 --- a/sound_algo/data_only/matrix_presets/minimal_hypno_live.matrix +++ b/sound_algo/data_only/matrix_presets/minimal_hypno_live.matrix @@ -50,5 +50,6 @@ ], 'voiceMods': [ [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \cutoff, depth: 0.40), (source: \bodyY, target: \pitch, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \res, depth: 0.40), (source: \bodyY, target: \pitch, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \rHandX, target: \amp, depth: 0.40), (source: \rHandY, target: \pitch, depth: 0.40), (source: \lHandY, target: \cutoff, depth: 0.50), (source: \lHandX, target: \res, depth: 0.40)], [(source: \rHandX, target: \amp, depth: 0.40), (source: \rHandY, target: \pitch, depth: 0.40), (source: \lHandY, target: \cutoff, depth: 0.50), (source: \lHandX, target: \res, depth: 0.40)], [(source: \rHandX, target: \amp, depth: 0.40), (source: \rHandY, target: \pitch, depth: 0.40), (source: \lHandY, target: \cutoff, depth: 0.50), (source: \lHandX, target: \res, depth: 0.40)], [(source: \rHandX, target: \amp, depth: 0.40), (source: \rHandY, target: \pitch, depth: 0.40), (source: \lHandY, target: \cutoff, depth: 0.50), (source: \lHandX, target: \res, depth: 0.40)], [(source: \bodyVitesse, target: \cutoff, depth: 0.40), (source: \limbSpan, target: \rev, depth: 0.40), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyY, target: \pitch, depth: 0.30), (source: \bodyVitesse, target: \amp, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \cutoff, depth: 0.50), (source: \bodyY, target: \pitch, depth: 0.30), (source: \limbSpan, target: \res, depth: 0.40), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \rHandX, target: \amp, depth: 0.40), (source: \rHandY, target: \pitch, depth: 0.40), (source: \lHandX, target: \res, depth: 0.40)], [(source: \danse, target: \rev, depth: 0.50), (source: \bodyVitesse, target: \amp, depth: 0.40)], [(source: \rHandX, target: \amp, depth: 0.40), (source: \lHandY, target: \cutoff, depth: 0.50), (source: \lHandX, target: \res, depth: 0.40)], [(source: \bodyVitesse, target: \cutoff, depth: 0.40), (source: \limbSpan, target: \rev, depth: 0.40), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \danse, target: \rev, depth: 0.50), (source: \bodyVitesse, target: \amp, depth: 0.40)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)] ], 'voicePoses': [ [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [] ], -'globalActions': [ \fill, \drop, \evolve, \breakdown ] +'globalActions': [ \fill, \drop, \evolve, \breakdown ], +'globalSettings': ( 'openThresh': 0.65, 'closeThresh': 0.3, 'transientBars': 1, 'breakdownKeep': [ \kick, \sub ] ) ) diff --git a/sound_algo/data_only/matrix_presets/minimal_hypno_outro.matrix b/sound_algo/data_only/matrix_presets/minimal_hypno_outro.matrix index 90f841e..29e4965 100644 --- a/sound_algo/data_only/matrix_presets/minimal_hypno_outro.matrix +++ b/sound_algo/data_only/matrix_presets/minimal_hypno_outro.matrix @@ -50,5 +50,6 @@ ], 'voiceMods': [ [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \cutoff, depth: 0.40), (source: \bodyY, target: \pitch, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \res, depth: 0.40), (source: \bodyY, target: \pitch, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \rHandX, target: \amp, depth: 0.40), (source: \rHandY, target: \pitch, depth: 0.40), (source: \lHandY, target: \cutoff, depth: 0.50), (source: \lHandX, target: \res, depth: 0.40)], [(source: \rHandX, target: \amp, depth: 0.40), (source: \rHandY, target: \pitch, depth: 0.40), (source: \lHandY, target: \cutoff, depth: 0.50), (source: \lHandX, target: \res, depth: 0.40)], [(source: \rHandX, target: \amp, depth: 0.40), (source: \rHandY, target: \pitch, depth: 0.40), (source: \lHandY, target: \cutoff, depth: 0.50), (source: \lHandX, target: \res, depth: 0.40)], [(source: \rHandX, target: \amp, depth: 0.40), (source: \rHandY, target: \pitch, depth: 0.40), (source: \lHandY, target: \cutoff, depth: 0.50), (source: \lHandX, target: \res, depth: 0.40)], [(source: \bodyVitesse, target: \cutoff, depth: 0.40), (source: \limbSpan, target: \rev, depth: 0.40), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyY, target: \pitch, depth: 0.30), (source: \bodyVitesse, target: \amp, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \cutoff, depth: 0.50), (source: \bodyY, target: \pitch, depth: 0.30), (source: \limbSpan, target: \res, depth: 0.40), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \rHandX, target: \amp, depth: 0.40), (source: \rHandY, target: \pitch, depth: 0.40), (source: \lHandX, target: \res, depth: 0.40)], [(source: \danse, target: \rev, depth: 0.50), (source: \bodyVitesse, target: \amp, depth: 0.40)], [(source: \rHandX, target: \amp, depth: 0.40), (source: \lHandY, target: \cutoff, depth: 0.50), (source: \lHandX, target: \res, depth: 0.40)], [(source: \bodyVitesse, target: \cutoff, depth: 0.40), (source: \limbSpan, target: \rev, depth: 0.40), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \danse, target: \rev, depth: 0.50), (source: \bodyVitesse, target: \amp, depth: 0.40)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)] ], 'voicePoses': [ [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [] ], -'globalActions': [ \fill, \drop, \evolve, \breakdown ] +'globalActions': [ \fill, \drop, \evolve, \breakdown ], +'globalSettings': ( 'openThresh': 0.65, 'closeThresh': 0.3, 'transientBars': 1, 'breakdownKeep': [ \kick, \sub ] ) ) diff --git a/sound_algo/data_only/matrix_presets/neuro_reese_intro.matrix b/sound_algo/data_only/matrix_presets/neuro_reese_intro.matrix index 15a504f..d8ba4e4 100644 --- a/sound_algo/data_only/matrix_presets/neuro_reese_intro.matrix +++ b/sound_algo/data_only/matrix_presets/neuro_reese_intro.matrix @@ -50,5 +50,6 @@ ], 'voiceMods': [ [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \cutoff, depth: 0.40), (source: \bodyY, target: \pitch, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \res, depth: 0.40), (source: \bodyY, target: \pitch, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \rHandX, target: \amp, depth: 0.40), (source: \rHandY, target: \pitch, depth: 0.40), (source: \lHandY, target: \cutoff, depth: 0.50), (source: \lHandX, target: \res, depth: 0.40)], [(source: \rHandX, target: \amp, depth: 0.40), (source: \rHandY, target: \pitch, depth: 0.40), (source: \lHandY, target: \cutoff, depth: 0.50), (source: \lHandX, target: \res, depth: 0.40)], [(source: \rHandX, target: \amp, depth: 0.40), (source: \rHandY, target: \pitch, depth: 0.40), (source: \lHandY, target: \cutoff, depth: 0.50), (source: \lHandX, target: \res, depth: 0.40)], [(source: \rHandX, target: \amp, depth: 0.40), (source: \rHandY, target: \pitch, depth: 0.40), (source: \lHandY, target: \cutoff, depth: 0.50), (source: \lHandX, target: \res, depth: 0.40)], [(source: \bodyVitesse, target: \cutoff, depth: 0.40), (source: \limbSpan, target: \rev, depth: 0.40), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyY, target: \pitch, depth: 0.30), (source: \bodyVitesse, target: \amp, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \cutoff, depth: 0.50), (source: \bodyY, target: \pitch, depth: 0.30), (source: \limbSpan, target: \res, depth: 0.40), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \rHandX, target: \amp, depth: 0.40), (source: \rHandY, target: \pitch, depth: 0.40), (source: \lHandX, target: \res, depth: 0.40)], [(source: \danse, target: \rev, depth: 0.50), (source: \bodyVitesse, target: \amp, depth: 0.40)], [(source: \rHandX, target: \amp, depth: 0.40), (source: \lHandY, target: \cutoff, depth: 0.50), (source: \lHandX, target: \res, depth: 0.40)], [(source: \bodyVitesse, target: \cutoff, depth: 0.40), (source: \limbSpan, target: \rev, depth: 0.40), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \danse, target: \rev, depth: 0.50), (source: \bodyVitesse, target: \amp, depth: 0.40)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)] ], 'voicePoses': [ [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [] ], -'globalActions': [ \fill, \drop, \evolve, \breakdown ] +'globalActions': [ \fill, \drop, \evolve, \breakdown ], +'globalSettings': ( 'openThresh': 0.65, 'closeThresh': 0.3, 'transientBars': 1, 'breakdownKeep': [ \kick, \sub ] ) ) diff --git a/sound_algo/data_only/matrix_presets/neuro_reese_live.matrix b/sound_algo/data_only/matrix_presets/neuro_reese_live.matrix index 47c7de9..5f3cbcf 100644 --- a/sound_algo/data_only/matrix_presets/neuro_reese_live.matrix +++ b/sound_algo/data_only/matrix_presets/neuro_reese_live.matrix @@ -50,5 +50,6 @@ ], 'voiceMods': [ [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \cutoff, depth: 0.40), (source: \bodyY, target: \pitch, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \res, depth: 0.40), (source: \bodyY, target: \pitch, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \rHandX, target: \amp, depth: 0.40), (source: \rHandY, target: \pitch, depth: 0.40), (source: \lHandY, target: \cutoff, depth: 0.50), (source: \lHandX, target: \res, depth: 0.40)], [(source: \rHandX, target: \amp, depth: 0.40), (source: \rHandY, target: \pitch, depth: 0.40), (source: \lHandY, target: \cutoff, depth: 0.50), (source: \lHandX, target: \res, depth: 0.40)], [(source: \rHandX, target: \amp, depth: 0.40), (source: \rHandY, target: \pitch, depth: 0.40), (source: \lHandY, target: \cutoff, depth: 0.50), (source: \lHandX, target: \res, depth: 0.40)], [(source: \rHandX, target: \amp, depth: 0.40), (source: \rHandY, target: \pitch, depth: 0.40), (source: \lHandY, target: \cutoff, depth: 0.50), (source: \lHandX, target: \res, depth: 0.40)], [(source: \bodyVitesse, target: \cutoff, depth: 0.40), (source: \limbSpan, target: \rev, depth: 0.40), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyY, target: \pitch, depth: 0.30), (source: \bodyVitesse, target: \amp, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \cutoff, depth: 0.50), (source: \bodyY, target: \pitch, depth: 0.30), (source: \limbSpan, target: \res, depth: 0.40), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \rHandX, target: \amp, depth: 0.40), (source: \rHandY, target: \pitch, depth: 0.40), (source: \lHandX, target: \res, depth: 0.40)], [(source: \danse, target: \rev, depth: 0.50), (source: \bodyVitesse, target: \amp, depth: 0.40)], [(source: \rHandX, target: \amp, depth: 0.40), (source: \lHandY, target: \cutoff, depth: 0.50), (source: \lHandX, target: \res, depth: 0.40)], [(source: \bodyVitesse, target: \cutoff, depth: 0.40), (source: \limbSpan, target: \rev, depth: 0.40), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \danse, target: \rev, depth: 0.50), (source: \bodyVitesse, target: \amp, depth: 0.40)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)] ], 'voicePoses': [ [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [] ], -'globalActions': [ \fill, \drop, \evolve, \breakdown ] +'globalActions': [ \fill, \drop, \evolve, \breakdown ], +'globalSettings': ( 'openThresh': 0.65, 'closeThresh': 0.3, 'transientBars': 1, 'breakdownKeep': [ \kick, \sub ] ) ) diff --git a/sound_algo/data_only/matrix_presets/neuro_reese_outro.matrix b/sound_algo/data_only/matrix_presets/neuro_reese_outro.matrix index 6f90b16..bd799be 100644 --- a/sound_algo/data_only/matrix_presets/neuro_reese_outro.matrix +++ b/sound_algo/data_only/matrix_presets/neuro_reese_outro.matrix @@ -50,5 +50,6 @@ ], 'voiceMods': [ [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \cutoff, depth: 0.40), (source: \bodyY, target: \pitch, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \res, depth: 0.40), (source: \bodyY, target: \pitch, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \rHandX, target: \amp, depth: 0.40), (source: \rHandY, target: \pitch, depth: 0.40), (source: \lHandY, target: \cutoff, depth: 0.50), (source: \lHandX, target: \res, depth: 0.40)], [(source: \rHandX, target: \amp, depth: 0.40), (source: \rHandY, target: \pitch, depth: 0.40), (source: \lHandY, target: \cutoff, depth: 0.50), (source: \lHandX, target: \res, depth: 0.40)], [(source: \rHandX, target: \amp, depth: 0.40), (source: \rHandY, target: \pitch, depth: 0.40), (source: \lHandY, target: \cutoff, depth: 0.50), (source: \lHandX, target: \res, depth: 0.40)], [(source: \rHandX, target: \amp, depth: 0.40), (source: \rHandY, target: \pitch, depth: 0.40), (source: \lHandY, target: \cutoff, depth: 0.50), (source: \lHandX, target: \res, depth: 0.40)], [(source: \bodyVitesse, target: \cutoff, depth: 0.40), (source: \limbSpan, target: \rev, depth: 0.40), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyY, target: \pitch, depth: 0.30), (source: \bodyVitesse, target: \amp, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \cutoff, depth: 0.50), (source: \bodyY, target: \pitch, depth: 0.30), (source: \limbSpan, target: \res, depth: 0.40), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \rHandX, target: \amp, depth: 0.40), (source: \rHandY, target: \pitch, depth: 0.40), (source: \lHandX, target: \res, depth: 0.40)], [(source: \danse, target: \rev, depth: 0.50), (source: \bodyVitesse, target: \amp, depth: 0.40)], [(source: \rHandX, target: \amp, depth: 0.40), (source: \lHandY, target: \cutoff, depth: 0.50), (source: \lHandX, target: \res, depth: 0.40)], [(source: \bodyVitesse, target: \cutoff, depth: 0.40), (source: \limbSpan, target: \rev, depth: 0.40), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \danse, target: \rev, depth: 0.50), (source: \bodyVitesse, target: \amp, depth: 0.40)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)] ], 'voicePoses': [ [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [] ], -'globalActions': [ \fill, \drop, \evolve, \breakdown ] +'globalActions': [ \fill, \drop, \evolve, \breakdown ], +'globalSettings': ( 'openThresh': 0.65, 'closeThresh': 0.3, 'transientBars': 1, 'breakdownKeep': [ \kick, \sub ] ) ) diff --git a/sound_algo/data_only/matrix_presets/peak_drop_intro.matrix b/sound_algo/data_only/matrix_presets/peak_drop_intro.matrix index d5d3d74..4e03d2f 100644 --- a/sound_algo/data_only/matrix_presets/peak_drop_intro.matrix +++ b/sound_algo/data_only/matrix_presets/peak_drop_intro.matrix @@ -50,5 +50,6 @@ ], 'voiceMods': [ [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \cutoff, depth: 0.40), (source: \bodyY, target: \pitch, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \res, depth: 0.40), (source: \bodyY, target: \pitch, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \rHandX, target: \amp, depth: 0.40), (source: \rHandY, target: \pitch, depth: 0.40), (source: \lHandY, target: \cutoff, depth: 0.50), (source: \lHandX, target: \res, depth: 0.40)], [(source: \rHandX, target: \amp, depth: 0.40), (source: \rHandY, target: \pitch, depth: 0.40), (source: \lHandY, target: \cutoff, depth: 0.50), (source: \lHandX, target: \res, depth: 0.40)], [(source: \rHandX, target: \amp, depth: 0.40), (source: \rHandY, target: \pitch, depth: 0.40), (source: \lHandY, target: \cutoff, depth: 0.50), (source: \lHandX, target: \res, depth: 0.40)], [(source: \rHandX, target: \amp, depth: 0.40), (source: \rHandY, target: \pitch, depth: 0.40), (source: \lHandY, target: \cutoff, depth: 0.50), (source: \lHandX, target: \res, depth: 0.40)], [(source: \bodyVitesse, target: \cutoff, depth: 0.40), (source: \limbSpan, target: \rev, depth: 0.40), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyY, target: \pitch, depth: 0.30), (source: \bodyVitesse, target: \amp, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \cutoff, depth: 0.50), (source: \bodyY, target: \pitch, depth: 0.30), (source: \limbSpan, target: \res, depth: 0.40), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \rHandX, target: \amp, depth: 0.40), (source: \rHandY, target: \pitch, depth: 0.40), (source: \lHandX, target: \res, depth: 0.40)], [(source: \danse, target: \rev, depth: 0.50), (source: \bodyVitesse, target: \amp, depth: 0.40)], [(source: \rHandX, target: \amp, depth: 0.40), (source: \lHandY, target: \cutoff, depth: 0.50), (source: \lHandX, target: \res, depth: 0.40)], [(source: \bodyVitesse, target: \cutoff, depth: 0.40), (source: \limbSpan, target: \rev, depth: 0.40), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \danse, target: \rev, depth: 0.50), (source: \bodyVitesse, target: \amp, depth: 0.40)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)] ], 'voicePoses': [ [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [] ], -'globalActions': [ \fill, \drop, \evolve, \breakdown ] +'globalActions': [ \fill, \drop, \evolve, \breakdown ], +'globalSettings': ( 'openThresh': 0.65, 'closeThresh': 0.3, 'transientBars': 1, 'breakdownKeep': [ \kick, \sub ] ) ) diff --git a/sound_algo/data_only/matrix_presets/peak_drop_live.matrix b/sound_algo/data_only/matrix_presets/peak_drop_live.matrix index eb7d011..3da1e74 100644 --- a/sound_algo/data_only/matrix_presets/peak_drop_live.matrix +++ b/sound_algo/data_only/matrix_presets/peak_drop_live.matrix @@ -50,5 +50,6 @@ ], 'voiceMods': [ [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \cutoff, depth: 0.40), (source: \bodyY, target: \pitch, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \res, depth: 0.40), (source: \bodyY, target: \pitch, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \rHandX, target: \amp, depth: 0.40), (source: \rHandY, target: \pitch, depth: 0.40), (source: \lHandY, target: \cutoff, depth: 0.50), (source: \lHandX, target: \res, depth: 0.40)], [(source: \rHandX, target: \amp, depth: 0.40), (source: \rHandY, target: \pitch, depth: 0.40), (source: \lHandY, target: \cutoff, depth: 0.50), (source: \lHandX, target: \res, depth: 0.40)], [(source: \rHandX, target: \amp, depth: 0.40), (source: \rHandY, target: \pitch, depth: 0.40), (source: \lHandY, target: \cutoff, depth: 0.50), (source: \lHandX, target: \res, depth: 0.40)], [(source: \rHandX, target: \amp, depth: 0.40), (source: \rHandY, target: \pitch, depth: 0.40), (source: \lHandY, target: \cutoff, depth: 0.50), (source: \lHandX, target: \res, depth: 0.40)], [(source: \bodyVitesse, target: \cutoff, depth: 0.40), (source: \limbSpan, target: \rev, depth: 0.40), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyY, target: \pitch, depth: 0.30), (source: \bodyVitesse, target: \amp, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \cutoff, depth: 0.50), (source: \bodyY, target: \pitch, depth: 0.30), (source: \limbSpan, target: \res, depth: 0.40), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \rHandX, target: \amp, depth: 0.40), (source: \rHandY, target: \pitch, depth: 0.40), (source: \lHandX, target: \res, depth: 0.40)], [(source: \danse, target: \rev, depth: 0.50), (source: \bodyVitesse, target: \amp, depth: 0.40)], [(source: \rHandX, target: \amp, depth: 0.40), (source: \lHandY, target: \cutoff, depth: 0.50), (source: \lHandX, target: \res, depth: 0.40)], [(source: \bodyVitesse, target: \cutoff, depth: 0.40), (source: \limbSpan, target: \rev, depth: 0.40), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \danse, target: \rev, depth: 0.50), (source: \bodyVitesse, target: \amp, depth: 0.40)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)] ], 'voicePoses': [ [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [] ], -'globalActions': [ \fill, \drop, \evolve, \breakdown ] +'globalActions': [ \fill, \drop, \evolve, \breakdown ], +'globalSettings': ( 'openThresh': 0.65, 'closeThresh': 0.3, 'transientBars': 1, 'breakdownKeep': [ \kick, \sub ] ) ) diff --git a/sound_algo/data_only/matrix_presets/peak_drop_outro.matrix b/sound_algo/data_only/matrix_presets/peak_drop_outro.matrix index 4bcccd2..2e235c1 100644 --- a/sound_algo/data_only/matrix_presets/peak_drop_outro.matrix +++ b/sound_algo/data_only/matrix_presets/peak_drop_outro.matrix @@ -50,5 +50,6 @@ ], 'voiceMods': [ [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \cutoff, depth: 0.40), (source: \bodyY, target: \pitch, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \res, depth: 0.40), (source: \bodyY, target: \pitch, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \rHandX, target: \amp, depth: 0.40), (source: \rHandY, target: \pitch, depth: 0.40), (source: \lHandY, target: \cutoff, depth: 0.50), (source: \lHandX, target: \res, depth: 0.40)], [(source: \rHandX, target: \amp, depth: 0.40), (source: \rHandY, target: \pitch, depth: 0.40), (source: \lHandY, target: \cutoff, depth: 0.50), (source: \lHandX, target: \res, depth: 0.40)], [(source: \rHandX, target: \amp, depth: 0.40), (source: \rHandY, target: \pitch, depth: 0.40), (source: \lHandY, target: \cutoff, depth: 0.50), (source: \lHandX, target: \res, depth: 0.40)], [(source: \rHandX, target: \amp, depth: 0.40), (source: \rHandY, target: \pitch, depth: 0.40), (source: \lHandY, target: \cutoff, depth: 0.50), (source: \lHandX, target: \res, depth: 0.40)], [(source: \bodyVitesse, target: \cutoff, depth: 0.40), (source: \limbSpan, target: \rev, depth: 0.40), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyY, target: \pitch, depth: 0.30), (source: \bodyVitesse, target: \amp, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \cutoff, depth: 0.50), (source: \bodyY, target: \pitch, depth: 0.30), (source: \limbSpan, target: \res, depth: 0.40), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \rHandX, target: \amp, depth: 0.40), (source: \rHandY, target: \pitch, depth: 0.40), (source: \lHandX, target: \res, depth: 0.40)], [(source: \danse, target: \rev, depth: 0.50), (source: \bodyVitesse, target: \amp, depth: 0.40)], [(source: \rHandX, target: \amp, depth: 0.40), (source: \lHandY, target: \cutoff, depth: 0.50), (source: \lHandX, target: \res, depth: 0.40)], [(source: \bodyVitesse, target: \cutoff, depth: 0.40), (source: \limbSpan, target: \rev, depth: 0.40), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \danse, target: \rev, depth: 0.50), (source: \bodyVitesse, target: \amp, depth: 0.40)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)] ], 'voicePoses': [ [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [] ], -'globalActions': [ \fill, \drop, \evolve, \breakdown ] +'globalActions': [ \fill, \drop, \evolve, \breakdown ], +'globalSettings': ( 'openThresh': 0.65, 'closeThresh': 0.3, 'transientBars': 1, 'breakdownKeep': [ \kick, \sub ] ) ) diff --git a/sound_algo/data_only/matrix_presets/progressive_lift_intro.matrix b/sound_algo/data_only/matrix_presets/progressive_lift_intro.matrix index 4a5712b..a711294 100644 --- a/sound_algo/data_only/matrix_presets/progressive_lift_intro.matrix +++ b/sound_algo/data_only/matrix_presets/progressive_lift_intro.matrix @@ -50,5 +50,6 @@ ], 'voiceMods': [ [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \cutoff, depth: 0.40), (source: \bodyY, target: \pitch, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \res, depth: 0.40), (source: \bodyY, target: \pitch, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \rHandX, target: \amp, depth: 0.40), (source: \rHandY, target: \pitch, depth: 0.40), (source: \lHandY, target: \cutoff, depth: 0.50), (source: \lHandX, target: \res, depth: 0.40)], [(source: \rHandX, target: \amp, depth: 0.40), (source: \rHandY, target: \pitch, depth: 0.40), (source: \lHandY, target: \cutoff, depth: 0.50), (source: \lHandX, target: \res, depth: 0.40)], [(source: \rHandX, target: \amp, depth: 0.40), (source: \rHandY, target: \pitch, depth: 0.40), (source: \lHandY, target: \cutoff, depth: 0.50), (source: \lHandX, target: \res, depth: 0.40)], [(source: \rHandX, target: \amp, depth: 0.40), (source: \rHandY, target: \pitch, depth: 0.40), (source: \lHandY, target: \cutoff, depth: 0.50), (source: \lHandX, target: \res, depth: 0.40)], [(source: \bodyVitesse, target: \cutoff, depth: 0.40), (source: \limbSpan, target: \rev, depth: 0.40), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyY, target: \pitch, depth: 0.30), (source: \bodyVitesse, target: \amp, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \cutoff, depth: 0.50), (source: \bodyY, target: \pitch, depth: 0.30), (source: \limbSpan, target: \res, depth: 0.40), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \rHandX, target: \amp, depth: 0.40), (source: \rHandY, target: \pitch, depth: 0.40), (source: \lHandX, target: \res, depth: 0.40)], [(source: \danse, target: \rev, depth: 0.50), (source: \bodyVitesse, target: \amp, depth: 0.40)], [(source: \rHandX, target: \amp, depth: 0.40), (source: \lHandY, target: \cutoff, depth: 0.50), (source: \lHandX, target: \res, depth: 0.40)], [(source: \bodyVitesse, target: \cutoff, depth: 0.40), (source: \limbSpan, target: \rev, depth: 0.40), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \danse, target: \rev, depth: 0.50), (source: \bodyVitesse, target: \amp, depth: 0.40)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)] ], 'voicePoses': [ [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [] ], -'globalActions': [ \fill, \drop, \evolve, \breakdown ] +'globalActions': [ \fill, \drop, \evolve, \breakdown ], +'globalSettings': ( 'openThresh': 0.65, 'closeThresh': 0.3, 'transientBars': 1, 'breakdownKeep': [ \kick, \sub ] ) ) diff --git a/sound_algo/data_only/matrix_presets/progressive_lift_live.matrix b/sound_algo/data_only/matrix_presets/progressive_lift_live.matrix index 3321bd5..35e11f1 100644 --- a/sound_algo/data_only/matrix_presets/progressive_lift_live.matrix +++ b/sound_algo/data_only/matrix_presets/progressive_lift_live.matrix @@ -50,5 +50,6 @@ ], 'voiceMods': [ [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \cutoff, depth: 0.40), (source: \bodyY, target: \pitch, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \res, depth: 0.40), (source: \bodyY, target: \pitch, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \rHandX, target: \amp, depth: 0.40), (source: \rHandY, target: \pitch, depth: 0.40), (source: \lHandY, target: \cutoff, depth: 0.50), (source: \lHandX, target: \res, depth: 0.40)], [(source: \rHandX, target: \amp, depth: 0.40), (source: \rHandY, target: \pitch, depth: 0.40), (source: \lHandY, target: \cutoff, depth: 0.50), (source: \lHandX, target: \res, depth: 0.40)], [(source: \rHandX, target: \amp, depth: 0.40), (source: \rHandY, target: \pitch, depth: 0.40), (source: \lHandY, target: \cutoff, depth: 0.50), (source: \lHandX, target: \res, depth: 0.40)], [(source: \rHandX, target: \amp, depth: 0.40), (source: \rHandY, target: \pitch, depth: 0.40), (source: \lHandY, target: \cutoff, depth: 0.50), (source: \lHandX, target: \res, depth: 0.40)], [(source: \bodyVitesse, target: \cutoff, depth: 0.40), (source: \limbSpan, target: \rev, depth: 0.40), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyY, target: \pitch, depth: 0.30), (source: \bodyVitesse, target: \amp, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \cutoff, depth: 0.50), (source: \bodyY, target: \pitch, depth: 0.30), (source: \limbSpan, target: \res, depth: 0.40), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \rHandX, target: \amp, depth: 0.40), (source: \rHandY, target: \pitch, depth: 0.40), (source: \lHandX, target: \res, depth: 0.40)], [(source: \danse, target: \rev, depth: 0.50), (source: \bodyVitesse, target: \amp, depth: 0.40)], [(source: \rHandX, target: \amp, depth: 0.40), (source: \lHandY, target: \cutoff, depth: 0.50), (source: \lHandX, target: \res, depth: 0.40)], [(source: \bodyVitesse, target: \cutoff, depth: 0.40), (source: \limbSpan, target: \rev, depth: 0.40), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \danse, target: \rev, depth: 0.50), (source: \bodyVitesse, target: \amp, depth: 0.40)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)] ], 'voicePoses': [ [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [] ], -'globalActions': [ \fill, \drop, \evolve, \breakdown ] +'globalActions': [ \fill, \drop, \evolve, \breakdown ], +'globalSettings': ( 'openThresh': 0.65, 'closeThresh': 0.3, 'transientBars': 1, 'breakdownKeep': [ \kick, \sub ] ) ) diff --git a/sound_algo/data_only/matrix_presets/progressive_lift_outro.matrix b/sound_algo/data_only/matrix_presets/progressive_lift_outro.matrix index 81c031a..e876252 100644 --- a/sound_algo/data_only/matrix_presets/progressive_lift_outro.matrix +++ b/sound_algo/data_only/matrix_presets/progressive_lift_outro.matrix @@ -50,5 +50,6 @@ ], 'voiceMods': [ [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \cutoff, depth: 0.40), (source: \bodyY, target: \pitch, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \res, depth: 0.40), (source: \bodyY, target: \pitch, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \rHandX, target: \amp, depth: 0.40), (source: \rHandY, target: \pitch, depth: 0.40), (source: \lHandY, target: \cutoff, depth: 0.50), (source: \lHandX, target: \res, depth: 0.40)], [(source: \rHandX, target: \amp, depth: 0.40), (source: \rHandY, target: \pitch, depth: 0.40), (source: \lHandY, target: \cutoff, depth: 0.50), (source: \lHandX, target: \res, depth: 0.40)], [(source: \rHandX, target: \amp, depth: 0.40), (source: \rHandY, target: \pitch, depth: 0.40), (source: \lHandY, target: \cutoff, depth: 0.50), (source: \lHandX, target: \res, depth: 0.40)], [(source: \rHandX, target: \amp, depth: 0.40), (source: \rHandY, target: \pitch, depth: 0.40), (source: \lHandY, target: \cutoff, depth: 0.50), (source: \lHandX, target: \res, depth: 0.40)], [(source: \bodyVitesse, target: \cutoff, depth: 0.40), (source: \limbSpan, target: \rev, depth: 0.40), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyY, target: \pitch, depth: 0.30), (source: \bodyVitesse, target: \amp, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \cutoff, depth: 0.50), (source: \bodyY, target: \pitch, depth: 0.30), (source: \limbSpan, target: \res, depth: 0.40), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \rHandX, target: \amp, depth: 0.40), (source: \rHandY, target: \pitch, depth: 0.40), (source: \lHandX, target: \res, depth: 0.40)], [(source: \danse, target: \rev, depth: 0.50), (source: \bodyVitesse, target: \amp, depth: 0.40)], [(source: \rHandX, target: \amp, depth: 0.40), (source: \lHandY, target: \cutoff, depth: 0.50), (source: \lHandX, target: \res, depth: 0.40)], [(source: \bodyVitesse, target: \cutoff, depth: 0.40), (source: \limbSpan, target: \rev, depth: 0.40), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \danse, target: \rev, depth: 0.50), (source: \bodyVitesse, target: \amp, depth: 0.40)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)] ], 'voicePoses': [ [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [] ], -'globalActions': [ \fill, \drop, \evolve, \breakdown ] +'globalActions': [ \fill, \drop, \evolve, \breakdown ], +'globalSettings': ( 'openThresh': 0.65, 'closeThresh': 0.3, 'transientBars': 1, 'breakdownKeep': [ \kick, \sub ] ) ) diff --git a/sound_algo/data_only/matrix_presets/psytrance_roll_intro.matrix b/sound_algo/data_only/matrix_presets/psytrance_roll_intro.matrix index b525b96..bd3c224 100644 --- a/sound_algo/data_only/matrix_presets/psytrance_roll_intro.matrix +++ b/sound_algo/data_only/matrix_presets/psytrance_roll_intro.matrix @@ -50,5 +50,6 @@ ], 'voiceMods': [ [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \cutoff, depth: 0.40), (source: \bodyY, target: \pitch, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \res, depth: 0.40), (source: \bodyY, target: \pitch, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \rHandX, target: \amp, depth: 0.40), (source: \rHandY, target: \pitch, depth: 0.40), (source: \lHandY, target: \cutoff, depth: 0.50), (source: \lHandX, target: \res, depth: 0.40)], [(source: \rHandX, target: \amp, depth: 0.40), (source: \rHandY, target: \pitch, depth: 0.40), (source: \lHandY, target: \cutoff, depth: 0.50), (source: \lHandX, target: \res, depth: 0.40)], [(source: \rHandX, target: \amp, depth: 0.40), (source: \rHandY, target: \pitch, depth: 0.40), (source: \lHandY, target: \cutoff, depth: 0.50), (source: \lHandX, target: \res, depth: 0.40)], [(source: \rHandX, target: \amp, depth: 0.40), (source: \rHandY, target: \pitch, depth: 0.40), (source: \lHandY, target: \cutoff, depth: 0.50), (source: \lHandX, target: \res, depth: 0.40)], [(source: \bodyVitesse, target: \cutoff, depth: 0.40), (source: \limbSpan, target: \rev, depth: 0.40), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyY, target: \pitch, depth: 0.30), (source: \bodyVitesse, target: \amp, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \cutoff, depth: 0.50), (source: \bodyY, target: \pitch, depth: 0.30), (source: \limbSpan, target: \res, depth: 0.40), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \rHandX, target: \amp, depth: 0.40), (source: \rHandY, target: \pitch, depth: 0.40), (source: \lHandX, target: \res, depth: 0.40)], [(source: \danse, target: \rev, depth: 0.50), (source: \bodyVitesse, target: \amp, depth: 0.40)], [(source: \rHandX, target: \amp, depth: 0.40), (source: \lHandY, target: \cutoff, depth: 0.50), (source: \lHandX, target: \res, depth: 0.40)], [(source: \bodyVitesse, target: \cutoff, depth: 0.40), (source: \limbSpan, target: \rev, depth: 0.40), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \danse, target: \rev, depth: 0.50), (source: \bodyVitesse, target: \amp, depth: 0.40)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)] ], 'voicePoses': [ [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [] ], -'globalActions': [ \fill, \drop, \evolve, \breakdown ] +'globalActions': [ \fill, \drop, \evolve, \breakdown ], +'globalSettings': ( 'openThresh': 0.65, 'closeThresh': 0.3, 'transientBars': 1, 'breakdownKeep': [ \kick, \sub ] ) ) diff --git a/sound_algo/data_only/matrix_presets/psytrance_roll_live.matrix b/sound_algo/data_only/matrix_presets/psytrance_roll_live.matrix index f3818a0..e4a438b 100644 --- a/sound_algo/data_only/matrix_presets/psytrance_roll_live.matrix +++ b/sound_algo/data_only/matrix_presets/psytrance_roll_live.matrix @@ -50,5 +50,6 @@ ], 'voiceMods': [ [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \cutoff, depth: 0.40), (source: \bodyY, target: \pitch, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \res, depth: 0.40), (source: \bodyY, target: \pitch, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \rHandX, target: \amp, depth: 0.40), (source: \rHandY, target: \pitch, depth: 0.40), (source: \lHandY, target: \cutoff, depth: 0.50), (source: \lHandX, target: \res, depth: 0.40)], [(source: \rHandX, target: \amp, depth: 0.40), (source: \rHandY, target: \pitch, depth: 0.40), (source: \lHandY, target: \cutoff, depth: 0.50), (source: \lHandX, target: \res, depth: 0.40)], [(source: \rHandX, target: \amp, depth: 0.40), (source: \rHandY, target: \pitch, depth: 0.40), (source: \lHandY, target: \cutoff, depth: 0.50), (source: \lHandX, target: \res, depth: 0.40)], [(source: \rHandX, target: \amp, depth: 0.40), (source: \rHandY, target: \pitch, depth: 0.40), (source: \lHandY, target: \cutoff, depth: 0.50), (source: \lHandX, target: \res, depth: 0.40)], [(source: \bodyVitesse, target: \cutoff, depth: 0.40), (source: \limbSpan, target: \rev, depth: 0.40), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyY, target: \pitch, depth: 0.30), (source: \bodyVitesse, target: \amp, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \cutoff, depth: 0.50), (source: \bodyY, target: \pitch, depth: 0.30), (source: \limbSpan, target: \res, depth: 0.40), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \rHandX, target: \amp, depth: 0.40), (source: \rHandY, target: \pitch, depth: 0.40), (source: \lHandX, target: \res, depth: 0.40)], [(source: \danse, target: \rev, depth: 0.50), (source: \bodyVitesse, target: \amp, depth: 0.40)], [(source: \rHandX, target: \amp, depth: 0.40), (source: \lHandY, target: \cutoff, depth: 0.50), (source: \lHandX, target: \res, depth: 0.40)], [(source: \bodyVitesse, target: \cutoff, depth: 0.40), (source: \limbSpan, target: \rev, depth: 0.40), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \danse, target: \rev, depth: 0.50), (source: \bodyVitesse, target: \amp, depth: 0.40)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)] ], 'voicePoses': [ [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [] ], -'globalActions': [ \fill, \drop, \evolve, \breakdown ] +'globalActions': [ \fill, \drop, \evolve, \breakdown ], +'globalSettings': ( 'openThresh': 0.65, 'closeThresh': 0.3, 'transientBars': 1, 'breakdownKeep': [ \kick, \sub ] ) ) diff --git a/sound_algo/data_only/matrix_presets/psytrance_roll_outro.matrix b/sound_algo/data_only/matrix_presets/psytrance_roll_outro.matrix index c559533..03f9a27 100644 --- a/sound_algo/data_only/matrix_presets/psytrance_roll_outro.matrix +++ b/sound_algo/data_only/matrix_presets/psytrance_roll_outro.matrix @@ -50,5 +50,6 @@ ], 'voiceMods': [ [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \cutoff, depth: 0.40), (source: \bodyY, target: \pitch, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \res, depth: 0.40), (source: \bodyY, target: \pitch, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \rHandX, target: \amp, depth: 0.40), (source: \rHandY, target: \pitch, depth: 0.40), (source: \lHandY, target: \cutoff, depth: 0.50), (source: \lHandX, target: \res, depth: 0.40)], [(source: \rHandX, target: \amp, depth: 0.40), (source: \rHandY, target: \pitch, depth: 0.40), (source: \lHandY, target: \cutoff, depth: 0.50), (source: \lHandX, target: \res, depth: 0.40)], [(source: \rHandX, target: \amp, depth: 0.40), (source: \rHandY, target: \pitch, depth: 0.40), (source: \lHandY, target: \cutoff, depth: 0.50), (source: \lHandX, target: \res, depth: 0.40)], [(source: \rHandX, target: \amp, depth: 0.40), (source: \rHandY, target: \pitch, depth: 0.40), (source: \lHandY, target: \cutoff, depth: 0.50), (source: \lHandX, target: \res, depth: 0.40)], [(source: \bodyVitesse, target: \cutoff, depth: 0.40), (source: \limbSpan, target: \rev, depth: 0.40), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyY, target: \pitch, depth: 0.30), (source: \bodyVitesse, target: \amp, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \cutoff, depth: 0.50), (source: \bodyY, target: \pitch, depth: 0.30), (source: \limbSpan, target: \res, depth: 0.40), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \rHandX, target: \amp, depth: 0.40), (source: \rHandY, target: \pitch, depth: 0.40), (source: \lHandX, target: \res, depth: 0.40)], [(source: \danse, target: \rev, depth: 0.50), (source: \bodyVitesse, target: \amp, depth: 0.40)], [(source: \rHandX, target: \amp, depth: 0.40), (source: \lHandY, target: \cutoff, depth: 0.50), (source: \lHandX, target: \res, depth: 0.40)], [(source: \bodyVitesse, target: \cutoff, depth: 0.40), (source: \limbSpan, target: \rev, depth: 0.40), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \danse, target: \rev, depth: 0.50), (source: \bodyVitesse, target: \amp, depth: 0.40)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)] ], 'voicePoses': [ [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [] ], -'globalActions': [ \fill, \drop, \evolve, \breakdown ] +'globalActions': [ \fill, \drop, \evolve, \breakdown ], +'globalSettings': ( 'openThresh': 0.65, 'closeThresh': 0.3, 'transientBars': 1, 'breakdownKeep': [ \kick, \sub ] ) ) diff --git a/sound_algo/data_only/matrix_presets/rave_stab_intro.matrix b/sound_algo/data_only/matrix_presets/rave_stab_intro.matrix index 562d3cf..58ea909 100644 --- a/sound_algo/data_only/matrix_presets/rave_stab_intro.matrix +++ b/sound_algo/data_only/matrix_presets/rave_stab_intro.matrix @@ -50,5 +50,6 @@ ], 'voiceMods': [ [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \cutoff, depth: 0.40), (source: \bodyY, target: \pitch, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \res, depth: 0.40), (source: \bodyY, target: \pitch, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \rHandX, target: \amp, depth: 0.40), (source: \rHandY, target: \pitch, depth: 0.40), (source: \lHandY, target: \cutoff, depth: 0.50), (source: \lHandX, target: \res, depth: 0.40)], [(source: \rHandX, target: \amp, depth: 0.40), (source: \rHandY, target: \pitch, depth: 0.40), (source: \lHandY, target: \cutoff, depth: 0.50), (source: \lHandX, target: \res, depth: 0.40)], [(source: \rHandX, target: \amp, depth: 0.40), (source: \rHandY, target: \pitch, depth: 0.40), (source: \lHandY, target: \cutoff, depth: 0.50), (source: \lHandX, target: \res, depth: 0.40)], [(source: \rHandX, target: \amp, depth: 0.40), (source: \rHandY, target: \pitch, depth: 0.40), (source: \lHandY, target: \cutoff, depth: 0.50), (source: \lHandX, target: \res, depth: 0.40)], [(source: \bodyVitesse, target: \cutoff, depth: 0.40), (source: \limbSpan, target: \rev, depth: 0.40), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyY, target: \pitch, depth: 0.30), (source: \bodyVitesse, target: \amp, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \cutoff, depth: 0.50), (source: \bodyY, target: \pitch, depth: 0.30), (source: \limbSpan, target: \res, depth: 0.40), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \rHandX, target: \amp, depth: 0.40), (source: \rHandY, target: \pitch, depth: 0.40), (source: \lHandX, target: \res, depth: 0.40)], [(source: \danse, target: \rev, depth: 0.50), (source: \bodyVitesse, target: \amp, depth: 0.40)], [(source: \rHandX, target: \amp, depth: 0.40), (source: \lHandY, target: \cutoff, depth: 0.50), (source: \lHandX, target: \res, depth: 0.40)], [(source: \bodyVitesse, target: \cutoff, depth: 0.40), (source: \limbSpan, target: \rev, depth: 0.40), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \danse, target: \rev, depth: 0.50), (source: \bodyVitesse, target: \amp, depth: 0.40)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)] ], 'voicePoses': [ [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [] ], -'globalActions': [ \fill, \drop, \evolve, \breakdown ] +'globalActions': [ \fill, \drop, \evolve, \breakdown ], +'globalSettings': ( 'openThresh': 0.65, 'closeThresh': 0.3, 'transientBars': 1, 'breakdownKeep': [ \kick, \sub ] ) ) diff --git a/sound_algo/data_only/matrix_presets/rave_stab_live.matrix b/sound_algo/data_only/matrix_presets/rave_stab_live.matrix index 0b33757..c73cace 100644 --- a/sound_algo/data_only/matrix_presets/rave_stab_live.matrix +++ b/sound_algo/data_only/matrix_presets/rave_stab_live.matrix @@ -50,5 +50,6 @@ ], 'voiceMods': [ [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \cutoff, depth: 0.40), (source: \bodyY, target: \pitch, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \res, depth: 0.40), (source: \bodyY, target: \pitch, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \rHandX, target: \amp, depth: 0.40), (source: \rHandY, target: \pitch, depth: 0.40), (source: \lHandY, target: \cutoff, depth: 0.50), (source: \lHandX, target: \res, depth: 0.40)], [(source: \rHandX, target: \amp, depth: 0.40), (source: \rHandY, target: \pitch, depth: 0.40), (source: \lHandY, target: \cutoff, depth: 0.50), (source: \lHandX, target: \res, depth: 0.40)], [(source: \rHandX, target: \amp, depth: 0.40), (source: \rHandY, target: \pitch, depth: 0.40), (source: \lHandY, target: \cutoff, depth: 0.50), (source: \lHandX, target: \res, depth: 0.40)], [(source: \rHandX, target: \amp, depth: 0.40), (source: \rHandY, target: \pitch, depth: 0.40), (source: \lHandY, target: \cutoff, depth: 0.50), (source: \lHandX, target: \res, depth: 0.40)], [(source: \bodyVitesse, target: \cutoff, depth: 0.40), (source: \limbSpan, target: \rev, depth: 0.40), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyY, target: \pitch, depth: 0.30), (source: \bodyVitesse, target: \amp, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \cutoff, depth: 0.50), (source: \bodyY, target: \pitch, depth: 0.30), (source: \limbSpan, target: \res, depth: 0.40), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \rHandX, target: \amp, depth: 0.40), (source: \rHandY, target: \pitch, depth: 0.40), (source: \lHandX, target: \res, depth: 0.40)], [(source: \danse, target: \rev, depth: 0.50), (source: \bodyVitesse, target: \amp, depth: 0.40)], [(source: \rHandX, target: \amp, depth: 0.40), (source: \lHandY, target: \cutoff, depth: 0.50), (source: \lHandX, target: \res, depth: 0.40)], [(source: \bodyVitesse, target: \cutoff, depth: 0.40), (source: \limbSpan, target: \rev, depth: 0.40), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \danse, target: \rev, depth: 0.50), (source: \bodyVitesse, target: \amp, depth: 0.40)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)] ], 'voicePoses': [ [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [] ], -'globalActions': [ \fill, \drop, \evolve, \breakdown ] +'globalActions': [ \fill, \drop, \evolve, \breakdown ], +'globalSettings': ( 'openThresh': 0.65, 'closeThresh': 0.3, 'transientBars': 1, 'breakdownKeep': [ \kick, \sub ] ) ) diff --git a/sound_algo/data_only/matrix_presets/rave_stab_outro.matrix b/sound_algo/data_only/matrix_presets/rave_stab_outro.matrix index 0380bb1..8cc4682 100644 --- a/sound_algo/data_only/matrix_presets/rave_stab_outro.matrix +++ b/sound_algo/data_only/matrix_presets/rave_stab_outro.matrix @@ -50,5 +50,6 @@ ], 'voiceMods': [ [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \cutoff, depth: 0.40), (source: \bodyY, target: \pitch, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \res, depth: 0.40), (source: \bodyY, target: \pitch, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \rHandX, target: \amp, depth: 0.40), (source: \rHandY, target: \pitch, depth: 0.40), (source: \lHandY, target: \cutoff, depth: 0.50), (source: \lHandX, target: \res, depth: 0.40)], [(source: \rHandX, target: \amp, depth: 0.40), (source: \rHandY, target: \pitch, depth: 0.40), (source: \lHandY, target: \cutoff, depth: 0.50), (source: \lHandX, target: \res, depth: 0.40)], [(source: \rHandX, target: \amp, depth: 0.40), (source: \rHandY, target: \pitch, depth: 0.40), (source: \lHandY, target: \cutoff, depth: 0.50), (source: \lHandX, target: \res, depth: 0.40)], [(source: \rHandX, target: \amp, depth: 0.40), (source: \rHandY, target: \pitch, depth: 0.40), (source: \lHandY, target: \cutoff, depth: 0.50), (source: \lHandX, target: \res, depth: 0.40)], [(source: \bodyVitesse, target: \cutoff, depth: 0.40), (source: \limbSpan, target: \rev, depth: 0.40), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyY, target: \pitch, depth: 0.30), (source: \bodyVitesse, target: \amp, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \cutoff, depth: 0.50), (source: \bodyY, target: \pitch, depth: 0.30), (source: \limbSpan, target: \res, depth: 0.40), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \rHandX, target: \amp, depth: 0.40), (source: \rHandY, target: \pitch, depth: 0.40), (source: \lHandX, target: \res, depth: 0.40)], [(source: \danse, target: \rev, depth: 0.50), (source: \bodyVitesse, target: \amp, depth: 0.40)], [(source: \rHandX, target: \amp, depth: 0.40), (source: \lHandY, target: \cutoff, depth: 0.50), (source: \lHandX, target: \res, depth: 0.40)], [(source: \bodyVitesse, target: \cutoff, depth: 0.40), (source: \limbSpan, target: \rev, depth: 0.40), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \danse, target: \rev, depth: 0.50), (source: \bodyVitesse, target: \amp, depth: 0.40)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)] ], 'voicePoses': [ [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [] ], -'globalActions': [ \fill, \drop, \evolve, \breakdown ] +'globalActions': [ \fill, \drop, \evolve, \breakdown ], +'globalSettings': ( 'openThresh': 0.65, 'closeThresh': 0.3, 'transientBars': 1, 'breakdownKeep': [ \kick, \sub ] ) ) diff --git a/sound_algo/data_only/matrix_presets/schranz_drive_intro.matrix b/sound_algo/data_only/matrix_presets/schranz_drive_intro.matrix index 3c62715..1aec7bf 100644 --- a/sound_algo/data_only/matrix_presets/schranz_drive_intro.matrix +++ b/sound_algo/data_only/matrix_presets/schranz_drive_intro.matrix @@ -50,5 +50,6 @@ ], 'voiceMods': [ [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \cutoff, depth: 0.40), (source: \bodyY, target: \pitch, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \res, depth: 0.40), (source: \bodyY, target: \pitch, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \rHandX, target: \amp, depth: 0.40), (source: \rHandY, target: \pitch, depth: 0.40), (source: \lHandY, target: \cutoff, depth: 0.50), (source: \lHandX, target: \res, depth: 0.40)], [(source: \rHandX, target: \amp, depth: 0.40), (source: \rHandY, target: \pitch, depth: 0.40), (source: \lHandY, target: \cutoff, depth: 0.50), (source: \lHandX, target: \res, depth: 0.40)], [(source: \rHandX, target: \amp, depth: 0.40), (source: \rHandY, target: \pitch, depth: 0.40), (source: \lHandY, target: \cutoff, depth: 0.50), (source: \lHandX, target: \res, depth: 0.40)], [(source: \rHandX, target: \amp, depth: 0.40), (source: \rHandY, target: \pitch, depth: 0.40), (source: \lHandY, target: \cutoff, depth: 0.50), (source: \lHandX, target: \res, depth: 0.40)], [(source: \bodyVitesse, target: \cutoff, depth: 0.40), (source: \limbSpan, target: \rev, depth: 0.40), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyY, target: \pitch, depth: 0.30), (source: \bodyVitesse, target: \amp, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \cutoff, depth: 0.50), (source: \bodyY, target: \pitch, depth: 0.30), (source: \limbSpan, target: \res, depth: 0.40), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \rHandX, target: \amp, depth: 0.40), (source: \rHandY, target: \pitch, depth: 0.40), (source: \lHandX, target: \res, depth: 0.40)], [(source: \danse, target: \rev, depth: 0.50), (source: \bodyVitesse, target: \amp, depth: 0.40)], [(source: \rHandX, target: \amp, depth: 0.40), (source: \lHandY, target: \cutoff, depth: 0.50), (source: \lHandX, target: \res, depth: 0.40)], [(source: \bodyVitesse, target: \cutoff, depth: 0.40), (source: \limbSpan, target: \rev, depth: 0.40), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \danse, target: \rev, depth: 0.50), (source: \bodyVitesse, target: \amp, depth: 0.40)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)] ], 'voicePoses': [ [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [] ], -'globalActions': [ \fill, \drop, \evolve, \breakdown ] +'globalActions': [ \fill, \drop, \evolve, \breakdown ], +'globalSettings': ( 'openThresh': 0.65, 'closeThresh': 0.3, 'transientBars': 1, 'breakdownKeep': [ \kick, \sub ] ) ) diff --git a/sound_algo/data_only/matrix_presets/schranz_drive_live.matrix b/sound_algo/data_only/matrix_presets/schranz_drive_live.matrix index 7c2fe20..61722b4 100644 --- a/sound_algo/data_only/matrix_presets/schranz_drive_live.matrix +++ b/sound_algo/data_only/matrix_presets/schranz_drive_live.matrix @@ -50,5 +50,6 @@ ], 'voiceMods': [ [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \cutoff, depth: 0.40), (source: \bodyY, target: \pitch, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \res, depth: 0.40), (source: \bodyY, target: \pitch, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \rHandX, target: \amp, depth: 0.40), (source: \rHandY, target: \pitch, depth: 0.40), (source: \lHandY, target: \cutoff, depth: 0.50), (source: \lHandX, target: \res, depth: 0.40)], [(source: \rHandX, target: \amp, depth: 0.40), (source: \rHandY, target: \pitch, depth: 0.40), (source: \lHandY, target: \cutoff, depth: 0.50), (source: \lHandX, target: \res, depth: 0.40)], [(source: \rHandX, target: \amp, depth: 0.40), (source: \rHandY, target: \pitch, depth: 0.40), (source: \lHandY, target: \cutoff, depth: 0.50), (source: \lHandX, target: \res, depth: 0.40)], [(source: \rHandX, target: \amp, depth: 0.40), (source: \rHandY, target: \pitch, depth: 0.40), (source: \lHandY, target: \cutoff, depth: 0.50), (source: \lHandX, target: \res, depth: 0.40)], [(source: \bodyVitesse, target: \cutoff, depth: 0.40), (source: \limbSpan, target: \rev, depth: 0.40), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyY, target: \pitch, depth: 0.30), (source: \bodyVitesse, target: \amp, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \cutoff, depth: 0.50), (source: \bodyY, target: \pitch, depth: 0.30), (source: \limbSpan, target: \res, depth: 0.40), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \rHandX, target: \amp, depth: 0.40), (source: \rHandY, target: \pitch, depth: 0.40), (source: \lHandX, target: \res, depth: 0.40)], [(source: \danse, target: \rev, depth: 0.50), (source: \bodyVitesse, target: \amp, depth: 0.40)], [(source: \rHandX, target: \amp, depth: 0.40), (source: \lHandY, target: \cutoff, depth: 0.50), (source: \lHandX, target: \res, depth: 0.40)], [(source: \bodyVitesse, target: \cutoff, depth: 0.40), (source: \limbSpan, target: \rev, depth: 0.40), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \danse, target: \rev, depth: 0.50), (source: \bodyVitesse, target: \amp, depth: 0.40)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)] ], 'voicePoses': [ [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [] ], -'globalActions': [ \fill, \drop, \evolve, \breakdown ] +'globalActions': [ \fill, \drop, \evolve, \breakdown ], +'globalSettings': ( 'openThresh': 0.65, 'closeThresh': 0.3, 'transientBars': 1, 'breakdownKeep': [ \kick, \sub ] ) ) diff --git a/sound_algo/data_only/matrix_presets/schranz_drive_outro.matrix b/sound_algo/data_only/matrix_presets/schranz_drive_outro.matrix index b3e36e0..2575f80 100644 --- a/sound_algo/data_only/matrix_presets/schranz_drive_outro.matrix +++ b/sound_algo/data_only/matrix_presets/schranz_drive_outro.matrix @@ -50,5 +50,6 @@ ], 'voiceMods': [ [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \cutoff, depth: 0.40), (source: \bodyY, target: \pitch, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \res, depth: 0.40), (source: \bodyY, target: \pitch, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \rHandX, target: \amp, depth: 0.40), (source: \rHandY, target: \pitch, depth: 0.40), (source: \lHandY, target: \cutoff, depth: 0.50), (source: \lHandX, target: \res, depth: 0.40)], [(source: \rHandX, target: \amp, depth: 0.40), (source: \rHandY, target: \pitch, depth: 0.40), (source: \lHandY, target: \cutoff, depth: 0.50), (source: \lHandX, target: \res, depth: 0.40)], [(source: \rHandX, target: \amp, depth: 0.40), (source: \rHandY, target: \pitch, depth: 0.40), (source: \lHandY, target: \cutoff, depth: 0.50), (source: \lHandX, target: \res, depth: 0.40)], [(source: \rHandX, target: \amp, depth: 0.40), (source: \rHandY, target: \pitch, depth: 0.40), (source: \lHandY, target: \cutoff, depth: 0.50), (source: \lHandX, target: \res, depth: 0.40)], [(source: \bodyVitesse, target: \cutoff, depth: 0.40), (source: \limbSpan, target: \rev, depth: 0.40), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyY, target: \pitch, depth: 0.30), (source: \bodyVitesse, target: \amp, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \cutoff, depth: 0.50), (source: \bodyY, target: \pitch, depth: 0.30), (source: \limbSpan, target: \res, depth: 0.40), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \rHandX, target: \amp, depth: 0.40), (source: \rHandY, target: \pitch, depth: 0.40), (source: \lHandX, target: \res, depth: 0.40)], [(source: \danse, target: \rev, depth: 0.50), (source: \bodyVitesse, target: \amp, depth: 0.40)], [(source: \rHandX, target: \amp, depth: 0.40), (source: \lHandY, target: \cutoff, depth: 0.50), (source: \lHandX, target: \res, depth: 0.40)], [(source: \bodyVitesse, target: \cutoff, depth: 0.40), (source: \limbSpan, target: \rev, depth: 0.40), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \danse, target: \rev, depth: 0.50), (source: \bodyVitesse, target: \amp, depth: 0.40)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)] ], 'voicePoses': [ [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [] ], -'globalActions': [ \fill, \drop, \evolve, \breakdown ] +'globalActions': [ \fill, \drop, \evolve, \breakdown ], +'globalSettings': ( 'openThresh': 0.65, 'closeThresh': 0.3, 'transientBars': 1, 'breakdownKeep': [ \kick, \sub ] ) ) diff --git a/sound_algo/data_only/matrix_presets/synthwave_drive_intro.matrix b/sound_algo/data_only/matrix_presets/synthwave_drive_intro.matrix index 32616ef..a474d39 100644 --- a/sound_algo/data_only/matrix_presets/synthwave_drive_intro.matrix +++ b/sound_algo/data_only/matrix_presets/synthwave_drive_intro.matrix @@ -50,5 +50,6 @@ ], 'voiceMods': [ [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \cutoff, depth: 0.40), (source: \bodyY, target: \pitch, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \res, depth: 0.40), (source: \bodyY, target: \pitch, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \rHandX, target: \amp, depth: 0.40), (source: \rHandY, target: \pitch, depth: 0.40), (source: \lHandY, target: \cutoff, depth: 0.50), (source: \lHandX, target: \res, depth: 0.40)], [(source: \rHandX, target: \amp, depth: 0.40), (source: \rHandY, target: \pitch, depth: 0.40), (source: \lHandY, target: \cutoff, depth: 0.50), (source: \lHandX, target: \res, depth: 0.40)], [(source: \rHandX, target: \amp, depth: 0.40), (source: \rHandY, target: \pitch, depth: 0.40), (source: \lHandY, target: \cutoff, depth: 0.50), (source: \lHandX, target: \res, depth: 0.40)], [(source: \rHandX, target: \amp, depth: 0.40), (source: \rHandY, target: \pitch, depth: 0.40), (source: \lHandY, target: \cutoff, depth: 0.50), (source: \lHandX, target: \res, depth: 0.40)], [(source: \bodyVitesse, target: \cutoff, depth: 0.40), (source: \limbSpan, target: \rev, depth: 0.40), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyY, target: \pitch, depth: 0.30), (source: \bodyVitesse, target: \amp, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \cutoff, depth: 0.50), (source: \bodyY, target: \pitch, depth: 0.30), (source: \limbSpan, target: \res, depth: 0.40), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \rHandX, target: \amp, depth: 0.40), (source: \rHandY, target: \pitch, depth: 0.40), (source: \lHandX, target: \res, depth: 0.40)], [(source: \danse, target: \rev, depth: 0.50), (source: \bodyVitesse, target: \amp, depth: 0.40)], [(source: \rHandX, target: \amp, depth: 0.40), (source: \lHandY, target: \cutoff, depth: 0.50), (source: \lHandX, target: \res, depth: 0.40)], [(source: \bodyVitesse, target: \cutoff, depth: 0.40), (source: \limbSpan, target: \rev, depth: 0.40), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \danse, target: \rev, depth: 0.50), (source: \bodyVitesse, target: \amp, depth: 0.40)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)] ], 'voicePoses': [ [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [] ], -'globalActions': [ \fill, \drop, \evolve, \breakdown ] +'globalActions': [ \fill, \drop, \evolve, \breakdown ], +'globalSettings': ( 'openThresh': 0.65, 'closeThresh': 0.3, 'transientBars': 1, 'breakdownKeep': [ \kick, \sub ] ) ) diff --git a/sound_algo/data_only/matrix_presets/synthwave_drive_live.matrix b/sound_algo/data_only/matrix_presets/synthwave_drive_live.matrix index 476cb17..5a094f4 100644 --- a/sound_algo/data_only/matrix_presets/synthwave_drive_live.matrix +++ b/sound_algo/data_only/matrix_presets/synthwave_drive_live.matrix @@ -50,5 +50,6 @@ ], 'voiceMods': [ [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \cutoff, depth: 0.40), (source: \bodyY, target: \pitch, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \res, depth: 0.40), (source: \bodyY, target: \pitch, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \rHandX, target: \amp, depth: 0.40), (source: \rHandY, target: \pitch, depth: 0.40), (source: \lHandY, target: \cutoff, depth: 0.50), (source: \lHandX, target: \res, depth: 0.40)], [(source: \rHandX, target: \amp, depth: 0.40), (source: \rHandY, target: \pitch, depth: 0.40), (source: \lHandY, target: \cutoff, depth: 0.50), (source: \lHandX, target: \res, depth: 0.40)], [(source: \rHandX, target: \amp, depth: 0.40), (source: \rHandY, target: \pitch, depth: 0.40), (source: \lHandY, target: \cutoff, depth: 0.50), (source: \lHandX, target: \res, depth: 0.40)], [(source: \rHandX, target: \amp, depth: 0.40), (source: \rHandY, target: \pitch, depth: 0.40), (source: \lHandY, target: \cutoff, depth: 0.50), (source: \lHandX, target: \res, depth: 0.40)], [(source: \bodyVitesse, target: \cutoff, depth: 0.40), (source: \limbSpan, target: \rev, depth: 0.40), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyY, target: \pitch, depth: 0.30), (source: \bodyVitesse, target: \amp, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \cutoff, depth: 0.50), (source: \bodyY, target: \pitch, depth: 0.30), (source: \limbSpan, target: \res, depth: 0.40), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \rHandX, target: \amp, depth: 0.40), (source: \rHandY, target: \pitch, depth: 0.40), (source: \lHandX, target: \res, depth: 0.40)], [(source: \danse, target: \rev, depth: 0.50), (source: \bodyVitesse, target: \amp, depth: 0.40)], [(source: \rHandX, target: \amp, depth: 0.40), (source: \lHandY, target: \cutoff, depth: 0.50), (source: \lHandX, target: \res, depth: 0.40)], [(source: \bodyVitesse, target: \cutoff, depth: 0.40), (source: \limbSpan, target: \rev, depth: 0.40), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \danse, target: \rev, depth: 0.50), (source: \bodyVitesse, target: \amp, depth: 0.40)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)] ], 'voicePoses': [ [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [] ], -'globalActions': [ \fill, \drop, \evolve, \breakdown ] +'globalActions': [ \fill, \drop, \evolve, \breakdown ], +'globalSettings': ( 'openThresh': 0.65, 'closeThresh': 0.3, 'transientBars': 1, 'breakdownKeep': [ \kick, \sub ] ) ) diff --git a/sound_algo/data_only/matrix_presets/synthwave_drive_outro.matrix b/sound_algo/data_only/matrix_presets/synthwave_drive_outro.matrix index 206b1be..31241dc 100644 --- a/sound_algo/data_only/matrix_presets/synthwave_drive_outro.matrix +++ b/sound_algo/data_only/matrix_presets/synthwave_drive_outro.matrix @@ -50,5 +50,6 @@ ], 'voiceMods': [ [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \cutoff, depth: 0.40), (source: \bodyY, target: \pitch, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \res, depth: 0.40), (source: \bodyY, target: \pitch, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \rHandX, target: \amp, depth: 0.40), (source: \rHandY, target: \pitch, depth: 0.40), (source: \lHandY, target: \cutoff, depth: 0.50), (source: \lHandX, target: \res, depth: 0.40)], [(source: \rHandX, target: \amp, depth: 0.40), (source: \rHandY, target: \pitch, depth: 0.40), (source: \lHandY, target: \cutoff, depth: 0.50), (source: \lHandX, target: \res, depth: 0.40)], [(source: \rHandX, target: \amp, depth: 0.40), (source: \rHandY, target: \pitch, depth: 0.40), (source: \lHandY, target: \cutoff, depth: 0.50), (source: \lHandX, target: \res, depth: 0.40)], [(source: \rHandX, target: \amp, depth: 0.40), (source: \rHandY, target: \pitch, depth: 0.40), (source: \lHandY, target: \cutoff, depth: 0.50), (source: \lHandX, target: \res, depth: 0.40)], [(source: \bodyVitesse, target: \cutoff, depth: 0.40), (source: \limbSpan, target: \rev, depth: 0.40), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyY, target: \pitch, depth: 0.30), (source: \bodyVitesse, target: \amp, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \cutoff, depth: 0.50), (source: \bodyY, target: \pitch, depth: 0.30), (source: \limbSpan, target: \res, depth: 0.40), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \rHandX, target: \amp, depth: 0.40), (source: \rHandY, target: \pitch, depth: 0.40), (source: \lHandX, target: \res, depth: 0.40)], [(source: \danse, target: \rev, depth: 0.50), (source: \bodyVitesse, target: \amp, depth: 0.40)], [(source: \rHandX, target: \amp, depth: 0.40), (source: \lHandY, target: \cutoff, depth: 0.50), (source: \lHandX, target: \res, depth: 0.40)], [(source: \bodyVitesse, target: \cutoff, depth: 0.40), (source: \limbSpan, target: \rev, depth: 0.40), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \danse, target: \rev, depth: 0.50), (source: \bodyVitesse, target: \amp, depth: 0.40)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)] ], 'voicePoses': [ [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [] ], -'globalActions': [ \fill, \drop, \evolve, \breakdown ] +'globalActions': [ \fill, \drop, \evolve, \breakdown ], +'globalSettings': ( 'openThresh': 0.65, 'closeThresh': 0.3, 'transientBars': 1, 'breakdownKeep': [ \kick, \sub ] ) ) diff --git a/sound_algo/data_only/matrix_presets/techno_drive_intro.matrix b/sound_algo/data_only/matrix_presets/techno_drive_intro.matrix index 794c9a9..0fc8803 100644 --- a/sound_algo/data_only/matrix_presets/techno_drive_intro.matrix +++ b/sound_algo/data_only/matrix_presets/techno_drive_intro.matrix @@ -50,5 +50,6 @@ ], 'voiceMods': [ [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \cutoff, depth: 0.40), (source: \bodyY, target: \pitch, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \res, depth: 0.40), (source: \bodyY, target: \pitch, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \rHandX, target: \amp, depth: 0.40), (source: \rHandY, target: \pitch, depth: 0.40), (source: \lHandY, target: \cutoff, depth: 0.50), (source: \lHandX, target: \res, depth: 0.40)], [(source: \rHandX, target: \amp, depth: 0.40), (source: \rHandY, target: \pitch, depth: 0.40), (source: \lHandY, target: \cutoff, depth: 0.50), (source: \lHandX, target: \res, depth: 0.40)], [(source: \rHandX, target: \amp, depth: 0.40), (source: \rHandY, target: \pitch, depth: 0.40), (source: \lHandY, target: \cutoff, depth: 0.50), (source: \lHandX, target: \res, depth: 0.40)], [(source: \rHandX, target: \amp, depth: 0.40), (source: \rHandY, target: \pitch, depth: 0.40), (source: \lHandY, target: \cutoff, depth: 0.50), (source: \lHandX, target: \res, depth: 0.40)], [(source: \bodyVitesse, target: \cutoff, depth: 0.40), (source: \limbSpan, target: \rev, depth: 0.40), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyY, target: \pitch, depth: 0.30), (source: \bodyVitesse, target: \amp, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \cutoff, depth: 0.50), (source: \bodyY, target: \pitch, depth: 0.30), (source: \limbSpan, target: \res, depth: 0.40), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \rHandX, target: \amp, depth: 0.40), (source: \rHandY, target: \pitch, depth: 0.40), (source: \lHandX, target: \res, depth: 0.40)], [(source: \danse, target: \rev, depth: 0.50), (source: \bodyVitesse, target: \amp, depth: 0.40)], [(source: \rHandX, target: \amp, depth: 0.40), (source: \lHandY, target: \cutoff, depth: 0.50), (source: \lHandX, target: \res, depth: 0.40)], [(source: \bodyVitesse, target: \cutoff, depth: 0.40), (source: \limbSpan, target: \rev, depth: 0.40), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \danse, target: \rev, depth: 0.50), (source: \bodyVitesse, target: \amp, depth: 0.40)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)] ], 'voicePoses': [ [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [] ], -'globalActions': [ \fill, \drop, \evolve, \breakdown ] +'globalActions': [ \fill, \drop, \evolve, \breakdown ], +'globalSettings': ( 'openThresh': 0.65, 'closeThresh': 0.3, 'transientBars': 1, 'breakdownKeep': [ \kick, \sub ] ) ) diff --git a/sound_algo/data_only/matrix_presets/techno_drive_live.matrix b/sound_algo/data_only/matrix_presets/techno_drive_live.matrix index d59cce6..c662a38 100644 --- a/sound_algo/data_only/matrix_presets/techno_drive_live.matrix +++ b/sound_algo/data_only/matrix_presets/techno_drive_live.matrix @@ -50,5 +50,6 @@ ], 'voiceMods': [ [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \cutoff, depth: 0.40), (source: \bodyY, target: \pitch, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \res, depth: 0.40), (source: \bodyY, target: \pitch, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \rHandX, target: \amp, depth: 0.40), (source: \rHandY, target: \pitch, depth: 0.40), (source: \lHandY, target: \cutoff, depth: 0.50), (source: \lHandX, target: \res, depth: 0.40)], [(source: \rHandX, target: \amp, depth: 0.40), (source: \rHandY, target: \pitch, depth: 0.40), (source: \lHandY, target: \cutoff, depth: 0.50), (source: \lHandX, target: \res, depth: 0.40)], [(source: \rHandX, target: \amp, depth: 0.40), (source: \rHandY, target: \pitch, depth: 0.40), (source: \lHandY, target: \cutoff, depth: 0.50), (source: \lHandX, target: \res, depth: 0.40)], [(source: \rHandX, target: \amp, depth: 0.40), (source: \rHandY, target: \pitch, depth: 0.40), (source: \lHandY, target: \cutoff, depth: 0.50), (source: \lHandX, target: \res, depth: 0.40)], [(source: \bodyVitesse, target: \cutoff, depth: 0.40), (source: \limbSpan, target: \rev, depth: 0.40), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyY, target: \pitch, depth: 0.30), (source: \bodyVitesse, target: \amp, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \cutoff, depth: 0.50), (source: \bodyY, target: \pitch, depth: 0.30), (source: \limbSpan, target: \res, depth: 0.40), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \rHandX, target: \amp, depth: 0.40), (source: \rHandY, target: \pitch, depth: 0.40), (source: \lHandX, target: \res, depth: 0.40)], [(source: \danse, target: \rev, depth: 0.50), (source: \bodyVitesse, target: \amp, depth: 0.40)], [(source: \rHandX, target: \amp, depth: 0.40), (source: \lHandY, target: \cutoff, depth: 0.50), (source: \lHandX, target: \res, depth: 0.40)], [(source: \bodyVitesse, target: \cutoff, depth: 0.40), (source: \limbSpan, target: \rev, depth: 0.40), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \danse, target: \rev, depth: 0.50), (source: \bodyVitesse, target: \amp, depth: 0.40)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)] ], 'voicePoses': [ [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [] ], -'globalActions': [ \fill, \drop, \evolve, \breakdown ] +'globalActions': [ \fill, \drop, \evolve, \breakdown ], +'globalSettings': ( 'openThresh': 0.65, 'closeThresh': 0.3, 'transientBars': 1, 'breakdownKeep': [ \kick, \sub ] ) ) diff --git a/sound_algo/data_only/matrix_presets/techno_drive_outro.matrix b/sound_algo/data_only/matrix_presets/techno_drive_outro.matrix index a5a8871..495b370 100644 --- a/sound_algo/data_only/matrix_presets/techno_drive_outro.matrix +++ b/sound_algo/data_only/matrix_presets/techno_drive_outro.matrix @@ -50,5 +50,6 @@ ], 'voiceMods': [ [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \cutoff, depth: 0.40), (source: \bodyY, target: \pitch, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \res, depth: 0.40), (source: \bodyY, target: \pitch, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \rHandX, target: \amp, depth: 0.40), (source: \rHandY, target: \pitch, depth: 0.40), (source: \lHandY, target: \cutoff, depth: 0.50), (source: \lHandX, target: \res, depth: 0.40)], [(source: \rHandX, target: \amp, depth: 0.40), (source: \rHandY, target: \pitch, depth: 0.40), (source: \lHandY, target: \cutoff, depth: 0.50), (source: \lHandX, target: \res, depth: 0.40)], [(source: \rHandX, target: \amp, depth: 0.40), (source: \rHandY, target: \pitch, depth: 0.40), (source: \lHandY, target: \cutoff, depth: 0.50), (source: \lHandX, target: \res, depth: 0.40)], [(source: \rHandX, target: \amp, depth: 0.40), (source: \rHandY, target: \pitch, depth: 0.40), (source: \lHandY, target: \cutoff, depth: 0.50), (source: \lHandX, target: \res, depth: 0.40)], [(source: \bodyVitesse, target: \cutoff, depth: 0.40), (source: \limbSpan, target: \rev, depth: 0.40), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyY, target: \pitch, depth: 0.30), (source: \bodyVitesse, target: \amp, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \cutoff, depth: 0.50), (source: \bodyY, target: \pitch, depth: 0.30), (source: \limbSpan, target: \res, depth: 0.40), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \rHandX, target: \amp, depth: 0.40), (source: \rHandY, target: \pitch, depth: 0.40), (source: \lHandX, target: \res, depth: 0.40)], [(source: \danse, target: \rev, depth: 0.50), (source: \bodyVitesse, target: \amp, depth: 0.40)], [(source: \rHandX, target: \amp, depth: 0.40), (source: \lHandY, target: \cutoff, depth: 0.50), (source: \lHandX, target: \res, depth: 0.40)], [(source: \bodyVitesse, target: \cutoff, depth: 0.40), (source: \limbSpan, target: \rev, depth: 0.40), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \danse, target: \rev, depth: 0.50), (source: \bodyVitesse, target: \amp, depth: 0.40)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)] ], 'voicePoses': [ [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [] ], -'globalActions': [ \fill, \drop, \evolve, \breakdown ] +'globalActions': [ \fill, \drop, \evolve, \breakdown ], +'globalSettings': ( 'openThresh': 0.65, 'closeThresh': 0.3, 'transientBars': 1, 'breakdownKeep': [ \kick, \sub ] ) ) diff --git a/sound_algo/data_only/matrix_presets/test_global_actions.py b/sound_algo/data_only/matrix_presets/test_global_actions.py index bab20be..656b1fb 100644 --- a/sound_algo/data_only/matrix_presets/test_global_actions.py +++ b/sound_algo/data_only/matrix_presets/test_global_actions.py @@ -27,5 +27,12 @@ missing = [os.path.basename(f) for f in files if EXPECT not in open(f, encoding="utf-8").read()] check(not missing, "globalActions missing in: %s" % missing[:5]) +EXPECT_SET = ("'globalSettings': ( 'openThresh': 0.65, 'closeThresh': 0.3, " + "'transientBars': 1, 'breakdownKeep': [ \\kick, \\sub ] )") +check(EXPECT_SET in sample, "to_sc output missing globalSettings default") +missing_set = [os.path.basename(f) for f in files + if EXPECT_SET not in open(f, encoding="utf-8").read()] +check(not missing_set, "globalSettings missing in: %s" % missing_set[:5]) + print("GLOBALACT-PY PASS" if ok else "GLOBALACT-PY FAIL") sys.exit(0 if ok else 1) diff --git a/sound_algo/data_only/matrix_presets/trance_euphoria_intro.matrix b/sound_algo/data_only/matrix_presets/trance_euphoria_intro.matrix index f4de5bf..bcea842 100644 --- a/sound_algo/data_only/matrix_presets/trance_euphoria_intro.matrix +++ b/sound_algo/data_only/matrix_presets/trance_euphoria_intro.matrix @@ -50,5 +50,6 @@ ], 'voiceMods': [ [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \cutoff, depth: 0.40), (source: \bodyY, target: \pitch, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \res, depth: 0.40), (source: \bodyY, target: \pitch, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \rHandX, target: \amp, depth: 0.40), (source: \rHandY, target: \pitch, depth: 0.40), (source: \lHandY, target: \cutoff, depth: 0.50), (source: \lHandX, target: \res, depth: 0.40)], [(source: \rHandX, target: \amp, depth: 0.40), (source: \rHandY, target: \pitch, depth: 0.40), (source: \lHandY, target: \cutoff, depth: 0.50), (source: \lHandX, target: \res, depth: 0.40)], [(source: \rHandX, target: \amp, depth: 0.40), (source: \rHandY, target: \pitch, depth: 0.40), (source: \lHandY, target: \cutoff, depth: 0.50), (source: \lHandX, target: \res, depth: 0.40)], [(source: \rHandX, target: \amp, depth: 0.40), (source: \rHandY, target: \pitch, depth: 0.40), (source: \lHandY, target: \cutoff, depth: 0.50), (source: \lHandX, target: \res, depth: 0.40)], [(source: \bodyVitesse, target: \cutoff, depth: 0.40), (source: \limbSpan, target: \rev, depth: 0.40), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyY, target: \pitch, depth: 0.30), (source: \bodyVitesse, target: \amp, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \cutoff, depth: 0.50), (source: \bodyY, target: \pitch, depth: 0.30), (source: \limbSpan, target: \res, depth: 0.40), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \rHandX, target: \amp, depth: 0.40), (source: \rHandY, target: \pitch, depth: 0.40), (source: \lHandX, target: \res, depth: 0.40)], [(source: \danse, target: \rev, depth: 0.50), (source: \bodyVitesse, target: \amp, depth: 0.40)], [(source: \rHandX, target: \amp, depth: 0.40), (source: \lHandY, target: \cutoff, depth: 0.50), (source: \lHandX, target: \res, depth: 0.40)], [(source: \bodyVitesse, target: \cutoff, depth: 0.40), (source: \limbSpan, target: \rev, depth: 0.40), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \danse, target: \rev, depth: 0.50), (source: \bodyVitesse, target: \amp, depth: 0.40)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)] ], 'voicePoses': [ [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [] ], -'globalActions': [ \fill, \drop, \evolve, \breakdown ] +'globalActions': [ \fill, \drop, \evolve, \breakdown ], +'globalSettings': ( 'openThresh': 0.65, 'closeThresh': 0.3, 'transientBars': 1, 'breakdownKeep': [ \kick, \sub ] ) ) diff --git a/sound_algo/data_only/matrix_presets/trance_euphoria_live.matrix b/sound_algo/data_only/matrix_presets/trance_euphoria_live.matrix index 89b067e..02821de 100644 --- a/sound_algo/data_only/matrix_presets/trance_euphoria_live.matrix +++ b/sound_algo/data_only/matrix_presets/trance_euphoria_live.matrix @@ -50,5 +50,6 @@ ], 'voiceMods': [ [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \cutoff, depth: 0.40), (source: \bodyY, target: \pitch, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \res, depth: 0.40), (source: \bodyY, target: \pitch, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \rHandX, target: \amp, depth: 0.40), (source: \rHandY, target: \pitch, depth: 0.40), (source: \lHandY, target: \cutoff, depth: 0.50), (source: \lHandX, target: \res, depth: 0.40)], [(source: \rHandX, target: \amp, depth: 0.40), (source: \rHandY, target: \pitch, depth: 0.40), (source: \lHandY, target: \cutoff, depth: 0.50), (source: \lHandX, target: \res, depth: 0.40)], [(source: \rHandX, target: \amp, depth: 0.40), (source: \rHandY, target: \pitch, depth: 0.40), (source: \lHandY, target: \cutoff, depth: 0.50), (source: \lHandX, target: \res, depth: 0.40)], [(source: \rHandX, target: \amp, depth: 0.40), (source: \rHandY, target: \pitch, depth: 0.40), (source: \lHandY, target: \cutoff, depth: 0.50), (source: \lHandX, target: \res, depth: 0.40)], [(source: \bodyVitesse, target: \cutoff, depth: 0.40), (source: \limbSpan, target: \rev, depth: 0.40), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyY, target: \pitch, depth: 0.30), (source: \bodyVitesse, target: \amp, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \cutoff, depth: 0.50), (source: \bodyY, target: \pitch, depth: 0.30), (source: \limbSpan, target: \res, depth: 0.40), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \rHandX, target: \amp, depth: 0.40), (source: \rHandY, target: \pitch, depth: 0.40), (source: \lHandX, target: \res, depth: 0.40)], [(source: \danse, target: \rev, depth: 0.50), (source: \bodyVitesse, target: \amp, depth: 0.40)], [(source: \rHandX, target: \amp, depth: 0.40), (source: \lHandY, target: \cutoff, depth: 0.50), (source: \lHandX, target: \res, depth: 0.40)], [(source: \bodyVitesse, target: \cutoff, depth: 0.40), (source: \limbSpan, target: \rev, depth: 0.40), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \danse, target: \rev, depth: 0.50), (source: \bodyVitesse, target: \amp, depth: 0.40)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)] ], 'voicePoses': [ [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [] ], -'globalActions': [ \fill, \drop, \evolve, \breakdown ] +'globalActions': [ \fill, \drop, \evolve, \breakdown ], +'globalSettings': ( 'openThresh': 0.65, 'closeThresh': 0.3, 'transientBars': 1, 'breakdownKeep': [ \kick, \sub ] ) ) diff --git a/sound_algo/data_only/matrix_presets/trance_euphoria_outro.matrix b/sound_algo/data_only/matrix_presets/trance_euphoria_outro.matrix index 1db9cdb..5f04259 100644 --- a/sound_algo/data_only/matrix_presets/trance_euphoria_outro.matrix +++ b/sound_algo/data_only/matrix_presets/trance_euphoria_outro.matrix @@ -50,5 +50,6 @@ ], 'voiceMods': [ [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \cutoff, depth: 0.40), (source: \bodyY, target: \pitch, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \res, depth: 0.40), (source: \bodyY, target: \pitch, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \rHandX, target: \amp, depth: 0.40), (source: \rHandY, target: \pitch, depth: 0.40), (source: \lHandY, target: \cutoff, depth: 0.50), (source: \lHandX, target: \res, depth: 0.40)], [(source: \rHandX, target: \amp, depth: 0.40), (source: \rHandY, target: \pitch, depth: 0.40), (source: \lHandY, target: \cutoff, depth: 0.50), (source: \lHandX, target: \res, depth: 0.40)], [(source: \rHandX, target: \amp, depth: 0.40), (source: \rHandY, target: \pitch, depth: 0.40), (source: \lHandY, target: \cutoff, depth: 0.50), (source: \lHandX, target: \res, depth: 0.40)], [(source: \rHandX, target: \amp, depth: 0.40), (source: \rHandY, target: \pitch, depth: 0.40), (source: \lHandY, target: \cutoff, depth: 0.50), (source: \lHandX, target: \res, depth: 0.40)], [(source: \bodyVitesse, target: \cutoff, depth: 0.40), (source: \limbSpan, target: \rev, depth: 0.40), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyY, target: \pitch, depth: 0.30), (source: \bodyVitesse, target: \amp, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \cutoff, depth: 0.50), (source: \bodyY, target: \pitch, depth: 0.30), (source: \limbSpan, target: \res, depth: 0.40), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \rHandX, target: \amp, depth: 0.40), (source: \rHandY, target: \pitch, depth: 0.40), (source: \lHandX, target: \res, depth: 0.40)], [(source: \danse, target: \rev, depth: 0.50), (source: \bodyVitesse, target: \amp, depth: 0.40)], [(source: \rHandX, target: \amp, depth: 0.40), (source: \lHandY, target: \cutoff, depth: 0.50), (source: \lHandX, target: \res, depth: 0.40)], [(source: \bodyVitesse, target: \cutoff, depth: 0.40), (source: \limbSpan, target: \rev, depth: 0.40), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \danse, target: \rev, depth: 0.50), (source: \bodyVitesse, target: \amp, depth: 0.40)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)] ], 'voicePoses': [ [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [] ], -'globalActions': [ \fill, \drop, \evolve, \breakdown ] +'globalActions': [ \fill, \drop, \evolve, \breakdown ], +'globalSettings': ( 'openThresh': 0.65, 'closeThresh': 0.3, 'transientBars': 1, 'breakdownKeep': [ \kick, \sub ] ) ) diff --git a/sound_algo/data_only/matrix_presets/tribal_perc_intro.matrix b/sound_algo/data_only/matrix_presets/tribal_perc_intro.matrix index 81629ce..9b81fa5 100644 --- a/sound_algo/data_only/matrix_presets/tribal_perc_intro.matrix +++ b/sound_algo/data_only/matrix_presets/tribal_perc_intro.matrix @@ -50,5 +50,6 @@ ], 'voiceMods': [ [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \cutoff, depth: 0.40), (source: \bodyY, target: \pitch, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \res, depth: 0.40), (source: \bodyY, target: \pitch, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \rHandX, target: \amp, depth: 0.40), (source: \rHandY, target: \pitch, depth: 0.40), (source: \lHandY, target: \cutoff, depth: 0.50), (source: \lHandX, target: \res, depth: 0.40)], [(source: \rHandX, target: \amp, depth: 0.40), (source: \rHandY, target: \pitch, depth: 0.40), (source: \lHandY, target: \cutoff, depth: 0.50), (source: \lHandX, target: \res, depth: 0.40)], [(source: \rHandX, target: \amp, depth: 0.40), (source: \rHandY, target: \pitch, depth: 0.40), (source: \lHandY, target: \cutoff, depth: 0.50), (source: \lHandX, target: \res, depth: 0.40)], [(source: \rHandX, target: \amp, depth: 0.40), (source: \rHandY, target: \pitch, depth: 0.40), (source: \lHandY, target: \cutoff, depth: 0.50), (source: \lHandX, target: \res, depth: 0.40)], [(source: \bodyVitesse, target: \cutoff, depth: 0.40), (source: \limbSpan, target: \rev, depth: 0.40), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyY, target: \pitch, depth: 0.30), (source: \bodyVitesse, target: \amp, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \cutoff, depth: 0.50), (source: \bodyY, target: \pitch, depth: 0.30), (source: \limbSpan, target: \res, depth: 0.40), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \rHandX, target: \amp, depth: 0.40), (source: \rHandY, target: \pitch, depth: 0.40), (source: \lHandX, target: \res, depth: 0.40)], [(source: \danse, target: \rev, depth: 0.50), (source: \bodyVitesse, target: \amp, depth: 0.40)], [(source: \rHandX, target: \amp, depth: 0.40), (source: \lHandY, target: \cutoff, depth: 0.50), (source: \lHandX, target: \res, depth: 0.40)], [(source: \bodyVitesse, target: \cutoff, depth: 0.40), (source: \limbSpan, target: \rev, depth: 0.40), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \danse, target: \rev, depth: 0.50), (source: \bodyVitesse, target: \amp, depth: 0.40)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)] ], 'voicePoses': [ [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [] ], -'globalActions': [ \fill, \drop, \evolve, \breakdown ] +'globalActions': [ \fill, \drop, \evolve, \breakdown ], +'globalSettings': ( 'openThresh': 0.65, 'closeThresh': 0.3, 'transientBars': 1, 'breakdownKeep': [ \kick, \sub ] ) ) diff --git a/sound_algo/data_only/matrix_presets/tribal_perc_live.matrix b/sound_algo/data_only/matrix_presets/tribal_perc_live.matrix index c70843b..d1e25e2 100644 --- a/sound_algo/data_only/matrix_presets/tribal_perc_live.matrix +++ b/sound_algo/data_only/matrix_presets/tribal_perc_live.matrix @@ -50,5 +50,6 @@ ], 'voiceMods': [ [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \cutoff, depth: 0.40), (source: \bodyY, target: \pitch, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \res, depth: 0.40), (source: \bodyY, target: \pitch, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \rHandX, target: \amp, depth: 0.40), (source: \rHandY, target: \pitch, depth: 0.40), (source: \lHandY, target: \cutoff, depth: 0.50), (source: \lHandX, target: \res, depth: 0.40)], [(source: \rHandX, target: \amp, depth: 0.40), (source: \rHandY, target: \pitch, depth: 0.40), (source: \lHandY, target: \cutoff, depth: 0.50), (source: \lHandX, target: \res, depth: 0.40)], [(source: \rHandX, target: \amp, depth: 0.40), (source: \rHandY, target: \pitch, depth: 0.40), (source: \lHandY, target: \cutoff, depth: 0.50), (source: \lHandX, target: \res, depth: 0.40)], [(source: \rHandX, target: \amp, depth: 0.40), (source: \rHandY, target: \pitch, depth: 0.40), (source: \lHandY, target: \cutoff, depth: 0.50), (source: \lHandX, target: \res, depth: 0.40)], [(source: \bodyVitesse, target: \cutoff, depth: 0.40), (source: \limbSpan, target: \rev, depth: 0.40), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyY, target: \pitch, depth: 0.30), (source: \bodyVitesse, target: \amp, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \cutoff, depth: 0.50), (source: \bodyY, target: \pitch, depth: 0.30), (source: \limbSpan, target: \res, depth: 0.40), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \rHandX, target: \amp, depth: 0.40), (source: \rHandY, target: \pitch, depth: 0.40), (source: \lHandX, target: \res, depth: 0.40)], [(source: \danse, target: \rev, depth: 0.50), (source: \bodyVitesse, target: \amp, depth: 0.40)], [(source: \rHandX, target: \amp, depth: 0.40), (source: \lHandY, target: \cutoff, depth: 0.50), (source: \lHandX, target: \res, depth: 0.40)], [(source: \bodyVitesse, target: \cutoff, depth: 0.40), (source: \limbSpan, target: \rev, depth: 0.40), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \danse, target: \rev, depth: 0.50), (source: \bodyVitesse, target: \amp, depth: 0.40)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)] ], 'voicePoses': [ [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [] ], -'globalActions': [ \fill, \drop, \evolve, \breakdown ] +'globalActions': [ \fill, \drop, \evolve, \breakdown ], +'globalSettings': ( 'openThresh': 0.65, 'closeThresh': 0.3, 'transientBars': 1, 'breakdownKeep': [ \kick, \sub ] ) ) diff --git a/sound_algo/data_only/matrix_presets/tribal_perc_outro.matrix b/sound_algo/data_only/matrix_presets/tribal_perc_outro.matrix index 78b4bdf..12d9d3f 100644 --- a/sound_algo/data_only/matrix_presets/tribal_perc_outro.matrix +++ b/sound_algo/data_only/matrix_presets/tribal_perc_outro.matrix @@ -50,5 +50,6 @@ ], 'voiceMods': [ [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \cutoff, depth: 0.40), (source: \bodyY, target: \pitch, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \res, depth: 0.40), (source: \bodyY, target: \pitch, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \rHandX, target: \amp, depth: 0.40), (source: \rHandY, target: \pitch, depth: 0.40), (source: \lHandY, target: \cutoff, depth: 0.50), (source: \lHandX, target: \res, depth: 0.40)], [(source: \rHandX, target: \amp, depth: 0.40), (source: \rHandY, target: \pitch, depth: 0.40), (source: \lHandY, target: \cutoff, depth: 0.50), (source: \lHandX, target: \res, depth: 0.40)], [(source: \rHandX, target: \amp, depth: 0.40), (source: \rHandY, target: \pitch, depth: 0.40), (source: \lHandY, target: \cutoff, depth: 0.50), (source: \lHandX, target: \res, depth: 0.40)], [(source: \rHandX, target: \amp, depth: 0.40), (source: \rHandY, target: \pitch, depth: 0.40), (source: \lHandY, target: \cutoff, depth: 0.50), (source: \lHandX, target: \res, depth: 0.40)], [(source: \bodyVitesse, target: \cutoff, depth: 0.40), (source: \limbSpan, target: \rev, depth: 0.40), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyY, target: \pitch, depth: 0.30), (source: \bodyVitesse, target: \amp, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \cutoff, depth: 0.50), (source: \bodyY, target: \pitch, depth: 0.30), (source: \limbSpan, target: \res, depth: 0.40), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \rHandX, target: \amp, depth: 0.40), (source: \rHandY, target: \pitch, depth: 0.40), (source: \lHandX, target: \res, depth: 0.40)], [(source: \danse, target: \rev, depth: 0.50), (source: \bodyVitesse, target: \amp, depth: 0.40)], [(source: \rHandX, target: \amp, depth: 0.40), (source: \lHandY, target: \cutoff, depth: 0.50), (source: \lHandX, target: \res, depth: 0.40)], [(source: \bodyVitesse, target: \cutoff, depth: 0.40), (source: \limbSpan, target: \rev, depth: 0.40), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \danse, target: \rev, depth: 0.50), (source: \bodyVitesse, target: \amp, depth: 0.40)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)], [(source: \bodyVitesse, target: \rev, depth: 0.30), (source: \bodyX, target: \pan, depth: 0.30)] ], 'voicePoses': [ [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [] ], -'globalActions': [ \fill, \drop, \evolve, \breakdown ] +'globalActions': [ \fill, \drop, \evolve, \breakdown ], +'globalSettings': ( 'openThresh': 0.65, 'closeThresh': 0.3, 'transientBars': 1, 'breakdownKeep': [ \kick, \sub ] ) )