快速登录:  

Forum: General Discussion

话题: Pitch lock and new version of virtual Dj
Hello. I use simple script for "sync" button of my ddj rr: sync & pitch_lock.
So if i press "sync" once, pitch lock is "on" (i need pitch lock "on" in 99% of cases when i use "sync"). If i press "sync" again - pitch lock is "off".
But in new version of Virtual Dj something has changed. There has been added new options "auto pitch lock". And my script does't work anymore. Then i swapped commands in my script ("pitch_lock & sync" instead of "sync & pitch_lock") and it works again, but not completely. When i press it first time - pitch lock is "on", but when i press it again - nothing happens. So, to turn pitch lock off i need double click my "sync' button. Not big problem of course, but maybe there is option to do it the old way?
And i don't understand the logic of this process, why in new version of software "pitch_lock & sync" works, but "sync & pitch_lock"- not? Its the same commands. And why double clicking turning pitch lock "off", but one click - not?
 

发表时间 Sat 07 Sep 19 @ 7:55 am
With the new option (autoPitchLock) enabled, pitchlock will turn ON automatically when 2 tracks are in sync.

Therefore with autopitchlock option enabled:
sync = sync + pitchlock on
So effectively:
sync + pitchlock = sync + pitchlock on + pitchlock. Since pitchlock is a toggle the second call will actually turn pitchlock off
pitchlock + sync = pitchlock (toggles to on) + sync + pitchlock on. This will always turn pitchlock on because the last action has explicitly a "on" switch.

Now your problem can be solved with two ways:
1) Use your old scripts and turn off "autopitchlock" setting
OR
2) Modify your SYNC button to: pitch_lock ? pitch_lock off : sync
 

发表时间 Tue 10 Sep 19 @ 8:46 am
..."1) Use your old scripts and turn off "autopitchlock" setting"... - it's not working the old way, as i mentioned before, even with new option "off"
but your new script should help, thank you a lot! I'll check later
 

发表时间 Sat 21 Sep 19 @ 5:53 pm
Hi, did you ever get a fix for this?

I also want to map a button which syncs and turns pitch lock on. When pressed again I want it to turn pitch lock off.

I've tried the suggestions above with no success.

I can sync and turn pitch lock on, but it won't turn off when pressed again.

Hope someone can help.

Cheers,
Ryan
 

发表时间 Sun 16 Aug 20 @ 2:33 pm
FIXED - ok I got it

pitch_lock on ? pitch_lock off : match_bpm & pitch_lock on

1st bit checks if pitch lock is on. pitch_lock on ?
2nd bit says what to do if it is on, in this case turn it off. pitch_lock off
3rd bit says what to do if it is off, in this case match the bpm and turn pitch lock on. match_bpm & pitch_lock on

Hope that helps someone.

Cheers,
Ryan
 

发表时间 Sun 16 Aug 20 @ 2:40 pm
Quien me puede ayudar a activar y desactivar el pitch lock desde mi ddj flx 10, directamente desde el controlador son tener que tocar el pc?
 

发表时间 Tue 04 Jul 23 @ 8:25 pm
Quien me puede ayudar a activar y desactivar el pitch lock desde mi ddj flx 10, directamente desde el controlador son tener que tocar el pc?
 

发表时间 Tue 04 Jul 23 @ 8:25 pm
gosto do sound forge muito facio em gravar as musicas ,tenho a mais de 20 anos e cadastrei em outro computador que o outro quebrou.
 

发表时间 Tue 04 Jul 23 @ 9:10 pm
@jhoanlopez9110
setting autoPitchLock on ? setting autoPitchLock off : setting autoPitchLock on
 

发表时间 Tue 04 Jul 23 @ 9:16 pm
Dj Chachi wrote :
user26771805 wrote :
Quien me puede ayudar a activar y desactivar el pitch lock desde mi ddj flx 10, directamente desde el controlador son tener que tocar el pc?


Opción 1
Con el controlador conectado; En la ventana de ajustes/mappeo (settings/Mapping) de VDJ, si presionas el botón de cargar a la bandeja (Load) se presenta un código, si lo copias y lo pegas aquí es posible que te pueda ayudar; (Pues no tengo un flx10 para hacerlo yo mismo)


Opción 2
En la misma ventana antes descrita, a mano izquierda puedes localizar donde dice "ONSONGLOAD" allí puedes escribir el siguiente código: pitch_lock Off

Esto lo que hace es que apaga el pitch lock una vez cargas una nueva canción a la bandeja (Deck)

Espero esto te ayude en algo

Option 1
With the controller connected; In the VDJ settings/Mapping window, if you press the Load button a code is presented, if you copy and paste it here I may help you; ( I don't have a flx10 to do it myself)


Option 2
In the same window described above, on the left hand side you can locate where it says "ONSONGLOAD" there you can write the following code: pitch_lock Off

What it does is turn off the pitch lock once you load a new song to the tray (Deck)

I hope this helps Out.



NOTE: Moderator please delete doble posting, my mistake.

Thank You


 

发表时间 Wed 05 Jul 23 @ 2:58 pm
Why did you change the way sync worked?
 

发表时间 Sat 08 Jul 23 @ 10:34 pm