Hey everyone! I just started exploring Strudel and having a lot of fun with the REPL. Since I’m new, I was wondering — is there a supported list of chord types in Strudel?
In TidalCycles, I can find a full list of supported chords, like:
major maj aug plus sharp5 six 6 sixNine six9 sixby9 6by9 major7 maj7
major9 maj9 add9 major11 maj11 add11 major13 maj13 add13 dom7 dom9
dom11 dom13 sevenFlat5 7f5 sevenSharp5 7s5 sevenFlat9 7f9
nine eleven 11 thirteen 13 minor min diminished
I tried something like this in Strudel: chord("Gm13 A7s5").voicing().room(0.5)
But it didn’t work. Of course, I could manually build chords using:
let gm13 = note("g3, b3b, d4, f4, e5")
…but that’s a bit inconvenient to do every time I start a session.
Is there a more modular way to handle this? Maybe a way to import predefined chord libraries or extensions?
Thanks in advance for any tips!