Edit on GitHub

Transforming MIDI-Mathematical operations

Considering the numerical nature of MIDI events, it can be tempting to apply mathematical transformations to our MIDI regions by using mathematical operations. Ardour makes it very easy and powerfull with the Transform tool.

MIDI transformation

To access the Transform tool, right click the MIDI region > name_of_the_region > MIDI > Transform…

First, select the property you want to modify in the 'Set' field, then change the target value using the 2 following fields. If you want to add more operands, click the "+" sign to create new lines. You can remove a superfluous line using the "-" sign on the right of the newly created line.

In the picture above, we've used the Transform tool to add a bit of humanisation, by slightly changing the velocity of each note of the region, by a random number between -19 and +19 from it's original velocity. So we've used 3 operations:

  • Set velocity to this note's velocity
  • + a random number from 1 to 20
  • - a random number from 1 to 20

Each note will trigger a calculation of its own, so its velocity will be increased by a random number between 1 and 20, then decreased by a random number between 1 and 20.

The properties that can be computed are:

  • note number (eg C2 is note number 24, C#2 is 25 and so on)
  • velocity (the global intensity of the note, between 0 and 127)
  • start time (in beats)
  • length (in beats)
  • channel

and the calculation may be based on the following properties:

  • this note's
  • the previous note's
  • this note's index (number of the note, i.e. the first one is 0, the second is 1, etc.)
  • exactly (for a constant value, between 1 and 127)
  • a random number from lower to higher (lower and higher beeing constant values between 1 and 127)
  • equal steps from lower to higher (lower and higher beeing constant values between 1 and 127)

The mathematical operators can be:

  • + (addition)
  • - (substration)
  • * (multiplication)
  • / (euclidian division)
  • mod (rest of the euclidian division)

All this operations can be very handy, as long as you find a mathematical way to achieve your goal. Beware though of odd "border cases": division by zero (which does nothing), using the note's index and forgetting it starts at 0 and not 1, etc.

You can nevertheless create very interesting results, like humanizing (randomizing the velocity, start time and duration of all the notes), creating arpeggios, automating tedious tasks, transposing, etc.