Extracting snippets from combined sounds?
by jojohoughton22@gmail.com
Hey guys,
I'm new to Tidal (and Haskell) so this may be a dumb question, but I can't figure out how I can extract a part of a sound from a stack. That is, if I am playing a stack of say, 4 different, complex patterns, and a sound emerges from that stack which I really like and want to play more with - then how can I extract the slice of the cycle that is producing that sound from the stack? I'll try to explain this better below:
if I am playing this:
d4 $ stack [
sound x
sound y
sound z
]
let's say these combined sounds create a cool little sound snippet somewhere in the middle of the cycle - is there any way I can grab this snippet out to play with it more on its own?
like is there some function like this that I could use -->
d4 $ extract (0.2 0.3) $ stack [
sound x
sound y
sound z
]
in theory, this would take the sound in this stack from 2/10 of the cycle to 3/10 of the cycle and play just that snippet in a complete cycle on its own (and then effects could be applied, etc.).
appreciate any help,
jojo