Sequencer with multiple loops

encoder audio's icon

Hi Guys,

I'm experimenting with a looping sequencer idea, where you have 16 steps, and you can set a jump point for every step, where to jump as a next step, easy , done with counter.
Then next step should be to do a some kind of small loops inside your sequence, like, for example, loop from step 5 to step 8, 6 times, then proceed to step 9, step 10, etc.,

I have some successes but its a mess, I'm sure there is a more simple way, where I can create more loops, instead of just one :(

Any ides?
Maybe a list?

encoder audio's icon

Ok, this is for 1 loop point...with live.seq.
But I need mooooore :D

Max Patch
Copy patch and select New From Clipboard in Max.

Source Audio's icon
Max Patch
Copy patch and select New From Clipboard in Max.
Source Audio's icon

This is example using counters and coll.
coll has stored loop steps which contain loop number, start step, end step and number of repetitions.
Example :
1, 1 4 4; ( means loop1, starts with step 1, ends with step 4 , and gets played 4 times)
2, 5 9 2; ( means loop2, starts with step 5, ends with step 9 , and gets played 2 times)
3, 7 7 1; ( means loop3, starts with step 7, ends with step 7 gets played 1 time)
4, STOP; ( marks end of sequence, stops Metro, resets counters)
result : 1 2 3 4 1 2 3 4 1 2 3 4 1 2 3 4 5 6 7 8 9 5 6 7 8 9 7 0 / 0 means stop and should be ignored
by loop step receiver

coll must be filled with contiguous loop numbers, omitting 1 number will interrupt next loop recall