Dispatch channel pressure data to multiple channels

Hi there,

Because my elektron analog four does not forward incoming cc data to midi-out (all my hw instruments) I’ve created a pipe to read channel pressure data from channel 16 (my analog four configured midi auto channel and keystep channel) and remap this data to channel 3 as a test. This seems to work.

However, I want to remap this data to all midi channels (except 16). So when playing instruments though the analog four they still receive channel pressure data via the midi hub.

Howto send this data to a selected range of midi channels?

Or would this generate too much midi data…

thx

image

The simplest way to get what you want would be series of Transform pipes that look like this:
Screen Shot 2024-12-11 at 22.52.56

This only Transforms Pressure messages received on ch16. This particular pipe creates a new Pressure message on Ch1

Or would this generate too much midi data…

This is a danger, especially as Pressure, like Pitch Bend, can give a bunch of messages in a short period.
Maybe scale up a few channels at a time and watch for lagginess?


You could avoid this by using the hint in your title:

  • Transform Pressure → Note On
  • Use Dispatcher to spread across (say 4) channels
  • Adapt the first strategy (or Harmonizer) to replicate each across 4 channels for each

Maybe try the first strategy and keep the (more complex) Dispatcher idea if things get sluggish!

2 Likes

Thanks a lot, will experiment a bit more with the Transform pipes, looks promising!

1 Like