Is there any way to trigger poly without MIDI
Posted: Wed Sep 24, 2014 7:54 pm
I want to play sound without using MIDI. Is this possible?
DSP Robotics and FlowStone Graphical Programming Software Support and Forums
https://dsprobotics.com/support/
No it is not. However, the source of the midi may be internal (for example from midi event prim or ruby) and although you will actually input pitch and velocity as note parameters, those two values are just numbers - you may use them to transmit various numeric data (maybe to make each channel unique in some way).Youlean wrote:Is this possible?
You may combine ruby frames input to detect some events on stream (like transition from 0 to 1 in mono stream) and send midi at will with sample rate precision, however mono to frame requires buffering, so it will add one buffer length latency to your schematic.Youlean wrote:Oh, thats really sad. I was looking for this as green triggers could be not precise enough... Thanks anyway...
OK, can you help me with that as I am total ruby noob?KG_is_back wrote:You may combine ruby frames input to detect some events on stream (like transition from 0 to 1 in mono stream) and send midi at will with sample rate precision, however mono to frame requires buffering, so it will add one buffer length latency to your schematic.Youlean wrote:Oh, thats really sad. I was looking for this as green triggers could be not precise enough... Thanks anyway...
Wow, this is really insane! Thanks for helping me out!KG_is_back wrote:Here you go. The ruby module receives frame input. Checks all values in the frame and when value is 1 schedules a note to be played index/samplerate fraction of second later.