Midi manipulation

All your LV2 and LADSPA goodness and more.

Moderators: MattKingUSA, khz

Post Reply
robin
Established Member
Posts: 40
Joined: Wed Nov 04, 2020 10:56 am
Been thanked: 3 times

Midi manipulation

Post by robin »

Hey! I'm looking for a midi plugin to manipulate cc-values, essentially to "compress" them. So I want it to do something like:
if received_value<max_value return (received_value/max_value)*127
if received_value>max_value return 127
I wrote this in bash as a proof of concept using named pipes, but the reaction time is really bad that way. Maybe there is some 'generic' midi-manipulation plugin out there?

The idea is use it on a wah-pedal, one control for wah-parameter and dry/wet, but the dry/wet needs to be maxed out way before the maximum wah-value (morley style trigger).
Looking forward to any ideas!
User avatar
raboof
Established Member
Posts: 1855
Joined: Tue Apr 08, 2008 11:58 am
Location: Deventer, NL
Has thanked: 50 times
Been thanked: 74 times
Contact:

Re: Midi manipulation

Post by raboof »

perhaps mididings or puredata?
tramp
Established Member
Posts: 2347
Joined: Mon Jul 01, 2013 8:13 am
Has thanked: 9 times
Been thanked: 466 times

Re: Midi manipulation

Post by tramp »

If you don't need a Gui for the plug, here is a switchless wah
https://github.com/brummer10/GxSwitchlessWah.lv2
On the road again.
robin
Established Member
Posts: 40
Joined: Wed Nov 04, 2020 10:56 am
Been thanked: 3 times

Re: Midi manipulation

Post by robin »

@tramp
ha, you have a solution to everything, don't you? Thanks again, that's exactly what I was trying to accomplish :)

Since I keep stumbling upon puredata all the time, I think I will have to have a look at that sooner or later as well. Thank you both!
robin
Established Member
Posts: 40
Joined: Wed Nov 04, 2020 10:56 am
Been thanked: 3 times

Re: Midi manipulation

Post by robin »

Just for imformation: I kept searching, mainly to adjust my pedals positional repsonse to the switchless wah now, and I found what I was looking for in x42's midifilters, scale-cc to be precise
https://x42-plugins.com/x42/x42-midifilter
Post Reply