Page 1 of 1

Posted: 20 Sep 2019, 02:13
by tsferro
is there a way to quantize incoming midi messages in real-time, ie notes played via MIDI keyboard?

I am trying to replicate this max for live device which quantizes incoming MIDI notes to the selected beat interval: https://maxforlive.com/library/device.php?id=196

this is my failed attempt to patch it up in the MIDI in device which I tried to replicate from help received in quantizing the Arpix patch:

Image

Posted: 20 Sep 2019, 02:41
by x.iso
What you need to understand here is that there are different types of flows which are color coded in Usine for a reason, most of the time you are not supposed to mix them up. MIDI is complex flow consisting of messages and not compatible with regular data flows. it can be broken down to data flows with certain modules like MIDI Filter or just using outlets of MIDI input module.
However in this case you just needed to use appropriate quantization module - "Synchro Quantize MIDI" under Synchro category of modules.

more or less compatible flows are: data, array and audio
data nodes in many cases actually can accept or pass arrays, and audio flow is buffer sized array of values ranging from -1 to 1, some data nodes may accept it as audio-rate modulation.

Posted: 20 Sep 2019, 03:09
by tsferro
thx x.iso - have ti working now

I do remember learning about the color/data types in the video tutorials, I was just thrown off in this case by the Synchro Quantize Trigger used in the Arpix quantize solution