Re: [fluid-dev] Intercepting midi events

2018-05-19 Thread Christopher Leger
Perfect! This seems like what I have been looking for. I'll work at this and be sure to ask if I have an questions. -Chris On Sat, May 19, 2018 at 3:28 PM, Tom M. wrote: > For intercepting events from the midi player, use > fluid_player_set_playback_callback() to register your custom processing

Re: [fluid-dev] Intercepting midi events

2018-05-19 Thread Tom M.
For intercepting events from the midi player, use fluid_player_set_playback_callback() to register your custom processing function of type handle_midi_event_func_t. For intercepting events from the midi driver (your keyboard), create the midi driver with new_fluid_midi_driver() and pass a proce

[fluid-dev] Intercepting midi events

2018-05-19 Thread Christopher Leger
Hi All, I am trying to setup midi based special effects that will be synchronized with midi events generated from using the midi player or midi events generated from using a midi keyboard. I've done a lot of reading and I don't believe the API has anything that will allow me to do this. I am tryi