Page 1 of 1

Note Repeat for Dotted Rhythms

Posted: Fri Jan 29, 2016 8:24 am
by Mikhailmusic
Hey guys just got Push 2 and love everything about it except for one thing. A big part of my workflow in Maschine Studio was using note repeat and having the options for Dotted Rhythms like 1/4D or 1/8D. I know Push 2 doesn't have that. Any MIDI Mappers out there who could maybe come up with a workaround for this to be available for Push 2?

Thanks,
Mik

Re: Note Repeat for Dotted Rhythms

Posted: Wed Feb 10, 2016 12:19 pm
by jobinho
I'm wondering the same thing - I'm guessing maybe something for Max for live where you can custom select the dotted rhythm?

Have you had any luck or anyone know of the right plugin?

Re: Note Repeat for Dotted Rhythms

Posted: Sun Feb 14, 2016 1:48 pm
by Tagor

Re: Note Repeat for Dotted Rhythms

Posted: Sun Feb 14, 2016 2:42 pm
by Tagor

Re: Note Repeat for Dotted Rhythms

Posted: Mon Feb 15, 2016 3:48 pm
by Tagor
note_repeat_component.py

....
t = 3.0 / 2.0
NOTE_REPEAT_FREQUENCIES = [32 * t,
32,
16 * t,
16,
8 * t,
8,
4 * t,
4]
del t

class DummyNoteRepeat(object):
repeat_rate = 1.0

enabled = False
.....

somewhere here is the dog`s burial :D

anybody else tried to make dotted ?

1/4D * 1.5
1/16D * 0.375

how to script that ralations into the new pushbase ?

Re: Note Repeat for Dotted Rhythms

Posted: Tue Feb 23, 2016 11:29 pm
by Tagor
how to define t ?

in the previous python script each note-repeat had is own *t value

can i replace t simple to an own value ?