Hi anyone know the script to keep bpm on same deck when loading new track ( no track on other deck) thanks
Posté Mon 20 Jan 25 @ 12:26 am
before loading, save the bpm to a variable
set savedBPM `get_bpm & param_cast beats`
load the next track
recall the variable and cast it to pitch verb
get_var savedBPM & param_cast pitch
there's a few ways this could be implemented [button press, rsi, onsongload] but you haven't given enough details to get a specific solution.
set savedBPM `get_bpm & param_cast beats`
load the next track
recall the variable and cast it to pitch verb
get_var savedBPM & param_cast pitch
there's a few ways this could be implemented [button press, rsi, onsongload] but you haven't given enough details to get a specific solution.
Posté Mon 20 Jan 25 @ 1:52 am
Thanks loco dog- in practice id like to use this to play one deck and use sampler backbeat (hence needing the bpm to maintain on next track load) whilst using other deck to scratch freestyle - so could use as a custom button for that particular track ?
Tia
Tia
Posté Mon 20 Jan 25 @ 1:58 am
yeah just slot in a load command between the two commands above.
Posté Mon 20 Jan 25 @ 2:04 am