Making music
Now that you have an idea of how things work in Tidal, let’s move on to some musical building blocks.
This tutorial is adapted from a worksheet for hands-on beginner / mixed workshops created by Lucy Cheesman and originally adapted by Alex McLean.
If you prefer to follow a video course, check out Alex McLean’s (the creator of Tidal) in-depth Tidal Club workshop series and accompanying forum discussions:
- Weeks 1–4: Forum posts index, YouTube playlist
- Weeks 5–8: Forum posts index, YouTube playlist
There is also an index of all related forum posts in chronological order.
Basic patterns
Now that you know the basic format for making sound in Tidal, like this:
and how to control the patterns, e.g.,
we can move on to explaining these patterns in a bit more depth!
There are two types of sounds you can use with sound
:
they are either synth definitions (like superpiano
, see the synthesisers page), or they are samples.
In the latter case, you write the name of the folder that contain the sample set.
By default, the first sample is used, but you can pick a different sample from the same set, with :
: and a number:
Also, it is possible to specify the folder and the sample in two parts:
Note that s
is a synonym of sound
, so d1 $ s "drum" # n 1
is the same pattern.
Default sample library
Some of the samples which come with Tidal are listed below. Try some out!
You can see what other sounds there are in the default library by looking in the Dirt-Samples
folder.
Find it via the SuperCollider
menu: 'File > Open user support directory > downloaded-quarks > Dirt-Samples'
.
Additionally, you can also add your own custom samples.
For more about sampling, see the sampling guide page.
More variety
Let’s add some more variety to our sequences:
Add a silence/rest with ~
:
Fit a subsequence into a step with square brackets:
This can make for flexible time signatures:
You can put subsequences inside subsequences:
Keep going …
You can repeat a step with *
:
This works with subsequences too:
Or you can do the opposite using /
:
*
works by “speeding up” a step to play it multiple times. /
works by “slowing it down”.
We can also alternate patterns per cycle using <
and >
:
Other common mini-notation symbols are |
to choose a random option, ,
to play two patterns simultaneously, and !
to replicate a pattern.
Let’s use |
to choose one of two samples randomly:
Play a snare and a clap at the same time:
Play three bass drums and a snare:
Effects
Vowel
Tidal has lots of effects we can use to change the way things sound.
vowel
is a filter which adds a vowel sound — try a, e, i, o
and u
:
We create patterns of effects in much the same way we create patterns of sounds. As mentioned on the previous page, these effect and sound patterns are called “control patterns”.
Remember that we can use <
and >
to alternate or “schedule” across cycles:
You can add a non-vowel letter to pause the vowel
effect:
Tidal does its best to map patterns across to one another:
The structure comes from the left — try swapping the parameters:
Gain, pitch, and panorama
gain
changes the volume of different sounds:
speed
and note
are used for pitching samples.
speed
affects the speed of playback (e.g. 2 = up an octave):
Or we can take the pattern from the speed parameter:
note
pitches the sample up in semitones (e.g. 12 = up an octave):
pan
allows us to create stereo effects (0 = left, 0.5 = middle, 1 = right):
Distortion, reverb, delay, and filters
shape
is one of several functions you can use to add distortion (but be careful, it also makes the sound much louder):
Delay is achieved using a combination of up to four functions:
Use lock 1
to indicate that the time provided to delaytime
is in cycles instead of seconds.
All of them receive patterns:
To add a reverb effect, use the functions dry
, room
and size
:
There are also several frequency filters available: low pass, high pass, and DJ type filter, among others.
Low pass filter:
High pass filter:
cutoff
and hcutoff
receive the frequency in hertz of the cut-off point. resonance
and hresonance
go from 0 to 1, but be aware that high resonance values can result in a very loud sound.
djf
is a more immediate filter: it receives a number between 0 and 1. With values lesser than 0.5 it is a low pass filter, and with values greater than 0.5 it is a high pass filter.
You can take a look at the effects reference page to learn more about effects and to see the complete list of effects.
Transforming patterns
We can start to make much more complex patterns using transformations.
Slow, fast and hurry
Using functions like slow
, you can start to transcend the cycle.
slow
stretches the pattern over more cycles:
fast
squashes the pattern into less than one cycle. (You might also see people writing density
— it’s the same thing.) Take a look:
hurry
is similar to fast
, but also applies a speed transformation:
Reorganise patterns
TidalCycles offers many functions you can use to alter your patterns in different ways. In this section, some of them are introduced, but there are many more. Check out the Tidal functions reference pages to learn more.
You can reverse a pattern with rev
:
Or play it forwards and then backwards with palindrome
:
iter
starts the pattern at a different point each cycle, shifting it the given number of times until it gets back to where it started:
every
allows us to schedule transformations or effects in different cycles. The following example will play twice as fast every four cycles:
… or you could schedule an effect in the same way, using #
:
jux
(short for juxtapose
) takes a transformation or an effect and plays it in one speaker the original pattern plays in the other speaker:
chunk
applies a transformation or an effect to a different part of the pattern each time. For example with 4 as a parameter, it will step through each quarter of the cycle.
Even further into transformations
More than one transformation is possible! You can chain them together using .
:
(See the function composition guide page for more.)
Remember that (almost) everything is a pattern, so we can apply these transformations to our effects too:
You can create an LFO (low-frequency oscillator) on any parameter by using fast
or slow
, range
, and an oscillator such as sine
or saw
:
By default, oscillators such as sine
, cosine
or saw
give values from 0 to 1.
This is fine for some parameters (like pan
), but you can use range
to scale these values to whatever range you want.
The previous examples trigger one oscillator value for an event. This is fine if there are a lot of events per cycle. However, if there are fewer, longer events, we need to pick several values from the oscillator in order to accomplish a smooth movement of the LFO. You can do this using control busses:
Here we can hear how the sound changes gradually during the cycle.
There are busses for many parameters, all of them named like the parameter plus bus
.
In this last example, segment 32
tells the oscillator to pick 32 values each cycle.
Different kind of patterns
Let’s think about some different kinds of pattern and how Tidal can represent them.
Cyclic / repetitive
We can use n
to choose samples from a folder, this allows us to apply patterns there too:
run
is a short way of writing out sequential patterns:
or we can use:
Symmetry
Polymetric / polyrhythmic sequences
Play two subsequences at once by using square brackets (sort of like one big subsequence!) separating with a comma:
If you use curly brackets instead of square you get a different effect. With square brackets both halves of the sequence are fitted into the cycle (polyrhythm). With curly brackets the pulse is set by the left-hand pattern. The right-hand pattern can then overlap (or “underlap”!) (i.e., polymeter). Compare these pairs:
Euclidean rhythm / Bjorklund
If you give two numbers in brackets after an element in a pattern, Tidal will try to distribute the first number of sounds equally across the second number of steps:
You can use this notation within a single element of a pattern:
You can also add a third parameter, which ‘rotates’ the pattern so that it starts on a different step:
Randomness
Randomness can help us quickly introduce character and variation into our patterns.
sometimes
works a bit like every
, but instead of happening after a set period, changes have a random chance of appearing:
often
(75%) works like sometimes
(50%) but happens more often:
irand
generates a random integer up to the number specified. (e.g. to play a random sample):
rand
generates a random decimal between 0
and 1
:
You can use degradeBy
to remove random elements.
The number indicates how likely a sample is to play:
(degrade
on its own is the same as degradeBy 0.5
)
Or, you can use ?
in mini-notation to remove sounds with a 50% likelihood:
Manipulating Samples
So far we’ve just used short samples. Longer samples can cause us some problems if we’re not careful. Let’s see what happens with a long sample:
As you can hear, Tidal will keep triggering the sample each cycle, even if it’s very long.
Even if you stop the pattern playing, you will still need to listen while the samples play out.
You can use cut
to truncate the sample when the next one is triggered:
The number in cut
define a group, so you can play with interference across different patterns:
legato
also truncates samples, but using a fixed length:
We can also chop
samples for a granular synthesis effect:
striate
is similar to chop
but organises the playback differently:
randslice
chops the sample into pieces and then plays back a random one each cycle:
We can also use loopAt
to fit samples to a set number of cycles:
As always, we can add patterns and transformations to these functions, or combine them for interesting effects:
SuperDirt synthesisers
So far we have used only samples, but SuperDirt also comes with many Supercollider synthesisers like superpiano
, supersaw
or superfm
.
Each have their own functions and parameters, but in general you can use them in a very similar way to samples:
You can also control external synthesisers using MIDI or OSC.
Difference between functions n
and note
When using synths, both n
and note
functions are exactly the same.
You may have noticed that the above example plays a C note, an E note (which is 4 semitones above C), and a G note (which is 7 semitones above C).
This is exactly the same as:
When using samples, n
refers to the file index in the sample folder, sorted alphabetically (ascending) and counted from 0 (zero).
It is possible for each sample to correspond to a note, if you have sampled every single note of an instrument.
However, when using note
, the sample is pitched up or down (and the sample duration is affected accordingly).
So, for example:
This will play the first sample in the bd
folder on odd cycles and the fifth sample on even cycles.
On each cycle, the sample will be played 4 times: one as is, one pitched an octave above (12 semitones), one a fifth below (7 semitones), and the last one an octave below.
Playing notes
Most of this tutorial is dedicated to rhythm, but Tidal also offers ways to play notes, scales, chords, and arpeggios.
You already know how to play notes: using the note
function or, in case you have a per-note sampled instrument, choosing notes with the n
function.
You can also write notes based on the Western music theory naming convention which uses the first 7 letters of the alphabet (A to G). For example, these two codes are equivalent:
Note names are simply translated to numbers in tidal, so you can use either method, or both at the same time!
Note that you can follow any note name with s
or f
to indicate sharp and flat respectively.
Also, note that 0
and c
refer to the C note on the fifth octave. You can append the octave number following any note name:
It can also be useful to move the octave using |+
or |-
.
This will play on the third octave:
To know more about how to play chords, arpeggios, and scales, see the chords and arpeggios guide pages, and the scales reference page.
Where to go from here
Some suggestions:
- Play, try, investigate. Here you have plenty of information to get you started. Look up the guides and reference pages to learn more as you need it.
- Follow Alex’s video course mentioned at the top of this page for a longer and deeper tutorial, with plenty of examples and video support.
- Join the forum and / or the discord server to ask for help, help others, and learn about how other people are using TidalCycles.