├── .gitattributes ├── .gitignore ├── CODE_OF_CONDUCT.md ├── Examples ├── GIMLeT_example.polydelay.maxpat ├── GIMLeT_example_BioMuse4_1ANN.maxpat ├── GIMLeT_example_MIDI_CC.maxpat ├── GIMLeT_example_MIDI_CC_4x.maxpat ├── GIMLeT_example_MUGIC_1ANN.maxpat ├── GIMLeT_example_MiM_1ANN.maxpat ├── GIMLeT_example_PoseNet_temporalAnalysis.maxpat ├── GIMLeT_example_RNBO_rpi.maxpat ├── GIMLeT_example_Ring_1ANN.maxpat ├── GIMLeT_example_TouchOSC_1ANN.maxpat ├── GIMLeT_example_TouchOSC_2ANN.maxpat ├── GIMLeT_example_multi_ANN.maxpat ├── GIMLeT_example_presets.maxpat ├── GIMLeT_temporal_example_settings.json ├── bol_examples │ ├── BOL_2bodies_to_SPRAWL_PD.maxpat │ ├── BOL_2bodies_to_SPRAWL_PD_XYZ_RPY.maxpat │ ├── GIMLeT_example_multi_ANN_BOL.maxpat │ ├── MiM_to_SPRAWL.maxpat │ ├── positionToOSC.pd │ ├── scale.pd │ ├── sprawl_control_position_mocap.pd │ ├── sprawl_control_position_mocap_2sources.pd │ ├── sprawl_control_position_mocap_2sources_offset.pd │ └── sprawl_control_position_mocap_4sources.pd ├── other │ ├── onset_detection.maxpat │ └── plotSonify.maxpat ├── preset-example.json └── q1synth_model.json ├── LICENSE ├── Media ├── E-Snare 14.wav ├── Gimlet_logo_solo.svg ├── LMA_table.png ├── TR-909Kick.wav ├── bass.wav ├── cello.wav ├── cymbal.wav ├── electric_piano.wav └── soundbufferV2_voice_field_drums_strings_whisper_glass_6sec_mono.wav ├── README.md ├── TouchOSC └── GIMLeT_TouchOSC_remote.touchosc ├── WIP └── gimlet.tropical.maxpat ├── externals ├── cm.gausscloud~.mxe ├── cm.gausscloud~.mxe64 ├── cm.gausscloud~.mxo │ └── Contents │ │ ├── Info.plist │ │ ├── MacOS │ │ └── cm.gausscloud~ │ │ ├── PkgInfo │ │ └── Resources │ │ └── maxmspsdk.xcconfig ├── gvf.mxo │ └── Contents │ │ ├── Info.plist │ │ ├── MacOS │ │ └── gvf │ │ └── PkgInfo ├── rapidmax.mxe64 └── rapidmax.mxo │ └── Contents │ ├── Info.plist │ ├── MacOS │ └── rapidmax │ ├── PkgInfo │ └── Resources │ └── emscripten │ ├── classificationEmbindings.h │ ├── knnEmbindings.h │ ├── modelSetEmbindings.h │ ├── nnEmbindings.h │ ├── rapidMix.js │ ├── rapidStreamEmbindings.h │ └── regressionEmbindings.h ├── extras └── GIMLeT examples.maxpat ├── icon.png ├── license.md ├── long_description.md ├── package-info.json ├── patchers ├── GIMLeT.CC.maxpat ├── GIMLeT.LMA.maxpat ├── GIMLeT.arduino.Nano33IoT.maxpat ├── GIMLeT.arduino.maxpat ├── GIMLeT.gestlooper.maxpat ├── GIMLeT.grain.maxpat ├── GIMLeT.mangle.maxpat ├── GIMLeT.midivoice.maxpat ├── GIMLeT.ml.ann.maxpat ├── GIMLeT.ml.temporal.maxpat ├── GIMLeT.polydelay.maxpat ├── GIMLeT.wearcompboard.maxpat ├── GIMLeT.xypad.maxpat ├── abstractions │ ├── GIMLeT │ │ ├── autoscale01.maxpat │ │ ├── fv.ampmod.maxpat │ │ ├── fv.rescale01_au.maxpat │ │ ├── fv.streamonsetsV2.maxpat │ │ ├── generateFakeData.maxpat │ │ ├── gestureSelection.maxpat │ │ ├── gvf2OSC.maxpat │ │ ├── multisliderRange.maxpat │ │ ├── populateCellBlock.maxpat │ │ ├── routeNames.maxpat │ │ ├── simpleFM~.maxpat │ │ └── viewTrainingData.maxpat │ ├── biomuseEMGchV2.maxpat │ └── odot │ │ └── o.speedlim.maxpat └── osc_xy_pad.maxpat ├── resources └── GIMLeT_workshop_slides.pdf └── snippets ├── GIMLeT.CC.maxsnip ├── GIMLeT.gestlooper.maxsnip ├── GIMLeT.grain.maxsnip ├── GIMLeT.mangle.maxsnip ├── GIMLeT.ml.ann.maxsnip ├── GIMLeT.ml.temporal.maxsnip └── GIMLeT.polydelay.maxsnip /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/federicoVisi/GIMLeT/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | 2 | .DS_Store 3 | Archive 4 | */develop/* 5 | GIMLeT_proj/* 6 | -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/federicoVisi/GIMLeT/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /Examples/GIMLeT_example.polydelay.maxpat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/federicoVisi/GIMLeT/HEAD/Examples/GIMLeT_example.polydelay.maxpat -------------------------------------------------------------------------------- /Examples/GIMLeT_example_BioMuse4_1ANN.maxpat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/federicoVisi/GIMLeT/HEAD/Examples/GIMLeT_example_BioMuse4_1ANN.maxpat -------------------------------------------------------------------------------- /Examples/GIMLeT_example_MIDI_CC.maxpat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/federicoVisi/GIMLeT/HEAD/Examples/GIMLeT_example_MIDI_CC.maxpat -------------------------------------------------------------------------------- /Examples/GIMLeT_example_MIDI_CC_4x.maxpat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/federicoVisi/GIMLeT/HEAD/Examples/GIMLeT_example_MIDI_CC_4x.maxpat -------------------------------------------------------------------------------- /Examples/GIMLeT_example_MUGIC_1ANN.maxpat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/federicoVisi/GIMLeT/HEAD/Examples/GIMLeT_example_MUGIC_1ANN.maxpat -------------------------------------------------------------------------------- /Examples/GIMLeT_example_MiM_1ANN.maxpat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/federicoVisi/GIMLeT/HEAD/Examples/GIMLeT_example_MiM_1ANN.maxpat -------------------------------------------------------------------------------- /Examples/GIMLeT_example_PoseNet_temporalAnalysis.maxpat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/federicoVisi/GIMLeT/HEAD/Examples/GIMLeT_example_PoseNet_temporalAnalysis.maxpat -------------------------------------------------------------------------------- /Examples/GIMLeT_example_RNBO_rpi.maxpat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/federicoVisi/GIMLeT/HEAD/Examples/GIMLeT_example_RNBO_rpi.maxpat -------------------------------------------------------------------------------- /Examples/GIMLeT_example_Ring_1ANN.maxpat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/federicoVisi/GIMLeT/HEAD/Examples/GIMLeT_example_Ring_1ANN.maxpat -------------------------------------------------------------------------------- /Examples/GIMLeT_example_TouchOSC_1ANN.maxpat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/federicoVisi/GIMLeT/HEAD/Examples/GIMLeT_example_TouchOSC_1ANN.maxpat -------------------------------------------------------------------------------- /Examples/GIMLeT_example_TouchOSC_2ANN.maxpat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/federicoVisi/GIMLeT/HEAD/Examples/GIMLeT_example_TouchOSC_2ANN.maxpat -------------------------------------------------------------------------------- /Examples/GIMLeT_example_multi_ANN.maxpat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/federicoVisi/GIMLeT/HEAD/Examples/GIMLeT_example_multi_ANN.maxpat -------------------------------------------------------------------------------- /Examples/GIMLeT_example_presets.maxpat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/federicoVisi/GIMLeT/HEAD/Examples/GIMLeT_example_presets.maxpat -------------------------------------------------------------------------------- /Examples/GIMLeT_temporal_example_settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/federicoVisi/GIMLeT/HEAD/Examples/GIMLeT_temporal_example_settings.json -------------------------------------------------------------------------------- /Examples/bol_examples/BOL_2bodies_to_SPRAWL_PD.maxpat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/federicoVisi/GIMLeT/HEAD/Examples/bol_examples/BOL_2bodies_to_SPRAWL_PD.maxpat -------------------------------------------------------------------------------- /Examples/bol_examples/BOL_2bodies_to_SPRAWL_PD_XYZ_RPY.maxpat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/federicoVisi/GIMLeT/HEAD/Examples/bol_examples/BOL_2bodies_to_SPRAWL_PD_XYZ_RPY.maxpat -------------------------------------------------------------------------------- /Examples/bol_examples/GIMLeT_example_multi_ANN_BOL.maxpat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/federicoVisi/GIMLeT/HEAD/Examples/bol_examples/GIMLeT_example_multi_ANN_BOL.maxpat -------------------------------------------------------------------------------- /Examples/bol_examples/MiM_to_SPRAWL.maxpat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/federicoVisi/GIMLeT/HEAD/Examples/bol_examples/MiM_to_SPRAWL.maxpat -------------------------------------------------------------------------------- /Examples/bol_examples/positionToOSC.pd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/federicoVisi/GIMLeT/HEAD/Examples/bol_examples/positionToOSC.pd -------------------------------------------------------------------------------- /Examples/bol_examples/scale.pd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/federicoVisi/GIMLeT/HEAD/Examples/bol_examples/scale.pd -------------------------------------------------------------------------------- /Examples/bol_examples/sprawl_control_position_mocap.pd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/federicoVisi/GIMLeT/HEAD/Examples/bol_examples/sprawl_control_position_mocap.pd -------------------------------------------------------------------------------- /Examples/bol_examples/sprawl_control_position_mocap_2sources.pd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/federicoVisi/GIMLeT/HEAD/Examples/bol_examples/sprawl_control_position_mocap_2sources.pd -------------------------------------------------------------------------------- /Examples/bol_examples/sprawl_control_position_mocap_2sources_offset.pd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/federicoVisi/GIMLeT/HEAD/Examples/bol_examples/sprawl_control_position_mocap_2sources_offset.pd -------------------------------------------------------------------------------- /Examples/bol_examples/sprawl_control_position_mocap_4sources.pd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/federicoVisi/GIMLeT/HEAD/Examples/bol_examples/sprawl_control_position_mocap_4sources.pd -------------------------------------------------------------------------------- /Examples/other/onset_detection.maxpat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/federicoVisi/GIMLeT/HEAD/Examples/other/onset_detection.maxpat -------------------------------------------------------------------------------- /Examples/other/plotSonify.maxpat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/federicoVisi/GIMLeT/HEAD/Examples/other/plotSonify.maxpat -------------------------------------------------------------------------------- /Examples/preset-example.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/federicoVisi/GIMLeT/HEAD/Examples/preset-example.json -------------------------------------------------------------------------------- /Examples/q1synth_model.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/federicoVisi/GIMLeT/HEAD/Examples/q1synth_model.json -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/federicoVisi/GIMLeT/HEAD/LICENSE -------------------------------------------------------------------------------- /Media/E-Snare 14.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/federicoVisi/GIMLeT/HEAD/Media/E-Snare 14.wav -------------------------------------------------------------------------------- /Media/Gimlet_logo_solo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/federicoVisi/GIMLeT/HEAD/Media/Gimlet_logo_solo.svg -------------------------------------------------------------------------------- /Media/LMA_table.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/federicoVisi/GIMLeT/HEAD/Media/LMA_table.png -------------------------------------------------------------------------------- /Media/TR-909Kick.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/federicoVisi/GIMLeT/HEAD/Media/TR-909Kick.wav -------------------------------------------------------------------------------- /Media/bass.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/federicoVisi/GIMLeT/HEAD/Media/bass.wav -------------------------------------------------------------------------------- /Media/cello.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/federicoVisi/GIMLeT/HEAD/Media/cello.wav -------------------------------------------------------------------------------- /Media/cymbal.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/federicoVisi/GIMLeT/HEAD/Media/cymbal.wav -------------------------------------------------------------------------------- /Media/electric_piano.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/federicoVisi/GIMLeT/HEAD/Media/electric_piano.wav -------------------------------------------------------------------------------- /Media/soundbufferV2_voice_field_drums_strings_whisper_glass_6sec_mono.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/federicoVisi/GIMLeT/HEAD/Media/soundbufferV2_voice_field_drums_strings_whisper_glass_6sec_mono.wav -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/federicoVisi/GIMLeT/HEAD/README.md -------------------------------------------------------------------------------- /TouchOSC/GIMLeT_TouchOSC_remote.touchosc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/federicoVisi/GIMLeT/HEAD/TouchOSC/GIMLeT_TouchOSC_remote.touchosc -------------------------------------------------------------------------------- /WIP/gimlet.tropical.maxpat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/federicoVisi/GIMLeT/HEAD/WIP/gimlet.tropical.maxpat -------------------------------------------------------------------------------- /externals/cm.gausscloud~.mxe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/federicoVisi/GIMLeT/HEAD/externals/cm.gausscloud~.mxe -------------------------------------------------------------------------------- /externals/cm.gausscloud~.mxe64: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/federicoVisi/GIMLeT/HEAD/externals/cm.gausscloud~.mxe64 -------------------------------------------------------------------------------- /externals/cm.gausscloud~.mxo/Contents/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/federicoVisi/GIMLeT/HEAD/externals/cm.gausscloud~.mxo/Contents/Info.plist -------------------------------------------------------------------------------- /externals/cm.gausscloud~.mxo/Contents/MacOS/cm.gausscloud~: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/federicoVisi/GIMLeT/HEAD/externals/cm.gausscloud~.mxo/Contents/MacOS/cm.gausscloud~ -------------------------------------------------------------------------------- /externals/cm.gausscloud~.mxo/Contents/PkgInfo: -------------------------------------------------------------------------------- 1 | iLaXmax2 -------------------------------------------------------------------------------- /externals/cm.gausscloud~.mxo/Contents/Resources/maxmspsdk.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/federicoVisi/GIMLeT/HEAD/externals/cm.gausscloud~.mxo/Contents/Resources/maxmspsdk.xcconfig -------------------------------------------------------------------------------- /externals/gvf.mxo/Contents/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/federicoVisi/GIMLeT/HEAD/externals/gvf.mxo/Contents/Info.plist -------------------------------------------------------------------------------- /externals/gvf.mxo/Contents/MacOS/gvf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/federicoVisi/GIMLeT/HEAD/externals/gvf.mxo/Contents/MacOS/gvf -------------------------------------------------------------------------------- /externals/gvf.mxo/Contents/PkgInfo: -------------------------------------------------------------------------------- 1 | iLaXmax2 -------------------------------------------------------------------------------- /externals/rapidmax.mxe64: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/federicoVisi/GIMLeT/HEAD/externals/rapidmax.mxe64 -------------------------------------------------------------------------------- /externals/rapidmax.mxo/Contents/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/federicoVisi/GIMLeT/HEAD/externals/rapidmax.mxo/Contents/Info.plist -------------------------------------------------------------------------------- /externals/rapidmax.mxo/Contents/MacOS/rapidmax: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/federicoVisi/GIMLeT/HEAD/externals/rapidmax.mxo/Contents/MacOS/rapidmax -------------------------------------------------------------------------------- /externals/rapidmax.mxo/Contents/PkgInfo: -------------------------------------------------------------------------------- 1 | iLaXmax2 -------------------------------------------------------------------------------- /externals/rapidmax.mxo/Contents/Resources/emscripten/classificationEmbindings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/federicoVisi/GIMLeT/HEAD/externals/rapidmax.mxo/Contents/Resources/emscripten/classificationEmbindings.h -------------------------------------------------------------------------------- /externals/rapidmax.mxo/Contents/Resources/emscripten/knnEmbindings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/federicoVisi/GIMLeT/HEAD/externals/rapidmax.mxo/Contents/Resources/emscripten/knnEmbindings.h -------------------------------------------------------------------------------- /externals/rapidmax.mxo/Contents/Resources/emscripten/modelSetEmbindings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/federicoVisi/GIMLeT/HEAD/externals/rapidmax.mxo/Contents/Resources/emscripten/modelSetEmbindings.h -------------------------------------------------------------------------------- /externals/rapidmax.mxo/Contents/Resources/emscripten/nnEmbindings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/federicoVisi/GIMLeT/HEAD/externals/rapidmax.mxo/Contents/Resources/emscripten/nnEmbindings.h -------------------------------------------------------------------------------- /externals/rapidmax.mxo/Contents/Resources/emscripten/rapidMix.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/federicoVisi/GIMLeT/HEAD/externals/rapidmax.mxo/Contents/Resources/emscripten/rapidMix.js -------------------------------------------------------------------------------- /externals/rapidmax.mxo/Contents/Resources/emscripten/rapidStreamEmbindings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/federicoVisi/GIMLeT/HEAD/externals/rapidmax.mxo/Contents/Resources/emscripten/rapidStreamEmbindings.h -------------------------------------------------------------------------------- /externals/rapidmax.mxo/Contents/Resources/emscripten/regressionEmbindings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/federicoVisi/GIMLeT/HEAD/externals/rapidmax.mxo/Contents/Resources/emscripten/regressionEmbindings.h -------------------------------------------------------------------------------- /extras/GIMLeT examples.maxpat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/federicoVisi/GIMLeT/HEAD/extras/GIMLeT examples.maxpat -------------------------------------------------------------------------------- /icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/federicoVisi/GIMLeT/HEAD/icon.png -------------------------------------------------------------------------------- /license.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/federicoVisi/GIMLeT/HEAD/license.md -------------------------------------------------------------------------------- /long_description.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/federicoVisi/GIMLeT/HEAD/long_description.md -------------------------------------------------------------------------------- /package-info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/federicoVisi/GIMLeT/HEAD/package-info.json -------------------------------------------------------------------------------- /patchers/GIMLeT.CC.maxpat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/federicoVisi/GIMLeT/HEAD/patchers/GIMLeT.CC.maxpat -------------------------------------------------------------------------------- /patchers/GIMLeT.LMA.maxpat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/federicoVisi/GIMLeT/HEAD/patchers/GIMLeT.LMA.maxpat -------------------------------------------------------------------------------- /patchers/GIMLeT.arduino.Nano33IoT.maxpat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/federicoVisi/GIMLeT/HEAD/patchers/GIMLeT.arduino.Nano33IoT.maxpat -------------------------------------------------------------------------------- /patchers/GIMLeT.arduino.maxpat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/federicoVisi/GIMLeT/HEAD/patchers/GIMLeT.arduino.maxpat -------------------------------------------------------------------------------- /patchers/GIMLeT.gestlooper.maxpat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/federicoVisi/GIMLeT/HEAD/patchers/GIMLeT.gestlooper.maxpat -------------------------------------------------------------------------------- /patchers/GIMLeT.grain.maxpat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/federicoVisi/GIMLeT/HEAD/patchers/GIMLeT.grain.maxpat -------------------------------------------------------------------------------- /patchers/GIMLeT.mangle.maxpat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/federicoVisi/GIMLeT/HEAD/patchers/GIMLeT.mangle.maxpat -------------------------------------------------------------------------------- /patchers/GIMLeT.midivoice.maxpat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/federicoVisi/GIMLeT/HEAD/patchers/GIMLeT.midivoice.maxpat -------------------------------------------------------------------------------- /patchers/GIMLeT.ml.ann.maxpat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/federicoVisi/GIMLeT/HEAD/patchers/GIMLeT.ml.ann.maxpat -------------------------------------------------------------------------------- /patchers/GIMLeT.ml.temporal.maxpat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/federicoVisi/GIMLeT/HEAD/patchers/GIMLeT.ml.temporal.maxpat -------------------------------------------------------------------------------- /patchers/GIMLeT.polydelay.maxpat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/federicoVisi/GIMLeT/HEAD/patchers/GIMLeT.polydelay.maxpat -------------------------------------------------------------------------------- /patchers/GIMLeT.wearcompboard.maxpat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/federicoVisi/GIMLeT/HEAD/patchers/GIMLeT.wearcompboard.maxpat -------------------------------------------------------------------------------- /patchers/GIMLeT.xypad.maxpat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/federicoVisi/GIMLeT/HEAD/patchers/GIMLeT.xypad.maxpat -------------------------------------------------------------------------------- /patchers/abstractions/GIMLeT/autoscale01.maxpat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/federicoVisi/GIMLeT/HEAD/patchers/abstractions/GIMLeT/autoscale01.maxpat -------------------------------------------------------------------------------- /patchers/abstractions/GIMLeT/fv.ampmod.maxpat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/federicoVisi/GIMLeT/HEAD/patchers/abstractions/GIMLeT/fv.ampmod.maxpat -------------------------------------------------------------------------------- /patchers/abstractions/GIMLeT/fv.rescale01_au.maxpat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/federicoVisi/GIMLeT/HEAD/patchers/abstractions/GIMLeT/fv.rescale01_au.maxpat -------------------------------------------------------------------------------- /patchers/abstractions/GIMLeT/fv.streamonsetsV2.maxpat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/federicoVisi/GIMLeT/HEAD/patchers/abstractions/GIMLeT/fv.streamonsetsV2.maxpat -------------------------------------------------------------------------------- /patchers/abstractions/GIMLeT/generateFakeData.maxpat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/federicoVisi/GIMLeT/HEAD/patchers/abstractions/GIMLeT/generateFakeData.maxpat -------------------------------------------------------------------------------- /patchers/abstractions/GIMLeT/gestureSelection.maxpat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/federicoVisi/GIMLeT/HEAD/patchers/abstractions/GIMLeT/gestureSelection.maxpat -------------------------------------------------------------------------------- /patchers/abstractions/GIMLeT/gvf2OSC.maxpat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/federicoVisi/GIMLeT/HEAD/patchers/abstractions/GIMLeT/gvf2OSC.maxpat -------------------------------------------------------------------------------- /patchers/abstractions/GIMLeT/multisliderRange.maxpat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/federicoVisi/GIMLeT/HEAD/patchers/abstractions/GIMLeT/multisliderRange.maxpat -------------------------------------------------------------------------------- /patchers/abstractions/GIMLeT/populateCellBlock.maxpat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/federicoVisi/GIMLeT/HEAD/patchers/abstractions/GIMLeT/populateCellBlock.maxpat -------------------------------------------------------------------------------- /patchers/abstractions/GIMLeT/routeNames.maxpat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/federicoVisi/GIMLeT/HEAD/patchers/abstractions/GIMLeT/routeNames.maxpat -------------------------------------------------------------------------------- /patchers/abstractions/GIMLeT/simpleFM~.maxpat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/federicoVisi/GIMLeT/HEAD/patchers/abstractions/GIMLeT/simpleFM~.maxpat -------------------------------------------------------------------------------- /patchers/abstractions/GIMLeT/viewTrainingData.maxpat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/federicoVisi/GIMLeT/HEAD/patchers/abstractions/GIMLeT/viewTrainingData.maxpat -------------------------------------------------------------------------------- /patchers/abstractions/biomuseEMGchV2.maxpat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/federicoVisi/GIMLeT/HEAD/patchers/abstractions/biomuseEMGchV2.maxpat -------------------------------------------------------------------------------- /patchers/abstractions/odot/o.speedlim.maxpat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/federicoVisi/GIMLeT/HEAD/patchers/abstractions/odot/o.speedlim.maxpat -------------------------------------------------------------------------------- /patchers/osc_xy_pad.maxpat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/federicoVisi/GIMLeT/HEAD/patchers/osc_xy_pad.maxpat -------------------------------------------------------------------------------- /resources/GIMLeT_workshop_slides.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/federicoVisi/GIMLeT/HEAD/resources/GIMLeT_workshop_slides.pdf -------------------------------------------------------------------------------- /snippets/GIMLeT.CC.maxsnip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/federicoVisi/GIMLeT/HEAD/snippets/GIMLeT.CC.maxsnip -------------------------------------------------------------------------------- /snippets/GIMLeT.gestlooper.maxsnip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/federicoVisi/GIMLeT/HEAD/snippets/GIMLeT.gestlooper.maxsnip -------------------------------------------------------------------------------- /snippets/GIMLeT.grain.maxsnip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/federicoVisi/GIMLeT/HEAD/snippets/GIMLeT.grain.maxsnip -------------------------------------------------------------------------------- /snippets/GIMLeT.mangle.maxsnip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/federicoVisi/GIMLeT/HEAD/snippets/GIMLeT.mangle.maxsnip -------------------------------------------------------------------------------- /snippets/GIMLeT.ml.ann.maxsnip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/federicoVisi/GIMLeT/HEAD/snippets/GIMLeT.ml.ann.maxsnip -------------------------------------------------------------------------------- /snippets/GIMLeT.ml.temporal.maxsnip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/federicoVisi/GIMLeT/HEAD/snippets/GIMLeT.ml.temporal.maxsnip -------------------------------------------------------------------------------- /snippets/GIMLeT.polydelay.maxsnip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/federicoVisi/GIMLeT/HEAD/snippets/GIMLeT.polydelay.maxsnip --------------------------------------------------------------------------------