In which I find out I really can't say the word "mininotation"..
This video is a few things lumped together - a run through the tasks on the last worksheet, how to upgrade tidal, and finally how to use the "Euclidean notation". Use the links below to jump to a particular part.
0:00 - hello
0:27 - run through the tasks from the previous video
8:47 - how to upgrade Tidal
10:34 - how to check the tidal version you're on with tidal_version
10:50 - Euclidean notation - making all the rhythms with just two numbers
In brief:
Upgrade Tidal by opening a terminal window and running
cabal update
cabal install tidal --lib
If you're on an older version of haskell, you might have to remove the --lib
and just run cabal install tidal
.
If you're on a mac and get 'command not found' or similar, you might have to run . ~/.ghcup/env
before the above.
The main difference is the addition of the draw
function, which I use in the video to explore what the euclidean syntax is doing. There's also drawLine
which I forgot to show in the video - it's actually clearer as it shows multiple cycles.. e.g.:
drawLine $ "[x [a c b]/2 x x, a x [c d]]"
draws:
[6 cycles]
|x--a-c---x--|x-- b-x--x--|x--a-c---x--|x-- b-x--x--|x--a-c---x--|x-- b-x--x--
|a---x---c-d-|a---x---c-d-|a---x---c-d-|a---x---c-d-|a---x---c-d-|a---x---c-d-
I'll paste the list of example Euclidean structures below. So for the Persian rhythm "Khafif-e-ramal"
d1 $ sound "clap(3,5,2)"
It's useful to have a kick or something at the start of each cycle as a reference point:
d1 $ sound "kick:5"
The Euclidean Algorithm Generates Traditional Musical Rhythms by Toussaint
(2,5) : A thirteenth century Persian rhythm called Khafif-e-ramal.
(3,4) : The archetypal pattern of the Cumbia from Colombia, as well as a Calypso rhythm from Trinidad.
(3,5,2) : Another thirteenth century Persian rhythm by the name of Khafif-e-ramal, as well as a Rumanian folk-dance rhythm.
(3,7) : A Ruchenitza rhythm used in a Bulgarian folk-dance.
(3,8) : The Cuban tresillo pattern.
(4,7) : Another Ruchenitza Bulgarian folk-dance rhythm.
(4,9) : The Aksak rhythm of Turkey.
(4,11) : The metric pattern used by Frank Zappa in his piece titled Outside Now.
(5,6) : Yields the York-Samai pattern, a popular Arab rhythm.
(5,7) : The Nawakhat pattern, another popular Arab rhythm.
(5,8) : The Cuban cinquillo pattern.
(5,9) : A popular Arab rhythm called Agsag-Samai.
(5,11) : The metric pattern used by Moussorgsky in Pictures at an Exhibition.
(5,12) : The Venda clapping pattern of a South African children’s song.
(5,16) : The Bossa-Nova rhythm necklace of Brazil.
(7,8) : A typical rhythm played on the Bendir (frame drum).
(7,12) : A common West African bell pattern.
(7,16,14) : A Samba rhythm necklace from Brazil.
(9,16) : A rhythm necklace used in the Central African Republic.
(11,24,14) : A rhythm necklace of the Aka Pygmies of Central Africa.
(13,24,5) : Another rhythm necklace of the Aka Pygmies of the upper Sangha.
Have fun!
Next lesson: