Hi there,
is it possible to get the beat of the active deck (selected by crossfader) continous in my own plugin (written in c++)? What have I to do?
Greetings from Germany
Martin
is it possible to get the beat of the active deck (selected by crossfader) continous in my own plugin (written in c++)? What have I to do?
Greetings from Germany
Martin
Inviato Fri 29 Jul 16 @ 10:57 pm
If you write that plug-in, I'll be the first one to download it :-)
It's a great idea. I think a live BPM readout would be very popular. Useful for seeing tempo changes.
It's a great idea. I think a live BPM readout would be very popular. Useful for seeing tempo changes.
Inviato Sat 30 Jul 16 @ 9:04 am
groovindj wrote :
If you write that plug-in, I'll be the first one to download it :-)
It's a great idea. I think a live BPM readout would be very popular. Useful for seeing tempo changes.
It's a great idea. I think a live BPM readout would be very popular. Useful for seeing tempo changes.
+1
Inviato Sat 30 Jul 16 @ 9:47 am
1) http://www.virtualdj.com/wiki/Plugins_SDKv8_Dsp.html
you can create a class derived from the class IVdjPluginDsp8
2) Another solution is by using GetInfo() with "get_beat_xxx"
double SongPosBeats; // number of beats from the first beat in the song
you can create a class derived from the class IVdjPluginDsp8
2) Another solution is by using GetInfo() with "get_beat_xxx"
Inviato Sun 31 Jul 16 @ 4:22 pm
You can get the beat position yes, in a variety of formats. This however is taken from the grid; it's not a live BPM detection as the above are hoping.
Live BPM detection is possible though if you want to implement your own detection method, I did it once as a test :)
Live BPM detection is possible though if you want to implement your own detection method, I did it once as a test :)
Inviato Mon 01 Aug 16 @ 1:04 am
What happened to Kampftrinker1? Drank to much? :D
Sorry for being OT.
Sorry for being OT.
Inviato Mon 01 Aug 16 @ 3:28 pm
SBDJ wrote :
You can get the beat position yes, in a variety of formats. This however is taken from the grid; it's not a live BPM detection as the above are hoping.
Live BPM detection is possible though if you want to implement your own detection method, I did it once as a test :)
Live BPM detection is possible though if you want to implement your own detection method, I did it once as a test :)
Did you keep any of this test Scott? I'd be very interested to test this on a few tracks I have where the beat seems to slip as they're old disco tracks and recorded from a beltdrive deck..
Inviato Tue 09 Aug 16 @ 9:11 pm