Estuary & MiniTidal: Your First Beats

So now it’s time to make your very first MiniTidal pattern, a simple four-on-the-floor bass drum pattern. Previously, you typed the following into an Estuary minitidal panel

s "bd*4"

hit play, and managed to hear a drum beat.

four bass drums per cycle

Let’s start breaking down what’s happening in this pattern.

The s means “take a pattern of sounds and turn them into something that can be played”. The part in between the quotation marks is the pattern itself. In this case, you can read it as “play four samples called ‘bd'” per cycle. Ah, cycle, that’s an important word here: a cycle is the basic unit of time in Tidal. It is, by default, a little more than two seconds. Tidal will fit the number of sound events you tell it to in each cycle, as fast or as slow as it needs to.

For example, if you type s "bd*8" instead you’ll get eight bass drum samples per cycle, played closer together. If you changed it to just two samples there’d be a lot more dead air between drum hits.

eight bass drum hits per cycle
two bass drum hits per cycle

Now that would be pretty boring if you could only do even beats in Tidal, and thankfully you can do a lot more than that. We’re going to take our four-beat pattern and then break it apart into something equivalent

s "bd bd bd bd"

This is still four beats per cycle, but now let’s take each one of the beats in the pulse of the pattern—the pulse being the basic underlying rhythm—and make it more complicated, using square brackets [] to group together events together. Another things we’re going to use is that ~ represents silence, a rest in the pattern.

s "[~ bd*2] bd*4 ~ bd*8"

This still has a pulse of four because there’s only four groups of things in the pattern, but how the different sounds are placed in the pattern is different for each quarter of the cycle: the first quarter is half silent then puts two bass drums in the next eight of the cycle, the quarter after that fits four bass drums, the quarter after that is silent, and the last quarter has eight bass drums in it. You can hear how each of these pieces has a different rhythm inside it.

We can also have multiple sounds at a time, so let’s hear a complementary hihat pattern to go along with this. There’s two possibilities for how to do this. The first is that you can have the different patterns running in different panels on Estuary. But you don’t really want to rely on that since each panel should be either a different language or a different performer. So instead, we’re going to use something called stack to put two patterns of sound in the same pattern

stack [s "bd*4"d2, s "hh27*4"]

And if you’ve run both of these you’ll be able to hear the tick of the hihat hit at the start of each quarter, showing the the two different patterns have the same underlying pulse.

bass drums and hi-hats lined up on the quarter cycle

Actually, it doesn’t actually sound great to have them both starting at exactly the same time. So we’re going to introduce our first transformation of patterns. Change the hihat pattern to look like the following

((1/8) ~>) $ s "hh27*4"

This transformation shifts a pattern in time, moving the timing of events in the pattern over by an eighth of a cycle. Why an eighth? Because if you have four events per cycle then if you want to try and offset the hihats to not start on the quarters like the bass drums, then you need to shift it by something less than 1/4.

bass drums and hi-hats offset by an eighth of a cycle

The important thing I want to point out is that transformations of patterns come between those $ symbols and before the pattern you’re transforming. We’ll be introducing more transformations soon and you can just keep chaining them by adding more dollars signs and putting more things between them.

At this point, it’s really time to introduce a couple more concepts that will be important for us: making patterns that vary over time and adding our first hints of randomness into our patterns.