I want to use Tidal to sequence some MIDI synths. I know that this is probably fast-forwarding quite a bit, but I'm trying to learn and wrap my head around the best way to do it. I've watched this video, but I noticed that it's from 2017 and seems to reference Tidal-MIDI. Does this same process apply to Dirt-MIDI?
Thanks!
PS: I know that I don't have to make a package like this to get CC's working, but I will want to keep reusing the same few synths so not having to do that seems useful. But again, I have no idea if things have evolved since then.
@ben as you say this video is a few years old, and the tidal-midi module that Mike talks about in it no longer works.
SuperDirt-midi is the good stuff and Mike's blog post that @nilhartman points at is pretty much current.
The difference is that things are a bit more flexible. At the time of this blog post, you had to specify e.g. notes and cc messages separately, which is why Mike puts them in different patterns. Now you can do things like d1 $ n "c e f g" # sound "midi" # ccv "0 1 2 3" # ccn 30 and it'll work fine.
Thanks @yaxu and @nilhartman !
That clears some things up, and SuperDirt-MIDI does indeed seem way cleaner and easier. I have a few remaining questions though:
The blog post and video by Mike explains how to get going with midi note and cc's (which is great) but it doesn't duplicate the functionality of the package he made for his Rytm (i.e.: being able to address cc's by name 'globally' and not having to duplicate that code over and over). So how do we go about duplicating the functionality of the package but for another synth while using SuperDirt-MIDI? Do we create those custom functions and place them in our Atom startup file? Or should we follow the format of the Rytm file that's included with Tidal? (this leads me to the next question).
Is the Rytm custom mapping that I found in the Tidal package still up-to-date with SuperDirt-midi? I assume so, but just checking... If it is that leads me back to question number 1.
Yes, you should be able to do e.g. d1 $ nrpn "10:200" # sound "midi", or separately as d1 $ nrpnn "10" # nrpnv "200" # s "midi". I got it working with my novation drumstation and haven't tested it beyond that so let me know how it goes!
Oh amazing! Your response was so quick I couldn't edit my original question in time, ha...
Can it also do MSB and LSB CC? This is less important now that I know that NRPN can work, but...
i have a drum machine on channel 10, and i am able to play the kick (note 36) with using this command:
d1 $ n "[-24]*4" # sound "midi" # midichan 9
i used -24, since 0 in this notation is middle C 60, but i rather use 36, i tried the following commands but none of them worked, any idea about how to use the MIDI range between 0-127 for notes, instead of the middle-C centric one?
thank yo @ben that works but i still wish i was able to specify note numbers and velocities in a consistent way, from 0-127, maybe it is still not implemented
I’ve been confused as to why MIDI velocities are represented as floats instead of integers myself. My only guess is that maybe it has to do with the precision of modulators like LFO’s, but I’d love to hear the answer as well.