Re: Looping a La Richie Hawtin
Posted: Wed Apr 22, 2009 10:36 pm
well for me that's a real turn-off. in a live environment, sweaty hands, one beer too many, knobs that sometimes aren't THAT exact, it's just not the way to do it for me.
ideally it wouldn't be for me either, but its the only solution I have at the minutevonwerdt wrote:well for me that's a real turn-off. in a live environment, sweaty hands, one beer too many, knobs that sometimes aren't THAT exact, it's just not the way to do it for me.
the other thing im not to sure how to recreate in live is the pulling the tempos apart. he shows it in the vids, but it looks like each deck in traktor has its own controllable tempo. this lets him create those weird poly rhythms.Yeeeehaaaa7 wrote:yeah, I found that, just means I need to be very quick jumping between tracks but so far so good, and I managed to pull it off live toovonwerdt wrote:there is one problem though: you can only loop the clip currently in focus. isn't it possible to have different mappings for different channels? say keys z, x and c for looping functionality on channel one and v, b and n on channel two?
yeah, the only issue is you can only loop the track thats playing so I can't assign different buttons and knobs on the controller to loop different tracks. They wa I'm isn't ideal but it'll have to do just now. I don't really want to switch to traktor, I used to use the Skratch version, and I prefer ableton tbh.nuperspective wrote:looking at the videos there nothing hes doing in traktor you cant do in live by mapping your loop points and all the stuff everyone mentioned. ill give him that hes always pushing things on. give him 12 months and he will most likely switch to live / serato.
true. but that can get to confusing. theres always a track that forms the bedrock of the sound. the other tracks are layers on top. the global settings for loops are very handy and keep thing simple. a must if your doing stuff on the fly. if you what all the audio mashed use the fx some of the guys have spoken about on the master channel or a group bus and go wild.Yeeeehaaaa7 wrote:yeah, the only issue is you can only loop the track thats playing so I can't assign different buttons and knobs on the controller to loop different tracks. They wa I'm isn't ideal but it'll have to do just now. I don't really want to switch to traktor, I used to use the Skratch version, and I prefer ableton tbh.nuperspective wrote:looking at the videos there nothing hes doing in traktor you cant do in live by mapping your loop points and all the stuff everyone mentioned. ill give him that hes always pushing things on. give him 12 months and he will most likely switch to live / serato.
he's also incorporating the new NI Maschine into his sets, wich is pretty impressive

Code: Select all
;
; mouse positions
;
; x position of loop length box
markersX = 350
; y position of loop end box
markersLoopEndY = 1170
; position of non active area to clear focus
unfocusX = 350
unfocusY = 1200
;
; macro to make "F" key create a 4 bar loop
;
F::
; send "F" key...assign this to loop start set button
Send {F}
; get current mouse position
MouseGetPos, xpos, ypos ; get mouse position
; click on loop end box
MouseClick left, markersX, markersLoopEndY, ,0
; set length to 4 bars
Send {4}
Send {Enter}
; click to take back focus from input field
MouseClick left, unfocusX, unfocusY, ,0
; return mouse pointer to original position
MouseMove, xpos, ypos, 0
returnI'm very sureblablub wrote: u think that´s possible with m4l???